Hi,
i've run into a little problem:
I've made a "draft" via webinterface of wordpress, but when i press
"Fetch Post" i don't get to see the "Draft"
Is this a missing feature (sinds it isn't also in the "headers" part
Or is that the xmlrpc.php that has the limitations
Regards J.
Hi,
I am slowly developing a Cheetah bundle, adding functionality as I go.
Now I like to add the correct behavior invoked when I trigger cmd
+/ , the Comment Line/Selection command.
Cheetah command looks like this:
## a comment
How do I tell the "Comment Line/Selection" command how a comment in
Cheetah looks like?
Cheers
dirk
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
- -----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi, to all of you TM and TXP friends,
The next version of the TXP Bundle is available for download. Version
0.7, because version 0.6 will remain unreleased. The only purpose of
version 0.6 was to pile up in-house evaluation data, before then
refactoring the Language Grammar, which is based on a little different
concept.
If you had any previous version, it is recommended, to through those
away prior installing this Bundle.
In a nutshell, the concept is to follow the same shortcuts and Behavior
as is in the HTML Bundle, so the typing becomes homogeneous with the
former in one go.
Most shortcuts have been changed, but you will find it to be more
convenient , once yo get used to it
Furthermore the scope names have been simplified and plugin tags are
only matched in generic manner for both single and container tags
I am still working on a concept to refine the matching of the plugin
tags, but this will take time.
If you still use older versions of this Bundle, it is recommended to
through these away.
A last check shows, that there is no Errors in Console, however, it
would be nice, if yo could check the latter on yours and confirm that
at some point
The Language Grammar that drives this Bundle, spans more than 4300 lines
of code an there are 86 Bundle items, which puts it in the range of
some of the most comprehensive Bundles done ever.
I would recommend, to place your customizations in a separate Bundle,
instead of this one
It will be necessary to install the custom Theme as well, since there is
currently no Them other available that would give us the Syntax
highlighting we need, and since I had t change the Scope names, the
current Theme that you have, will not give you what yo need
You may wish to start off, calling the documentation,which is basically
the same of what follows below, by just pressing ⌃ H, from any TXP
scoped document window.
The first http://www.consking.com/screencasts/txp_bundle_typing_1.mov/
Screencast, that is pretty trivial, walks you through the Typing Basics.
I used the H.264 settings to render it, which AFAIK means, you need
Quicktime 7 to watch it.
It's about 32 MB/ ~12minutes.I didn't bother much to get it down more in
file size, since it will only result in ugly artifacts in most cases.
One last thing, I would like to mention:
Although it took me much longer than expected, I've gained a big deal of
things doing this, which I am quite grateful for, so you can take this
as an example, that even Non-programmers can take advantage of this
Power tool, to create a Language Grammar for about any CMS Language you
can think of. if you wanted to.
With best regards, marios
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (Darwin)
Comment: This might change in the future
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org
iD8DBQFFTe3b8tSzPOYuZvQRAuObAJ9crxe24GxdH/aMwHuUwF1QhhLjdwCdEYbg
XheT1ATizrVmMwM8iZU0R7o=
=E5DV
-----END PGP SIGNATURE-----
I just noticed that <%= %> and <% %> have been moved from Rails to
Ruby. But it does not work now in either. I tried text.rhtml for scope
but it didn't help either. Did a svn up also.
ANy help will be greatly appreaciated.
Thanks,
bakki
Is it possible to have web preview window always on top of other windows?
I haven't found that in prefs and it doesn't seem to be any basic option
in Interface Builder.
--
regards, porneL
If anyone wants to modify my blog linking commands to work with
Markdown, feel free ;-). I'm so used to HTML that I didn't even
think to code it in (sorry) and I'd never use it, so I'll leave it up
to someone who will...
Brett
Excerpt functionality *is* built in to the xmlrpc in wordpress, you
just have to send it the mt_excerpt header, as mentioned on this list
previously.
If you edit the blogging.rb file in the blogging bundle support
directory (or make a copy in a new bundle) and add:
@post['mt_excerpt'] = @headers['excerpt'] if @headers['excerpt']
around line 224 (it's not especially important, as long as it's in
that block) it will send a header in this format:
Excerpt: your text without line breaks
You'll want to edit the language file to include the [Ee]xcerpt
header so it highlights properly.
Then you'll want to add
doc += "Excerpt: #{self.post['mt_excerpt']}\n" if self.post
['mt_excerpt'] && (self.post['mt_excerpt'] != '')
at about line 400 in blogging.rb so that it will retrieve the
excerpts when you fetch the post or after posting.
That's it. Excerpts should work for you then.
Brett
Brett Terpstra : Art Director
Circle Six Design, Inc.
111 Riverfront Dr, Suite 204
..................................................
p: 507.459.4398
877.858.4332
f: 1.866.540.3063
e: brett(a)circlesixdesign.com
http://www.circlesixdesign.com
..................................................
The 'Open Module' command in the Perl bundle looks for a line like
use ModuleName;
but quite a lot of code uses instead
require ModuleName;
Changing line 9 of the command to
if ($line =~ /^\s*(?:use|require)\s+([^\s;]+)/) {
fixes this.
--
Andy Armstrong, hexten.net
I just tried to post a blog entry that is scheduled for a future day…
is that possible in the blogging bundle? It seemed to ignore my
manual set date?!
thx,
Dan
Hello
This bundle is awsome and very useful.
For people who works with LaTeX and with a lot of files with iso
8859-1 encoding, i make a widget after having looked at the sreencast
#!/usr/bin/env bash
for file in "$@"
do
/usr/bin/iconv -f ISO-8859-1 -t UTF-8 "$file" > "$file".utf8 && mv
"$file".utf8 "$file"
done
Now i can drop all the files of a directory and get utf8 files
(attention : with this script , the old files are lost, perhaps a
backup is necessary before)
Thanks Andy, for this great tool
Alain Matthes