[tw] Re: search TW5 tiddlers body for exact phrase

2017-12-27 Thread RickL
Thanks for your reply and your help.  This plugin is exactly what I needed, 
and should be part of the default file in my opinion.

On Wednesday, December 27, 2017 at 4:55:40 AM UTC-5, BJ wrote:
>
> take at look at Danielo's plugin:
>
> http://contextplugin.tiddlyspot.com/
>
> all the best
> BJ
>
> On Tuesday, December 26, 2017 at 10:12:50 PM UTC+1, RickL wrote:
>>
>> I must not have  been clear in my questionso I will try again...How 
>> can one find a word in a TiddlyWiki file by a simple search if it is buried 
>> in a long tiddler?
>>
>> Thanks
>>
>> On Saturday, December 9, 2017 at 11:58:32 AM UTC-5, RickL wrote:
>>>
>>> I have had this same question for quite a while.  Your answer helps but 
>>> still does not help if the phrase is buried deep in a long tiddler.  Any 
>>> way to highlight the search results?
>>>
>>> Thanks
>>>
>>> On Saturday, December 9, 2017 at 10:55:17 AM UTC-5, Eric Shulman wrote:
>>>>
>>>> On Saturday, December 9, 2017 at 7:06:51 AM UTC-8, John wrote:
>>>>>
>>>>> When I search in TW5 with a phrase, I get all the tidders which have a 
>>>>> word or more of the phrase in any sequence in the title or the body. 
>>>>>
>>>>> Is there an option or plugin to search only for the exact phrase in 
>>>>> the title or the body?
>>>>>
>>>>
>>>> You can use the [regexp[...]] filter operator to search for exact 
>>>> phrase matches including spaces.
>>>>
>>>> 1) Open the $:/AdvancedSearch panel (click the magnifying glass icon 
>>>> next to the regular sidebar search input field)
>>>> 2) In $:/AdvancedSearch, switch to the "Filter" tab
>>>> 3a) To search titles, enter your search syntax like this:
>>>>[regexp[your phrase here]]
>>>> 3b) To search tiddler text, enter your search like this:
>>>>[regexp:text[your phrase here]]
>>>>
>>>> Notes:
>>>> * Because the syntax uses square brackets, you cannot search for text 
>>>> that includes square brackets.
>>>> * If you want to search both title AND text fields at the same time, 
>>>> you can combine the filters in a sequence, separated by a space, like this:
>>>>[regexp[your phrase here]] [regexp:text[your phrase here]]
>>>> * If you don't want to use the $:/AdvancedSearch interface, you can 
>>>> create your own custom interface by putting the following syntax into a 
>>>> tiddler you create:
>>>>
>>>> <$edit-text tiddler="$:/temp/mysearch" tag="input" default=""/>
>>>> <$reveal state="$:/temp/mysearch" type="nomatch" text="">
>>>> <>>> [regexp:text{$:/temp/mysearch}] -[title[$:/temp/mysearch]]">>
>>>> 
>>>>
>>>> * The $edit-text widget stores your search input in $:/temp/mysearch 
>>>> (you can use any tiddler name you like, but something starting with 
>>>> "$:/temp/..." is recommended to avoid cluttering up your regular list of 
>>>> tiddlers)
>>>> * The $reveal widget prevents listing ALL tiddlers when the search 
>>>> input is blank.
>>>> * The <> macro shows a bullet list using the combined 
>>>> title/text search filter, and also automatically excludes the temporary 
>>>> tiddler that holds your search input text.
>>>> * Because the custom search uses a separate tiddler to store the search 
>>>> text, you CAN search for text containing square brackets, as it avoids 
>>>> conflicting with the surrounding filter syntax.
>>>> * If you add the tag "$:/tags/SideBar" to your custom tiddler, it will 
>>>> appear as an extra tab in the sidebar, allowing you to quickly invoke the 
>>>> custom search at any time.
>>>>
>>>> enjoy,
>>>> -e
>>>> Eric Shulman
>>>> TiddlyTools.com: "Small Tools for Big Ideas!" (tm)
>>>> InsideTiddlyWiki: The Missing Manuals
>>>>
>>>

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


[tw] Re: search TW5 tiddlers body for exact phrase

2017-12-26 Thread RickL
I must not have  been clear in my questionso I will try again...How can 
one find a word in a TiddlyWiki file by a simple search if it is buried in 
a long tiddler?

Thanks

On Saturday, December 9, 2017 at 11:58:32 AM UTC-5, RickL wrote:
>
> I have had this same question for quite a while.  Your answer helps but 
> still does not help if the phrase is buried deep in a long tiddler.  Any 
> way to highlight the search results?
>
> Thanks
>
> On Saturday, December 9, 2017 at 10:55:17 AM UTC-5, Eric Shulman wrote:
>>
>> On Saturday, December 9, 2017 at 7:06:51 AM UTC-8, John wrote:
>>>
>>> When I search in TW5 with a phrase, I get all the tidders which have a 
>>> word or more of the phrase in any sequence in the title or the body. 
>>>
>>> Is there an option or plugin to search only for the exact phrase in the 
>>> title or the body?
>>>
>>
>> You can use the [regexp[...]] filter operator to search for exact phrase 
>> matches including spaces.
>>
>> 1) Open the $:/AdvancedSearch panel (click the magnifying glass icon next 
>> to the regular sidebar search input field)
>> 2) In $:/AdvancedSearch, switch to the "Filter" tab
>> 3a) To search titles, enter your search syntax like this:
>>[regexp[your phrase here]]
>> 3b) To search tiddler text, enter your search like this:
>>[regexp:text[your phrase here]]
>>
>> Notes:
>> * Because the syntax uses square brackets, you cannot search for text 
>> that includes square brackets.
>> * If you want to search both title AND text fields at the same time, you 
>> can combine the filters in a sequence, separated by a space, like this:
>>[regexp[your phrase here]] [regexp:text[your phrase here]]
>> * If you don't want to use the $:/AdvancedSearch interface, you can 
>> create your own custom interface by putting the following syntax into a 
>> tiddler you create:
>>
>> <$edit-text tiddler="$:/temp/mysearch" tag="input" default=""/>
>> <$reveal state="$:/temp/mysearch" type="nomatch" text="">
>> <> -[title[$:/temp/mysearch]]">>
>> 
>>
>> * The $edit-text widget stores your search input in $:/temp/mysearch (you 
>> can use any tiddler name you like, but something starting with 
>> "$:/temp/..." is recommended to avoid cluttering up your regular list of 
>> tiddlers)
>> * The $reveal widget prevents listing ALL tiddlers when the search input 
>> is blank.
>> * The <> macro shows a bullet list using the combined 
>> title/text search filter, and also automatically excludes the temporary 
>> tiddler that holds your search input text.
>> * Because the custom search uses a separate tiddler to store the search 
>> text, you CAN search for text containing square brackets, as it avoids 
>> conflicting with the surrounding filter syntax.
>> * If you add the tag "$:/tags/SideBar" to your custom tiddler, it will 
>> appear as an extra tab in the sidebar, allowing you to quickly invoke the 
>> custom search at any time.
>>
>> enjoy,
>> -e
>> Eric Shulman
>> TiddlyTools.com: "Small Tools for Big Ideas!" (tm)
>> InsideTiddlyWiki: The Missing Manuals
>>
>

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


[tw] Re: search TW5 tiddlers body for exact phrase

2017-12-09 Thread RickL
I have had this same question for quite a while.  Your answer helps but 
still does not help if the phrase is buried deep in a long tiddler.  Any 
way to highlight the search results?

Thanks

On Saturday, December 9, 2017 at 10:55:17 AM UTC-5, Eric Shulman wrote:
>
> On Saturday, December 9, 2017 at 7:06:51 AM UTC-8, John wrote:
>>
>> When I search in TW5 with a phrase, I get all the tidders which have a 
>> word or more of the phrase in any sequence in the title or the body. 
>>
>> Is there an option or plugin to search only for the exact phrase in the 
>> title or the body?
>>
>
> You can use the [regexp[...]] filter operator to search for exact phrase 
> matches including spaces.
>
> 1) Open the $:/AdvancedSearch panel (click the magnifying glass icon next 
> to the regular sidebar search input field)
> 2) In $:/AdvancedSearch, switch to the "Filter" tab
> 3a) To search titles, enter your search syntax like this:
>[regexp[your phrase here]]
> 3b) To search tiddler text, enter your search like this:
>[regexp:text[your phrase here]]
>
> Notes:
> * Because the syntax uses square brackets, you cannot search for text that 
> includes square brackets.
> * If you want to search both title AND text fields at the same time, you 
> can combine the filters in a sequence, separated by a space, like this:
>[regexp[your phrase here]] [regexp:text[your phrase here]]
> * If you don't want to use the $:/AdvancedSearch interface, you can create 
> your own custom interface by putting the following syntax into a tiddler 
> you create:
>
> <$edit-text tiddler="$:/temp/mysearch" tag="input" default=""/>
> <$reveal state="$:/temp/mysearch" type="nomatch" text="">
> < -[title[$:/temp/mysearch]]">>
> 
>
> * The $edit-text widget stores your search input in $:/temp/mysearch (you 
> can use any tiddler name you like, but something starting with 
> "$:/temp/..." is recommended to avoid cluttering up your regular list of 
> tiddlers)
> * The $reveal widget prevents listing ALL tiddlers when the search input 
> is blank.
> * The <> macro shows a bullet list using the combined 
> title/text search filter, and also automatically excludes the temporary 
> tiddler that holds your search input text.
> * Because the custom search uses a separate tiddler to store the search 
> text, you CAN search for text containing square brackets, as it avoids 
> conflicting with the surrounding filter syntax.
> * If you add the tag "$:/tags/SideBar" to your custom tiddler, it will 
> appear as an extra tab in the sidebar, allowing you to quickly invoke the 
> custom search at any time.
>
> enjoy,
> -e
> Eric Shulman
> TiddlyTools.com: "Small Tools for Big Ideas!" (tm)
> InsideTiddlyWiki: The Missing Manuals
>

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


[tw] Re: Any Cooks here?

2016-06-28 Thread RickL
Since your gmail address is in your response, I will pm you with my current 
recipes file. 

I have the recipes linked to the Grocery List tiddler which makes it easy 
to keep track and plan.

Take a look and let me know if you have questions.

Rick

On Tuesday, June 28, 2016 at 1:00:21 PM UTC-4, J Mc wrote:
>
> Hello RickL
> I am interested in your journalexample.tiddlyspot.com
> I would like to see how it could be used for shopping lists but the 
> website is requesting a login and password.
> Could you please post an example somewhere.
>
> Thanks J Mc
>
> On Sunday, February 8, 2015 at 3:59:44 PM UTC, RickL wrote:
>>
>> Here is something I have been using and modifying for the past few 
>> monthsnice for shopping list too.  Have a look 
>> journalexample.tiddlyspot.com
>>
>>
>>

-- 
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/e0d04f4f-41d0-43b2-a9d8-a66b6bf1950e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Master list across TW5 files

2016-06-28 Thread RickL
So there are opinions that yes this can be done, and others that say it 
cannot.

If possible could someone give a detailed example?  

On Thursday, June 16, 2016 at 3:15:50 AM UTC-4, Jed Carty wrote:
>
> Richard,
>
> You can do this with local files. This is exactly what I made for the 
> prototype for twederation. I have not had any trouble opening a local wiki 
> on a file:// uri and fetching things from another local wiki on another 
> file uri.
>
> If it is something that browsers are supposed to block it isn't happening 
> for me at least.
>

-- 
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/5968e288-a0cc-4641-be8a-6473f2cf72f5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Master list across TW5 files

2016-06-15 Thread RickL
Dropbox is not a must is this case, though it certainly makes it most 
convenient.

That being said, if I could create a master list with links on my home 
server or PC I could work with that - if that makes it possible.





On Wednesday, June 15, 2016 at 3:16:20 PM UTC-4, Jed Carty wrote:
>
> The https problem is if you are on an https server you can not pull this 
> from a non-https server, you can get things from an https server from 
> anywhere. If you have a local wiki you should be able to get things from an 
> https site just fine. 
>

-- 
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/2d4a2b74-9db2-4520-945e-5571f1560f1f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Master list across TW5 files

2016-06-15 Thread RickL


I keep several TW5 files in different areas of interest and keep them all 
in the same Dropbox folder to be able to take advantage of the cross 
linking command.


In each file I have a "to read" tag, along with a "to read" tiddler that 
shows the reading list contents for each file.


Ideally, I would like to have a single file, or tiddler in a file, showing 
the name of each TW5 and a content for each "to read" tiddler in the 
respective file.


I can create a link to each in a single tiddler but that is not as useful 
as having the actual list segregated by the file name.


Is this possible at this time?


Thanks

-- 
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/9cc936d7-666f-4441-9313-c4abec839cc8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Announcing TWWFI, a file for TiddlyWiki and Workflowy integration

2016-05-10 Thread RickL
If they come out with an Android and a Chrome app soon it would be a real 
contender.  As much as I like the simplicity of Workflowy, development 
seems to be dead.

On Friday, May 6, 2016 at 8:31:34 PM UTC-4, David Gifford wrote:
>
> Hi all,
>
> I mentioned a week or so ago about integrating TW and Workflowy. As I 
> continue to play with it, the more excited I am about it. This has 
> revolutionized my note-taking and bookmarking.
>
> Today I uploaded a customized TiddlyWiki called TWWFI to my website. 
> http://www.giffmex.org/twwfi/twwfi.html. A proper introduction and 
> instructions can be found there.
>
> Please let me know what you think if you play with it for a while.
>
> Dave
>
>
>

-- 
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/9a640973-8265-4124-ac10-82cf18d87c6e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Announcing TWWFI, a file for TiddlyWiki and Workflowy integration

2016-05-10 Thread RickL
Thanks for highlighting this - I use both apps extensively.  A couple of 
comments...

Dynalist has no mobile at if I remember correctly. The Workflowy Android 
app works extremely well, and is syncs perfectly - one of the better 
selling points for the app I think

As for your workflow when combining TW5 and Workflowy, is there an 
advantage in going through the share steps when one can just grab the url 
from the browser bar?  Much simpler and allows views of the outline whereas 
sharing does not permit this view...



