[tw] Implementing tag functionality in other fields

2014-08-29 Thread 'c pa' via TiddlyWiki
Tell me if I'm going about this the right way. I want to implement the tags functionality (push and pop) on other fields because I'm pushing and popping non-semantic elements and I don't want them polluting my list of symantic tags. Should I clone checkbox and hastag into myfieldcheckbox and

[tw] What is the meaning of triple curly braces?

2014-09-02 Thread 'c pa' via TiddlyWiki
When I use triple curly braces every word is displayed as a link. Why? {{{ This is a test }}} Is displayed the same as [[This]]br/ [[is]]br/ [[a]]br/ [[test]]br/ Which seems odd. I can't find any explanation. I'm using 5.0.16-beta Enclosing things in triple dollars $$$ creates a precode

Re: [tw] Re: Implementing tag functionality in other fields

2014-09-04 Thread 'c pa' via TiddlyWiki
On Saturday, August 30, 2014 12:40:32 AM UTC-7, Jeremy Ruston wrote: Assuming we're talking about TiddlyWiki5, I think it's a reasonable goal to be able to treat any other field like the tags field. Yes Tiddlywiki5 There's actually very few components of TW5 that specifically know about the

Re: [tw] Re: Implementing tag functionality in other fields

2014-09-05 Thread 'c pa' via TiddlyWiki
OK I've made the code changes and tested them for * *tag filter*: has been extended to identify the tag field to be used eg [tag:mytagsfield[exampletag]] * *tags filter*: similarly [tags:mytagsfield[]] * *untagged filter*: similarly [untagged:mytagsfield[]] * *checkbox widget*: has been

Re: [tw] Re: Implementing tag functionality in other fields

2014-09-08 Thread 'c pa' via TiddlyWiki
Ah hah. Thanks for this. I put what I've done at http://cpashow.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

[tw] Re: On the fly completions/suggestions

2014-09-10 Thread 'c pa' via TiddlyWiki
Alain, (From the Tiddlywiki roadmap) Some important features were deferred to be added after the beta: - Keyboard snippet expansion in the text editor Chime in anyone if there is a plugin out there that does this -- You received this message because you are subscribed to the Google Groups

Re: [tw] Re: Implementing tag functionality in other fields

2014-09-10 Thread 'c pa' via TiddlyWiki
I've fixed several defects and posted them to http://cpashow.tiddlyspot.com/ *Is there a method to put in the following fix without directly editing the boot.js code?* To fix them I had to directly edit boot.js to add the following for each field I wanted to use:

Re: [tw] Re: Implementing tag functionality in other fields

2014-09-11 Thread 'c pa' via TiddlyWiki
You can create a JS module with the module-type tiddlerfield that exposes the same properties; the core will load it as part of the boot process. Yay! That worked and I got all the other pieces to work too. I've posted the results at http://cpashow.tiddlyspot.com/ But adding a tiddlerfield

[tw] Re: [TW5] How to lower case

2014-09-12 Thread 'c pa' via TiddlyWiki
In the end the sort-field field of the tiddler should contain the currentField in lower case. To do that you need to convert currentField to lower case before calling the TableHeaders macro So you need a macro that does the conversion then calls TableHeaders Something like the following:

[tw] Re: [TW5] How to lower case

2014-09-14 Thread 'c pa' via TiddlyWiki
Jim, Well blow me down. I just spent a good half hour trying to make this work with wiki macros and I couldn't. So the answer is to create a javascript macro title: $:/_my/macros/setlowercase.js tags: $:/tags/Macro !!Add field module-type: macro Text: /*\ title: $:/_my/macros/setlowercase.js

Re: [tw] Re: Implementing tag functionality in other fields

2014-09-14 Thread 'c pa' via TiddlyWiki
I'd recommend against the approach of adding a tiddlerfield module Okay. I've implemented the functionality so it works for both tagfields and text fields, so you can use it to manage lists of items using checkboxes and buttons on both Posted at http://cpashow.tiddlyspot.com/ Not yet

[tw] Re: [TW5] How to import/export subset of tiddlers?

2014-09-14 Thread 'c pa' via TiddlyWiki
Good point. I waded through the items that lead to that button working as follows: * GettingStarted is composed of a set of tabs listing all tiddlers with a name starting with GettingStarted - * GettingStarted - TiddlyFox is composed of Saving with TiddlyFox * Saving with TiddlyFox points to

Re: [tw] Re: Implementing tag functionality in other fields

