[tw5] Re: I love TiddlyWiki because...

2020-03-14 Thread Luis Gonzalez
*You can link ideas just like the brain does* -- 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 view this discussion on

[tw5] Re: I love TiddlyWiki because...

2020-03-14 Thread Luis Gonzalez
*It works like the brain: jumping from one idea to another* -- 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 view

Re: [tw5] The-Book Chapter 10

2020-03-10 Thread Luis Gonzalez
The "building" of The-Book is becoming a wonderful challenge. Project completion is near and I will need readers to correct its content. If you want it, the next week I will release an .odt version of the book to share with all of you. I trust free software a lot and I think Libreoffice is a

[tw5] Re: Download just a tiddler from a TW?

2020-03-10 Thread Luis Gonzalez
Tip: If you want to export a group of tiddlers as if it were a complement, you must use the json format. -- 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

[tw5] Re: Download just a tiddler from a TW?

2020-03-10 Thread Luis Gonzalez
You can download a single tiddler as a .tid file (or csv, json or static html) in this way: 1. Open the Advanced search tiddler. 2. Type the title of the tiddler inside square brackets. For example, [[Using Stylesheets]]. 3. Click on the third icon on the left (the export tiddlers icon) 4.

[tw5] Re: A Tiddlers' foot

2020-03-09 Thread Luis Gonzalez
Its an unimportant plugin. It shows a little foot in each tiddler with the tiddlers tagged with the current tiddler and with the tasg of the current tiddler to navigate down and up: -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe

[tw5] Re: remove a tag from a list of tiddler

2020-03-06 Thread Luis Gonzalez
The macro: \define remove_tag(filter_tag remove_tag) > > <$button> > > > <$list filter="[tag<__filter_tag__>]" variable="deleteTiddler"> > > > <$fieldmangler tiddler=<> > > > > <$action-sendmessage $message="tm-remove-tag" $param=<<__remove_tag__>>/> > > > remove ''<<__remove_tag__>>'' from

[tw5] Re: List filter question

2020-03-05 Thread Luis Gonzalez
This macro does not catch links generated by macros or transclusions. \define the_filter() > > > <$set name="pattern" value="\[.*\[.+\]\]"> > > > > <$list filter="[all[]!is[system]] -[regexp:text] -[tag[source]]"> > <$link/> > > > > > \end Look at Chapter 9 of The-Book for a detailed

[tw5] Re: TEST your tiddlywiki knowledge

2020-03-05 Thread Luis Gonzalez
It is a good idea. I will create some test for the book. -- 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 view this

Re: [tw5] Re: Consider renaming TiddlyWiki

2020-03-03 Thread Luis Gonzalez
To avoid losing all the effort they already got many companies choose a "commercial name" but they continue naming in the same way. I think this is a "marketing" problem. We can choose a "brand" with a strong name but continue calling us Tiddlywiki. This way we don't loose all previous

[tw5] Re: A tiddlywiki with node.js video

2020-02-28 Thread Luis Gonzalez
This video taught me a lot about node.js - tiddlywiki This is what I need to learn about tiddlywiki. If you have more videos or other kind or reource to learn tiddlywiki at node.js, please tell me. I'm trying to make a little manual and I thank you a lot The video is perfect to me!! Thanks

[tw5] A tiddlywiki with node.js video

2020-02-28 Thread Luis Gonzalez
I use tiddlywiki in a corporate computer, so I can't install node.js, so I can't play with it. All I know about node.js is reading the docs and watching the videos. Here you will find a video about how can

[tw5] Re: Variables in links

2020-02-24 Thread Luis Gonzalez
Thank you!! I've found other "tricky" solution with variables: Enter the code: <$edit-text tiddler="$:/kewa/status" field="codcenter"/> <$set name="the_mail" tiddler="Mail-codes" index={{$:/kewa/status!!codcenter}}> <$set name="the_link" filter="[addprefix[mailto:]];> *>><>* -- You

[tw5] Re: Is there a way to create link link CamelCase but with dash in it?

2020-02-24 Thread Luis Gonzalez
Tiddlywiki creates automatic links only with CamelCase words but no with Camel_Case with dashes. You have to use the general way of creating links: [[CamelCase_WithDash]] It is the title of the tiddler surrounded by square brackets. I don't know about the Chinese. -- You received this

