[tw] Re: Variable inside a filter

2017-03-29 Thread 'Mark S.' via TiddlyWiki
There's at least 2 mistakes in your code. But it's easy to make mistakes in 
the quasi-documented world of TW macros, parameters, transclusions ...

This:

<$set name="fieldvalue" value="<$view field=$field$/>">

isn't doing what you think it's doing. It's not assigning the value of the 
view to fieldvalue. It's assigning a string that gets passed on as "<$view 
field=$field$/>" which in turn gets processed on #3 and LOOKS like it's 
doing what you want. But what you want is (or probably is):

<$set name="fieldvalue" value={{!!$field$}}>

In the filter operator, this:

<$list filter="[field:$field$[]]">

should be

<$list filter="[field:$field$]">

Notice that the angle brackets replace one set of square brackets.

Good luck!
Mark


On Wednesday, March 29, 2017 at 12:40:23 PM UTC-7, Steven Schneider wrote:
>
> I'm trying to, well, here's the code:
>
> A > I define a macro fpnl (eventually, first previous next last) that 
> accepts a tiddler (usually, <> and a field that has a value
> B > I am trying to generate a link to the first & last & next & previous 
> tiddler that shares the value on the specified field with the currentTiddler
> C > right now, I can not get the list filter to work with the field and 
> value variables. Obviously, my mistake is in the filter line (between 3 & 4 
> below).  I've tried:
>
> [field:$field$]
> [field:$field$[]]
> [field:$field$[<>]]
>
> Any suggestions?
>
>
> \define fpnl(tiddler field)
> 1 tiddler: <>
> 2 field: $field$
> <$set name="fieldname" value=$field$>
> <$set name="fieldvalue" value="<$view field=$field$/>">
> 3 value of $field$: <>
> <$list filter="[field:$field$[]]">
> 4 <>
> 
> 
> \end
>
> <$macrocall $name="fpnl" tiddler=<> field="season"/>
> ``(with current tiddler having field season=winter)
> ``
>
>
> Thanks,
>
> //steve.
>
>
>

-- 
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/e447af86-4d4b-4c07-96e8-7404453f9081%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] TiddlyWiki StackExchange Update : anyone to be the 100 th follower?

2017-03-29 Thread Eskha
Hello to all TW users and contributors,

Does anyone wants to be the 100 th TW follower on the in definition Stack 
Exchange TW Q&A StackExchange site ?

http://area51.stackexchange.com/proposals/105326/tiddlywiki

... and contribute to the 12 missing quetions to move to the next stage!

Best regards.

Eskha


-- 
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/0e7a5c34-f03e-436a-aed8-3137a81456b2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] [TW5] Transcluding a Core Button is Hidden in pop-out Window

2017-03-29 Thread Thomas Elmiger
Hi there!

I tried to fix some issues described by Josiah (aka TiddlyTweeter) over 
there  
…

@TiddlyTweeter:
>
> Over here: 
> https://groups.google.com/d/msg/tiddlywiki/A9DTfpJyzuQ/e49qdXffAQAJ an 
> interesting point was raised about the LINGO of "Open in new window." 
>

Using the fix Jeremy suggested here I was able to present the save button* 
also in the new window … but some issues remain: 

   - the dirty-indicator does not show up, as the body tag of the new 
   window doesn’t get the *tc-dirty* class like the body in the main window 
   does
   - the class *tc-btn-invisible* is missing on my save-button – I fixed 
   that by duplicating the corresponding styles to my own class
   - the font size is slightly smaller in the new window (it is calculated 
   to 14px instead of 15px font-size) in the case of my list – I can’t say why
   - … there might be other differences I didn’t notice

Jeremy (or others), can you give further advice on reasons and hints to fix 
these effects?


You can play with my app here: https://tid.li/tw5/hacks.html#ToDoNow


All the best,

Thomas


*Here’s my fixed code for the save button:


\define teBigSaveButton(class:"te-third")
<$vars tv-config-toolbar-icons="yes">
@@.te-btn-big.$class$ {{$:/core/ui/Buttons/save-wiki}}@@ 

\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/ea7c2cbf-c0ef-455b-b2a8-5340fa8d1578%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Variable inside a filter

2017-03-29 Thread Steven Schneider
I'm trying to, well, here's the code:

A > I define a macro fpnl (eventually, first previous next last) that 
accepts a tiddler (usually, <> and a field that has a value
B > I am trying to generate a link to the first & last & next & previous 
tiddler that shares the value on the specified field with the currentTiddler
C > right now, I can not get the list filter to work with the field and 
value variables. Obviously, my mistake is in the filter line (between 3 & 4 
below).  I've tried:

[field:$field$]
[field:$field$[]]
[field:$field$[<>]]

Any suggestions?


\define fpnl(tiddler field)
1 tiddler: <>
2 field: $field$
<$set name="fieldname" value=$field$>
<$set name="fieldvalue" value="<$view field=$field$/>">
3 value of $field$: <>
<$list filter="[field:$field$[]]">
4 <>


\end

<$macrocall $name="fpnl" tiddler=<> field="season"/>
``(with current tiddler having field season=winter)
``


Thanks,

//steve.


-- 
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/dffcf242-61d4-409d-a575-f4a884f4876a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Easy way to combine TW5 files?

2017-03-29 Thread Lost Admin


On Tuesday, March 28, 2017 at 3:37:14 PM UTC-4, PMario wrote:
>
> On Tuesday, March 28, 2017 at 8:15:03 PM UTC+2, JWHoneycutt wrote:
>>
>> Hello all, 
>>
>
> Hi
> Your title says: "Easy way to combine TW5 files?"
>
> The problem here is "Easy" .. 
>

I'm partial to the unix command line cat wiki1.html wiki2.html > 
newwiki.html

Granted that totally breaks the wiki but I find it easy. Pointless, but 
easy. :)
 

-- 
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/8bec81c6-19b6-4268-a9c1-de50c59bd72a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] [TW5] Transcluding a Core Button is Hidden in pop-out Window

2017-03-29 Thread @TiddlyTweeter
Over here: 
https://groups.google.com/d/msg/tiddlywiki/A9DTfpJyzuQ/e49qdXffAQAJ an 
interesting point was raised about the LINGO of "Open in new window." Out 
of the context of specific Tiddlers I do think its a bit confusing. 
Probably a confusion shared with the net in general when that phrase is 
used? Open WHAT in a new window? The deep connectedness of the child window 
Tiddler to mother TW is not so clear in the language.

Just a comment

Best wishes
Josiah

On Wednesday, 29 March 2017 16:22:20 UTC+2, @TiddlyTweeter wrote:
>
> Ciao Jeremy
>
> Thank you for that clarification. I was to about to comment to PMario that 
> most everything still functions in  Tiddlers spawned from“Open in new 
> window”.
>
> Functionally it is VERY useful for when you need an "Overview" tiddler 
> constantly open. I use it habitually for Telmiger's ToDoNow. People who 
> have either large monitors or more than one can really leverage using that 
> feature.
>
> Its also useful for printing just one Tiddler.
>
> Its also useful if you want to just save "a page".
>
> Its also useful if you want to extract just the rendered HTML in the body 
> section.
>
> I have been confused why sometimes some graphics don't appear. There are 
> other cases too where some styling seems to be missing. Slowly I begin to 
> understand why.
>
> Best wishes
> Josiah 
>
> On Wednesday, 29 March 2017 15:53:31 UTC+2, Jeremy Ruston wrote:
>>
>>
>> On 28 Mar 2017, at 17:25, Jeff Vance  wrote:
>>
>> I put the following in several tiddlers as a shortcut to the "New Here" 
>> button.  I didn't want to put it permanently in the toolbar, but these 
>> particular tiddlers generate index table of tiddlers tagged with this one. 
>> So I thought it would be convenient to put a "New Here" icon at the bottom 
>> of the table.  
>>
>> {{||$:/core/ui/Buttons/new-here}}
>>
>> This works, but I noticed that if I Pop-Out this tiddler into a new 
>> window, the icon doesn't appear.  I can still click in that spot and it 
>> acts as if the icon is there, but I can't see it.  Any ideas why this 
>> happens and how to fix it?
>>
>>
>> The reason that nothing is appearing is because the toolbar buttons 
>> require the variables tv-config-toolbar-icons and tv-config-toolbar-text to 
>> control whether the text and or the icon is displayed. You can use them 
>> like this:
>>
>> <$vars tv-config-toolbar-icons="yes">
>> {{||$:/core/ui/Buttons/new-here}}
>> 
>>
>> I suppose you mean the tiddler toolbar command: "Open in new window" 
>>
>> This command renders the tiddler content and opens it in a new tab. 
>> That's it. 
>> There is no js code. So this tiddler is a "static" representation of the 
>> tiddler. ... It has no idea about other tiddlers. 
>>
>>
>> That is actually not correct. The windows opened by the “Open in new 
>> window” toolbar button are fully functional wikitext windows. The reason 
>> that some things don’t work in that context is generally because the new 
>> window doesn’t use the full page template, and thus omits some 
>> initialisation present in the main window.
>>
>> Best wishes
>>
>> Jeremy.
>>
>>
>>
>> That's the intended behaviour. 
>>
>> eg: 
>>
>> This is a test: {{||$:/core/ui/Buttons/new-here}}
>>
>> creates: 
>>
>> 
>>   
>> ...a lot of tw CSS...
>> New Tiddler
>>   
>>   
>> This is a test: 
>> 
>>   
>> 
>>
>> Since the CSS is exported, it's possible to see the content in a 
>> formatted way. ... But there is no interaction. 
>>
>> have fun!
>> mario
>>
>>
>>
>> -- 
>> 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 https://groups.google.com/group/tiddlywiki.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/tiddlywiki/57e2850f-f9e4-4fd5-a38b-f6cf1b7dd497%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/12f2b21f-2430-4b13-a7a5-297165df0b40%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Plugins updated: ToDoNow and Listreveal

