[tw5] Re: Hide some fields and tags

2018-10-08 Thread Mohammad
Hi Tony!
 My experience is TW in real work and projects cluttered easily, so we need 
a simple way to be able to organize and control objects in that!
Thank you for sharing your thoughts.

Mohammad

On Tuesday, October 9, 2018 at 2:15:20 AM UTC+3:30, TonyM wrote:
>
> Mohamad et a
>
> To add to this conversation what we are talking about is the visibility of 
> fields when in the edit template, there are the already hidden ones in the 
> edit fields list such as "created", change count and others. I have taken a 
> different approach in my key tiddlywiki. I leave the edit facility alone 
> but rarely enter edit mode at all. I have created the ability to edit 
> fields in view mode (using some gymnastics to edit the current tiddler and 
> a toggle to show / hide), and provide my own code to edit each field, so I 
> can honour the nature of different fields, like dates have time stamps and 
> date pickers, the icon field has the image selector, and some fields allow 
> you select from predetermined values and some from existing values in other 
> tiddlers matching fields.  Using this method I can list in an 
> edit-fields-list (field) the fields to display and their order, provide 
> drop down lists to add fields and much more. This facility extends to tags, 
> alternative tag fields and the text field.
>
> Whilst this is working in a robust way for me it is premature for me to 
> put forward proposed changes to the development team, but I expect I will 
> eventually. You may have seen some posts from me about fields as first 
> class citizens. I believe we need to provide the core the following 
> features.
>
>- An easy way to edit fields in the current tiddler
>- The ability to define fields, their usage and ways they can source 
>information
>- An easy way to arrange what and how fields can be displayed in 
>tiddlers view mode or an additional mode called update.
>
> I have also an example where I have manipulated the way the edit fields 
> list that appears in edit mode works such that it includes links to the 
> fields definition.
>
> I have also taken this further to allow the field definitions to include 
> how a field may appear for view or edit in list columns. Basically if you 
> list some tiddlers you can provide a tiddlername that tags all the columns 
> you want in that list, the columns then define its title, and how to 
> display and/or edit that fields value in the list. I believe these should 
> all be rolled into the field definition.
>
> The reason it is not ready for inclusion in the core or key plugins is the 
> solution would best set a standard such that in future others can share 
> field definitions, column definitions etc... and the core can just enable 
> this and set the standards with out providing all the details.
>
> Regards
> Tony
>
>
> On Tuesday, October 9, 2018 at 8:45:56 AM UTC+11, Mark S. wrote:
>>
>> You could, if feeling adventurous, hack
>>
>> $:/core/macros/tag-picker
>> Go down to the line:
>>
>> <$list filter="[tags[]!is[system]search:title{$:/temp/NewTagName}sort[]]" 
>> variable="tag">
>>
>> and change to:
>>
>> <$list 
>> filter="[tags[]!is[system]!prefix{$:/config/Tags/hide/myprefix}search:title{$:/temp/NewTagName}sort[]]"
>>  
>> variable="tag">
>>
>> and then make a tiddler:
>>
>> $:/config/Tags/hide/myprefix
>>
>> and put whatever prefix you wish to prevent showing (in the editor)
>>
>> This way if you have a series of structural tiddlers (one's that you use 
>> to create a TOC tree, for instance) then you could put
>>
>> toc_
>>
>> So that you would see tags that had actual meaning (contacts, personal, 
>> locations, etc.).
>>
>> -- Mark
>>
>>
>> On Monday, October 8, 2018 at 1:56:51 PM UTC-7, Mohammad wrote:
>>>
>>> Hello Mark,
>>>  Should we do this for every field and tag we don't want?
>>>
>>> -Mohammad
>>>
>>

-- 
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/f7813678-1cea-42a1-85ca-23caa526d750%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Hide some fields and tags

2018-10-08 Thread Mohammad
Many Thanks Mark!
It works

-Mohammad

On Tuesday, October 9, 2018 at 1:15:56 AM UTC+3:30, Mark S. wrote:
>
> You could, if feeling adventurous, hack
>
> $:/core/macros/tag-picker
> Go down to the line:
>
> <$list filter="[tags[]!is[system]search:title{$:/temp/NewTagName}sort[]]" 
> variable="tag">
>
> and change to:
>
> <$list 
> filter="[tags[]!is[system]!prefix{$:/config/Tags/hide/myprefix}search:title{$:/temp/NewTagName}sort[]]"
>  
> variable="tag">
>
> and then make a tiddler:
>
> $:/config/Tags/hide/myprefix
>
> and put whatever prefix you wish to prevent showing (in the editor)
>
> This way if you have a series of structural tiddlers (one's that you use 
> to create a TOC tree, for instance) then you could put
>
> toc_
>
> So that you would see tags that had actual meaning (contacts, personal, 
> locations, etc.).
>
> -- Mark
>
>
> On Monday, October 8, 2018 at 1:56:51 PM UTC-7, Mohammad wrote:
>>
>> Hello Mark,
>>  Should we do this for every field and tag we don't want?
>>
>> -Mohammad
>>
>

-- 
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/0958551f-0082-45b4-8b3b-d633bf8d3c86%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Tag Toggle Button

2018-10-08 Thread TonyM
Mark,

Thanks - You were correct the second Message has the $ sign which when 
removed now works.

It makes sense in a way, that is the message parameter of the button widget,

Not the $message parameter of the action send message widget that uses 
$message so you can also pass the parameter message=

But yes,

Its too easy sometimes, with computers as a whole for a single character, 
to staff things up big time.

Thanks
Tony

On Tuesday, October 9, 2018 at 2:29:47 PM UTC+11, Mark S. wrote:
>
> It's the dollar sign ($) on the second $message. Aren't those on-again, 
> off-again dollar signs confusing?!
>
> Good luck!
> -- Mark
>
> On Monday, October 8, 2018 at 6:48:08 PM UTC-7, TonyM wrote:
>>
>> Folks,
>>
>> I have the following Button I defined, the first button works and tags 
>> the tiddler with pinned, and then show the second button.
>>
>> But clicking the second button is not working and will not remove the tag.
>>
>> <$fieldmangler>
>> <$list filter="[is[current]!tag[Pinned]]" variable=null>
>>   <$button message="tm-add-tag" param="Pinned" tooltip="Add Pinned tag" 
>> class=<>>
>> {{$:/PSaT/Pinned/unpinned}}
>>   
>> 
>> <$list filter="[is[current]tag[Pinned]]" variable=null>
>>   <$button $message="tm-remove-tag" param="Pinned" tooltip="Remove Pinned 
>> tag" class=<>>
>> {{$:/PSaT/Pinned/pinned}}
>>   
>> 
>> 
>> The is no documentation for when and where, or how to use fieldmangler, 
>> But I have tried it different ways
>>
>> Thanks in Advance
>> Tony
>>
>

-- 
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/5ff00cbf-ddeb-4266-9da5-865b2318f9aa%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Tag Toggle Button

2018-10-08 Thread 'Mark S.' via TiddlyWiki
It's the dollar sign ($) on the second $message. Aren't those on-again, 
off-again dollar signs confusing?!

Good luck!
-- Mark

On Monday, October 8, 2018 at 6:48:08 PM UTC-7, TonyM wrote:
>
> Folks,
>
> I have the following Button I defined, the first button works and tags the 
> tiddler with pinned, and then show the second button.
>
> But clicking the second button is not working and will not remove the tag.
>
> <$fieldmangler>
> <$list filter="[is[current]!tag[Pinned]]" variable=null>
>   <$button message="tm-add-tag" param="Pinned" tooltip="Add Pinned tag" 
> class=<>>
> {{$:/PSaT/Pinned/unpinned}}
>   
> 
> <$list filter="[is[current]tag[Pinned]]" variable=null>
>   <$button $message="tm-remove-tag" param="Pinned" tooltip="Remove Pinned 
> tag" class=<>>
> {{$:/PSaT/Pinned/pinned}}
>   
> 
> 
> The is no documentation for when and where, or how to use fieldmangler, 
> But I have tried it different ways
>
> Thanks in Advance
> Tony
>