On Monday, May 9, 2016 at 3:33:03 PM UTC-4, David Gifford wrote:
>
> Hi Mat
>
> Yes, there is a lot of jumping back and forth, but that is in part because 
> in the video I am not only showing how to start a topic and link both TW 
> and WF, but also then how fast it is to retrieve the note once it is saved, 
> and open it back up in WF.
>
> I should say that I also just discovered Dynalist. (https://dynalist.io/). 
> It is like Workflowy, but with a number of added features: Rather than have 
> one big outliner document, you create any number of documents, each with 
> its bulleted outlines. And there is a pretty good mechanism for searching 
> for documents. Using that would undercut the need for a system like TWWFI. 
> Rather than use TW as a front end for WF, I could just use Dynalist. 
> Dynalist also allows for inline images and pretty links, which WF does not. 
> And using WF almost requires a pro account for $50 a year, whereas Dynalist 
> allows you unlimited documents, unlimited bullet points, and most of the 
> best features even in its free version.
>
> This leaves me ambivalent about what to pursue of the two options...
>
> Dave
>
> On Mon, May 9, 2016 at 1:46 PM, Mat  
> wrote:
>
>> David, thanks for so generously sharing your ideas and creations!
>>
>> While I've admittedly not tried out workflowy or TWWFI, I'm thinking 
>> there's quite a lot of jumping back and forth at least in the video. Maybe 
>> this could be smoother by having the workflowy document display...
>>
>> * in an iframe (because workflowy is web based, if I understand)...
>> *...that is in a viewtemplate so it shows in every tiddler, perhaps above 
>> the body
>> *...but with a revealwidget around it so you can open close it.
>>
>> Just a thought.
>>
>> <:-)
>>
>> -- 
>> 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/cNNYKjvhj3Q/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 https://groups.google.com/group/tiddlywiki.
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/tiddlywiki/b57cc73f-245b-4d71-9947-44ce56f3aa9e%40googlegroups.com
>>  
>> 
>> .
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>
>
> -- 
> David Gifford
> Christian Reformed World Missions, Mexico City
>
>

-- 
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/3f873f52-00d0-49af-8a11-c5446cbe00ae%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Advise request. 1 doc for everything vs several specialized docs

2016-01-26 Thread RickL
Any way to get this to work on  mobile platform? I tried with Firefox and 
Andtidwiki .

On Thursday, January 14, 2016 at 1:37:41 AM UTC-5, Guayo Mena wrote:
>
> Hi! I'm loving TiddlyWiki and I'm using it more and more every day.
>
> I'm a freelancer web developer, so I'm using it to store notes about 
> programming tips, documentation on projects, some tasks  and details on 
> clients and meetings. As you can imagine, my file is growing quickly.
> I already have lots of tags.
>
> Although I've read that TiddlyWiki files can grow up to gigabyte sizes and 
> still work properly, I wanted to know from experienced users if it would be 
> better to have different documents for everything as opposed to developing 
> a complex tag hierarchy. (ie. One doc for clients, projects and 
> documentation VS a separate doc for each one of those things)
>
> What do you think? I would like to read some opinions.
>
> Thanks!!
>

-- 
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/879fdd5b-4fa7-4f43-b448-6f3ad058de7f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Auto TOC Macro causing crash

2015-11-20 Thread RickL
I recently installed the Auto TOC macro discussed  here 

.

Recenlty I also began having issues with simple use of the TOC macro.  

Entering <> sometimes breaks the macro and I get a java 
script error.

Anyone else having this type issue?

Does not seem to be happeing on older TW5 files which do not have the Auto 
TOC macro.

Thanks

-- 
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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/b5972597-6405-42fd-8fd2-0c5024e7c827%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 - List of tiddlers with field check box

2015-11-16 Thread RickL
I want the conents of the "due" field to display in color - currently red

Thanks


On Wednesday, November 11, 2015 at 7:49:25 PM UTC-5, Tobias Beer wrote:
>
> Hi RickL,
>  
>
>> As you can see by my example, I have the due dates for Tasks in red.  
>> Your comment  - "I would not recommend placing styles within list 
>> iterations. Use a global stylesheet tiddler instead." made me think I 
>> should be doing this differently but not sure how to do it.
>>
>  
> Ah, I can see now that my own example gave the "inline styles". Now, just 
> to be clear, those do work. I posted them that way so you would immediately 
> see results after copy & paste. I would always put those in a custom 
> StyleSheet <http://tiddlywiki.com/#Using%20Stylesheets>, if only to have 
> but one spot where to define my own styles (regarding a specific thing).
>
> In terms of coloring, there are differences between viewing something and 
> editing that. Unless truly needed, styling individual fields in the 
> edit-template is harder than in view-mode. So far, we've only talked about 
> view-mode, which is where I would do what I recommended above. If we are 
> actually talking about edit-mode, then we need a different approach.
>
> So, you want to style precisely:
>
>1. What?
>2. When?
>3. Why?
>
> Best wishes,
>
> — tb
>

-- 
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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/51ed8ccd-761d-4d78-bc23-91c7db243cd5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 - List of tiddlers with field check box

2015-11-11 Thread RickL
As you can see by my example, I have the due dates for Tasks in red.  
Your comment  - "I would not recommend placing styles within list 
iterations. Use a global stylesheet tiddler instead." made me think I 
should be doing this differently but not sure how to do it.

On Saturday, November 7, 2015 at 3:40:07 AM UTC-5, Tobias Beer wrote:
>
> Hi RickL,
>  
>
>> Is it possible to set the field text color of a specific field globally 
>> for the entire TW, so must this be done at the tiddler level?
>>
>
> I believe, currently, there is no way to style individual fields in the 
> editor except those that already are special, e.g. tags and type. What do 
> you have in mind precisely?
>
> Best wishes,
>
> — tb
>

-- 
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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/153df766-953c-4331-9b06-c90cc5dc65e2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 - List of tiddlers with field check box

2015-11-06 Thread RickL


On Thursday, November 5, 2015 at 4:21:39 PM UTC-5, Tobias Beer wrote:
>
> Hi RickL,
>
> There are a few issues with your example.
>
> *@Jeremy:* The reason why the project list doesn't update is because 
> (oddly?!?) TiddlyWiki appears to not refresh the list item when you modify 
> the tiddler associated with it, which it should, imho. To actually force it 
> to do so, wrap the cycletags macro in the tiddler widget like so:
>
> *<$tiddler tiddler=<**>>*
> <" class:"tc-btn-invisible next-prio">>
> .next-prio {color:red}
> **
>
> That works - thanks!
 

> Not exactly sure I understand how / why (the output of) cycletags forgets 
> its context (tiddler) when run or how to prevent it from doing so.
>
> Pay attention to parameters. In your code you specify "class=class-name" 
> instead of "class:class-name".
>
> I would not recommend placing styles within list iterations. Use a global 
> stylesheet tiddler instead.
>
> Eventually, when you output a table, all elements within a *tr* need to 
> be (wrapped with) either *td*'s or *th*'s, otherwise you break the table 
> layout.
>
> Best wishes,
>
>
Tobias.
>

Thanks for your help and suggestions...obviously I have lots to learn about 
java-script and coding, as I have no clue how to make the changes you 
suggest. I mostly just take other examples and play around with them until 
I get them to do what I want .
"Use a global style sheet tiddler..."  can you point me to an example.

Thanks 
Rick 

-- 
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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/b5ab2d1f-664e-4899-b13d-ed3c9fc3b314%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 - List of tiddlers with field check box

2015-11-06 Thread RickL
I did some reading about global stylesheets, and I understand your comment 
a bit better.

Is it possible to set the field text color of a specific field globally for 
the entire TW, so must this be done at the tiddler level?

Thanks

On Thursday, November 5, 2015 at 4:21:39 PM UTC-5, Tobias Beer wrote:
>
> Hi RickL,
>
> There are a few issues with your example.
>
> *@Jeremy:* The reason why the project list doesn't update is because 
> (oddly?!?) TiddlyWiki appears to not refresh the list item when you modify 
> the tiddler associated with it, which it should, imho. To actually force it 
> to do so, wrap the cycletags macro in the tiddler widget like so:
>
> *<$tiddler tiddler=<**>>*
> <" class:"tc-btn-invisible next-prio">>
> .next-prio {color:red}
> **
>
> Not exactly sure I understand how / why (the output of) cycletags forgets 
> its context (tiddler) when run or how to prevent it from doing so.
>
> Pay attention to parameters. In your code you specify "class=class-name" 
> instead of "class:class-name".
>
> I would not recommend placing styles within list iterations. Use a global 
> stylesheet tiddler instead.
>
> Eventually, when you output a table, all elements within a *tr* need to 
> be (wrapped with) either *td*'s or *th*'s, otherwise you break the table 
> layout.
>
> 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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/982cb54a-e300-4f5e-8f6c-5ae7c521f53a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 - List of tiddlers with field check box

2015-11-06 Thread RickL


On Thursday, November 5, 2015 at 4:21:39 PM UTC-5, Tobias Beer wrote:
>
> Hi RickL,
>
> There are a few issues with your example.
>
> *@Jeremy:* The reason why the project list doesn't update is because 
> (oddly?!?) TiddlyWiki appears to not refresh the list item when you modify 
> the tiddler associated with it, which it should, imho. To actually force it 
> to do so, wrap the cycletags macro in the tiddler widget like so:
>
> *<$tiddler tiddler=<**>>*
> <" class:"tc-btn-invisible next-prio">>
> .next-prio {color:red}
> **
>
> Not exactly sure I understand how / why (the output of) cycletags forgets 
> its context (tiddler) when run or how to prevent it from doing so.
>
> Pay attention to parameters. In your code you specify "class=class-name" 
> instead of "class:class-name".
>
> I would not recommend placing styles within list iterations. Use a global 
> stylesheet tiddler instead.
>

Is it possible to set the color of text in a specific field globally or 
must this be done at the tiddler level? 

>
> Eventually, when you output a table, all elements within a *tr* need to 
> be (wrapped with) either *td*'s or *th*'s, otherwise you break the table 
> layout.
>
> 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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/5dc5c80d-dff8-4df0-9c2d-b7a914d83237%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 - List of tiddlers with field check box

2015-11-05 Thread RickL



I am using the cycle tags macro in a TW5 Task List to track projects and 
tasks.

I have a master list of tasks, some tied to projects and some not.

Also, for each project, I have a list of tasks for said project.

The cycle tags macro works fine in the master list of tasks, but I noticed 
when I try to have the same function in the project list of tasks the macro 
will not perform properly.

See example here <http://cycletagsexample.tiddlyspot.com/> and let me know 
if you can spot the problem.

Thanks for any help




On Thursday, October 8, 2015 at 4:07:39 PM UTC-4, Tobias Beer wrote:
>
> Hi RickL,
>
> While adding another example,
> I realized that one bit of code was not there yet
> ...to set a custom button label.
>
> So, please grab the update (of the macro) from here...
>
> Cycling Tags @ tb5 <http://tobibeer.github.io/tb5/#Cycling%20Tags>
>
> ...and check out the example for the custom button label
> showing the currently applied tag and then a *>* button to cycle to the 
> next one.
>
> Best wishes,
>
> — tb
>
>

-- 
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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/5c756b0f-fdd6-4bc1-ae05-062550548316%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 - List of tiddlers with field check box

2015-11-04 Thread RickL


I am using your cycle tags macro in a Task List TW5 to track projects and 
tasks. I really like how it allows me to change priority on the fly for 
tasks!

I have a master list of tasks, some tied to projects and some not.

Also, for each project, I have a list of tasks for said project.

The cycle tags macro works fine in the master list of tasks, but I noticed 
when I try to have the same function in the project list of tasks the macro 
will not perform properly. Is there an issue with using the same macro in 
two different tiddlers?

I have set up an example at  - cycletagsexample.tiddlyspot.com - if you 
have a chance to taike a look.


Thanks

Rick




On Thursday, October 8, 2015 at 4:07:39 PM UTC-4, Tobias Beer wrote:
>
> Hi RickL,
>
> While adding another example,
> I realized that one bit of code was not there yet
> ...to set a custom button label.
>
> So, please grab the update (of the macro) from here...
>
> Cycling Tags @ tb5 <http://tobibeer.github.io/tb5/#Cycling%20Tags>
>
> ...and check out the example for the custom button label
> showing the currently applied tag and then a *>* button to cycle to the 
> next one.
>
> Best wishes,
>
> — tb
>
>

-- 
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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/515036ae-0d95-40c1-b6f7-3828f2ea0710%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 - List of tiddlers with field check box

2015-10-09 Thread RickL
This looks like a great solution but I need some instructions/help to make 
it work...All I get is Target List in bold ...what's missing?

On Friday, October 9, 2015 at 9:53:31 AM UTC-4, Matabele wrote:
>
> Hi
>
> There's another way to cycle tags -- demo here 
> <http://gwiz.tiddlyspot.com/#:%5B%5BCycle%20Tags%20Demo%5D%5D>.
>
> I'm busy updating my button widgets (will publish soon) but I think the 
> same technique could be implemented using standard action widgets (which 
> ween't available at that time.)
>
> regards
>
> On Thursday, 8 October 2015 12:20:44 UTC+2, Tobias Beer wrote:
>>
>> Hi RickL,
>>
>> I just created an equivalent for *cycletags* from TW2 for TW5:
>>
>> Cycling Tags @ tb5 <http://tobibeer.github.io/tb5/#Cycling%20Tags>
>>
>> Best wishes,
>>
>> — tb
>>
>

-- 
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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/263576e0-8a15-4a1c-b279-459c32c8e293%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 - List of tiddlers with field check box

2015-10-08 Thread RickL
Looks like a great solution...I am trying to understand how it works!

On Wednesday, October 7, 2015 at 10:18:22 PM UTC-4, Matabele wrote:
>
> Hi
>
> I came across a similar usage case when developing my version of a 'GTD' 
> type application. I chose to use fields rather than tags to implement the 
> functionality (leaving the tags field empty for other purposes.) This 
> involved the use of a list of checkboxes (based upon fields) reflecting the 
> folders in which the ticklers were contained.
>
> I posted two wikis (old beta versions of TW5) which should provide ideas 
> for solving your problem -- they may be found here 
> <http://gtid.tiddlyspot.com> and here <http://wills.tiddlyspot.com>.
>
> regards
>
> On Wednesday, 7 October 2015 20:07:41 UTC+2, RickL wrote:
>>
>> I'm sure this can be done but I don't have the coding skills to do it.
>>
>> I know how to use the list-links macro to get a list of all relevant 
>> tiddlers, say all tagged project. I can also add to said filter to get all 
>> tagged with a certain field, say priority "a".
>>
>> <>
>>
>> I also know the same thing can be done using the list filter.
>>
>> What I would like is the ability to see a list of all tiddlers tagged 
>> project, with their priority in a check box next to them, with the ability 
>> to change said priority at that check box - all in the same tiddler.
>>
>> Can anyone point me in the right direction to make this happen?
>>
>> Jed's solution to the Multiple tag fields discussion seems like a start 
>> but I don't know how to make it work.
>>
>> https://groups.google.com/forum/#!topic/TiddlyWiki/gtXaM7y6hRQ
>>
>> Please let me know if this is not a clear description.
>>
>

-- 
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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/b486e2fe-b493-40bb-b46e-b608c47b512c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 - List of tiddlers with field check box

2015-10-08 Thread RickL
This is what I am looking for and I prefer the use of tags when possible. I 
am going to add this to my TW and see if I can get it working!

Thanks for your help


On Thursday, October 8, 2015 at 6:20:44 AM UTC-4, Tobias Beer wrote:
>
> Hi RickL,
>
> I just created an equivalent for *cycletags* from TW2 in TW5:
>
> Cycling Tags @ tb5 <http://tobibeer.github.io/tb5/#Cycling%20Tags>
>
> Best wishes,
>
> — tb
>

-- 
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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/ba630f9e-558b-43d1-aff4-0840a5d97523%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] TW5 - List of tiddlers with field check box

