[tw5] Re: How can I change css attributes once a button is pressed?

2020-05-17 Thread Jakob
This is really clever. Thanks a lot! Am Sonntag, 17. Mai 2020 10:07:36 UTC+2 schrieb BurningTreeC: > > Hi Jakob, > > you could create a toggle button like this: > > <$button><$list filter="[[$:/state/invisible]is[missing]] > [{$:/state/invisible}match[s

[tw5] Re: TW5 home button?

2020-05-17 Thread 'Jakob Schwichtenberg' via TiddlyWiki
Where do I need to add this code Home to make the home button work? Simply putting it into a tiddler yields a button that does nothing. Am Sonntag, 3. November 2013 22:23:58 UTC+1 schrieb David Gifford: > > Any way to do a home button for TW5? That is, when you click on the > SiteTitle, all

[tw5] How can I change css attributes once a button is pressed?

2020-05-17 Thread 'Jakob Schwichtenberg' via TiddlyWiki
I want to include a simple button that controls certain css aspects. For example, when the button is clicked, all elements with a specific css class should be made invisible or visble. How is this possible in TiddlyWiki? Using standard JavaScript I would add a html button: Toggle Elements

[tw5] Is it somehow possible to save the history of tiddlers that were viewed by a specific user?

2020-05-16 Thread 'Jakob Schwichtenberg' via TiddlyWiki
Is there any plugin/feature that allows users to see a list of all the tiddlers they viewed? (Not just during one visit but a list that keep accumulating during multiple visits) -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe

Re: [tw5] Re: [Presenting]: STROLL official rollout!

2020-05-13 Thread 'Jakob' via TiddlyWiki
Hi David, thanks! That's what I'm doing now (edit locally, save html -> upload github pages). It's a bit cumbersome but I guess there currently isn't a much better option. Best, Jakib Am Mittwoch, 13. Mai 2020 13:56:17 UTC+2 schrieb David Gifford: > > Hi Jakob, I think you are ask

[tw5] Re: [Presenting]: STROLL official rollout!

2020-05-13 Thread 'Jakob' via TiddlyWiki
What's a good way to make a stroll site publicy available? Static exports kill all the nice features but loading the full tiddler takes far too long. Specifically, how did you host and deploy the example stroll site ate https://giffmex.org/stroll/stroll.html? Any tips would be amazing. Am

[tw5] Is it possible to open new pages next to each other similar to the design of the federated wiki?

2020-05-13 Thread 'Jakob' via TiddlyWiki
In Tiddlywiki new pages are traditionally opened on top of old pages. In the Federated Wiki new pages are opened next to the old ones. Moreover, as we click on more links, the old pages move further to the left while new pages appear to the right. Is it somehow possible

[tw] Re: Playing with custom fields

2010-02-05 Thread Jakob Graulund Jørgensen
My working answer if anyone is interested: __ % !out $1 !end %/tiddler ShowNewerList##out with: {{ var out=[]; var target=$1; var searchtiddler = $2; var tids = store.getTiddler(); for (var i=0;itids.length;i++) { var a=tids[i].fields.somefield1; var

[tw] Playing with custom fields

2010-02-04 Thread Jakob Graulund Jørgensen
I want to search through a specific tiddler's custom fields and if I match a specific value, have a specific custom field's value output. My thinking is along the lines of (two easy steps): 1. Creating a tiddler named MyList with the following content: ___ % !out $1

[tw] Messing around with sitemap solutions.

2010-01-29 Thread Jakob Graulund Jørgensen
Hi I am messsing around in TW trying different ways to link tiddlers together. I have createde a lot of tidders based on an old fortune 500 list, and tried creating different ways of showing each company's relation to other companies (not their real relations, but some made up ones). And I

[tw] Re: A list of tiddlers based on custom fields