2017-03-29 Thread @TiddlyTweeter
I think you do raise the point that maybe the language "Open in new window" 
could be confusing. It is NOT a new browser instance. Its more like a 
"Pop-out". The point is its a child, or slave, of the TW. Anything you do 
in it is immediately done in the TW.





On Wednesday, 29 March 2017 19:17:55 UTC+2, Lost Admin wrote:
>
> Are you saying that you have the same tiddlywiki open in two separate 
> windows (or tabs)?
>
> If so, that is not a good idea. TiddlyWiki is a single file. The entire 
> thing gets loaded into the browser. If you have the same tiddlywiki in 2 
> separate tabs (or windows) you have the same file open twice. Since there 
> is no file locking, saving one window will overwrite any changes made in 
> the other window but will not update the other window.
>
> On Wednesday, March 29, 2017 at 11:44:40 AM UTC-4, @TiddlyTweeter wrote:
>>
>> Ciao Thomas
>>
>> Small issue that is likely not yours per se. IF you open the Tiddler 
>> ToDoNow via "Open in another window" the "save" button is replaced by a 
>> bland placeholder. 
>>
>> Since I like to use your gizmo from a spawned  window (so its always to 
>> hand) ... can the save button be forced to appear?
>>
>> See this current thread if you are unclear what I'm talking about: 
>> https://groups.google.com/d/msg/tiddlywiki/8mqkqAv5vp8/hafnGlDUAQAJ
>>
>> Best wishes
>> Josiah
>>
>> On Monday, 27 March 2017 23:20:26 UTC+2, @TiddlyTweeter wrote:
>>>
>>> Thomas, the priority setting is a neat feature and VERY flexible. 
>>>
>>> Its perhaps worth also explaining that you can BOTH set priorities in 
>>> the drop-down using any single character AND also manually add other single 
>>> characters to the priority field of individual tiddlers that will NOT 
>>> appear in the drop-down selector. 
>>>
>>> The point of that is you can track items rarely edited, but needed. For 
>>> instance I use the letter "C" for Contract dates that I'll only ever enter 
>>> once. I won't put it on the priority select menu. Too rare. 
>>>
>>> Heck, maybe that is all too complicated!!! So forget it.
>>>
>>> In short: Its a very flexible tool. And very easy to learn.
>>>
>>> Best wishes
>>> Josiah 
>>>
>>> On Monday, 27 March 2017 23:02:59 UTC+2, Thomas Elmiger wrote:

 Ah, now I get it, Mark – you asked about the project list: Well, all 
 other/additional tags of ToDo tiddlers will show up in the project select. 

 Maybe I should provide an example for that. 
 Cheers, Thomas
>>>
>>>

-- 
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/4e8ec7af-1aaf-4ccc-b8a6-a97b4063d169%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Noteself Error (for Danielo)

2017-03-29 Thread Alfonso Arciniega
Hola de nuevo, it's me again.

