[tw] TiddlyWiki Community Challange!

2017-01-19 Thread PMario
Hi Folks, Thomas Elminger made a very nice typo in his post . >On Wednesday, January 18, 2017 at 8:44:14 PM UTC+1, Thomas Elmiger wrote: >Moans from other users about poor documentation with 100+ contributions:

[tw] Re: TiddlyWiki Community Challange!

2017-01-19 Thread PMario
-- placeholder for updates -- -- 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: Conveying: Moans about poor documentation

2017-01-19 Thread PMario
Hi Folks, I did create a TiddlyWiki Community Challenge ! Which may help us to get more stars and may be more contributors. Everyone, who posted to this thread, and didn't have starred the TiddlyWiki repo

[tw] Re: [TW5] NEW plugin: tobibeer/sparkl for simple inline sparkline diagrams

2017-01-19 Thread Tobias Beer
Hi Sylvain, What do you think of this another plugin ? Most likely, yes. With *sparkl* I have no aspirations to have it grow into a general purpose graphing plugin. > What I was thinking, it's for example : > I have a country per tiddler, with some custom fields, for example average >

[tw] Re: [TW5] Numbering Items With List Filter

2017-01-19 Thread Tobias Beer
Hi Michaela, Just use the below w/o extra newlines, since *you do not want additional paragraphs* that would otherwise be created owed to the parsing in block mode . <$list filter="[!has[draft.of]tag[whatever]!sort[however]]"> <$view field="title"/>

[tw] Re: [TW 5] Two Way Update for Editing Non-Orphan Tiddlers' Title

2017-01-19 Thread Tobias Beer
Hi Penguinlay, > After changing the title to Test2 to Test2Changed, the link to it from > Test1 also didn't change. > > But, rather render as link with no target. > Well, yes... because it's still pointing at *Test2*. While the next version will allow you to update entries in tags and list

[tw] Re: [TW5] NEW plugin: tobibeer/sparkl for simple inline sparkline diagrams

2017-01-19 Thread Chuck R.
So a sparkline graph is just a mini bar graph the height of a line of text? Thanks Tobias. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[tw] Re: TiddlyWiki user engagement

2017-01-19 Thread Chuck R.
All I'd like is a web page showing features of the standard out-of-the-box TW5 with some screenshots, then TW5 with add-ins with screen shots. Pretty pictures are important to get people to try something. We will also need examples of how people use TW5. I'm willing to have a link on my blog

[tw] Re: Hovercard for Wiki links?

2017-01-19 Thread Chuck R.
This would be a great feature for TW5 markdown too. I don't think the Common Markdown spec is even at v1.0 yet. It just stalls and stalls. -- 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] Numbering Items With List Filter

2017-01-19 Thread Matthew Lauber
Glad it got sorted out for you! -- 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

Re: [tw] Re: Trouble applying custom style to PRE html element

2017-01-19 Thread Webcorerad Bot
Hi Tobias, Thank you so much for your help and for the additional macro. All working as intended now. I’m still starting with TiddlyWiki and don’t understand it very well yet but since this is a relatively simple problem even the macro as helped me to understand how macros work a little better.

[tw] Re: Adding a tag to tiddler with existing tags

2017-01-19 Thread Tony Grosinger
This is great, thank you Jed. Can I take this one step further? I have now created a tiddler and marked it as a Macro. \define mark-complete() <$action-listops $field=tags $subfilter='+[append[Complete]]'/> \end Then in my task tiddlers I can just add a button which calls that Macro:

[tw] Re: Adding a tag to tiddler with existing tags

2017-01-19 Thread Tony Grosinger
Jed, I read somewhere on tiddlywiki.com that I should favor defining a macro and calling it from the button rather than putting actions in the button. Is this just an exception? Tobias, it sounds like tm-add-tag uses the fieldmangler under the covers. Are you proposing something different? If

[tw] Re: Trouble applying custom style to PRE html element

2017-01-19 Thread Tobias Beer
Hi webcorerad, Simply use basic html: code or for inline markup: code You can also wrap that up in a macro: title: $:/_my/macros/pre tags: $:/tags/Macro \define pre(code, class:"altstyle") code \end And then do: <> Or... <$macrocall $name="pre" code={{$:/that-tiddler-with-code}}/> Best

[tw] Re: [TW5] Presenting ToDoNow – a Beta Version of my ToDo-List-Plugin

2017-01-19 Thread Josiah
Ciao again Tobias Further to previous ... In case its relevant, I found the example of Jed's - Sortable table macros Best wishes Josiah -- You received this message because you are subscribed to the Google Groups

