[tw] macro to set or toggle a tiddly tag without displaying a checkbox?

2009-12-01 Thread Saverio
Does anyone know of a macro/plugin that allows a tiddler to set or toggle a tag on another tiddler? I have looked at Eric Shulman's CheckboxPlugin (http://www.TiddlyTools.com/#CheckboxPlugin), which is close to what I want. However, I don't want to display the checkbox - I want the tiddler to "al

[tw] Re: macro to set or toggle a tiddly tag without displaying a checkbox?

2009-12-05 Thread Saverio
Thank you! I was aware of lewcid's TaggerPlugin and Eric Shulmans CheckBoxToggleTag, but not of cycleTags. Unfortunately, all of these require user interaction to set the tags. I was looking to set the tags within code. Fortunately, I found the following method which will work, though I found it

[tw] how can you capture that a tag tiddler has been renamed?

2009-12-06 Thread Saverio
I would like to alert when a tag tiddler is about to be saved with a new name in order to give the user the option to update all tiddlers with that tag. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To post to this group, send email to tiddlyw..

[tw] Re: PartTiddlerPlugin : Concatenate rows from various tiddlers into a table ?

2009-12-06 Thread Saverio
Would this work? <> On Nov 26, 4:31 am, julien23 wrote: > I wish I could concatenate rows from various tiddlers in a single > tiddler with ForEachTiddlerPlugin -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To post to this group, send email to

[tw] I can't get TaggerPlugin to work correctly

2009-12-06 Thread Saverio
http://forposting.tiddlyspot.com/#TestTiddler Above is a link to an empty TiddlyWiki except for the following changes: 1) copy/pasted SaqImtiaz's TaggerPlugin (http://tw.lewcid.org/ #TaggerPlugin) 2) changed ViewTemplate to show the tagger dropdown 3) added TestTiddler with tags "test1" and "test2

[tw] Re: I can't get TaggerPlugin to work correctly

2009-12-06 Thread Saverio
Thanks, that worked! On Dec 6, 5:37 pm, Mike wrote: > Try Addinghttp://www.tiddlywiki.com/coreplugins.html#DeprecatedFunctionsPlugin -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To post to this group, send email to tiddlyw...@googlegroups.com

[tw] javascript to display all of a tiddler's tags that are themselves tagged with a certain tag

2009-12-10 Thread Saverio
I am trying to develop my own simplified GTD solution. I am trying to write a script that will display an action item with a checkbox and a filtered tag list. So for example, [ ] "action" depends on: ["action2", "action3", ...] where "action1" is the title of the tiddler that contains informati

[tw] Re: javascript to display all of a tiddler's tags that are themselves tagged with a certain tag