-- 
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/805db4dd-a010-429e-804b-d816e2e40aa8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Tag Toggle Button

2018-10-08 Thread TonyM
Folks,

I have the following Button I defined, the first button works and tags the 
tiddler with pinned, and then show the second button.

But clicking the second button is not working and will not remove the tag.

<$fieldmangler>
<$list filter="[is[current]!tag[Pinned]]" variable=null>
  <$button message="tm-add-tag" param="Pinned" tooltip="Add Pinned tag" 
class=<>>
{{$:/PSaT/Pinned/unpinned}}
  

<$list filter="[is[current]tag[Pinned]]" variable=null>
  <$button $message="tm-remove-tag" param="Pinned" tooltip="Remove Pinned 
tag" class=<>>
{{$:/PSaT/Pinned/pinned}}
  


The is no documentation for when and where, or how to use fieldmangler, But 
I have tried it different ways

Thanks in Advance
Tony

-- 
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/9cb8ae44-5329-49f7-abda-f35c28ea2a92%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Close the previous tiddler automatically, when going to the next one?

2018-10-08 Thread TonyM
Duke,

We will do what ever we can to help, however you describe yourself. 

First, making use of the side bar is one of the main ways people get 
content to appear on the screen at the same time as the tiddlers. You can 
tag a tiddler with $:/tags/SideBar and set its caption field and its 
content will appear in the sidebar once you select that tab. Since you 
control what is displayed in that tiddler/tab, if you want to edit in the 
side bar there is a sidebar editor somewhere.

You could also look at tagging tiddlers with one of the page template tags, 
to have it appear in various places eg

- $:/tags/TopLeftBar for the top left bar
- $:/tags/TopRightBar for the top right bar
- *$:/tags/AboveStory for elements to be placed at the top of the story 
river*
- $:/tags/BelowStory for elements to be placed at the bottom of the story 
river
- $:/tags/PageTemplate 
 for the main page 
elements
Then click on the $:/tags/PageTemplate tagpilland drag the tiddler to 
the top of the list (to appear at the top of the page)

Once the new version 5.1.18 is released you can also use
- $:/tags/SideBarSegment

However your key may be a tiddler tagged $:/tags/AboveStory

You may need to handle the open close of the content or an edit toggle 
inside your tiddler.

Here is an example of a journal tiddler tagged $:/tags/AboveStory and using 
the detailsWidget plugin from http://tid.li/tw5/plugins.html#DetailsWidget

<$details summary="View Journal">


* dsfhsh
* sahasa
* sjaf
* j
* a
* zjk
* kj

[[Open|Journal]]


I may extend this to allow us to pin, view and edit one or more tiddlers.

Regards
Tony


On Monday, October 8, 2018 at 3:44:13 PM UTC+11, Duke wrote:
>
> Yes, I would like a special notes tiddler (I call it the journal.) to 
> remain open in zoomin view, unaffected by the automatic closing behavior of 
> zoomin, while story tiddlers (I call them panels.) are affected by zoomin 
> normally. Here is an example of how I link to the next story tiddler. 3: 
> [["Sit in deep thought, and reflect on life."|Prologue: Choice 3.]]
> As you can see, it's a link to another tiddler, that is displaying my 
> chosen dialogue, instead of the actual name of the next panel. I worked out 
> only allowing editing of the journal tiddler, and not story tiddlers. So I 
> just need the journal to be able to display itself alongside story 
> tiddlers. However, I want the journal tiddler to be able to close, if you 
> close it manually yourself.
>
> (I'm sorry if I'm not explaining myself well, I'm antisocial, and I think 
> I'm the first person to ever try something like this in Tiddlywiki. So I 
> have to figure out a lot of it for myself.)  
>
> On Wednesday, October 3, 2018 at 7:34:50 PM UTC-5, TonyM wrote:
>>
>> Duke,
>>
>> I would prefer to see the text inside the tiddler than a picture of the 
>> result. I am trying to understand what your starting point is. You seem to 
>> be a new user and you would benefit from looking at some learning materials 
>> first. Check out here for some basic learning materials  
>> https://tiddlywiki.com/#A%20Gentle%20Guide%20to%20TiddlyWiki
>>
>> I am having trouble understanding still, "*but I want it (and only it) 
>> to display at the same time as the main tiddlers*" - so in this case you 
>> want more than one tiddler showing so the Zoomin view may not work for you. 
>> Or you want a special notes tiddler to remain open while you are using the 
>> zoomin view? What are the "main tiddlers"
>>
>> I do not think it an exaggeration, We can do anything in TiddlyWiki.
>>
>> here is some possible strategies
>>
>>- Perhaps consider putting something in the sideBar?
>>- Try tabs to jump between tiddlers See StoryTabs 
>>https://github.com/buggyj/tw5-tools
>>
>>
>> It is possible to allow editing of a single tiddler below but inside 
>> every other tiddler but I will not provide the details unless this seems to 
>> be exactly what you want to do as it will take a little time. 
>>
>> Lets see if others have some suggestions, but please provide more info.
>>
>> Regards
>> Tony
>>
>> On Thursday, 4 October 2018 05:44:30 UTC+10, Duke wrote:
>>>
>>> I'm linking to the next tiddler, like this:
>>> [image: TiddlerTest.png]
>>>
>>>
>>>
>>>
>>>
>>> Thanks for telling me about the zoomin view, it seems to be working 
>>> perfectly for this! :)
>>> EDIT: I've ran into a little problem. I have a Tiddler that you can 
>>> bring up and type anything in (Kinda like a journal) but I want it (and 
>>> only it) to display at the same time as the main tiddlers. I could just 
>>> scrap it, but I would like a way for that to work if possible. (I'm making 
>>> a text based interactive story with Tiddlywiki, so I have a journal where 
>>> you can keep track of plot points and such.)
>>>
>>> On Tuesday, October 2, 2018 at 11:22:47 PM UTC-5, TonyM wrote:

 Duke,

 How are you getting from one tiddler to the next, How does it know 
 which 

[tw5] Re: Timelines filtered by custom tag

2018-10-08 Thread TonyM
Correction (applied in forum post, remove errant "

<>



On Tuesday, October 9, 2018 at 10:03:29 AM UTC+11, TonyM wrote:
>
> Try;
>
> <>
>
> Unfortunately there is not a lot of helpful error messages when a filter 
> throws basic errors inside other macros.
>
> Also Why not
>
> <$list filter="[tag{!!intag}]+[!tag{!!extag}]" />
>
> or
> < MMM ">>
>
> Suggestions untested.
>
> Regards
> Tony
>
>
>
> On Tuesday, October 9, 2018 at 3:56:20 AM UTC+11, Angelo Gaggero wrote:
>>
>> Hi All, 
>>
>> trying to get a timeline via the <> macro, filtered by custom 
>> tag selected by the user via dropdown menu, but it seems that the subfilter 
>> field is not managing variable filters like tag{!!intag} ... any idea? 
>>
>>
>> My page is something like 
>>
>>
>>
>> ''Include tag:
>> ''
>> <$select field=intag default='unknown'>
>> <$list filter='[all[tiddlers]tags[]sort[title]]'>
>> >><$view field='title'/>
>> 
>> 
>>
>> ''Exclude tag:
>> ''
>> <$select field=extag default='unknown'>
>> <$list filter='[all[tiddlers]tags[]sort[title]]'>
>> >><$view field='title'/>
>> 
>> 
>>
>>
>>
>>
>> ''Matching tiddlers:
>> ''
>> this is a simple list of mathing tiddlers inserted here as debugging ...
>>
>> <$list filter=[tag{!!intag}]+[!tag{!!extag}] />
>>
>>
>> ''Timeline filtered by tag  {{!!intag}}''
>>
>> <>
>>
>>
>>

-- 
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/650fd7b1-a59b-4430-9c94-8ccc03aa9faf%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Timelines filtered by custom tag

2018-10-08 Thread TonyM
Try;

<>

Unfortunately there is not a lot of helpful error messages when a filter 
throws basic errors inside other macros.

Also Why not

<$list filter="[tag{!!intag}]+[!tag{!!extag}]" />

or
<>

Suggestions untested.

Regards
Tony



On Tuesday, October 9, 2018 at 3:56:20 AM UTC+11, Angelo Gaggero wrote:
>
> Hi All, 
>
> trying to get a timeline via the <> macro, filtered by custom 
> tag selected by the user via dropdown menu, but it seems that the subfilter 
> field is not managing variable filters like tag{!!intag} ... any idea? 
>
>
> My page is something like 
>
>
>
> ''Include tag:
> ''
> <$select field=intag default='unknown'>
> <$list filter='[all[tiddlers]tags[]sort[title]]'>
> >><$view field='title'/>
> 
> 
>
> ''Exclude tag:
> ''
> <$select field=extag default='unknown'>
> <$list filter='[all[tiddlers]tags[]sort[title]]'>
> >><$view field='title'/>
> 
> 
>
>
>
>
> ''Matching tiddlers:
> ''
> this is a simple list of mathing tiddlers inserted here as debugging ...
>
> <$list filter=[tag{!!intag}]+[!tag{!!extag}] />
>
>
> ''Timeline filtered by tag  {{!!intag}}''
>
> <>
>
>
>

-- 
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/08c29722-659e-414d-b855-02bd6ebc9be6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Macro to URI-Encode/Decode String Input?

2018-10-08 Thread TonyM
Scott,

I am keen to do something familiar but every time I try there are some 
quirks that cause it to fail. I am trying to build a solution that allows 
any tiddler or group of tiddlers to be sent as an email using an email 
address found in a contact tiddler. Marks solution will get me there in the 
long run. But it can be quite frustrating. In user land they can call this 
"mail merge" which is an essential extended feature for document and 
database handling which is something tiddlywiki should excel at. 

Regards
Tony

On Tuesday, October 2, 2018 at 1:22:05 PM UTC+10, Scott Simmons (Secret-HQ) 
wrote:
>
> That's *exactly* it, Mark!  Thank you *SO* much for putting together the 
> example tiddlers.  They demonstrate the idea perfectly, including the 
> concept that was my stumbling block: how to pass my tiddler text through 
> the available filter (*uriencode[]*) and use the output on the other side 
> to assemble a mailto string.
>
> My original post was made on the run and could have been a little 
> clearer.  Thanks to everyone for digging in and figuring out what I was 
> after.
>
> A little more background for anyone who's curious:  I have a <> 
> macro that's pretty generic, but I'm sprucing it up to deploy in a 
> TiddlyWiki where some of the body of the e-mail message will be assembled 
> into a boilerplate message from values found in various fields around the 
> TiddlyWiki but the user will be able to enter a personalized message that 
> appears at the beginning of the body.  The idea is to have an e-mail 
> something like:
>
>>
> Hi, $(recipient)$ —
>
>  
>
> Your package has shipped.
>
> Included:
> $(list of items)$
>  
> $(user's personalized message to the recipient)$
>
> You can track this package online at the $(carrier)$ Web site.  Here's a 
> link:
> $(tracking link)$
>
> $(user's signature)$
>
>
> The computer this will be used on has Microsoft Outlook as its email 
> client, so once I assemble the body, I can uriencode it and pass it the 
> <> macro.  Then all the TW user at the computer has to do to send 
> an e-mail is enter the variables into some inputs in the default tiddler 
> and click the mailto link.
>

-- 
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/a37f59a7-e639-4df1-8c83-7bc7c69405a4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Favorites tab

2018-10-08 Thread TonyM
That is the one I alluded to. The favourites plugin

Tony

On Tuesday, October 9, 2018 at 2:43:08 AM UTC+11, Mohammad wrote:
>
> Wow,
>  Thank you Cyrill!
> That's the right plugin!
>
> Tony,
>  Thank you for your note! Have a look at what shared by Cyrill.
>
> Cheers
> Mohammad
>
> On Monday, October 8, 2018 at 6:42:40 PM UTC+3:30, Cyrill wrote:
>>
>> Hey Mohammad,
>> there is the link http://favorites.tiddlyspot.com/
>> Kind Regards
>>
>> Am Montag, 8. Oktober 2018 14:26:17 UTC+2 schrieb Mohammad:
>>>
>>> Is there any plugin of code snippet to simply add / remove tiddlers as 
>>> your favorites and have a sidebar tab to 
>>> easily access them? I search this forum and could not find anything!
>>>
>>> If users have any experience please share. The minimum requirements are:
>>>
>>>
>>>1. An icon on the tiddler (upper right) to add remove tiddlers to 
>>>favorites
>>>2. A sidebar tab named Favorites to list the tiddlers tagged or 
>>>starred as favorites
>>>3. Capability to show/hide favorites tab easily (from say control 
>>>panel) and hide/show favorites icon (a small heart or a star)
>>>
>>>
>>> Mohammad
>>>
>>

-- 
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/5af22561-e4b9-407c-b658-a2f4fce2e1cd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Hide some fields and tags

2018-10-08 Thread TonyM
Mohamad et a

To add to this conversation what we are talking about is the visibility of 
fields when in the edit template, there are the already hidden ones in the 
edit fields list such as "created", change count and others. I have taken a 
different approach in my key tiddlywiki. I leave the edit facility alone 
but rarely enter edit mode at all. I have created the ability to edit 
fields in view mode (using some gymnastics to edit the current tiddler and 
a toggle to show / hide), and provide my own code to edit each field, so I 
can honour the nature of different fields, like dates have time stamps and 
date pickers, the icon field has the image selector, and some fields allow 
you select from predetermined values and some from existing values in other 
tiddlers matching fields.  Using this method I can list in an 
edit-fields-list (field) the fields to display and their order, provide 
drop down lists to add fields and much more. This facility extends to tags, 
alternative tag fields and the text field.

Whilst this is working in a robust way for me it is premature for me to put 
forward proposed changes to the development team, but I expect I will 
eventually. You may have seen some posts from me about fields as first 
class citizens. I believe we need to provide the core the following 
features.

   - An easy way to edit fields in the current tiddler
   - The ability to define fields, their usage and ways they can source 
   information
   - An easy way to arrange what and how fields can be displayed in 
   tiddlers view mode or an additional mode called update.

I have also an example where I have manipulated the way the edit fields 
list that appears in edit mode works such that it includes links to the 
fields definition.

I have also taken this further to allow the field definitions to include 
how a field may appear for view or edit in list columns. Basically if you 
list some tiddlers you can provide a tiddlername that tags all the columns 
you want in that list, the columns then define its title, and how to 
display and/or edit that fields value in the list. I believe these should 
all be rolled into the field definition.

The reason it is not ready for inclusion in the core or key plugins is the 
solution would best set a standard such that in future others can share 
field definitions, column definitions etc... and the core can just enable 
this and set the standards with out providing all the details.

Regards
Tony


On Tuesday, October 9, 2018 at 8:45:56 AM UTC+11, Mark S. wrote:
>
> You could, if feeling adventurous, hack
>
> $:/core/macros/tag-picker
> Go down to the line:
>
> <$list filter="[tags[]!is[system]search:title{$:/temp/NewTagName}sort[]]" 
> variable="tag">
>
> and change to:
>
> <$list 
> filter="[tags[]!is[system]!prefix{$:/config/Tags/hide/myprefix}search:title{$:/temp/NewTagName}sort[]]"
>  
> variable="tag">
>
> and then make a tiddler:
>
> $:/config/Tags/hide/myprefix
>
> and put whatever prefix you wish to prevent showing (in the editor)
>
> This way if you have a series of structural tiddlers (one's that you use 
> to create a TOC tree, for instance) then you could put
>
> toc_
>
> So that you would see tags that had actual meaning (contacts, personal, 
> locations, etc.).
>
> -- Mark
>
>
> On Monday, October 8, 2018 at 1:56:51 PM UTC-7, Mohammad wrote:
>>
>> Hello Mark,
>>  Should we do this for every field and tag we don't want?
>>
>> -Mohammad
>>
>

-- 
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/4986fae3-83d9-492c-a244-04ec10be7e29%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Hide some fields and tags

2018-10-08 Thread 'Mark S.' via TiddlyWiki
You could, if feeling adventurous, hack

$:/core/macros/tag-picker
Go down to the line:

<$list filter="[tags[]!is[system]search:title{$:/temp/NewTagName}sort[]]" 
variable="tag">

and change to:

<$list 
filter="[tags[]!is[system]!prefix{$:/config/Tags/hide/myprefix}search:title{$:/temp/NewTagName}sort[]]"
 
variable="tag">

and then make a tiddler:

$:/config/Tags/hide/myprefix

and put whatever prefix you wish to prevent showing (in the editor)

This way if you have a series of structural tiddlers (one's that you use to 
create a TOC tree, for instance) then you could put

toc_

So that you would see tags that had actual meaning (contacts, personal, 
locations, etc.).

-- Mark


On Monday, October 8, 2018 at 1:56:51 PM UTC-7, Mohammad wrote:
>
> Hello Mark,
>  Should we do this for every field and tag we don't want?
>
> -Mohammad
>

-- 
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/1978d18c-c98d-4c4e-bd65-6ae200a7112b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw5] Re: Favorites tab

2018-10-08 Thread David Gifford
No, I had not seen that. Nice. I added it under Educational resources.
https://dynalist.io/d/zUP-nIWu2FFoXH-oM7L7d9DM#z=QdZ1Fu6olKjFAV3zIosKvY5Q
David Gifford
Mexico team leader, Mexico City

*Resonate Global Mission*
*Engaging People. Embracing Christ.*
A Ministry of the Christian Reformed Church
resonateglobalmission.org



On Mon, Oct 8, 2018 at 4:06 PM Ste Wilson  wrote:

> Dave,
> Did you get my formula notebook?
>
> stephenteacher.uk.to/Star2
>
> --
> 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/8nB4Xp1DSGY/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/c0a5c8cc-9303-41eb-af79-cfe02a103bb1%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/CANE%3DBF%2BLO7y-90Kd%2BuEtULaO1fx%2Bae0bE4h_i_KP-f%2B8evTwNw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Hide some fields and tags

2018-10-08 Thread 'Mark S.' via TiddlyWiki
Hi Mohammad,

Well, it's only for fields (tags is a different issue). But it should work 
to "hide" every field you don't want. 

-- Mark

On Monday, October 8, 2018 at 1:56:51 PM UTC-7, Mohammad wrote:
>
> Hello Mark,
>  Should we do this for every field and tag we don't want?
>
> -Mohammad
>

-- 
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/f29fe2ba-78cb-46c9-8eca-01c14a254715%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Favorites tab

2018-10-08 Thread Ste Wilson
Dave, 
Did you get my formula notebook? 

stephenteacher.uk.to/Star2

-- 
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/c0a5c8cc-9303-41eb-af79-cfe02a103bb1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Hide some fields and tags

2018-10-08 Thread Mohammad
Hello Mark,
 Should we do this for every field and tag we don't want?

-Mohammad

-- 
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/ae7ff197-ed20-49bd-b4e5-f8276efde417%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Hide some fields and tags

2018-10-08 Thread 'Mark S.' via TiddlyWiki
I just tried this on a whim ... and it worked.

Take the existing tiddler:

$:/config/EditTemplateFields/Visibility/created

clone it, and change it to:

$:/config/EditTemplateFields/Visibility/myfield

with text "hide" (if it's not already)

and now your field "myfield" will be hidden.

Might not be quite what you want, but kind of interesting that it works out 
of the box like that.

-- Mark

On Monday, October 8, 2018 at 10:58:33 AM UTC-7, Mohammad wrote:
>
> In TW you can hide tiddler start with $:/ from many search and list!
> Is there a similar method to hide some fields and tags!
>
> This may be redundant but as your wiki grew up you add more fields and 
> tags and this clutters your wiki!
> Specially when you want to select tags from drop down list and the same is 
> true for fields.
>
> Mohammad
>

-- 
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/eae77acc-d803-42db-9462-46234eaef970%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: [tw] Re: tiddlyclip for chrome

2018-10-08 Thread Kalmir
BJ, thank you, problem solved.

Before I was installing 0.1.2 or at least I thougt so but I was installing 
it from a .zip file, not .xpi (I thougt that's a strictly Firefox format, 
now I know it can be unzipped as any zip archive). So maybe the zip archive 
which the readme offered for download was incomplete. Or it was actually 
old version. I am not sure. But thanks for helping me figure it out.



On Monday, October 8, 2018 at 11:57:21 AM UTC+1, BJ wrote:
>
> HI Kalmir,
>
> The instructions for the install are incorrect - I have updated them on 
> github https://github.com/buggyj/tiddlyclip/blob/master/README.md
>
> I don't know if you actually have the latest version installed.
>
> in chrome://extensions/ you should see 
>
>
> I am seeing a problem with 69.0.3497.100 on xubuntu
>
>
>

-- 
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/748a0831-ab32-4d8c-ab7b-f7a67f49cede%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Hide some fields and tags

2018-10-08 Thread Mohammad
In TW you can hide tiddler start with $:/ from many search and list!
Is there a similar method to hide some fields and tags!

This may be redundant but as your wiki grew up you add more fields and tags 
and this clutters your wiki!
Specially when you want to select tags from drop down list and the same is 
true for fields.

Mohammad

-- 
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/3808c623-c80a-461e-8ee0-9b6c3fb5fece%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Favorites tab

2018-10-08 Thread Mohammad
Many thanks David!
Sure, Toolmap is really a great tool!

I forgot about it! Sorry!

Best
Mohammad 

-- 
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/9a7debfe-5067-408b-955f-dc832e0287aa%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw5] Re: [TW 5.0.16]Footnote Popup Not Working

2018-10-08 Thread h0p3's Wiki
I've currently 1,997 footnotes using Danielo's tool in my wiki
 (thank you, Danielo, I use your wonderful tools
every day). There's a better alternative? Please, someone, tell me. I don't
know what it would look like. Perhaps not having to set both <> and
<>, and instead having them automatically generated like M$Word
would be pleasant. But, that might just be cosmetic.

On Mon, Oct 8, 2018 at 11:19 AM Danielo Rodríguez 
wrote:

>
> Hello,
>
> Since I created this tool some other and probably better solutions have
> appeared. Have you tried any of the alternatives ? I don't know any of them
> by memory, but probably others do.
>
> --
> 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/2dcd1e89-e0ed-4b2a-90a6-15435bd9a0bf%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/CA%2B9%3DmKgBJiGfd7WxO1Fb4rMW%3DY86uSdouvKSKqbz_%3DVDpu8quA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Macro to URI-Encode/Decode String Input?

2018-10-08 Thread @TiddlyTweeter
Ciao Scott

I have not forgotten this. I'm slow. It may take me some time but I feel 
there is need to try bring together the various works on this and I will. 
There has been a lot. Its very fragmented at the moment. I try find time to 
look at it in the next few weeks and make more of a whole of it so its 
easier to use and understand.

Best wishes
Josiah

On Tuesday, 2 October 2018 05:26:57 UTC+2, Scott Simmons (Secret-HQ) wrote:
>
> On Thursday, September 27, 2018 at 12:26:26 PM UTC-4, @TiddlyTweeter wrote:
>
> There needs to be some step to pass it to the browser to invoke email. 
>> Encoding is only step 1. 
>>
>> A long time ago Riz & Thomas Elmiger did a bunch of work on this (for me 
>> [i'm feeling guilty still  for that effort by them that I could not 
>> reciprocate]) that works well. I could maybe give more detail if I know its 
>> worth the effort for me to dig the details out.
>>
>
> In my case, the computer where the TiddlyWiki is in use has a standalone 
> e-mail client, which mailto links invoke — so that's easy.
>
> But if you wanted to pass the whole kit & kaboodle to a Web-based e-mail 
> client like Gmail — or directly to an SMTP server — I can imagine that 
> would get to be a pretty big project pretty quickly!
>
> Do you remember what your use case was, Josiah?  (I'm just curious.  
> Please don't waste a lot of time trying to dig up the old work, as I know 
> you've got other stuff going on.) 
>

-- 
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/0166f540-12a5-405a-b570-939d01557623%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Timelines filtered by custom tag

2018-10-08 Thread Angelo Gaggero
Hi All, 

trying to get a timeline via the <> macro, filtered by custom tag 
selected by the user via dropdown menu, but it seems that the subfilter 
field is not managing variable filters like tag{!!intag} ... any idea? 


My page is something like 

{

''Include tag:
''
<$select field=intag default='unknown'>
<$list filter='[all[tiddlers]tags[]sort[title]]'>
>><$view field='title'/>



''Exclude tag:
''
<$select field=extag default='unknown'>
<$list filter='[all[tiddlers]tags[]sort[title]]'>
>><$view field='title'/>






''Matching tiddlers:
''
this is a simple list of mathing tiddlers inserted here as debugging ...

<$list filter=[tag{!!intag}]+[!tag{!!extag}] />


''Timeline filtered by tag  {{!!intag}}''

<>

}

-- 
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/ccc3fed8-97ab-412d-b474-7f89a37fed12%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Favorites tab

2018-10-08 Thread David Gifford
Don't forget to make the Toolmap one of those favorites, for precisely 
these kinds of questions https://dynalist.io/d/zUP-nIWu2FFoXH-oM7L7d9DM

On Monday, October 8, 2018 at 7:26:17 AM UTC-5, Mohammad wrote:
>
> Is there any plugin of code snippet to simply add / remove tiddlers as 
> your favorites and have a sidebar tab to 
> easily access them? I search this forum and could not find anything!
>
> If users have any experience please share. The minimum requirements are:
>
>
>1. An icon on the tiddler (upper right) to add remove tiddlers to 
>favorites
>2. A sidebar tab named Favorites to list the tiddlers tagged or 
>starred as favorites
>3. Capability to show/hide favorites tab easily (from say control 
>panel) and hide/show favorites icon (a small heart or a star)
>
>
> Mohammad
>

-- 
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/091082c0-dcec-4dc9-834a-b0fe1de4a521%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Favorites tab

2018-10-08 Thread Mohammad
Wow,
 Thank you Cyrill!
That's the right plugin!

Tony,
 Thank you for your note! Have a look at what shared by Cyrill.

Cheers
Mohammad

On Monday, October 8, 2018 at 6:42:40 PM UTC+3:30, Cyrill wrote:
>
> Hey Mohammad,
> there is the link http://favorites.tiddlyspot.com/
> Kind Regards
>
> Am Montag, 8. Oktober 2018 14:26:17 UTC+2 schrieb Mohammad:
>>
>> Is there any plugin of code snippet to simply add / remove tiddlers as 
>> your favorites and have a sidebar tab to 
>> easily access them? I search this forum and could not find anything!
>>
>> If users have any experience please share. The minimum requirements are:
>>
>>
>>1. An icon on the tiddler (upper right) to add remove tiddlers to 
>>favorites
>>2. A sidebar tab named Favorites to list the tiddlers tagged or 
>>starred as favorites
>>3. Capability to show/hide favorites tab easily (from say control 
>>panel) and hide/show favorites icon (a small heart or a star)
>>
>>
>> Mohammad
>>
>

-- 
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/0b8d3993-5cfd-4681-82de-a41e8a72941b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: [TW 5.0.16]Footnote Popup Not Working

2018-10-08 Thread Danielo Rodríguez

Hello,

Since I created this tool some other and probably better solutions have 
appeared. Have you tried any of the alternatives ? I don't know any of them 
by memory, but probably others do.

-- 
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/2dcd1e89-e0ed-4b2a-90a6-15435bd9a0bf%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Favorites tab

2018-10-08 Thread Cyrill
Hey Mohammad,
there is the link http://favorites.tiddlyspot.com/
Kind Regards

Am Montag, 8. Oktober 2018 14:26:17 UTC+2 schrieb Mohammad:
>
> Is there any plugin of code snippet to simply add / remove tiddlers as 
> your favorites and have a sidebar tab to 
> easily access them? I search this forum and could not find anything!
>
> If users have any experience please share. The minimum requirements are:
>
>
>1. An icon on the tiddler (upper right) to add remove tiddlers to 
>favorites
>2. A sidebar tab named Favorites to list the tiddlers tagged or 
>starred as favorites
>3. Capability to show/hide favorites tab easily (from say control 
>panel) and hide/show favorites icon (a small heart or a star)
>
>
> Mohammad
>

-- 
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/4ad6d715-d9a3-4438-8d79-f65964417545%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Timimi plugin - released for firefox/chrome/chromium in linux/mac/windows

2018-10-08 Thread Riz
Issue resolved in github.

-- 
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/417a480c-8b74-4cea-9099-1eda070ad742%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: apply style to transclude

2018-10-08 Thread Dave
Awesome, thank you!!

That was actually pretty straight forward. :)

-- 
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/445c93b3-da5a-436f-a312-611828024c55%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw5] is it possible to configure "Bob" to store tiddler files in the same directory as the wikifolder?

2018-10-08 Thread @TiddlyTweeter
Ciao ch

Some of this is beyond my competence. I do think that that some of what you 
need is not about Bob per se, rather its about TW on node which Bob is a 
flexi re-implementation of. Its bones are the same though its flesh is 
different.

I noticed you wrote elsewhere about similar issues about node TW. I think 
that is likely the best place you asked. 

BUT there is some flex in Bob so, maybe, Bob can approximate your needs. 
But on this level of detail I can't give an exact reply. Sorry.

ch wrote:
>
> a wiki stored in directory "wiki", will ... have the following minimal 
> files:
>
> BobWin32.exe
> BobWin32.ini (which today is the "settings.json" file hidden under 
> "IndexWiki/settings" directory)
> tiddlywiki.info
> index.tid (can be any tiddler file, only here for this example - i.e. the 
> first tiddler opened by "Bob" configured in the "DefaultTiddlers.tid" file, 
> see below)
> _system/config/FileSystemPaths.tid
> _system/DefaultTiddlers.tid (the "text" field contains: "index")
> _system/StoryList.tid (as always, contains the tiddlers that was last 
> opened)
>
> the "FileSystemPaths.tid" looks like this:
> ```
> [is[system]removeprefix[$:/]addprefix[_system/]]
> [!has[draft.of]]
> ```
>
> the "_system" directory could be named to anything else (of course).
>
> the "StoryList.tid" file would i like to be erased once "Bob" is closed 
> down (but that should be an option that could be configured... maybe there 
> is already an option in "tiddlywiki.info" that do exactly this...?)
>
> - maybe it could be possible to skip the "BobWin32.ini" file (i.e. today 
> called "settings.json")...? if the "Bob" options could be stored there 
> instead and TiddlyWiki just ignore the "configuration options" it doesn't 
> understand...
>

-- 
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/c710bd42-f7b9-4811-ab44-0bbc8dbc6d05%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Favorites tab

2018-10-08 Thread TonyM
Mohamad, 

I already use something very similar to star tiddlers. I will look for it 
tomorrow. However search for star or favorites and you may find it.

Tony

-- 
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/eacca47c-5766-4966-8f85-ca0326ea6356%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw5] is it possible to configure "Bob" to store tiddler files in the same directory as the wikifolder?