[tw] Re: Adding a tag to tiddler with existing tags

2017-01-19 Thread Tobias Beer
Hi Tony, It appears you may need the relic called FieldManglerWidget to get it to work: I kinda wish we could get rid of it entirely (no more dependencies of other widgets to it). Best wishes, Tobias. -- You received this message

Re: [tw] Running TW5 on TiddlyWeb

2017-01-19 Thread David Andel
Hi Robert, Have you placed your docs somewhere in the meantime? I would be very interested to learn how to do this. Thanks and best regards, David On Friday, 15 April 2016 10:08:03 UTC+2, Robert Kreuzer wrote: > > Hi Jeremy, > > thanks for the explanation, that makes sense to me. > > Right now

[tw] Re: Adding a tag to tiddler with existing tags

2017-01-19 Thread Jed Carty
I don't know of any reason to favour using a macro instead of putting widgets in the button directly. So if that is recommended it is news to me. And since I am answering anyway, the fieldmangler widget acts differently than most other widgets, you would use it like this: <$fieldmangler

[tw] Re: Adding a tag to tiddler with existing tags

2017-01-19 Thread Tony Grosinger
Maybe I should expand a little on exactly what I am trying to accomplish. I would like to make a button which can be very easily included in a large number of different tiddlers. This button would simply add a tag to that tiddler when clicked. Or, in more concrete terms, I want to have

[tw] Trouble applying custom style to PRE html element

