[tw] Re: help needed in making a "n" minute timer macro

2017-12-11 Thread @TiddlyTweeter
Well it counts UP :-) And doesn't reset when you click the "Start Timer". But definitely looks in the general direction on the counter part of your project. J x On Monday, 11 December 2017 13:03:14 UTC+1, cpedia...@gmail.com wrote: > > he i think after a lot of quarelling with the computer

[tw] Re: help needed in making a "n" minute timer macro

2017-12-11 Thread PMario
On Monday, December 11, 2017 at 11:23:34 AM UTC+1, cpedia...@gmail.com wrote: > My quizzing platform is to be like this: ... I think that's a description we can work with ;) -m -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe

[tw] Re: help needed in making a "n" minute timer macro

2017-12-11 Thread @TiddlyTweeter
We seriously need a TIME & TIMING section better documented. I'm not able to help you solve this but I do know there has been lots of stuff done on timing. I did see a countdown made by someone in a quiz. I just can't find it. Its somewhere. Best wishes Josiah On Monday, 11 December 2017

[tw] Re: help needed in making a "n" minute timer macro

2017-12-11 Thread cpedia . disqus
ah .. so much to know :) .. thank you so much for your thoughts .. My quizzing platform is to be like this: Landing page where you type in name and click "Start Test" When you click "Start Test" the following happens: 1. Countdown timer starts in right hand corner above sidebar (or somewhere

[tw] Re: help needed in making a "n" minute timer macro

2017-12-11 Thread PMario
On Monday, December 11, 2017 at 9:43:55 AM UTC+1, cpedia...@gmail.com wrote: > > Nope it doesnt .. lots of warnings come up :( > OK ... We are all very "implementation oriented" ... My problem now is, that you didn't answer any of my questions. Since the code doesn't do what you want, imo we

[tw] Re: help needed in making a "n" minute timer macro

2017-12-11 Thread cpedia . disqus
Not stop watch ..i meant countdown timer ,,.. On Monday, December 11, 2017 at 2:13:55 PM UTC+5:30, cpedia...@gmail.com wrote: > > Nope it doesnt .. lots of warnings come up :( > > However i was able to manipulate the $:/plugins/ajh/tiddlytime/time.js in > http://tiddlytime.tiddlyspot.com/ and

[tw] Re: help needed in making a "n" minute timer macro

2017-12-11 Thread PMario
On Monday, December 11, 2017 at 8:42:18 AM UTC+1, cpedia...@gmail.com wrote: > > Use Case: some sort of quizzing platform where a countdown is initiated > once the quiz starts > That's interesting and something completely different, to my thoughts :) > and once the time is up navigate to a

[tw] Re: help needed in making a "n" minute timer macro

2017-12-10 Thread cpedia . disqus
hey Pmario, Sorry abt the lack of clarity, I shall explain. Use Case: some sort of quizzing platform where a countdown is initiated once the quiz starts and once the time is up navigate to a tiddler where responses can be submitted I tried doing something in the last few hours (I have no idea

[tw] Re: help needed in making a "n" minute timer macro

2017-12-10 Thread PMario
On Sunday, December 10, 2017 at 8:00:05 AM UTC+1, cpedia...@gmail.com wrote: > > it would be also good to get the minutes and seconds in seperate temp > tiddlers as the timer progresses so that after a particular time has passed > some action can be made to happen .. > IMO you need to be a bit

[tw] Re: Help on Some Plugins

2017-10-06 Thread RichardWilliamSmith
The thing here is that you probably don't want to/need to "change the way h3 tags are rendered" - because the whole UI is being rendered through Tiddlywiki templates etc. there is probably a better mechanism to get at what you want to change, rather than trying to over-ride core behaviour,

[tw] Re: Help on Some Plugins

2017-10-06 Thread TonyM
K, Can you explain why you want to do this?. The Reason I ask is you are asking for a specific solution, not defining the problem. Since others are more familiar with tiddlywiki, we may be able to solve your root problem not the one you think you have. Perhaps even CSS could be used? Regards

[tw] Re: Help on Some Plugins

2017-10-06 Thread K
Perhaps I didn't understand the problem before, due to tiddlywiki's internal strucure, so I need to rephrase what it is exactly what I want to do: 1. I want to change the way h? tags are rendered. That is to say, I want to add another element right after the h tag when it is rendered. Do I

[tw] Re: Help on Some Plugins

2017-10-06 Thread RichardWilliamSmith
Hi K, The h3's are generated by /core/modules/parsers/wikiparser/rules/heading.js Let us know how you get on. Regards, Richard On Saturday, October 7, 2017 at 4:38:51 AM UTC+11, K wrote: > > Perhaps instead of doing that, if I could find where TW parses and renders > the content, I could

[tw] Re: Help on Some Plugins

2017-10-06 Thread Jed Carty
how is it any less feasible than putting in the tags themselves? You make the macros called h3 and /h3, than instead of putting you just put <> and instead of you put <> -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this

[tw] Re: Help on Some Plugins

2017-10-06 Thread K
Perhaps instead of doing that, if I could find where TW parses and renders the content, I could select all the nodes/arrays and filter them to modify what I want ie. write an if statement inside the parse loop so that it modifies how the h3 tag is rendered. On Friday, October 6, 2017 at

[tw] Re: Help on Some Plugins

2017-10-06 Thread K
Perhaps instead of doing that, if I could find where TW parses and renders the content, I could select all the nodes/arrays and filter them to modify what I want ie. write an if statement inside the parse loop so that it modifies how the h3 tag is rendered. On Friday, October 6, 2017 at

[tw] Re: Help on Some Plugins

2017-10-06 Thread K
I know that TW takes the tiddler data and renders it. Every time TW senses a change it refreshes it. Instead of putting the code outside of the system, what I want to do is modify how tiddlywiki renders this data. In your words, I want to modify the widget; I just don't know which one. I have

[tw] Re: Help on Some Plugins

2017-10-06 Thread Jed Carty
I agree with BJ, doing this in tiddlywiki is this task that is better suited to a wikitext than javascript. In my experience using document.querySelectorAll(..) in a wiki leads to strange edge cases because everything can be re-rendered individually. Do you have existing html that you are

[tw] Re: Help on Some Plugins

2017-10-06 Thread BJ
Are you asking (in general) how the dom can be manipulate after tiddlywiki has created it? TW5 is similar to react, it creates the dom using other elements. Tw creates its own tree, a tree of widgets, it is the result of compiling wikitext (or markdown). A widget create dom elements and link

[tw] Re: Help on Some Plugins

2017-10-05 Thread K
That's really helpful information BJ, but I've finally isolated what I want to do - I want to put a section of code to change the way tiddlywiki renders html tags, but I have no idea where - the script below takes h3 tags and appends a link floating to the right of them: function appendH3() {

[tw] Re: Help on Some Plugins

2017-10-05 Thread BJ
Have at look at this thread https://groups.google.com/forum/#!msg/tiddlywiki/NwOI-QER2ig/lSLS3XolwDoJ all the best BJ On Thursday, October 5, 2017 at 4:32:16 AM UTC+1, K wrote: > > Ok, Ive written a function... > Where do I put it? > > > function appendH3() { > var my_elem =

[tw] Re: Help on Some Plugins

2017-10-04 Thread K
Ok, Ive written a function... Where do I put it? function appendH3() { var my_elem = document.getElementsByTagName(h3); var appender1 = document.createElement(a); appender1.href = "#tw-href000"; appender1.style.float='right'; appender1.textContent = '[Top]';

[tw] Re: Help on Some Plugins

2017-10-04 Thread K
It seems like I can mess aroudn with the page template to call a script to append stuff. Would that work? (Since I have disabled the

[tw] Re: Help on Some Plugins

2017-10-04 Thread K
Perhaps, I would have to find the code where a page is rendered and run a script there to put this element before the h3. Any idea what renders the tiddler? On Wednesday, October 4, 2017 at 5:46:57 PM UTC-7, RichardWilliamSmith wrote: > > You'd probably need to include jQuery, but I'm not sure

[tw] Re: Help on Some Plugins

2017-10-04 Thread RichardWilliamSmith
You'd probably need to include jQuery, but I'm not sure it's a great idea. You have no guarantees about when any individual piece of the UI will be updated and re-drawn because of the way Tiddlywiki uses the DOM. Instead of adding code that way, it's might be better to learn a bit more about

[tw] Re: Help on Some Plugins

2017-10-04 Thread K
Ok thanks, I've managed to get something working, but how do I get this jquery line to run on every page? > $( $( "h3" ) ).append( "[Top]" ); On Wednesday, October 4, 2017 at 9:33:34 AM UTC-7, Jed Carty wrote: > > If you want to add javascript globally than you can write the javascript >

[tw] Re: Help on Some Plugins

2017-10-04 Thread Jed Carty
If you want to add javascript globally than you can write the javascript inside a tiddler and put it inside script tags and tag the tiddler with $:/tags/RawMarkup Then you save and reload your wiki and the javascript should be loaded. -- You received this message because you are subscribed to

[tw] Re: Help in understanding this code

2017-09-25 Thread passingby
Thanks Mark. I was not seeing it and now suddenly i can. 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

[tw] Re: Help in understanding this code

2017-09-25 Thread 'Mark S.' via TiddlyWiki
The $(...)$ syntax means "substitute the variable defined before this macro was invoked". So, "thing" was defined by <$set>. The contactTabsMacro is called within the <$set>... tags so $(thing)$ is available inside of contactTabsMacro. Mark On Monday, September 25, 2017 at 9:39:29 AM UTC-7,

[tw] Re: Help in understanding this code

2017-09-25 Thread Jed Carty
It also means that I should probably go through my old work and update everything to use more descriptive names. I am surprised anyone is looking at that anymore, I had mostly forgotten about it. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group.

[tw] Re: Help with TW for iOS

2017-09-18 Thread @TiddlyTweeter
There is a dedicated group for it. "Quine" at https://groups.google.com/forum/#!forum/quine-app -- 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: Help with modal editing of a tiddler fields

2017-09-15 Thread peuhpeuh singe
Good to know you are on the point. Considering your suggestions : I considered only one todo but why not many... My main point is not about the "present a dynamic summary" but about displaying a proper form in a modal as for now my solution does not work... Can't wait to see your proposal !

[tw] Re: Help with modal editing of a tiddler fields

2017-09-15 Thread PMario
Hi, Only had a look at your description. ... IMO there's a conceptual problem. ... at least for me. But the concept is interesting. I'll probably think about it a little bit more. -m On Friday, September 15, 2017 at 11:11:56 AM UTC+2, peuhpeuh singe wrote: > > I use tiddly wiki to deal with

[tw] Re: Help With the Strex Macro

2017-08-27 Thread Stephan Hradek
Am Sonntag, 27. August 2017 17:48:21 UTC+2 schrieb Thomas Elmiger: > > Concerning hover effects and :before I am not sure about the accessibility > of such solutions. Touch devices and screen readers might have difficulties > with those. > > Change the macro to: \define fn(name) <$link

Re: [tw] Re: Help With the Strex Macro

2017-08-27 Thread Thomas Elmiger
K schrieb am So. 27. Aug. 2017 um 17:56: > So there's no other way to set the <> and class without a > button? Not one that I would know of. > -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group

[tw] Re: Help With the Strex Macro

2017-08-27 Thread K
So there's no other way to set the <> and class without a button? Sunday, August 27, 2017 at 8:48:21 AM UTC-7, Thomas Elmiger wrote: > > Hi > > As the author of the strex macro I have to admit that for K’s requirement > of showing the note on hover I think the best way is the last one: not to

[tw] Re: Help With the Strex Macro

2017-08-27 Thread Thomas Elmiger
Hi As the author of the strex macro I have to admit that for K’s requirement of showing the note on hover I think the best way is the last one: not to use strex at all :) strex stores the state (open/closed) in state tiddlers. We need a cklick to create or change these. Concerning hover

[tw] Re: Help With the Strex Macro

2017-08-27 Thread K
Ok thanks. On Sunday, August 27, 2017 at 3:41:51 AM UTC-7, Stephan Hradek wrote: > > > > Am Sonntag, 27. August 2017 08:52:21 UTC+2 schrieb K: >> >> I appreciate the help here, but I left out some information in my first >> post, the macro has already been adapted, and I'm not to proficient in

[tw] Re: Help With the Strex Macro

2017-08-27 Thread Stephan Hradek
Am Sonntag, 27. August 2017 08:52:21 UTC+2 schrieb K: > > I appreciate the help here, but I left out some information in my first > post, the macro has already been adapted, and I'm not to proficient in > scripting. If you still want to help, I've thrown together an empty > tiddlywiki file

[tw] Re: Help With the Strex Macro

2017-08-27 Thread Stephan Hradek
Am Sonntag, 27. August 2017 08:52:21 UTC+2 schrieb K: > > I appreciate the help here, but I left out some information in my first > post, the macro has already been adapted, and I'm not to proficient in > scripting. If you still want to help, I've thrown together an empty > tiddlywiki file

[tw] Re: Help With the Strex Macro

2017-08-26 Thread codacodercodacoder
That's a pretty nifty use of the ::before pseudo element. Love it. On Saturday, August 26, 2017 at 4:32:50 PM UTC-5, Stephan Hradek wrote: > > As there was a small typo in the CSS and I wanted to experiment with a > macro, please see below a macro-version. > > CSS: > span.strex:before { >

[tw] Re: Help With the Strex Macro

2017-08-26 Thread Stephan Hradek
As there was a small typo in the CSS and I wanted to experiment with a macro, please see below a macro-version. CSS: span.strex:before { content:"\00a0[...]\00a0"; background-color: lightgray; } span.strex > span { display: none; } span.strex:hover:before { content:""; margin-right: 0em; }

[tw] Re: Help With the Strex Macro

2017-08-26 Thread Stephan Hradek
I don't know the macro and I don't want to dive into it, but here is a starting point for you using pure CSS: CSS Tiddler: span.strex:before { content:"... "; } span:strex > span { display: none; } span.strex:hover:before { content:""; } span.strex:hover > span { display:inline; } Strex is

[tw] Re: Help with listwidget (getting filter results to link to title)

2017-08-23 Thread 'Mark S.' via TiddlyWiki
You could try "[tag[Lexeme]each:list-item[title]get[combo]sort[]]" for the filter and then switch back to <$view field=title> (because now it's a list of combos ... if that's what you wanted) Mark On Wednesday, August 23, 2017 at 9:12:56 AM UTC-7, Silvercat wrote: > > 'chanti' is the combo

[tw] Re: Help with listwidget (getting filter results to link to title)

2017-08-23 Thread Silvercat
Got it working just the way I want. I may be disportionately proud of myself, but this sort of thing isn't really in my natural skillset. Thank you all for all your help and your patience with my n00b questions. On Wednesday, August 23, 2017 at 9:12:56 AM UTC-7, Silvercat wrote: > 'chanti' is

[tw] Re: Help with listwidget (getting filter results to link to title)

2017-08-23 Thread Silvercat
'chanti' is the combo form for the tiddler 'chanyki'. combo chanti created 2016050323320 creator Silvercat english [[color]] [[skin]] [[surface]] modified 20170821233214208 modifier Silvercat tags ch Nouns BodyParts PartsofThings Quality Lexeme to-translate title chanyki type

[tw] Re: Help with listwidget (getting filter results to link to title)

2017-08-23 Thread Matthew Lauber
If the tiddler doesn't exist {{!!title}} will be empty, and so the link won't work, and the <$view field-"title" /> will also be an empty string. My advise would be to do the following: <$list filter="[tag[Lexeme]each:list-item[combo]sort[]]" variable="title"> <$link to=<>><> this assigns

[tw] Re: Help with listwidget (getting filter results to link to title)

2017-08-21 Thread 'Mark S.' via TiddlyWiki
Hmm, "chanti", for instance, doesn't show up because there is no tiddler called "chanti". So you must have been hoping to link to some tiddler by some field or characteristic. So ... what is the connection? Good luck! Mark On Monday, August 21, 2017 at 5:36:05 PM UTC-7, Silvercat wrote: > >

[tw] Re: Help with listwidget (getting filter results to link to title)

2017-08-21 Thread Silvercat
Yeah, I can't get it to actually link to the title. <$list filter="[tag[Lexeme]each:list-item[combo]sort[]]"> <$link to={{!!title}}><$view field="title"/> On Monday, August 21, 2017 at 3:08:13 PM UTC-7, RichardWilliamSmith wrote: > You probably need to wrap the title (inside the $list

[tw] Re: Help with listwidget (getting filter results to link to title)

2017-08-21 Thread RichardWilliamSmith
You probably need to wrap the title (inside the $list element) with <$link> tags, possibly specifying the to="" field. Post the whole block of code if this is unclear. RR On Tuesday, August 22, 2017 at 5:30:46 AM UTC+10, Silvercat wrote: > > It's my conlang lexicon again (google drive link if

[tw] Re: Help! I killed my Node TW

2017-07-19 Thread Captain Packers
I deleted a bunch of theme related tiddlers that started with $__ and was able to recover On Wednesday, July 19, 2017 at 5:21:38 PM UTC-4, Captain Packers wrote: > > I killed my node TW while messing around with formatting changes. Now when > I open it, all links are completely unresponsive,

[tw] Re: Help with default tiddler templates.

2017-03-08 Thread Mat
Hi Jason! To put macros in macros you can use the macrocall widget. This is a more primitive building block in TW. So basically you tell the macrocall widget which macro it is you want to use (the toc macro) and then which other macro (or whatever) that should be the input argument to that

Re: [tw] Re: Help: ArticleTiddlers - unit tiddler showing multiple sequenced tids

2016-09-02 Thread Jeremy Ruston
Hi Mat > It turns out the text-slicer is much too complex for me. It probably covers > what Article Tiddlers aims at and I'd be more than happy if it were > redesigned so it provided a good UI for this, but as it stands it was clearly > created from a different starting point Well,

[tw] Re: Help: ArticleTiddlers - unit tiddler showing multiple sequenced tids

2016-09-02 Thread Mat
*1)* I wish to identify which tiddlers have the *current tiddler title* - say " *foo*" - listed in their *paragraphs* field. <$set name="parent" filter="[all[tiddlers]has[paragraphs]search:paragraphs ]"> ...but "search" is too greedy, accepting both tiddlers regerdless if they have "foo" or

Re: [tw] Re: Help: ArticleTiddlers - unit tiddler showing multiple sequenced tids

2016-08-30 Thread Jeremy Ruston
Hi Tobias > FWIW, I think one hard problem that should be solved in this context > is that I possibly not only want a flat list but rather a tree / outline > whereas some tiddlers would be sub-chapters to others. The current text-slicer edition slices HTML documents into paragraphs using

[tw] Re: Help: ArticleTiddlers - unit tiddler showing multiple sequenced tids

2016-08-30 Thread Mat
@Tobias tree /ouline - a quick test merely using .paragraph {margin-left:2em;} seems to do the trick. :-) <:-) -- 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: Help: ArticleTiddlers - unit tiddler showing multiple sequenced tids

2016-08-29 Thread Tobias Beer
Hi Mat / Matabele, FWIW, I think one hard problem that should be solved in this context is that I possibly not only want a flat list but rather a tree / outline whereas some tiddlers would be sub-chapters to others. The only way to model that right now appears to be tagging or some list field

[tw] Re: Help: ArticleTiddlers - unit tiddler showing multiple sequenced tids

2016-08-29 Thread Matabele
Hi Mat There's a replace[] filter -- you could replace '[My Title]' with "['Draft of' My Title]' in the list. Must say, I've never tried to do this in the story river to see what effect this has. Not too sure it would work, as the process of creating a draft, then replacing the old tiddler

[tw] Re: Help: ArticleTiddlers - unit tiddler showing multiple sequenced tids

2016-08-29 Thread Mat
Mark S. wrote: > > I'm probably reading too fast, but how is this different from what is > achieved with the Text-Slicer edition? > Ah, interesting! In deed there is overlap which I had not considered. The whole TS edition there is much more ambitious than Article Tiddlers, due to its

[tw] Re: Help: ArticleTiddlers - unit tiddler showing multiple sequenced tids

2016-08-29 Thread 'Mark S.' via TiddlyWiki
I'm probably reading too fast, but how is this different from what is achieved with the Text-Slicer edition? Thanks! Mark On Sunday, August 28, 2016 at 7:09:16 AM UTC-7, Mat wrote: > > Help to make this suitable to be included in the standard TW distribution! > > ArticleTiddlers

[tw] Re: Help: ArticleTiddlers - unit tiddler showing multiple sequenced tids

2016-08-29 Thread Mat
Thanks again Matabele! If I understand, ListOps is an action widget. Wouldn't this mean that the viewer has to click some button (other than the title link) to see the article? However, ListOps would come in handy with something I'm fiddling with right now; Clicking a special *paragraph edit

[tw] Re: Help: ArticleTiddlers - unit tiddler showing multiple sequenced tids

2016-08-29 Thread Matabele
Hi Mat The snapshots are stored as a list of titles in a field or index somewhere. I wrote this before developing the ActionListops widget and it was, therefore, limited to a permaview type scenario. However, using the ActionListops widget with append[] and remove[] filters, lists of tiddler

[tw] Re: Help: ArticleTiddlers - unit tiddler showing multiple sequenced tids

2016-08-29 Thread Mat
Matabele - thanks for your reply! That does look promising - but can your variant show several such snapshots below each other and opened at different times? Or does opening one snapshot necessarily *replace *what is currently in the story river, like a *permaview*? Something like

[tw] Re: Help: ArticleTiddlers - unit tiddler showing multiple sequenced tids

2016-08-28 Thread Matabele
Hi Mat There's an easy way to do this -- simply save the list of titles from the current story river to a list (a snapshot) -- then restore this snapshot to the story river. There's been a demo here for some time (the Stories tab in the sidebar): \define

[tw] Re: help on tiddlywiki quiz

2016-08-23 Thread Dominik P.
thats perfect! thank you! Am Montag, 22. August 2016 01:12:41 UTC+2 schrieb Mark S.: > > If you don't mind buttons, this might work (in your linkage templated): > > \define vroom(closeme:"tender" title:"Untitled") <$button><$action-navigate > $to="$title$"/><$action-sendmessage

[tw] Re: help on tiddlywiki quiz

2016-08-21 Thread 'Mark S.' via TiddlyWiki
If you don't mind buttons, this might work (in your linkage templated): \define vroom(closeme:"tender" title:"Untitled") <$button><$action-navigate $to="$title$"/><$action-sendmessage $message="tm-close-tiddler" $param= "$closeme$"/>$title$ <$list filter="[is[current]tag[Quiz]]"

[tw] Re: help on tiddlywiki quiz

2016-08-21 Thread Dominik P.
is there a way to close the current tiddler when link is clicked with this? like with http://www.tiddlytools.com/#NextTiddler Am Sonntag, 21. August 2016 22:22:06 UTC+2 schrieb Mark S.: > > You need to take out the prior.js and next.js, since TW5 now already has > filters with those names in the

[tw] Re: help on tiddlywiki quiz

2016-08-21 Thread Dominik P.
thanks a ton! you made my day :D Am Sonntag, 21. August 2016 22:22:06 UTC+2 schrieb Mark S.: > > You need to take out the prior.js and next.js, since TW5 now already has > filters with those names in the core. However, they don't do the filters > you want do. Instead use before and after

[tw] Re: help on tiddlywiki quiz

2016-08-21 Thread 'Mark S.' via TiddlyWiki
You need to take out the prior.js and next.js, since TW5 now already has filters with those names in the core. However, they don't do the filters you want do. Instead use before and after filters. This worked for me: <$list filter="[is[current]tag[Quiz]]"> <$list

[tw] Re: help on tiddlywiki quiz

2016-08-21 Thread Dominik P.
thanks that did the fix for http://tw5magick.tiddlyspot.com/#Overview%20of%20all%20Questions http://tw5magick.tiddlyspot.com/#QuizionLinkage still breaks my head <$list filter="[is[current]tag[Quiz]]"> <$list filter="[tag[Quiz]previous[]]">Back to <$link><$view field="title"/> <$list

[tw] Re: help on tiddlywiki quiz

2016-08-21 Thread 'Mark S.' via TiddlyWiki
About the overall listing, probably there have been changes in TW5 in the last 2 years. This version works closer to the original: <$list filter="[tag[Quiz]tags[]] -Quiz +[sort[title]]"> ! <$view field="title"/> <$list filter="[all[current]tagging[]] +[tag[Quiz]] +[sort[title]]"> <$link><$view

[tw] Re: Help on a filter argument, please

2016-08-20 Thread Matabele
Hi The now macro may be used to get the day-of-the week for today: <> This code should, therefore, transclude the text of all tiddlers tagged with todays day-of-the-week: <$set name=dow value=<>> <$list filter="[all[tiddlers]tag]"> <$transclude/> The transclusion will, however, be dynamic

[tw] Re: Help on a filter argument, please

2016-08-20 Thread Mat
Unless I misunderstand your case, I think it is solvable with wikitext. I made this . Never mind the... irrelevant stuff. I'm too tired ATM to get that generated tiddler link to display correctly but it is either to exchange the wikify widget or

[tw] Re: Help on a filter argument, please

2016-08-20 Thread CPorter9
Thanks, I will try this tonight. On Saturday, August 20, 2016 at 10:29:30 AM UTC-5, CPorter9 wrote: > > (TW5) > > I want to transclude a tiddler into a new journal tiddler, and I want the > transcluded tiddler to change depending on what day the journal tiddler was > created on. > > All the

[tw] Re: Help on a filter argument, please

2016-08-20 Thread 'Mark S.' via TiddlyWiki
I think you need a specialty filter or javascript macro. Attached is my quick attempt that you can play with. ABSOLUTELY make sure you have a backup!! Then drag and drop the attached file into your TW, making sure the green import bar shows up, and then selecting "import" for the "Date Test"

Re: [tw] Re: Help Me Get Past A Nearly Insurmountable Startup Hurdle on TW5 (experienced TWC user)

2016-08-17 Thread Arlen Beiler
Hi Steve, glad to be of help. The way TiddlySpace, TiddlyWeb, and the NodeJS server work is that all of them serve a copy of your tiddlywiki to the browser and then as you make changes each tiddler is saved individually back to the server, changes from the server also end up on the TiddlyWiki in

[tw] Re: Help Me Get Past A Nearly Insurmountable Startup Hurdle on TW5 (experienced TWC user)

2016-08-16 Thread stevesuny
(stripped out comments above). This is an interesting and informative discussion; thanks all for the contributions. Moving to TW5 was a bit painful, but so worth it. Though I still do miss some of the TWC features as discussed above. There was one sentence that Arlen wrote: *As far as

Re: [tw] Re: Help Me Get Past A Nearly Insurmountable Startup Hurdle on TW5 (experienced TWC user)

2016-08-15 Thread Arlen Beiler
What most people don't know about the TiddlyWiki NodeJS version is that it can actually run a file server and rest API to serve and save TiddlyWikis. I've used it quite a bit and it works very well. The biggest advantage for you in using it is that one wiki can inherit another. The biggest

[tw] Re: Help Me Get Past A Nearly Insurmountable Startup Hurdle on TW5 (experienced TWC user)

2016-08-15 Thread PMario
On Monday, August 15, 2016 at 1:43:37 PM UTC+2, PMario wrote: > > >> >> D) Is it best practice to use TW-style wiki markup or something else, >> specifically, is the Markdown plugin officially supported? >> > > I personally use TW markup and I don't even need to see it rendered. It > just

[tw] Re: Help Me Get Past A Nearly Insurmountable Startup Hurdle on TW5 (experienced TWC user)

2016-08-15 Thread PMario
David, Welcome back! On Monday, August 15, 2016 at 3:42:49 AM UTC+2, da...@bakins-bits.com wrote: > > First my questions, which I hope you'll help me with, then, if you care, > the context. > > I want to use TW5 for notetaking, on Windows, but shared (not > simultaneously) between multiple

[tw] Re: Help Me Get Past A Nearly Insurmountable Startup Hurdle on TW5 (experienced TWC user)

2016-08-15 Thread PMario
On Monday, August 15, 2016 at 10:37:09 AM UTC+2, Mat wrote: > > da...@bakins-bits.com wrote: >> >> >> A) I can choose from TiddlyIE, Node.js, and TiddlyDesktop. >> > > > TiddlyIE - I'm guessing you know that there is no such thing. There is > regular TW used on IE. I can't tell anymore if IE is

[tw] Re: Help Me Get Past A Nearly Insurmountable Startup Hurdle on TW5 (experienced TWC user)

2016-08-15 Thread Mat
It seems to me a few things have been mixed up: To first answer your question; you should likely have regular TW5 and I'd recommend tiddlyspot. da...@bakins-bits.com wrote: > > First my questions, which I hope you'll help me with, then, if you care, > the context. > > I want to use TW5 for

[tw] Re: Help Me Get Past A Nearly Insurmountable Startup Hurdle on TW5 (experienced TWC user)

2016-08-15 Thread 'Birthe C' via TiddlyWiki
Hi David, I agree with Mark. You can forget about Tiddlyspace. It was great with TWc, not so with TW5 and it is closing soon. Birthe -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails

[tw] Re: Help Me Get Past A Nearly Insurmountable Startup Hurdle on TW5 (experienced TWC user)

2016-08-14 Thread 'Mark S.' via TiddlyWiki
Yes, TWC was great and in many ways better than TW5. But time marches on. I notice that TiddlyFox on Firefox isn't on your short list. I think you're likely to get a lot of varying opinions. You're probably just going to have try things and see what works best for you. For me, node.js is too

[tw] Re: help with filter please

2016-08-09 Thread 'Mark S.' via TiddlyWiki
I was able to work this out with the help of one of another's Jed's posts about tagging: <$list filter="[tag[UV]] +[listed[when]]" /> Mark On Tuesday, August 9, 2016 at 1:05:05 AM UTC-7, Rustem wrote: > > It's not tagging though. The lowest level is not tagged, but linked via a > field

[tw] Re: help with filter please

2016-08-09 Thread Rustem
It's not tagging though. The lowest level is not tagged, but linked via a field called "when". On Tuesday, August 9, 2016 at 12:19:47 AM UTC-7, Jed Carty wrote: > > Try '[tag[UV]tagging[]]', I think that should work. > -- You received this message because you are subscribed to the Google

[tw] Re: help with filter please

2016-08-09 Thread Jed Carty
Try '[tag[UV]tagging[]]', I think that should work. -- 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

[tw] Re: Help

2016-08-04 Thread 'Stephen Kimmel' via TiddlyWiki
Ahh. So the question is concerning filters and tying the check boxes to fields. This bit of code creates a checkbox which sets two fields, status and datecompleted, of the selected task tiddlers. I used an invisible button because I wanted to change two fields. If I only wanted to change one

[tw] Re: Help

2016-08-03 Thread Sergio Rolim
Olá a todos. Estou muito agradecido a todos pela sugestões que me esclareceram, a primeira intenção é somente aprender. Aprecio muito este sistema de tiddler. Onde não me expressei com clareza é a dificuldade que encontro em passar as opções de uma lista para outra. ex: All itens --> para

[tw] Re: Help

2016-08-03 Thread 'Birthe C' via TiddlyWiki
Hi Sergio, When you use float, you need to clear afterwards. Try to insert: Birthe -- 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: Help

2016-08-03 Thread Duarte Farrajota Ramos
Well it seems Sérgio doesn't speak Portuguese much better than he speaks English... :) He simple states: One tiddler with four columns "All Items", "Pending", "To-Do" and "Done" > Use a checkbox to distribute the lists. Printscreen attached. > So we are left wondering with what he wants. If

[tw] Re: Help

2016-08-03 Thread 'Stephen Kimmel' via TiddlyWiki
It looks like Sergio is seeing a formatting/styling issue here. He's gone to some lengths to style five boxes but they go beyond the limits of the tiddler. The Doing, Done and Footer boxes are covered up by the next tiddler. I think if someone could show him how to style his "ToDo" tab so

[tw] Re: Help

2016-08-03 Thread Sergio Rolim
Em terça-feira, 2 de agosto de 2016 23:40:46 UTC-3, Sergio Rolim escreveu: > > I do not speak english, help me please. > > > > > > > > > > > .box1 {width:200px; height:30px;display:inline; > -moz-border-radius: 10px; > border-radius: 10px; > margin:0.1em 0.1em ; >

[tw] Re: Help

2016-08-03 Thread Sergio Rolim
Em terça-feira, 2 de agosto de 2016 23:40:46 UTC-3, Sergio Rolim escreveu: > > I do not speak english, help me please. > > > > > > > > > > > .box1 {width:200px; height:30px;display:inline; > -moz-border-radius: 10px; > border-radius: 10px; > margin:0.1em 0.1em ; >

[tw] Re: Help

2016-08-03 Thread Sergio Rolim
Um tiddler com quatro colunas, Todos os itens, pendencias, a fazer e Feito, Usar uma checkbox para distribuir nas listas. Em quarta-feira, 3 de agosto de 2016 01:18:16 UTC-3, Duarte Farrajota Ramos escreveu: > > Português? Não é claro o que pretende fazer, pode clarificar? > > Portuguese? It's

[tw] Re: Help

2016-08-03 Thread Mat
Sergio Rolim wrote: > > I do not speak english, help me please. > translate <:-) -- 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: Help

2016-08-02 Thread Duarte Farrajota Ramos
Português? Não é claro o que pretende fazer, pode clarificar? Portuguese? It's not very clear what you want to do, could you clarify? On Wednesday, 3 August 2016 03:40:46 UTC+1, Sergio Rolim wrote: > > I do not speak english, help me please. > > > > > > > > > > > .box1

[tw] Re: Help

2016-08-02 Thread 'c pa' via TiddlyWiki
You have attached an html file that shows the control panel The control panel page shows the list of tiddlers to display when the tiddlywiki is started You have asked for help If you write a list of tiddler names in this box (as shown below) and then save, then the next time you start the

[tw] Re: Help with Template Transclusion

2016-07-01 Thread Eli B.
Thanks for your answer, Mark. Someone else private-messaged me with a similar solution to yours that did the trick. I suspected the solution was simple but I was complicating it with extra steps and extra lingo. On Friday, July 1, 2016 at 1:08:42 AM UTC+2, Mark S. wrote: > > It depends how you

[tw] Re: Help with Template Transclusion

2016-06-30 Thread 'Mark S.' via TiddlyWiki
It depends how you went about it. If you just used a button and an action widget, you can do something like this: <$button>Make tiddler with date <$action-sendmessage $message="tm-new-tiddler" title=<> tags="OneTag [[Another Tag]]" text=/> Which uses the "now" macro with a date format string.

  1   2   3   4   5   >