[tw5] Variables in links

2020-02-24 Thread Luis Gonzalez
I can't find the way of adding a variable to a link: Enter the code of the center: <$edit-text tiddler="$:/kewa/status" field="codcenter"/> <$set name="themail" tiddler="Mail-codes" index={{$:/kewa/status!!codcenter}}> [ext[mailto:]] What is the variables syntax in links I've tried

[tw5] Showing sections matching a list of values

2020-02-21 Thread Luis Gonzalez
I have a section, <> that I want to show when the field "status" is fold or partial or order. Now I repeat the code three times: \define my-macro() <$reveal state="!!status" type="match" text="fold"> <> <$reveal state="!!status" type="match" text="partial"> <> <$reveal state="!!status"

[tw5] Different templates in the story river depending on a tag.

2020-02-17 Thread Luis Gonzalez
Usually in the story river all tiddlers are shown with the same ViewTemplate: you can see the Title, Subtitle, tag zone and the content. But imagine you can see different content depending on a tag when you open the tiddler (witth other view template). It would be like having several types of

Re: [tw5] Making it easier to share demos/snippets in Google Groups

2020-02-07 Thread Luis Gonzalez
El martes, 4 de febrero de 2020, 17:22:20 (UTC+1), Jeremy Ruston escribió: > > Sadly Google Groups fails to linkify URLs that contain round brackets > (even though they are legal URL characters). However, I was able to make > the link work by manually copying and pasting into the browser

[tw5] Documenting Mechanisms

2020-02-07 Thread Luis Gonzalez
I think it is important to expand the documentation that exists about the mechanisms. I am adding a new little chapter describing them. This is a difficult question so maybe the expert people can send me some notes. If you read the first two mechanism I document them with simple phrases so is

[tw5] Re: Create a Simple Tiddlywiki Plugin: Level 1: Primary

2020-01-17 Thread Luis Gonzalez
The goal of The-Book is to deepen the use of Tiddlywiki. Mastering Tiddlywiki implies the knowledge of various technologies as Javascript, CSS etc so the book assumes some knowledge of them. Before I started I did not know Javascript and even CSS, but I have learned enough to enjoy learning

[tw5] Re: The-book weekly report

2020-01-17 Thread Luis Gonzalez
It's great!! This is just I want!!! Maybe it can be included as is. I would like to respect your work to the fullest. The next week I will start adding this first part to the book. *I really appreciate what you do for the book.I don't dominate this part and it would take a long time to

[tw5] Re: The-book weekly report

2020-01-16 Thread Luis Gonzalez
Thanks!! I don't mind work alone. I am learning a lot while writing this documentation and people in the group help me. But there is something that I would greatly appreciate, and that people who have written many plug-ins would not cost much work. I want to write a chapter with an example

[tw5] Re: The-book weekly report

2019-12-19 Thread Luis Gonzalez
It's a good suggestion. Thanks! -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to tiddlywiki+unsubscr...@googlegroups.com. To view this discussion on the web visit

[tw5] Re: The-book weekly report

2019-12-19 Thread Luis Gonzalez
The widgets chapter is still in first writing. I have to read and rewrite it. Thanks for your 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

[tw5] Re: The-book weekly report

2019-12-15 Thread Luis Gonzalez
Now I realize that my choice of editor is a big problem to collaborate, so I am thinking of another approach. Since the content is really what interacts with us, it may be more operative to create a wiki so that we can all collaborate more easily. Then I will pass everything to pdf. I will

[tw5] Re: The-book weekly report

2019-12-13 Thread Luis Gonzalez
> > I wonder what we'd need to do to replicate "Lyx" in a set of TW parsers? > > > I don't understand. You can download Lyx from https://www.lyx.org/. Is a Windows / Linux / Mac / ... application you have to install to use it. Lyx needs a installed latex in the computer like Miktex. -- You

[tw5] Re: The-book weekly report

2019-12-13 Thread Luis Gonzalez
I edit the text wit Lyx, a free easy open source Latex editor. It produces high quality pdfs. If you want to edit the The_Book.lyx file tell me and I send some information. -- You received this message because you are