2015-10-07 Thread RickL
I'm sure this can be done but I don't have the coding skills to do it.

I know how to use the list-links macro to get a list of all relevant 
tiddlers, say all tagged project. I can also add to said filter to get all 
tagged with a certain field, say priority "a".

<>

I also know the same thing can be done using the list filter.

What I would like is the ability to see a list of all tiddlers tagged 
project, with their priority in a check box next to them, with the ability 
to change said priority at that check box - all in the same tiddler.

Can anyone point me in the right direction to make this happen?

Jed's solution to the Multiple tag fields discussion seems like a start but 
I don't know how to make it work.

https://groups.google.com/forum/#!topic/TiddlyWiki/gtXaM7y6hRQ

Please let me know if this is not a clear description.

-- 
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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/5161d769-2683-47af-88f9-f7751c62bfe6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [How to] [TW5] Multiple tag fields

2015-10-05 Thread RickL
This is a great tool Jed!   It will work great for my project management TW.



On Sunday, October 4, 2015 at 3:32:24 PM UTC-4, Jed Carty wrote:
>
> Tobias, 
> Because it was the most straight forward way to extend the tags directly. 
> It turns out that it isn't as efficient, but it has the most you can reuse.
>
> Danielo,
>
> I changed to using action widgets. It turns out it is a much easier way to 
> go and should be better for future updates.
> The discussion about it on github is here: 
> https://github.com/Jermolene/TiddlyWiki5/issues/1993#issuecomment-145359568
> Here is my new thing: 
> http://ooktech.com/jed/ExampleWikis/ListManipulation/#Demo%20Stuff
>

-- 
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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/415e3395-aaee-4ecf-929e-a77804f53535%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 - Suggestions for truly long term use?

2015-09-13 Thread RickL
In the past few weeks, my TW5 file has grown from 2.4MB to just over 3MB.

This has resulted in a noticeable slow down of the file.  Making changes to 
any tiddler now takes between 3 and 4 seconds - every time!  Also, saving 
the file a full 7 seconds.  That seems  like an eternity in computer time. 
 I am currenty using the TiddlyChrome plugin 

I am running Windows 8.1 on an Intel i5 ultrabook with a TWC broadband 
connection.

Is this the performance I should expect?  

Thanks

