[tw] Re: Questions for enabling/disabling-button for plugin tobibeer.github.io/tw5-plugins/#preview

2018-03-28 Thread Evolena
Instead of disabling the whole plugin, you could try to modify the "exclude" filter configuration ($:/plugins/tobibeer/preview/defaults/exclude by adding/removing [all[tiddlers]]) or the classes

Re: [tw] Re: Performance comparision between [is[current]] and

2017-06-28 Thread Evolena
You shouldn't think of the all operator as "iterate over all tiddlers to find the one corresponding to the operand", but as "select all tiddlers corresponding to the operand" (as the name "selector operator" suggests). That the implementation does or does not iterate over every tiddler is a

Re: [tw] Re: Performance comparision between [is[current]] and

2017-06-27 Thread Evolena
Maybe the name is not the more intuitive, but the Javascript code is clear : [all[current]] doesn't iterate each tiddler (as all[missing] or all[orphans] do), it simply returns the currentTiddler variable if it exists, and an empty list if it doesn't. While [is[current]] without any selector

Re: [tw] Re: Performance comparision between [is[current]] and

2017-06-27 Thread Evolena
Hello, is[current] is a selection modifier, so it acts on a selection of tiddlers. If you don't select tiddlers beforehand with a selection constructor (all, title, list, ...), it operates on all[tiddlers] by default. So in order to select

[tw] Re: [TW5] Variables in List Filter

2016-07-20 Thread Evolena
Hello, Beside Mark's answer, > I not only tried "[due[]]" but also "[due]", > "[due[{today}]]". > the right syntax is [due]. -- 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] Re: [TW5] make the rendered image of the img command a link to open the image in new tab

2016-06-25 Thread Evolena
Le samedi 25 juin 2016 11:09:01 UTC+2, Bob Flandard a écrit : > > Hello Evolena, > > Thank you for the code!, it works nicely and was much easier to get > working than I anticipated. > > It's a shame the "tool tip" option of the img macro can't be overloaded or

[tw] Re: [TW5] Transparent background for one tiddler

2016-06-24 Thread Evolena
Then you can look at the tc-modal classes in the vanilla stylesheet. .tc-modal, .tc-modal-footer { background-color: transparent; } can be a first step to achieve what you want. However, I don't know how to assign another class to modals. Le vendredi 24 juin 2016 17:48:09 UTC+2, FrD a écrit

[tw] Re: [TW5] make the rendered image of the img command a link to open the image in new tab

2016-06-23 Thread Evolena
Let's me try to explain step by step: <$button class="tc-btn-invisible tc-thumbnail-image"> ... The WidgetButton creates a button. The "class" attribute defines how it looks like: "tc-btn-invisible" removes the grey box of classic buttons, and

[tw] Re: [TW5] make the rendered image of the img command a link to open the image in new tab

2016-06-22 Thread Evolena
As I had to leave quickly when I first replied, here are some explanations. This code works with ExternalImages , so you would have to create tiddlers for each images (but the image is not fully integrated into the wiki), which may not be what you want.

[tw] Re: [TW5] make the rendered image of the img command a link to open the image in new tab

