[tw] ANNOUNCING Tahoe, the Least-Authority File System, v1.8.0

2010-10-02 Thread zo...@zooko.com
Dear TiddlyWiki Users: Tahoe-LAFS is a secure, decentralized data store. You can think of it as being somewhat like MongoDB or CouchDB, but with interesting security properties baked in. I use Tahoe-LAFS as the backend for a TiddlyWiki which I use for my blog. This means that my blog is a *Decen

[tw] Re: For Each Tiddler Question

2010-10-02 Thread octw
> I would like to add a line to exclude some tags e.g. (in psuedo code) > where tag contains "task" and tag EXCLUDES "foo". > > Is this possible and if so, how? Yes, you can use the "!" syntax: where 'tiddler.tags.contains("task")&& ! tiddler.tags.contains("foo")' Further more, y

[tw] For Each Tiddler Question

2010-10-02 Thread TK
G'day I am successfully using the following forEachWiki code to filter a particular tag. <> I would like to add a line to exclude some tags e.g. (in psuedo code) where tag contains "task" and tag EXCLUDES "foo". Is this possible and if so, how? Tony -- You received this message because you

[tw] autoLinks in transclusions

2010-10-02 Thread UBi
Hello everybody, I prefer the explicit [[link]] markup over CamelCase, so one of the first changes I make to a new TW is this one: Tiddler.prototype.autoLinkWikiWords = function() { return false; } That will always work with normal tiddler content. But in trancluded tiddlers, CamelCase is st

[tw] Re: Tag-specific styling tiddler-links

2010-10-02 Thread Tobias Beer
Would this help? http://tobibeer.tiddlyspace.com/#ColoredLinks Cheers, Tobias. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To post to this group, send email to tiddlyw...@googlegroups.com. To unsubscribe from this group, send email to tiddl

[tw] Re: RandomlinkMacro trouble

2010-10-02 Thread Tobias Beer
There you go... http://tobibeer.tiddlyspace.com/#RandomLink Cheers, Tobias. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To post to this group, send email to tiddlyw...@googlegroups.com. To unsubscribe from this group, send email to tiddlywi

[tw] Tag-specific styling tiddler-links

2010-10-02 Thread Ross W
Hi all, What I'm trying to do is apply CSS to the links that point to a given tiddler, based on that tiddler having some specific tag. I.e., - If you link to SomeTiddler that does not yet exist, the "SomeTiddler" text is italicized wherever it appears in other tiddlers. - If you then add some tex

[tw] RandomlinkMacro trouble

2010-10-02 Thread whatever
Hi! On http://bookmark.noteboko.tiddlyspot.com/ I found the RandomlinkMacro, which displays a random page onclick. The problem is, that site uses TiddlyWiki version 2.2.5. I tried the macro on version 2.6.1, but it doesn't work. Here's the code: config.macros.randomlink= { label: "Random Tiddler",

[tw] Project - Toolbar+Tiddlywiki=Learning System???

2010-10-02 Thread skye riquelme
Hi All This is slightly off topic.but then not too much Being a frequent user (you could say fanatic) of the wonderful little tool called TiddlySnips...it started to dawn on me that Tiddlywiki can be integrated into Firefox.Erics bookmarklets also started me thinking in this direction

[tw] Re: URGENT my TWs wont save!!!

2010-10-02 Thread Måns
Here are some usefull bookmarklets to grab: http://lewcid.org/tiddlywiki-bookmarklets/ Regards Måns Mårtensson On 2 Okt., 16:18, Måns wrote: > Hi Skye > > Don't know if this will help - however: open your tw with /#start:safe > to deactivate all plugins (see:http://www.tiddlywiki.com/#SafeMode)

[tw] Re: Local files within Tiddlywiki

2010-10-02 Thread JpWire
Looks like I've found the answer. In case there's anyone else who's interested, it's called "Relative Paths" * file in same folder: [[My Image|./MyImage.png]] or [[My Image| MyImage.png]] * file in subfolder: [[My Document|PDF/MyDocument.pdf]] * file in parent folder: [[My File|../MyF

[tw] Local files within Tiddlywiki

2010-10-02 Thread JpWire
Hi all I'm looking for a way to attach local files to my wiki, but not specify the drive letter. I use a USB key, which is assigned a different drive letter depending on what computer I'm using. I know that this can be done with images (thanks to Jeremy Hodges) [img[.\filepath\filename.jpg]] Ho

[tw] Re: URGENT my TWs wont save!!!

2010-10-02 Thread Måns
Hi Skye Don't know if this will help - however: open your tw with /#start:safe to deactivate all plugins (see: http://www.tiddlywiki.com/#SafeMode) and activate editmode with a bookmarklet from the browser: javascript:void(eval(decodeURIComponent(%22(function() {try{if(window.version%2526%2526wind

[tw] Re: ToDoTiddler revised (was: Interesting Todo app)

2010-10-02 Thread Måns
Hi Tiziano > Following all your kind suggestions, I made a big refactor of my > ToDoTiddler:http://tiziano.tiddlyspot.com/#ToDoTiddlerNew Great job! > Improvements included: > lock/unlock the input form; > actions to remove, edit, move items; > items stored as unordered list; > automatic recogniti

[tw] Re: Question about formatting within curly braces

2010-10-02 Thread Tobias Beer
Hi TK, You could do it this way... {{fl{ {{{ webdb CHALK 10204 $ ls -l }}} }}} {{{ total 56 -rw-r--r-- 1 webdb oinstall1164 Nov 23 2009 arch_backup.template -rw-r--r-- 1 webdb oinstall1203 Nov 23 2009 }}} <> ...wheras "fl" would be the css class which you wrap around your firstline

[tw] Re: A solution to sort tiddlers by any order

2010-10-02 Thread whatever
Hi! I just tested in on my wiki and it works great! A question though. My tiddler names have underscores instead of spaces. Can these underscores be replaced by spaces in the display? I know they can be in fET, but for xList I'm not sure. w On Oct 2, 1:13 am, Tobias Beer wrote: > Hi octw, > > Th