2009-12-13 Thread Saverio
Thanks! That got me experimenting...I was able to do it in a single tiddler as follows: [x($1|done){}{}{}] [[$1]] var out=[], n=0, t=store.getTiddler('$1'); tids = store.filterTiddlers("[tag[action]]"); for (var i=0; i0?', ':

[tw] Re: javascript to display all of a tiddler's tags that are themselves tagged with a certain tag

2009-12-14 Thread Saverio
Thank you both Mark and Alex. The inline class assignment worked! For my own education, though, can you explain the significance of ".tiddlyLinkExisting" in the stylesheet? -saverio -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" gr

[tw] Re: ForEachTiddler modification to remove last "/n"

2010-01-13 Thread Saverio
Try >     write >        (index>1?"\n":"")+'"*[["+tiddler.title+"]]" -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To post to this group, send email to tiddlyw...@googlegroups.com. To unsubscribe from this group, send email to tiddlywiki+unsub

[tw] Re: ForEachTiddler modification to remove last "/n"

2010-01-13 Thread Saverio
Sorry, my suggestion is an edit of the quoted text, so it appears hidden -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To post to this group, send email to tiddlyw...@googlegroups.com. To unsubscribe from this group, send email to tiddlywiki+uns

[tw] Re: Access for multiple users to edit wiki

2010-02-03 Thread Saverio
Try if (config.options.txtUserName != "Me" && config.options.txtUserName ! = "Another guy") { readOnly = true; showBackstage = false;} For other users with edit access, simply keep appending && config.options.txtUserName !="..." to the if condition On Feb 3, 4:59 am, Claudio Li wr

[tw] What are the advantages/disadvantages of tags vs fields vs slices?

2010-03-02 Thread Saverio
>From reading a number of posts over the last few weeks, I have learned that there are multiple ways to embed structured information within a tiddler. These include tags, custom (or extended) fields, data fields, slices, and form fields. Have I missed any? When is it better to use one over anoth

[tw] Re: What are the advantages/disadvantages of tags vs fields vs slices?

2010-03-03 Thread Saverio
On Mar 3, 8:15 am, "Mark S." wrote: > Slices and sections are a convenient, natural way to enter tiddler- > specific data. You don't need to modify your tiddler template (though > you can) or get extra plugins for manipulating them (though you can). > Slices are single lines of information. Sectio

[tw] Re: What are the advantages/disadvantages of tags vs fields vs slices?

2010-03-03 Thread Saverio
On Mar 3, 8:15 am, "Mark S." wrote: > Tags are useful to show relationships (parent-child) between tiddlers, I think tags are ideal for "attributes" of tiddlers. To use them for relationships, other than the simplest and most generic of relationships, is stretching their functionality, unless yo

[tw] Re: What are the advantages/disadvantages of tags vs fields vs slices?

2010-03-03 Thread Saverio
On Mar 3, 9:54 am, Måns wrote: > > But how then can one modify > > the values of the slices in a *controlled* way, ie. a dropdown of > > available projects with an option to create a new project, or a > > dropdown of other tasks, without just editing the tiddler and free > > texting everything? >

[tw] Re: What are the advantages/disadvantages of tags vs fields vs slices?

2010-03-03 Thread Saverio
On Mar 3, 10:36 am, "Mark S." wrote: > Relationships *are* a type of attribute. Very interesting! I see it from the other end - attributes are one type of relationship, which I define as triads of ["source", "relationship type", "target"] - ex. ["George H Bush" "isTheFatherOf", "George W Bush"].

[tw] Re: Which TiddlyWiki adaptation do you like best?

2010-03-10 Thread Saverio
-saverio On Mar 9, 3:35 pm, twgrp wrote: > For information management I use MPTW (tagglytagging is essential, to > name one thing) and also one of the TreeView variants (not sure > which...) -- You received this message because you are subscribed to the Google Groups "TiddlyWiki&q

[tw] How can tiddler titles that appear in custom fields be updated when the tiddler is renamed?

2010-03-11 Thread Saverio
Tiddlers are uniquely identified by their titles. If I rename (or delete) a tiddler that is the tag of another tiddler, I can use Simon Baird's http://mptw.tiddlyspot.com/#RenameTagsPlugin to make sure the tag is properly updated. But what if the renamed tiddler is the value of another tiddler's

[tw] Re: How can tiddler titles that appear in custom fields be updated when the tiddler is renamed?

2010-03-13 Thread Saverio
Bump -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To post to this group, send email to tiddlyw...@googlegroups.com. To unsubscribe from this group, send email to tiddlywiki+unsubscr...@googlegroups.com. For more options, visit this group at h

[tw] Re: How can tiddler titles that appear in custom fields be updated when the tiddler is renamed?

2010-03-14 Thread Saverio
I have tiddlers which define tasks, and are tagged as such. Tasks can belong to other tiddlers which are projects, tagged with "project". I currently tag the task tiddler with the project to which it belongs, as well as other tasks on which it is waiting. However, this makes it difficult to disti

[tw] Can ListBoxPlugin accept a tag expression to determine the list items?

2010-03-14 Thread Saverio
Eric Shulman's excellent ListBoxPlugin (http://www.tiddlytools.com/ #ListboxPluginInfo) does exactly what I want, except I would like to define the list items with tiddlers that define a tag expression rather than just a single tag value. Am I missing something obvious? Or perhaps there is an "easy

[tw] Re: Can ListBoxPlugin accept a tag expression to determine the list items?

2010-03-15 Thread Saverio
I am enjoying! Works perfectly. Thank you! By the way, have you thought more about what you proposed in the following thread: http://groups.google.com/group/tiddlywiki/browse_thread/thread/1242ee8bac2d743a/3ee32ae81dd9d954?lnk=gst&q=listboxplugin#3ee32ae81dd9d954 Would this be an extension of Li

[tw] Re: ImportTiddlers' control panel won't scroll

2010-03-16 Thread Saverio
When I try to import, such as from TiddlyTools, I correctly get a list of tiddlers, and can choose a subset of them to import, but then it "hangs" while importing. When I click outside of the import box to clear the window and "unhang", I find that the selected tiddlers have NOT been imported. Th

[tw] Re: ImportTiddlers' control panel won't scroll

2010-03-16 Thread Saverio
Great - this fixed my problem, too! Thank you. On Mar 16, 12:14 pm, Eric Weir wrote: > On Mar 16, 2010, at 11:48 AM, Måns wrote: > > > Just for testing - You could disable the ImportTiddlersPlugin in you > > TW (from the backstage) and try to use it from the bookmarkletversion > > on TiddlyTools

[tw] ToggleScrollingSidebars does not automatically refresh

2010-03-21 Thread Saverio
I am using Eric Shulman's http://www.tiddlytools.com/#ToggleScrollingSidebars. The toggle does not immediately take effect. It appears that I need to open a tiddler before the new setting (either on or off) is enforced. This is not the way the plugin behaves on the tiddlytools website. Please se

[tw] Re: ToggleScrollingSidebars does not automatically refresh

2010-03-23 Thread Saverio
bump. I don't think this delayed behavior is "as designed", because toggling the feature on the TiddlyTools website has an immediate effect. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To post to this group, send email to tiddlyw...@googlegro

[tw] Re: Updating TW on startup

2010-03-23 Thread Saverio
Add to the bottom of PageTemplate: Then add the LoadTiddlers macro to the tiddler SiteStartup. This is courtesy of Eric Shulman (http://www.tiddlytools.com/ #SiteStartup) On Mar 23, 10:48 am, skye riquelme wrote: > > OR can I sneak a LoadTidlers command into the MarkupPreHead > > OR so

[tw] Re: ToggleScrollingSidebars does not automatically refresh

2010-03-23 Thread Saverio
On Mar 23, 4:35 pm, Mike wrote: I am usng 3.5 with no problems (winxp, 7, vista, 2k) Mike, can I interpret your comment to mean that you downloaded the Dropbox file above to your machine and did not observe the delayed activation of the setting using Firefox 3.5? I don't think it is a TW plugi

[tw] using a macro within the tabs macro

2010-03-24 Thread Saverio
I would like to use the tabs macro as follows: <> "tab2 label" "tab2 tooltip" "tiddler2" >> Based on what seemed a promising discussion (http://groups.google.com/ group/tiddlywiki/browse_thread/thread/5aa73a7941df3cf0/ d4f2ed179997e962?lnk=gst&q=tabs+macro#d4f2ed179997e962) [though the request

[tw] Re: using a macro within the tabs macro

2010-03-25 Thread Saverio
Interesting suggestion, but I am unable to get it to work. I've posted a test TW here: http://dl.dropbox.com/u/4462381/example2.html Basically, it consists of a tiddler [[project 1]] which is associated with links, documents, tasks, meetings, and notes. Links and documents are defined within [[p

[tw] Re: using a macro within the tabs macro

2010-03-25 Thread Saverio
the slices example to rule out an interaction with MatchTagsPlugin. Could there be an issue with MatchTagsPlugin? http://dl.dropbox.com/u/4462381/example_using_slices.html http://dl.dropbox.com/u/4462381/example_using_parts.html On Mar 25, 4:44 pm, Måns wrote: > Hi Saverio > > I woul

[tw] Re: using a macro within the tabs macro

2010-03-25 Thread Saverio
Yes, but I am trying to make [[ProjectInfo]] generic for any project, so I need to be able to send it a parameter. I think that's what causes the macros to break down, because the sent parameter does not get down to the level of the slices/parts, where they are needed. On Mar 25, 6:19 pm, Måns wr

[tw] Re: using a macro within the tabs macro

2010-03-26 Thread Saverio
Thank you both, Måns and Anthony!! The TW support on this Google group is awesome! On Mar 26, 3:05 am, Anthony Muscio wrote: > I am doing something very similar. > > I achieved this using the inline tabs plugin On Mar 26, 3:27 am, Måns wrote: > Hi again > > The 'with-argument' doesn't seem to

[tw] Re: using a macro within the tabs macro

2010-03-26 Thread Saverio
Just for closure, I was able to simplify Måns's approach: <> /% !Tasks <> !Minutes <> !Notes <> !end %/ -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To post to this group, send email to tiddlyw...@googlegroups.com. To unsubscribe from this gro

[tw] Re: ToggleScrollingSidebars does not automatically refresh

2010-03-29 Thread Saverio
n is to see if ELS catches this thread and has a > moment to look at it and see what is going on. > > Mike > > On Mar 23, 5:17 pm, Saverio wrote: > > > On Mar 23, 4:35 pm, Mike wrote: > >   I am usng 3.5 with no problems (winxp, 7, vista, 2k) > > > Mike, can

[tw] trying to use TaggerPlugin in EditTemplate

2010-03-29 Thread Saverio
I want to be able to restrict the selection of tags by group. Saq Imtiaz's TaggerPlugin (http://tw.lewcid.org//#TaggerPlugin) works great in ViewTemplate, but when accessed from edit mode immediately causes the tiddler to go into, and remain in, view mode. The only way to get back is to close and

[tw] Re: trying to use TaggerPlugin in EditTemplate

2010-03-30 Thread Saverio
Looks intriguing. I think I will be able to modify to my needs, but can you tell me exactly which tiddlers I need to import? Just [[x- tagger config]], [[x-tag]], and [[DeliciousTagging]]? On Mar 30, 6:38 am, Tobias Beer wrote: > Hi Saverio, > > You could try my variation/mod

[tw] Re: tiddlywiki 5 and html

2010-04-01 Thread Saverio
Any thought paid to supporting semantically rich tagging in TW 5? That is, being able to associate a relationship type with the tag instead of just assuming generic "isA"? Extended fields does this to some extent, but they are hidden and not as easy to use as tags. It would be cool to combine the

[tw] Re: tiddlywiki 5 and html

2010-04-01 Thread Saverio
I think "simply" (tongue in cheek) 1) extending the tag definition to optionally allow definition of the relationship type as: tags = "conventionalUntypedTag1 isA(tagA) conventionalUntypedTag2 belongsTo(tagB) dependsOn(tagC)" 2) then storing these under the cover as extended fields isA = conven

[tw] Re: tiddlywiki 5 and html

2010-04-01 Thread Saverio
Oops, tagA would be stored under the isA extended field, as well: > isA = conventionalUntypedTag1 conventionalUntypedTag2 -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To post to this group, send email to tiddlyw...@googlegroups.com. To unsubsc

[tw] Re: GridPlugin - the missing piece ;-)