2017-01-19 Thread webcorerad
Hello all, How are you? New user here and already in trouble... I want to create a second (additional) pre custom style based on the default pre style that comes with tiddlywiki. This is the code i have for the custom style based on the default one (i only have changed the background-colour

[tw] Re: Adding a tag to tiddler with existing tags

2017-01-19 Thread Jed Carty
Just remove the tiddler part and it will default to the current tiddler. Using action-listops it would be like this: <$button>DO EET!! <$action-listops $field=tags $subfilter='+[append[Complete]]'/> and using the fieldmangler widget: <$fieldmangler> <$button message=tm-add-tag

Re: [tw] Re: Lost work two times with tiddlywiki node version

2017-01-19 Thread Arlen Beiler
Also any logs from the server NodeJS would be helpful. Would more than one person be editing at the same time? On Jan 17, 2017 09:27, "Russell Cosway" wrote: > I have started to suffer this now. I am on a MacMini running MacOS Sierra > 10.12.2. I use Firefox 50.1.0

[tw] Re: Lazy Loading does not pull requested tiddlers

2017-01-19 Thread Tony Grosinger
To continue my testing I created a brand new tiddlywiki and started it using this command: ``` tiddlywiki testwiki --verbose --server 8082 $:/core/save/all text/plain text/html "" "" "0.0.0.0" ``` I saved an image, then reloaded. The image loaded just fine. Next I changed the command to this:

[tw] Re: Lazy Loading does not pull requested tiddlers

2017-01-19 Thread Tony Grosinger
Here are some additional details, hopefully they will be helpful because I am quite stumped. In this log, I have just refreshed the page and nothing else. There is a 404 error coming from the PutSaver, however I saw a similar error (but 405) coming from tiddlywiki.com, so I am not sure if that

[tw] Re: Adding a tag to tiddler with existing tags

2017-01-19 Thread Jed Carty
You can do this with the action-listops widget like this: <$button>Do Eeet!! <$action-listops $tiddler=HelloThere $field=tags $subfilter='+[append[Hello!!]]'/> if you put that in a tiddler on tiddlywiki.com it will add the tag Hello!! to the HelloThere tiddler and leave the TableOfContents

[tw] [TW5] UPDATED plugin tobibeer/split v.0.8.0 — split: before after beforelast afterlast at[1,2]

2017-01-19 Thread Tobias Beer
Hi everyone, Thanks to Mat's request (thanks for testing and bug reporting, Mat), I added a few new features to tobibeer/split with version 0.8.0

[tw] Re: TW5 for blog

2017-01-19 Thread Seba
Thank you all for the information and help. I'll see which way to go. The lack of viewer comments might make me drop the github pages alltogether as online saving is not possible. regards, seba Dne ponedeljek, 16. januar 2017 13.37.37 UTC+1 je oseba Seba napisala: > > Hi all, > > I'm a happy

[tw] Re: Adding a tag to tiddler with existing tags

2017-01-19 Thread Tobias Beer
Hi Tony, I don't see any reason to have the button actions and the button be in separate tiddlers. > Is there any clever way of easily creating new tasks without having to > remember to type that in each time? Creative solutions are fine. Maybe that > means a button in the sidebar that

[tw] Re: [TW5] Presenting ToDoNow – a Beta Version of my ToDo-List-Plugin

2017-01-19 Thread Josiah
Ciao Thomas A footnote to my last message ... *POSITION OF SAVE BUTTON* I can't find any advantage in having the small save button at the base of the list and above it. A save button alongside the other buttons, like "+" that creates new tasks, or the padlock lock/unlock etc would be plenty

Re: [tw] Re: Automatic backup

2017-01-19 Thread Jeremy Ruston
Hi Arlen > Would there be a way to add an option to also download the file on every > TiddlyFox save? I know it has to be in the downloads folder, but some users > might consider that better than nothing. I've started to implement full backup support in TiddlyFox, along the lines of the old

[tw] Lost work two times with tiddlywiki node version

2017-01-19 Thread Chuck R.
Tip: On linux create a cron job to backup your file every n minutes. To edit YOUR user cron file: crontab -e To get the file format google: crontab file format -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and

[tw] Adding a tag to tiddler with existing tags

2017-01-19 Thread Tony Grosinger
I am trying to create a button in a tiddler which adds a new tag to that tiddler. I have found a way to replace all the existing tags with the one specified, but I am having trouble getting the add-tag feature to work. This example replaces all the tags and works. ``` \define mark-complete()

Re: [tw] Re: Automatic backup

2017-01-19 Thread Chuck R.
Rebooting my pc once a week solves most of my ff and os problems. Some programs just don't play nice. -- 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] Lost work two times with tiddlywiki node version

2017-01-19 Thread Chuck R.
Append the date and time to the backup file so the backup file is named: tw5.html.20170119-1005. -- 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] Re: [TW5] Google-Analytics Plugin reloaded - with internal navigation tracking?

2017-01-19 Thread SylvainComte
Hello, some updates about the new version of plugin (not yet released, still testing) : * now give you possibility to track internal navigation within your tiddlywiki * as discussed on the #1785 issue comments, the plugin now displays a

[tw] Re: NoteSelf mobile app ( well, kind of)

2017-01-19 Thread dodoo
The iOS version is 10.2. This is the only apple product I can access now. I will try on other ipad devices next week. 在 2017年1月16日星期一 UTC+8下午11:34:15,Danielo Rodríguez写道: > > > > El sábado, 14 de enero de 2017, 18:14:53 (UTC+1), dodoo escribió: >> >> I like noteself very much. Now I can sync

[tw] Re: TiddlyWiki user engagement

2017-01-19 Thread Thomas Elmiger
Hi Paul That made me laugh. > Great! My text worked as intended :–D > … discuss some collaborative possibilities with anyone interested. > Let’s swim together! What I could do, indeed, is review the documentation posts you've linked to > and see if I can synthesize something and, perhaps,

[tw] Re: Lazy Loading does not pull requested tiddlers

2017-01-19 Thread BJ
Hi Tony, there is a fix for a lazy bug in the next release, maybe it will solve your problem? https://github.com/Jermolene/TiddlyWiki5/issues/2511 all the best BJ On Wednesday, January 18, 2017 at 6:22:11 PM UTC+1, Tony Grosinger wrote: > > I am running my TiddlyWiki on NodeJS (v4.4.7) and

[tw] Re: Escape characters in filter operands?

2017-01-19 Thread Mat
Ah! That should suffice -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

[tw] Re: Adding a tag to tiddler with existing tags

2017-01-19 Thread Jed Carty
I made a basic task list a while ago that may have the part you want. Hopefully copying out the part that creates tasks is simple, I haven't looked at it in a long time. I imagine you could put it in a tab on the sidebar to make it easily available.

[tw] Escape characters in filter operands?

2017-01-19 Thread Mat
Mission: Take out the text from a tiddler and split after a specified string. This works fine: {{{ [[sometiddler]get[text]splitbefore[tidtitle]] }}} ...but what to do if the tidtitle is instead [[tid title]], i.e surrounded by brackets? How *escape *the brackets *in operator arguments* so they

[tw] Re: Escape characters in filter operands?

2017-01-19 Thread Tobias Beer
Hi Mat, Variables are your friend... \define test() foo [[bar baz]] mumble frotz <$vars this="[[bar baz]]"> {{{ [splitbefore] }}} Best wishes, Tobias. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop