Re: tbGTD

2009-11-19 Thread birddog
Tobias, One other question: It seems like tbGTD auto-saves with changes. Is that correct? If so, will the tiddlyspot version auto-save as well? with the other TiddlyWikis, I have lost work a number of times, because of browser lock-ups or forced shutdowns from our admins here at work. I'm about

Re: tbGTD

2009-11-19 Thread Erlend Leganger
2009/11/19 birddog briarpatch@gmail.com Tobias, One other question: It seems like tbGTD auto-saves with changes. Is that correct? If so, will the tiddlyspot version auto-save as well? with the other TiddlyWikis, I have lost work a number of times, because of browser lock-ups or forced

[tw] Re: displaying pdf as image

2009-11-19 Thread Paul Downey (psd)
There's some discussion, and useful links, for embedding PDF in HTML on Stack Overflow: http://stackoverflow.com/questions/291813/best-way-to-embed-pdf-in-html I don't much like the idea of using Flash but there are some other links which may help, and you might like to ask further

Re: [tw] tiddlertxt as img source in Pagetemplate - possible?

2009-11-19 Thread FND
I want to be able to exchange an image put in the sidebar via the PageTemplate simply by inputting an URL in a tiddler You could just use transclusion by adding something like the following to your PageTemplate: div macro='tiddler Logo'/div Then create a tiddler Logo and add something

[tw] Re: tiddlertxt as img source in Pagetemplate - possible?

2009-11-19 Thread Morris Gray
On Nov 15, 8:49 am, Måns humam...@gmail.com wrote: Hi TwWizards I want to be able to exchange an image put in the sidebar via the PageTemplate simply by inputting an URL in a tiddler: I would put the image in a tiddler then put the tiddler in the PageTemplate like this

[tw] Re: displaying pdf as image

2009-11-19 Thread Måns
Thanks Paul A very usefull link. embedit and scribd are very usefull ways of embedding pdf via flash - you'll need to upload your document to their servers though.. You can export your document in OpenOffice as a swf and upload it via Dropbox (if it's made in Draw or Impress that is) - and use

[tw] Re: forEachTiddler 'where' using FormTiddler field

2009-11-19 Thread AlanBCohen
Eric, I may have misled you by accident. The 'facts' field is contained in a JSON-defined data field created by the FormTiddler macro. The whole application is an addressbook defined using a FormTiddler template and the 'facts' field is a text field, generally with a Y/N indicator. For various

[tw] Re: forEachTiddler 'where' using FormTiddler field

2009-11-19 Thread Måns
Hi Allan You probably know that you have to specify a tag to make fETs work... This is one of my fETs collecting emailaddresses from different tiddlers. I'm not sure if you are asking how to use real fields - as I do in this example - or if you want to fetch data-fields... I know I've got a fET

[tw] Re: forEachTiddler 'where' using FormTiddler field

