[tw] Re: pdf links to local wiki directory

2014-10-03 Thread Stephan Hradek
change [[…|…pdf]] to [ext[…|…pdf]] -- 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: I want to use [+/-] in list instead of dot

2014-10-02 Thread Stephan Hradek
So do it then. Here is something to get you started: ul li { list-style-type: none; } ul > li:before { content: "+"; } ul > li >ul > li:before { content: "-"; } Put it in a tiddler tagged "$:/tags/Stylesheet". Note: This is just a starting point. You should read about CSS and list-style.

[tw] Re: Internal Javascript Error

2014-10-01 Thread Stephan Hradek
Activating a javascript console might reveal some more error messages. -- 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

[tw] Re: [TW5] If in doubt ... concatenate ... any better solutions?

2014-10-01 Thread Stephan Hradek
I do not really understand what you wrote. Let me try to summarize: You want a table of those tiddlers which have the field "field_of_interest" which has the value the table-tiddler has in the field whose name is diefined in its field named "field_of_interest"? At least that's what I understand

[tw] Re: Transclusion inside table cells

2014-10-01 Thread Stephan Hradek
Am Dienstag, 30. September 2014 22:23:14 UTC+2 schrieb Eric Shulman: > > The purpose in answering questions is to make people successful when > using TiddlyWiki. No matter how simple the question (or how seemingly > obvious the solution), a positive, practical response is essential. > I beg t

[tw] Re: [TW5] How to set CSS for tiddler?

2014-10-01 Thread Stephan Hradek
Am Dienstag, 30. September 2014 22:17:51 UTC+2 schrieb Mark S.: > > Hi Ton, > > Each technique I try fixes something and breaks something else. > Time for you to look deeper into CSS I guess. Especially style preceedence .

[tw] Re: Transclusion inside table cells

2014-09-30 Thread Stephan Hradek
Instead of {{tableWikitext}} use <$transclude tiddler="tableWikitext" mode="block"/> -- 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...@goo

[tw] Re: Using List to populate column

2014-09-30 Thread Stephan Hradek
Small typeo: -- 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 tiddlywiki@googlegroup

[tw] Re: Using List to populate column

2014-09-30 Thread Stephan Hradek
Create a tiddler "rowcount" containing: table { counter-reset: rowcount; } tr{ counter-increment: rowcount; } span.counter:before { content:counter(rowcount); } and tagged as $:/tags/Stylesheet. Put into your cell where you want the counter -- You received this message because you

[tw] Re: [TW5] How to set CSS for tiddler?

2014-09-29 Thread Stephan Hradek
Give the tiddler a tag and you have a class label "tc-something-class" (or so - too lazy to look up). You can as well st a div around your tiddler having whatever style you want: content here @Jeremy: I seem to remember that we discussed (long, long time ago) about @@ creating a div. -

[tw] Re: [TW5] Technique, macro, widget or plugin to sum up numerical fields?

2014-09-29 Thread Stephan Hradek
As far as I know, not yet. -- 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 tiddlywiki

Re: [tw] Re: [TW5] Possible to show Title in Vertical Tabs?

2014-09-29 Thread Stephan Hradek
P.S. I think I found a way to solve - at least my -issue: 1. Create a tiddler setCurrentTiddler <$tiddler tiddler=<>><$transclude/> 2. use tabs like this: <> -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and sto

Re: [tw] Re: [TW5] Possible to show Title in Vertical Tabs?

2014-09-29 Thread Stephan Hradek
Am Sonntag, 28. September 2014 21:42:47 UTC+2 schrieb Jeremy Ruston: > > I think both the issues you've raised are quite confusing and unexpected. > As I just noticed :( > The tabs macro issue with the currentTiddler is probably a mistake: I > think it would have been better for the tabs mac

Re: [tw] Re: [TW5] Possible to show Title in Vertical Tabs?

2014-09-28 Thread Stephan Hradek
So it's not a bug, neither with the <$list> (the one I reported), nor with the template for tabs (as you need to use explicitly crafted templates for this) but a documentation issue? Fair enough. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group.

[tw] Re: [TW5] Or-ing tags in a list filter

2014-09-28 Thread Stephan Hradek
You HAVE TO put double quotes. You missed the additional, required [] around sort. <$list filter="[tag[A]] [tag[B]] [tag[C]] +[sort[title]]"> -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emai

[tw] Re: [TW5] Possible to show Title in Vertical Tabs?

2014-09-27 Thread Stephan Hradek
I meant: To fix the BUG, not the "buf" ;) -- 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 ema

[tw] Re: [TW5] Possible to show Title in Vertical Tabs?

2014-09-27 Thread Stephan Hradek
To fix the buf, open $:/core/macros/tabs and change <$list filter="$tabsList$" variable="currentTab"> <$reveal type="match" state=<> text=<> default="$default$"> <$transclude tiddler="$template$" mode="block"> <$transclude tiddler=<> mode="block"/> to <$list filter="$tabsList$"> <$r

[tw] Re: [TW5] Possible to show Title in Vertical Tabs?

2014-09-27 Thread Stephan Hradek
In theory you could use the fifth parameter "template" to transclude your tiddlers using another view template. In practice there seems to be a bug. @Jeremy: To illustrate the bug, go to http://tiddlywiki.com and create a tiddler "testme" containing: <$view field="title"/> Edit the "GettingSt

[tw] Re: Search by tags

2014-09-26 Thread Stephan Hradek
Works for me. Just entered the tags "index" and "plugin" and it's only showing a few tiddlers. -- 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

[tw] Re: TW5 New freaky li paragraph indenting after first line

2014-09-25 Thread Stephan Hradek
Screenshot? I don't see any new indents when I thest on tiddlywiki.com using this example: * sdf asdfs adfasd fs df sadf asdf sad f sdf sd f sadf sdf sd f dsf sdaf s df sdf sad f sdaf sadf a sdf sdf sd f sadf sd f sdaf sd f sdaf asd fs dfs df sdf sdf dsf fs fa saf sdf sd sd a f adsf dsf d asf

[tw] Re: Is it possible to make a field "created" editable?

2014-09-24 Thread Stephan Hradek
It is. Create a tiddler "SetDate" containing Tiddlername: <$edit-text tiddler="$:/temp/tiddlernamecreated" tag="input" type="text"/> Createdate: <$edit tiddler={{$:/temp/tiddlernamecreated}} field="created"/> Enter the tiddler you want to set the date on in the first field and observe its c

[tw] Re: [TW5] Local macro doesn't work with <$maketid> widget

2014-09-24 Thread Stephan Hradek
Am Mittwoch, 24. September 2014 17:19:01 UTC+2 schrieb PMario: > > <$set name="" value=""> ..context.. > The variable is only visible between the start and the end marker. I did > name it ..context.. here. > Please also note that in \define macro() …here… \end <$set name="" value=""> …co

Re: [tw] TW5 table CSS

2014-09-24 Thread Stephan Hradek
Am Mittwoch, 24. September 2014 13:34:36 UTC+2 schrieb Jeremy Ruston: > > The problem is that you are targeting the `` element for the > background colours. That works OK, but the `` elements within the rows > have their own background colours that lay over the top of the row colours. > The fi

Re: [tw] Re: Add Code Block in The Bullet List

2014-09-24 Thread Stephan Hradek
Am Mittwoch, 24. September 2014 12:41:55 UTC+2 schrieb Jeremy Ruston: > > I've updated the "Lists in WikiText" tiddler with a workaround for > multi-line list entries: > > > https://github.com/Jermolene/TiddlyWiki5/commit/f8e11da0fca088b62739459097215a78c2663d45 > > Correct me if I'm wrong, but

[tw] Re: EditSectionPlugin for TW5 ?

2014-09-24 Thread Stephan Hradek
As far as I know there are no sections in the TWC sense and so there is no plugin for it. Am Mittwoch, 24. September 2014 11:27:35 UTC+2 schrieb Hugo Disanv: > > I know I can create subtiddlers, but it isn't enough practical for me. > Can you explain this? What's so impractical about creating

[tw] Re: Search by tags

2014-09-24 Thread Stephan Hradek
Am Mittwoch, 24. September 2014 09:05:36 UTC+2 schrieb Danielo Rodríguez: > > Check if this is what you're looking for: > > > http://braintest.tiddlyspot.com/#TagsSearch-Plugin:%5B%5BImportant%20information%5D%5D%20TagsSearch-Plugin > > I like that. But it looks a bit broken in the Advanced Searc

[tw] Re: [TW5] Local macro doesn't work with <$maketid> widget

2014-09-23 Thread Stephan Hradek
Why do you set the variables "au" and "ti" and don't use it in your tituloPaper macro? It should work. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywiki

[tw] Re: Add Code Block in The Bullet List

2014-09-23 Thread Stephan Hradek
That's great! I hope I'll remember that. -- 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

Re: [tw] Re: Search by tags

2014-09-23 Thread Stephan Hradek
Am Mittwoch, 24. September 2014 08:31:22 UTC+2 schrieb aamaadmi: > > basically , in this video , symptoms were tags and tiddlies were > descriptions of medical conditions, so if i search using tags like > #raisedBP #>140/90 , the result " hypertension" tiddly would come up > on http://tiddlywi

[tw] Re: Add Code Block in The Bullet List

2014-09-23 Thread Stephan Hradek
Try transcluding a tiddler containing Step 3 -- 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 e

[tw] Re: TW5 - can't figure this transclusion/macro problem...

2014-09-23 Thread Stephan Hradek
Am Dienstag, 23. September 2014 21:14:31 UTC+2 schrieb rnaud: > > maybe escaping it with "~" if what I really want is the text with the > actual curly braces. > > Despite the fact that we talked about introducing a general escaping mechanism, there still is none. "~" does only escape WikiWords,

[tw] Re: [TW5]Error on nested macros

2014-09-23 Thread Stephan Hradek
Am Dienstag, 23. September 2014 18:27:36 UTC+2 schrieb Danielo Rodríguez: > > What I'm doing wrong?? > In order to check that, I think we'd need a "working" example, meaning: Something with test data and an example-call of the macro. -- You received this message because you are subscribed to

[tw] Re: listselect widget no longer working for me in 5.0.12-beta

2014-09-23 Thread Stephan Hradek
Am Dienstag, 23. September 2014 09:19:18 UTC+2 schrieb Michael Wiktowy: > > Thank you for pointing out the select widget. I don't think that was > available when I started using listselect. > That's the reason why I wrote listselect. I'm not yet sure whether I will drop listselect as it has fe

[tw] Re: Error when trying to save svg [TW5]

2014-09-22 Thread Stephan Hradek
Just an idea: Compare the "Type" field of http://tiddlywiki.com/#Motovun%20Jack.svg with the "Type" field of your svg. Do they match? -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from i

[tw] Re: listselect widget no longer working for me in 5.0.12-beta

2014-09-22 Thread Stephan Hradek
Am Montag, 22. September 2014 21:45:24 UTC+2 schrieb Michael Wiktowy: > > Hi Stephan, > > I noticed that listselect still does not work for TW 5.1. Are there plans > to revive it now that TW is stable or is it abandoned/obsoleted? > Dispite my promise I haven't done anything yet. Sorry for that

[tw] Re: Working on limiting the number of words/lines

2014-09-22 Thread Stephan Hradek
Am Montag, 22. September 2014 11:26:59 UTC+2 schrieb Shash: > > Though it worked properly, there was an issue of it not recognizing the > markup, used in the tiddler Basics. It is transcluding the entire tiddler > as just text. There are no headings etc., > This won't work for most of the ma

[tw] Re: Working on limiting the number of words/lines

2014-09-22 Thread Stephan Hradek
Hi Shash! Sorrry, but "it is not working as intended" is not a proper problem description. I understood what you intended - show the first 150 words. But of what? And what is the unexpected result? Maybe you can also upload your non-working example somewhere for others to look at? -- You rec

[tw] Re: TW5 - can't figure this transclusion/macro problem...

2014-09-21 Thread Stephan Hradek
Am Montag, 22. September 2014 06:10:42 UTC+2 schrieb rnaud: > > If you could still get to my questions about the $()$ syntax and the > non-cascading transclusion, it would help me understand why your code works > and mine does not. > The $(...)$ is used to transclude variables set wit <$set>.

[tw] Re: How do i use this type of list

2014-09-19 Thread Stephan Hradek
Would be good, you'd show us what you did by uploading it somewhere. Also make sure to use the correct tag as $:/tags/Stylesheet was introduced in - I think - 5.0.17. Before it was all lowercase. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. T

[tw] Re: How do i use this type of list

2014-09-19 Thread Stephan Hradek
I think the positioning isn't required: http://jsfiddle.net/PTbGc/ -- 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: RegExp

2014-09-19 Thread Stephan Hradek
I LOVE RegExps, but as I'm using them for almost 20 years now, I can't tell you of any good tutorial. Why not take any online regexp tester and any documentation and simply try it out. I also like the jEdit texteditor very much as it has good RegExp support and works on almost any platform hav

[tw] Re: TW5 - can't figure this transclusion/macro problem...

2014-09-19 Thread Stephan Hradek
The problem is: You need one more level of evaluation. Additionally I suggest to change your logic a bit. Why not create a tiddler "MyDomains" (or "$:/MyDomains") as a data tiddlre like so: domain1:domA.com domain2:domB.com And then in the server tiddler simply name the domain name - don't use

Re: [tw] can i change the background color of a single tiddler ?

2014-09-18 Thread Stephan Hradek
Create a tiddler on TiddlyWiki.com containing: div.tc-tagged-TableOfContents { background-color: pink; } tag that tiddler with "$:/tags/Stylesheet" and observe all tiddlers tagged " TableOfContents" turning pink. -- You received this message because you are subscribed to the Google Groups

Re: [tw] How do i use this type of list

2014-09-18 Thread Stephan Hradek
Am Freitag, 19. September 2014 08:21:14 UTC+2 schrieb Daniel Baird: > > > I don't know how to put css into a TW these days, but it's probably just > pasting it into a tiddler and giving it the right tag. > You are absolutely right. The tag is $:/tags/Stylesheet (or lowercase if you're pre 5.0

[tw] Re: [TW5] Eliminate margin below header

2014-09-18 Thread Stephan Hradek
Is this enough to get you going? div.tc-tiddler-body h1, div.tc-tiddler-body p:first-child, div.tc-tiddler-body h1 + p { margin:0; } -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails fro

[tw] Re: Vertical alignment in Tables

2014-09-17 Thread Stephan Hradek
Am Donnerstag, 18. September 2014 07:55:55 UTC+2 schrieb Eric Shulman: > > but clearly at least one person mis-interpreted the example. There's > always room to improve documentation! > And I misinterpreted the main point of that discussion :D Thanks for explaining, Eric. -- You received

[tw] Re: Vertical alignment in Tables

2014-09-17 Thread Stephan Hradek
Am Mittwoch, 17. September 2014 22:51:47 UTC+2 schrieb Stephen Kimmel: > > B) That was exactly how I got there; by copying from the documentation. > Perhaps some clarification to the docs is in order. > > Regarding that: It's CSS that you need to learn for this. Nothing tiddlywiki should docume

[tw] Re: Vertical alignment in Tables

2014-09-17 Thread Stephan Hradek
Did you try to create a tiddler tagged as $:/tags/Stylesheet containing td, th { vertical-align: top; } -- 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 tiddlywik

[tw] Re: NoteStormTW official home

2014-09-17 Thread Stephan Hradek
I did not follow the thread, but this is a trick with which one can transclude the first 100 words of a tiddler. Don't know whether it's useful for anyone. <$list filter="[list[HelloThere!!text]limit[100]]"><> Replace "HelloThere" with the tiddlername of your choice. Replace "100" with the n

[tw] Re: Is there a plugin or tool to delete tiddlers matching tag (or filter) ?

2014-09-17 Thread Stephan Hradek
To answer your first question, create this tiddler: |!Search tag: | <$edit-text tiddler="$:/temp/RenameTags/search" tag="input" type="text"/> | --- !//Matching tiddlers for deletion// <$list filter="[!has[draft.of]tag{$:/temp/RenameTags/search}sort[created]]"> <$button message="tm-delete-tiddl

[tw] Re: Any idea how to shorten this?

2014-09-17 Thread Stephan Hradek
removeprefix! ;) I had a look at the documentation and found a solution I like. Instead of building my table rows in the loop, I do it in a macro now. Removing the title's prefix in the loop, I can reduce my list to: \define qc_row(id) <$checkbox tiddler="QC $id$" tag="resolved"/>

[tw] Re: Is there a plugin or tool to delete tiddlers matching tag (or filter) ?

2014-09-17 Thread Stephan Hradek
To answer the follow up question, take a look at http://tw5magick.tiddlyspot.com/ and search for "Rename Tags" which I created using a trick shown by Alberto Molina. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group

[tw] Re: [TW5] Is there a way to highlight certain rows of a table?

2014-09-16 Thread Stephan Hradek
If you understood the css, take this as a starting point: th ~ td { background-color: pink; } This will give all cells which are in the same row, after a header cell a pink background. So you just need to change the first cell to get the whole row highlighted. -- You received this message

Re: [tw] Any idea how to shorten this?

2014-09-16 Thread Stephan Hradek
Hi Xavier. Sure… rolling out the qclink macro gets rid of one macro call. But then you need to have this rolling out in each list, which isn't too convenient. So I hoped for a solution with just one macro call in the list (i.e. the table). -- You received this message because you are subscrib

[tw] Re: Auto dial

2014-09-16 Thread Stephan Hradek
You have to check the protocol name the phone expects. For Lync for example, I did this by using "sip:" if I remember correctly. -- 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, sen

[tw] Any idea how to shorten this?

2014-09-16 Thread Stephan Hradek
Hi! I started to use TiddlyWiki to keep a list of my opened tickets in HP Quality Center, which we use here at work. For each of those tickets, I create a tiddler "QC ###" where "###" is the ticket number. Now I've created a list of all tiddlers starting with "QC" and got the idea of providin

[tw] Re: [TW5] How to lower case

2014-09-15 Thread Stephan Hradek
The problem is: You do NOT convert to lowercase! The variable's content is just DISPLAYED in lower case. That's what the CSS is doing. If you really want to convert the stored text to lowercase, you need a JavaScript macro which can change a field's value. -- You received this message because

[tw] Re: Cloning tiddler

2014-09-14 Thread Stephan Hradek
No idea how to fix it, but a workaround for cloning a tiddler is: Open the original tiddler in edit mode, drag and drop from the sidebar (the "Open" tab) the tiddler's link to the wiki. Yo will get asked whether you want to import it. Rename the currently open tiddler and import the dropped one.

[tw] Re: [TW5] Is there a way to highlight certain rows of a table?

2014-09-11 Thread Stephan Hradek
Does this help? https://groups.google.com/d/msg/tiddlywiki/-VAUumD1y1w/OkyEVo4FATcJ -- 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...@googleg

[tw] Re: sort by column (in a table)

2014-09-11 Thread Stephan Hradek
Sort by: <$select field="sortfield"> Banque Type BanqueBeneficiairebalancedateTypeendlocationnumstatusnotes <$list filter="[tag[compte-banque]sort{!!sortfield}sort[beneficiare]]"> <$link><$view field="banque"/> <$view field="beneficiaire"/> <$view field="balance"/> <$view field="balance-date"

[tw] Re: sort by column (in a table)

2014-09-11 Thread Stephan Hradek
TW can't do that with static tables. If, however, you create the table using the list widget, it might be possible. Show us what you got. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails fr

Re: [tw] Re: On the fly completions/suggestions

2014-09-11 Thread Stephan Hradek
Am Donnerstag, 11. September 2014 08:36:44 UTC+2 schrieb Alain Dutech: > > Thx for the answer. I'll wait then :o) > Should I learn javascript in the meantime to help the developpers ? > > It's never wrong to learn something new. -- You received this message because you are subscribed to the Go

[tw] Re: Upgrading, TiddlyWiki5

2014-09-10 Thread Stephan Hradek
Am Donnerstag, 11. September 2014 06:05:57 UTC+2 schrieb JL_B: > > I've tried the suggested only way of upgrading. I have 2 TiddlyWikis that > are version. 5.0.8. I couldn't upgrade before either so I left them. > > Please explain more. I downloaded one of yours and an empty TW5. I dropped you

[tw] Re: [TW5] Proper formatting of nested bullets after after a displayed MathJax equation?

2014-09-08 Thread Stephan Hradek
Did you try to move the equation to another tiddler and transclude that tiddler? I don't say it works, I'm just curious. -- 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 ema

[tw] Re: [TW5] How to display a background gradient

2014-09-08 Thread Stephan Hradek
Am Montag, 8. September 2014 21:10:00 UTC+2 schrieb RickL: > > Great idea for highlighting tiddler titles! > Is there a way to highlight only the text, and not have the gradient bar > running all across the tiddler? > > Do you understand CSS? Then I'd suggest to use Firefox and install its addo

[tw] Re: [TW5] Search in field contents?

2014-09-08 Thread Stephan Hradek
Small enhancement: \define searchInField(field, for) <$list filter="[!is[shadow]!is[system]field:$field$/$for$/]"> <$link><$view field="title"/> \end <$reveal state="$:/temp/search" type="nomatch" text=""> <$list filter="[!is[shadow]!is[system]fields[]]" variable="fieldname"> Searching in f

[tw] Re: [TW5] Search in field contents?

2014-09-08 Thread Stephan Hradek
Create this tiddler: \define searchInField(field, for) <$list filter="[!is[shadow]!is[system]field:$field$/$for$/]"> <$link><$view field="title"/> \end <$list filter="[!is[shadow]!is[system]fields[]]" variable="fieldname"> Searching in field: <> <$macrocall $name="searchInField" field=<> f

[tw] Re: [TW5 beta 16]Button Code no longer working

2014-09-07 Thread Stephan Hradek
Thanks for showing me how to fix my code. I just needed that. I really do have to update my site... If only I could get the time :( -- 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: What is the meaning of triple curly braces?

2014-09-02 Thread Stephan Hradek
Am Mittwoch, 3. September 2014 06:01:33 UTC+2 schrieb c pa: > > Which seems odd. I can't find any explanation. I'm using 5.0.16-beta > > Search for {{{ on tiddlywiki.com and you'll find this: http://tiddlywiki.com/#Transclusion%20in%20WikiText Does it help? -- You received this message becaus

Re: [tw] [TW5] How to check a tiddler's title (not) ending with a certain postfix?

2014-08-28 Thread Stephan Hradek
Am Donnerstag, 28. August 2014 17:36:05 UTC+2 schrieb Jeremy Ruston: > > > The other concern would be that each filter operator would need to > explicitly support the required directives. > Except if you give us JavaScript comparators which support them. So instead of comparing 2 values with "

Re: [tw] [TW5] How to check a tiddler's title (not) ending with a certain postfix?

2014-08-28 Thread Stephan Hradek
Regarding case: How about a general filter operator which defines case sensitivity? My proposal would be to look what Applescript has: http://books.gigatux.nl/mirror/applescriptdefinitiveguide/applescpttdg2-CHP-19-SECT-6.html So to see whether a title ends with "/doc", ignoring case, and starts

[tw] Re: [TW5] Styling tooltip?

2014-08-25 Thread Stephan Hradek
If you styled within the same tiddler, you didn't use "class" but "style". You can't use "style" here. Create a tiddler "tooltip" and tag it as suggested above. But the CSS into that tiddler and you should be fine. -- You received this message because you are subscribed to the Google Groups "

[tw] Re: [TW5] Styling tooltip?

2014-08-25 Thread Stephan Hradek
Can you show the full example? Did you forget to tag the stylesheet tiddler with $/tags/stylesheet? -- 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+uns

Re: [tw] [TW5] Styling tooltip?

2014-08-24 Thread Stephan Hradek
Am Montag, 25. August 2014 00:47:07 UTC+2 schrieb Andreas Hahn: > > In order to be able to do that you would need to create your own custom > tooltip, which is a little bit more effort but still relatively easy. > Here is an example: http://www.webdesignerdepot.com/2012/11/how-to-create-a-simp

[tw] Re: [TW5] Feature Request : Make the .tid files name:value pairs start with ##

2014-08-23 Thread Stephan Hradek
But what if # is not the comment-sign, but // is? I'd advise you to write a small script which does the removing for you. I guess It'll be a perl one-liner. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop

Re: [tw] [TW5] Add information to Fields/Links ?

2014-08-19 Thread Stephan Hradek
This should work: <$list filter="[field:author{!!title}]"> -- 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 th

[tw] Re: Is auto-tagging possible in TiddlyWiki (5.0.13-beta)?

2014-08-19 Thread Stephan Hradek
I don't think it's too good an approach. You'll get a very huge regular expression plus you need to make sure that every tiddler's special characters (like [, ], {, } ., |, *, ?, +…) are properly escaped. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki"

[tw] Re: [TW5] Add information to Fields/Links ?

2014-08-18 Thread Stephan Hradek
Am Montag, 18. August 2014 21:17:46 UTC+2 schrieb Jean-Charles: > > > I came across TW5 while coding a personal document management for myself, > and TW5 seem to be an excellent candidate. However I would like to expose a > feature that may really be neat for managing all kind of informations,

[tw] Re: What setting defines this?

2014-08-15 Thread Stephan Hradek
None I think. It seems you have a theme which defines a border for a button's hover. In plain TW5 that border is set to 0. -- 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 e

[tw] Re: Is auto-tagging possible in TiddlyWiki (5.0.13-beta)?

2014-08-09 Thread Stephan Hradek
So there is some mistake in your copy & paste, which I can't fix without seeing it. But for your convenience I'll copy the full working tiddler here: /*\ title: $:/core/modules/parsers/wikiparser/rules/wikilink.js type: application/javascript module-type: wikirule Wiki text inline rule for wiki

[tw] Re: Is auto-tagging possible in TiddlyWiki (5.0.13-beta)?

2014-08-09 Thread Stephan Hradek
Open the tiddler $:/core/modules/parsers/wikiparser/rules/wikilink.js Search for the line textPrimitives.unWikiLink = "~"; and enter above that line this text: var knownLinks = [ "Gropius", "Bauhaus" ]; Extend the list of words to your needs. Then search for the lines exports.init

Re: [tw] How about the searching speed on 50,000 articles?

2014-08-01 Thread Stephan Hradek
Am Donnerstag, 31. Juli 2014 14:36:09 UTC+2 schrieb Kathir J: > > > How many tiddlers the TiddlyWiki can support and the size of each file? > > Depends on Browser, OS and Computer. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe

[tw] Re: TW5 on Tiddlyspot, how? ...and dare I utter nodejs?

2014-07-23 Thread Stephan Hradek
ad 4: Did you try to import any standalone TW into a blank Node.js TW? Did you try to download a Node.js TW? I think that *should* solve your questions. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop recei

[tw] Re: How to escape __ and //

2014-07-22 Thread Stephan Hradek
You forgot to mention [twc] or [tw5] in the topic. I assume, this is twc… Someone else needs to jump in here. -- 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 tidd

[tw] Re: How to escape __ and //

2014-07-22 Thread Stephan Hradek
As long as ~ does not generally unescape, going for html escapes might help: _ => _ / => / -- 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...

[tw] Re: TW5: Problem Using Stephan Hradek's newtiddler plugin

2014-07-17 Thread Stephan Hradek
newtiddler is a real plugin with more than one tiddler, packaged into a tiddler, while let is just one tiddler without any additional files. I'm still learning how to properly create plugins. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To un

[tw] Re: TiddlyWiki Hangout #54 will be on Tuesday 15th July at 4pm BST

2014-07-15 Thread Stephan Hradek
DARN! Posted to the group instead of mailing to @Jeremy :( That's the reason for the deleted post. -- 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+unsu

[tw] Re: TiddlyWiki Hangout #54 will be on Tuesday 15th July at 4pm BST

2014-07-15 Thread Stephan Hradek
Won't make it I guess. Niels has vacation and couldn't sleep this night. So at 2 he woke me up when I just got some sleep. From that time on I couldn't sleep until 4:30. I then got 3 hours of sleep and now I'm dead-tired (if that's correct english). Still have to figure out how to best set up V

[tw] Re: Case Sensitive Links

2014-07-14 Thread Stephan Hradek
Somehow the thread got splitted. Seen this reply? https://groups.google.com/d/msg/tiddlywiki/N0crl60Y1M4/apW0kkYIrJ4J -- 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: How to align multiple columns

2014-07-13 Thread Stephan Hradek
I can't see that… Browserissue? -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from

[tw] Re: [TW5] How do I right align a table?

2014-07-13 Thread Stephan Hradek
As already state some time ago, a clearing elememnt is not required. https://groups.google.com/d/msg/tiddlywikidev/a23v2KQufTk/C4uPEi1e0IsJ In this case, where a table is floating, the code needs to be slightly a bit different, but I think this change will apply also to divs. Search the web for

[tw] Re: CSS Changing Tiddlylink Color Possible?

2014-07-12 Thread Stephan Hradek
Is this sufficient? @@.example [[HelloThere]] @@ Which renders as HelloThere -- 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...@googleg

Re: [tw] Re: Case Sensitive Links

2014-07-12 Thread Stephan Hradek
infernoape is almost right. My "aliases"-trick works here also. create a tiddler "unwikified" containing just: <$view field="title"/> Create a tiddler named "ic" (for irgnore case): \define find_original() <$list filter="[field:title/^$(theTitle)$$/(i)limit[1]]"><$link>{{$(theTitle )$||unwikifi

[tw] Re: [TW5] Access included images in CSS

2014-07-10 Thread Stephan Hradek
Am Donnerstag, 10. Juli 2014 10:50:59 UTC+2 schrieb Matabele: > > Hi > > Some related info here: > https://groups.google.com/forum/#!searchin/tiddlywiki/link$20icons/tiddlywiki/2Ph1RGBrbIo/2nSNcUDyzx4J > > Thanks! I KNEW it exists but couldn't find it. -- You received this message because yo

[tw] Re: [TW5] Access included images in CSS

2014-07-09 Thread Stephan Hradek
Did you find this? http://tiddlywiki.com/#MakeDataUriMacro -- 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

Re: [tw] Re: [TW5] Newbie: Line-break question

2014-07-09 Thread Stephan Hradek
Am Mittwoch, 9. Juli 2014 15:11:55 UTC+2 schrieb Matabele: > > > I'm still confused -- why then when I write: > > > some text > some text > some text > > > -- is the output different to: > > :some text > ::some text > :::some text > Is it? I just created a New Tiddler on tiddlywiki.com contai

Re: [tw] Re: [TW5] Newbie: Line-break question

2014-07-09 Thread Stephan Hradek
Am Mittwoch, 9. Juli 2014 13:47:16 UTC+2 schrieb Matabele: > > Hi Jeremy > > 1. A dt > element's end tag > may > be omitted if the dt >

[tw] Re: [TW5] Newbie: Line-break question

2014-07-09 Thread Stephan Hradek
Question: You came across this? http://tiddlywiki.com/#Hard%20Linebreaks%20in%20WikiText -- 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...@go

[tw] Re: GettingStarted tiddler is zealous at startup

2014-07-08 Thread Stephan Hradek
Am Mittwoch, 9. Juli 2014 05:19:20 UTC+2 schrieb Richard Smith: > > Expected behaviour is: GettingStarted doesn't appear > Actual behaviour is: GettingStarted appears > > Reason: The URL I'm reloading > (file:///Users/smith/Desktop/test9july2.html#GettingStarted:GettingStarted) > still contains

[tw] Re: [TW5] How to set background color for only one cell

2014-07-08 Thread Stephan Hradek
http://www.giffmex.org/tw5mall.htm search for "Add CSS to your tables" -- 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

<    1   2   3   4   5   6   7   8   9   10   >