I forgot "versa".
I use ForEachTiddlerPlugin (http://tiddlywiki.abego-software.de/
#ForEachTiddlerPlugin) to fetch the data i various ways.
To write a csv file, or to make tables like this for a table of the
relevant tiddlers with correct columntitles and order:
<<forEachTiddler
where
'tiddler.tags.contains("TagName")'
sortBy 'tiddler.title'
write
'(index < 200) ? "|"+(index+1)+"|[["+tiddler.title+"]]|"+tiddler.body
+"|"+tiddler.tags+"| [["+tiddler.fields["1'stFieldnameOfYourChoice"]
+"]] |"+tiddler.fields["2'ndFieldnameOfYourChoice"]+"|"+tiddler.fields
["3'dFieldnameOfYourChoice"]+"|"+tiddler.fields
["5'thFieldnameOfYourChoice"]+"|"+tiddler.fields
["6'thFieldnameOfYourChoice"] +"|\n" : ""'
        begin '"|sortable|k\n|!#|title|text|tags|
1'stFieldnameOfYourChoice|2'nd|3'd|4'th|5'th|h\n"'
        end 'count+" tiddlers\n"'
        none '"no tiddlers\n"'
>>

Or csv directly - Sorry, but I don't know how to get more than just
the titles in one row:

<<forEachTiddler
 where
 'tiddler.tags.contains("TagName")'
 write
 '((index == 0) ? "" : ", ")+"[["+tiddler.title+"]]"'
>>

YS Måns Mårtensson

On Apr 18, 11:35 pm, Måns <[email protected]> wrote:
> Oh I forgot to say:
> There's a limitation for importing to the textfield - It cannot
> interpret commas in the text - not even if it's isolated in some way -
> so you have to be carefull - and remove all commas from textfields...
>
> Regards Måns Mårtensson
>
> On Apr 18, 11:31 pm, Måns <[email protected]> wrote:
>
> > Hi rpnfan
>
> > Eric Shulman has made this 
> > plugin:http://www.tiddlytools.com/#CreateTiddlersFromCSV
>
> > It works very well!
>
> > I'm using it to import all students and teachers (less than 200) from
> > my school, to tiddlers in one go -
> > I specify tiddlertitles, tags (spaceseperated list) and fieldvalues
> > (for custom fieldnames)
> > I've even implemented a google spreadsheet in my CreateTiddlersFromCSV-
> > tiddler.
> > It exports to csv directly in the browser and there's no need for a
> > program..
>
> > Regards Måns Mårtensson
>
> > On Apr 18, 10:35 pm, rpnfan <[email protected]> wrote:
>
> > > Hi,
>
> > > I'm new to TiddlyWiki and have searched if there is an option/plugin
> > > or external solution or any help to export or import all Tiddlers to a
> > > CSV format file? Before I dive into a new system I like to be sure
> > > that data entered can be reused later when I wish/need that :-)
>
> > > My wish is to import/export
>
> > > Tiddlername, Tiddler-Content, Tiddler-Tabs (separeted with a definable
> > > separation char)
>
> > > to/from a CSV file.
>
> > > Looking forward your ideas and pointers.
>
> > > Best regards
> > > Peter
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to