The issue persists. I even tried with Tiddly Desktop v008 and get the same 
error, so the browser is not the culprit. I only get this issue with 
Noteself (all my other TiddlyWiki documents work fine.

The online version works fine though. However, the issue I have with the 
online version is that, as you clearly mention in the Note Self website, it 
serves a selfish interest–it is for my eyes only–and the document cannot be 
shared with others. That is why I wanted the offline version to work for me.

Saludos,

Alfonso

On Monday, March 27, 2017 at 10:10:30 PM UTC-6, Alfonso Arciniega wrote:
>
> Hola Danielo,
>
> I downloaded NoteSelf from the only link not once but trice. Tried several 
> times making copies. Same result. I think I figured out what the issue may 
> be: I was using portable browsers running out of a USB with no cache 
> allowed.
>
> Saludos,
>
> Alfonso
>

-- 
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/9d38cdeb-fd4a-4653-9471-b66cc1c32466%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Plugins updated: ToDoNow and Listreveal

2017-03-29 Thread @TiddlyTweeter
No. Its the same TW. I use the option "Open in New Window" available for 
any tiddler you want. It functions within the same TW. It is just a 
different view. I'm lucky in having multiple monitors that lets me do that 
kinda thing. You'd be hard pressed to ever get a conflict because you only 
have ONE keyboard :-)

Best wishes
Josiah

On Wednesday, 29 March 2017 19:17:55 UTC+2, Lost Admin wrote:
>
> Are you saying that you have the same tiddlywiki open in two separate 
> windows (or tabs)?
>
> If so, that is not a good idea. TiddlyWiki is a single file. The entire 
> thing gets loaded into the browser. If you have the same tiddlywiki in 2 
> separate tabs (or windows) you have the same file open twice. Since there 
> is no file locking, saving one window will overwrite any changes made in 
> the other window but will not update the other window.
>
> On Wednesday, March 29, 2017 at 11:44:40 AM UTC-4, @TiddlyTweeter wrote:
>>
>> Ciao Thomas
>>
>> Small issue that is likely not yours per se. IF you open the Tiddler 
>> ToDoNow via "Open in another window" the "save" button is replaced by a 
>> bland placeholder. 
>>
>> Since I like to use your gizmo from a spawned  window (so its always to 
>> hand) ... can the save button be forced to appear?
>>
>> See this current thread if you are unclear what I'm talking about: 
>> https://groups.google.com/d/msg/tiddlywiki/8mqkqAv5vp8/hafnGlDUAQAJ
>>
>> Best wishes
>> Josiah
>>
>> On Monday, 27 March 2017 23:20:26 UTC+2, @TiddlyTweeter wrote:
>>>
>>> Thomas, the priority setting is a neat feature and VERY flexible. 
>>>
>>> Its perhaps worth also explaining that you can BOTH set priorities in 
>>> the drop-down using any single character AND also manually add other single 
>>> characters to the priority field of individual tiddlers that will NOT 
>>> appear in the drop-down selector. 
>>>
>>> The point of that is you can track items rarely edited, but needed. For 
>>> instance I use the letter "C" for Contract dates that I'll only ever enter 
>>> once. I won't put it on the priority select menu. Too rare. 
>>>
>>> Heck, maybe that is all too complicated!!! So forget it.
>>>
>>> In short: Its a very flexible tool. And very easy to learn.
>>>
>>> Best wishes
>>> Josiah 
>>>
>>> On Monday, 27 March 2017 23:02:59 UTC+2, Thomas Elmiger wrote:

 Ah, now I get it, Mark – you asked about the project list: Well, all 
 other/additional tags of ToDo tiddlers will show up in the project select. 

 Maybe I should provide an example for that. 
 Cheers, Thomas
>>>
>>>

-- 
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/e38d2299-0d46-46bf-90e7-5106273030ff%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Plugins updated: ToDoNow and Listreveal

2017-03-29 Thread Lost Admin
Are you saying that you have the same tiddlywiki open in two separate 
windows (or tabs)?

If so, that is not a good idea. TiddlyWiki is a single file. The entire 
thing gets loaded into the browser. If you have the same tiddlywiki in 2 
separate tabs (or windows) you have the same file open twice. Since there 
is no file locking, saving one window will overwrite any changes made in 
the other window but will not update the other window.