2018-10-08 Thread @TiddlyTweeter
Ciao ch

ch wrote:
>
> ... since you are planning to change from JSON to TOML instead... 
>

This is Jed's possible future for the settings. Its not my decision in any 
way.

I personally would like TOML because it should become possible to add 
comments. The current "JSON" is, I believe, a somewhat over-convoluted 
construction. Yes its a real JSON but I think Jed is jumping through hoops 
to make it. Not sure.

Josiah

-- 
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/4e5b8ab8-a5d0-4227-8e69-304b9454204e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw5] is it possible to configure "Bob" to store tiddler files in the same directory as the wikifolder?

2018-10-08 Thread ch
hi josiah,

for the most simple case, i don't care about the additional option that you
can run multiple wikis with "Bob" - and for making it even simpler to
understand and not hide away the "settings.json" file, and since you are
planning to change from JSON to TOML instead... this is my dream setup:

a wiki stored in directory "wiki", will then have the following minimal
files:

BobWin32.exe
BobWin32.ini (which today is the "settings.json" file hidden under
"IndexWiki/settings" directory)
tiddlywiki.info
index.tid (can be any tiddler file, only here for this example - i.e. the
first tiddler opened by "Bob" configured in the "DefaultTiddlers.tid" file,
see below)
_system/config/FileSystemPaths.tid
_system/DefaultTiddlers.tid (the "text" field contains: "index")
_system/StoryList.tid (as always, contains the tiddlers that was last
opened)

the "FileSystemPaths.tid" looks like this:
```
[is[system]removeprefix[$:/]addprefix[_system/]]
[!has[draft.of]]
```

the "_system" directory could be named to anything else (of course).

the "StoryList.tid" file would i like to be erased once "Bob" is closed
down (but that should be an option that could be configured... maybe there
is already an option in "tiddlywiki.info" that do exactly this...?)

- maybe it could be possible to skip the "BobWin32.ini" file (i.e. today
called "settings.json")...? if the "Bob" options could be stored there
instead and TiddlyWiki just ignore the "configuration options" it doesn't
understand...

cheers!

Den fre 5 okt. 2018 kl 12:06 skrev @TiddlyTweeter :

> Ciao ch
>
> I understand the issue. But actually Bob will let you store a wiki
> anywhere. Pathing can also be relative. That combination is about as good
> as it gets.
>
> Yes, you have to override the default behaviour manually in the settings
> to do that. But I think that is understandable. Otherwise it would could
> get confusing if you just want to "click and make".
>
> .\Wikis as default looks fine to me.
>
> BTW, you can create as many sub-groupings of wikis to any depth you want
> though the manual settings.
>
> Best wishes
> Josiah
>
> ch wrote:
>>
>> well, i don't want everything to be in the same folder since i want to
>> utilize customising tiddler file naming - however, i don't want the "source
>> files" (i.e. the "tiddlers") which *is* the wiki to be stored in a
>> directory that is hard-coded(!) by the programmer - it should be up to the
>> TiddlyWiki user to name the directory where all tiddlers are stored - i'm
>> not that comfortable having multiple wikis stored together with a common
>> parent directory,
>>
> --
> 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/a3e0a009-c1a5-43fe-bf8a-25ad203711d5%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/CALyWh20dWn%2BtATH4rQC7%3DGMqYEwqF8ueRh4rqP2sxCUc78NGVQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] favorite tab

