[tw] Re: [TW5] Q: Passing transcluded field of a variable tiddler as value to ActionSetFieldWidget

2015-06-23 Thread hobbyist writer
> <$tiddler tiddler=<>> > <$button> > COPY > <$action-setfield $tiddler=<> $field="text" $value={{!!refs}}/> > > > It works. Thanks a lot, Jed. Meanwhile I encountered another issue. I'm not sure if I have to open another post. Anyway, I just go ahead and ask here first. I would like to pre

[tw] Re: Class Register

2015-06-23 Thread hobbyist writer
The link was somehow broken at least for me. It's working now. It's definitely nice and helpful to see new use cases. Your implementation is neat as it is. Not cluttered. For creating new group/course/student, you might be interested in wrapping your code inside a tiddler. You can find a basic

[tw] Re: Class Register

2015-06-23 Thread Jed Carty
This looks good. While it may not be particularly complex this is the sort of thing we need. New and exciting additions to what TiddlyWiki can do are good, but having an example of an immediately useful application is a big part of what we need to get more attention for TiddlyWiki so making thin

[tw] Re: [TW5] Q: Passing transcluded field of a variable tiddler as value to ActionSetFieldWidget

2015-06-23 Thread Jed Carty
One way to do this is using the tiddler widget like this: <$tiddler tiddler=<>> <$button> COPY <$action-setfield $tiddler=<> $field="text" $value={{!!refs}}/> This may be able to be done using variables and macros, but the tiddler widget is a much simpler fix in this case. -- You received th

[tw] Re: Class Register

2015-06-23 Thread G McAlpine
It's using TW5 which I know shows a blank screen on older browsers e.g. IE9 What browser are you using? testregister.tiddlyspot.com On Wednesday, June 24, 2015 at 2:07:10 AM UTC+1, hobbyist writer wrote: > > Hi Gordon, > > I tried to have a look, but this is where I ended up: > > > > Best, > Me

[tw] Re: Class Register

2015-06-23 Thread hobbyist writer
Hi Gordon, I tried to have a look, but this is where I ended up: Best, Mehdi -- 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...@googlegroup

[tw] [TW5] Q: Passing transcluded field of a variable tiddler as value to ActionSetFieldWidget

2015-06-23 Thread hobbyist writer
Hi I need to copy the *text field* of a tiddler into a specific field of another tiddler. The tiddler titles are not known beforehand, because they are temporarily created and deleted on-demand with almost arbitrary (time-stamped) titles. So their names are passed through variables through Set

[tw] Class Register

2015-06-23 Thread G McAlpine
Hi, I've only been using TiddlyWiki for a couple of weeks although I'm sure I must have crossed paths with it some years ago and then forgotten about it. I've made a demo Class/Student Attendance Register on tiddlyspot.com called testregister and I thought I'd post it here as it may or may not

[tw] Re: [TWC] DatePlugin question

2015-06-23 Thread jpt
nnes On Tuesday, June 23, 2015 at 11:00:35 AM UTC-4, jpt wrote: > > Hello, > Using a suggestion that was made in this group I am able to display a > tiddler titled with a specific date ("20150623" for example) by writing > this: > <> > However I can not f

[tw] Re: Is it possible to edit core/templates/html-tiddler

2015-06-23 Thread PMario
On Tuesday, June 23, 2015 at 4:23:38 PM UTC+2, Michael LeSauvage wrote: > > [TW5] Or perhaps it's not even what I'm trying to do. What I want to do > is to remove the that includes the time of last editing from the > HTML template, which I *think* is in html-tiddler. However, every time I > t

[tw] Re: Static files configuration

2015-06-23 Thread PMario
I just did build editions/tw5.com, where the tiddlers are grouped in paths. Creating the static tiddlers, didn't preserve the path structure. I did rename About.tid to aa.tid it was still rendered to About.html So It uses the tiddler name inside of TW to create the .html files. There are

[tw] Re: "Also on this day" - reviewing a meeting of tiddlers

2015-06-23 Thread PMario
You can sort the by created, instead of modified. -m -- 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 grou

[tw] New ifttt channel maker

2015-06-23 Thread Danielo Rodríguez
Check it out here: https://ifttt.com/maker It is able to make any post or get request and also receive them. So theorically everything is possible! Off course with the help of ifft API that connects hundreds of services -- You received this message because you are subscribed to the Google Gro

[tw] Re: [TWC] DatePlugin question

2015-06-23 Thread Eric Shulman
On Tuesday, June 23, 2015 at 10:32:54 AM UTC-7, jpt wrote: > > For whatever reason I still have trouble with the code. > When I write < 8640).formatString('0MM0DD')}}>> it gives me "Error in macro > <>". > What did I miss? > You have an extra open parentheses, just before the first "new".

[tw] Re: [TWC] DatePlugin question

