[tw5] Re: [TW5] Presenting Cards Experiment: Master- and Sub-Tiddlers (Alpha)

2018-05-06 Thread Thomas Elmiger
Hello again, There is a new version you can try on https://tid.li/tw5/test/flippy.html – inspired by feedback from this thread, mostly Jan and Josiah but also many others. Important improvements: – nice card design and flipping effect (thanks, Jan!) – everything should be keyboard

[tw5] list of tiddlers using a macro

2018-05-03 Thread Thomas Elmiger
Hi Matt, Something like this could help (not really tested, make a backup first!) – this is from an older example I adapted for you: Make a tiddler titled "todoMacroList" with this in it: <$vars start="""<>"""> <$list filter="""[regexp:textsort[]] -[[todoMacroList]]

[tw5] Re: Let's make 5.1.17 more visual!

2018-05-02 Thread Thomas Elmiger
Hi folks, I like the general idea of illustrating how things are connected – like settings and layout. My long term vision would correspond with Jed’s togglable settings-mode for the view template ... but I suppose this would be a lot of work. Principles like mobile first and accessibility

[tw5] Re: w3.css to simply and quickly stylish your TW elements

2018-05-02 Thread Thomas Elmiger
ess my appreciation for the wonderful *Bricks *Studio > from Thomas Elmiger > for his great work! > > https://tid.li/tw5/test/bricks.html#Bricks > > The w3.css is an addition and another taste! > > -- You received this message because you are subscribed to the Google Groups &quo

[tw5] Re: Use CSS for Tiddler Size

2018-05-01 Thread Thomas Elmiger
You should be able to set the width in the same manner, e.g. min-width: 75vw; that would be equivalent to 75% of window width. -- 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,

[tw5] Re: Use CSS for Tiddler Size

2018-05-01 Thread Thomas Elmiger
Hi Mohammad, In my attempt to create a presentation, I used this line of CSS to set the tiddler-height: body.tc-body .tc-tiddler-frame { border: 0; margin: 0; padding-top: 0; min-height: 100vh; } I am not sure if you can use the story view width and hight in TW 5.1.16, but for me this

Re: [tw5] Re: [TW5] Presenting Cards Experiment: Master- and Sub-Tiddlers (Alpha)

2018-04-30 Thread Thomas Elmiger
n/consolidate? > > What do you think? > > Best, > Diego > > On Sunday, April 29, 2018 at 3:15:34 PM UTC-5, Thomas Elmiger wrote: > >> Hi folks, >> >> Inspired by several posts here in the group I tried something new and >> have an ALPHA version ready now,

Re: [tw5] Re: [TW5] Presenting Cards Experiment: Master- and Sub-Tiddlers (Alpha)

2018-04-30 Thread Thomas Elmiger
Hey Mark, No wonder the Card Manager looks like ToDoNow, they are both based on Listreveal. I have no plans to track „right“ answers at the moment. The only thing I speculated about is to save „done“ dates as they are registered in ToDoNow (a series of timestamps in a field). But that would

[tw5] [TW5] Presenting Cards Experiment: Master- and Sub-Tiddlers (Alpha)

2018-04-29 Thread Thomas Elmiger
Hi folks, Inspired by several posts here in the group I tried something new and have an ALPHA version ready now, working on larger screens (not tuned for phones yet). https://tid.li/tw5/test/cards.html The original idea was to create (shareable) learning cards with an A and a B side, where

[tw5] My Template TW

2018-04-29 Thread Thomas Elmiger
Hi BTC, Sorry to say that: I get a lot of sync-errors and it is completely unusable on my tiny phone screen – so maybe you should indicate what the recommended hardware specs are and how to use this to sync correctly. Thanks for sharing anyway! Thomas -- You received this message because

[tw5] Re: Customice font sice of sidebar

2018-04-29 Thread Thomas Elmiger
Hello Xabriña I guess it is not the font size you want to change, but the line breaking behavior so long titles would be displayed on more than one line. I have implemented this on https://tid.li/tw5/test/bricks.html See More-tab > Recent for examples. Is that what you want? Then maybe I

[tw5] Re: Very economical graphics?

2018-04-29 Thread Thomas Elmiger
Hi Mat Interesting question – I use an SVG frame here (the screens) and place nicely compressed PNGs in them (the screensots). https://tid.li/tw5/test/bricks.html Thus I can use the same screens (only one SVG) for all design variants. Cheers, Thomas -- You received this message because you

[tw5] Re: Organizing Tiddlers for speech and lecturing

2018-04-26 Thread Thomas Elmiger
Hi Mohammad I used this for presentations, it is inspired by a solution from Steve SUNY, if I remember right. Have fun! Thomas <$list filter="[all[current]next[$:/StoryList]]"> <$link to={{!!title}} tooltip="next"> {{$:/core/images/down-arrow}} <$list

[tw5] Re: discussion: codemirror editor and improved indentation handling

2018-04-26 Thread Thomas Elmiger
You are right, Tony. *Everywhere* was much exaggerated :–/ In every editor might be more correct (with and without code mirror). TW rendering seems to remove tabs from view mode. Best regards, Thomas -- You received this message because you are subscribed to the Google Groups "TiddlyWiki"

[tw5] discussion: codemirror editor and improved indentation handling

2018-04-25 Thread Thomas Elmiger
Hi Mario and Tony Just a short note on tab styling. In my design approach on https://tid.li/tw5/test/bricks.html I use the following CSS to see tab indenting everywhere: body { -moz-tab-size: 3; tab-size: 3; } Cheers, Thomas -- You received this message because you are

Re: [tw5] Re: list filter problem

2018-04-21 Thread Thomas Elmiger
Dave, I guess we miss some context here. Maybe this is closer to what you want? <$list filter="[!has[draft.of]field:1.topic[1 Peter structure]has[2.subtopic]sort[title]]" variable=tid><$view tiddler=<> field="2.subtopic" /> – <> All the best, Thomas -- You received this message because

[tw5] Re: list filter problem

2018-04-21 Thread Thomas Elmiger
Hi Dave I tried this: Add variable=… to the filter and thus check what the resulting value is. <$list filter="[field:1.topic[1 Peter structure]each[2.subtopic]get[2.subtopic]sort[title]]" variable=tid><$view field="2.subtopic" /> – variable: <> And it turned out that the value of the

[tw5] Re: Create new tiddler from template fill title an jump to text field

2018-04-15 Thread Thomas Elmiger
What I noticed in your second code example is that your brackets are not symmetrical {{…} should be {{…}}. The only template based new tiddler button I have created looks like this: <$button message="tm-new-tiddler" param="TemplateTitleHere" class="classname">{{$:/core/images/new-button}} I

[tw5] Re: Create new tiddler from template fill title an jump to text field

2018-04-15 Thread Thomas Elmiger
Hi, Maybe this information will be helpful for you: https://tiddlywiki.com/#ActionCreateTiddlerWidget%20Example:%5B%5BActionCreateTiddlerWidget%20Example%5D%5D%20ActionCreateTiddlerWidget Cheers, Thomas -- You received this message because you are subscribed to the Google Groups

[tw5] [OT] Card Design

2018-04-09 Thread Thomas Elmiger
Hi all, maybe some of you might find this article helpful, inspiring or interesting: Pitfalls of Card UIs - daverupert.com https://daverupert.com/2018/04/pitfalls-of-card-uis/ Many Wikis I know use the cards metaphor and as a TW user and/or designer you might know some of the problems the

[tw] Re: How to tag separate paragraphs in different tiddlers and then transclude them?

2018-04-06 Thread Thomas Elmiger
This looks like a cool concept, Stephan, thanks for sharing! I will try it, when I find some time. Cheers! Thomas -- 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] TiddlyFor a new edition of TiddlyWiki for Fortran programmer

2018-04-06 Thread Thomas Elmiger
Thank you for sharing, Mohammad! Interesting project, is there a demo site somewhere? I think I did not see a link to a demo in the readme, only screenshots. Best regards, Thomas -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe

[tw] Re: Double sort of filtered list for ToDoNow

2018-04-05 Thread Thomas Elmiger
Hi again O.k. we need the title: <$set name="listfilter" value="""[all[]tag[ToDo]][all[]tag[ToDoNow]] +[days:todo-deadline[17]] +[sort[title]sort[todo-deadline]]"""> My result:

[tw] Re: Double sort of filtered list for ToDoNow

2018-04-05 Thread Thomas Elmiger
Hi Surya In my test this works: <$set name="listfilter" value="""[all[]tag[ToDo]][all[]tag[ToDoNow]] +[days:todo-deadline[17]] +[sort[title]sort[todo-deadline]]"""> <$list filter=<> emptyMessage="<>"> <> I think you can even remove *sort[title] *as sorting by title might be the

Re: [tw] Re: [TW5] Single executable version of multi-user tiddlywiki, release candidate

2018-03-28 Thread Thomas Elmiger
Tony and Xavier, Thank you for the hints, it is working now! Next: find out why the "retain story ordering" button in the control button respectively [list[$:/StoryList]] as default tiddler does not work. Good night and best regards, Thomas -- You received this message because you are

[tw] Re: [TW5] Single executable version of multi-user tiddlywiki, release candidate

2018-03-27 Thread Thomas Elmiger
Hi Jed, it seems the 0.0.0.0 setting is not saved (although the checkmark is dark gray, not red). Am Dienstag, 27. März 2018 21:49:52 UTC+2 schrieb Jed Carty: > > Your browser opens in 127.0.0.1 even if it is available to the local > network, this doesn't mean other computers can't connect. It

[tw] Re: [TW5] Single executable version of multi-user tiddlywiki, release candidate

2018-03-27 Thread Thomas Elmiger
Update: my LocalWiki saves now. Cheers, Thomas -- 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,

[tw] Re: [TW5] Single executable version of multi-user tiddlywiki, release candidate

2018-03-27 Thread Thomas Elmiger
Hi Jed, very cool stuff indeed! I am up and running on my own machine, but I don’t kow how to restart the server ... or is this really possible by pressing a button on a webpage? Are there other things I should check on OS X to serve a wiki to other machines in my WLAN? I tried to set the

Re: [tw] Re: [TW5] Plugins updated: ToDoNow, Listreveal, Reminders

2018-03-21 Thread Thomas Elmiger
Hi Manuarteteco Thank you for your kind words. Your last sentence is not fully understandable though for me, could you explain more? Cheers, Thomas schrieb am Mi. 21. März 2018 um 14:32: A suggestion, would be useful > > -- You received this message because you are

[tw] Favicon on tiddlyspot doesn't work

2018-03-21 Thread Thomas Elmiger
Hi Surya, What image format do you use? I think SVG doesn’t work. All the best, Thomas -- 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: Joe Armstrong's talk at Code Beam 2018

2018-03-21 Thread Thomas Elmiger
Very inspiring talk, thank you! Have a great day, Thomas -- 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: [TW5] Plugins Updated: ToDoNow and Listreveal

2018-03-21 Thread Thomas Elmiger
Good morning Do-ers, This is just to let you know that I have announced new updates in a new thread: https://groups.google.com/d/msg/tiddlywiki/PX4vyqkcwOQ/8CtGSFZJCgAJ Thank you all very much for your invaluable input! Cheers, Thomas -- You received this message because you are subscribed

[tw] [TW5] Plugins updated: ToDoNow, Listreveal, Reminders

2018-03-20 Thread Thomas Elmiger
Hello TW-friends After quite some time I have updated most of my plugins on https://tid.li/tw5/plugins.html with some minor and some deeper going changes. Generally I have tried to make my stuff more robust for different designs. Additionally I have been able to integrate some user feedback

[tw] Re: [AddOn] file-backups - "TiddlyWiki File Save and Backup" V0.3.5 small bugfix release

2018-03-09 Thread Thomas Elmiger
Hey people, I feel with Zyb too, data loss is always a disaster or a disappointment at least. BUT in this case it was probably not necessary!!! As described in my last post, there is a workaround for even this scenario when Mario‘s save and backup (it covers that too!) refuses to save: export

[tw] Re: [AddOn] file-backups - "TiddlyWiki File Save and Backup" V0.3.5 small bugfix release

2018-03-08 Thread Thomas Elmiger
Confirming: After the update a browser restart is necessary, otherwise the ability to save is lost. (Mac, FF Developer Edition) Maybe the plugin could spit out a warning? This is why I switched off auto-updates in the plugin settings some time ago. Nevertheless I forgot to restart and had to

[tw] Re: Quotable TiddlyWiki ...

2018-03-06 Thread Thomas Elmiger
"Survival of the tiddlers" -- Jack Darwin -- 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

[tw] Re: Quotable TiddlyWiki ...

2018-03-06 Thread Thomas Elmiger
> > "Tempus fugit – TiddlyWiki manet." -- Jacobinus Anonymus -- 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: Quotable TiddlyWiki ...

2018-03-06 Thread Thomas Elmiger
> Veni, vidi, TiddlyWiki > -- Jacobinus Caesar -- 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,

[tw] Re: Query: Save a Timestamp. HOW?

2018-03-06 Thread Thomas Elmiger
In this case, I would try to modify the regex engine to log a timestamp in the browser console after each run … that would not require much JS knowledge I guess. Good luck! Thomas -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To

[tw] Re: Query: Save a Timestamp. HOW?

2018-03-06 Thread Thomas Elmiger
Hi Josiah, What exactly are you trying to achieve? Maybe I have some interesting but complex macros from my Reminders for ToDoNow. Basically they render a list, if a given date (from a field) is in the past. Cheers Thomas -- You received this message because you are subscribed to the

[tw] Re: stylesheet works on one TW but not another

2018-02-18 Thread Thomas Elmiger
Hi Dave The tc-tagged-... classes were added in version 5.1.10, so you should update the core of the old wiki. https://tiddlywiki.com/#Release%205.1.10 Good luck! Thomas -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from

Re: [tw] Re: file-backups - Request for Feedback - 1

2018-02-06 Thread Thomas Elmiger
Wikipedia: A *brilliant* is a diamond or other gemstone cut in a particular form with numerous facets so as to have

[tw] Re: file-backups - Request for Feedback - 1

2018-02-06 Thread Thomas Elmiger
Hi Mario, As one or two (I have two computers) of the 500 ... here are my five cents: I would suggest to shrink the diamond (or cat*), make it transparent (not blue) and put a (red?) circle around it or an octagon like a stop sign. Turning the icon might make it less recognisable. Cheers,

[tw] Re: RegEx for tiddlers?

2018-02-03 Thread Thomas Elmiger
Thank you, Simon! Installation went well, I also copied your "Codemirror keyboard controls" cheat sheet. The codemirror plugin added about 900 kilos to my wiki, but it seems to be worth a try. Cheers, Thomas Am Samstag, 3. Februar 2018 13:39:10 UTC+1 schrieb BurningTreeC: > > Ok @Thomas,

[tw] Re: RegEx for tiddlers?

2018-02-03 Thread Thomas Elmiger
Hi Simon, Do you use this with the official Code Mirror plugin? https://tiddlywiki.com/plugins/tiddlywiki/codemirror/ How did you include the addon? Best regards, Thomas Am Samstag, 3. Februar 2018 04:10:52 UTC+1 schrieb BurningTreeC: > > Hi @RunningUtes, > > you could use CodeMirror's search:

Re: [tw] Re: [TW5] Presenting: Bricks Demo – CSS Construction Set + Soft Redesign)

2018-01-31 Thread Thomas Elmiger
Hi Josiah You inspired me to write an FAQ for the next version of bricks – does this answer your questions? (Well, I know it doesn’t answer all of them as I have one question myself.) Kind regards Thomas === Frequently Asked Questions *I miss something, should I post a feature

Re: [tw] Re: [TW5] Presenting ColorAction Plugin for Colour Manipulation

2018-01-29 Thread Thomas Elmiger
isible) part that benefits many. I am happy if my tool can help a little bit with that :) Cheers Thomas @TiddlyTweeter <tiddlytwee...@assays.tv> schrieb am Mo. 29. Jan. 2018 um 14:05: > Man, that is seriously clever on WCAG 2.0! I hope users realise how smart > this gadget is!

Re: [tw] Re: [TW5] Presenting ColorAction Plugin for Colour Manipulation

2018-01-29 Thread Thomas Elmiger
Ciao Josiah, These colour combinations have too low contrast (value on the right). Therefore they fail the WCAG 2.0 test for accessibility. No reason to be worried. Cheers, Thomas @TiddlyTweeter schrieb am Mo. 29. Jan. 2018 um 11:35: > Ciao Thomas > > What is the

Re: [tw] Re: [TW5] Presenting ColorAction Plugin for Colour Manipulation

2018-01-28 Thread Thomas Elmiger
Hi all, There was an update over the weekend. Besides handling transparent backgrounds with dark colors differently, there are 2 new modification utilities: * invert * invertBrightness More tests and examples were added here: *

[tw] Re: Presenting the Presenter

2018-01-27 Thread Thomas Elmiger
Hallo Jan very nice to see, how far you could take this! I had a short look at http://slidesnstories.tiddlyspot.com/#About – I hope this is still the right place. My

Re: [tw] [TW5] A list of transclusion targets

2018-01-26 Thread Thomas Elmiger
Hi Arkady, Something like this could help, if you transcluded in {{brackets}}: Make a tiddler titled "TransclusionList" with this in it: <$list filter="""[regexp:text[{{]sort[]] -[[TransclusionList]] -[is[system]] -[has[draft.of]]"""> <" suffix:"" mode:"link">> === You will need my

Re: [tw] Re: [TW5] Presenting ColorAction Plugin for Colour Manipulation

2018-01-26 Thread Thomas Elmiger
s. Not so much for public use, but for > private work where you want an interface that is as unobtrusive as > possible. > One of my ideas was to create palettes where you can adjust a few colours only and get a nice and usable result. That's why I made this! > > Best wishes > Josia

Re: [tw] Re: [TW5] Presenting: Bricks Demo – CSS Construction Set + Soft Redesign)

2018-01-26 Thread Thomas Elmiger
be possible, but is not on top of my list. I am working on some new palettes and find still things to tune, sync and optimize along the way … > Thank you for making this*!* > Thank you for using it and for your helpful feedback! Ciao, Thomas > > Tschüß > Josiah > > Thomas Elmiger wro

[tw] Re: Kommentar in Makrotiddler

2018-01-25 Thread Thomas Elmiger
/* CSS-Kommentar */ Viel Erfolg! Thomas -- 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

[tw] How to mark overdue ToDos in ToDoNow / Outlook addon?

2018-01-24 Thread Thomas Elmiger
I hope you installed moments.js plugin too? https://tid.li/tw5/tdn.html#%24%3A%2Fplugins%2Fkixam%2Fmoment All the best Thomas -- 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,

[tw] How to mark overdue ToDos in ToDoNow / Outlook addon?

2018-01-24 Thread Thomas Elmiger
Hi Surya Me again ;–) When I use your first example in a new tiddler and set my "Buy christmas presents" task to yesterday then I get a red "late" mark over the stop watch. Is that not what you want? Late greetings Thomas -- You received this message because you are subscribed to the

[tw] Where to edit format of deadline-date in view in ToDoNow?

2018-01-24 Thread Thomas Elmiger
Hi Surya Translations, date and time format 1. Clone one of the following language tiddlers, set a new ending for the title, e.g. …/de-foo (do not change the rest of the title): [...] $:/plugins/telmiger/lib/languages/de-DE So name your version e.g. $:/plugins/telmiger/lib/languages/de-Surya

[tw] [TW5] Presenting ColorAction Plugin for Colour Manipulation

2018-01-18 Thread Thomas Elmiger
Hello dear community members, This is a result of my interest in optimizing the use of colours/colors in palettes and webdesign in general. Accessibility and user experience could be improved much on most websites only by optimizing contrasts … At the moment I am using ColorAction in my

Re: [tw] Re: [TW5] Presenting: Bricks Demo – CSS Construction Set + Soft Redesign)

2018-01-18 Thread Thomas Elmiger
Hi all, Bricks is freshly updated. Still far from finished, but much better ;–) Stylesheets were refined, but most effort went into colour handling: ColorAction plugin – modify colours depending on each other and evaluate their properties and readability. (separate post will follow) Used in

[tw] Reveal based on presence or absense of tiddler field?

2018-01-17 Thread Thomas Elmiger
Hi Andrew, as Eric pointed out some time ago in https://groups.google.com/d/msg/tiddlywiki/my9YIZEPGng/g_WCNmGuBwAJ … you could use reveal like this with the default attribute: <$reveal text="1" type="match" default=<> > Alternatively you could use a list widget with filter to display content

[tw] TOC from Headings in Tiddler

2018-01-16 Thread Thomas Elmiger
Hi Tony, I only have some hints for you, no solution … but I had thought about the subject before and I am not sure it would be useful: TiddlyWiki lacks a possibility to make intra-tiddler links. Jumping around in a single tiddler seems to be impossible as the # is used in other ways. So

[tw] Re: How to build recurring tasks in existing tiddlers?

2018-01-10 Thread Thomas Elmiger
Hi Surya and Tony @Surya Maybe you have never been on https://tid.li/tw5/plugins.html#ToDoNow%20Installation ? If you follow these steps, the first 5 points from your list should disappear :–) The demo tab in the plugin interface is really just a demo, it was never meant to work there

Re: [tw] Re: Filter and list text components:

2018-01-09 Thread Thomas Elmiger
Hello Tob My wikitext macro collects and spits out matching text passages as they occur in the tiddler. So the only way to sort would be to change the order im the source tiddler. The TW concept that allows finding and sorting at the same time would be filters. So maybe a regex filter could

Re: [tw] Re: How to build recurring tasks in existing tiddlers?

2018-01-08 Thread Thomas Elmiger
Hi again Thank you for your interest, testing and feedback! I will happily consider it when working on the next update. But it will take some time. Regarding size of the plugins though, there is not much hope regarding the size. I do not have time now, but I can see a growing demand for video

[tw] Re: How to build recurring tasks in existing tiddlers?

2018-01-08 Thread Thomas Elmiger
Hi Surya As everything in TiddlyVerse, my ToDoNow plugin is hackable – but it might not be trivial in the details. What you can try to get closer to what you want is the following: > >- Size of the plugin. There are also some things I don't need. Maybe I >could delete / modify

Re: [tw] Re: Please send me links to your themes, adaptations, plugins, macros, etc

2018-01-06 Thread Thomas Elmiger
Hi Dave It is updated, thanks for the hint. Hi Josiah As a present to my vigilant readers I have added an easter egg. There is an early version of an upcoming new plugin. Feel free to test and comment :–) As usual: make a backup first, no warranties attached. Official release will follow sooner

Re: [tw] Re: [TW5] Presenting: Bricks Demo – CSS Construction Set + Soft Redesign)

2018-01-06 Thread Thomas Elmiger
Hoi Josiah Thank you very much for your thoughts and comments. You nailed it! Feedback below. Have a nice weekend, Thomas @TiddlyTweeter schrieb am Sa. 6. Jan. 2018 um 14:26: > > *INTERFACE*: The use of List Reveal to assist transfer of items between > active and

Re: [tw] Re: Please send me links to your themes, adaptations, plugins, macros, etc

2018-01-06 Thread Thomas Elmiger
Hi Dave, Great to see that you have my hacks on your list! My best (documented) tools though are on https://tid.li/tw5/plugins.html – maybe you want to start there. Thank you for the effort! All the best, Thomas -- You received this message because you are subscribed to the Google Groups

[tw] Re: [TW5] Presenting: Bricks Demo – CSS Construction Set + Soft Redesign)

2018-01-05 Thread Thomas Elmiger
Hi Diego Thank you for the positive feedback! We will see how many plugins will come out of this ;–) As it is rather developer oriented stuff, I don’t think it should become part of the core. But I might add a tiddler for the resources section of tiddlywiki.com when it is finished. Have a

[tw] Re: A Song for the Joy of It

2018-01-03 Thread Thomas Elmiger
Swiss music? Here you are :–D https://youtu.be/8Hr3GBHRRSk -- 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] Re: Filter and list text components:

2018-01-02 Thread Thomas Elmiger
Oh, forgot to mention: 1) You say, you "extract $:/_telmiger/extract to my tiddlyWiki" – I hope you know you can import this into your wiki by dragging a link to it to your wiki? 2) The code I gave you should be in a results tiddler (as in: no books listed in the same tiddler). -- You

[tw] Re: Filter and list text components:

2018-01-02 Thread Thomas Elmiger
What do you see, Tob? Is the freezing gone? If you get an empty tiddler instead of results you might have to change the first filter where I filtered for tiddler titles starting with "tiddler" as in your examples. [prefix[tiddler]] does this. Replace it e.g. with [!is[system]sort[title]] and

[tw] Re: Filter and list text components:

2018-01-01 Thread Thomas Elmiger
Fixed (and tested): <$list filter="[prefix[tiddler]]" variable="tid"> <$macrocall $name=extract tiddler=<> start="""Book:""" end="""**Autor: Karl May""" limit="no" prefix="" suffix="" mode="inline">> -- You received this message because you are subscribed to the Google Groups

[tw] Filter and list text components:

2018-01-01 Thread Thomas Elmiger
Hi Tob, All the best for 2018 to you too. My extract hack (macro) might be able to do the job if used inside a list like shown in the last tiddler here: https://tid.li/tw5/numbers.html You would have to define something like this (not tested!): <$list filter="""[FINDyourTIDDLERShere]""">

[tw] Re: [TW5] Presenting: Bricks Demo – CSS Construction Set + Soft Redesign)

2017-12-31 Thread Thomas Elmiger
woch, 20. Dezember 2017 21:13:58 UTC+1 schrieb Thomas Elmiger: > > *Bricks* <https://tid.li/tw5/test/bricks.html> is a set of utilities for > webdesigners using cascading stylesheets (CSS). > -- You received this message because you are subscribed to the Google Groups &qu

[tw] Re: next/previous navigation

2017-12-26 Thread Thomas Elmiger
O.k. my solution uses the storylist instead of tags, so its buttons take you to the next/previous open tiddler. So you would have to open all tiddlers first, independent of tags. (Some other macros in my example do open all tiddlers with a given tag, I think.) If you are on top of the page,

[tw] Re: next/previous navigation

2017-12-26 Thread Thomas Elmiger
Hohoho, dear Tob, There is an update for my old styles-wiki now and next/previous navigation on the slides is still working. (Other stuff is not working well but that’s due to the experimental nature of hacks collected there.)

[tw] Re: Thousands seperator with plugin "letfilter" (let:sum)

2017-12-20 Thread Thomas Elmiger
Hi Marcus, You are right, RPN cannot do that, you would have to calculate first, save the result in a variable or field and dislay it with RPN from there. All the best, Thomas -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe

[tw] Re: What's the xmastiddle bringing?

2017-12-20 Thread Thomas Elmiger
Ho, ho, h ... I delivered my christmas present today. It is something you can play with: A collection of bricks for twizzards and twiches who have everything else. https://groups.google.com/d/msg/tiddlywiki/qZyhuW3_UyQ/huWHUpCmAAAJ Play with CSS, make something beautiful and send pictures

[tw] Re: [AddOn] file-backups - "TiddlyWiki File Save and Backup" is an official FireFox AddOn

2017-12-20 Thread Thomas Elmiger
I switched back to 0.3.1 and – after a browser restart – everything seems to work again. Firefox Developer for Mac is on 58.0b12 (64-Bit) at the moment. Updating seems to happen automatically if you leave the extension setting on "Standard". I switched to "Off" now ("Aus" in German). Am

[tw] [TW5] Presenting: Bricks Demo – CSS Construction Set + Soft Redesign)

2017-12-20 Thread Thomas Elmiger
Dear members of the TW community, Over the last months you haven’t heard much from my side. And possibly I will remain rather quiet for the weeks to come. The TW hours I could find went mostly into this fancy project that has reached demo status now. I release this as is, without warranties

[tw] Re: Thousands seperator with plugin "letfilter" (let:sum)

2017-12-20 Thread Thomas Elmiger
Hi Marcus My simple math plugin RPN can do number formatting, see the usage tab here: https://tid.li/tw5/plugins.html#%24%3A%2Fplugins%2Ftelmiger%2Frpn Happy formatting! Thomas -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe

[tw] Re: [AddOn] file-backups - "TiddlyWiki File Save and Backup" is an official FireFox AddOn

2017-12-20 Thread Thomas Elmiger
Hi Mario, Sounds like good news, but the (previous) version stopped working for me yesterday at home and today at the office, both in FF 57 Win and in FF Developer 58 on the Mac :( After an update to the new version on Windows the downloads happen again, but without TW noticing the save

[tw] Re: A button to clone the current tiddler?

2017-12-10 Thread Thomas Elmiger
Hi Hubert, You can activate the standard clone-button in a tiddler’s info panel (in the dropdown under the more-down-arrow). Happy cloning! Thomas -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop

[tw] Re: Camel Case - Dromedary or Bactrian?

2017-11-27 Thread Thomas Elmiger
Here’s some bumpy context: http://wiki.c2.com/?CamelCase – completely Germ(an)-free. Someone suggested an M would look like two bumps, but that’s not true for a leading M – this looks like HornyHorns ;–) Goodnight Casey -- You received this message because you are subscribed to the Google

[tw] Re: Camel Case - Dromedary or Bactrian?

2017-11-27 Thread Thomas Elmiger
Here’s some bumpy context: http://wiki.c2.com/?CamelCase – completely Germ(an)-free. Someone suggested an M would look like two bumps, but that’s not true for trailin -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this

[tw] Camel Case - Dromedary or Bactrian?

2017-11-27 Thread Thomas Elmiger
Hmmm, never thought about that before. Is it not HeadHump – dromedary CamelCase we use mostly? BactrianCamelCase would be HeadHumpHump like, say, erm … BactrianCamelCase. Greetings from a Swiss Cow Casey -- You received this message because you are subscribed to the Google Groups

[tw] [ToDoNow] Set a Date Completed

2017-11-24 Thread Thomas Elmiger
Furicle, I am happy you like my TDN plugin! The field you are looking for is already there, it is labelled "todo-done". Every time you check a task, a new timestamp is added to this field. There is also a simple Report-tool to generate an overview of your achievements. Please ask again or

[tw] Re: [INTRO] File Save and Backup AddOn for FireFox 57++

2017-11-21 Thread Thomas Elmiger
Thank you very much, Mario! Runs without problems on my * Mac OSX 10.13 with FF Developer Edition Version 57.0b10 * Win 10 Pro with FF 57 (auto-updated by FF yesterday) It seems this is a great replacement for TiddlyFox, with added value using the backup feature! I did set it to 11 files like

[tw] [TW 5.1.15] Observations, Questions, Hints

2017-11-19 Thread Thomas Elmiger
Hi all *Many thanks to Jeremy for releasing TW 5.1.15 with a lot of useful new stuff!* I had a look at the release notes and found some things that are not clear to me: *1) new tc-btn-* classes on toolbar buttons allowing easier custom styling* This seems to generate hard-to-read classnames

Re: [tw] Re: [TW5] Plugins Updated: ToDoNow and Listreveal

2017-11-16 Thread Thomas Elmiger
he > next Friday rather than having to mark the task "Done" 4 times incrementing > the due date by a week. Org Mode uses "++1w" syntax for those. > > http://orgmode.org/manual/Repeated-tasks.html > > Do you have any ideas on how to implement these concepts with

Re: [tw] Re: link in a documentation macro doesn't show up as a reference

2017-10-31 Thread Thomas Elmiger
Hi Alex, very nice indeed! Feel free to steel some German characters for your sheep: Mh! (By the way: «Mäh» sounds a bit like the word for mowing or it’s imperative mow!) Talking about sounds: Hearing a sheep talking about “butchering” sounds a bit macabre to my ears ;–) Now I will go

Re: [tw] Re: How to split (parse) date value YYMMDD to individual values for YY, MM, and DD?

2017-10-31 Thread Thomas Elmiger
Hi Gordan, I made a set of macros some time ago, as I use the same plugin. I have fields with standard TW dates though: MMDD... https://tid.li/tw5/hacks.html#%24%3A%2Fplugins%2Ftelmiger%2Flib%2Fdates-then Maybe you can adapt these? If you are not familiar with macros, please ask again

[tw] Re: Passing the result of a defined macro to a HTML element

2017-10-26 Thread Thomas Elmiger
Hi Hubert Would you mind sharing your DaysDiff solution? (I wrote my own, but it's not as solid as rpn.) Cheers, Thomas -- 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: New (Limited) Saver for chrome, ff

2017-10-19 Thread Thomas Elmiger
Hi BJ, great stuff! Just a short confirmation from my side that BSaver basically works on Macs with FF. The only issue I met: I had to look into several config/preference pages to find the extension settings. Maybe you could point to about:addons (extensions section) in your comments. (I can

[tw] Re: [TW5] listing/transcluding snippets of highlighted text

2017-10-17 Thread Thomas Elmiger
… > > > Am Freitag, 13. Oktober 2017 13:03:47 UTC+2 schrieb Thomas Elmiger: >> >> Hi Stefan and Mat >> >> My Extract macro should do the job. In a recent discussion we pointed >> out, that the documentation is lousy (sorry!), but the discussion itself >&g

Re: [tw] Re: Bad zoomin.js working with long tiddlers.

2017-10-16 Thread Thomas Elmiger
Hi Tony, I do not want to seem like I am hijacking the thread. > Neither do I. > … what you seem to be suggesting is […] that the browser back and forward, > and history are ways of jumping around urls within that session even if the > tab changes in some way? > What I was suggesting is that

[tw] Re: [TW5] listing/transcluding snippets of highlighted text

2017-10-13 Thread Thomas Elmiger
Hi Stefan and Mat My Extract macro should do the job. In a recent discussion we pointed out, that the documentation is lousy (sorry!), but the discussion itself should be helpful. https://groups.google.com/forum/m/?utm_medium=email_source=footer#!msg/tiddlywiki/u-Dq4CywvD0/vrL_gfB0AwAJ

Re: [tw] Re: Bad zoomin.js working with long tiddlers.

2017-10-13 Thread Thomas Elmiger
Hi Tony, Technically, the tupper page, tiddlywiki.com and many TW pages I made are all the same: they are single-page web applications. As a user you can load one single HTML page and you have everything. Then you can disconnect from the internet and still use the website or navigate through the

[tw] Re: Bad zoomin.js working with long tiddlers.

2017-10-12 Thread Thomas Elmiger
Hi Tony I have to disagree with your statement about the ways “we” navigate in TW as there are many ways and none of them are right or wrong. It takes only a few clicks in the control panel > settings tab to make tiddlywiki.com behave like the tupper demo (minus the improvement made in the

<    1   2   3   4   5   6   7   8   9   >