On Saturday, August 1, 2015 at 5:30:18 PM UTC-4, RickL wrote:
>
> I love TiddlyWiki and have used it daily for almost a year.  I began in 
> January to make my journal and notebook digital instead of a paper 
> notebook.  I love the flexibility and the linking of topics.   The closest 
> thing I have found that works.  
>
> My concern is with true longevity. Though I have several TiddlyWikis, my 
> main notebook (Common-place book, Zettelkasten, call it what you will - 
> that's how I use it) is 2.7 GB and I have started noticing a lag in saving 
> and loading, particularly on my phone (I use AndTidWiki and Dropbox with my 
> Android phone).  At this rate of growth I worry about how useful it will be 
> in 3 years.  I use it with Chrome and Arlen's TiddlyChrome.
>
> There is the option to split the TiddlyWiki into two or more, but that 
> takes away a lot of the functionality with no way to link between files.
>
> Every release amazes me with the new tools available. I know this product 
> is just out of beta and under constant development so I hope there can be a 
> way to address this.  Maybe the solution is already out there and I don't 
> know about it.
>
> Keep up the great work!
>
> Thanks
> Rick
>

-- 
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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/b1131b24-873d-4dcd-b893-1d8fdddc725d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 - Suggestions for truly long term use?

2015-09-13 Thread RickL
Thanks I tried that and it does help a little.  Still much slower than 
I prefer.  

On Sunday, September 13, 2015 at 5:52:07 PM UTC-4, Evolena wrote:
>
> See Performance <http://tiddlywiki.com/#Performance>
>
> If your current sidebar tab contains a long list (e.g. the Recent tab), it 
> slows down TW. As if you've opened tiddlers with a lot of lists.
> As an example, my 4,5 Mb TW saves in ~4s if I'm on the Recent tab, and 
> less than 2s if I'm on "Open" with only a couple of opened tiddlers.
>
>
> Le dimanche 13 septembre 2015 23:30:42 UTC+2, RickL a écrit :
>>
>> In the past few weeks, my TW5 file has grown from 2.4MB to just over 3MB.
>>
>> This has resulted in a noticeable slow down of the file.  Making changes 
>> to any tiddler now takes between 3 and 4 seconds - every time!  Also, 
>> saving the file a full 7 seconds.  That seems  like an eternity in computer 
>> time.  I am currenty using the TiddlyChrome plugin 
>>
>> I am running Windows 8.1 on an Intel i5 ultrabook with a TWC broadband 
>> connection.
>>
>> Is this the performance I should expect?  
>>
>> Thanks
>>
>> On Saturday, August 1, 2015 at 5:30:18 PM UTC-4, RickL wrote:
>>>
>>> I love TiddlyWiki and have used it daily for almost a year.  I began in 
>>> January to make my journal and notebook digital instead of a paper 
>>> notebook.  I love the flexibility and the linking of topics.   The closest 
>>> thing I have found that works.  
>>>
>>> My concern is with true longevity. Though I have several TiddlyWikis, my 
>>> main notebook (Common-place book, Zettelkasten, call it what you will - 
>>> that's how I use it) is 2.7 GB and I have started noticing a lag in saving 
>>> and loading, particularly on my phone (I use AndTidWiki and Dropbox with my 
>>> Android phone).  At this rate of growth I worry about how useful it will be 
>>> in 3 years.  I use it with Chrome and Arlen's TiddlyChrome.
>>>
>>> There is the option to split the TiddlyWiki into two or more, but that 
>>> takes away a lot of the functionality with no way to link between files.
>>>
>>> Every release amazes me with the new tools available. I know this 
>>> product is just out of beta and under constant development so I hope there 
>>> can be a way to address this.  Maybe the solution is already out there and 
>>> I don't know about it.
>>>
>>> Keep up the great work!
>>>
>>> Thanks
>>> Rick
>>>
>>

-- 
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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/0400cbb2-b60e-4ad8-9772-34b4712e1c2f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 - Suggestions for truly long term use?

2015-08-01 Thread RickL
Yes, of course it is 2.7 MB - sorry for that...don't know what I was 
thinking.
I have read a bit more on the forums and see there are others with much 
larger TW than that which seem to function OK...


On Saturday, August 1, 2015 at 6:23:29 PM UTC-4, Mark S. wrote:

 Are you sure that it's 2.7 GB? Not maybe 2.7 Mb?  that's an astounding 
 amount of information. It's hard to imagine that you're experiencing only a 
 little lag saving/loading. I can't think how you could have acquired that 
 much data -- unless you're loading it up with images. If so, then the 
 solution is to make the images external to the actual TW.

 There's no relational database behind TW. Indexed or relational databases 
 are usually necessary for dealing with large amounts of data. That means 
 that TW will always hit an impasse based primarily on the power of the 
 hardware that supports it. 

 Mark

 On Saturday, August 1, 2015 at 2:30:18 PM UTC-7, RickL wrote:

 I love TiddlyWiki and have used it daily for almost a year.  I began in 
 January to make my journal and notebook digital instead of a paper 
 notebook.  I love the flexibility and the linking of topics.   The closest 
 thing I have found that works.  

 My concern is with true longevity. Though I have several TiddlyWikis, my 
 main notebook (Common-place book, Zettelkasten, call it what you will - 
 that's how I use it) is 2.7 GB and I have started noticing a lag in saving 
 and loading, particularly on my phone (I use AndTidWiki and Dropbox with my 
 Android phone).  At this rate of growth I worry about how useful it will be 
 in 3 years.  I use it with Chrome and Arlen's TiddlyChrome.

 There is the option to split the TiddlyWiki into two or more, but that 
 takes away a lot of the functionality with no way to link between files.

 Every release amazes me with the new tools available. I know this product 
 is just out of beta and under constant development so I hope there can be a 
 way to address this.  Maybe the solution is already out there and I don't 
 know about it.

 Keep up the great work!

 Thanks
 Rick



-- 
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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/f145d09f-1641-4b45-b01b-afa43dc061af%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] TW5 - Suggestions for truly long term use?

2015-08-01 Thread RickL
I love TiddlyWiki and have used it daily for almost a year.  I began in 
January to make my journal and notebook digital instead of a paper 
notebook.  I love the flexibility and the linking of topics.   The closest 
thing I have found that works.  

My concern is with true longevity. Though I have several TiddlyWikis, my 
main notebook (Common-place book, Zettelkasten, call it what you will - 
that's how I use it) is 2.7 GB and I have started noticing a lag in saving 
and loading, particularly on my phone (I use AndTidWiki and Dropbox with my 
Android phone).  At this rate of growth I worry about how useful it will be 
in 3 years.  I use it with Chrome and Arlen's TiddlyChrome.

There is the option to split the TiddlyWiki into two or more, but that 
takes away a lot of the functionality with no way to link between files.

Every release amazes me with the new tools available. I know this product 
is just out of beta and under constant development so I hope there can be a 
way to address this.  Maybe the solution is already out there and I don't 
know about it.

Keep up the great work!

Thanks
Rick

-- 
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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/78340401-c9dc-4266-bbdd-fde5a927d3c2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Announcing TiddlyChrome

2015-07-20 Thread RickL
Still a huge improvement...thanks for your work!

On Monday, July 20, 2015 at 8:20:21 AM UTC-4, Arlen Beiler wrote:

 No, not really. But, yeah, that's the way it works for now.
 -Arlen

 On Sat, Jul 18, 2015 at 4:27 PM, RickL rick...@gmail.com javascript: 
 wrote:

 External links do not work...that is, I can't click on a link and have it 
 open in Chrome. I can drag the link to a chrome window and open it.  Is 
 this the way it should be working?

 On Wednesday, July 8, 2015 at 12:57:53 PM UTC-4, Arlen Beiler wrote:

 Hi everyone, 
 Was working on a project and once again wished that chrome would save 
 files to disk. Well, to make a long story short, here it is. Inspired by 
 TiddlyFox, but I needed to use a Chrome Packaged App. So this will work 
 with Google Chrome, and it might also work with Chrome OS, I have no clue. 
 Regardless, here it is and feel free to email me if you have questions. It 
 is really an alpha version, so use it at your own risk.
 -Arlen

  -- 
 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 javascript:.
 To post to this group, send email to tiddl...@googlegroups.com 
 javascript:.
 Visit this group at http://groups.google.com/group/tiddlywiki.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/tiddlywiki/cfe7194b-13a3-4ca2-b57e-a77dd0af1251%40googlegroups.com
  
 https://groups.google.com/d/msgid/tiddlywiki/cfe7194b-13a3-4ca2-b57e-a77dd0af1251%40googlegroups.com?utm_medium=emailutm_source=footer
 .

 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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/89ea4834-4d46-4fbd-8eb8-b59a155e3821%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Announcing TiddlyChrome

2015-07-18 Thread RickL
External links do not work...that is, I can't click on a link and have it 
open in Chrome. I can drag the link to a chrome window and open it.  Is 
this the way it should be working?

On Wednesday, July 8, 2015 at 12:57:53 PM UTC-4, Arlen Beiler wrote:

 Hi everyone, 
 Was working on a project and once again wished that chrome would save 
 files to disk. Well, to make a long story short, here it is. Inspired by 
 TiddlyFox, but I needed to use a Chrome Packaged App. So this will work 
 with Google Chrome, and it might also work with Chrome OS, I have no clue. 
 Regardless, here it is and feel free to email me if you have questions. It 
 is really an alpha version, so use it at your own risk.
 -Arlen


-- 
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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/cfe7194b-13a3-4ca2-b57e-a77dd0af1251%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Announcing TiddlyChrome

2015-07-17 Thread RickL
Works like a charm!!

This is a really big improvement from my point of view.  Really improves 
the usability of TiddlyWiki.  Congratulations on a great job!

On Thursday, July 16, 2015 at 4:12:46 PM UTC-4, Arlen Beiler wrote:

 Ok, in case I am not explaining it right, here is a page that explains how 
 to do it. 


 http://www.tech-recipes.com/rx/47717/chrome-apps-extensions-and-user-scripts-cannot-be-added-from-this-website/

 If that doesn't work, I'm not sure what to do, but I will probably upload 
 it to the Chrome Web Store sometime.

 -Arlen




 On Thu, Jul 16, 2015 at 3:39 PM, Rick rick...@gmail.com javascript: 
 wrote:

 Tired that - does not work.

 On Thu, Jul 16, 2015 at 7:21 AM, Arlen Beiler arle...@gmail.com 
 javascript: wrote:

 Try downloading it to your computer first and then drag it in. Let me 
 know if this works.
 -Arlen

 On Thu, Jul 16, 2015 at 7:02 AM, RickL rick...@gmail.com javascript: 
 wrote:

 This sounds like a great new tool but I can't get the installation to 
 work.  Probably something simple but need some guidance.
 When I drag the crx file to the chrome//:extensions page I get the 
 following error

 Apps, extensions and user scriptscannot be added from this website.

 I am  on a Windows PC with Chrome browser.
 Need help to install. 
 Thanks

 On Tuesday, July 14, 2015 at 10:17:18 PM UTC-4, Arlen Beiler wrote:

 Make sure you have the saver tiddler in the tiddlywiki. It won't 
 actually take effect till you save it and reopen it. Second, make sure 
 you 
 open it from the Chrome Apps list,  not just in a regular tab.
 On Jul 14, 2015 4:34 PM, Andy Pastuszak apast...@gmail.com wrote:

 This is not working for me.  When I click the save button it's 
 prompting me to download a file with a really long GUID that changes 
 each 
 time.

 Andy

 On Wednesday, July 8, 2015 at 12:57:53 PM UTC-4, Arlen Beiler wrote:

 Hi everyone, 
 Was working on a project and once again wished that chrome would 
 save files to disk. Well, to make a long story short, here it is. 
 Inspired 
 by TiddlyFox, but I needed to use a Chrome Packaged App. So this will 
 work 
 with Google Chrome, and it might also work with Chrome OS, I have no 
 clue. 
 Regardless, here it is and feel free to email me if you have questions. 
 It 
 is really an alpha version, so use it at your own risk.
 -Arlen

  -- 
 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.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/tiddlywiki/01c1a6b5-465e-43e6-a548-7032b2cddf06%40googlegroups.com
  
 https://groups.google.com/d/msgid/tiddlywiki/01c1a6b5-465e-43e6-a548-7032b2cddf06%40googlegroups.com?utm_medium=emailutm_source=footer
 .
 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 javascript:.
 To post to this group, send email to tiddl...@googlegroups.com 
 javascript:.
 Visit this group at http://groups.google.com/group/tiddlywiki.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/tiddlywiki/9e54e0fb-1163-47e1-862e-3583d7f13c52%40googlegroups.com
  
 https://groups.google.com/d/msgid/tiddlywiki/9e54e0fb-1163-47e1-862e-3583d7f13c52%40googlegroups.com?utm_medium=emailutm_source=footer
 .

 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/nKxU_ixVKTI/unsubscribe.
 To unsubscribe from this group and all its topics, send an email to 
 tiddlywiki+...@googlegroups.com javascript:.
 To post to this group, send email to tiddl...@googlegroups.com 
 javascript:.
 Visit this group at http://groups.google.com/group/tiddlywiki.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/tiddlywiki/CAJ1vdSRmn3Kh0ZHHz3ZP%3D5DZAWgFH%2BOvEBR9ciqem5Zb7h95xA%40mail.gmail.com
  
 https://groups.google.com/d/msgid/tiddlywiki/CAJ1vdSRmn3Kh0ZHHz3ZP%3D5DZAWgFH%2BOvEBR9ciqem5Zb7h95xA%40mail.gmail.com?utm_medium=emailutm_source=footer
 .

 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 javascript:.
 To post to this group, send email to tiddl...@googlegroups.com 
 javascript:.
 Visit this group at http://groups.google.com/group

Re: [tw] Re: Announcing TiddlyChrome

2015-07-16 Thread RickL
This sounds like a great new tool but I can't get the installation to work. 
 Probably something simple but need some guidance.
When I drag the crx file to the chrome//:extensions page I get the 
following error

Apps, extensions and user scriptscannot be added from this website.

I am  on a Windows PC with Chrome browser.
Need help to install. 
Thanks

On Tuesday, July 14, 2015 at 10:17:18 PM UTC-4, Arlen Beiler wrote:

 Make sure you have the saver tiddler in the tiddlywiki. It won't actually 
 take effect till you save it and reopen it. Second, make sure you open it 
 from the Chrome Apps list,  not just in a regular tab.
 On Jul 14, 2015 4:34 PM, Andy Pastuszak apast...@gmail.com 
 javascript: wrote:

 This is not working for me.  When I click the save button it's prompting 
 me to download a file with a really long GUID that changes each time.

 Andy

 On Wednesday, July 8, 2015 at 12:57:53 PM UTC-4, Arlen Beiler wrote:

 Hi everyone, 
 Was working on a project and once again wished that chrome would save 
 files to disk. Well, to make a long story short, here it is. Inspired by 
 TiddlyFox, but I needed to use a Chrome Packaged App. So this will work 
 with Google Chrome, and it might also work with Chrome OS, I have no clue. 
 Regardless, here it is and feel free to email me if you have questions. It 
 is really an alpha version, so use it at your own risk.
 -Arlen

  -- 
 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 javascript:.
 To post to this group, send email to tiddl...@googlegroups.com 
 javascript:.
 Visit this group at http://groups.google.com/group/tiddlywiki.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/tiddlywiki/01c1a6b5-465e-43e6-a548-7032b2cddf06%40googlegroups.com
  
 https://groups.google.com/d/msgid/tiddlywiki/01c1a6b5-465e-43e6-a548-7032b2cddf06%40googlegroups.com?utm_medium=emailutm_source=footer
 .
 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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/9e54e0fb-1163-47e1-862e-3583d7f13c52%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Using TW5 to store recipes?

2015-06-14 Thread RickL
I have been building something that has been quite handy to me... '

take a look here

journalexample.tiddlyspot.com

On Sunday, June 14, 2015 at 4:54:40 PM UTC-4, Andy Pastuszak wrote:

 Does anyone use TW5 to store recipes?  Are there any TW5 plugins that 
 would make this task easier?


-- 
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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/671462e7-4c94-4cfc-8d21-e07e22fa1829%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] [TW5] Importing large number of text files

2015-04-14 Thread RickL
I have now...worked like a charm...thanks...I knew it would be simple; I 
should have known that!

On Tuesday, April 14, 2015 at 12:24:34 PM UTC-4, Jon wrote:

 Have you tried using the keyboard shortcut for paste: Press Ctrl and V?
 Regards
 Jon

 On Tuesday, 14 April 2015 13:56:58 UTC+1, RickL wrote:

 Already tried that...there is no 'paste' option in the console...most 
 likely this is very simple but I don't see it

 On Mon, Apr 13, 2015 at 5:45 PM, Eric Shulman elsd...@gmail.com wrote:

 On Monday, April 13, 2015 at 1:33:26 PM UTC-7, RickL wrote:

 How does this work with Chrome?  Pardon my ignorance as I am no 
 developer, but I like the idea of changing all these tiddlers with one 
 click


 In Chrome, you can use ctrl-shift-j to quickly open the developer 
 'console'.  Then, paste in the code provided by Jeremy.  Because it uses 
 TiddlyWiki-defined core functions, it will work the same in every browser.

 enjoy,
 -e
 Eric Shulman
 TiddlyTools / ELS Design Studios

 YOUR DONATIONS ARE VERY IMPORTANT!
 HELP ME TO HELP YOU - MAKE A CONTRIBUTION TO MY TIP JAR...
http://TiddlyTools.github.com/fundraising.html#MakeADonation

 -- 
 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/7q8mYGUZ3lo/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.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/tiddlywiki/f4eaee6d-71fc-43d0-87ac-c8c82e687ff3%40googlegroups.com
  
 https://groups.google.com/d/msgid/tiddlywiki/f4eaee6d-71fc-43d0-87ac-c8c82e687ff3%40googlegroups.com?utm_medium=emailutm_source=footer
 .

 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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/c98a22c0-dd02-4d54-92eb-fa8a9003ed79%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] [TW5] Importing large number of text files

2015-04-13 Thread RickL
How does this work with Chrome?  Pardon my ignorance as I am no developer, 
but I like the idea of changing all these tiddlers with one click


On Wednesday, March 11, 2015 at 7:55:02 AM UTC-4, Jeremy Ruston wrote:

 Hi Jon

 The easiest quick and dirty solution would be to drag all the files into 
 TW in one go, and then run a little bit of JavaScript to remove the .txt 
 extension from the filename and set the type to wikitext.

 Once you've done the import, open your browsers JavaScript console and 
 paste the code given here:

 https://gist.github.com/Jermolene/1c1ff69c7afe91550057

 Best wishes

 Jeremy.



 On Wed, Mar 11, 2015 at 6:23 AM, Jon five...@gmail.com javascript: 
 wrote:

 Hi,

 I've split a word document into about 100 small text files which I want 
 to import as individual tiddlers and I'm looking for a way to do this as a 
 batch.
 Importing or dragging/dropping an individual text file creates a tiddler 
 name.txt with a Plain text file type. Removing the .txt from each 
 tiddler name and altering the file type would obviously be too laborious 
 for a large number of files. Is there an easier way to do this?

 Thanks,
 Jon.

 -- 
 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 javascript:.
 To post to this group, send email to tiddl...@googlegroups.com 
 javascript:.
 Visit this group at http://groups.google.com/group/tiddlywiki.
 For more options, visit https://groups.google.com/d/optout.




 -- 
 Jeremy Ruston
 mailto:jeremy...@gmail.com javascript:
  

-- 
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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/efc37931-4d9e-4754-ad51-855e939ab86e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Calendar plugin

2015-03-30 Thread RickL
This looks great!  I think it would work as a replacement for the calendar 
I am currently using, which requires several manual adjustments every month 
and loads of tags  (I don't know how to do macros) - 

That being said, I can't get it working. I imported the plugin and checked 
that all the tiddlers are present but need some guidance getting started. 
Here is the TW5 with the plugin 
installed http://journalexample.tiddlyspot.com/ - 

Let me know if you can help.
Thanks


On Friday, February 27, 2015 at 1:40:48 PM UTC-5, Jed Carty wrote:

 With help from Astrid and BJ I made a widget that will, given a year and 
 month, generate a calendar for that month. You can give the widget a macro 
 that will be inserted into each day of the month to make the calendar do 
 what you want it to. By default it lists tiddlers that have a field for 
 that day and clicking on a day brings you to a tiddler whose title is the 
 date you clicked on.

 Here is a link to some documentation and the plugin: 
 http://inmysocks.tiddlyspot.com/#Calendar%20Plugin

 On a slightly related note, does anyone other than me use this stuff or am 
 I just spamming the board showing off toys I made?


-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Adding a tagging list to the view template

2015-02-17 Thread RickL
The documentation is a bit on the cryptic side... that is an 
understatement...!  I like the way this plugin allows choosing tags but I 
am having no luck getting it to work...anyone know of better documentation 
or a tutorial?

On Tuesday, December 23, 2014 at 5:04:47 PM UTC-5, Stephen Kimmel wrote:

 Eucaly's popup tagger may be what you are looking for: 
 http://eucaly-tw5.tiddlyspot.com/

 You'll note that the main view of each tiddler has a bar with edit tags / 
 tag table shown. This allows you to view and change tags for each tiddler 
 while in view mode. The documentation is a bit on the cryptic side but once 
 you get the hang of it, it is preety cool.




-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Monthly View

2015-02-14 Thread RickL
Wow...that's a lot of work.  Thanks for your efforts.
Still not what I am looking for - 

See here for an example of what I am using now. 
journalexample.tiddlyspot.com
 This works,but is fiddly and there is lots to tweak every month.  
I create a tag and a tiddler for every day of the year, then create a 
monthly calendar that transcludes those tagged tiddlers.
Each activity or scheduled item is tagged with the relative date tag..
Is there a better way? Maybe notbut I will keep looking.

Thanks again

On Wednesday, February 11, 2015 at 11:49:15 PM UTC-5, Jed Carty wrote:

 Well that went a bit farther than I expected tonight.

 Rather than give a long url that has all the tiddlers open just look under 
 'Work in Progress' in the table of contents to see what is there.

 I made a simple css class to display the months in a more reasonable way 
 and added a feature that lets you see how many days each thing is listed 
 under. If there are multiples of the same thing under a day that isn't 
 counted yet because it requires some more complex stuff than the calc macro 
 can do at the moment. If I ever get the MathyThing plugin working the way I 
 want that will take care of it. Once version 5.1.8 comes out I will add the 
 ability to page through months the way I have set up in the gallery demo I 
 made.

 I still have no way to automatically generate the calendar, but I am sure 
 that someone already worked out the magic needed for that.


-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Monthly View

2015-02-11 Thread RickL
This sounds like a solution, and is a bit like something I have used before 
- although mine was much more manual.  If you have a chance to create a 
sample I would like very much to see it.

Thanks

On Monday, February 9, 2015 at 2:08:32 PM UTC-5, Jed Carty wrote:

 Ahh, yes. I didn't understand what you wanted.

 Yes, you could make something that works the way you want without too much 
 trouble. It would use a calendar layout similar to what I made to list 
 things, then you would make a tiddler called yoga, or biking or whatever, 
 then you would add a tag for each day you did that activity and in each day 
 you would list every tiddler tagged with that day.

 If you wanted to have the same activity multiple times per day than you 
 would make your tiddler and give it a field named for each day, like 
 feburary_9, and then in that field put the number of times you did that 
 activity and then in the list you could display the name followed by the 
 number of times.

 The layout would probably be a dropdown menu that lists the activity types 
 already added with an option to add a new type, you select it from the 
 dropdown menu, select the date and enter the number of times then click add 
 and it would be added to the calendar. Is that the sort of thing you want? 
 It sounds like something that I could use too so making it wouldn't be a 
 problem.

 This probably doesn't help you at the moment, I will see about putting 
 something together later today or tomorrow.


-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Monthly View

2015-02-09 Thread RickL
I don't think you understand how I want to use this.
For instance, if using to track your exercise program one may have a yoga 
session or a bike ride, etc.  This would happen many times per month, 
hopefully!
Sure, you could create a unique tiddler title for each session - but I 
think that would get quite cumbersome after a while.  
Same with a menu planner.  If you planned to prepare a specific dish and it 
was a favorite, you would likely prepare more than once per month.  Why 
would one want multiple copies of the same recipe with different titles?


On Monday, February 9, 2015 at 9:00:14 AM UTC-5, Tobias Beer wrote:

 OK...so in use I found a real drawback that this not useful - if you have 
 the same Month Entry more than one time in the same month, it deletes the 
 previous one...not very useful for a monthly journal.


 Simply add a little something at the end. If you ask me, a journal should 
 not be a tiddler that is having a certain title, but rather one that has a 
 certain tag, namely *journal*... so, to keep things unique give your 
 tiddler some form of suffix other than the date, or skip the date in the 
 title entirely.

 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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Monthly View

2015-02-09 Thread RickL
Maybe there is a way to accomplish this using tags?  Not within my ability 
here but if so, please share.

On Monday, February 9, 2015 at 9:00:14 AM UTC-5, Tobias Beer wrote:

 OK...so in use I found a real drawback that this not useful - if you have 
 the same Month Entry more than one time in the same month, it deletes the 
 previous one...not very useful for a monthly journal.


 Simply add a little something at the end. If you ask me, a journal should 
 not be a tiddler that is having a certain title, but rather one that has a 
 certain tag, namely *journal*... so, to keep things unique give your 
 tiddler some form of suffix other than the date, or skip the date in the 
 title entirely.

 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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Any Cooks here?

2015-02-08 Thread RickL
Here is something I have been using and modifying for the past few 
monthsnice for shopping list too.  Have a look 
journalexample.tiddlyspot.com



On Wednesday, January 14, 2015 at 7:12:29 AM UTC-5, AlexHough wrote:

 Dear All,

 I saw the appeal for marathoner, thought I'd see if there are any people 
 documenting their explorations into cooking.

 best wishes


 Alex


-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Monthly View

2015-02-08 Thread RickL
This example works now, crude or not.  Seems better than what I have been 
doing which is creating a new monthly tiddler monthly and linking to 
relative tiddlers.  Maybe not 'future-proof' but it works for now.  Any 
other ideas that can be used currently

On Monday, February 2, 2015 at 6:29:47 AM UTC-5, Tobias Beer wrote:

 Hi Jed,
  

 You could do something like I have shown here: Make Calendar Entry 
 @inmysocks 
 http://www.google.com/url?q=http%3A%2F%2Finmysocks.tiddlyspot.com%2F%23Make%2520Calendar%2520Entry%3A%255B%255BMake%2520Calendar%2520Entry%255D%255D%2520%255B%255B2014%2520September%255D%255D%2520something%2520%255B%255BTest%2520Calendar%2520Thing%255D%255Dsa=Dsntz=1usg=AFQjCNE-QLzIGU9G1h0u7oeb4Nnizhp7ww


 That works. However, I don't see this as a very future-proof way of doing 
 things. I would prefer we started working on implementing a 
 date-(time-)picker that sets the desired date-field accordingly... and then 
 have appropriate filters to handle the desired query, e.g 
 *[date:modified[201501]]* (all where modified is in Jan 2015)*,* 
 *[week:1:0[201501]]* (the days of a given week in a month, starting 
 sunday so as to construct that calendar.

 No custom year, month, day fields.

 the magic required to make tiddlywiki automatically do the modular 
 arithmetic required to auto-generate a calendar isn't something I want to 
 deal with at the moment

  

 It is a kinda crude way to do it, I may get around to making something 
 nicer in the future, but hopefully this helps for now.

  
 So, yes, I sure see how that is quite a challenge... and I think it's 
 entirely worthwhile. We need a core place to configure field-types and tell 
 TiddlyWiki that *journaldate* is a date field for which it is expected 
 not to use a simple input field but that date-picker in order to set it.

 Some more pondering on date filters...

 All tiddlers where the field journaldate is set to January 2015:

 $list filter=[date:journaldate[201501]]/

 A month calendar where field journaldate is set to January 2015.

 table
 tr
 $list filter=Week Mo Tue Wed Thu Fr Sa Sun
 thcurrentTiddler/th
 /$list
 /tr
 $list filter=[weeks[201501]] variable=week
 tr
 th
 week
 /th
 $list filter=[week:1:1:BLANKS[201501]] variable=weekday_date
 td
 $list filter=[dateweekday_date]/
 /td
 /$list
 /tr
 /$list

 The *weeks* filter returns all week numbers for a month.

 *[week:1:1:BLANKS[201501]] *supposedly returns a list of all days of 
 the...

- *first* week (1st suffix)
- starting *monday* (2nd suffix)
- returning *blanks* (3rd suffix)
   - for any days that are actually not part of that month (yes, 
   blanks!)
   - which you may not want in a continuous calendar showing weeks only
   - for *January 2015* (operand)

 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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Monthly View

2015-02-08 Thread RickL
OK...so in use I found a real drawback that this not useful - if you have 
the same Month Entry more than one time in the same month, it deletes the 
previous one...not very useful for a monthly journal .  
I will keep searching - thanks for you effort. 

On Sunday, February 1, 2015 at 10:32:49 PM UTC-5, Jed Carty wrote:

 You could do something like I have shown here: 
 http://inmysocks.tiddlyspot.com/#Make%20Calendar%20Entry:%5B%5BMake%20Calendar%20Entry%5D%5D%20%5B%5B2014%20September%5D%5D%20something%20%5B%5BTest%20Calendar%20Thing%5D%5D

 The calendar is populated using a macro that has the date as its input, if 
 you look at the code in the tiddler 2014 September you will see it. You 
 will have to make one for each month, the magic required to make tiddlywiki 
 automatically do the modular arithmetic required to auto-generate a 
 calendar isn't something I want to deal with at the moment. To make another 
 month clone the current month, change the fields 'month' and 'year' to 
 reflect the current month and year and then change the location of the 
 dates in the macros so that the dates are displayed on the correct days of 
 the week.

 Each day will list tiddlers that have the fields 'year', 'month' and 
 'date' that match that day, so if a tiddler has the field 'year' with the 
 value '2014', a field 'month' with 'September' and a field 'date' with '2' 
 it will be listed in the calendar under September 2nd 2014.

 It is a kinda crude way to do it, I may get around to making something 
 nicer in the future, but hopefully this helps for now.

 The tiddler 'Make Calendar Entry' is a form that you can use to make 
 calendar entries without having to worry about setting fields and stuff, 
 the tiddlers 'something' and 'Test calendar thing' are just there to show 
 it works.

 There are many things you could improve about the presentation using css, 
 but I am far too lazy to do that right now.


-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Monthly View

2015-02-07 Thread RickL


On Monday, February 2, 2015 at 6:29:47 AM UTC-5, Tobias Beer wrote:

 Hi Jed,
  

 You could do something like I have shown here: Make Calendar Entry 
 @inmysocks 
 http://www.google.com/url?q=http%3A%2F%2Finmysocks.tiddlyspot.com%2F%23Make%2520Calendar%2520Entry%3A%255B%255BMake%2520Calendar%2520Entry%255D%255D%2520%255B%255B2014%2520September%255D%255D%2520something%2520%255B%255BTest%2520Calendar%2520Thing%255D%255Dsa=Dsntz=1usg=AFQjCNE-QLzIGU9G1h0u7oeb4Nnizhp7ww


 That works. However, I don't see this as a very future-proof way of doing 
 things. I would prefer we started working on implementing a 
 date-(time-)picker that sets the desired date-field accordingly... and then 
 have appropriate filters to handle the desired query, e.g 
 *[date:modified[201501]]* (all where modified is in Jan 2015)*,* 
 *[week:1:0[201501]]* (the days of a given week in a month, starting 
 sunday so as to construct that calendar.

 No custom year, month, day fields.

 the magic required to make tiddlywiki automatically do the modular 
 arithmetic required to auto-generate a calendar isn't something I want to 
 deal with at the moment

  

 It is a kinda crude way to do it, I may get around to making something 
 nicer in the future, but hopefully this helps for now.

  
 So, yes, I sure see how that is quite a challenge... and I think it's 
 entirely worthwhile. We need a core place to configure field-types and tell 
 TiddlyWiki that *journaldate* is a date field for which it is expected 
 not to use a simple input field but that date-picker in order to set it.

 Some more pondering on date filters...

 All tiddlers where the field journaldate is set to January 2015:

 $list filter=[date:journaldate[201501]]/

 Yes, if you set the journaldate to 201501 the above filter works. 
 However, I get no useful information with the one below.  Guess I don't 
know how to implement it properly. see journalexample.tiddlyspot.com


A month calendar where field journaldate is set to January 2015.

 table
 tr
 $list filter=Week Mo Tue Wed Thu Fr Sa Sun
 thcurrentTiddler/th
 /$list
 /tr
 $list filter=[weeks[201501]] variable=week
 tr
 th
 week
 /th
 $list filter=[week:1:1:BLANKS[201501]] variable=weekday_date
 td
 $list filter=[dateweekday_date]/
 /td
 /$list
 /tr
 /$list

 The *weeks* filter returns all week numbers for a month.

 *[week:1:1:BLANKS[201501]] *supposedly returns a list of all days of 
 the...

- *first* week (1st suffix)
- starting *monday* (2nd suffix)
- returning *blanks* (3rd suffix)
   - for any days that are actually not part of that month (yes, 
   blanks!)
   - which you may not want in a continuous calendar showing weeks only
   - for *January 2015* (operand)

 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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Monthly View

2015-02-01 Thread RickL
I use TW5 to keep my journal, which contains information on exercise, food, 
reading materials, etc.
I like to have an overall view of each month to review my progress ad have 
a snapshot of the month.  I have created a monthly tiddler where I manually 
enter links to items that are relative to each day.  
Often wonder if there is an easier way to accomplish this so thought I 
would throw it out to the group.  My basic understanding of TW5 has 
progressed, but I have lots to learn.  Also I know nothing about coding or 
Java script so my ability to create something better is limited.

Anyone that has the time and inclination to take a look, see example here 
...journalexample.tiddlyspot.com

Thanks for any suggestions!
Rick

-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 Color of Field Values

2015-01-22 Thread RickL
Trying to understand the concept of 'tag tagging'

When you state ...use *A*, *B*, *C* as tags tagging to *order...*
Does that mean creating tiddlers titled A, B,and C with the tag 'order and 
creating a tiddler titled 'order' with tags A, B, and C ?

Maybe this is obvious to some...but not to me..:)

On Saturday, January 17, 2015 at 3:54:28 AM UTC-5, Tobias Beer wrote:

 Hi Rick,

 In the sense of GTD, I prefer using prefixes for any GTD related tags,
 e.g. *status* tags would be...

- #reading
- #next
- #someday
- #maybe

 ...all of which would tag themselves to *status*.
 See: http://tbgtd.tiddlyspot.com (TWc)

 Then you...

- can more easily search for them simply by typing *#*
- more easily spot them in the tag-bar
- easily filter lists by iterating over all *status*-tags 
http://tiddlywiki.com/#FilterOperator%3A%20tag or those with prefix 
http://tiddlywiki.com/#FilterOperator%3A%20prefix #

 Personally, I'd also use *A*, *B*, *C* as tags tagging to *order*, rather 
 than fields.
 That shows them at each book and you can click to get to the tiddler 
 *order*,
 which could be an index of all books by order.

 With TW5, you can also assign tag icons.

- using *$:/TagManager* which you find in the tags tab
   - you can assign something like that ✓ icon 
   http://tb5.tiddlyspot.com/#Core%20Images%20And%20Inline%20Stylesheets 
   to each status
   - that way, you quickly spot a status tag
- personally, I would use author names as tags and have them tag to 
*author*
   - so, you could do the same thing with *author*
   - I wish there was a generic person icon though, even though not 
   used by the core

 With the all new xlist http://xlist.tiddlyspot.com you can easily 
 create indexes, e.g.

- all *filter:[all[]] *by *each:order*
- All By Groups @ xlist 
   http://xlist.tiddlyspot.com/#All%20By%20Groups
   - all *filter:[genre[non-fiction]]* by 
*groups:[[status]tagging[]]*
   - (assuming you would start using tags for statuses)
   - Tagging Instead Of List Field @ xlist 
   http://xlist.tiddlyspot.com/#Tagging%20Instead%20Of%20List%20Field
- or using fields: *filter:[genre[non-fiction]]* by *each:read*
   - Match Field — Each Field Value @ xlist 
   
 http://xlist.tiddlyspot.com/#Match%20Field%20%E2%80%94%20Each%20Field%20Value

 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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 Color of Field Values

2015-01-17 Thread RickL
The new book button simply brings up a tiddler template with predefined 
tags and fields to allow easy entry of a new book to add to my reading list.
The widget you mention is one I have not explored.  There is lots to learn 
here...next I need to review TB's last response below sounds like a 
better way to do things but I have to understand first! :)

On Friday, January 16, 2015 at 9:01:53 PM UTC-5, Birthe C wrote:

 Hi RickL,
 It looks great. I wonder how you use your New Book button? If you use 
 ActionSendMessageWidget, you can set the tags and fields you would use for 
 all your books.


 Birthe


 On Saturday, January 17, 2015 at 2:30:47 AM UTC+1, RickL wrote:

 check thatI have it working now.Thanks!

 On Friday, January 16, 2015 at 8:30:05 PM UTC-5, RickL wrote:

 If you say so...but I don't seed how

 On Friday, January 16, 2015 at 8:20:11 PM UTC-5, Tobias Beer wrote:

 Seems to work fine...
 with the above example.

 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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 Color of Field Values

2015-01-17 Thread RickL
Great suggestions!  Some I almost understand, others are like a foreign 
language.  The more I learn here,the more there is to learn.  I will study 
then will have questions, so I hope you are up for it! ;)

On Friday, January 16, 2015 at 3:56:17 PM UTC-5, RickL wrote:

 I have a list of books to read. I order the books by: A - read now; B - 
 read next; C - read some day

 Each book is a tiddler, and each tiddler contains a field labeled order 
 with the value A, B, or C.

 I created a list of books in a new tiddler with the $view 
 field=order/ command to get a comprehensive reading list. This works 
 well. I can color the order with the @@color:red; @@ command so the 
 order stands out.

 My question: How can I get the order of the books to be even more evident 
 by coloring the A, B, or C differently. Red for A, Green for B, and Blue 
 for C for example.

 I think this would also be helpful in using TW as a task list.

 Hope this makes sense.


 Thanks

 Rick


-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] TW5 Color of Field Values