2009-11-19 Thread Måns
Here's another fET fetching datafields as well forEachTiddler where 'tiddler.tags.contains(Books)' sortBy 'tiddler.fields[title]' write '(index 200)? |+(index+1)+|[[+tiddler.title+]] | [[+tiddler.data(author)+]] | [[+tiddler.data(primtopic)+]] | [img(3em+,)[+store.getValue(tiddler,title)+

[tw] Re: forEachTiddler 'where' using FormTiddler field

2009-11-19 Thread Måns
Yet another one - this one evaluating a fieldvalue forEachTiddler where 'tiddler.tags.contains(X) tiddler.fields [y] tiddler.fields[z] tiddler.fields[z].contains(q)' sortBy 'tiddler.title' write '(index 200)? |!+(index+1)+ toggleTag R [[+tiddler.title+]] - \\| tag +tiddler.fields[y]+ \\ | tag

[tw] Re: tiddlertxt as img source in Pagetemplate - possible?

2009-11-19 Thread Måns
Hi Fnd and Morris Thanks for answering my question.. I settled for this solution {{center{[img[file:///C:./yellowpill.jpg]]}}} div id='sidebar'span refresh='content' tiddler='YellowPill'/span However - To make the center-thing work I had to write this in the StyleSheet: .center {

[tw] Re: displaying pdf as image

2009-11-19 Thread Måns
If you have only a pdf (not a document) you can ... should have been: If you have only a pdf (not an OpenOfficedocument) you can -- 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

[tw] Re: forEachTiddler 'where' using FormTiddler field

2009-11-19 Thread cmari
Hi Alan, work around the limitations of not being able to assign tags directly into a data tiddler without editing it (FormTiddler allows creating and editing tiddlers from 'view'). Maybe I'm not understanding exactly what you want, but it's possible to assign tags from 'view' if you put the

[tw] Generating a list based on custom fields.

2009-11-19 Thread Jakob Graulund Jørgensen
Hi I'm trying to create a couple of alphabetazied lists (ei. a-m, n-t, u- z) . The lists have to be alpabetazied according to tiddlers' custom fields, and I want the costum fields to be what is displayed in the list (ie. not the title as usually). I cant however quite make it work. My guess is

Re: [tw] Re: Mediawiki import not working

2009-11-19 Thread Martin Budden
To specify username and password in code, you can just set the variables: config.options.txtMediaWikiUsername and config.options.txtMediaWikiPassword MediaWiki 1.9 is a bit old. You might want to encourage your administrator to upgrade. I'm not sure what you mean by Could this be cause of MPTW

[tw] Re: Generating a list based on custom fields.

2009-11-19 Thread Måns
Maybe even: sortBy 'tiddler.fields[fieldone].toUpperCase()' Don't know if it's written in the right place... But I know it works with this: sortBy 'tiddler.title.toUpperCase()' Regards Måns Mårtensson On 19 Nov., 17:38, Måns humam...@gmail.com wrote: sortBy 'tiddler.fields[fieldone]' ??

[tw] Re: Generating a list based on custom fields.

2009-11-19 Thread Jakob Graulund Jørgensen
sortBy 'tiddler.fields[fieldone]' ?? it is store.getValue(tiddler,fieldone).readBracketedList().contains that is the problem. It doesnt distinguish between for example aaaBccc and cccBaaa Which is why i want to use .startsWith but i cant make that work -- You received this message because

[tw] Re: Generating a list based on custom fields.

2009-11-19 Thread Måns
sortBy 'tiddler.fields[fieldone]' ?? forEachTiddler where ' store.getValue(tiddler,fieldone) store.getValue(tiddler,fieldone).readBracketedList().contains ([A]) ' sortBy 'tiddler.fields[fieldone]' Måns On 19 Nov., 17:12, Jakob Graulund Jørgensen jakobgraul...@gmail.com wrote: Hi

[tw] Re: Generating a list based on custom fields.

2009-11-19 Thread Måns
I found this: http://tinyurl.com/yzpw5k7 Maybe it's the where 'tiddler.title.startsWith(Site)' Which you could change to sth usable where 'tiddler.fields[fieldone].startsWith(A)' ??? regards Måns Mårtensson On 19 Nov., 17:53, Jakob Graulund Jørgensen jakobgraul...@gmail.com wrote: sortBy

[tw] Re: Really basic question re:tables heading

2009-11-19 Thread TienTed
Try this, in StyleSheet add: .twtable th {background-color:#00} On Nov 18, 4:40 pm, Morris Gray msg...@symbex.net.au wrote: What determines the color of the text in a table heading e.g. !Heading Morris -- You received this message because you are subscribed to the Google Groups

Re: tbGTD

2009-11-19 Thread birddog
On Nov 19, 9:47 am, Erlend Leganger elegan...@gmail.com wrote: 2009/11/19 birddog briarpatch@gmail.com Tobias, One other question: It seems like tbGTD auto-saves with changes. Is that correct? If so, will the tiddlyspot version auto-save as well? with the other TiddlyWikis, I have

[tw] Re: Generating a list based on custom fields.

2009-11-19 Thread Jakob Graulund Jørgensen
 'tiddler.fields[fieldone].startsWith(A)' it is a good idea but I simply cant get the .startswith to work. same problem as my original. -- You received this message because you are subscribed to the Google Groups TiddlyWiki group. To post to this group, send email to

[tw] Re: displaying pdf as image

2009-11-19 Thread Måns
I found that SwfTools http://www.swftools.org/ was the best (very fast very high quality) solution for converting pdfs to swf, - so far: http://tinyurl.com/ygdaypa It's browser/OS agnostic and all.. Regards Måns Mårtensson On 19 Nov., 14:59, Måns humam...@gmail.com wrote: If you have only a