[tw] Re: How to interpolate field value into a link?

2016-03-06 Thread Eric Shulman
On Sunday, March 6, 2016 at 11:46:24 AM UTC-8, Cyrus Murphy wrote:
>
> I think I got it now. I put the tab macro in the makeTab macro call:
>
> \define makeTab(animal) < species]] [[tabList$animal$]] [[$animal$ FAQ]]" "viewAnimalDetails" 
> "$:/state/tab">>
>
> Thanks for your help again Eric.
>

Yeah... you got it now...

(and my last post "crossed in the mail" with yours, so you didn't need the 
extra help after all!)

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/40ad1383-b613-4ca4-8da4-b17bc5758e8a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How to interpolate field value into a link?

2016-03-06 Thread Eric Shulman
On Sunday, March 6, 2016 at 11:26:23 AM UTC-8, Cyrus Murphy wrote:
>
> Thanks Eric. That macro works fine outside of a tab macro, but breaks down 
> when put in a tab like this:
>
> < what={{!!animal-type}} />
>  [[tabListAnimals]] [[Animal FAQ]]" "viewAnimalDetails" "$:/state/tab">>
>
> Assuming it's a macro call within macro call issue of some type. I saw 
> this thread but is for TWC and not sure if there's a simpler solution in 
> TW5?
>

There is NO "inline" parsing within parameters in TiddlyWiki.  You CAN use 
a macro or transclusion as the entire value of a widget parameter (i.e., 
foo={{!!somefield}} or foo=<>), but you can't just embed a 
widget or macro call *inside* a parameter value and have it automatically 
expanded in place.  That is the job of a TW *macro* definition: to assemble 
wiki syntax from parts and pieces.

To achieve your goal, you need to write a macro that outputs a complete, 
valid <> macro to be parsed as wikitext.  Something like this:

\define animalTabs(what)
<>
\end
<$macrocall $name="animalTabs" what={{!!animal-type}} />

-e

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/1f03a4e8-4711-4809-bde9-cc8438038fe6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How to interpolate field value into a link?

2016-03-06 Thread Cyrus Murphy
I think I got it now. I put the tab macro in the makeTab macro call:

\define makeTab(animal) <>

Thanks for your help again Eric.

On Sunday, March 6, 2016 at 12:26:23 PM UTC-7, Cyrus Murphy wrote:
>
> Thanks Eric. That macro works fine outside of a tab macro, but breaks down 
> when put in a tab like this:
>
> < what={{!!animal-type}} />
>  [[tabListAnimals]] [[Animal FAQ]]" "viewAnimalDetails" "$:/state/tab">>
>
> Assuming it's a macro call within macro call issue of some type. I saw 
> this thread but is for TWC and not sure if there's a simpler solution in 
> TW5?
>
>
> https://groups.google.com/forum/#!searchin/tiddlywiki/macro$20within$20macro/tiddlywiki/sulPj4CJ9rY/lUqyQ7OLIMAJ
>
>
> On Friday, March 4, 2016 at 10:54:35 PM UTC-7, Eric Shulman wrote:
>>
>> On Friday, March 4, 2016 at 9:22:51 PM UTC-8, Cyrus Murphy wrote:
>>>
>>> What am I missing?
>>>
>>
>> macros.
>>
>> In TW5, when you want to assemble wiki syntax from bits and pieces, you 
>> write a macro and then pass the various bits to it as parameters.
>>
>> Something like this:
>>
>> \define makelink(what) [[About $what$ species]]
>>
>> <$macrocall $name="makelink" what={{!!animal-type}} />
>>
>> There's lots more you can do with macros (and variables).  Check the 
>> "references" section on TiddlyWiki.com for the basics.
>>
>> enjoy,
>> -e
>> Eric Shulman
>> TiddlyTools / ELS Design Studios
>> InsideTiddlyWiki: The Missing Manuals
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/9df9bb7a-9564-4787-9970-c34b0e33c5eb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] TOC question

2016-03-06 Thread Matias Altalef
a way to do the same thing that's a little prettier:

<>