2010-04-09 Thread Saverio
I've advocated for combining tag functionality with custom field functionality in order to support "semantic tagging" [1], but I may need to wait for TW 5 [2]. [1] http://groups.google.com/group/tiddlywiki/browse_thread/thread/b501b9832122e775?hl=en [2] http://groups.google.com/group/tiddlywiki/

[tw] freezing the title bar

2010-04-22 Thread Saverio
Any suggestions on how to freeze the title bar display so it never scrolls out of view? -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To post to this group, send email to tiddlyw...@googlegroups.com. To unsubscribe from this group, send email to

[tw] Re: freezing the title bar

2010-04-22 Thread Saverio
Thank you. That is exactly what I want (see http://yann.perrin.googlepages.com/twkd1.html), but I am not sure where to look for the code that implements the frozen header. I don't think it is in PageTemplate. Perhaps in StyleSheet? On Apr 22, 4:38 pm, wolfgang wrote: > Hi Saverio,

[tw] Re: freezing the title bar

2010-04-23 Thread Saverio
Hmm, I can get the left and right sidebar menus to lock position, but still can't get the title bar to freeze. I've posted my TW to: http://dl.dropbox.com/u/4462381/example4.html If anyone can look at it and help, it would be greatly appreciated. In addition to being able to freeze the header, I

[tw] closing PopupMacro's popup window with a second click

2010-09-29 Thread Saverio
How can I make SaqImtiaz's PopupMacro (http://tw.lewcid.org/ #PopupMacro) close the popup window when the button is clicked a second time? -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To post to this group, send email to tiddlyw...@googlegroups

[tw] Re: NEW: ColoredLinksPlugin

2010-09-30 Thread Saverio
What would be the css code to put in the tagcolor field for strikethrough text? -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To post to this group, send email to tiddlyw...@googlegroups.com. To unsubscribe from this group, send email to tiddly

[tw] Re: closing PopupMacro's popup window with a second click

2010-09-30 Thread Saverio
':'') + '*[[' + notes[t].title + ']]'; } return out; !end%/ On Sep 30, 9:33 am, Tobias Beer wrote: > Hi Saverio... > > I have modded PopupMacro and uploaded it to a dedicated tiddlyspace > [1]. This Mod by default  works when hovering over a popup

[tw] Re: NEW: ColoredLinksPlugin

2010-09-30 Thread Saverio
Thank you! Intersting, because before my post, I had tried color: gray; text-decoration: line-through; This makes the links gray but does not do the strike-through. Dropping the color statement causes the strike-through to display. Reversing the two statement also show strike-through, but no gra

[tw] Re: closing PopupMacro's popup window with a second click

2010-10-05 Thread Saverio
Sorry for the delay. Here is an example: http://dl.dropbox.com/u/4462381/popup.html -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To post to this group, send email to tiddlyw...@googlegroups.com. To unsubscribe from this group, send email to

[tw] Re: NEW: ColoredLinksPlugin

2010-10-06 Thread Saverio
Excellent. Thank you! Any thoughts about a methodology for combining styles in tiddlers with multiple styled tags? On Sep 30, 6:44 pm, Tobias Beer wrote: > Hi Saverin, > > Great to see you use it! Actually, it looks like the blanks in your > css were the problem, so I (hopefully) corrected the

[tw] Re: NEW: ColoredLinksPlugin

2010-10-06 Thread Saverio
mutually exclusive). In my example, completed urgent tasks would be both red and strikedthrough. Not an urgent use case that I need, but something for you to think about in your free time. :-) Thanks! On Oct 6, 2:34 pm, Tobias Beer wrote: > Hi Saverio, > > So you mean where the tags that a t