2018-10-08 Thread Mohammad
Is there any plugin of code snippet to simply add / remove tiddlers as your 
favorites and have a tab to 
easily access them? I search this forum and could not find anything!

If users have any experience please share. The minimum requirements are:


   1. An icon on the tiddler (upper right) to add remove tiddlers to 
   favorites
   2. A sidebar tab named Favorites to list the tiddlers tagged or starred 
   as favorites
   3. Capability to show/hide favorites tab easily (from say control panel)


Mohammad

-- 
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/ccdb4ab5-af8a-47e3-b7af-688aae116bcb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw5] is it possible to configure "Bob" to store tiddler files in the same directory as the wikifolder?

2018-10-08 Thread ch
i've found out in the other thread "[tw5] is it possible to configure
TiddlyWiki on Node.js to store tiddler files in the same directory as the
wikifolder?" that there in fact exist a configuration option
"default-tiddler-location" in the "tiddlywiki.info" file - but sadly, that
option is broken (it doesn't work, see the other thread).

- if someone could make a "patch" to get the "default-tiddler-location"
option working, and patch "Bob" with that "patch"... hmm, maybe that's why
customising tiddler file naming doesn't work with "Bob"...? and, if i could
just get the "IndexWiki" directory in "Bob" to be the current directory
instead (i.e. where the "Bob" executable is stored) and the "settings.json"
file stored on the same directory level as the "tiddlywiki.info" file
(well, that would be the same directory where the "Bob" executable is
stored, as well)... that would make me happy! :-)

cheers!

Den tors 4 okt. 2018 kl 23:32 skrev Jed Carty :

> And it is very possible to change the name of the folder where tiddlers
> are stored inside the wiki folder, it just takes some changes to the code.
> But to my knowledge no one has had a case where that would be important,
> they just want to be able to place the wiki folders, not separate the
> different components of the wiki.
>
> --
> 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/73c7faad-0589-421e-be7f-60af2ad8f271%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/CALyWh21voO4n081zOXukoB7GJReKEXFhgCutPtrnfdZriNn5cA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw5] is it possible to configure "Bob" to store tiddler files in the same directory as the wikifolder?

2018-10-08 Thread ch
hi jed,

for the record: when i wrote "true tw5 wiz", i meant the creator of
tiddlywiki five - i didn't mean to "minimize" your work done on "Bob" - on
the contrary, i'm very impressed with your work... then i also saw that you
support several platforms as well - very(!) impressing, indeed - thanks!

cheers! /ch

Den tors 4 okt. 2018 kl 23:31 skrev Jed Carty :

