Hi there
I hope someone can help me out.
I wanted to use TextMate for blogging to my Weblogs. One that is important
for me, since i am an artist, is that i can post to MySpace easily. How can
i achieve this?
Thanks for your help!
--
View this message in context: http://www.nabble.com/Blogging-to-MySpace-tf3121719.html#a8649255
Sent from the textmate users mailing list archive at Nabble.com.
I have released a combination of TextMate commands and a Wordpress
plugin for Wordpress 2.1 that allows for better handling of tags when
blogging from TextMate. [1]
The plugin, UTW-RPC, overrides a few functions in the xmlrpc.php
file, implementing Robin Lu’s hack[2] for Ecto and Ultimate Tag
Warrior. This automatically will make the Keywords header function
with TextMate and allow the Keywords: field to insert and display
Ultimate Tag Warrior tags from posts. (It will also provide the same
functionality for all other blogging clients that recognize the
mt_keywords header).
The plugin also adds a hook, metaweblog.getTags, that the TextMate
commands use to retrieve the tags from your blog and provide various
functions with. The commands are rudimentary at this point and are
provided as proof of concept. I could use some serious help with
implementing a fuzzy search on the autotag command.
Thanks,
Brett
[1]http://blog.circlesixdesign.com/2007/01/26/utw-rpc-10/
[2]http://www.robinlu.com/blog/archives/57
Hi all. I'm trying to set a $TM_ variable in new template to get the
project name (without filepath and extension) but I cannot find a way
to do so. I searched through many messages in this list but I cannot
find any answer to my question.
Setting ${TM_PROJECT_FILEPATH} in the template file configurator,
creating the new template it will output:
/Users/webrevol/Desktop/test.tmproj
Instead of:
/Users/webrevol/Desktop/test.tmproj
how can I get only the filename without extension?
test
Anybody? Many thanks in advance.
…when I can’t post to the list anymore.
Messages kept bouncing the past days (took them about three days,
either). Forced me to resubscribe. So consider this a “test” and
apologies for it.
Soryu.
Please ignore this mail. I’m having trouble posting to the list from
this email address. Hope this is resolved now. If not, you won’t even
see this, so why are you complaining, anyway? ;)
Soryu.
hi,
I am wondering if anyone has developed something to support named bookmarks,
e.g. within a project context.
I found Haris' blog post on a way to support global bookmarking:
<
http://skiadas.dcostanet.net/afterthought/2006/06/09/global-textmate-bookma…
>
Thanks-- that is a useful start! The HTML/link interface works well. I was
thinking of messing with it further to support naming the bookmarks that are
written to the file, and maybe associating them with a project name.
(However, since I've not used Ruby and am SUPPOSED to be writing a paper at
the moment it might be a while until I get to it.)
Has anyone else done something like this already? Apologies if I missed it,
nothing was obvious in the bundle list etc.
-Amy
On 1/25/07, Sean Schertell <sean(a)datafly.net> wrote:
> Another great version control system is Mercurial (also called "hg").
> It's also similar to CVS, SVN but lighter-weight and arguably more
> reliable.
>
> The OpenSolaris project and many other major projects have switched
> over to Mercurial full-time so it's not really a totally left-field
> system, and it's gaining traction fast.
>
> Definitely worth a look:
> http://www.selenic.com/mercurial/wiki/
>
> There's even a TM bundle for it :-)
>
> Sean
>
Yes, Mercurial is definitely worth a look.
One of its advantage over CVS or svn is that it is a distributed
system, that means you can work and commit locally before pushing to
the remote repository. It's easier to use locally too, as the
repository and the working copy are in the same place, you can have
everything in one folder.
After installing Mercurial and the bundle, open a folder in TM, hit
ctrl + shift + M and choose "init" then "AddRemove" to add all the
files (eventually create a .hgignore file before to exclude some
files) then "commit" and BOOM ;), your folder is under revision
control.
I made the Mercurial bundle as it is now. I plan to work more on it
when I have the time, but I think it's already really usable now.
Please, give me feedback if you use it. I plan to make a
tutorial/screencast about it one day too.
--
FredB
I'm trying to write a macro or command (not sure which will be
better) for doing a word count on LaTeX documents. The basic task is
simple enough: I want to run the command "ps2ascii [file.pdf] | wc"
on file.tex (where file.tex is the current file I'm working on) (I've
tested ps2ascii and it works fine for the types of documents I'll be
writing).
However, I also want to strip the footnotes from my word count. To
do so, I've defined the footnotes with a custom command that I can
redefine as empty:
\newcommand{\fn}[1]{\footnote{#1}}
% \renewcommand{\fn}[1]{}
So, the whole task I need to do is:
1) Uncomment the \renewcommand line
2) Re-run LaTex
3) Run ps2ascii | wc on the generated .pdf
4) Display the output of that command as a ToolTip
5) Re-comment the \renewcommand line (so the file is back in its
original state)
Unfortunately, I don't know how to string these things together, nor
how to get the argument for the ps2ascii command from the current
filename variable TM_FILENAME (i.e., how to substitute .pdf
for .tex). I can add unique comments to the end of the \renewcommand
line so it can be picked out by a regex search, if that helps.
Suggestions? I'm also open to other ideas for getting the same end
result, if there's an easier way.
Colin Hahn
»Geben Sie mir Kaffee, dann mache ich Phänomenologie daraus.«
"Give me my coffee so that I can make phenomenology out of it." --
Edmund Husserl
While writing a latex document using the array package, I noticed that
the line
\newcolumntype{R}{>{$}r<{$}}
confuses TextMate into displaying all following lines as if they were in
math mode.
Any chance there's an easy fix?
Chris