2015-06-23 Thread jpt
ing I used the WriteIt Plugin and all of the following lines display correctly: <> gives "20150623" (today's date); <> gives "19691231" (as mentioned in the answer); <> gives "19700101". However when I write: <> I get "*NaNNaNNaN*"

[tw] Re: [TW5] Building a Slideshow

2015-06-23 Thread Birthe C
Hi Francois, TalkyTalky also use two modified shadow tiddlers. $:/core/ui/ViewTemplate that makes it possible to change the background color in your tiddler using the field 'background-color', and $:/core/ui/ViewTemplate/next

[tw] Re: [TWC] DatePlugin question

2015-06-23 Thread Eric Shulman
On Tuesday, June 23, 2015 at 8:00:35 AM UTC-7, jpt wrote: > > Using a suggestion that was made in this group I am able to display a > tiddler titled with a specific date ("20150623" for example) by writing > this: > <> > However I can not figure out how to

[tw] Re: Is it possible to edit core/templates/html-tiddler

2015-06-23 Thread Michael LeSauvage
After continued searching, I found this in the viewtemplate/subtitle file and fixed it up (for IE9 I mean - works great everywhere else!). Thanks. Mike On Tuesday, June 23, 2015 at 10:23:38 AM UTC-4, Michael LeSauvage wrote: > > [TW5] Or perhaps it's not even what I'm trying to do. What I wan

[tw] [TWC] DatePlugin question

2015-06-23 Thread jpt
Hello, Using a suggestion that was made in this group I am able to display a tiddler titled with a specific date ("20150623" for example) by writing this: <> However I can not figure out how to format it so it displays a tiddler with a date other than today, e.g. tomorrow'

[tw] Is it possible to edit core/templates/html-tiddler

2015-06-23 Thread Michael LeSauvage
Or perhaps it's not even what I'm trying to do. What I want to do is to remove the that includes the time of last editing from the HTML template, which I *think* is in html-tiddler. However, every time I try to edit that file I get a stack overflow (I'm using the single file version and have

[tw] Re: [TW5] Building a Slideshow

2015-06-23 Thread francois godard
Hi Mario, Thanks for the tip,I realized I missed the post made 1 year ago or so. So I tried the punch theme and start playing with it. I get fairly nice results , but still more questions than answers ! What I did is the following Open talkytalky and drag and drop the punch theme into my tw. I d

Re: [tw] Re: [TW EDU] article on Digital Textbooks

2015-06-23 Thread Greg Davis
What others are doing in education EduKart Lands $1M To Increase Access To Education And Learning In India | TechCrunch http://techcrunch.com/2015/06/22/edukart-1-million-india/ "The startup was established in 2011 to help make education more accessible in India. Rather than bring learning onli

[tw] Re: [tw5] Bug in zoomin view if we delete or hide tiddlers

2015-06-23 Thread BJ
This seem to happen with the classing story mode as well cheers BJ On Tuesday, June 23, 2015 at 8:53:11 AM UTC+1, sini-Kit wrote: > > this bug was in all versions tw5 I test. for example go to > http://tiddlywiki.com/ to control panel and set appearance view to "zomin" > then create new tiddler w

[tw] Re: [tw5] Bug in zoomin view if we delete or hide tiddlers

2015-06-23 Thread BJ
Part of what you are see was fixed here for 5.1.9 https://github.com/Jermolene/TiddlyWiki5/pull/1706 but what sini-Kit is seeing is a new issue cheers BJ -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop re

[tw] Re: [tw5] Bug in zoomin view if we delete or hide tiddlers

2015-06-23 Thread RichardWilliamSmith
Hi sini-Kit - agreed this is weird. The problem only seems to happen when the tiddlers specified by the filter are in the story river when they're deleted and then they behave as if they are in a separate river of their own. It's then possible to get things in quite a mess - see attached screen

Re: [tw] Re: [TW EDU] article on Digital Textbooks

2015-06-23 Thread Felix Küppers
@Richard Forgot to say that your textbook examples are really well made, I'll definitely have a closer look at them. -- 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: Curious cut and paste behavior: could this be ported to TW?

2015-06-23 Thread Birthe C
Hi Alex, Have you tried the chrome ad on? http://tiddlyclip.tiddlyspot.com/#Upgrade%20Instructions. Birthe Den tirsdag den 23. juni 2015 kl. 07.23.40 UTC+2 skrev AlexHough: > > In the past I have used it I use Chrome now... Maybe I should revisit > Firefox, not used it for years (since ch

[tw] [tw5] Bug in zoomin view if we delete or hide tiddlers

2015-06-23 Thread sini-Kit
this bug was in all versions tw5 I test. for example go to http://tiddlywiki.com/ to control panel and set appearance view to "zomin" then create new tiddler with this button <$button> <$action-deletetiddler $filter="[tag[TableOfContents]]"/> remove if you press this button all tiddlers with