2014-09-15 Thread 'c pa' via TiddlyWiki
Is your code available on GitHub? It would easier for me to inspect it and provide comments there. I still need to set that up. Coming soon My next item is to implement the ability to control the reveal widget by searching for the presence of a tag on a tiddler. I originally thought that

[tw] Re: [TW5] How to lower case

2014-09-15 Thread 'c pa' via TiddlyWiki
Wow. This was a hard one. The problem seems to be that $button's setto is unable to process javascript macros. So to solve this requires processing the javascript macro using $Set like this: \define setbutton() $button set=Test1!!somefield setTo=$(setsort)$ Set/$button \end \define

Re: [tw] Re: Implementing tag functionality in other fields

2014-09-15 Thread 'c pa' via TiddlyWiki
I deleted my previous post because the error is in my code not in TiddlyWiki. -- 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

[tw] Re: Does Story Width actually do anything?

2014-09-15 Thread 'c pa' via TiddlyWiki
Stephen, There is an invisible container (that you can see using developer tools or some other browser extension) called section class=tc-story-river It is the container for all of the displayed tiddlers controlled by tiddler width. But since the story width can be less than the tiddler width

[tw] Tags with spaces

2014-09-15 Thread 'c pa' via TiddlyWiki
I've noticed that the following set of check boxes sets 4 different tags on a tiddler $checkbox tag=tagtag/$checkbox $checkbox tag= tag tag /$checkbox $checkbox tag=tag tag /$checkbox $checkbox tag= tag tag /$checkbox Also that this set sets four different tags $checkbox tag=  /$checkbox

Re: [tw] Re: Tags with spaces

2014-09-16 Thread 'c pa' via TiddlyWiki
I've added a comment to the GitHub ticket. Oh good. If its a bug I'll ignore it. This is so far the only part of tagfields I've been unable to fix. -- You received this message because you are subscribed to the Google Groups TiddlyWiki group. To unsubscribe from this group and stop receiving

[tw] Re: [TW5] Tabs Macro: Entire separate tiddlers as the only input?

2014-09-18 Thread 'c pa' via TiddlyWiki
Michael, Another vote for inline tabs You can create tabs referring to sections of the current tiddler by wrapping those sections in the $reveal widget and using a customized version of tabs. tabs creates a unique tiddler to store its state and $reveal needs to know which tiddler name to use

[tw] Re: [TW5] Local macro doesn't work with $maketid widget

2014-09-23 Thread 'c pa' via TiddlyWiki
Tomas. You can't set variables and use them in the same code block. Try This it worked for me. You can see it on http://cpashow.tiddlyspot.com/#Tomas \define tituloPaper(autor:Anónimo,titulo:No se sabe) $autor$: $titulo$ \end \define missingdefine() $maketid title=$(au)$ $(ti)$tags=paper

[tw] Re: [TW5][TUT]Make any field behave like tags

2014-11-19 Thread 'c pa' via TiddlyWiki
Danielo, Awesome. I struggled with this one for a while before deciding what I had was good enough. 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

[tw] Re: Using a Macro (TableOfContentMacro)

2014-11-20 Thread 'c pa' via TiddlyWiki
The table of contents macro lists the tiddlers tagged with TOC and then under that lists tiddlers tagged with the name of the top level tiddler. So I tag a tiddler named Contents with a tag = TOC Then I tag each of a list of tiddlers One Two Three with a tag = Contents Then I tag further

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

2015-01-06 Thread 'c pa' via TiddlyWiki
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.

[tw] Re: Imagemap in TW5?

2015-01-06 Thread 'c pa' via TiddlyWiki
This works: Demo at : http://cpashow.tiddlyspot.com/#ImageMap%20test HTML img src=http://sci8.com/wp-content/uploads/2014/10/test-all-the-things.jpg; width=455 height=354 border=0 usemap=#map / map name=map id=map area shape=rect coords=160,16,336,77 href=http://location.com; target=new/ area

[tw] [tw5] Odd text concatenating behavior

2015-03-30 Thread 'c pa' via TiddlyWiki
I'm doing something wrong here but can't figure out what. 1. I have a json Tiddler with a list of items in it { 01: Item2, 02: Item1, 03: Item3, 04: Item4 } 2. I want to retrieve the index so I use $list $list filter=[[jsonlist]indexes[]] 3. Then I want to retrieve the values

[tw] Re: [tw5] Odd text concatenating behavior