2010-01-07 Thread Jakob Graulund Jørgensen
Hi Tobias I know the way I have done it may seem a little counter-intuitiv. The reason I cant do it the other way around is that in the larger TW where I am trying to implement the solution I only know each tiddler's parent tiddler(s) and I can't think of an easy way to reverse this (ei I don't

[tw] Re: A list of tiddlers based on custom fields

2010-01-03 Thread Jakob Graulund Jørgensen
I have tried implementing both the AdvancedFilterTiddlersPlugin solution and the RelatedTiddlersPlugin solution in my tiddlywiki. cf. http://dl.dropbox.com/u/615478/empty2.html thx to Måns I got the AdvancedFilterTiddlersPlugin to work but I don't really understand how it can be used to save

[tw] A list of tiddlers based on custom fields

2010-01-02 Thread Jakob Graulund Jørgensen
Hi I would like to be able create a sort of treeview diagram like the RelatedTiddlersPlugin does it (http://www.tiddlytools.com/#RelatedTiddlersPlugin), but based on costum fields instead of internal links. I cannot, however, get RelatedTiddlersPlugin to do it or find a plugin that does it for

[tw] A tree view diagram

2009-11-26 Thread Jakob Graulund Jørgensen
Hi I am trying to create a sort of treeview diagram of tiddlers linked through costum fields. Lets say I have 6 tiddlers, TiddlerHead with no input in field myfield TiddlerNeck with the input TiddlerHead in field myfield TiddlerRightArm with the input TiddlerNeck in field myfield

[tw] Re: A tree view diagram

2009-11-26 Thread Jakob Graulund Jørgensen
To parts, sry. I hope the above question makes sense. Im not set on the proposed solutions so if anybody can come up with something smarter I am all ears. regards -- You received this message because you are subscribed to the Google Groups TiddlyWiki group. To post to this group, send email

[tw] Re: Generating a list based on custom fields.

2009-11-23 Thread Jakob Graulund Jørgensen
startsWith is a string function added by FET to the string prototype. You can't perform on an array, which is what readBracketedList() returns. So, do you have to do a readBracketedList to begin with? Obviously the simpler thing always works perfectly: forEachTiddler where '

[tw] Generating a list based on custom fields.

2009-11-19 Thread Jakob Graulund Jørgensen
Hi I'm trying to create a couple of alphabetazied lists (ei. a-m, n-t, u- z) . The lists have to be alpabetazied according to tiddlers' custom fields, and I want the costum fields to be what is displayed in the list (ie. not the title as usually). I cant however quite make it work. My guess is

[tw] Re: Generating a list based on custom fields.

2009-11-19 Thread Jakob Graulund Jørgensen
sortBy 'tiddler.fields[fieldone]' ?? it is store.getValue(tiddler,fieldone).readBracketedList().contains that is the problem. It doesnt distinguish between for example aaaBccc and cccBaaa Which is why i want to use .startsWith but i cant make that work -- You received this message because

[tw] Re: Generating a list based on custom fields.

2009-11-19 Thread Jakob Graulund Jørgensen
 'tiddler.fields[fieldone].startsWith(A)' it is a good idea but I simply cant get the .startswith to work. same problem as my original. -- You received this message because you are subscribed to the Google Groups TiddlyWiki group. To post to this group, send email to

[tw] WikifyPlugin

2009-11-01 Thread Jakob Graulund Jørgensen
Hi I am using the http://www.TiddlyTools.com/#WikifyPlugin to display formatted content from custom fields and it works pretty great. But tiddlers without content in custom fields display the code I've put into the viewtemplate inside the wikifymacro (ie. costumfi...@here costumfie...@here). If

[tw] Re: Search Plugin

2009-10-30 Thread Jakob Graulund Jørgensen
Hi The following is shown when the SearchOptionsPluginInfo is displayed: === +++*[search wood report=list See also:]... Error in macro search === +++*[search wood report]... Error in macro search === +++*[search wood report=]... Error in macro search === +++*[search wood

[tw] Re: Search Plugin

2009-10-30 Thread Jakob Graulund Jørgensen
I'm sorry for being so consistently unhelpful. The it is the tiddlywiki. I downloaded an empty tiddlywiki of the lastest verion and importede the SearchOptionsPlugin and the SearchOptionsPlugininfo tiddler. So it (ie the tiddlywiki) is completely blank other than those two tiddlers and the

[tw] Re: List of tiddler conditioned by links in fields

2009-10-15 Thread Jakob Graulund Jørgensen
/% !out $1 !end %/tiddler ShowList##out with: {{ var out=[]; var target=$1; var tids=store.getTiddlers(); for (var i=0;itids.length;i++) {    var alpha=tids[i].fields.owneralpha;    var beta=tids[i].fields.ownerbeta;    if (alpha alpha.contains(target)       || beta

[tw] List of tiddler conditioned by links in fields

2009-10-14 Thread Jakob Graulund Jørgensen
Hi This is probably impossible and/or stupid but here goes anyway. Let's say I've created some tiddlers (tiddlerOne, tiddlerTwo...) and two customfields (owneralpha and ownerbeta) In tiddlerOne I've given the fields owneralpha and ownerbeta the values, 75% tiddlerFive, and 25% tiddlerSeven

[tw] Re: Linking tiddlers

2009-10-12 Thread Jakob Graulund Jørgensen
Hi I have put the command snap in my toolbar, but i am missing a way to get multiple tiddlers output as multiple files. Right now I can only get the snap command to give me one file with multiple tiddlers. Obviously i can just cut that file into multiple files but that sort of feels like busy

[tw] Re: Linking tiddlers

2009-10-11 Thread Jakob Graulund Jørgensen
: numberThree (content only) AND On 10 Okt., 00:55, Måns humam...@gmail.com wrote: Hi Jakob As I understand your post - what you want is to render an independent and csstrue wikification of tiddlercontent?! To me that's the same as printing a htmlsnapshot... Try Eric's SnapshotPluginhttp

[tw] Links in custom fields

2009-10-10 Thread Jakob Graulund Jørgensen
Hi Is there a way to format (some of the text) ive put in my custom fields and/or create links to other tiddlers in my custom fields? eg customField1: lorem ''//ipso//'' [[differentTiddler]] --~--~-~--~~~---~--~~ You received this message because you are

[tw] Re: Special characters

2009-10-09 Thread Jakob Graulund Jørgensen
Your problem arises due to some very subtle Unicode vs. UTF-8 character encoding issues related to the TW core file I/O functions that ImportTiddlersPlugin uses to open and read local files (using OS- based filesystem access) or remote files (using XMLHttpRequest). Is there any way to

[tw] Linking tiddlers

2009-10-09 Thread Jakob Graulund Jørgensen
Hi Im creating a few meta-tiddlers that ara supposed to mesh the data from several other tiddler's custom fields. Right now im using this method: Create a tiddler called [[SerialLink]], containing: -- /% !out [[$1|$2]] !end %/tiddler SerialLink##out with:

[tw] Special characters

2009-10-06 Thread Jakob Graulund Jørgensen
Hi I am having some trouble loading tiddlers with special characters (the Danish letters æ, ø and å). I’m using the ImportTiddlersPlugin and the Danish letters appear as Chinese characters after importing them. Using the CreateTiddlersFromCSV there is no such error. The problem is, however,

[tw] Linking throuh custom fields

2009-10-01 Thread Jakob Graulund Jørgensen
Hi Trying something new and cant make it work. Lets say ive create 3 tiddlers with the tittles tiddlerTitleA tiddlerTitleB tiddlerTitleC, if i now create a fourth tiddler overView i can link to my 3 tiddlers by writing their names in overView. But what if i what to link to my 3 tiddlers through

[tw] Trouble loading a csv-file

2009-09-27 Thread Jakob Graulund Jørgensen
Hi I'm trying to create/load some tiddlers from a csv-file but it is not going very smooth. It works without a hitch using the plugin http://www.TiddlyTools.com/#CreateTiddlersFromCSV but when I try using http://www.TiddlyTools.com/#ImportTiddlersPlugin which I reckon would be a lot faster and

[tw] Mindmaps out of individual tiddlers

2009-09-15 Thread Jakob Graulund Jørgensen
Hi I'm trying to create mindmaps out of individual tiddlers. I've looked at several solutions (http://www.mail-archive.com/ tiddlywiki@googlegroups.com/msg04625.html) but I dont really like the graphics of most of these solutions. So now i'm trying to export my tiddlers into freemind that,

[tw] Re: Mindmaps out of individual tiddlers

2009-09-15 Thread Jakob Graulund Jørgensen
Mindmaps out of individual tiddlers = themselves as the the center of the tiddlers they link to. On Sep 15, 2:19 pm, Jakob Graulund Jørgensen jakobgraul...@gmail.com wrote: Hi I'm trying to create mindmaps out of individual tiddlers. I've looked at several solutions (http://www.mail

[tw] Re: Opening multiple tiddlers in the edit window

2009-09-09 Thread Jakob Graulund Jørgensen
Im possibly misunderstanding what i am doing. But I basically I pasted an endless row of newTiddler label:1 text:ABCDEFG tag:2 tag:1 newTiddler label:2 text:ABCDEFG tag:4 tag:3 newTiddler label:3 text:HIJKLMNO tag:2 tag:1 newTiddler label:4 text:HIJKLMNO tag:3

[tw] Opening multiple tiddlers in the edit window

2009-09-08 Thread Jakob Graulund Jørgensen
Hey Is there a smart way to open multiple tidderls in their eidt windows? And close them all again (ei press done) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups TiddlyWiki group. To post to this group, send

[tw] Re: Opening multiple tiddlers in the edit window

2009-09-08 Thread Jakob Graulund Jørgensen
Hey It was in a bit of rush when I wrote my original questions hence the rather summarized message. Here goes the extended version. My problem is that im loading a lot of data from a spreadsheet in Excel, I have coded the data using the newTiddler macro so I get a lot of new tiddlers and a lot

[tw] Re: Opening multiple tiddlers in the edit window

2009-09-08 Thread Jakob Graulund Jørgensen
Thx for the solution With my clumsy english I was trying to convey that I had solved the problem of getting the spreadsheet data to become new tiddlers, with text, titles, tags, labels, etc though your suggestion obviously has a bit more elegance to it. My main problem was instead that the tags

[tw] Re: Opening multiple tiddlers in the edit window

2009-09-08 Thread Jakob Graulund Jørgensen
I created 100+ tiddlers with the newTiddler macro and each of those tiddlers had 2 tags, so I was expecting about 30 tags (the tags overlapped) to appear in the tag section, but none did. And the forEachTiddler macro couldnt help me (i wanted to crossreference tiddler.tags.contains (X)

[tw] Multiple Tags

2009-09-04 Thread Jakob Graulund Jørgensen
Hey I'm trying to retag a lot (+200) of tiddlers for which im using TiddlerTweakerPlugin. My problem is that I want to give some tiddlers mulitple tags i.e give them an extra using the plugin without losing the original. eg tiddlerA, tagged x and tagged y tiddlerB, tagged z should both be

[tw] Re: Multiple Tags

2009-09-04 Thread Jakob Graulund Jørgensen
Neat, many thx fyi the simple macro also dawned on me newTiddler label:TiddlerA title:TiddlerA tag:x tag:y tag:C newTiddler label:TiddlerB title:TiddlerB tag:z tag:C