[tw] Re: NEW: ColoredLinksPlugin

2010-10-06 Thread Saverio
mutually exclusive). In my example, completed urgent tasks would be both red and strikedthrough. Not an urgent use case that I need, but something for you to think about in your free time. :-) Thanks! On Oct 6, 2:34 pm, Tobias Beer wrote: > Hi Saverio, > > So you mean where the tags that a t

[tw] Re: NEW: ColoredLinksPlugin

2010-10-06 Thread Saverio
-ranked tags when they are mutually exclusive). In my example, completed urgent tasks would be both red and strikedthrough. Not an urgent use case that I need, but something for you to think about in your free time. :-) Thanks! On Oct 6, 2:34 pm, Tobias Beer wrote: > Hi Saverio, > >

[tw] Re: closing PopupMacro's popup window with a second click

2010-10-07 Thread Saverio
I have not tried more than single-level nesting, but seems to work perfectly so far! Thank you! On Oct 6, 12:56 pm, Tobias Beer wrote: > Hi Saverio, > > Let me tell you, this was not pretty ...although the result is. ;o) > > After hours of pulling my hair out over infinite loops

[tw] Re: closing PopupMacro's popup window with a second click

2010-10-09 Thread Saverio
By the way, what you have done here also should be applicable to your TagSearchPlugin/QuickOpenTagPlugin combo (when you use the down arrow to display a list of tiddlers with a certain tag). On Oct 6, 12:56 pm, Tobias Beer wrote: > Hi Saverio, > > Let me tell you, this was not pretty ..

[tw] TagSearchPlugin error

2010-10-09 Thread Saverio
The [[TAG:xyz]] option in TagSearchPluginConfig##More is not working -- the first tiddler which matches the xyz tag is repeatedly displayed. This can be seen on the website itself [http:// tagsearch.tiddlyspot.com] -- You received this message because you are subscribed to the Google Groups "Ti

[tw] Re: UPDATE: TagSearchPlugin

2010-10-11 Thread Saverio
I think the whole set of notions about slices, sections, fields, and tags needs a careful re-evaluation. The pros and cons of each of these alternatives should be enumerated and summarized. It may be that some methods should be consolidated, and perhaps other ways be made more robust, such as to su

[tw] Re: TiddlyWiki / TiddlyWeb and semantic web

2010-10-12 Thread Saverio
> Let's think about: "A (task) depends on C (task/project/wahtever)" > > A contains: > |Author:| pmario | > |Description:| this is a task | > |Dependencies:| C, D | > > lorem ipsum 100 times > > What I would do: > *Tag A waiting > *Tag every finished task with: done > *A tagged: C > *tag mission cr

[tw] Re: TiddlyWiki / TiddlyWeb and semantic web

2010-10-12 Thread Saverio
> I'm sorry I still don't know, what "semantic tags" means for you. > > regards > Mario Semantic tag is both the specification of the *relation* as well as of the *value*. Here is another (made up on the fly) use case - an issue tracker. Each issue is a tiddler, and issues need to be associated

[tw] Re: Deleting a TiddlySpace so I can start over again

2010-10-13 Thread Saverio
Can someone explain this a little more? I am a heavy TW user, light tiddlyspot user, and new TiddlySpave user. I uploaded my TW to a TiddlySpace as an experiment, liked it, but kept updating my local version. Now I am considering doing all my work on the TiddlySpace version, but i want to replace

[tw] Re: TiddlyWiki / TiddlyWeb and semantic web

2010-10-13 Thread Saverio
Yes! A set of functions for resolving relation and tag value would be a great start. A cached table of declared relationships in a shaddow tiddler, updating it whenever tiddlers are saved or tags are edited, might help address the performance concern. Would continuing this discussion, perhaps on

[tw] lost access to backstage on tiddlyspace

2010-10-14 Thread Saverio
After uploading my tiddlywiki to tiddlyspace, it seems I have lost access to everything in the backstage except for the cookie "Upload with options" page. Any ideas of how to get back the other buttons? -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" gr

[tw] Re: lost access to backstage on tiddlyspace

2010-10-14 Thread Saverio
Solved! I had to disable UploadPlugin (http://tiddlywiki.bidix.info/ #UploadPlugin). I wonder if there are other plugins that are no longer relevant or that cause conflicts in TiddlySpace. On Oct 14, 2:59 pm, Saverio wrote: > After uploading my tiddlywiki to tiddlyspace, it seems I have l

[tw] Re: Extending TagSearch / Tagging

2010-10-18 Thread Saverio
I was reminded of one of Eric Shulman's plugins (http:// www.tiddlytools.com/#ListboxPluginInfo), in which list items can be specified in a number of ways: 1) inline list definition (ie "value value value") 2) tiddler-based list definition ("+TiddlerName" to use a horizontal- rule separated list in

[tw] Re: parsing html from another site

2010-10-18 Thread Saverio
To do a search in YouTube, try: http://www.youtube.com/results?search_query=xyz where you replace xyz with your search terms On Oct 18, 2:18 pm, Bob Paige wrote: > I have a TW of songs we perform at my church, one song per tiddler. So far > I've been manually looking for youtube links for those

[tw] Re: Override Tiddler Creation

2010-10-22 Thread Saverio
~McDonald On Oct 22, 3:16 pm, vcg3rd wrote: > I can't figure out how to override that so that when I write a name > that has a capital somewhere besides the first letter (e.g. > McDonald's) I do not create a tiddler. -- You received this message because you are subscribed to the Google Groups

[tw] Re: using the toggleTag macro inside of MatchTags ?

2010-11-04 Thread Saverio
I implemented exactly this functionality using MatchTagsPlugin [1] and CheckboxPlugin [2] as follows: <> You could simply change the tag "done" to "completed" and replace my tag criteria with your own. [1] http://www.TiddlyTools.com/#MatchTagsPlugin [2] http://www.TiddlyTools.com/#CheckboxPlugin

[tw] Re: Collaboration using Dropbox - looking for investigators

2011-05-07 Thread Saverio
I like this idea. It is like a wikified and extremely configurable Evernote or SpringPad application. It fixes the problems of both classic TiddlyWiki (lack of ubiquitous availability across platforms) and the shortcomings of Evernote (no linking between notes, no extensibility, no configurability)

[tw] Re: Collaboration using Dropbox - looking for investigators

2011-05-11 Thread Saverio
I agree. Standardize the back-end (tiddlers as independent files) with DropBox, leveraging its version control and ubiquitous syncing. Then built multiple/varied front ends for manipulating those files. The simplest ones would enable a single user to access (create, edit, view) their own tiddlers

[tw] Re: Absolute path for backup folder

2011-05-12 Thread Saverio
I believe relative references work, ie. "../ADifferentDirectory" On May 11, 2:28 pm, Jeremy Ruston wrote: > > Is it possible to define a backup folder that is not a subdirectory to > > the one TiddlyWiki resides in? > > > How would one have to specify config.options.txtBackupFolder? > > > These d

[tw] Re: Collaboration using Dropbox - looking for investigators

2011-05-12 Thread Saverio
How about a new toggle "share" that does this fancy stuff, so you can control what is uploaded to the Dropbox share, and what is not. Could you also untoggle, and the tiddler would be retracted from the share, but still remain in your private tiddler? On May 12, 12:04 pm, Bauwe Bijl wrote: > Hel