2016-06-22 Thread Evolena
With the same "lightbox", idea, I had come to this a year ago: @media (max-width: 55em) { .tc-modal-body img { display: block; margin-left: auto; margin-right: auto; } } @media (min-width: 55em) { .tc-modal { width: -webkit-min-content; width:

[tw] Re: TW5 Exporting Tiddlers in the TOC order

2016-05-03 Thread Evolena
Hello Martin, Here is my approach: I've tweaked the toc macro to populate the "list" field of a tiddler (TOC-export) with each tiddler instead of displaying its title. As I use an action widget, I have encapsulated the call of this macro inside a button, in the TOC-Export tiddler. Clicking the

[tw] Re: How to transclude external tiddlers in TW5

2016-04-13 Thread Evolena
Le mercredi 13 avril 2016 13:42:39 UTC+2, David Myers a écrit : > > I wasn't aware that the Node.js version gave this functionality. However I > personally like the 'all in a single file' that is TW's main strong point > for me. This means I can send a sigle TW file to a colleague (or post it

[tw] Re: How to transclude external tiddlers in TW5

2016-04-13 Thread Evolena
I don't know how to do that for the standalone version of Tiddlywiki. But, if you want to give a try to Tiddlywiki on Node.js , you could then define inclusion of your citation wiki into each notes wiki (cf includeWikis

[tw] Re: TOC within tiddler

2016-04-13 Thread Evolena
I have the feeling that something could be done with the concept of substories (using the navigatorWidget ). You can open links inside the substory. You can also have a list of the tiddlers opened in the

[tw] Re: [TW5] Syntax for including a field value in @@ CSS

2016-04-10 Thread Evolena
This works: .indent_field { margin-left:{{!!indent_amount}}px; } @@.indent_field <$link><$view field=title /> @@ Or a variation on Mat solution, with only the style in the macro, not the entire element: \define m-indent_amount() margin-left:$(v-indent_amount)$px; \end <$set

[tw] Re: embed tiddler in another tiddler

2016-04-05 Thread Evolena
Hi, In TW5 it's no more a macro but a syntax, called Transclusion Le mardi 5 avril 2016 14:57:55 UTC+2, K0ertis a écrit : > > Hi! > > You know a similar macro in TW5? > > Thanks > -- You received this message because you are subscribed

[tw] Re: Matabele's Transparent overlay palette

2016-04-05 Thread Evolena
Hi, I'm not an expert, but I think the trick is in using rgba colors : tiddler-background: rgba(0,0,0,0.25); The first three numbers code for the color, and the last number (0.25) is the opacity (only for the background color, and not for the children of

[tw] Re: Image before Tiddler possible?

2016-04-01 Thread Evolena
Hi Peter, You can try to use the field "icon" for your tiddler, with the name of the tiddler containing your icon (see for example the tiddler TagManager ; you can use any image, not only the built-in svg icons). It will be before the title, and

[tw] Re: [Concept] Section formatting

2015-12-27 Thread Evolena
Le lundi 28 décembre 2015 03:48:25 UTC+1, Mat a écrit : > > Triple quotes (because I assume you mean triple, not quadruple) to get > line breaks - now that was news to me! I can't find info on it on > tiddlywiki.com tho. > It is there:Hard Linebreaks in WikiText

[tw] Re: [tw5] Text-Slicer Plugin

2015-12-10 Thread Evolena
I've just noticed that *state tiddlers* for slider are stored in "$:/config/plugins/tiddlywiki/text-slicer/heading-status/..." I think it would be better to use the same prefix as for other state tiddler: "$:/state/...". This way, if someone don't want to keep state tiddlers on saving, it would

[tw] Re: [tw5] Text-Slicer Plugin

2015-12-09 Thread Evolena
Hi Jeremy, Here are my long due returns on this plugin. First, I'll present my use-case. I've some PDF files, containing text with chapters, subsections, paragraphs, lists, inserts, icons, images, etc., that I want to turn into a TW. I want to present all these elements in a way that allows

[tw] Re: where is "tc-btn-invisible" injected into tag pill

2015-12-09 Thread Evolena
Have you checked the TagTemplate ? -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[tw] Re: [TW5] Getting macros to work at all

2015-11-04 Thread Evolena
Le mercredi 4 novembre 2015 10:12:45 UTC+1, Bob Wentworth a écrit : > > I am presumably missing something really basic, because I can't seem to > get the core macros to work at all. > > Here is text I tried as the body of a tiddler: > > Version is <>. > > Date is <>. > Date is <>. > The macro

[tw] Re: [TW5] tabs macro

2015-10-14 Thread Evolena
Hi Bob, Have you try the "toc-tabbed-internal-nav" from Table-of-Contents Macros ? With your "index" tiddler being the only one tagged with the tag used for this toc, it may achieve something not too far from what you want? -- You received

[tw] Re: [TW5] How to close tiddlers by tag?

2015-10-11 Thread Evolena
Le dimanche 11 octobre 2015 12:23:22 UTC+2, Danielo Rodríguez a écrit : > > > Since when is this possible? The last time I checked was not possible to > use action widgets inside list widgets. > Since the 28th january on Github, so the 5.1.8 (but it doesn't appear clearly in the release

[tw] Re: Pass macro to widget attribute: Create new tiddler with specified title

2015-10-09 Thread Evolena
Maybe I've not been clear enough: the code I've posted (with nested macro) is the non working one, as Mark posted the working one while I was struggling with posting. One should invert the two first lines to make it work. I thought that I had managed to use the tmp macro in brorgschlr85 first

[tw] Re: Pass macro to widget attribute: Create new tiddler with specified title

2015-10-09 Thread Evolena
I was trying to send a similar solution for 10 minutes but that dummy Publication button doesn't seem to want to make something apart frozing the subject... I was wondering for the nested macro too... Nested macro definitions seems to work outside of the outer macro definition, but not inside.

[tw] Re: Documentation Macros

2015-10-08 Thread Evolena
The documentation macros are part of the "tw5.com" edition, so it is not included in an empty edition. Here are the main tiddlers you would need to use these macros: permaview

[tw] Re: [TW5] How to Transclude all tiddlers with a tag

2015-10-03 Thread Evolena
Le samedi 3 octobre 2015 01:43:29 UTC+2, Nolan a écrit : > > Reading through this discussion with Jeremy > https://github.com/Jermolene/TiddlyWiki5/issues/121 it sounds as though > I should be able to transclude the content of multiple tiddlers based on > their tags using the following > >

[tw] Re: [TW5] List widget (noob question)

2015-10-01 Thread Evolena
Humm In [TW5] Tag dependant fields I provided you with this code: <$list filter="[all[current]tag[some tag]]"> Field name 1: <$select field="field_name_1"> value 1 value 2 value 3 Field name 2: <$select

[tw] Re: [TW5] Filter syntax to list all values of a field

2015-09-30 Thread Evolena
Le mardi 29 septembre 2015 23:50:08 UTC+2, Bob Flandard a écrit : > > Hello Evolena, > > Most of my TW5 belongs to you! > > Do you have stuff on TiddlySpot that I might scrutinize? > Thank you. No, I don't have such a site. And if I had, it would be in French ;) B

[tw] Re: Need some help with $set or $reveal widgets

2015-09-29 Thread Evolena
I don't understand why do you absolutely want to use a set or reveal widget, as you only use the variable to display it. Is there a reason I don't see? My list example works perfectly fine when typing the new title, even if a tiddler with the same title is created in the meanwhile, without

[tw] Re: [TW5] Filter syntax to list all values of a field

2015-09-29 Thread Evolena
Le mardi 29 septembre 2015 23:05:48 UTC+2, Bob Flandard a écrit : > The > > {{{ [tag[some field]each[field_name_2]get[field_name_2]sort[title]] }}} > > > part just concatenates all the field values into a single line with no > spaces, rather than a list of separately selectable options, that

[tw] Re: [TW5] Document dirty even without committing any changes

2015-09-28 Thread Evolena
Le lundi 28 septembre 2015 16:48:27 UTC+2, Hegart Dmishiv a écrit : > > Thanks for explaining that, *Evolena*. I would have thought that clicking > the "discard changes to this tiddler" button would have deleted the "Draft > of..." tiddler, thus returning t

[tw] Re: [TW5] Document dirty even without committing any changes

2015-09-28 Thread Evolena
As soon as you open the edit mode of a tiddler, the tiddler "Draft of tiddler" is added in the StoryList. Evenif you discard your change, the StoryList tiddler has been changed, and thus your TW "needs" saving. Le lundi 28 septembre 2015 15:40:36 UTC+2, Hegart Dmishiv a écrit : > > I've noticed

[tw] Re: Need some help with $set or $reveal widgets

2015-09-28 Thread Evolena
For a similar use-case, I've used a simple list widget with a filter testing if the new title is an existing tiddler: @@.tc-alert-highlight <$list filter="[{Temp Test!!draft.title}is[tiddler]]"> Caution, <$link><> already exists!@@ I assume here that the "Temp Test" tiddler is always used for

[tw] Re: [TW5] Tag dependant fields

2015-09-28 Thread Evolena
Le lundi 28 septembre 2015 10:51:43 UTC+2, Tobias Beer a écrit : > > Hi Evolena, > > That was a worthy exercise, > and you were quicker to reply. :-) > It was something I only had to copy-paste (and adapt) from one of my own TW, hence the quick reply! The only difference bei

[tw] Re: [TW5] Tag dependant fields

2015-09-28 Thread Evolena
Le lundi 28 septembre 2015 12:25:19 UTC+2, Tobias Beer a écrit : > > Hi Evolena, > > Could you please correct the above code > so as to use *valid* field names? > Ah yes, I've not paid attention to my placeholder names. > By the way, what you call "default"

[tw] Re: [TW5] Tag dependant fields

2015-09-28 Thread Evolena
You can define a custom editTemplate element triggered by the tag. Create a new (system) tiddler tagged with "$:/tags/EditTemplate". You can give it a field "list-after" set to "$:/core/ui/EditTemplate/body" (the fields you want with dropdown will be located after the body editing window,

[tw] Re: [TW5] Formatting the results of a $list as a

2015-09-23 Thread Evolena
Le mercredi 23 septembre 2015 16:04:36 UTC+2, Hegart Dmishiv a écrit : > EDIT: It's okay, I worked it out myself. I just had to encapsulate the > <$view> in a blank <$link> code block, like this.. > > > <$list filter="[tag[Definitions]]"> > <$link><$view field="title"/> > <$transclude

[tw] Re: Split Title Listing to List

2015-09-23 Thread Evolena
So your request has to be more specific. You did mention the content of your field (which is not useful for the response), but not the name of this field, so the answers given to you must use a non-specific field name. Le mercredi 23 septembre 2015 16:48:45 UTC+2, James a écrit : > > Hi All, >

[tw] Re: Split Title Listing to List

2015-09-23 Thread Evolena
Arggh, you're right, thank you. I think it has already been said that this is counter-intuitive... Le mercredi 23 septembre 2015 17:40:55 UTC+2, Tobias Beer a écrit : > > Hi Evolena, > > >> However, I think (not tested), that all the filter should be: >> &g

[tw] Re: How to delete unused Tags in TW5

2015-09-21 Thread Evolena
Le lundi 21 septembre 2015 15:00:55 UTC+2, Tobias Beer a écrit : > @Metabele, > Don't we already have the ability yet to use lists with action widgets? > > Yes, it's now possible (and very useful!). In TW5.1.10, there will also be a tm-rename-tiddler message, which allow to rename a tiddler

Re: [tw] Re: [TW5] Default values for templates

2015-09-20 Thread Evolena
Le dimanche 20 septembre 2015 00:29:51 UTC+2, Tobias Beer a écrit : > > Now I'm confused, because... what was I testing earlier? ^_^ > > [...] one of the last times this kicked in: > > #1939 saving a tiddler with non-empty input fields > >

[tw] Re: [TW5] Formatting the results of a $list as a

2015-09-20 Thread Evolena
Look at the LinkWidget . If I correctly understand what you try to achieve, something like this may work: <$link to="Open Source" tooltip={{Open Source!!dfn}} tag="abbr">open source or: <$set name="tv-wikilink-tooltip" value="{{!!dfn}}"> <$link to="Open

[tw] Re: [TW5] Formatting the results of a $list as a

2015-09-20 Thread Evolena
Le dimanche 20 septembre 2015 09:38:23 UTC+2, Hegart Dmishiv a écrit : > > Thanks *@Eric* and *@Evolena*, it's always great to get multiple answers > showing different ways of achieving something, it gives me more opportunity > to learn. > > Speaking of which, I just wanted

[tw] Re: [TW5] Formatting the results of a $list as a

2015-09-20 Thread Evolena
to formalize it, but it doesn't match to what I'm looking for most of the time, it's like an advanced documentation (which can also be useful from time to time). Le dimanche 20 septembre 2015 10:54:32 UTC+2, Tobias Beer a écrit : > > Hi Evolena, > > >> I must admit that I'm n

[tw] Re: [TW5] Formatting the results of a $list as a

2015-09-19 Thread Evolena
know. Le samedi 19 septembre 2015 15:27:28 UTC+2, Hegart Dmishiv a écrit : > > Thanks for that *@Evolena*. Yeah, I was anticipating having to use > <$transclude > field="defn" mode="block"/> for that, but then I saw your example code > and got confuse

Re: [tw] Re: [TW5] Default values for templates

2015-09-19 Thread Evolena
As all the examples you provided used a literal default value, it could have been a suitable solution. Le samedi 19 septembre 2015 21:35:20 UTC+2, FrD a écrit : > > Hi Evolena, > > Thanks for the tip. I've tested it : it works. > But as Tobias says, it's only useful for literals.

[tw] Re: [TW5] Formatting the results of a $list as a

2015-09-19 Thread Evolena
Le samedi 19 septembre 2015 12:28:13 UTC+2, Hegart Dmishiv a écrit : > > As a secondary issue, the results of the <$view field="defn" /> line are > not being parsed properly as wikitext, yet when I use {{!!defn}} on the > tiddler where the field is created, it shows properly as wikitext. What >

[tw] Re: [TW5] Formatting the results of a $list as a

2015-09-19 Thread Evolena
> > Usually, the mode is determined by whether the transclude widget itself > has been parsed in block or inline mode. This can be overridden with the > mode attribute. > So I guess that being in a definition list, the parent mode is block, and so is the transclude widget mode. To be honest,

[tw] Re: [TW5] Formatting the results of a $list as a

2015-09-19 Thread Evolena
Le samedi 19 septembre 2015 12:28:13 UTC+2, Hegart Dmishiv a écrit : > > This is my first attempt at displaying content programmatically within a > tiddler. Well, almost my first anyway. I have successfully displayed a > tiddler field in the text of the same tiddler itself, using >

Re: [tw] Re: [TW5] Default values for templates

2015-09-19 Thread Evolena
I've not tested what I propose, but you cloud try to define macros in your template to set the default values. For example, if your variable in the template is somevariable: \define somevariablevalue(value:"default") $value$ <$macrocall $name="somevariablevalue" value=<>/> OK, it is less

Re: [tw] Re: [TW5] Prevent the state of the Contents (TOC) SideBar from being saved?

2015-09-17 Thread Evolena
Le jeudi 17 septembre 2015 05:00:45 UTC+2, Hegart Dmishiv a écrit : > > I'm currently using unordered lists on my tiddlers for linking to > "sub-types", which of course are also listed in my TOC in the SideBar. > While I'm building my knowledgebase wiki, having the static links on the > tiddler

Re: [tw] Re: [TW5] Prevent the state of the Contents (TOC) SideBar from being saved?

2015-09-17 Thread Evolena
This information is already available on every tiddlywiki: go to the controlPanel, Info/Basics tab, there is a "Number of overridden shadow tiddlers" with an icon that leads to an advanced search filter. Or there is a premade "Overridden shadow tiddlers" filter available in the Advance search

[tw] Re: [TW5] Parameter substitution in macro that uses an external link

2015-09-17 Thread Evolena
Le jeudi 17 septembre 2015 20:52:48 UTC+2, Bob Flandard a écrit : > to be: > > <> {{!!$file$}}>> > > > and created some more junk. > There may be other issues, but a first remark: you can't call a macro with the ordinary wikitext syntax if a parameter is a variable or a macro (like your

[tw] Re: [TW5] Prevent the state of the Contents (TOC) SideBar from being saved?

2015-09-17 Thread Evolena
It still may lead to a lose of data. I've experimented it once. A syntax error that causes the filter to match nothing, and you end with a nearly empty file... So backup every time you change the save-filter! Le jeudi 17 septembre 2015 23:06:53 UTC+2, Tobias Beer a écrit : > > Just to be clear,

[tw] Re: [TW5] Reveal or Slider within a table

2015-09-16 Thread Evolena
Le mercredi 16 septembre 2015 11:33:27 UTC+2, Tobias Beer a écrit : > > This would cater for it but there was reluctance to accept the change... > > https://github.com/Jermolene/TiddlyWiki5/pull/1380 > > Best wishes, > > — tb > It is now possible with the new "tag" attribute of the reveal widget,

[tw] Re: favicon in tiddlywiki5.x

2015-09-15 Thread Evolena
The issue with being able to directly edit the TW5.com is that, unlike other wikis systems, the TW core is also editable, so anyone could break it, or worse. So the moderation is far more important than content-only moderation. -- You received this message because you are subscribed to the

[tw] Re: Changing $:/core/ui/TagTemplate

2015-09-15 Thread Evolena
In the tag-body-inner macro, you only need to - change the behaviour of the button widget to navigate to the current tiddler instead of displaying a popup - delete all the reveal widget (which displays the content of the popup) \define

[tw] Re: Reusing the TW5 official site's documentation macros

2015-09-14 Thread Evolena
The tw5.com documentation has been restructured a while ago. The macros and styles it uses are system tiddlers of the tw5.com edition, and not included in the TW core: $:/editions/tw5.com/doc-macros $:/editions/tw5.com/doc-style $:/editions/tw5.com/if-macro.js If something else is missing,

[tw] Re: Reusing the TW5 official site's documentation macros

2015-09-14 Thread Evolena
You may also need $:/editions/tw5.com/if-macro.js -- 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] looping through an array in a macro

2015-09-13 Thread Evolena
Le dimanche 13 septembre 2015 10:48:18 UTC+2, Bob Flandard a écrit : > > Hello, > > Is it possible to define an array and pass it as an argument to a user > defined macro and then loop through each element of the array within the > macro? > > Thanks, Bob > Of course, something lke that:

[tw] Re: TW5 - Suggestions for truly long term use?

2015-09-13 Thread Evolena
See Performance If your current sidebar tab contains a long list (e.g. the Recent tab), it slows down TW. As if you've opened tiddlers with a lot of lists. As an example, my 4,5 Mb TW saves in ~4s if I'm on the Recent tab, and less than 2s if I'm on "Open"

[tw] Re: TWC to TW5 help

2015-09-12 Thread Evolena
Le samedi 12 septembre 2015 14:12:17 UTC+2, Bob Flandard a écrit : > > For the TW5 code above to work (for me), I needed to delete the macro > argument and replace $$PROP$$ with !!summary, having first defined a > field in each tiddler called summary. This is really inconvenient because I >

[tw] Re: [TW5] Show field from story tiddler within list widget

2015-09-12 Thread Evolena
Le samedi 12 septembre 2015 14:49:39 UTC+2, francois godard a écrit : > Now I have a sublist that needs both filtering on the story tiddler and on > the <> > <$list filter="[is[current]tagging[]] +[tag[<>]]" variable="Rec"> > > saddly the run +[tag[<>]] is not understood > > What would be the

[tw] Re: macrocall to transclude... Why no worky?

2015-09-11 Thread Evolena
I haven't understood it at the first glance. And because of the final smiley I was wondering if you were kidding (sharing a funny mistakes that you had already resolved) or if it was serious. If it often happens to you, you can define that macro: \define transclude(tiddler) <$transclude

Re: [tw] Re: Learning by looking and stealing ;-)

2015-09-10 Thread Evolena
Le jeudi 10 septembre 2015 14:14:56 UTC+2, Ray Vermey a écrit : > > Yes i saw the macro description indeed, but what i would like to learn is > WHEN and WHY could you use Maros? > Concepts are explained too: http://tiddlywiki.com/#Macros A macro is basically text replacement, with the

[tw] Re: Learning by looking and stealing ;-)

2015-09-10 Thread Evolena
Le jeudi 10 septembre 2015 11:48:42 UTC+2, Ray Vermey a écrit : > I really miss a solid introduction (of the more advanced features) > For instance: What are macro's, how to use them? How to create them > You looked at other TW site, but did you read the reference documentation on

Re: [tw] Re: Learning by looking and stealing ;-)