2015-03-31 Thread 'c pa' via TiddlyWiki
Excellent. That 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

[tw] Re: Pop Up Function within a Tiddler

2015-03-23 Thread 'c pa' via TiddlyWiki
Try the reveal widget. Here's some example code from the documentation. Each section needs a different first parameter (!!Reveal1, !!Reveal2 etc.) English Text Here $button set=!!Reveal1 setTo=showShow Translation/$button $button set=!!Reveal1 setTo=hideHide Translation/$button $reveal

[tw] Re: Creating a simple checklist with checkboxes inside a tiddler

2015-04-22 Thread 'c pa' via TiddlyWiki
Shash, I've achieved this using the following: It creates a tiddler that holds tags for your checklist items. Create a tiddler called checklist with the following content \define checklist() $checkbox tiddler=$:/_cpa/Data/todos tag=todo:$(currentTiddler)$ $link to=$(currentTiddler)$

Re: [tw] Re: Is there a way to force wikification of text?

2015-04-22 Thread 'c pa' via TiddlyWiki
Jeremy, I'm pretty sure that there's no problem that can't ultimately be solved with clever macros and cleverly formatted tiddlers. I've been trying to find a problem I can't solve on my own. Unfortunately I pick a problem, spend 2 hours on it and then figure out the solution. So I'm working

[tw] Re: How do I make a clone button which creates tiddlers silently?

2015-05-05 Thread 'c pa' via TiddlyWiki
This works: \define setfield(tiddlerName,templateName,fieldName) $set name=fieldValue value={{$templateName$!!$fieldName$}} $action-setfield $tiddler=$tiddlerName$ $field=$fieldName$ $value=fieldValue / /$set \end \define createSilentTarget(tiddlerName,templateName,buttonName)

[tw] Re: Tiddler inclusion or tiered tagging?

2015-04-17 Thread 'c pa' via TiddlyWiki
Tierney, To create tiddlers tagged with the current tiddler, click More / Create new tiddler tagged with this one (icon of a tag with a plus next to it) 1. To list the tiddlers thusly tagged use the following code: (Put this code in the parents) $list filter=[tagcurrentTiddler] !-- Place

[tw] Is there a way to force wikification of text?

2015-04-17 Thread 'c pa' via TiddlyWiki
What is the internal function that wikifies text? I want to build a javascript macro to force wikification of text. (because I'm running into situations where no matter how many macro levels I call into I can't get the string wikified) I searched the code for the string wikify and there is no

[tw] Re: Is there a way to force wikification of text?

2015-04-18 Thread 'c pa' via TiddlyWiki
PMario, I have set up my public wiki with the elements I'm working on. here http://cpashow.tiddlyspot.com/ With comments -- 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

[tw] Re: [TW5] Tiddler title font size

2015-04-18 Thread 'c pa' via TiddlyWiki
Find the tiddler $:/themes/tiddlywiki/vanilla/base (Or the base stylesheet for the theme you are using) And edit the following styling to be what you want .tc-titlebar h2 { font-size: 1em; display: inline; } -- You received this message because you are subscribed to the Google Groups

[tw] Re: Is there a way to force wikification of text?

2015-04-17 Thread 'c pa' via TiddlyWiki
PMario What I want to do is build a macro that will evaluate and return the results of an expression such as {{!!fieldname}} within the current context. That would solve so many of my macro problems. I've wasted too many days working out the context differences between variableName,

[tw] Re: TiddlyWiki5 password protection

2015-06-05 Thread 'c pa' via TiddlyWiki
Password access is configured on the Saving tab of $:/ControlPanel (Accessible from the little gear icon above the menu) Once you set a password and save the tiddlywiki is protected so you need the password to edit it. You can still read it. So give the password to anyone you want to edit and

[tw] Re: How do I filter for the intersection of sets?

2015-06-25 Thread 'c pa' via TiddlyWiki
Yes. I have an example here: http://cpashow.tiddlyspot.com/#Filter%20Intersection here's the code: tags: jack kill tom authors: tom dick harry uin authors but not tags/u $list filter=[list[!!authors]] -[all[current]tags[]] li{{!!title}}/li /$list uin authors and tags/u $list

[tw] How do I filter for the intersection of sets?

2015-06-25 Thread 'c pa' via TiddlyWiki
The documentation for Filter Expression states the following: If a run has a + prefix, it receives the filter's output so far as its input. The filter's output is then completely *replaced* by the run's output. Any subsequent run reverts to receiving all tiddler titles as its input, unless it

