[tw] Re: TiddlyWiki Generator -- script to generate a TiddlyWiki type report -- is there any - ???

2011-02-02 Thread Tobias Beer
This doesn't sound overly hard. Simply put certain placeholders into
your tiddlers or tiddlywiki html ...then do a string replace and
voila, you've populated your wiki with whatever you wanted rendered TW
style.

Cheers, Tobias.

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[tw] Re: TiddlyWiki Generator -- script to generate a TiddlyWiki type report -- is there any - ???

2011-03-01 Thread Craig in Calgary
newbie01,

If it's not proprietary I (and likely others) would like to see your
resulting script and TW template. Thank you in advance.

Any TW gurus,

Which, if any, available plugin(s) can be used to encode plain text
for insertion into a TW the way newbie01 is doing it? Are there any
plugin(s) that can process RTF?

I ask because I am wondering about how I could "push" content such as
MS Word documents (in RTF) into a TW without the laborious cut-n-
paste. Better yet, "push" the content with as much formatting
remaining as possible. Thoughts?

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[tw] Re: TiddlyWiki Generator -- script to generate a TiddlyWiki type report -- is there any - ???

2011-03-02 Thread UnclePhil
Be inventive

RTF to HTML is not so complicated (check sf.net)
Html to purestore via script is easy  (bash, powershell, ruby,..)
Include the purestore with the includeplugin, and you have some nice
result
--
Have a look on this ruby script --
http://unclephil.couchone.com/tiddlycouch/_design/tiddlycouch/_list/tiddlywiki/tiddlers#Nginx2Twstore
I'll do that every day  for nginx, bind, vmware and other config files
to create portable documentation


Ph Koenig
Unclephil

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



Re: [tw] Re: TiddlyWiki Generator -- script to generate a TiddlyWiki type report -- is there any - ???

2011-02-03 Thread Jeremy Ruston
Indeed, generating TiddlyWiki files as a report format is pretty
straightforward. The main gotcha is to observe the correct encoding
rules: tiddlers are stored as  elements in the TiddlyWiki HTML
file, and therefore their content needs to be HTML encoded, such that:

* Convert & to "&"
* Convert < to "<"
* Convert > to ">"
* Convert " to """

(Without the double quotes around the substituted string).

Best wishes

Jeremy

On Wed, Feb 2, 2011 at 11:39 PM, Tobias Beer  wrote:
> This doesn't sound overly hard. Simply put certain placeholders into
> your tiddlers or tiddlywiki html ...then do a string replace and
> voila, you've populated your wiki with whatever you wanted rendered TW
> style.
>
> Cheers, Tobias.
>
> --
> You received this message because you are subscribed to the Google Groups 
> "TiddlyWiki" group.
> To post to this group, send email to tiddlywiki@googlegroups.com.
> To unsubscribe from this group, send email to 
> tiddlywiki+unsubscr...@googlegroups.com.
> For more options, visit this group at 
> http://groups.google.com/group/tiddlywiki?hl=en.
>
>



-- 
Jeremy Ruston
mailto:jer...@osmosoft.com
http://www.tiddlywiki.com

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to tiddlywiki@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.