On Wednesday, March 29, 2017 at 11:44:40 AM UTC-4, @TiddlyTweeter wrote:
>
> Ciao Thomas
>
> Small issue that is likely not yours per se. IF you open the Tiddler 
> ToDoNow via "Open in another window" the "save" button is replaced by a 
> bland placeholder. 
>
> Since I like to use your gizmo from a spawned  window (so its always to 
> hand) ... can the save button be forced to appear?
>
> See this current thread if you are unclear what I'm talking about: 
> https://groups.google.com/d/msg/tiddlywiki/8mqkqAv5vp8/hafnGlDUAQAJ
>
> Best wishes
> Josiah
>
> On Monday, 27 March 2017 23:20:26 UTC+2, @TiddlyTweeter wrote:
>>
>> Thomas, the priority setting is a neat feature and VERY flexible. 
>>
>> Its perhaps worth also explaining that you can BOTH set priorities in the 
>> drop-down using any single character AND also manually add other single 
>> characters to the priority field of individual tiddlers that will NOT 
>> appear in the drop-down selector. 
>>
>> The point of that is you can track items rarely edited, but needed. For 
>> instance I use the letter "C" for Contract dates that I'll only ever enter 
>> once. I won't put it on the priority select menu. Too rare. 
>>
>> Heck, maybe that is all too complicated!!! So forget it.
>>
>> In short: Its a very flexible tool. And very easy to learn.
>>
>> Best wishes
>> Josiah 
>>
>> On Monday, 27 March 2017 23:02:59 UTC+2, Thomas Elmiger wrote:
>>>
>>> Ah, now I get it, Mark – you asked about the project list: Well, all 
>>> other/additional tags of ToDo tiddlers will show up in the project select. 
>>>
>>> Maybe I should provide an example for that. 
>>> Cheers, Thomas
>>
>>

-- 
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/82842828-8541-4884-9d6b-0a836e447a36%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Plugins updated: ToDoNow and Listreveal

2017-03-29 Thread @TiddlyTweeter
Further to last ...

in the window it looks like this ...



in the main TW like this ...



J, x

On Wednesday, 29 March 2017 17:44:40 UTC+2, @TiddlyTweeter wrote:
>
> Ciao Thomas
>
> Small issue that is likely not yours per se. IF you open the Tiddler 
> ToDoNow via "Open in another window" the "save" button is replaced by a 
> bland placeholder. 
>
> Since I like to use your gizmo from a spawned  window (so its always to 
> hand) ... can the save button be forced to appear?
>
> See this current thread if you are unclear what I'm talking about: 
> https://groups.google.com/d/msg/tiddlywiki/8mqkqAv5vp8/hafnGlDUAQAJ
>
> Best wishes
> Josiah
>
> On Monday, 27 March 2017 23:20:26 UTC+2, @TiddlyTweeter wrote:
>>
>> Thomas, the priority setting is a neat feature and VERY flexible. 
>>
>> Its perhaps worth also explaining that you can BOTH set priorities in the 
>> drop-down using any single character AND also manually add other single 
>> characters to the priority field of individual tiddlers that will NOT 
>> appear in the drop-down selector. 
>>
>> The point of that is you can track items rarely edited, but needed. For 
>> instance I use the letter "C" for Contract dates that I'll only ever enter 
>> once. I won't put it on the priority select menu. Too rare. 
>>
>> Heck, maybe that is all too complicated!!! So forget it.
>>
>> In short: Its a very flexible tool. And very easy to learn.
>>
>> Best wishes
>> Josiah 
>>
>> On Monday, 27 March 2017 23:02:59 UTC+2, Thomas Elmiger wrote:
>>>
>>> Ah, now I get it, Mark – you asked about the project list: Well, all 
>>> other/additional tags of ToDo tiddlers will show up in the project select. 
>>>
>>> Maybe I should provide an example for that. 
>>> Cheers, Thomas
>>
>>


-- 
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/be48cf9c-70c4-46b2-9509-1795785f20c6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Transclusion & Formatting Issue

2017-03-29 Thread @TiddlyTweeter
Update: Whatever is going on is not simple. 

I did tests with normal text laid out in exactly the same way & it 
transcluded fine. 

The particular issue seems to be related to the Checklist Plugin once its 
transcluded. It still functions, but spacing before and after it change. 
Because its dynamically interacting with the text (that otherwise appears 
normal) its not so easy to see what is going on. I leave it since its not a 
critical issue & I don't want to lumber you with an issue I can't describe 
well.

Best wishes
Josiah  

On Monday, 27 March 2017 23:30:36 UTC+2, @TiddlyTweeter wrote:
>
> Ciao Jed & Thomas
>
> Thanks for the tips.
>
> I tried Jed's suggestion without success. Since its inside a complex 
> transclusion I will make a test that is simpler to try to pin it down in a 
> way where the issue gets clearer & I can document it better. 
>
> Tomorrow.
>
> Notte, Josiah   
>
> On Monday, 27 March 2017 23:07:17 UTC+2, Thomas Elmiger wrote:
>>
>> Hi, I add to the guesswork: Might be the transclusion adds a div or a 
>> span element surrounding your stuff that breaks the CSS formatting of the 
>> titles … would have to see a live example to check that. 
>>
>> -t
>
>

-- 
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/0b6b54ab-51fe-494a-abce-84d3f452e070%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Plugins updated: ToDoNow and Listreveal