[tw5] Wikitext in $list widgets

2019-12-04 Thread Luis Gonzalez
I saw some wikis (http://tw5magick.tiddlyspot.com, the "List Questions" tiddler) with this code: <$list filter="[tag[Quiz]tags[]] -Quiz +[sort[title]]"> *! <$view field="title"/>* <$list filter="[is[current]tagging[]] +[tag[Quiz]] +[sort[title]]"> <$link><$view field="title"/> And it renders

[tw5] Re: The-book weekly report

2019-11-29 Thread Luis Gonzalez
*IMPORTANT NOTE:* The "borders" of the book are two: the basic tiddlywiki usage and the developing of Tiddlywiki. The-book moves between this two ends: - The-book does not explain the basic usage. We assume that the reader has already used Tiddlywiki - The-book does not explain how to

[tw5] Re: The-book weekly report

2019-11-29 Thread Luis Gonzalez
I accept your offer. I have never programmed in javascript so there are things that I don't know. I can handle with the use of macros and widgets but I need your help with the scripting and plugin sections. This is the process that I follow: 1. Somebody send me some explanations and

Re: [tw5] The-book weekly report

2019-11-29 Thread Luis Gonzalez
Thanks, Jeremy. I take this opportunity to congratulate you on this impressive software. Starting with Tiddlywiki is very easy but the step towards an advanced knowledge is really complex. I discovered tiddlywiki with the classic version long time ago and it's now when I understand the

[tw5] Re: Show some content only the 1st day of the month

2019-11-28 Thread Luis Gonzalez
I found the solution!!! The tiddler [[First day tasks]] has the content I want to show the first day of each month. With this code we show the content of the tiddler [[First day tasks]] only if today has the value 1. Else, it shows "no tasks". <$set name="today" value=<>> <$set name="one"

[tw5] Show some content only the 1st day of the month

2019-11-28 Thread Luis Gonzalez
I want to show some tasks inside a planning tiddler but only if it is the first day of the month. I think is necessary to use the <> macro. I've tried with the reveal widget and with filters but nothing works. -- You received this message because you are subscribed to the Google Groups

[tw5] Re: Query: Structure (HTML) -- Where is the visual PLAN?

2019-11-26 Thread Luis Gonzalez
I will include a little html diagram at the end of chapter 2 of The-book. Look at the following weekly report. -- 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

[tw5] Re: How to delete recently modified, new, recent list ?

2019-11-22 Thread Luis Gonzalez
Other option is show in recent only those input tiddlers that have been modified during this session. Open the $:/core/ui/SideBar/Recent tiddler and write: <$macrocall $name="timeline" subfilter="haschanged[]" format={{$:/language/RecentChanges/DateFormat}}/> -- You received this message

[tw5] Re: How to delete recently modified, new, recent list ?

2019-11-22 Thread Luis Gonzalez
I'm reading the group messages and I have seen this. The recent tiddler calls the timeline macro so if you want to reduce the tiddlers you show, add a subfilter parameter: 1. Open the $:/core/ui/SideBar/Recent tiddler. 2. Add a subfilter parameter with the days you want to show. For

[tw5] Importing data into a data tiddler

2019-11-21 Thread Luis Gonzalez
If you have a phone list in excel, what is the best way of import them into a data tiddler? -- 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

[tw5] Re: TW "Tiddler DB" Strategy

2019-11-19 Thread Luis Gonzalez
El miércoles, 20 de noviembre de 2019, 8:46:35 (UTC+1), Luis Gonzalez escribió: > > *Notes:* > >- Usually a tiddler for the Project A is tagged with "Project A" tag. >- A tiddler for both projects is tagged with "Project A" and "Project &g

[tw5] Re: TW "Tiddler DB" Strategy

2019-11-19 Thread Luis Gonzalez
El miércoles, 20 de noviembre de 2019, 8:46:35 (UTC+1), Luis Gonzalez escribió: > > *Notes:* > >- Usually a tiddler for the Project A is tagged with "Project A" tag. >- A tiddler for both projects is tagged with "Project A" and "Project &g

[tw5] Re: TW "Tiddler DB" Strategy

2019-11-19 Thread Luis Gonzalez
*Notes:* - Usually a tiddler for the Project A is tagged with "Project A" tag. - A tiddler for both projects is tagged with "Project A" and "Project B" - To have a list of the tasks for Project A you will write {{{ [tag[Project A]] }}}. This is a filter, so you have to study filters.

[tw5] Re: The-book. Weekly report

2019-11-10 Thread Luis Gonzalez
I'm not an English writer so I know the manual is full of mistakes. At this point correct them is a useless work because I will change the manual many times until it is complete. But when I finish it, I need readers and revisers to change all mistakes.I am making a great effort writing in

[tw5] Re: Create a very simple left menu

2019-11-06 Thread Luis Gonzalez
Thank you very much, Tom. I'm very interested in completing my manual but there are many things I don't know. I am studying hard all your works to document it.

[tw5] TiddlyDekstop: it does not open external links

2019-10-29 Thread Luis Gonzalez
I've been proving TiddlyDestop and I've seen that it does not open the [ext[directory/file]] links. -- 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

[tw5] Re: The-book. Weekly report

2019-10-28 Thread Luis Gonzalez
I think I will include a glossary at the end of the manual with *difficult concepts* as parsing, mechanism, DOM tree... If someone wants to add concepts, respond with the following format: *Term*: definition / explanation -- You received this message because you are subscribed to the Google

[tw5] Re: The-book. Weekly report

2019-10-28 Thread Luis Gonzalez
I think I will include a glossary at the end of the manual with *difficult concepts* as parsing, mechanism, DOM tree... If someone wants to add concepts, respond with the following format: *Term*: definition / explanation -- You received this message because you are subscribed to the

[tw5] Re: The-book. Weekly report

2019-10-27 Thread Luis Gonzalez
Really don't worry for the corrections. This will not be the final version. When the manual is finalized we will correct it -- 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

[tw5] Re: The-book. Weekly report

2019-10-27 Thread Luis Gonzalez
I'm not involved in the missing manual, I have no idea -- 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 view this

[tw5] Re: The-book. Weekly report

2019-10-27 Thread Luis Gonzalez
All help welcomed. Send me your copy, please -- 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 view this discussion on

[tw5] Re: The-book. Weekly report

2019-10-27 Thread Luis Gonzalez
Yes, please. I'm Spanish and I can't write good English. Send me your corrections. My email: kew...@gmail.com -- 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

[tw5] Re: $reveal widget matching the value of a variable

2019-10-24 Thread Luis Gonzalez
Wow! It works fine I have read the help of the $ reveal widget thousands of times and I could not imagine it was this way! Thanks!! -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from

[tw5] $reveal widget matching the value of a variable

2019-10-23 Thread Luis Gonzalez
The reveal widget is used in conjuntion with a state tiddler, state field or state property but I cant find the option of revealing a portion of text depending the value of a variable. for example, I have a variable with the tasks done without closing date: <$set name="cuantity"

[tw5] Your collaboration is needed

2019-10-09 Thread Luis Gonzalez
I am a bit weary of the enormous inertia that exists to move people, even on such an important task as documenting TW. This morning I weak up and my first effor is the beginning of the manual. Although I have never done so, I would like to coordinate our coordinated efforts to carry out

[tw5] Re: Creating substories with edition

2019-10-09 Thread Luis Gonzalez
My initial goal is to write the manual that people refer to in different messages. The first task is is to understand tiddlywiki: - The tw elements - Using tw: tiddlers, tags, filters... - Customization of tw interface - The internals: Storyriver, etc. *My current effor is to

[tw5] Creating substories with edition

2019-10-08 Thread Luis Gonzalez
I'm trying to create a tiddler with substories. All tiddlers tagged with "Microwiki" must open in that tiddler. The code is: <$navigator story="MySubStoryList" history="MySubHistoryList"> <$list filter="[tag[Microwiki]]" history="MySubHistoryList" template="$:/core/ui/ViewTemplate"

[tw5] Re: New docummenting initiative

2019-09-25 Thread Luis Gonzalez
We can maintain the list as a tiddler (a data tiddlers for the data and a visualization tiddler to visualize the list). To facilitate the maintenance of the list maybe we can find a widget to connect to the external wiki link and draw a little mark: *✓* if the widget can connect to the wiki

[tw5] Re: A TiddlyWiki community book.

2019-09-20 Thread Luis Gonzalez
Some time ago I started writing a manual. You can find a previous version in TiddlyWikiDocs - previos version spanish manual . I anybody want to know how I document you can find

[tw5] Re: What's the point of effort?

2019-09-19 Thread Luis Gonzalez
Hi, A Gloom. I can help you. Maybe we can start choosing a platform and open an account to start collecting all this information: all the links and other files. Maybe we can choose google docs to store the docs and google groups as a way of communicate with the rest of the people. As I

[tw5] Re: What's the point of effort?

2019-09-19 Thread Luis Gonzalez
We can only move forward doing tasks: □ Explain the goal of this project. □ Have a list of all documentation personal projects. □ Create new documentation. □ Ennumerate the feature needs of the platform. □ Find where existing documentation is stored: - Github - Tiddlyspot □ List

[tw5] Re: DataTiddlers. Delete properties depending its value

2019-09-18 Thread Luis Gonzalez
I couldn't imagine that you can put an action widget inside a list widget. I thought that a list widget is only for show a list of tiddlers. Thanks!!. My goal is to be as good with tiddlywiki as you. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki"

[tw5] Re: DataTiddlers. Delete properties depending its value

2019-09-17 Thread Luis Gonzalez
ok. This is a good solution but I need a new macro than automatically loop over all properties and delete them if they are 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

[tw5] DataTiddlers. Delete properties depending its value

2019-09-17 Thread Luis Gonzalez
I have a wiki to manage a warehouse and a datatiddler with all the things: mouse: 2 keyboard: 5 monitor: 8 flopy: 0 LPT-printer: 0 etc etc etc ... I want to clean this datatiddler deleting all properties with a value of 0. They are obsolete things. I can show this 0-properties with this

[tw5] Re: Add property and Delete property

2019-09-16 Thread Luis Gonzalez
The text field!! It's so easy, thanks. The more I know about TW, the more I'm surprised [image: Icono sorprendido] -- 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

[tw5] Re: Add property and Delete property

2019-09-16 Thread Luis Gonzalez
Other question: How can I delete all properties of a datatiddler? so, how can I empty the datatiddler? I want to make a phonebook with buttons for various actions: - Add a new entry - Delete a entry - Initialize the phonebook Thanks!! -- You received this message because you are

[tw5] Add property and Delete property

2019-09-16 Thread Luis Gonzalez
This button: <$button> <$action-setfield $tiddler="$:/Luis/bag" $index="sword" $value="1" /> Get objet Add the sword property with te value 1 in the datatiddler $:/Luis/bag. What is the way to delete it? Something like: <$button> <$action-deletefield $tiddler="$:/Luis/bag" $index="sword" />

[tw5] Conditional link

2019-09-16 Thread Luis Gonzalez
I have a tiddler where I want to put a conditional link: depending of the property of a data tiddler the link will be [[Link 1]] or [[Link 2]] Is this possible? -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and

[tw5] Re: Hidding and showing wiki elements - modal tiddler

2019-09-13 Thread Luis Gonzalez
gt; I appreciate you can change it. I was commenting on browser norms. > > Best wishes > TT > > On Thursday, 12 September 2019 16:24:22 UTC+2, Luis Gonzalez wrote: >> >> You know that you can customize this shorcut: in the Control panel, >> keyboard shorcut tab. Sea

[tw5] Re: Hidding and showing wiki elements - modal tiddler

2019-09-12 Thread Luis Gonzalez
You know that you can customize this shorcut: in the Control panel, keyboard shorcut tab. Search the "option" shorcut (maybe at the bottom) unfold it and click in the pen icon. You can assign the shorcut you like the most. -- You received this message because you are subscribed to the

[tw5] Re: Timelines Plugin

2019-08-08 Thread Luis Gonzalez
Thats wonderfull!! This is how it looks: -- 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 view this discussion on the

[tw5] Re: A wiki to write stories (in spanish)

2019-08-05 Thread Luis Gonzalez
i'm very excited with tiddly wiki. I continue developing my writers wiki. I have aded a tiny bar under the tags bar to add wome indicators: one-two or three stars, no ended story, bad story... I have some problems. If you have are some characters aded and you want to add some of them to a

[tw5] Re: A Filter problem

2019-07-31 Thread Luis Gonzalez
I think tiddlywiki is like a book of magic. There are clumsy wizards like me that spend all morning preparing spells without any result. And skilled magicians with high domain or this tw magic that get amazing results. I encourage all clumsy wizards! -- You received this message because

[tw5] Re: A Filter problem

2019-07-30 Thread Luis Gonzalez
I have hundreds of code lines without any result and. ... with a line you solve it. Millions of thanks. If I can help you, tell me. Now I know than I still have to learn a ot about tiddlywiki. -- You received this message because you are subscribed to the Google Groups

[tw5] Re: A Filter problem

2019-07-30 Thread Luis Gonzalez
*Stories* story A. Tagged: "story" story B. Tagged: "story" *Scenes* scene 1. Tagged: "scene" and "story A" scene 2. Tagged: "scene" and "story A" scene 3. Tagged: "scene" and "story A" scene 4. Tagged: "scene" and "story B" scene 5. Tagged: "scene" and "story B" scene 6. Tagged: "scene" scene

[tw5] Re: A Filter problem

2019-07-30 Thread Luis Gonzalez
I'm affraid this does not work. I have attached my tiddlywiki. It's in Spanish: - historia = story - escena = scene In the right zone, under Escenas (scenes) I need to show only the scenes not included in any story -- You received this message because you are subscribed to the

[tw5] Re: A Filter problem

2019-07-30 Thread Luis Gonzalez
I'm afraid it doesn't 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+unsubscr...@googlegroups.com. To view this discussion on the web visit

[tw5] A Filter problem

2019-07-30 Thread Luis Gonzalez
I have two list: - All scenes: <$list filter="[tag[scene]]"/> - All scenes included in a story: <$list filter="[tag[scene]tags[]!prefix[scene]]" variable="tagName"> <$list filter="[tag]" variable="scene" > <$link><> How can I get all tiddlers of the first list not included in

[tw5] Re: list-links-draggable with templates

2019-07-29 Thread Luis Gonzalez
I found it. The Story code: <$vars actual=<> > **<$macrocall $name="list-tagged-draggable" tag=<> itemTemplate=*"scene_template"*/>** The *scene_template* code: **<$checkbox tag=<> > <$link><> ** Thats all. Thanks!! -- You received this message because you are subscribed to the Google

[tw5] Question about the checkbox widget

2019-07-26 Thread Luis Gonzalez
I have a list with checkboxes in a tiddler named "Note 1": <$list filter="[tag{!!title}]" > <$checkbox tag="Note type 1" > <> It is a list of all notes of type 1. When I add new note type I have to copy the code and change the tag parameter to the name of the new note type. In order to

[tw5] Re: list-links-draggable with templates

2019-07-26 Thread Luis Gonzalez
<$link>*<>* <$button> <$action-listops $subfilter="+[remove*<**currentTiddler>*]" /> {{$:/core/images/close-button}} But why the red currentTiddler works ok but the green one does not work? -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To

[tw5] Re: Sort my number of tids using a tag

2019-07-24 Thread Luis Gonzalez
I try to understand the macro. You use th wikify widget to asign mylist the value 4_._._x 3_._._y. If you put: <$set name="mylist" value=<> > instead <$wikify name="mylist" text=<> > the macro assign the same value: 4_._._x 3_._._y to mylist variable but the code does not run. I can't

[tw5] Re: The Navigation Mechanism is missing in Tiddlywiki 5.1.19

2019-07-24 Thread Luis Gonzalez
I'm starting to understand the underlays of tiddlywiki so all information is welcome. I use to program in python so maybe I have to read a little about javascript. I have many macros and a few personalized wikis. I think tiddlywiki is a very funny puzzle: templates, system tags and tiddlers,

[tw5] Re: The Navigation Mechanism is missing in Tiddlywiki 5.1.19

2019-07-23 Thread Luis Gonzalez
Luis, > > > To ensure clarity, it is not missing in Tiddlywiki 5.1.19 > as this is not normally in the empty.html it is only part of the > documentation on tiddlywiki.com > It may be missing on tiddlywiki.com but that is the extent of it. > > ?¿?¿??¿Is missing on tiddlywiki.com but not in

[tw5] The Navigation Mechanism is missing in Tiddlywiki 5.1.19

2019-07-23 Thread Luis Gonzalez
If you read https://tiddlywiki.com/#StateMechanism and click in the link (see the NavigationMechanism ) to open https://tiddlywiki.com/#NavigationMechanism you can't find the documentation of this mechamism because the tiddler is missing. Maybe you

[tw5] Re: edit-text widget to change a field in the same tiddler

2019-07-22 Thread Luis Gonzalez
I found a easy way. Descriptión: <$edit-text tiddler="$:/temporalTiddler" field="description" /> <$button set="!!description" setTo={{$:/temporalTiddler!!description}}>Change . -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe

[tw5] edit-text widget to change a field in the same tiddler

2019-07-22 Thread Luis Gonzalez
The documentation says: > " the *EditTextWidget can not* change properties of the tiddler it is > embedded in or part of. It can only change fields of *other* tiddlers." > So I cannot put the code: <$edit-text field="description"/> to change the description of the tiddler. What is the

[tw5] Re: Automatically create a tiddler associated to a tag

2019-07-19 Thread Luis Gonzalez
Don't worry. I have a solution: Add a new button in the Page Toolbar: create new character with the code: <$button tooltip={{$:/Luis/mensaje/user}} aria-label={{$:/Luis/Caption/user}} class=<>> {{$:/Luis/images/user}} <$action-sendmessage $message="tm-new-tiddler" title="Nuevo personaje"

[tw5] Re: Automatically create a tiddler associated to a tag

2019-07-19 Thread Luis Gonzalez
I want to modify a little the behavior of TW: when you add new tag to a tiddler and save it, you will also create the tag-tiddler. The alternative: Create a new tiddler to create tags where I put all code. -- You received this message because you are subscribed to the Google Groups

[tw5] Re: Automatically create a tiddler associated to a tag

2019-07-19 Thread Luis Gonzalez
I know. But I have several problems: * Where I put the script? I am looking the $:/core/ui/EditTemplate/tags. There is a macro to add the tag:<$macrocall $name="tag-picker" actions=< >/> That control ther adding a tag to a thiddler but I don't know how to add my code here. Or maybe in the

[tw5] Re: Tiddler appearance based in a tag

2019-07-17 Thread Luis Gonzalez
Awesome!!. it works perfectly Its precisely what I wanted. I'm starting personalizing tiddlywiki and I do not know many things. Thanks!! -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving

[tw5] Re: Tiddler appearance based in a tag

2019-07-17 Thread Luis Gonzalez
I know how to change the basic appearance ot tiddlers tagged "person": colors, font size etc. You have to add in a tiddler with the "$:/tags/Stylesheet" tag something like this: .tc-tagged-person { background-color: #fff5e6; border: 0.4px solid brown; } This change the colors of all

[tw5] Tiddler appearance based in a tag

2019-07-17 Thread Luis Gonzalez
What can I do to change the appearance of the tiddlers depending on theirs tags? If I add the "person" tag the tiddler body has to show the "Name" and "Telephone" fields. But If I add the tag "car" the fields that has to appear are "License plate" and "Kilometers". -- You received this

[tw5] Re: The Future of Large Tiddlywikis

2019-07-17 Thread Luis Gonzalez
All software has a limit. For example: I use Microsoft Excel a lot to control the economy of my department. I have many sheets in the same file with all years.Over time my file grew up more and more. With 8 years it was slow. Now with 14 years its imposible to open it. My solution: archive the

[tw] Documenting TW

2017-02-20 Thread Luis Gonzalez
I'm new here and I'm trying to document it. I have little knowledge of html or cash but I think that's no problem (I want to learn). There are many features I don't know how to investigate: styleseets and many variants as the body or.tc How can i continue with my manual? -- You received

[tw] new tiddlywiki in internet explorer 8

2014-02-11 Thread Luis Gonzalez
I am the team leader of a group of people We use TiddlyWiki to classic maintain all information about our service. I am thinking to migrate to the new TiddlyWiki 5, but it does not open in the internet explorer browser. I use Firefox to add information and all other people are readers. Is any