2015-09-10 Thread Evolena
Some examples of usage: - you have a piece of text that is laborious to write, but that you have to use at several places. For example, in French we nee unbreakable spaces before ":", ";" or "?", but unbreakable space is laborious to write, so I can define a macro that replaces

Re: [tw] Re: Learning by looking and stealing ;-)

2015-09-10 Thread Evolena
Le jeudi 10 septembre 2015 15:49:34 UTC+2, Ray Vermey a écrit : > is there also the possibiltie of giving a field a numerical value and the > create a filter where i want to show > the results of the values BETWEEN or GREATER THAN a certain value? > I know how to display tiddlers with a known

[tw] Re: macrocall to transclude... Why no worky?

2015-09-10 Thread Evolena
Maybe transclude is a widget and not a macro? ;) A : transclusion B : widget call C : macro call of a widget -- 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: Request for Input: BibTeX to Tiddler conversion method

2015-09-08 Thread Evolena
You can easily import tiddlers stored in json files in Tiddlywiki. Try to export (Advanced Search, "Filters" tab) a selection of tiddlers in JSON, to look at how it is structured. Le mardi 8 septembre 2015 01:13:09 UTC+2, Tierney Coren a écrit : > > This looks like it might be good, if

[tw] Re: thumbnail-right just an image

2015-09-08 Thread Evolena
Le mardi 8 septembre 2015 12:11:58 UTC+2, Mat a écrit : > i.e to me it seems that it expects as its first argument a link, i.e which > tiddler that it should link to. You can try to make this empty like so: > > <> > No, his macro call is right. The first link parameter is optional, and as he

[tw] Re: [tw5] Text-Slicer Plugin

2015-09-08 Thread Evolena
Le lundi 7 septembre 2015 14:52:15 UTC+2, Jeremy Ruston a écrit : > > Thanks for the comments (and good to see you posting again!). > I was busy spreading the word by using Tiddlywiki in a project with others people (so I went further in interface customization than I ever did before, with

[tw] Re: thumbnail-right just an image

2015-09-08 Thread Evolena
OK, I've found how to correct the display of this "" when there is no caption parameter : In the shadow tiddler "$:/core/macros/thumbails", at the end of the definition of the thumbnail macro, there are these lines: $caption$ \end The issue is corrected by adding a line break between the

[tw] Re: [tw5] Text-Slicer Plugin

2015-09-05 Thread Evolena
I'm following this plugin with interest, especially with the recent commit to use list field instead of tags for the parental relation (not yet available on the prerelease) :) It doesn"t manage all wikitext for the moment, ok. But it recognize only one level of list (I tried to slice the

[tw] Re: TW5 $button to... Not working on static

2015-08-30 Thread Evolena
Isn't it related to the fact that static version purpose is to not use Javascripts? -- 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] Most basic Hello World version of TW?

2015-08-30 Thread Evolena
Maybe the right question is not How do I separate the Tiddlers from the Wiki? (tiddlers, not tiddles :) )but How do I modify the UI to fit my needs? You can look at Jed's Stuff (http://ooktech.com/jed/externalbrain/#Dashboard) for example. It doesn't look like a wiki anymore, it's more of a

[tw] Re: TW5 drawing configuration

2014-12-07 Thread Evolena
You can also configure the defaul color and linewidth in these tiddlers: $:/config/BitmapEditor/Colour http://tiddlywiki.com/#%24%3A%2Fconfig%2FBitmapEditor%2FColour $:/config/BitmapEditor/LineWidth http://tiddlywiki.com/#%24%3A%2Fconfig%2FBitmapEditor%2FLineWidth -- You received this

[tw] Re: [TW5] Default AutoSave to be OFF

2014-12-02 Thread Evolena
However if autosave is OFF by default, you still cannot loose that much because the wiki informs you about unsaved changes. Again I think we need other users' opinion on this. And by users I mean non-developer users :-) Misclick the back button of the browser, and you will loose that

[tw] Re: Workflow: save current set of tiddlers?

2014-12-02 Thread Evolena
Underscore (this one is proposed on Adopt a Titles Policy, or any other character that suits you), is in my opinion good for personal use, because you may want to easily find your own system tiddlers at the top of the list. What I tried to say is that $:/tb/ui/MoreSideBar/Stories (so without

Re: [tw] Re: Workflow: save current set of tiddlers?

2014-12-01 Thread Evolena
Really interesting work (saving stories from Metabele and TB5 from Tobias). I should search for a dedicated TB5 post, but I have a remark: you shouldn't prefix non-core system tiddler with $:/core/ui/foo (now that I've understand what this foo word is, I can use it instead of ... or xxx :-P ),