2017-03-29 Thread @TiddlyTweeter
Ciao Thomas

Small issue that is likely not yours per se. IF you open the Tiddler 
ToDoNow via "Open in another window" the "save" button is replaced by a 
bland placeholder. 

Since I like to use your gizmo from a spawned  window (so its always to 
hand) ... can the save button be forced to appear?

See this current thread if you are unclear what I'm talking about: 
https://groups.google.com/d/msg/tiddlywiki/8mqkqAv5vp8/hafnGlDUAQAJ

Best wishes
Josiah

On Monday, 27 March 2017 23:20:26 UTC+2, @TiddlyTweeter wrote:
>
> Thomas, the priority setting is a neat feature and VERY flexible. 
>
> Its perhaps worth also explaining that you can BOTH set priorities in the 
> drop-down using any single character AND also manually add other single 
> characters to the priority field of individual tiddlers that will NOT 
> appear in the drop-down selector. 
>
> The point of that is you can track items rarely edited, but needed. For 
> instance I use the letter "C" for Contract dates that I'll only ever enter 
> once. I won't put it on the priority select menu. Too rare. 
>
> Heck, maybe that is all too complicated!!! So forget it.
>
> In short: Its a very flexible tool. And very easy to learn.
>
> Best wishes
> Josiah 
>
> On Monday, 27 March 2017 23:02:59 UTC+2, Thomas Elmiger wrote:
>>
>> Ah, now I get it, Mark – you asked about the project list: Well, all 
>> other/additional tags of ToDo tiddlers will show up in the project select. 
>>
>> Maybe I should provide an example for that. 
>> Cheers, Thomas
>
>

-- 
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/aff85d0b-5bf2-4857-874e-044a4d156e3e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: AutoPill (beta) - Parser to automatically turn any word into a tag pill (if it's a tag)

2017-03-29 Thread David Szego


On Wednesday, 29 March 2017 07:22:37 UTC-4, @TiddlyTweeter wrote:
>
>
> I have a Use Case that may be of interest ...
>
> - HELPFUL AID: Auto tagging ALL the occurrence of NAMES of characters in 
> the text so a student could get a useful visual sense of the pattern of 
> occurrence.
>

 Great use case... Make the names a Tag, and they get highlighted.

1 - That the Auto-Tagging Gizmo be able to be TOGGLED on/off. Its very 
useful but it could also be over "noisy" as a perpetual thing in texts. 
Being able to toggle it on and off would, I think make it much more useful 
to someone like me.

Now *that* I'm excited about! And as soon as I read it I realized how easy 
it would be, what a great suggestion! I'll work on it tonight or tomorrow 
when I have some time. Basically put a button beside the tags on the header 
of the Tiddler, which changes the <> macro to return a button 
wrapper or return just the word.

Love it, would be useful for me too!

2 - Taking that further ... an awkward? thought ... that the addition of 
in-text Auto-Pills could also just be done on strings in the text from a 
"Picklist", rather than from extant tags? In other words the tags are 
created dynamically according to what is on a "Picklist". Hope this is 
clear? 

I'd make that a separate plugin, but it's an interesting idea.

-- 
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/99db9e55-ef69-4150-b677-95de37db86e7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] [TW5] Transcluding a Core Button is Hidden in pop-out Window

2017-03-29 Thread @TiddlyTweeter
Ciao Jeremy

Thank you for that clarification. I was to about to comment to PMarion that 
most everything still functions in  Tiddlers spawned from“Open in new 
window”.

Functionally it is VERY useful for when you need an "Overview" tiddler 
constantly open. I use it habitually for Telmiger's ToDoNow. People who 
have either large monitors or more than one can really leverage using that 
feature.

Its also useful for printing just one Tiddler.

Its also useful of you want to just save "a page".

Its also useful if you want to extract just the rendered HTML in the body 
section.

I have been confused why sometimes some graphics don't appear. There are 
other cases too where some styling seems to be missing. Slowly I begin to 
understand why.

Best wishes
Josiah 