[tw] Re: [TW5] How create SVG icons

2015-06-26 Thread 'c pa' via TiddlyWiki
Cool icon. Once you've converted the icon you need to remove the ?xml . . . instruction tag and edit the width and height attributes so it is icon sized. Here's the svg svg *width=22px height=22px *viewBox=0 0 176.00 176.00 preserveAspectRatio=xMidYMid meet metadata Created by

[tw] Re: How do I filter for the intersection of sets?

2015-06-26 Thread 'c pa' via TiddlyWiki
For simple lists that works. I needed a more robust solution and solved the problem with the following code: -simplified \define displayAuthor(tiddlerName) !-- This macro (for demo purposes) displays the author's name in a list. You can use the variable tiddlerName for any purpose --

[tw] Re: [TW5] Preparing for release of TiddlyWiki 5.1.9

2015-06-16 Thread 'c pa' via TiddlyWiki
Added https://github.com/Jermolene/TiddlyWiki5/commit/139496209f92d229feadf5c2883edec9090c0a0a support for custom elements to the ButtonWidget http://tiddlywiki.com/prerelease/#ButtonWidget Checking the link against the documentation it looks like you need to add the following as a row

[tw] Re: How to use list filters with tm-modal

2015-05-27 Thread 'c pa' via TiddlyWiki
Try This: (You'll have to define your own filter) \define modalLink(tiddlerName,message) $button message=tm-modal parammodalLink=$tiddlerName$ class=tc-btn-invisible tc-tiddlylink $message$ /$button \end $list filter=[tag[done]] $macrocall

[tw] Re: Creating a simple checklist with checkboxes inside a tiddler

2015-05-27 Thread 'c pa' via TiddlyWiki
Hey guys sorry forgot to include the rest of the instructions Once you've created your tiddler named checklist with the above mentioned code, Then in any other tiddler you can type the following and get your checklist items * {{This is a test||checklist}} * {{This is another test||checklist}}

[tw] Re: Lists functionality demo

2015-08-13 Thread 'c pa' via TiddlyWiki
I have updated the site with instructions, the list of macros and how to import them into your tiddler. Thanks to Daniello for the remove from list javascript macro. Since this is packaged in a few macro tiddlers, no need for a plugin. http://cpalists.tiddlyspot.com/ -- You received this

[tw] Re: Can I install old plugins?

2015-08-17 Thread 'c pa' via TiddlyWiki
Short answer No. TiddlyWiki 5 has a completely new plugin system and none of the old plug-ins code will work any more. The community is in the process of rewriting new code to implement that functionality. For some, sticking with TiddlyWiki Classic is the way to go for a while still. For

[tw] How do I pass a value returned by $count to a macro?

2015-06-30 Thread 'c pa' via TiddlyWiki
I am unable to pass a value to a macro when that value has been generated by $count. A demo of the problem: http://cpashow.tiddlyspot.com/#What_s_wrong_with_this Here's the code: \define getCountOfItemsInList(tiddlerName, fieldName) $count filter=[list[$tiddlerName$!!$fieldName$]] / \end

[tw] Re: How do I pass a value returned by $count to a macro?

2015-06-30 Thread 'c pa' via TiddlyWiki
Excellent. Here's the code for that fix: And here's a demo: cpashow.tiddlyspot.com/#How to pass a filter count to a macro:[[How to pass a filter count to a macro]] with a link to the code you can drag into your wiki /*\ creator: _cpa title: $:/_cpa/macros/filterCount.js type:

[tw] Re: New label for recently modified tiddlers

2015-06-30 Thread 'c pa' via TiddlyWiki
Rustem, The Recent tab on your sidebar solves this with something like the following code but this shows just the 50 (or other number) most recently modified: !!New: ul $list filter=[!is[system]has[modified]!sort[modified]limit[50]] li{{!!title}}/li /$list /ul I haven't yet

[tw] Re: New label for recently modified tiddlers

2015-06-30 Thread 'c pa' via TiddlyWiki
I had to write a new filter to solve this, have a look at GitHub https://www.google.com/url?q=https%3A%2F%2Fgithub.com%2Fnameanyone%2FTiddlyWiki5%2Fblob%2Fmaster%2Fcore%2Fmodules%2Ffilters%2Frecent.jssa=Dsntz=1usg=AFQjCNHsjQCls-1HamuImeYWL1e-nhkG6Q if interested. Will submit once I document

[tw] Re: styling internal links

2015-08-05 Thread 'c pa' via TiddlyWiki
Use $macrocall $name=PetLink what=dog who=currentTiddler / -- 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

[tw] Fields as tags

2015-08-11 Thread 'c pa' via TiddlyWiki
I've created a tiddlyspot site to display where I've gotten in developing the tiddler field tags functionality The code is a mess right now and hard to maintain so more work to be done The code allows you to set up tables, fields, and relationships and display and edit that information from

[tw] Lists functionality demo

2015-08-11 Thread 'c pa' via TiddlyWiki
I have created a tiddlyspot site to display where I've gotten in list management The code is fairly robust but needs some more work to bundle it into a plugin. Comments welcome http://cpalists.tiddlyspot.com/ -- You received this message because you are subscribed to the Google Groups

[tw] Re: Timeline and Map in same TW: report

2015-07-16 Thread 'c pa' via TiddlyWiki
would you mind sharing a link to see it in action? Here's the link to the timeline plugin. http://kixam.github.io/TW5-visjsTimeline/ Not sure if there is a timeline + map demo The plugin uses fields *timeline:start* and *timeline:end* These fields cannot be entered via the user interface as

[tw] Re: Continue order list numbering after code block?

2015-07-14 Thread 'c pa' via TiddlyWiki
Sky Diver, In your code you are using wili syntax within html tags. This is why you then need the blank lines so the parser can recognize the wiki text Within the html tabs you should continue to use html tags so . . . # One # Two # span Three br/ code this is a test so is this /code /span #

[tw] Re: Continue order list numbering after code block?

2015-07-13 Thread 'c pa' via TiddlyWiki
Sky, This should work in most cases: # One # Two # span whatever you want more even more /span # four # etc. -- 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

[tw] Re: [TW5] Top Left Toolbar plugin

2015-10-14 Thread 'c pa' via TiddlyWiki
Yay. This allows me to close the right panel and still have the new, save etc. buttons available. 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

Re: [tw] [TW5] Tiddlytime plugin

2015-10-14 Thread 'c pa' via TiddlyWiki
>> Can I ask why it is a powerful technique what can it be used for? It can be used for time stamping activities. For instance if you wanted a time tracker for a legal office you could put a button , start / stop activity which would mark and stamp items and then tie that to billable

[tw] Re: [TW5] Problem Uploading v 5.1.9 to Tiddlyspot

2015-10-14 Thread 'c pa' via TiddlyWiki
Which means that you need to do the initial save to tiddlyspot using Chrome. After the initial save you can use firefox. -- 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

[tw] Unique listing of all values in a field

2015-10-07 Thread 'c pa' via TiddlyWiki
I needed this so I wrote a filter to do it. This filter will return a unique listing of all values in a field. So if you are populating a field with a list of field titles (with a different list in each tiddler) Then this will return the unique listing. I have the demo here:

[tw] Re: Unique listing of all values in a field

2015-10-08 Thread 'c pa' via TiddlyWiki
>> it should be part of the core soonish via... > > each:list[some-list] > > Yes. I see that in the documentation. http://tiddlywiki.com/#each%20Operator >> each:list>> The value is treated as a title list . Each title in the list considered in turn. If it

Re: [tw] [TW5] Tiddlytime plugin

2015-10-15 Thread 'c pa' via TiddlyWiki
OK here's a quick demo at http://cpashow.tiddlyspot.com/#:[[Task%202]]%20[[Task%201]] -- 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

Re: [tw] Unique listing of all values in a field

2015-10-12 Thread 'c pa' via TiddlyWiki
Erwan, The wiki is currently a mess with little documentation of what I've done but sure. I'll be improving it over time. -- 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

[tw] Re: [TW5] Get list of descendants by recursively assembling filter?

2015-09-09 Thread 'c pa' via TiddlyWiki
Linus, Use something like this. It's a call to a macro that recursively calls itself. \define listChildren(tag) <$list filter="[tag[$tag$]]"> <$view field="title"/> <$macrocall $name="listChildren" tag=<> /> \end !Top <$macrocall $name="listChildren"

Re: [tw] Re: [TW5] Get list of descendants by recursively assembling filter?

2015-09-10 Thread 'c pa' via TiddlyWiki
Linus, Ahhh, the old create a list and then parse it trick. I have done that before. I think what I ended up doing is storing the list in a temporary tiddler's list and then parsing that list to get the results You can use [ and ] to create square brackets So something like [[<$view

[tw] Re: Is it possible to get a list of unique values of a single field?

2015-10-05 Thread 'c pa' via TiddlyWiki
OK (trying to answer my own question) this should work but for some reason it displays the contents of the macro instead of executing the macro. Could someone help me with my syntax? Copy the below into a tiddler to see what I mean \define returnList(tiddlerName, fieldName)<$list

[tw] Re: Is it possible to get a list of unique values of a single field?

2015-10-05 Thread 'c pa' via TiddlyWiki
Is there a way to return a list of the unique values in a list field? ''[[get Operator (Examples)]] demonstrates that `[each[tags]get[tags]]` will list the value in every tiddler's tags field '' ''If I make a slight change, `[get[tags]each[tags]]`, I get a unique listing of all the tags in a

[tw] Re: [TW5] Releasing 5.1.10

2015-12-29 Thread 'c pa' via TiddlyWiki
Jeremy, This is awesome. I am now going to rip out a bunch of the crazy hacks I have been using. This also allows me to add a bunch of functionality I couldn't previously make work. Thanks again. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group.

[tw] Re: nested macros?

2016-01-06 Thread 'c pa' via TiddlyWiki
>> Ugly solution: Hmmm. That looks like the right solution to me. To make it better you could wrap it as a macro like this \define listTaskStatus(taskArea) <$list filter="[!has[draft.of]tag[task]!tag[done]tag[$taskArea$]sort[created]]"> <$checkbox tag="done"> <$link to={{!!title}}><$view

[tw] Re: Why is there no actual "TiddlyWiki For Dummies" book? Someone please write one!

2016-06-08 Thread 'c pa' via TiddlyWiki
OK I've started the doc on tiddlyspot here: http://tw-for-bunnies.tiddlyspot.com/ Please provide comments on style and usability. Right now many of the pages are empty. Also if you have suggested edits, either post the wiki text here or create a page of your own and post it here. I'll copy and

Re: [tw] Re: TiddlyFox is not signed and may not work in the future

2016-06-08 Thread 'c pa' via TiddlyWiki
I have 47 it saves 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

[tw] Re: Why is there no actual "TiddlyWiki For Dummies" book? Someone please write one!

2016-06-06 Thread 'c pa' via TiddlyWiki
So to be clear you want a book, or a wiki on tiddlyspot that gives step by step instructions on how to "use" TiddlyWiki. One of the difficulties in this is the term "use" which implies use-cases for the product. I've had conversations with a number of people who use TiddlyWiki, folks seem to

[tw] Re: Why is there no actual "TiddlyWiki For Dummies" book? Someone please write one!

2016-06-10 Thread 'c pa' via TiddlyWiki
Mat says >> What makes this one different from the previous initiatives from other people? Nothing >> What would make it successful Success = helps me. This is an exercise in setting things up so in 5 years I can dig out old code and use it >> IMO the faint blue font color is difficult to see

[tw] Re: Macros to show different results all depending on a single field value?

2016-06-10 Thread 'c pa' via TiddlyWiki
\define Get_He_She(gender) {{He_She##$gender$$}} \end \define Get_Him_Her(gender) {{Him_Her##$gender$$}} \end Create tiddlers title: "He_She" text: " # This tiddler is a Data Dictionary that translates gender designations to personal pronouns male: He female: She " type: Data

[tw] Re: Why is there no actual "TiddlyWiki For Dummies" book? Someone please write one!

2016-06-10 Thread 'c pa' via TiddlyWiki
Ed, >> For total beginners, novices this is useless information. >> Please NO, jargon to start with as in "individual divs stored in the single file" What are "divs"? >> Why for Pete's sake do you want to explain Excellent points. Changes made. Everyone, These are the kinds of comments I'm

Re: [tw] [TW5] Issues understanding filters

2016-06-03 Thread 'c pa' via TiddlyWiki
William, The code with comments <$list filter="[is[current]field:catégorie/article|livre/]"> <$count filter="[field:catégorie/citation/source{!!title}]"/>   <$button message="tw-new-tiddler" class="btn-invisible" param="$:/_Template/Citation">cit.,  <$count

Re: [tw] Select tiddler doesn't populate if only one option ??

2016-06-03 Thread 'c pa' via TiddlyWiki
Mark I always do the following for my selects: Select source: <$select tiddler="$:/Generate_source" default='Incoming'> * -- * <$list filter='[tag[DATA]sort[title]]'> >><$view field='title'/> -- You received this message because you are subscribed to the Google Groups

[tw] Re: Query about Makedatauri Macro

2016-05-27 Thread 'c pa' via TiddlyWiki
Josiah, The purpose of a data uri is to encode a web page or some part of a web page into a url. Thus, you don't need to have access to that external resource in order to display it. This is great for single page wikis like TiddlyWiki. Example: Clicking on the following . . .(from the datauri

[tw] Re: [TW5] list filter; How access particular element and particular output format

2016-05-27 Thread 'c pa' via TiddlyWiki
\define mymacro(first_parameter second_parameter third_parameter) This is the second parameter: $second_parameter$ \end \define mymacro2(first_parameter second_parameter third_parameter) This is the second component of the second parameter: <$set name="part" filter="$second_parameter$

[tw] Unexpected behavior for the allbefore:include operator

2016-06-01 Thread 'c pa' via TiddlyWiki
Good day, This behavior requires me to add a +[first[]] block and then a +[rest[]] block all over the place Code being executed <$list filter="one two three four" variable="component"> <$count filter="one two three +[allbefore:include]" /> Expected results 1 2 3 4

Re: [tw] Re: Navigating and transcluding Slices...Missing Features for the atomic concept:

2016-06-17 Thread 'c pa' via TiddlyWiki
>> Can you give an example of #3. I've never had luck calling a widget from inside a widget and I would like to know how it's done Oh right. I do all my editing from dashboards because all my tiddlers are structured. The concept is as follows: Analysis # Decide on a structure for

[tw] Re: Introducing the <$dropaction> widget.

2016-06-21 Thread 'c pa' via TiddlyWiki
Matt, Awesome concept. I would love to use this. >> This plugin is available at my plugin library as the "DropAction Widget". So I followed these instructions and get a tiddler with http://mklauber.github.io/tw5-plugins/library/index.html in the url field. I saved and then I get "Undefined

Re: [tw] Re: Navigating and transcluding Slices...Missing Features for the atomic concept:

2016-06-17 Thread 'c pa' via TiddlyWiki
Folks, Whenever I feel the need to include slices in my tiddlers, I implement each slice using a combination of the following: 1. a field and an <$edit-text tag="textarea" $field="slicename" /> widget. 2. the same field and an <$transclude mode="block" $field="slicename" /> widget. 3. a tag

[tw] Re: TW5 - Make it read only permanently

2016-06-17 Thread 'c pa' via TiddlyWiki
Oh this is an easy one. #1 Edit the edit template and change it to look exactly like the view template #2 Open up the tiddlywiki in a text editor, find the shadow edit template, and make it look exactly like the view template. #Save the text file #Load in a browser and test -- You received

Re: [tw] Re: [TW5] TiddlyWiki code structure and documentation, try 2. Any volunteers?

2016-06-17 Thread 'c pa' via TiddlyWiki
I'm trying to do this same thing at tw-for-bunnies, but I'm approaching it from the other end. Here are my observations (some of which I'm thinking of on the fly) # As a user I need to understand the structure of widgets and macros so I can use them myself #* The structure of widgets and

[tw] Re: Getting Started.

2016-02-12 Thread 'c pa' via TiddlyWiki
>> If I was to start with one language which would bring the biggest benefit with the least effort? Tiddlywiki has its own group of "languages" You should learn them in this order: 1. wiki text- http://tiddlywiki.com/#WikiText 2. HTML

[tw] Re: Creator bug?

2016-01-19 Thread 'c pa' via TiddlyWiki
>> I am clearly not the creator of the tiddler, have I found a bug? You clearly are the only creator of that Tiddler that is available for the application to hang onto. Previously there was no name to put as the creator. Now that there is one available, the first editor becomes the creator.

[tw] Re: [TW5] Commenting Plugin (Google+/DISQUS)

2016-01-19 Thread 'c pa' via TiddlyWiki
>> implemented comments on my tiddlywiki site using hashover, I went to the site listed and posted some comments. 1. When I hit the "save" button on the comment, the page tries to navigate away 2. The comments don't seem to save

[tw] Re: [TW5] How to create a tag pill from an [[aliased|alias]] link?

2016-02-18 Thread 'c pa' via TiddlyWiki
You could also define a macro to display the link with title. \define mytag(title, link) [[$title$|$link$]] \end <> -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email

[tw] Re: A View Mode Editor and a simple Calcualtor

2016-04-08 Thread 'c pa' via TiddlyWiki
Yes the title is inviolate, meaning if you want to manage first name and surname as separate fields (make sure to add Middle Initials) and display the record as {{!!first}} {{!!mi}} {{!!last}} then I would go with the GUUID idea and hide the title. I'd also store the {{!!first}} {{!!mi}}

[tw] Re: [TW5] Overriding $:/core/images/save-button with a PNG file

2016-04-08 Thread 'c pa' via TiddlyWiki
Excellent: So what twaddle says is that you need to provide styling for your icon like .tc-dirty-indicator {border: 3px solid red} or something like that -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop

[tw] Re: A View Mode Editor and a simple Calcualtor

2016-04-05 Thread 'c pa' via TiddlyWiki
To edit a tiddler you have open in view mode you need to have edit widgets embedded in the page template. The downside, you can't edit the tiddler's text in view mode. You can easily change field values in view mode. by having the template create select and/or edit widgets. The other option

[tw] Re: Linking to definitions

2016-04-05 Thread 'c pa' via TiddlyWiki
Ah hah. Try this \define showTerm(term) $term${{glossary##$term$}} \end TermDefinition <$list variable="term" filter="[[glossary]indexes[]]" > <$macrocall $name="showTerm" term=<> /> As shown here: http://cpashow.tiddlyspot.com/#glossary:glossary%20[[List%20Terms]] -- You received this

[tw] Re: Linking to definitions

2016-04-08 Thread 'c pa' via TiddlyWiki
Lyn, Yes. TiddlyWiki can be used for context based definitions. Of course to make it work you need well defined contexts and terms. I've created a demo of what you can do with context based definitions here: http://cpashow.tiddlyspot.com/#Context%20based%20definitions I've often thought about

[tw] Re: A View Mode Editor and a simple Calcualtor

2016-04-08 Thread 'c pa' via TiddlyWiki
Hegert, The techniques that I am using are as follows: 1. Create a defined tag for each object type (person, company, call, document, etc. ) (tag names are all lower case) 2. Create a tiddler for each object type tag and tag that tiddler with "object" 3. Edit the object tiddler to create an

[tw] Re: [TW5] Using sort order field, changing sort order

2016-04-10 Thread 'c pa' via TiddlyWiki
Matthew, Here's an example of how to do this. I did it as a table. To make it work like you want you'll have to edit the html in the example. http://cpashow.tiddlyspot.com/#Sort%20List -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To

[tw] Re: CSS for tooltips in link widget?

2016-03-21 Thread 'c pa' via TiddlyWiki
On Monday, March 21, 2016 at 8:34:08 PM UTC-7, c pa wrote: > > David, > > I looked into it. TiddlyWiki 5 converts the tooltip attribute into an html > title attribute. The title attribute can't be styled. So, to get the effect > you are looking for you'ld have to do some css trick like those

[tw] Re: [TW5] How to put "[["<>"]]" to tiddler?

2016-03-05 Thread 'c pa' via TiddlyWiki
OK, I see two spots in your code where you are using variables that are not local to the ttt macro. I've always had problems when I don't pass in the variables explicitly Try calling the macro with <$macrocall $name="ttt" listName=<> tiddlerName=<> /> And change the macro like this so it

[tw] Re: [TW5] How to put "[["<>"]]" to tiddler?

2016-03-05 Thread 'c pa' via TiddlyWiki
Ah now I see, I made a sample site for you here : http://cpashow.tiddlyspot.com/#Flower%20Editor:macro_flowerchooser%20[[Flower%20Display]]%20[[Flower%20Editor]] -- You

[tw] Re: [TW5] How to put "[["<>"]]" to tiddler?

2016-03-04 Thread 'c pa' via TiddlyWiki
This is my guess at what you are doing #1 You place the name of a tiddler in another tiddler named $:/temp/generated-list-demo-state-$(TestList)$ #2 In the named tiddler you have an image #3 You have another tiddler named $:/_tile_images with some display logic that when transcluded displays the

Re: [tw] [TW5] Filter output "format" is either links or string - that's a problem!

2016-04-01 Thread 'c pa' via TiddlyWiki
You can use $list instead of set Paste this into your tiddler and you get one item at a time: <$list variable="first" filter="[list[tid!!text]first[]]"> <> <$list variable="second" filter="[list[tid!!text]nth[2]]"> <> <$list variable="third" filter="[list[tid!!text]nth[3]]"> <>

  1   2   >