On Tuesday, 2 September 2014 22:01:43 UTC-3, Andreas Hahn wrote:
>
> Hi David,
>
> the toc macro does not actually accept a filter expression as its first 
> parameter, but instead just a tag that is then filled into a filter 
> expression. Within the toc-macro, the list widget is invoked with the 
> following filter exp:
>
> <$list filter="[tag[$tag$]$sort$]">
>
> $tag$ is the first parameter, so your 
>
> <>
>
> leads to it being filled in like this:
>
> <$list filter="[tag[[tag[GettingStarted]!tag[$:/Note">
>
> And this is obviously not a well-formed filter expression. However this is 
> not the end of the line. To make
> your filter work, you can do a filter injection by doing
>
> <>
>
> so that it becomes
>
> <$list filter="[tag[GettingStarted]!tag[$:/Note]">
>
> which will work but doesn't make for good end-user experience whatsoever.
>
> /Andreas
>
>
> Am 03.09.2014 00:46, schrieb David Gifford:
>
> Why would both this:
>
> 
> <>
> 
>
> and this
>
> 
> <>
> 
>
> result in this:
>
> Filter error: Syntax error in filter expression
>
> and how do I get it to work? (Make a TOC of all tiddlers that have the tag 
> GettingStarted but not the tag $:/Note)
>
> p.s. I realize the new CSS is tc-toc. I am using a stylesheet where I have 
> changed the old tc-table-of-contents to suit my tastes here.
> -- 
> You received this message because you are subscribed to the Google Groups 
> "TiddlyWiki" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to tiddlywiki+...@googlegroups.com .
> To post to this group, send email to tiddl...@googlegroups.com 
> .
> Visit this group at http://groups.google.com/group/tiddlywiki.
> For more options, visit https://groups.google.com/d/optout.
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/3c36c766-de23-4102-afa7-cd3b53baa6ae%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 as a better option than ePub.

2016-03-06 Thread 'Mark S.' via TiddlyWiki
Just curious. Does zooming of TW on Safari on i-devices work appropriately?

On Firefox in Android, when you attempt to zoom on a tiddler the words go 
off the end of the screen. Very annoying and not how it works on the 
desktop. Fortunately, it works correctly on andtidwiki.

One of the advantages of epub readers (at least on Android) is that you can 
easily change font size and color and even set up night reading 
environments. To use TW as a complete epub substitute, it seems like you 
would need some way to easily swap themes to accommodate the user's 
environment.


Mark

On Saturday, March 5, 2016 at 10:57:19 PM UTC-8, John Newell wrote:
>
> (*First time Group Poster, 7 years TW user and fan.*)
>
> *THE SHORT VERSION *:
> I need assistance in creating a TW5 file that is an alternative to eBook 
> format - that is 
>
>- Non-editable by the reader
>- Without the sidebar ( as navigation is / will be - via tags & links 
>in each tiddler (chapter)  and "close tiddler button" at the base of the 
>long pages.)
>- and no access to backend
>
> If anyone can assist we'd be very grateful - and as I have had trouble 
> finding anything online that espouses the greatness of TW5 as a likely 
> BETTER alternative to eBooks in other formats ( and provides a guide to 
> achieving the uneditable standalone version ) - I would love to promote the 
> socks off tiddlywiki's benefits. I have over 400K social followers over 
> various accounts- the biggest following a few have caught up with me 
> recently on : twitter @magillamax
>
>
> *Background to this request :*
>
> My wife and I have just finished a very large tome (7MB) called "Spiritual 
> Quest" ("SQ") which we have recently issued to 40+ people to review before 
> taking it live.
> Created as an EPUB - it amazed me how many had trouble downloading it - 
> then opening in an ePub reader - usually iBooks.
> After getting frustrated at their ineptness - I looked at myself and 
> figured that "I" must make the book more accessible.
>
> I quickly created a TW5 version - uploaded to dropbox - and emailed it to 
> 22 ppl with a direct link to the TW5 within dropbox.
> Most had dropbox and opened it immediately _ voilĂ  !! 
> 
> I also provided to each a quick guide to Adding the SQ Tiddlywiki file to 
> "Reading list"
> In TW5 it renders (significantly) better, is more efficient in use of 
> space, cleaner, easier to edit, changing Settings to Airplane Mode and then 
> opening up perfectly in Safari - all good ---
> ( and TW5 is always a "snack" to edit and add to )
>
> thanks in advance - and I'll keep future comm's less wordy.. JN
>
>
>
>
> *Tiddlywiki has revolutionized my management of client information, 
> registrations, content, invoices etc ( especially with the advent of {{ }} 
> transclusions)I have also used it for VERY effective management and 
> tracking a recent (narrative) book.I love what TW5 can do, and use it 
> daily. However I am very cautious going into the deeper coding.*
>
> 
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/ba45e706-7921-4825-ab1e-6622539ad96a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How to interpolate field value into a link?

2016-03-06 Thread Cyrus Murphy
Thanks Eric. That macro works fine outside of a tab macro, but breaks down 
when put in a tab like this:

<
 [[tabListAnimals]] [[Animal FAQ]]" "viewAnimalDetails" "$:/state/tab">>

Assuming it's a macro call within macro call issue of some type. I saw this 
thread but is for TWC and not sure if there's a simpler solution in TW5?

https://groups.google.com/forum/#!searchin/tiddlywiki/macro$20within$20macro/tiddlywiki/sulPj4CJ9rY/lUqyQ7OLIMAJ


On Friday, March 4, 2016 at 10:54:35 PM UTC-7, Eric Shulman wrote:
>
> On Friday, March 4, 2016 at 9:22:51 PM UTC-8, Cyrus Murphy wrote:
>>
>> What am I missing?
>>
>
> macros.
>
> In TW5, when you want to assemble wiki syntax from bits and pieces, you 
> write a macro and then pass the various bits to it as parameters.
>
> Something like this:
>
> \define makelink(what) [[About $what$ species]]
>
> <$macrocall $name="makelink" what={{!!animal-type}} />
>
> There's lots more you can do with macros (and variables).  Check the 
> "references" section on TiddlyWiki.com for the basics.
>
> enjoy,
> -e
> Eric Shulman
> TiddlyTools / ELS Design Studios
> InsideTiddlyWiki: The Missing Manuals
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/78fe877b-0443-4ecd-9c33-aed4dde7f7dc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] I need your advice

2016-03-06 Thread Marc Ferguson
Thanks. Can you share your reasons?

Sent from my iPhone

> On Mar 5, 2016, at 11:21 PM, Alex Hough  wrote:
> 
> TW5 
> 
> Alex
> 
>> On 5 March 2016 at 22:29, Marc Ferguson  wrote:
>> Thanks. What is your feelings about TW classic or five for this project?
>> 
>> Sent from my iPhone
>> 
>>> On Mar 5, 2016, at 9:57 AM, Eric Shulman  wrote:
>>> 
 On Saturday, March 5, 2016 at 7:05:00 AM UTC-8, Marc wrote:
 Thanks. Do you have an email address for him?
>>> 
>>> Dave Gifford is a long-time TiddlyWiki user and relatively frequent poster 
>>> to this group.  He (and his family) are missionaries in Mexico. He has done 
>>> extensive work using TiddlyWiki (both Classic and TW5) for Bible-related 
>>> instruction and reference.  If you search the group posts for "Gifford", 
>>> you should be able to find his address in one of the postings.
>>> 
>>> enjoy,
>>> -e
>>> Eric Shulman
>>> TiddlyTools / ELS Design Studios
>>> -- 
>>> You received this message because you are subscribed to the Google Groups 
>>> "TiddlyWiki" group.
>>> To unsubscribe from this group and stop receiving emails from it, send an 
>>> email to tiddlywiki+unsubscr...@googlegroups.com.
>>> To post to this group, send email to tiddlywiki@googlegroups.com.
>>> Visit this group at https://groups.google.com/group/tiddlywiki.
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/tiddlywiki/47f04a1e-4715-41f6-ae57-be72a1a8dda0%40googlegroups.com.
>>> For more options, visit https://groups.google.com/d/optout.
>> 
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "TiddlyWiki" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to tiddlywiki+unsubscr...@googlegroups.com.
>> To post to this group, send email to tiddlywiki@googlegroups.com.
>> Visit this group at https://groups.google.com/group/tiddlywiki.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/tiddlywiki/4C84CD27-4CC8-4ADA-83F0-D460258EE7F3%40gmail.com.
>> 
>> For more options, visit https://groups.google.com/d/optout.
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "TiddlyWiki" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to tiddlywiki+unsubscr...@googlegroups.com.
> To post to this group, send email to tiddlywiki@googlegroups.com.
> Visit this group at https://groups.google.com/group/tiddlywiki.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/tiddlywiki/CALc1hYdvA_u2273M6cCcvMFhs23Spr8viTx-JBGD6cuhjcy_-g%40mail.gmail.com.
> For more options, visit https://groups.google.com/d/optout.

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/35D5CE91-86B7-4948-BA89-7D09EAF299AB%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 as a better option than ePub.

2016-03-06 Thread Ton Gerner

>
> Hi John,
>
>
>  If I have any questions - can I shoot them back to you ? 
>
> Sure.

Cheers,

Ton
 

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/547042f8-3c85-4c92-8040-03892128cfed%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: stack maketid

2016-03-06 Thread Matabele
Hi Andrew

OK -- back on a decent internet connection.

I posted a new version of the $action-maketid widget here 
. This version may be used in conjunction 
with the maketid[] filter to create a number of new tiddlers with various 
options for the titles.

regards

On Friday, 26 February 2016 16:26:40 UTC+2, andrew levy wrote:
>
> I am trying to make 2 new tiddlers with this add button but I am only 
> getting 1. Can someone advise where I am going wrong?
>
> thanks
>
> andrew
>
>
> \define newPublication_button2(publication_title,publication_authors,
> publication_journal,publication_volume,publication_year,publication_doi,
> publication_url,publication_abstract,edit:"show",tags,label,class,color)
>
> <$setfield set="!!publication_title" setTo="$publication_title$">
> <$setfield set="$:/temp/publication!!publication_title" setTo="">
>
> <$setfield set="!!publication_authors" setTo="$publication_authors$">
> <$setfield set="$:/temp/publication!!publication_authors" setTo="">
>
> <$setfield set="!!publication_journal" setTo="$publication_journal$">
> <$setfield set="$:/temp/publication!!publication_journal" setTo="">
>
> <$setfield set="!!publication_volume" setTo="$publication_volume$">
> <$setfield set="$:/temp/publication!!publication_volume" setTo="">
>
> <$setfield set="!!publication_year" setTo="$publication_year$">
> <$setfield set="$:/temp/publication!!publication_year" setTo="">
>
> <$setfield set="!!publication_doi" setTo="$publication_doi$">
> <$setfield set="$:/temp/publication!!publication_doi" setTo="">
>
> <$setfield set="!!publication_url" setTo="$publication_url$">
> <$setfield set="$:/temp/publication!!publication_url" setTo="">
>
> <$setfield set="!!publication_abstract" setTo="$publication_abstract$">
> <$setfield set="$:/temp/publication!!publication_abstract" setTo="">
>
> <$maketid  title="$publication_title$" tags="$:/_type/publication 
> $tags$" edit="$edit$" message="tw-set-field">
> 
>
><$maketid title="$publication_authors$" tags="$:/_type/author $tags$" 
> edit="$edit$" message="tw-set-field">
> <$button message="tw-new-tiddler" class="$class$"> $label$
> 
>
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> 
> \end
>
> \define newPublication_button(label:add "class:"",color:"#ff8389")
> <$macrocall $name="newPublication_button2" 
> publication_title={{$:/temp/publication!!publication_title}}
> publication_authors={{$:/temp/publication!!publication_authors}}
> publication_journal={{$:/temp/publication!!publication_journal}}
> publication_volume={{$:/temp/publication!!publication_volume}}
> publication_year={{$:/temp/publication!!publication_year}}
> publication_doi={{$:/temp/publication!!publication_doi}}
> publication_url={{$:/temp/publication!!publication_url}}
> publication_abstract={{$:/temp/publication!!publication_abstract}}
> edit={{$:/temp/publication!!edit}} 
> tags={{$:/temp/publication!!tags}} 
> label="$label$" 
> class="$class$" 
> color="$color$"/>
> \end
>
> <>
>
>
>
>
>  
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/b40413e3-2277-4d0e-a303-b22d690ab118%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 as a better option than ePub.

2016-03-06 Thread John Newell


On Sunday, March 6, 2016 at 7:54:48 PM UTC+11, Ton Gerner wrote:
>
> Hi John,
>
> On Sunday, March 6, 2016 at 7:57:19 AM UTC+1, John Newell wrote:
>>
>> (*First time Group Poster, 7 years TW user and fan.*)
>>
>> *THE SHORT VERSION *:
>> I need assistance in creating a TW5 file that is an alternative to eBook 
>> format - that is 
>>
>>- Non-editable by the reader
>>- Without the sidebar ( as navigation is / will be - via tags & links 
>>in each tiddler (chapter)  and "close tiddler button" at the base of the 
>>long pages.)
>>- and no access to backend
>>
>> Have a look at http://tw5readonly.tiddlyspot.com/
>
> Cheers,
>
> Ton
>


Hi Ton !!
I have read through the basics and shall attempt to get that in place 
tomorrow night when I have a kid-less house. I want to deliver a "white" 
theme - the current TW5 standard works fine - so, I guess it's best to just 
map the settings for both then apply the former. If I have any questions - 
can I shoot them back to you ? 

with many thanks - John Newell ( Yarra Valley, Australia )

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/f8ba379d-264d-4418-ad54-e5931498f2dd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: New plugin : link completion in body

2016-03-06 Thread Alain Dutech
@mondayrobot : let me know if something is wrong on Firefox+Win. I can
sometime have access to such a platform and could try to fix it.

@everyone : a new version of the plugin is available, with a small CSS fix
(no more bullets) and a configuration tiddler (swith case sensitive /
insensitive)

You can try/install it from http://snowgoon88.github.io/TW5-extendedit
Enjoy, suggest improvement, critic or signal bugs...

Snow

On Sat, Mar 5, 2016 at 9:11 PM, mondayrobot  wrote:

>
>>> 1. Maybe make it possible to identify the pattern not only with the
>>> first letters, but in all the tiddler title. For instance if I start
>>> writing "[[pat " I would get a list with the tiddlers "Patterns in nature"
>>> and "Quilting patterns". Sometimes you don't know the exact name of a
>>> tiddler (without searching), but you have a general idea.
>>>
>>
>> That should already be the case. In the demo, if you type [[Fo, it gives
>> you "hisFor" as a possible link, no?
>>
>
> Thank you for your help. I was trying it at work, and it didn't seem to
> work (Firefox on Win). Now I'm at my home computer (Firefox on Linux) and
> it works just fine. I'll check again on monday, probably I did something
> wrong.
>
> And thanks for the case sensitivity solution :)
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "TiddlyWiki" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/tiddlywiki/ojCXpPWGTIY/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> tiddlywiki+unsubscr...@googlegroups.com.
> To post to this group, send email to tiddlywiki@googlegroups.com.
> Visit this group at https://groups.google.com/group/tiddlywiki.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/tiddlywiki/a0f53d8e-5fd9-4e4d-95ac-ba204bba2665%40googlegroups.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/CAFF9YEGQS4F_oksg2-XVz-1nvLSHEpt-knpJXABaO23L8Tu5_g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 as a better option than ePub.

2016-03-06 Thread John Newell
If you do have something  - I would be grateful to see what it is I 
shall keep you updated - this goes live soon enough - all is written it's 
now just settings and copying the content - would appreciate feedback on 
how it looks ( and the content, too - if you like )
cheers
John 

On Sunday, March 6, 2016 at 8:03:10 PM UTC+11, Jed Carty wrote:
>
> A while ago I was experimenting with this idea but I didn't get too far 
> with it. If I can find where I put what I made I will share it.
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/f150af5e-3a33-4c4f-a608-929c973669ea%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 as a better option than ePub.

2016-03-06 Thread John Newell
Excellent - looks like that can get the job done - hides all that I want 
"hidden"
I shall work with that and see how this pans out ..

There were a couple of other issues - such as code for the Close Tiddler 
button - but got help the most primo of sources !
anything else needed - I will identify and add to this post
otherwise - all good and will post link to the TW5 ebook ( seriously - 
SO much better than epub ! )

hugely appreciated.
JN

On Sunday, March 6, 2016 at 7:54:48 PM UTC+11, Ton Gerner wrote:
>
> Hi John,
>
> On Sunday, March 6, 2016 at 7:57:19 AM UTC+1, John Newell wrote:
>>
>> (*First time Group Poster, 7 years TW user and fan.*)
>>
>> *THE SHORT VERSION *:
>> I need assistance in creating a TW5 file that is an alternative to eBook 
>> format - that is 
>>
>>- Non-editable by the reader
>>- Without the sidebar ( as navigation is / will be - via tags & links 
>>in each tiddler (chapter)  and "close tiddler button" at the base of the 
>>long pages.)
>>- and no access to backend
>>
>> Have a look at http://tw5readonly.tiddlyspot.com/
>
> Cheers,
>
> Ton
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/9a053898-e4ff-491b-af1d-992e7fdec838%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 as a better option than ePub.

2016-03-06 Thread Jed Carty
A while ago I was experimenting with this idea but I didn't get too far 
with it. If I can find where I put what I made I will share it.

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/6f8aba25-bd11-4f17-bcb4-6257bc93123d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 as a better option than ePub.

2016-03-06 Thread Ton Gerner
Hi John,

On Sunday, March 6, 2016 at 7:57:19 AM UTC+1, John Newell wrote:
>
> (*First time Group Poster, 7 years TW user and fan.*)
>
> *THE SHORT VERSION *:
> I need assistance in creating a TW5 file that is an alternative to eBook 
> format - that is 
>
>- Non-editable by the reader
>- Without the sidebar ( as navigation is / will be - via tags & links 
>in each tiddler (chapter)  and "close tiddler button" at the base of the 
>long pages.)
>- and no access to backend
>
> Have a look at http://tw5readonly.tiddlyspot.com/

Cheers,

Ton

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/e05333c8-76a8-4d6a-adcc-c5fd9060c1ba%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.