On Wednesday, 29 March 2017 15:53:31 UTC+2, Jeremy Ruston wrote:
>
>
> On 28 Mar 2017, at 17:25, Jeff Vance > 
> wrote:
>
> I put the following in several tiddlers as a shortcut to the "New Here" 
> button.  I didn't want to put it permanently in the toolbar, but these 
> particular tiddlers generate index table of tiddlers tagged with this one. 
> So I thought it would be convenient to put a "New Here" icon at the bottom 
> of the table.  
>
> {{||$:/core/ui/Buttons/new-here}}
>
> This works, but I noticed that if I Pop-Out this tiddler into a new 
> window, the icon doesn't appear.  I can still click in that spot and it 
> acts as if the icon is there, but I can't see it.  Any ideas why this 
> happens and how to fix it?
>
>
> The reason that nothing is appearing is because the toolbar buttons 
> require the variables tv-config-toolbar-icons and tv-config-toolbar-text to 
> control whether the text and or the icon is displayed. You can use them 
> like this:
>
> <$vars tv-config-toolbar-icons="yes">
> {{||$:/core/ui/Buttons/new-here}}
> 
>
> I suppose you mean the tiddler toolbar command: "Open in new window" 
>
> This command renders the tiddler content and opens it in a new tab. That's 
> it. 
> There is no js code. So this tiddler is a "static" representation of the 
> tiddler. ... It has no idea about other tiddlers. 
>
>
> That is actually not correct. The windows opened by the “Open in new 
> window” toolbar button are fully functional wikitext windows. The reason 
> that some things don’t work in that context is generally because the new 
> window doesn’t use the full page template, and thus omits some 
> initialisation present in the main window.
>
> Best wishes
>
> Jeremy.
>
>
>
> That's the intended behaviour. 
>
> eg: 
>
> This is a test: {{||$:/core/ui/Buttons/new-here}}
>
> creates: 
>
> 
>   
> ...a lot of tw CSS...
> New Tiddler
>   
>   
> This is a test: 
> 
>   
> 
>
> Since the CSS is exported, it's possible to see the content in a formatted 
> way. ... But there is no interaction. 
>
> have fun!
> mario
>
>
>
> -- 
> 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 https://groups.google.com/group/tiddlywiki.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/tiddlywiki/57e2850f-f9e4-4fd5-a38b-f6cf1b7dd497%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/b27191ed-32cf-4d88-aa01-37d55b25f997%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] [TW5] Transcluding a Core Button is Hidden in pop-out Window

2017-03-29 Thread Jeremy Ruston

On 28 Mar 2017, at 17:25, Jeff Vance  wrote:

> I put the following in several tiddlers as a shortcut to the "New Here" 
> button.  I didn't want to put it permanently in the toolbar, but these 
> particular tiddlers generate index table of tiddlers tagged with this one. So 
> I thought it would be convenient to put a "New Here" icon at the bottom of 
> the table.  
> 
> {{||$:/core/ui/Buttons/new-here}}
> 
> This works, but I noticed that if I Pop-Out this tiddler into a new window, 
> the icon doesn't appear.  I can still click in that spot and it acts as if 
> the icon is there, but I can't see it.  Any ideas why this happens and how to 
> fix it?


The reason that nothing is appearing is because the toolbar buttons require the 
variables tv-config-toolbar-icons and tv-config-toolbar-text to control whether 
the text and or the icon is displayed. You can use them like this:

<$vars tv-config-toolbar-icons="yes">
{{||$:/core/ui/Buttons/new-here}}


> I suppose you mean the tiddler toolbar command: "Open in new window" 
> 
> This command renders the tiddler content and opens it in a new tab. That's 
> it. 
> There is no js code. So this tiddler is a "static" representation of the 
> tiddler. ... It has no idea about other tiddlers. 

That is actually not correct. The windows opened by the “Open in new window” 
toolbar button are fully functional wikitext windows. The reason that some 
things don’t work in that context is generally because the new window doesn’t 
use the full page template, and thus omits some initialisation present in the 
main window.

Best wishes

Jeremy.


> 
> That's the intended behaviour. 
> 
> eg: 
> 
> This is a test: {{||$:/core/ui/Buttons/new-here}}
> 
> creates: 
> 
> 
>   
> ...a lot of tw CSS...
> New Tiddler
>   
>   
> This is a test: 
> 
>   
> 
> 
> Since the CSS is exported, it's possible to see the content in a formatted 
> way. ... But there is no interaction. 
> 
> have fun!
> mario
> 
> 
> 
> -- 
> 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/57e2850f-f9e4-4fd5-a38b-f6cf1b7dd497%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/E5EA8ABD-604D-4CD4-A01D-8808A1802C9B%40gmail.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Transcluding a Core Button is Hidden in pop-out Window

2017-03-29 Thread PMario
On Tuesday, March 28, 2017 at 6:25:31 PM UTC+2, Jeff Vance wrote:
>
> This works, but I noticed that if I Pop-Out this tiddler into a new 
> window, the icon doesn't appear.  I can still click in that spot and it 
> acts as if the icon is there, but I can't see it.  Any ideas why this 
> happens and how to fix it?
>