> Well, I may not be a true tw5 wiz, I am the main dev on Bob. Bob creates
> wikis in a consistent place because it makes probability easier and I
> haven't come up with a simple UI for changing the location that didn't
> confuse people. But you can put the wikis wherever you want them to be.
>
> You set the locations of existing wiki folders in the manual settings tab
> or by editing the settings.json file in the settings sub-folder of the root
> wiki. So far I haven't run into a time when there has been a problem having
> a defined folder structure for wikis.
>
> The folder struture Bob uses is like this:
>
> Main Folder
>   tiddlers folder
>   settings folder
>   tiddlywiki.info
>
> so the settings and tiddlywiki.info file have to be somewhere, and like I
> said the file system monitor (the part that makes changes that happen on
> the file system get pushed to the browser) interacts with every file is the
> folder and could cause undesired behaviour.
>
> If you just want wikis in different places that Bob supports that out of
> the box, just manually set the locations of existing wiki folders. If you
> want something else than we can add it to the list.
>
> --
> 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/8a1cf844-7c3f-4ce2-b6fa-25a09f210aa0%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/CALyWh21Ljh-Fj2%2BNT%3DH114yowG36Vtvcbxx_UoGk5%3DqGu704-Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw5] is it possible to configure TiddlyWiki on Node.js to store tiddler files in the same directory as the wikifolder?

2018-10-08 Thread Jeremy Ruston
Hi ch

I’m afraid that default-tiddler-location only affects the location for saving 
new tiddlers; it doesn’t affect the location from which tiddlers are read at 
startup. The docs could perhaps be clearer:

https://tiddlywiki.com/#tiddlywiki.info%20Files

I don’t think that the core currently supports what you’re trying to achieve, 
but there has been some recent discussion on GitHub that is relevant:

https://github.com/Jermolene/TiddlyWiki5/pull/3411 


What is your motivation for the change?

Many thanks,

Jeremy.

> On 8 Oct 2018, at 12:32, ch  wrote:
> 
> hi xavier,
> 
> thanks for the pointer to the default-tiddler-location in the 
> tiddlerwiki.info  file (i didn't know it 
> existed)... however, it that option doesn't work at all with Tiddlywiki on 
> Node.js!
> 
> if a configure like this:
> 
> "config": {
> "default-tiddler-location": "tiddlers"
> },
> 
> i.e. which is the "default" configuration - everything works as expected 
> (with or without customising tiddler file naming)
> 
> so, then i tried to change from "tiddlers" to "tiddlers2" without 
> "customising tiddler file naming":
> 
> i.e. 
> 
> "config": {
> "default-tiddler-location": "tiddlers2"
> },
> 
> then, the "story list" (i.e. "$__StoryList.tid") is not handled correctly, 
> nor any other TiddlyWiki configurations you can do, like "default tiddlers" 
> (i.e. "$__DefaultTiddlers.tid") once i refresh (or restart the Node.js 
> session) - tiddlywiki doesn't seem to recognise the "story list", so it 
> creates another one named "$__StoryList 1.tid"), and another file for the 
> "default tiddlers" named "$__DefaultTiddlers 1.tid"...
> 
> so, the "default-tiddler-location" configuration option in the 
> "tiddlywiki.info " file is sadly broken :-(
> 
> i've tested this with Node.js ver 8.11.1 on Tiddlywiki ver 5.1.17 for Windows 
> 7 (the target platform i need to get this working on).
> 
> i also tried "customising tiddler file naming", but that's broken as well 
> (the "$:/config/FileSystemPaths.tid" seem to be completely ignored).
> 
> but, if i put a "$:/config/FileSystemPaths.tid" file in directory 
> "tiddlers/_system/config" with "default-tiddler-location" set to "tiddlers2", 
> and the content of "FileSystemPaths.tid" is:
> 
> ```
> [is[system]removeprefix[$:/]addprefix[_system/]]
> [!has[draft.of]]
> ```
> the "customising tiddler file naming" seem to work (the tiddlers are stored 
> in directory hierarchy as configured by the "$:/config/FileSystemPaths.tid" 
> file), but suffers from the same problem as mentioned above with the "story 
> list" - so that's broken, as well.
> 
> i didn't bother to get "default-tiddler-location" set to "." to work (which 
> is what i want), since this configuration i've used in this example must work 
> before i change the "default-tiddler-location" to the current directory...
> 
> cheers!
> 
> 
> Den sön 7 okt. 2018 kl 12:14 skrev Xavier Cazin  >:
> Hi ch,
> 
> I meant to ".", not to "..", sorry.
> 
> -- Xavier
> 
> 
> On Sun, Oct 7, 2018 at 12:12 PM Xavier Cazin  > wrote:
> Hello ch,
> 
> Maybe you can try to set a default-tiddler-location configuration option to  
> ".." in the tiddlywiki.info  file (see 
> https://tiddlywiki.com//#tiddlywiki.info%20Files 
> ) ?
> 
> Regards,
> -- Xavier Cazin
> 
> 
> On Thu, Oct 4, 2018 at 6:33 PM ch  > wrote:
> hi,
> 
> this is a feature i've wanted for a long time but never asked the friendly 
> TiddlyWiki community for help, but i really need your help with this question 
> - because i don't know how to accomplish this feature.
> 
> - if you already understand what i want to accomplish, you can stop reading 
> here - if not, continue to read my elaborated example below:
> 
> 
> so, the help option for running TiddlyWiki on Node.js gives you:
> 
> $ tiddlywiki --help
> usage: tiddlywiki [] [-- [...]...]
> 
> ...and once you have initialized your demo wiki with:
> 
> $ tiddlywiki demo --init server
> 
> ...you can startup your new TiddlyWiki with:
> 
> $ tiddlywiki demo --server
> 
> ...and visit http://127.0.0.1:8080/  in your favorite 
> browser and start editing and creating tiddlers.
> 
> by default, the configuration for storing tiddlers are always in the 
> "/tiddlers", i.e. in this case "demo/tiddlers" - i want the 
> tiddlers to be stored in the wikifolder (or another named directory, for 
> example "src" or "doc"), i.e. in this case the "demo" directory - is that 
> possible? i've never stumbled on any configuration option that makes this 
> possible.
> 
> if this is an easy configuration option - i also want it to be compatible 
> with customising tiddler file naming, i.e.
> 
> 

Re: [tw5] is it possible to configure TiddlyWiki on Node.js to store tiddler files in the same directory as the wikifolder?

2018-10-08 Thread ch
hi xavier,

thanks for the pointer to the *default-tiddler-location* in the
tiddlerwiki.info file (i didn't know it existed)... however, it that option
doesn't work at all with Tiddlywiki on Node.js!

if a configure like this:

"config": {
"default-tiddler-location": "tiddlers"
},

i.e. which is the "default" configuration - everything works as expected
(with or without customising tiddler file naming)

so, then i tried to change from "tiddlers" to "tiddlers2" without
"customising tiddler file naming":

i.e.

"config": {
"default-tiddler-location": "tiddlers2"
},

then, the "story list" (i.e. "$__StoryList.tid") is not handled correctly,
nor any other TiddlyWiki configurations you can do, like "default tiddlers"
(i.e. "$__DefaultTiddlers.tid") once i refresh (or restart the Node.js
session) - tiddlywiki doesn't seem to recognise the "story list", so it
creates another one named "$__StoryList 1.tid"), and another file for the
"default tiddlers" named "$__DefaultTiddlers 1.tid"...

so, the "default-tiddler-location" configuration option in the "
tiddlywiki.info" file is sadly broken :-(

i've tested this with Node.js ver 8.11.1 on Tiddlywiki ver 5.1.17 for
Windows 7 (the target platform i need to get this working on).

i also tried "customising tiddler file naming", but that's broken as well
(the "$:/config/FileSystemPaths.tid" seem to be completely ignored).

but, if i put a "$:/config/FileSystemPaths.tid" file in directory
"tiddlers/_system/config"
with "default-tiddler-location" set to "tiddlers2", and the content of
"FileSystemPaths.tid" is:

```
[is[system]removeprefix[$:/]addprefix[_system/]]
[!has[draft.of]]
```
the "customising tiddler file naming" seem to work (the tiddlers are stored
in directory hierarchy as configured by the "$:/config/FileSystemPaths.tid"
file), but suffers from the same problem as mentioned above with the "story
list" - so that's broken, as well.

i didn't bother to get "default-tiddler-location" set to "." to work (which
is what i want), since this configuration i've used in this example must
work before i change the "default-tiddler-location" to the current
directory...

cheers!


Den sön 7 okt. 2018 kl 12:14 skrev Xavier Cazin :

> Hi ch,
>
> I meant *to "."*, not to "..", sorry.
>
> -- Xavier
>
>
> On Sun, Oct 7, 2018 at 12:12 PM Xavier Cazin  wrote:
>
>> Hello ch,
>>
>> Maybe you can try to set a *default-tiddler-location* configuration
>> option to  ".." in the tiddlywiki.info file *(*see
>> https://tiddlywiki.com//#tiddlywiki.info%20Files) ?
>>
>> Regards,
>> -- Xavier Cazin
>>
>>
>> On Thu, Oct 4, 2018 at 6:33 PM ch  wrote:
>>
>>> hi,
>>>
>>> this is a feature i've wanted for a long time but never asked the
>>> friendly TiddlyWiki community for help, but i really need your help with
>>> this question - because i don't know how to accomplish this feature.
>>>
>>> - if you already understand what i want to accomplish, you can stop
>>> reading here - if not, continue to read my elaborated example below:
>>>
>>>
>>> so, the help option for running TiddlyWiki on Node.js gives you:
>>>
>>> $ tiddlywiki --help
>>> usage: tiddlywiki [] [-- [...]...]
>>>
>>> ...and once you have initialized your demo wiki with:
>>>
>>> $ tiddlywiki demo --init server
>>>
>>> ...you can startup your new TiddlyWiki with:
>>>
>>> $ tiddlywiki demo --server
>>>
>>> ...and visit http://127.0.0.1:8080/ in your favorite browser and start
>>> editing and creating tiddlers.
>>>
>>> by default, the configuration for storing tiddlers are always in the "<
>>> wikifolder>/tiddlers", i.e. in this case "demo/tiddlers" - i want the
>>> tiddlers to be stored in the wikifolder (or another named directory, for
>>> example "src" or "doc"), i.e. in this case the "demo" directory - is that
>>> possible? i've never stumbled on any configuration option that makes this
>>> possible.
>>>
>>> if this is an easy configuration option - i also want it to be
>>> compatible with customising tiddler file naming, i.e.
>>>
>>> https://tiddlywiki.com/#Customising%20Tiddler%20File%20Naming
>>>
>>>
>>> kind regards,
>>>
>>> ch
>>>
>>> --
>>> 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/CALyWh22Khp2RJmTjAbF6PrJ4%2Bqyu34ReZLYKmgR3cnv5LiuuWA%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 

[tw5] Re: [tw] Re: tiddlyclip for chrome

2018-10-08 Thread BJ
HI Kalmir,

The instructions for the install are incorrect - I have updated them on 
github https://github.com/buggyj/tiddlyclip/blob/master/README.md

I don't know if you actually have the latest version installed.

in chrome://extensions/ you should see 


I am seeing a problem with 69.0.3497.100 on xubuntu


-- 
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/f9464e3e-b1ec-4cc5-aa73-f74b202a9616%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: Applying actions to multiple tiddlers

2018-10-08 Thread @TiddlyTweeter
TonyM wrote ... 

> I am aware of actions in a button that contains a list widget that allows 
> a change multiple tiddliers.
> Does anyone understand how this works?, Technicaly that is. How far can 
> this be taken? Can I wrap any complex multilevel list that includes action 
> widgets generated for each member of the output in a single button ...
>
 

> I am looking for general rules,
>

Very interesting question.

I do think a few illustrations of how to do stuff in BULK like you want 
would be useful.

Best wishes
Josiah

-- 
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/1b8ddff7-2404-41fe-9674-1c4b71288744%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: [tw] Re: tiddlyclip for chrome

2018-10-08 Thread Kalmir
As for the error I reported yesterday,

1. There are more errors listed by Chrome: its has problem not only with 
*replace* property, but also *substr* and *url*.
2. I have tried to clip with an empty wiki, to see if dropbox-storing 
causes the problem or not. It does not. The same error occurs with empty TW 
as well.



On Sunday, October 7, 2018 at 9:19:27 PM UTC+1, Kalmir wrote:
>
> Hi, I am wondering if anyone is getting the following error with 
> TiddlyClip (both 0.1.1 and 0.1.2) in Chrome? Or am I doing something wrong? 
> The result of the error is that I never get beyond "dock here", i.e. I 
> never get TiddlyClip's menu of how to pin, snip etc. a selection. 
>
> The error:
>
> Error in event handler (...) Cannot read property "replace" of undefined. 
> / More in the picture
>
> [image: error.PNG]
>
>
> Please note I am using TW5 in the Sky, i.e. my file is stored by Dropbox. 
> However it might not be the issue as TiddlyClip works in Firefox with TW5 
> in the Sky.
>
>
>
> (P.S.: I am able to use TiddlyClip with Firefox and I want to thank you 
> plenty, BJ - it is a great tool.)
>
>
> On Saturday, March 7, 2015 at 6:26:41 PM UTC, BJ wrote:
>>
>> this is now fixed
>>
>> cheers
>> BJ
>>
>> On Wednesday, March 4, 2015 at 6:19:16 AM UTC-6, BJ wrote:
>>>
>>> It looks like there is a problem with finding the configuration tiddler 
>>> (which is a shadow tiddler). 
>>> Try editing the TiddlyClipConfig tiddler - add or remove a blank line at 
>>> the end of the tiddler to make it a non-shadow tiddler and then reload the 
>>> tiddlywiki
>>>
>>> On 4 March 2015 at 05:10, Alex Hough  wrote:
>>>
 I am running on Node, so its http://127.0.0.1:8080/

 perhaps this is the cause?

 Alex

 On 4 March 2015 at 10:35, BJ  wrote:

> that's a bug its not selecting the docked tiddlywiki- try clicking on 
> the address of the docked tiddlywiki (clck 'tiddlycut' then the address 
> of 
> the tiddlywiki)
>
> cheers
>
> BJ
>
> On 4 March 2015 at 03:29, Alex Hough  wrote:
>
>> Hi BJ,
>>
>> I don't seem to get "'tiddlyclip as'"
>>
>> I just see "TiddlyCut" see attached
>>
>> best wishes
>>
>> Alex
>>
>> On 2 March 2015 at 22:20, BJ  wrote:
>>
>>> should be ok now...
>>>
>>>
>>> On Monday, March 2, 2015 at 6:31:44 AM UTC-6, Tobias Beer wrote:

 I get this error...
  

> Fehler beim Laden der Erweiterung aus: ~\Desktop\tiddlyclip
> JavaScript-Datei "*content/util/logsimple.js*" konnte nicht für 
> das Content-Skript geladen werden.


 Best wishes, Tobias.

>>> -- 
>>> 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 a topic in 
>> the Google Groups "TiddlyWiki" group.
>> To unsubscribe from this topic, visit 
>> https://groups.google.com/d/topic/tiddlywiki/O_untMAUOas/unsubscribe.
>> To unsubscribe from this group and all its topics, 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+...@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 a topic in the 
 Google Groups "TiddlyWiki" group.
 To unsubscribe from this topic, visit 
 https://groups.google.com/d/topic/tiddlywiki/O_untMAUOas/unsubscribe.
 To unsubscribe from this group and all its topics, 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