In a nutshell, the new XML Catalog features allow you to easily
configure TeXMLMate to substitute local resources (like DTDs and
other schemas) for remote resources referenced by URLs. This allows,
for example, convenient validation of XHTML documents against a local
(possibly customized) copy of an XHTML DTD without having to change
the URLs used in the XHTML doctype to local file paths. Parsing/
validation with local schemas is much faster and allows offline
validation.
To download:
http://www.ditchnet.org/texmlmate/
For more complete details see the description here:
http://www.ditchnet.org/wp/2007/01/03/texmlmate-13-released/
Todd Ditchendorf
Scandalous Software - Cocoa Developer Tools
http://scan.dalo.us
Hi!
I have here a problem with the Blogging-bundle and free blogs at
wordpress.com
If I try to fetch a posting I get the following error:
Received Exception: Wrong Size. Was 3732, should be <unknown>
No posts are available!
Posts are available.
I can post though but after posting it, the posting has an error in
the first line (and the date looks strange:
Received exception:Wrong size. Was 1275, should be <unknown>
Type: Blog Post (Markdown)
Blog: a Shortcut a Day
Post: 5
Title: testpost3
Date: -4712-01-01 01:00:00 +0100
Pings: Off
Comments: Off
testpost
The posting looks right in the dashboard of wordpress and date and
everything else looks right as well.
I am quite sure that I set up things right because it worked with my
blogs which weren't on wordpress.com - here's the content of the
setup-file:
# List of Blogs
#
# Enter a blog name followed by the endpoint URL
#
# Blog Name URL
a Shortcut a Day http://nielsk@macshortcut.wordpress.com/xmlrpc.php
Any help appreciated
Niels
Hi,
I just found a very tiny bug within the R function getSig.r of that
bundle.
If you type 'plot.lm' and invoke that command to get the template it
gives you a weird output because within the formals you find an item
'caption', and within this item there is a '\n'. The ruby pop down
menu, of course, interprets a '\n' as a new line.
To avoid this I would include within the getSig.r at line 12 this:
10: if (is.symbol(f[[arg]]) && f[[arg]] == "") arg else list(arg, f
[[arg]])
11: ),
12: function (arg, escape=function(x) ifelse(snippet, {gsub("([\\
$`}])", "\\\\\\1", x);gsub("\n", "", x)}, x))
13: if (is.list(arg))
i.e. I add a gsub in the 'escape' function to delete each '\n'
I don't know whether this will be good. The case is very rarely.
Comments?
Best,
-Hans
HI,
sorry for the, maybe stupid, question, but I didn't find something in
the internet.
How can I make a copy of an existing bundle? To duplicate commands or
snippets, that's simple, but for an entire bundle?
If I simply create a new folder.tmbundle and copy&paste things in it,
then I also have duplicated uuid's.
Thanks in advance
-Hans
Hi there
I am very new to programming and ive used to make programm in Flash.
Its just a little project and i do programming in my freetime as a
hobby.
My 30 days of using Flash for free are over (since a half year now ;)
and i wanted to re-wake this project and do it without Flash using
TextMate and the ActionScript Bundle.
I had a look at the Bundle Developer Site and followed the
instructions mentioned there. But i still have absolutely NO CLUE
what to do.
My first intention, just to see how things are working i wanted to
make a trace output - which says "Hello World".
What am i doing wrong? Ive tried to use the ActionScript template and
i did a script which just says
trace ("Hello World");
I did use the "Install MTASC Support Files" and i did a try
without...nothing happens.
Can anybody help or does know where i get some information?
Thanks for your help
==================================
Zettt
azeitler(a)zettt.de
==================================
I've been trying to set the foldingStartMarker and foldingStopMarker
for a simplified variant of Markdown but have had no success. The
file would look something like this
# First heading #
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Suspendisse
vel nunc.
Suspendisse egestas erat vitae pede. Phasellus quis libero et tortor
commodo
auctor. Sed et erat. Aliquam sed lectus. Fusce semper elit nec ipsum.
Morbi
sem nisl, tristique id, venenatis quis, gravida sed, neque. Etiam ut
felis. Curabitur leo magna, molestie vitae, blandit et, fringilla
vitae, purus.
# Second heading #
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Suspendisse
vel nunc.
Suspendisse egestas erat vitae pede. Phasellus quis libero et tortor
commodo
auctor. Sed et erat.
Aliquam sed lectus. Fusce semper elit nec ipsum. Morbi
sem nisl, tristique id, venenatis quis, gravida sed, neque. Etiam ut
felis. Curabitur leo magna, molestie vitae, blandit et, fringilla
vitae, purus.
# Third heading #
etc
I'd like to fold so that only the heading lines show.
The foldingStartMarker is easy:
foldingStartMarker = '^# +';
But I can't get a foldingStopMarker that works. What I'd like to use
is a blank line followed by a positive lookahead to a line that
starts with a hash and a space, but
foldingStopMarker = '^$\n(?=^# +)';
doesn't work, even though that regex works in the Find dialog box.
Are the start and stop markers restricted to single line patterns?
The manual suggests that, but it isn't explicit. Does anyone have any
ideas?
--
Dr. Drang
> Sounds quite interesting. ;)
>
> How do i do this?
Google is your friend :)
Take a look at the documentation on the MTASC website, and take a
look at Ralf Bokel's hacked version (HAMTASC) for more fun with
command-line options.
The howto I pointed to on my blog has a ZIP that you can download for
the walkthrough. Good luck!
___________________
Ben Jackson
Diretor de Desenvolvimento
+55 (21) 2256-1022
ben(a)incomumdesign.com
http://www.incomumdesign.com
Not a lot of explanation needed. These are all XHTML compliant, some
include self closing tags and do not offer the option to avoid this,
so some work may be necessary. In fact, there will probably be a lot
of disagreement over how to handle a few things, and my feelings
won't be hurt. Take this as a suggestion, and perhaps overkill. I
actually prefer to just use the generic "insert open/close tag" these
days, but agree that there are times that typing a tag and hitting
tab would be convenient.
Brett