I suppose you mean the tiddler toolbar command: "Open in new window" 

This command renders the tiddler content and opens it in a new tab. That's 
it. 
There is no js code. So this tiddler is a "static" representation of the 
tiddler. ... It has no idea about other tiddlers. 

That's the intended behaviour. 

eg: 

This is a test: {{||$:/core/ui/Buttons/new-here}}

creates: 


  
...a lot of tw CSS...
New Tiddler
  
  
This is a test: 

  


Since the CSS is exported, it's possible to see the content in a formatted 
way. ... But there is no interaction. 

have fun!
mario


-- 
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/57e2850f-f9e4-4fd5-a38b-f6cf1b7dd497%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Transcluding a Core Button is Hidden in pop-out Window

2017-03-29 Thread @TiddlyTweeter
Good point. 

I noticed that myself. It seems to affect other "$:/core/ui/Buttons" too. 
They can get replaced by a placeholder when you use "Open In New Window" 
from a Tiddler. 

I'm unclear why that happens. I'm sure its not the intended behaviour

Best wishes
Josiah

On Tuesday, 28 March 2017 18:25:31 UTC+2, Jeff Vance wrote:
>
> I put the following in several tiddlers as a shortcut to the "New Here" 
> button.  I didn't want to put it permanently in the toolbar, but these 
> particular tiddlers generate index table of tiddlers tagged with this one. 
> So I thought it would be convenient to put a "New Here" icon at the bottom 
> of the table.  
>
> {{||$:/core/ui/Buttons/new-here}}
>
> This works, but I noticed that if I Pop-Out this tiddler into a new 
> window, the icon doesn't appear.  I can still click in that spot and it 
> acts as if the icon is there, but I can't see it.  Any ideas why this 
> happens and how to fix it?
>
> Jeff
>
>
>

-- 
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/bc900e98-4f4e-41a2-ac69-ee1546b0b285%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: AutoPill (beta) - Parser to automatically turn any word into a tag pill (if it's a tag)

2017-03-29 Thread @TiddlyTweeter
Ciao David

I have been thinking about your method of Auto-Tagging & ways I might 
benefit form it. 

I have a Use Case that may be of interest ...

- AIM: Analyse the novel Great Expectations for the occurrence of 
characters (like Tags: Pip, Estella, Havisham, Jaggers, Drummle ...)

- HELPFUL AID: Auto tagging ALL the occurrence of NAMES of characters in 
the text so a student could get a useful visual sense of the pattern of 
occurrence.

This leads me to some thoughts ...

1 - That the Auto-Tagging Gizmo be able to be TOGGLED on/off. Its very 
useful but it could also be over "noisy" as a perpetual thing in texts. 
Being able to toggle it on and off would, I think make it much more useful 
to someone like me.

2 - Taking that further ... an awkward? thought ... that the addition of 
in-text Auto-Pills could also just be done on strings in the text from a 
"Picklist", rather than from extant tags? In other words the tags are 
created dynamically according to what is on a "Picklest". Hope this is 
clear? 

Just thoughts.

Best wishes
Josiah

On Thursday, 23 March 2017 19:50:39 UTC+1, @TiddlyTweeter wrote:
>
> I'm not ignoring it. Its just the particular implementation is not so 
> useful to me. BUT I am very interested in how to automate taggery. Both 
> FROM extant TW Tags and TO freshly create new Tags.
>
> My particular use case is being into Twitter. I often author using 
> #hashtags in text. The little gizmo that you looked at before from 
> tesseract was part written in reply to me about how to automate creation of 
> TW Tags from Twitter posts written in TW with #hashtags. A few interesting 
> cases came up like #Buddhist & #buddhist (equivalent on Twitter) end up in 
> TW as both "buddhist" & "Buddhist" tags. 
>
> The mechanism to only deal with strings starting with a delimiter I do 
> think has value. A possible issue with your implementation is Taggitis? :-).
>
> NOT that this is that much to do with what you are doing, but I thought it 
> worth mentioning.
>
> Best wishes, and interest
> Josiah
>
> On Thursday, 23 March 2017 16:07:05 UTC+1, David Szego wrote:
>>
>> Bump ... Much more usable version, go give it a try if you haven't 
>> already, or update the .js Tiddler if you've been playing with it.
>>
>> Cheers,
>> David.
>>
>

-- 
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/425070d8-545a-4235-944f-cfba1ca33afe%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.