Re: [tw] [TW5] How to make sure filter has only unique items?

2014-11-23 Thread Evolena
You see twice the code of $:/template/view-template because it is tagged with $:/tags/ViewTemplate, so it applies the template to itself once because it is displayed inside itself, and once because it is displayed as any other tiddler (see any other ViewTemplate tiddler, for example

[tw] Re: [TW5] FILTER: [valueA]listed[field1] AND [valueB]listed[field2] ???

2014-11-21 Thread Evolena
Isn't that the old regexp syntax that has been removed in 5.0.17? -- 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: [TW5] FILTER: [valueA]listed[field1] AND [valueB]listed[field2] ???

2014-11-21 Thread Evolena
Does this work? $list filter=[regexp:courses{Sara!!course}regexp:levels{Sara!!level}]/ -- You received this message because you are subscribed to the Google Groups TiddlyWiki group. To unsubscribe from this group and stop receiving emails from it, send an email to

[tw] Re: [TW5] FILTER: [valueA]listed[field1] AND [valueB]listed[field2] ???

2014-11-21 Thread Evolena
Does this work? $list filter=[regexp:courses{Sara!!course}regexp:levels{Sara!!level}]/ Or would you like to avoid the regexp thing? I'm not sure this is possible for this use-case (I know of nothing for ANDing filters when the sources on which they apply are different). -- You received this

[tw] Re: [TW5] FILTER: [valueA]listed[field1] AND [valueB]listed[field2] ???

2014-11-21 Thread Evolena
The listed filter is more complex The *listed* filter operator returns the titles of the tiddlers that have list fields that contain any members of the current list. The optional operand can be used to specify a different field.. So: - you select a list of tiddlers, which are what you are

[tw] Re: [TW5] limit with macrocall for timeline ignored?

2014-11-20 Thread Evolena
That's because the limit parameter applies to the outer list (ie the dates), and not to the number of results of the inner list (the tiddlers modified at that date). It has been said somewhere, but I don't remember where. Le jeudi 20 novembre 2014 12:46:07 UTC+1, Tobias Beer a écrit :

[tw] Re: [TW5] Tagging Macro Problems

2014-11-17 Thread Evolena
Le lundi 17 novembre 2014 13:41:26 UTC+1, Tobias Beer a écrit : I was trying to create a simple tagging macro tagged $:/tags/Macro , so I thought. http://taggly5.tiddlyspot.com/#%24%3A%2Fmacros%2Ftagging \define tagging() $list filter=[all[current]tagging[]] /$list \end Any reason

[tw] Re: [TW5] Tagging Macro Problems

2014-11-17 Thread Evolena
There must be a smarter solution, but you can try this macro definition: \define tagging(title:currentTiddler) $set name=myTitle value=$title$ myTitle $list filter=[titlemyTitletagging[]] /$list /$set \end However for it to work with a title, you need to use a trick: All content for current

[tw] Re: [TW5] Tagging Macro Problems

2014-11-17 Thread Evolena
(you can get rid of the myTitle line, it was here for investigating purposes) -- You received this message because you are subscribed to the Google Groups TiddlyWiki group. To unsubscribe from this group and stop receiving emails from it, send an email to

[tw] Re: [TW5] How do I add a TOC or links to the right hand control panel?

2014-11-17 Thread Evolena
It is briefly mentioned in http://tiddlywiki.com/#SystemTags but it would deserve to be at least referenced in the Customise TiddlyWiki http://tiddlywiki.com/#Customise%20TiddlyWiki toc section. -- You received this message because you are subscribed to the Google Groups TiddlyWiki group. To

[tw] Re: [TW5] Skeeve: Quick Tagging

2014-11-17 Thread Evolena
Is the list widget an appropriate parent for the action widgets? -- 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: Link with Custom Title to Section Heading Inside Tiddler

2014-11-14 Thread Evolena
But then, again, it would really be nice to see all of book and chapters in one story lineup as... story tiddler chapter 1 chapter 2 ...with the ability to directly open / go to any (generated) section via some clickable toc (or a manually defined link, really), and preferably some

[tw] Re: TW5: list of available macros and where they are defined

2014-11-14 Thread Evolena
Only for finding global macros, you can use some more precise filters: [all[shadows]module-type[macro]] - all core JS macro [all[shadows]tag[$:/tags/Macro]] - all core wikitext macros [tag[$:/tags/Macro]] - all user defined wikitext macros A description field exist, but it is not used for core

Re: [tw] [TW5] Top Bars

2014-11-14 Thread Evolena
I would also like my clock to show up first? Or would that be another feature enhancement? Just add to the clock button the field list-before. It seems to work even without value, but I had to save two times the tiddler for the date to correctly display first. Also there is a little

[tw] Re: Link with Custom Title to Section Heading Inside Tiddler

2014-11-13 Thread Evolena
I just gave it a look some time ago, but what if - you create a substory in a tiddler, with several tiddlers inside it - you insert at the top of the hosting tiddler a list similar to the Open tab, but for the substory If you manage to prevent the tiddler toolbar of the substory to show, or

Re: [tw] Re: A use case story: reading a text, annotating with questions, filtering with sufix

2014-11-06 Thread Evolena
The preview pane came in useful. I created a link, then was able to click on the link in the preview to make that tiddler. I then removed text from the original and put it in the new tiddler. Very interesting. I've already used the preview pane this way too. -- You received this

[tw] Re: Numbers in TW, cost tracking?

2014-11-03 Thread Evolena
You can look at the nsort filter: http://tiddlywiki.com/#FilterOperator%3A%20nsort There isn't any mathematical operation available for the moment (but it is planned: https://github.com/Jermolene/TiddlyWiki5/issues/254). -- You received this message because you are subscribed to the Google

  1   2   >