2015-01-16 Thread RickL


I have a list of books to read. I order the books by: A - read now; B - 
read next; C - read some day

Each book is a tiddler, and each tiddler contains a field labeled order 
with the value A, B, or C.

I created a list of books in a new tiddler with the $view 
field=order/ command to get a comprehensive reading list. This works 
well. I can color the order with the @@color:red; @@ command so the order 
stands out.

My question: How can I get the order of the books to be even more evident 
by coloring the A, B, or C differently. Red for A, Green for B, and Blue 
for C for example.

I think this would also be helpful in using TW as a task list.

Hope this makes sense.


Thanks

Rick

-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 Color of Field Values

2015-01-16 Thread RickL
Try this example ... journalexample.tiddlyspot.com


On Friday, January 16, 2015 at 5:31:40 PM UTC-5, Tobias Beer wrote:

 Hi Rick,

 Looking at a live example would make it easier to post a solution.

 On way may be to use is the RevealWidget 
 http://tiddlywiki.com/#RevealWidget...

 $reveal type=match text={{!!order}} default=A
 @@color:red;{{!!order}}@@
 /$reveal
 $reveal type=match text={{!!order}} default=B
 @@color:purple;{{!!order}}@@
 /$reveal
 $reveal type=match text={{!!order}} default=C
 @@color:grey;{{!!order}}@@
 /$reveal

 I'd rather like to lookup the color from some configuration tiddler...

 title: $:/config/colors/order

 A:red
 B:purple
 C:grey

 But so far I failed to construct working output.

 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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 Color of Field Values

2015-01-16 Thread RickL
If you say so...but I don't seed how

On Friday, January 16, 2015 at 8:20:11 PM UTC-5, Tobias Beer wrote:

 Seems to work fine...
 with the above example.

 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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 Color of Field Values

2015-01-16 Thread RickL
check thatI have it working now.Thanks!

On Friday, January 16, 2015 at 8:30:05 PM UTC-5, RickL wrote:

 If you say so...but I don't seed how

 On Friday, January 16, 2015 at 8:20:11 PM UTC-5, Tobias Beer wrote:

 Seems to work fine...
 with the above example.

 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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5: Slider/drop down list in filter

2015-01-14 Thread RickL
Stephan,
Thank you so much for your work and specific directions.  This works very 
well and makes my daily journal much more automated and useful!

Rick

On Tuesday, January 6, 2015 at 5:04:21 PM UTC-5, Stephan Hradek wrote:

 Okay…

 Here is a first shot at it:


1. Create one tiddler for each meditation (5 mins; 10 mins; 15 
mins; 30 mins) and tag it as mediation
2. Create a tiddler meditation, tag it as meditation, add a field 
default and put the meditation-default value as its value.
3. Create a tiddler 
$:/config/EditTemplateFields/Visibility/meditation and give it the 
content hide
4. Create one tiddler for each excercise (cycling; running; 
yoga; boot camp) and tag it exercise
5. Create a tiddler exercise, tag it as exercise, add a field 
default and put the exercise-default value as its value.
6. Create a tiddler $:/config/EditTemplateFields/Visibility/exercise 
and give it the content hide
7. Create a tiddler DropdownFields, tag it as $:/tags/EditTemplate, 
add a field dropdownfields and give it the value excercise 
meditation. Copy the below content into the tiddler:

 $list filter=[titlecurrentTiddlertag[Journal]]
 div class=tc-edit-fields
 table class=tc-edit-fields
 tbody
 $list filter=[list[DropdownFields!!dropdownfields]] 
 variable=currentField
 tr class=tc-edit-field
 td class=tc-edit-field-name
 $text text=currentField/:/td
 td class=tc-edit-field-value
 $select field=currentField
 $list filter=[titlecurrentFieldhas[default]get[default]] 
 variable=defaultValue
 option value=defaultValue$text text=defaultValue//option
 /$list
 $list filter=[tagcurrentFieldsort[]] variable=currentValue
 option value=currentValue$text text=currentValue//option
 /$list
 /$select
 /td
 td class=tc-edit-field-remove
 $button class=tc-btn-invisible 
 tooltip={{$:/language/EditTemplate/Field/Remove/Hint}} 
 aria-label={{$:/language/EditTemplate/Field/Remove/Caption}}
 $action-deletefield $field=currentField/
 {{$:/core/images/delete-button}}
 /$button
 /td
 /tr
 /$list
 /tbody
 /table
 /div
 /$list

 Now every tiddler tagged Journal should have your dropdowns.





-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5: Slider/drop down list in filter

2015-01-08 Thread RickL
Thanks for you work...looks like exactly what I need...but will not work 
when  I import the tiddlers...I will have to study this some more


On Tuesday, January 6, 2015 at 9:33:10 PM UTC-5, c pa wrote:

 Hi Rick,

 I've created an example of what I think you want at 
 http://cpashow.tiddlyspot.com/
 I created view and edit templates that add the drop-downs to the page so 
 you can set values based on a filter look up of tiddlers

 It's set so that any tiddler tagged daily will display the drop-downs. 


-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5: Slider/drop down list in filter

2015-01-07 Thread RickL
Thanks to all for the great responses.

I have a very busy week so will not be able to try them out until the 
weekend.  I look forward to making this work, and the learning experience 
that will go with it!

R

On Sunday, January 4, 2015 7:26:12 PM UTC-5, RickL wrote:

 I currently use TW 5 as a journal, in which I track exercise, diet, etc. I 
 have filters set up in a tiddler which I complete daily for my journal.  

 My question: Is it possible to have a drop down list, or slider, that is 
 part of a filter in a tiddler?  That would certainly make it easier to 
 complete the daily data entry.

 Thanks.



-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5: Slider/drop down list in filter

2015-01-06 Thread RickL
My answer would be number 3, though the name could remain static.  Having 
the option to choose the name would be good but not necessary.

I have done a very good job of explaining my wishes here so I created an 
example at journalexample.tiddlyspot.com.

See the field names in the New Journal tiddler.
I want to be able to choose from a list of tiddlers when completing the 
value of each field
for instance - exercise could be:  cycling; running; yoga; or boot camp; 
 ...
meditation could be: 5 mins; 10 mins; 15 mins; 30 mins; 

I hope this is clear.



On Tuesday, January 6, 2015 6:59:15 AM UTC-5, Mat wrote:

 @RickL please answer the following:

 A field has the form [name]:[value]. It seems you want a to use a dropdown 
 list like what we have for e.g tags. Do you want:

1. a dropdown list for [name], (and levaing [value] empty for manual 
fill in
2. a dropdown for [value], leaving [name] empty for manual fill in 
3. one list for [name] and another, independent, list for [value]
4. one list where selecting [name] automatically also sets [value]
5. one list where selecting [value] automatically also sets [name]
6. two dropdown lists where selecting [name] automatically also sets 
[value] from the other list
7. two dropdown lists where selecting [value] automatically also sets 
[name] from the other 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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5: Slider/drop down list in filter

2015-01-05 Thread RickL
Yes...I want to see a list of tiddlers when I click on a field in the new 
journal tiddler

On Monday, January 5, 2015 7:17:09 PM UTC-5, Tobias Beer wrote:

 Hi Rick,

 Another question is:

 Do you want to see those options only when you create a new journal 
 tiddler from your template or always.

 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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5: Slider/drop down list in filter

2015-01-05 Thread RickL
OK.
I do a daily journal entry from the New Journal tab, for which I have a 
template that contains 4 fields.
Each day when creating the new journal entry, I must make entries into the 
fields. 
Is there a way to have a selection box, drop-down box, slider - call it 
what you will - that will contain a pre-selected group of tiddlers to 
choose from for each field?

Thanks for your help.
Rick

On Monday, January 5, 2015 12:03:17 PM UTC-5, Tobias Beer wrote:

 Try to describe what you want to achieve as precisely as possible. What 
 does it mean a slider as part of a field?

 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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] TW5: Slider/drop down list in filter

2015-01-04 Thread RickL
I currently use TW 5 as a journal, in which I track exercise, diet, etc. I 
have filters set up in a tiddler which I complete daily for my journal.  

My question: Is it possible to have a drop down list, or slider, that is 
part of a filter in a tiddler?  That would certainly make it easier to 
complete the daily data entry.

Thanks.

-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5: Slider/drop down list in filter

2015-01-04 Thread RickL
Sorry, the word filter should be field ! Don't know what I was thinking...

On Sunday, January 4, 2015 7:26:12 PM UTC-5, RickL wrote:

 I currently use TW 5 as a journal, in which I track exercise, diet, etc. I 
 have filters set up in a tiddler which I complete daily for my journal.  

 My question: Is it possible to have a drop down list, or slider, that is 
 part of a filter in a tiddler?  That would certainly make it easier to 
 complete the daily data entry.

 Thanks.



-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 help for training schedule

2014-11-29 Thread RickL
OK...I tried adding a field to the $:/core/ui/Buttons/new-journal tiddler 
but that doesn't work.  Can you explain how to do this?
Thanks

On Friday, November 28, 2014 6:54:17 PM UTC-5, Birthe C wrote:

 Hi RickL
 I think it is all set from the button $:/core/ui/Buttons/new-journal. The 
 action widges can really do a lot.


 Birthe


 On Saturday, November 29, 2014 12:17:43 AM UTC+1, RickL wrote:

 Thanks Tobias - that works.
 Can you tell me how to add fields to the NewJournal template?  I have 
 searched but can't find the right tiddler.


 On Friday, November 28, 2014 11:00:59 AM UTC-5, Tobias Beer wrote:

 Hey RickL,

 I think I'd rather vouch for...

- transclude the tiddler for each day into your schedule
- use a table for the courses, one each day
- not put the times in the actual course tiddlers

 *Presentation Schedule*
 !!!Monday
 !!!Tuesday
 !!!Wednesday
 !!!Thursday
 {{2014-11-27}}
 !!!Friday

 I used headings here, because definition terms are semantically not 
 quite correct without providing an actual definition.

 *2014-11-27*
 |!From |!To |!Course |!Trainer |
 |8:00 am |9:00 am |[[Orientation]] |[[John]] |
 |10:00 am |12:00 noon |[[Safety]] |[[Jack]] |
 |1:00 pm |3:00 pm |[[Benefits]] |[[Janice]] |

 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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 help for training schedule

2014-11-28 Thread RickL
Thanks Tobias - that works.
Can you tell me how to add fields to the NewJournal template?  I have 
searched but can't find the right tiddler.


On Friday, November 28, 2014 11:00:59 AM UTC-5, Tobias Beer wrote:

 Hey RickL,

 I think I'd rather vouch for...

- transclude the tiddler for each day into your schedule
- use a table for the courses, one each day
- not put the times in the actual course tiddlers

 *Presentation Schedule*
 !!!Monday
 !!!Tuesday
 !!!Wednesday
 !!!Thursday
 {{2014-11-27}}
 !!!Friday

 I used headings here, because definition terms are semantically not quite 
 correct without providing an actual definition.

 *2014-11-27*
 |!From |!To |!Course |!Trainer |
 |8:00 am |9:00 am |[[Orientation]] |[[John]] |
 |10:00 am |12:00 noon |[[Safety]] |[[Jack]] |
 |1:00 pm |3:00 pm |[[Benefits]] |[[Janice]] |

 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+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 help for training schedule

2014-11-28 Thread RickL
Thanks BJ. I actually have downloaded and played around with your 
plugin...I would welcome your tips on adding fields as I think that would 
work well with my plan here.

On Friday, November 28, 2014 7:14:36 PM UTC-5, BJ wrote:

 Hi RickL,
 you might want to look at the  ExtendableCalendar 
 http://bjtools.tiddlyspot.com/#ExtendableCalendar plugin for creating 
 journal entries into the future. If you want to use this plugin I can tell 
 you how to add fields with it.

 Cheers

 BJ

 On Thursday, November 27, 2014 8:43:05 AM UTC-6, RickL wrote:

 Love learning about TW and finding more and better uses for it.

 I want to create a training schedule with rotating programs and 
 presenters, and have started a TW for this.  

 See example here :  http://rclpresentschedule.tiddlyspot.com/

 Would appreciate any input on better ways to do this.  For example, can I 
 have a drop down list in the fields?  Also, currently the dates in the 
 Presentation Schedule must be changed manually every week.  Any way 
 around that, say by tying to a calendar?


 Thanks for any suggestions



-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] TW5 help for training schedule

2014-11-27 Thread RickL
Love learning about TW and finding more and better uses for it.

I want to create a training schedule with rotating programs and presenters, 
and have started a TW for this.  

See example here :  http://rclpresentschedule.tiddlyspot.com/

Would appreciate any input on better ways to do this.  For example, can I 
have a drop down list in the fields?  Also, currently the dates in the 
Presentation Schedule must be changed manually every week.  Any way 
around that, say by tying to a calendar?


Thanks for any suggestions

-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Extendable calendar

2014-10-29 Thread RickL
I use a different date format for new tiddlers than the DDth MMM  that 
seems to be standard in the macro so this doesn't work for me. If I install 
in a new empty TW it works.
Can I change the date format so it will work with the format in my calendar 
TW? - I like the year first for sorting purposes so use YY0MM0DD, DDD 
hh12:0mm pm.

Thanks



On Tuesday, October 28, 2014 2:30:53 PM UTC-4, BJ wrote:


 There is a new version at http://bjtools.tiddlyspot.com to work with 
 5.1.3 and above. I have also added support for journal tiddlers.

 Cheers

 BJ

 On Monday, October 27, 2014 5:07:38 PM UTC, RickL wrote:

 Any news on the updated macro? I use this calendar daily!
 Thanks.

 On Thursday, October 23, 2014 2:36:22 PM UTC-4, BJ wrote:

 Hi Rick,
 the implementation of dates as changed inside tiddlywiki (probably to 
 support different languages) - I will update the macro. I will post a 
 message here when It is available (should be either tonight or tomorrow).

 cheers

 BJ

 On Thursday, October 23, 2014 6:34:58 PM UTC+1, RickL wrote:

 I have been using the Extendable Calendar plugin from buggyj, but when 
 I try to upgrade the TW it breaks the macro

 This is TW5 using the plugin from bjtools.tiddlyspot.com

 Any help is appreciated.

 Thanks
 Rick



-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Extendable calendar

2014-10-27 Thread RickL
Any news on the updated macro? I use this calendar daily!
Thanks.

On Thursday, October 23, 2014 2:36:22 PM UTC-4, BJ wrote:

 Hi Rick,
 the implementation of dates as changed inside tiddlywiki (probably to 
 support different languages) - I will update the macro. I will post a 
 message here when It is available (should be either tonight or tomorrow).

 cheers

 BJ

 On Thursday, October 23, 2014 6:34:58 PM UTC+1, RickL wrote:

 I have been using the Extendable Calendar plugin from buggyj, but when I 
 try to upgrade the TW it breaks the macro

 This is TW5 using the plugin from bjtools.tiddlyspot.com

 Any help is appreciated.

 Thanks
 Rick



-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Extendable calendar

2014-10-23 Thread RickL
I have been using the Extendable Calendar plugin from buggyj, but when I 
try to upgrade the TW it breaks the macro

This is TW5 using the plugin from bjtools.tiddlyspot.com

Any help is appreciated.

Thanks
Rick

-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: NewHere button issues

2014-10-02 Thread RickL
Thanks for your response.

I edited the shadow tiddler $:/plugins/skeeve/newtiddler.js and changed all 
tw- prefixes to tm- but I still have the same problem.
The button still creates the tiddler but does not open it.  

Other suggestions?



On Thursday, October 2, 2014 8:45:10 AM UTC-4, Evolena wrote:

 Where did you get it ? I think it uses the newtiddler plugin originally 
 writen by Stephan Hradek.

 However, I suspect it may not be up-to-date with the current TW5 version, 
 especially the changes made in TW5.0.16: 

 Changed 
 https://github.com/Jermolene/TiddlyWiki5/commit/2f69ea362cd673f59b9fadbe11f1f95549a59813
  
 all message prefixes from tw- to tm- (eg tw-close-tiddler has become 
 tm-close-tiddler)

  

 Le mercredi 1 octobre 2014 19:36:10 UTC+2, RickL a écrit :

 I have added the 'newhere' button developed by Dave Gifford, but have 
 some issues.

 The button works, but the new tiddler does not open.  I can find it by 
 searching so I know it's there - I can open, edit, etc.

 Something I am missing that will open the tiddler in edit mode when it is 
 created with the 'newhere' button?

 Thanks
 rick



-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] NewHere button issues

2014-10-01 Thread RickL
I have added the 'newhere' button developed by Dave Gifford, but have some 
issues.

The button works, but the new tiddler does not open.  I can find it by 
searching so I know it's there - I can open, edit, etc.

Something I am missing that will open the tiddler in edit mode when it is 
created with the 'newhere' button?

Thanks
rick

-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Organize dated tiddlers on a calendar

2014-09-18 Thread RickL
I have a list of journal entries of which the tiddler title is the date and 
time of creation. 

Is it possible to create a macro that would place these entries on a 
calendar tiddler, by date? This is way over my head but thought I would ask.

Let me know if the question makes sense.

-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: NoteStormTW official home

2014-09-17 Thread RickL
Dave,
I see so many possibilities where this could be used!
One question - how can the sort order of the tiddler titles shown in 
'Contents' be changed?  Seems to sort chronologically by created date. Cold 
that be changed to sort alphabetically by title? That would be helpful if 
using this as a client list, or any list where tiddler titles were more 
relevant than creation date.

Thanks 
Rick

On Wednesday, September 17, 2014 7:23:03 AM UTC-4, David Gifford wrote:

 Not a clue. Good question for a new thread.

 On Wed, Sep 17, 2014 at 1:22 AM, Shash skmur...@gmail.com javascript: 
 wrote:

 Hi Dave,

 Worked like a charm. One question however. Instead of transcluding the 
 entire tiddler, is there anyway to transclude only 4-5 lines. 

 Regards
 Shash

 On Wednesday, September 17, 2014 1:06:32 AM UTC+5:30, David Gifford wrote:

 Hi Shash

 I use a list filter in $:/_aa/ViewTemplate/NoteList which is tagged with 
 $:/tags/ViewTemplate so it will be appended to each the tiddler.

 That way the tiddlers tagged with a tiddler's title and also tagged 
 $:/Note appear in the notelist section at the bottom of the tiddler.

 Each note is wrapped with textboxwhite CSS which is in my Stylesheet 
 tiddler.

 Hope that explanation helps.

 Dave

 On Tuesday, September 16, 2014 2:29:21 PM UTC-5, Shash wrote:

 Hi Dave,

 Really fantastic. I really liked the concept of this.

 I would like to understand a few tricks though. I really liked having 
 all the tiddlers listed in for a particular tag in the same tiddler. I was 
 looking for this a long time. Can you please help me on this. Thanks!

 Shash


 On Tuesday, September 16, 2014 11:17:04 PM UTC+5:30, RickL wrote:

 I like it!
 Lots of potential for multiple uses...

 On Friday, September 12, 2014 3:37:09 PM UTC-4, David Gifford wrote:

 NoteStormTW is now upgraded to 5.0.17. It should be good to use. 
 Blessings!

 Dave

 On Friday, September 12, 2014 11:33:51 AM UTC-5, David Gifford wrote:

 Hello everyone,

 http://notestorm.giffmex.org/ is now the official home for 
 NoteStormTW. There is also a link there to an example file. I spent 
 hours 
 trying in vain to do an adequate tutorial video. I have discovered that 
 is 
 not one of my strengths. :-) So just play with NoteStormTW. I would 
 love 
 your feedback here.

 Once TW 5.0.17 is released, I will upgrade the file, since there 
 will be a breaking change (the StyleSheet tag). After that, NoteStormTW 
 should be good to go.

 Eventually I hope that NoteStormTW will become an official edition 
 for TiddlyWiki, also available via GitHub. For now it is an 'unofficial 
 user adaptation.'

 Blessings,

 Dave

  -- 
 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/EY74vuE6hK8/unsubscribe.
 To unsubscribe from this group and all its topics, send an email to 
 tiddlywiki+...@googlegroups.com javascript:.
 To post to this group, send email to tiddl...@googlegroups.com 
 javascript:.
 Visit this group at http://groups.google.com/group/tiddlywiki.
 For more options, visit https://groups.google.com/d/optout.




 -- 
 David Gifford
 Christian Reformed World Missions, Mexico City
  

-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Auto dial

2014-09-16 Thread RickL
I have created a Contact Manager using TW5 that works great for managing 
contacts, and tracking messages, etc.

Using the prefix 'mailto:' followed by a valid email address creates a live 
link allowing one to click on the link and open an email with the address 
entered and ready to compose.

Is there anything similar that will work with a phone number in TW5?  With 
my Android phone this works with numerous other apps - 

Thanks

-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: NoteStormTW official home

2014-09-16 Thread RickL
I like it!
Lots of potential for multiple uses...

On Friday, September 12, 2014 3:37:09 PM UTC-4, David Gifford wrote:

 NoteStormTW is now upgraded to 5.0.17. It should be good to use. Blessings!

 Dave

 On Friday, September 12, 2014 11:33:51 AM UTC-5, David Gifford wrote:

 Hello everyone,

 http://notestorm.giffmex.org/ is now the official home for NoteStormTW. 
 There is also a link there to an example file. I spent hours trying in vain 
 to do an adequate tutorial video. I have discovered that is not one of my 
 strengths. :-) So just play with NoteStormTW. I would love your feedback 
 here.

 Once TW 5.0.17 is released, I will upgrade the file, since there will be 
 a breaking change (the StyleSheet tag). After that, NoteStormTW should be 
 good to go.

 Eventually I hope that NoteStormTW will become an official edition for 
 TiddlyWiki, also available via GitHub. For now it is an 'unofficial user 
 adaptation.'

 Blessings,

 Dave



-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Auto dial

2014-09-16 Thread RickL
Works great!  Thanks so much...

On Tuesday, September 16, 2014 2:41:56 PM UTC-4, Jeremy Ruston wrote:

 Hi RickL

 The iPhone uses tel: for diallable phone numbers. Here's the 
 documentation:


 https://developer.apple.com/library/ios/featuredarticles/iPhoneURLScheme_Reference/PhoneLinks/PhoneLinks.html

 I've not tried it, but it seems that Android uses the same standard:

 https://developer.android.com/guide/components/intents-common.html#Phone

 So, you should be able to create a phone number link with:

 [ext[tel:+123]]

 or

 [ext[tel:+123|call 123 as a phone number]]

 Best wishes

 Jeremy

 On Tue, Sep 16, 2014 at 5:01 PM, Stephan Hradek stephan...@gmail.com 
 javascript: wrote:

 You have to check the protocol name the phone expects. For Lync for 
 example, I did this by using sip: if I remember correctly.

 -- 
 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 javascript:.
 To post to this group, send email to tiddl...@googlegroups.com 
 javascript:.
 Visit this group at http://groups.google.com/group/tiddlywiki.
 For more options, visit https://groups.google.com/d/optout.




 -- 
 Jeremy Ruston
 mailto:jeremy...@gmail.com javascript:
  

-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Contact Manager

2014-09-12 Thread RickL
Ton,
Just an FYI.
I started with a new empty tiddler of 5.0.17, loaded all the journal 
tiddlers for new journal button etc.
I made all my changes and checked along the way.
Everything works now with the formats I wanted.  Not sure what the issue 
was but it seems OK now.

Thanks again for all your help


On Thursday, September 11, 2014 7:29:28 PM UTC-4, RickL wrote:



 On Thursday, September 11, 2014 7:25:18 PM UTC-4, RickL wrote:

 Thanks for taking a look.
 You are right - the two tiddlers are not identical; at least the text 
 saves in one. A PITA to have to delete one every time.

 Any other suggestions out there?

 Thanks

 On Thursday, September 11, 2014 3:23:41 PM UTC-4, Ton Gerner wrote:

 Hi RickL,

 I tried at http://contactmanager.tiddlyspot.com/

 1) Open $:/_journal-button
 2) Click  at New journal button
 3) Get a draft tiddler, something like '2014-09-11 19:05:39
 4) Enter some text and save

 Get only 1 tiddler.


 1) Click at Notes in BigBoss, BigBossNotes opens
 2) Click at New journal button
 3) Get a draft tiddler, something like '140911 Thursday, 6:29 pm '
 4) Enter some text and save

 Get 2 tiddlers:
 1) '140911 Thursday, 6:29 pm' tagged with bigbossnotes and the entered 
 text
 2) '140911 Thursday, 6:29 pm' tagged with bigbossnotes and WITHOUT the 
 entered text
 The 2 tiddlers are not identical!

 If I change dateTime format:  YY0MM0DD DDD, hh12:0mm pm  to 
 dateTime I get only 1 tiddler.
 If I change dateTime format:  YY0MM0DD DDD, hh12:0mm pm  to 
 dateTime -0MM-0DD 0hh:0mm:0ss I get only 1 tiddler.


 I tried changing the dateTime format as suggested above and I'm still 
 getting two tiddlers!


 If I use dateTime format:  YY0MM0DD DDD, hh12:0mm pm  in 
 $:/_journal-button I get only 1 tiddler.

 Up till now I did not find an explanation nor solution. Maybe others can 
 help

 Cheers,

 Ton


 On Thursday, September 11, 2014 6:00:06 PM UTC+2, RickL wrote:

 The new tiddler button works well, but for some reason it is creating 
 two new identical tiddlers.  If I enter text in one it saves both!

 On Thursday, September 11, 2014 3:29:31 AM UTC-4, Ton Gerner wrote:

 Hi RickL,

 First of all, the link works.

 Your 'New Journal' in [[journalButton]] does not work. That's because 
 Stephan Hadrek's stuff needs to be updated (see Release 5.0.16-beta at 
 http://tiddlywiki.com/ , especially the class prefixes).

 You could do all changes by hand or get the modified version from [1] 
 (see the 'New journal tiddler' button in the toolbar on top works as you 
 want).
 Under 'Which tiddlers are needed?' you find all tiddlers needed for 
 the 'New journal tiddler button'.

 Hope that helps,

 Cheers,

 Ton

 [1] http://tw5toolbar.tiddlyspot.com/


 On Wednesday, September 10, 2014 9:55:51 PM UTC+2, RickL wrote:

 One of the things I like most about TW is the ability to maintain 
 plain text formatting, or very close.

 I have created a Contact Manager in TW5 that I want to use also as a 
 journal for each contact. With this setup I can past all my contacts 
 into 
 TW with little or no changes.

 Each contact is a tiddler with a link to a journal for that specific 
 contact.
 My goal is to have a button on each contact journal that will create 
 a new Journal Entry with the date and time as the title, tagged with the 
 contact name.

 I am still new to this so will need some help here.
 Next step is to get the date and time as the tiddler title from the 
 button. Not having much luck so hope someone can take a look and give 
 some 
 pointers.


 http://contactmanager.tiddlyspot.com/

 Please let me know if the above link works!


 Thanks



-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Contact Manager

2014-09-11 Thread RickL
Thanks Ton!
This is a great help.

I now have a basic contact manager to which I can paste all my plain text 
contacts!
I am going to continue making tweaks and improvements as time permits.



On Thursday, September 11, 2014 3:29:31 AM UTC-4, Ton Gerner wrote:

 Hi RickL,

 First of all, the link works.

 Your 'New Journal' in [[journalButton]] does not work. That's because 
 Stephan Hadrek's stuff needs to be updated (see Release 5.0.16-beta at 
 http://tiddlywiki.com/ , especially the class prefixes).

 You could do all changes by hand or get the modified version from [1] (see 
 the 'New journal tiddler' button in the toolbar on top works as you want).
 Under 'Which tiddlers are needed?' you find all tiddlers needed for the 
 'New journal tiddler button'.

 Hope that helps,

 Cheers,

 Ton

 [1] http://tw5toolbar.tiddlyspot.com/


 On Wednesday, September 10, 2014 9:55:51 PM UTC+2, RickL wrote:

 One of the things I like most about TW is the ability to maintain plain 
 text formatting, or very close.

 I have created a Contact Manager in TW5 that I want to use also as a 
 journal for each contact. With this setup I can past all my contacts into 
 TW with little or no changes.

 Each contact is a tiddler with a link to a journal for that specific 
 contact.
 My goal is to have a button on each contact journal that will create a 
 new Journal Entry with the date and time as the title, tagged with the 
 contact name.

 I am still new to this so will need some help here.
 Next step is to get the date and time as the tiddler title from the 
 button. Not having much luck so hope someone can take a look and give some 
 pointers.


 http://contactmanager.tiddlyspot.com/

 Please let me know if the above link works!


 Thanks



-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Contact Manager

2014-09-11 Thread RickL
The new tiddler button works well, but for some reason it is creating two 
new identical tiddlers.  If I enter text in one it saves both!

On Thursday, September 11, 2014 3:29:31 AM UTC-4, Ton Gerner wrote:

 Hi RickL,

 First of all, the link works.

 Your 'New Journal' in [[journalButton]] does not work. That's because 
 Stephan Hadrek's stuff needs to be updated (see Release 5.0.16-beta at 
 http://tiddlywiki.com/ , especially the class prefixes).

 You could do all changes by hand or get the modified version from [1] (see 
 the 'New journal tiddler' button in the toolbar on top works as you want).
 Under 'Which tiddlers are needed?' you find all tiddlers needed for the 
 'New journal tiddler button'.

 Hope that helps,

 Cheers,

 Ton

 [1] http://tw5toolbar.tiddlyspot.com/


 On Wednesday, September 10, 2014 9:55:51 PM UTC+2, RickL wrote:

 One of the things I like most about TW is the ability to maintain plain 
 text formatting, or very close.

 I have created a Contact Manager in TW5 that I want to use also as a 
 journal for each contact. With this setup I can past all my contacts into 
 TW with little or no changes.

 Each contact is a tiddler with a link to a journal for that specific 
 contact.
 My goal is to have a button on each contact journal that will create a 
 new Journal Entry with the date and time as the title, tagged with the 
 contact name.

 I am still new to this so will need some help here.
 Next step is to get the date and time as the tiddler title from the 
 button. Not having much luck so hope someone can take a look and give some 
 pointers.


 http://contactmanager.tiddlyspot.com/

 Please let me know if the above link works!


 Thanks



-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Contact Manager

2014-09-11 Thread RickL
Thanks for taking a look.
You are right - the two tiddlers are not identical; at least the text saves 
in one. A PITA to have to delete one every time.

Any other suggestions out there?

Thanks

On Thursday, September 11, 2014 3:23:41 PM UTC-4, Ton Gerner wrote:

 Hi RickL,

 I tried at http://contactmanager.tiddlyspot.com/

 1) Open $:/_journal-button
 2) Click  at New journal button
 3) Get a draft tiddler, something like '2014-09-11 19:05:39
 4) Enter some text and save

 Get only 1 tiddler.


 1) Click at Notes in BigBoss, BigBossNotes opens
 2) Click at New journal button
 3) Get a draft tiddler, something like '140911 Thursday, 6:29 pm '
 4) Enter some text and save

 Get 2 tiddlers:
 1) '140911 Thursday, 6:29 pm' tagged with bigbossnotes and the entered text
 2) '140911 Thursday, 6:29 pm' tagged with bigbossnotes and WITHOUT the 
 entered text
 The 2 tiddlers are not identical!

 If I change dateTime format:  YY0MM0DD DDD, hh12:0mm pm  to 
 dateTime I get only 1 tiddler.
 If I change dateTime format:  YY0MM0DD DDD, hh12:0mm pm  to 
 dateTime -0MM-0DD 0hh:0mm:0ss I get only 1 tiddler.

 If I use dateTime format:  YY0MM0DD DDD, hh12:0mm pm  in 
 $:/_journal-button I get only 1 tiddler.

 Up till now I did not find an explanation nor solution. Maybe others can 
 help

 Cheers,

 Ton


 On Thursday, September 11, 2014 6:00:06 PM UTC+2, RickL wrote:

 The new tiddler button works well, but for some reason it is creating two 
 new identical tiddlers.  If I enter text in one it saves both!

 On Thursday, September 11, 2014 3:29:31 AM UTC-4, Ton Gerner wrote:

 Hi RickL,

 First of all, the link works.

 Your 'New Journal' in [[journalButton]] does not work. That's because 
 Stephan Hadrek's stuff needs to be updated (see Release 5.0.16-beta at 
 http://tiddlywiki.com/ , especially the class prefixes).

 You could do all changes by hand or get the modified version from [1] 
 (see the 'New journal tiddler' button in the toolbar on top works as you 
 want).
 Under 'Which tiddlers are needed?' you find all tiddlers needed for the 
 'New journal tiddler button'.

 Hope that helps,

 Cheers,

 Ton

 [1] http://tw5toolbar.tiddlyspot.com/


 On Wednesday, September 10, 2014 9:55:51 PM UTC+2, RickL wrote:

 One of the things I like most about TW is the ability to maintain plain 
 text formatting, or very close.

 I have created a Contact Manager in TW5 that I want to use also as a 
 journal for each contact. With this setup I can past all my contacts into 
 TW with little or no changes.

 Each contact is a tiddler with a link to a journal for that specific 
 contact.
 My goal is to have a button on each contact journal that will create a 
 new Journal Entry with the date and time as the title, tagged with the 
 contact name.

 I am still new to this so will need some help here.
 Next step is to get the date and time as the tiddler title from the 
 button. Not having much luck so hope someone can take a look and give some 
 pointers.


 http://contactmanager.tiddlyspot.com/

 Please let me know if the above link works!


 Thanks



-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Contact Manager

2014-09-11 Thread RickL


On Thursday, September 11, 2014 7:25:18 PM UTC-4, RickL wrote:

 Thanks for taking a look.
 You are right - the two tiddlers are not identical; at least the text 
 saves in one. A PITA to have to delete one every time.

 Any other suggestions out there?

 Thanks

 On Thursday, September 11, 2014 3:23:41 PM UTC-4, Ton Gerner wrote:

 Hi RickL,

 I tried at http://contactmanager.tiddlyspot.com/

 1) Open $:/_journal-button
 2) Click  at New journal button
 3) Get a draft tiddler, something like '2014-09-11 19:05:39
 4) Enter some text and save

 Get only 1 tiddler.


 1) Click at Notes in BigBoss, BigBossNotes opens
 2) Click at New journal button
 3) Get a draft tiddler, something like '140911 Thursday, 6:29 pm '
 4) Enter some text and save

 Get 2 tiddlers:
 1) '140911 Thursday, 6:29 pm' tagged with bigbossnotes and the entered 
 text
 2) '140911 Thursday, 6:29 pm' tagged with bigbossnotes and WITHOUT the 
 entered text
 The 2 tiddlers are not identical!

 If I change dateTime format:  YY0MM0DD DDD, hh12:0mm pm  to 
 dateTime I get only 1 tiddler.
 If I change dateTime format:  YY0MM0DD DDD, hh12:0mm pm  to 
 dateTime -0MM-0DD 0hh:0mm:0ss I get only 1 tiddler.


I tried changing the dateTime format as suggested above and I'm still 
getting two tiddlers!


 If I use dateTime format:  YY0MM0DD DDD, hh12:0mm pm  in 
 $:/_journal-button I get only 1 tiddler.

 Up till now I did not find an explanation nor solution. Maybe others can 
 help

 Cheers,

 Ton


 On Thursday, September 11, 2014 6:00:06 PM UTC+2, RickL wrote:

 The new tiddler button works well, but for some reason it is creating 
 two new identical tiddlers.  If I enter text in one it saves both!

 On Thursday, September 11, 2014 3:29:31 AM UTC-4, Ton Gerner wrote:

 Hi RickL,

 First of all, the link works.

 Your 'New Journal' in [[journalButton]] does not work. That's because 
 Stephan Hadrek's stuff needs to be updated (see Release 5.0.16-beta at 
 http://tiddlywiki.com/ , especially the class prefixes).

 You could do all changes by hand or get the modified version from [1] 
 (see the 'New journal tiddler' button in the toolbar on top works as you 
 want).
 Under 'Which tiddlers are needed?' you find all tiddlers needed for the 
 'New journal tiddler button'.

 Hope that helps,

 Cheers,

 Ton

 [1] http://tw5toolbar.tiddlyspot.com/


 On Wednesday, September 10, 2014 9:55:51 PM UTC+2, RickL wrote:

 One of the things I like most about TW is the ability to maintain 
 plain text formatting, or very close.

 I have created a Contact Manager in TW5 that I want to use also as a 
 journal for each contact. With this setup I can past all my contacts into 
 TW with little or no changes.

 Each contact is a tiddler with a link to a journal for that specific 
 contact.
 My goal is to have a button on each contact journal that will create a 
 new Journal Entry with the date and time as the title, tagged with the 
 contact name.

 I am still new to this so will need some help here.
 Next step is to get the date and time as the tiddler title from the 
 button. Not having much luck so hope someone can take a look and give 
 some 
 pointers.


 http://contactmanager.tiddlyspot.com/

 Please let me know if the above link works!


 Thanks



-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Contact Manager

2014-09-10 Thread RickL
One of the things I like most about TW is the ability to maintain plain 
text formatting, or very close.

I have created a Contact Manager in TW5 that I want to use also as a 
journal for each contact. With this setup I can past all my contacts into 
TW with little or no changes.

Each contact is a tiddler with a link to a journal for that specific 
contact.
My goal is to have a button on each contact journal that will create a new 
Journal Entry with the date and time as the title, tagged with the contact 
name.

I am still new to this so will need some help here.
Next step is to get the date and time as the tiddler title from the button. 
Not having much luck so hope someone can take a look and give some pointers.


http://contactmanager.tiddlyspot.com/

Please let me know if the above link works!


Thanks

-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] How to display a background gradient

2014-09-08 Thread RickL
Great idea for highlighting tiddler titles!
Is there a way to highlight only the text, and not have the gradient bar 
running all across the tiddler?
Thanks


On Monday, September 8, 2014 12:57:15 PM UTC-4, Ton Gerner wrote:

 Hi dlu...@emich.edu,

 Assume you want a h3 heading with white text color and a vertical red to 
 blue gradient background.

 Creat a tiddler tagged with $:/tags/stylesheet containing:

 h3 {
  color: white;
  background: background-linear-gradient red, blue
 )

 Now every h3 heading uses white text color and a red to blue background 
 gradient.

 For more information about gradients see [1]

 Cheers,

 Ton

 [1] http://www.w3schools.com/css/css3_gradients.asp


 On Monday, September 8, 2014 5:37:44 PM UTC+2, dlu...@emich.edu wrote:

 I can't find any simple or easy to follow instructions on how to create a 
 background gradient in TW5. Can someone help me out? Thanks



-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5 beta 16]Button Code no longer working

2014-09-05 Thread RickL
Works!
Thanks

On Thursday, September 4, 2014 8:59:21 PM UTC-4, Eucaly J wrote:

 if referring to *$:/plugins/skeeve/newtiddler* from 
 http://tiddlystuff.tiddlyspot.com/

 then the change might be  

- *tw-*navigate, *tw-*edit-tiddler to *tm- *prefix
- tw-newtiddler-button to ???= sorry I did not figure out yet




-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: List of completed tasks by completion date

2014-09-05 Thread RickL
Any thoughts here?  This is for TW5

On Friday, August 15, 2014 4:02:37 PM UTC-4, RickL wrote:

 Sorry...TW5

 On Friday, August 15, 2014 3:15:35 PM UTC-4, RickL wrote:

 I have an extensive task list broken out by projects.
 I would like to keep a list of the completed tasks for reference, but 
 would like to be able to have the completed tasks sorted by  completion 
 date or project name.
 Also, this would ideally be done without the need to manipulate the task 
 upon completion.
 Could one use the field box for this during the task setup phase?

 Thanks for any input
 Rick



-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] TW5 Dated List

2014-09-05 Thread RickL
The following code returns a list of tiddlers titled JournalEntry and 
sorted by date.
I would like to have the date at the beginning but can't get it to work 
with my changes.
Seems simple, and likely is for those that understand.

Suggestions?
Thanks

$list 
filter=[tag[JournalEntry]!title[JournalEntrySkeleton]sort[created]]$link 
to={{!!title}}$view field=title / ($macrocall $name=dateTime 
ts={{!!created}} format=YY0MM0DD/)br/$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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 Dated List

2014-09-05 Thread RickL
Works perfectly - thanks!

I was trying to add the $view field.. command before the tag command...



On Friday, September 5, 2014 4:57:03 PM UTC-4, RickL wrote:

 The following code returns a list of tiddlers titled JournalEntry and 
 sorted by date.
 I would like to have the date at the beginning but can't get it to work 
 with my changes.
 Seems simple, and likely is for those that understand.

 Suggestions?
 Thanks

 $list 
 filter=[tag[JournalEntry]!title[JournalEntrySkeleton]sort[created]]$link 
 to={{!!title}}$view field=title / ($macrocall $name=dateTime 
 ts={{!!created}} format=YY0MM0DD/)br/$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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5 beta 16]Button Code no longer working

2014-09-04 Thread RickL
Would you know, and care to share, the 'slight update? :)

Thanksd

On Wednesday, September 3, 2014 2:03:50 PM UTC-4, David Gifford wrote:

 The newtiddler macro needs a slight update to be compatible for 5.0.16

 Dave

 On Wednesday, September 3, 2014 7:53:09 AM UTC-5, Ken Gray wrote:

 I have a button to create a new tiddler with a specific tag (using a 
 skeleton) but it seems to have stopped working in beta 16.  I know it 
 worked in beta 14.
 did the upgrade break this or did I somehow?


 $set name=tag1 value=Meeting Notes$newtiddler title=dateTime 
 MM/DD/ skeleton=MeetingNoteSkeletonclr black New Meeting 
 Note/$newtiddler/$set




-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] List of completed tasks by completion date

2014-08-15 Thread RickL
I have an extensive task list broken out by projects.
I would like to keep a list of the completed tasks for reference, but would 
like to be able to have the completed tasks sorted by  completion date or 
project name.
Also, this would ideally be done without the need to manipulate the task 
upon completion.
Could one use the field box for this during the task setup phase?

Thanks for any input
Rick

-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: List of completed tasks by completion date

2014-08-15 Thread RickL
Sorry...TW5

On Friday, August 15, 2014 3:15:35 PM UTC-4, RickL wrote:

 I have an extensive task list broken out by projects.
 I would like to keep a list of the completed tasks for reference, but 
 would like to be able to have the completed tasks sorted by  completion 
 date or project name.
 Also, this would ideally be done without the need to manipulate the task 
 upon completion.
 Could one use the field box for this during the task setup phase?

 Thanks for any input
 Rick


-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Newbie needs help in drafting search code

2014-06-03 Thread RickL
Super!  Works great!
Will take a little work to get everything set up but will really help me in 
the long run.
Thanks so much for your help!

R

On Monday, June 2, 2014 4:03:53 PM UTC-4, Danielo Rodríguez wrote:

 Yes, it is possible but it would be a bit complex if you are not used to 
 it.

 Each item should be a tiddler. 

 Take a look at: 
 http://tiddlywiki.com/#TaskManagementExample:TaskManagementExample

 You can have specific list with. Here you will need at least two tags, one 
 for task and other for task type. Then, you do the master list with just 
 the tag task.


 With your example:

 Project A
 [x]item 1 tags: task projectA done
 [_]item 2 tags: task projectA
 [x]item 3 tags: task projectA done

 Project B
 [_]item 4 tags: task projectB
 [x]item 5 tags: task projectB done
 [x]item 6 tags: task projectB done

 Example for project B list:

 $list 
 filter=[!has[draft.of]tag[task]tag[projectB]!tag[done]sort[title]]

 $checkbox tag=done $link to={{!!title}}$view 
 field=title//$link/$checkbox

 /$list

 $list filter=[!has[draft.of]tag[task]tag[projectB]
 tag[done]sort[title]]

 $checkbox tag=done ~~$link to={{!!title}}$view 
 field=title//$link~~/$checkbox

 /$list

 Then your just make your master list like: 

 $list filter=[!has[draft.of]tag[task]!tag[done]sort[title]]

 $checkbox tag=done $link to={{!!title}}$view 
 field=title//$link/$checkbox

 /$list


 If you have any doubt let me know.


 El lunes, 2 de junio de 2014 17:43:01 UTC+2, RickL escribió:

 So...is this not possible?
 Not enough information?


 On Saturday, May 31, 2014 6:38:51 PM UTC-4, RickL wrote:

 Not sure about tiddlyspot but will look into it.
 Meanwhile, below is an illustration of what I would like.

 Project A
 [x]item 1
 [_]item 2
 [x]item 3

 Project B
 [_]item 4
 [x]item 5
 [x]item 6

 Project C
 [x]item 7
 [_]item 8
 [_]item 9


 Formula or code to return the following:

 Master Purchase List
 [_]item 2
 [_]item 4
 [_]item 8
 [_]item 9

  I am using TW 5.0.8 on Chrome; trying to upgrade to the latest 5.0.12 
 but not having much luck with that either. :)
 Is this possible?


 On Friday, May 30, 2014 3:55:30 PM UTC-4, Stephan Hradek wrote:



 Am Freitag, 30. Mai 2014 16:17:58 UTC+2 schrieb RickL:

 I have group of tiddlers for projects, each tagged project.
 Each project tiddler contains a list of materials necessary to 
 complete the project, with a checkbox for each item.

 So if you already have that, why not post it on (e.g.) tiddly spot so 
 that one can play around to help you reach your goal?

 I, for example, absolutely hate it, having to set something up which I 
 *think* is what one described. I prefer to be able to play around with 
 the real problem to help solve it. 


 BTW: Is it TWc or TW5?



-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Newbie trying to upgrade - please help.

2014-06-02 Thread RickL
Thanks for your help.
I was actually 'dropping' the file in the wrong place! I have it working 
properly now.

On Monday, June 2, 2014 8:37:24 AM UTC-4, Jeremy Ruston wrote:

 Hi Rick

 After the drag and drop you need to save the resulting wiki over the top 
 of your local file. See:

 http://tiddlywiki.com/#Upgrading

 Best wishes

 Jeremy.


 On Fri, May 30, 2014 at 4:38 PM, RickL rick...@gmail.com javascript: 
 wrote:

 Followed the directions for 'Online Upgrading' at tiddlywiki.com, by the 
 drag and drop method into my browser window. but still showing current 
 version as 5.0.8.

 I am using chrome browser. - does that matter?

 Searched my computer for the 'empty.html' file but did not find it.

 The drag and drop seems to make no changes to my file.  

 Appreciate any help - I am clueless!

 Rick

 -- 
 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 javascript:.
 To post to this group, send email to tiddl...@googlegroups.com 
 javascript:.
 Visit this group at http://groups.google.com/group/tiddlywiki.
 For more options, visit https://groups.google.com/d/optout.




 -- 
 Jeremy Ruston
 mailto:jeremy...@gmail.com javascript:
  

-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Newbie needs help in drafting search code

2014-06-02 Thread RickL
So...is this not possible?
Not enough information?


On Saturday, May 31, 2014 6:38:51 PM UTC-4, RickL wrote:

 Not sure about tiddlyspot but will look into it.
 Meanwhile, below is an illustration of what I would like.

 Project A
 [x]item 1
 [_]item 2
 [x]item 3

 Project B
 [_]item 4
 [x]item 5
 [x]item 6

 Project C
 [x]item 7
 [_]item 8
 [_]item 9


 Formula or code to return the following:

 Master Purchase List
 [_]item 2
 [_]item 4
 [_]item 8
 [_]item 9

  I am using TW 5.0.8 on Chrome; trying to upgrade to the latest 5.0.12 but 
 not having much luck with that either. :)
 Is this possible?


 On Friday, May 30, 2014 3:55:30 PM UTC-4, Stephan Hradek wrote:



 Am Freitag, 30. Mai 2014 16:17:58 UTC+2 schrieb RickL:

 I have group of tiddlers for projects, each tagged project.
 Each project tiddler contains a list of materials necessary to 
 complete the project, with a checkbox for each item.

 So if you already have that, why not post it on (e.g.) tiddly spot so 
 that one can play around to help you reach your goal?

 I, for example, absolutely hate it, having to set something up which I 
 *think* is what one described. I prefer to be able to play around with 
 the real problem to help solve it. 


 BTW: Is it TWc or TW5?



-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Newbie needs help in drafting search code

2014-05-30 Thread RickL
I have group of tiddlers for projects, each tagged project.
Each project tiddler contains a list of materials necessary to complete 
the project, with a checkbox for each item.

I would like to generate a master purchase list that returns a list of 
materials to purchase based on unchecked boxes in each tiddler labeled 
project. Does not need to be segregated by project.


I like simple!
Thanks

-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Newbie trying to upgrade - please help.

2014-05-30 Thread RickL
Followed the directions for 'Online Upgrading' at tiddlywiki.com, by the 
drag and drop method into my browser window. but still showing current 
version as 5.0.8.

I am using chrome browser. - does that matter?

Searched my computer for the 'empty.html' file but did not find it.

The drag and drop seems to make no changes to my file.  

Appreciate any help - I am clueless!

Rick

-- 
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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.