[tw5] Re: $edit-text loses focus on input... or does it?

2021-08-04 Thread PMario
Hi Eric, I think it's because the tiddler-widget does much more and different things as the list widget. See the code: https://github.com/Jermolene/TiddlyWiki5/blob/8e69284e8c6b99a6aa8d3d1001d5a1920d814a9c/core/modules/widgets/tiddler.js#L91 see the newTiddlerState.hash condition When the "

[tw5] Re: Need location of tiddler controlling link behavior

2021-08-04 Thread PMario
Hi, If a link is clicked, TW sends a tm-navigate message, which is catched by the navigator widget. There is a link-catcher widget, which will allow you to do a different thing instead using action widget. If you would be more concrete, what you try to achieve we could probably point you in t

[tw5] Re: Dragable items in List Tab?

2021-08-05 Thread PMario
Hi, >Is there some reason items in the List tab could not be made draggable for re-ordering? No. Nobody requested it yet ... I think it should be easy to change the $:/core/ui/TiddlerInfo/List tiddler to contain a <> macro. ... BUT ... There is a problem. Th

[tw5] Re: Dragable items in List Tab?

2021-08-05 Thread PMario
Hi, Here's the issue: https://github.com/Jermolene/TiddlyWiki5/issues/5939 -m On Thursday, August 5, 2021 at 1:18:53 PM UTC+2 PMario wrote: > Hi, > > >Is there some reason items in the List tab could not be made draggable > for re-ordering? > > N

[tw5] Re: personal help?

2021-08-05 Thread PMario
Hi, As Tones wrote. Just use your own words to describe, what you want to achieve. ... It doesn't need to be TW wikitext or the like. IMO it's enough if you use: "If this than that should happen" .. Or show us some examples what you have and tell us what you want ... have fun! Mario

[tw5] Re: How do I store fields inside *.md files? As if it were a .tid file, without separating fields to the .meta file

2021-08-05 Thread PMario
Hi Shereda, I think we didn't have this usecase yet. ... As I understand it, you want to keep the .md file extension but use the TW .tid fields section and be able to load the .md files into TW as if they where .tid files. ... That's new! I'm not sure if we can and if we should provide this f

[tw5] Re: Table-of-Contents Macros

2021-08-05 Thread PMario
Hi, Which theme and which palette do you use in the screenshot? -mario On Thursday, August 5, 2021 at 4:27:46 PM UTC+2 S² wrote: > Hello forum, > > for the TOC I use the macro "toc-tabbed-internal-nav". > 1. Is it possible to sort the list? > 2. where are the colors defined for the selected tidd

Re: [tw5] How do I store fields inside *.md files? As if it were a .tid file, without separating fields to the .meta file

2021-08-05 Thread PMario
On Thursday, August 5, 2021 at 2:56:28 PM UTC+2 Jeremy Ruston wrote: ... > I certainly would draw the line at integrating a full YAML parser, but > there’s no reason why we couldn’t parse a simple subset of YAML fields from > MD files. > I do agree here. The only thing we would need to impleme

[tw5] Re: Macro editor for KaTeX plugin

2021-08-05 Thread PMario
Hi folks, I want to add, that this is _NOT PRODUCTION READY_ at the moment. The PR at github looks good, but there is still some discussion going on. So it will be nice to get your feedback here or at github! -mario -- You received this message because you are subscribed to the Google Group

Re: [tw5] Re: Dreaming of "TidEdit", an in-browser TiddlyWiki WikiText editor

2021-08-07 Thread PMario
On Saturday, August 7, 2021 at 4:19:52 PM UTC+2 cj.v...@gmail.com wrote: i.e. just what is needed to create/edit/save WikiText (à la TiddlyWiki) to > a TID file. Nothing else. > TLDR; You are right, we may be able to strip about half of the *UI* size, but this would mean we will go backwards.

Re: [tw] Re: List of TW5 Plugins?

2014-01-27 Thread PMario
tw5-vagrant - intro video links TW5 vagrant 01 - http://www.youtube.com/watch?v=JE0l36A_eBI How to use the box, if you just want to test the client server edition TW5 vagrant 02 - http://www.youtube.com/watch?v=nIonsfVxR3o How to adjust some git settings, if you want to use the box to contribute

[tw] Re: [TWC and possibly TW5] SystemInfoPlugin

2014-01-27 Thread PMario
CSS formatting see: http://classic.tiddlywiki.com/#[[CSS%20Formatting]] -m -- 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.

[tw] Re: Announcing TiddlyWiki 5.0.7-beta

2014-01-27 Thread PMario
On Monday, January 27, 2014 3:41:06 PM UTC+1, Ton Gerner wrote: > > That means I am still using all CSS styles in my stylesheets within > 'triple backticks' without any problem. > The stylesheet you mention is used in my guide about a top menu and > toolbars [2]. > Hi Ton, If you want to displa

[tw] Re: TW5 what is the power of Codemirror plugin?

2014-01-28 Thread PMario
Since there are no modes included at the moment, it just creates a codemirror plain text editor. I did create a highlighter mode for TWclassic http://codemirror.net/mode/tiddlywiki/index.html. When TW5 syntax is stable we could do much more with a TW syntax highlighter. Like the markdown exam

Re: [tw] Re: TW5 node.js Running out of memory

2014-01-28 Thread PMario
On Tuesday, January 28, 2014 8:25:10 PM UTC+1, David Gifford wrote: > > 145MB is the filesize. And Firefox gave me an error when I tried to click > on it. > Hi Dave, Pushing it to the limits. That's cool :) Did you optimize your images, to be used with your "app"? eg: they have a resolution, th

Re: [tw] Re: TW5 node.js Running out of memory

2014-01-28 Thread PMario
I did a short test. A 108kByte jpg file will end up in 145kByte base64 encoded text file. -m -- 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 what is the power of Codemirror plugin?

2014-01-28 Thread PMario
On Tuesday, January 28, 2014 11:13:33 PM UTC+1, Danielo Rodríguez wrote: > The problem is that I'm not familiar with codemirror, so when you tell me > just a plain codemirror text editor I don't understand what that means. > Just answer me this question: are the line numbers the only thing that

[tw] Re: TW5 what is the power of Codemirror plugin?

2014-01-28 Thread PMario
Did you drag/install the codemirror plugins into your TW? As described on the page? -- To add the plugin to your own TiddlyWiki5, just drag this link to the browser window:

[tw] Re: TW5 what is the power of Codemirror plugin?

2014-01-28 Thread PMario
I did a short test with TW5 index.html drag the plugin from codemirror demo to index.html create the config tiddler save and reload If I opened HelloThere in edit mode, the vim mode is active. ... I need to press "i" to edit stuff. "esc" to exit edit mode ... Since I don't use vi, I know just e

Re: [tw] Re: TW5 node.js Running out of memory

2014-01-28 Thread PMario
On Wednesday, January 29, 2014 12:56:24 AM UTC+1, David Gifford wrote: > > I am just doing it for me not an adaptation this time around, so I left > the images as is. > ahh, ok. Working with images is a big issue for web devs at the moment because of "high resolution displays" on some devices

[tw] Re: TW5 what is the power of Codemirror plugin?

2014-01-28 Thread PMario
On Wednesday, January 29, 2014 1:15:44 AM UTC+1, Danielo Rodríguez wrote: > > Thank you > you are welcome :) -m -- 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 tid

[tw] Re: TW5 export question

2014-01-29 Thread PMario
On Wednesday, January 29, 2014 6:15:25 AM UTC+1, cangaroo joe wrote: > > Will TW5 have the ability to export data to other formats than HTML? > TW can export to HTML. You can use a lot of existing tools to convert them into other formats. eg: pdf ... Basically TW uses a template and a "core rend

[tw] Re: Tiddlywiki5 include other TW file' content question?

2014-01-29 Thread PMario
On Wednesday, January 29, 2014 10:23:50 AM UTC+1, cangaroo joe wrote: > > Will TW5 have the ability to act as the includeplugin in future? I dont > really want to use node.js. Should I return to TWC for that feature? And if > yes, will future releases of TW5 be able to import the content of TWC f

[tw] Re: how secure is encrypted TW5 and DropBox?

2014-01-29 Thread PMario
If you search for "zip password recovery" with google. I doubt, you'll really want to use this. Truecrypt is great but as you mentioned, a bit more complicated. -m -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group a

[tw] Re: [TW5] Documentation

2014-01-30 Thread PMario
On Thursday, January 30, 2014 7:38:33 AM UTC+1, Danielo Rodríguez wrote: > > "Create tiddlers, show links, missing, orphans, tags, tagging, references > The concepts mentioned above, are the same in TWclassic. @Jeremy, May be we can just copy them to TW5 http://classic.tiddlywiki.com/#Reference

[tw] Re: Tiddlydesktop file name (numbers) problem

2014-01-31 Thread PMario
%20 is a space -m -- 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@googlegr

[tw] Re: testing TW5

2014-01-31 Thread PMario
I did a short test. But I did create the tiddlers with the FF WebDev javascript env. shift-F4 var ntext = "" + "123456789 123456789 123456789 123456789 " + "123456789 123456789 123456789 123456789 " + "123456789 123456789 123456789 123456789 " + "123456789 123456789 123456789 123456789 " + "

[tw] Re: testing TW5

2014-01-31 Thread PMario
On Friday, January 31, 2014 4:26:20 PM UTC+1, PMario wrote: > > As you can see, it creates 20.000 tiddlers with 200 different tags. > Every tiddler contains 1000 byte text > uups its 800 byte text. copy paste error :) -m -- You received this message because you are subscribed t

[tw] Re: testing TW5

2014-01-31 Thread PMario
On Friday, January 31, 2014 4:43:28 PM UTC+1, cangaroo joe wrote: > > Very nice test Mario. Anyway 20k tiddlers are huge amount of data. Your > method is very efficient. TW can handle tons of text information easy. > I wanted to do some "massive tiddler" test for a while now. Especially using di

Re: [tw] testing TW5

2014-01-31 Thread PMario
On Friday, January 31, 2014 3:16:28 PM UTC+1, Jeremy Ruston wrote: > > Performance is poor because all the tiddlers get opened as a side effect > of the import. It's open tiddlers that slow things down @Jeremy, With my 20'000 test tiddlers, I didn't expect, that it is usable at all. When we re

[tw] Re: TW5 Writing down multiple tables

2014-02-02 Thread PMario
On Saturday, February 1, 2014 9:04:26 AM UTC+1, Stephan Hradek wrote: > > Am Samstag, 1. Februar 2014 02:48:26 UTC+1 schrieb jb: >> >> Thanks for the calendar widget. >> Would it be too difficult to add parameters for next month and previous >> month? >> > > For someone who cannot code. Sure ;) Fo

[tw] Re: [TWC] Challenge: the ULTIMATE main menu

2014-02-02 Thread PMario
Hi Mat, As I started to read your descriptions I did immediately think about vanillatiddlydocs [1]. I did search for the topic [2] and saw, it was you, that started it. ... So I think there is no "all-in-one menue suitable for every purpose", because the effort to create it, outweights the be

[tw] Re: [TWC] Challenge: the ULTIMATE main menu

2014-02-03 Thread PMario
On Monday, February 3, 2014 6:15:42 AM UTC+1, cangaroo joe wrote: > > Does VanillaTiddlyDocs or TiddlyDocs work with TW5? > no. The plugin mechanism is different. -m -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this grou

[tw] Re: Is this group still newbie friendly?

2014-02-04 Thread PMario
I think this group still is newbie friendly. The "welcome" message was removed, as the google groups "frontpage" app was changed by google. @eric or @jeremy ... I also miss this message, since it was one of the reasons, why I did my first post to the TW group. ... It made a difference for me

[tw] Re: TiddlyWiki Hangout #32 on Tuesday 28th January at 4pm GMT

2014-02-05 Thread PMario
hi jeremy, It's for hangout #32 <-- video: www.youtube.com/watch?v=_14sh5n0qKo annotations: http://pmario.tiddlyspace.com/#2014-01-28-TW5-hangout-32 #33 will follow soon :) have fun! mario -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To u

[tw] Re: TiddlyWiki Hangout #33 today at 4pm GMT

2014-02-05 Thread PMario
hanglout 33 video: http://www.youtube.com/watch?v=GEqXu6xay7M annotations: http://pmario.tiddlyspace.com/#2014-02-04-TW5-hangout-33 have fun! mario -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving

[tw] Re: +1 for better/more sustainable tools for localization

2014-02-07 Thread PMario
@Jeremy, You linked to "tiddlywiki-5-im-betatest" at tiddlywiki.com. A post from Basim Kardeniz, which is the translator for the german TWc version. He keeps the german TWc version up to date, very very close to TWc releases. ... As I did mention in the hangout, he wants to contribute to the

[tw] Re: [TW5] - Missing creator in tiddlers

2014-02-08 Thread PMario
On Saturday, February 8, 2014 8:27:05 PM UTC+1, Ton Gerner wrote: > > Nobody? > I did have the same problem and mentioned it at the last hangout. http://www.youtube.com/watch?feature=player_detailpage&v=GEqXu6xay7M#t=4433 -m -- You received this message because you are subscribed to the Google

[tw] Re: [TW5] - Missing creator in tiddlers

2014-02-08 Thread PMario
On Saturday, February 8, 2014 8:43:46 PM UTC+1, Ton Gerner wrote: > > Sorry Mario, I missed that. > So it is a 'known' problem. > I think it's not a problem. Its by intention. ... Did you have a look at the viedeo. ... May be there are 2 different user nemes involved, which imo would be a bug.

Re: [tw] TobiBeer's [TWC] Filtr plugins VS. ForEachTiddlerPlugin VS. [TW5]'s built in filter abilities VS. TagglyTagging list ? Help?

2014-02-10 Thread PMario
On Monday, February 10, 2014 9:00:31 PM UTC+1, Leo Staley wrote: > > Finally, Still on the topic (as far as I understand it) when viewing a tag >>> using TagglyTagging, it includes buttons to (1) sort by title, modified, >>> and created, (2) group the results by tag (hierarchically), by sitemap,

Re: [tw] TobiBeer's [TWC] Filtr plugins VS. ForEachTiddlerPlugin VS. [TW5]'s built in filter abilities VS. TagglyTagging list ? Help?

2014-02-10 Thread PMario
On Monday, February 10, 2014 9:00:31 PM UTC+1, Leo Staley wrote: > > Finally, Still on the topic (as far as I understand it) when viewing a tag >>> using TagglyTagging, it includes buttons to (1) sort by title, modified, >>> and created, (2) group the results by tag (hierarchically), by sitemap,

Re: [tw] Re: Footnotes [TW5]

2014-02-11 Thread PMario
On Tuesday, February 11, 2014 1:38:19 AM UTC+1, Daniel Baird wrote: > > > Naively it seems to me that when editing, the footnote content should be > right there where the reference is. This means you can easily edit the > note, and avoid hassles like orphaned notes when you copy/paste stuff, etc

[tw] Re: [TW5] TiddlersBar or Breadcrumbs

2014-02-12 Thread PMario
On Wednesday, February 12, 2014 2:13:17 AM UTC+1, Leo Staley wrote: > > .. If you open a new tiddler, the previous one is hidden, but its > title is visible in the TiddlersBar in a greyed out color, as if they were > in tabs. > If you open the "right sidebar: Tools:" menue and activate the "

[tw] Re: [TW5] TiddlersBar or Breadcrumbs

2014-02-13 Thread PMario
On Thursday, February 13, 2014 3:11:20 PM UTC+1, Leo Staley wrote: > > On Wednesday, February 12, 2014 3:50:51 AM UTC-7, PMario wrote: >> >> On Wednesday, February 12, 2014 2:13:17 AM UTC+1, Leo Staley wrote: >>> >>> .. If you open a new tiddler, the previo

[tw] Re: Can field values be tiddlers?

2014-02-13 Thread PMario
You could check out - CheckboxWidget - RadioWidget - TaskManagementExample at tiddlywiki.com -m -- 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+u

[tw] Re: delete or close multiple tiddlers in tw5

2014-02-13 Thread PMario
On Thursday, February 13, 2014 4:15:33 PM UTC+1, vadiraj bidarahalli wrote: > > Also, note that in many notes there are screenshots pasted.. How big in file size are they? -m -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from t

[tw] Re: delete or close multiple tiddlers in tw5

2014-02-13 Thread PMario
On Thursday, February 13, 2014 6:20:18 PM UTC+1, vadiraj bidarahalli wrote: > > small ones.. max file size 1MB I guess > ... One meg for a screen shot. I'd like to have your monitor ;) I did a 1920x1080 full HD screenshot of my desktop ... in gif format. This gif needs 137kByte (lossless). So if

[tw] Re: tw classic and tw5

2014-02-13 Thread PMario
On Thursday, February 13, 2014 6:38:59 PM UTC+1, vadiraj bidarahalli wrote: > > Does tw classic has more functionalities than tw5? > The core ... no With plugins ... yeees > I mean is it very stable one? > TWc is very stable. TW5 is still bata. But what you can download from tiddlywiki.com

[tw] Re: [TW5] Looking for main tabs / categorization / search

2014-02-14 Thread PMario
On Friday, February 14, 2014 6:55:13 AM UTC+1, patrick.sa...@googlemail.com wrote: > > I have several TWC wiki's on various topics which I like to corporate into > one TW5. > > I would like to create main tabs at the top, is it possible and how can it > be done. > have a look at tiddlywiki.com

[tw] Re: [TW5] Can I change the formatting charcter for code

2014-02-14 Thread PMario
On Friday, February 14, 2014 5:57:10 AM UTC+1, patrick.sa...@googlemail.com wrote: > > In TiddlyWiki Classic the formatting character for code was "{{{", in TW5 > it is "`", which is a dead key, meaning I have to press "`" and a space to > get one "`". It is terrible if you need two. > As Jerem

[tw] Re: TW5 Add button to edit template.

2014-02-14 Thread PMario
Can you tell us, what you'd like to achieve with your buttons. -m -- 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 Add button to edit template.

2014-02-14 Thread PMario
On Friday, February 14, 2014 2:10:46 PM UTC+1, Danielo Rodríguez wrote: > > How should I do this? (I crossed my fingers for not getting "create > widget" as answer) > Since you don't want to read this, you should have a look at Stephan's bookmarklets at: http://tw5magick.tiddlyspot.com/ IMO ot

[tw] Re: TW5 Add button to edit template.

2014-02-14 Thread PMario
By the way ... executing scripts added like your example, would be a huge security risk. Especially in a TiddlySpace environment. -m -- 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: Copy and paste images directly from clipboard

2014-02-14 Thread PMario
On Friday, February 14, 2014 5:18:52 PM UTC+1, Caleb wrote: > > Are there any plans to allow simple copy and paste of images directly from > the clipboard into TW5 tiddlers (i.e. using Ctrl+V)? I am guessing this is > going to become more and more common in wikis, now that it is technically > po

[tw] Re: [TW5] Can I change the formatting charcter for code

2014-02-15 Thread PMario
On Saturday, February 15, 2014 6:33:23 AM UTC+1, patrick.sa...@googlemail.com wrote: > > I think a backtick is a terrible character to type, why was it changed > from "{{{" ? > If you type {{{inline code}}} or `inline code` ... there is deffinitely a big difference in typing convenience and to

[tw] Re: [TW5] tiddler contents... how big can it be?

2014-02-15 Thread PMario
On Saturday, February 15, 2014 12:58:48 PM UTC+1, vadiraj bidarahalli wrote: > > Does including too much content in a single tiddler reduces the > performance of TW5? and does putting TW5 on node.js, we can have as big a > tiddler we want without affecting > performance? or in both cases perform

[tw] Re: TiddlyWiki Hangout #34 on Tuesday 11th February at 4pm GMT

2014-02-15 Thread PMario
video: http://www.youtube.com/watch?v=0xWd4nhlQoE annotations: http://pmario.tiddlyspace.com/#2014-02-11-TW-hangout-34 have fun! mario -- 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: Video from OXTWIG#2

2014-02-15 Thread PMario
While I was at it :) annotations: http://pmario.tiddlyspace.com/#2014-02-15-OXTWIG%232 ... Quite interesting to see, how fancy, easy TW can be, if you just use the core functions. Well done! have fun! mario -- You received this message because you are subscribed to the Google Groups "TiddlyW

[tw] Re: lost encryption password to decrypt wiki

2014-02-18 Thread PMario
On Tuesday, February 18, 2014 5:53:27 PM UTC+1, kalli benetos wrote: > > I set an encryption password and have lost it )ok, forgotten it). How can > I retrieve or reset this password? > many thanks > :) K > Hi kalli, As Jerermy pointed out, the library used in TW is designed to use "strong" encr

[tw] Re: [TW5} Keyboard Functionality

2014-02-18 Thread PMario
There has been some discussion in on of the latest hangouts, about keyboard handling. I also asked the question similar to yours. http://www.youtube.com/watch?feature=player_detailpage&v=GEqXu6xay7M#t=5362 Jeremy says, that it's not that simple yet. -m -- You received this message because

[tw] Re: [TWC] @Eric: Question regarding TiddlerTweakerPlugin

2014-02-19 Thread PMario
The changecount is changed by the core, if you edit / save a tiddler. In the backstage there is an option: "Don't update modifier username and date when editing tiddlers" which tells TW to not modify the tiddler, if you just enter edit mode and hit done without actually changing stuff. So you

[tw] Re: [TW5] 3 properly functioning columns. I'm begging for help making this work. Please. I can't even sleep.

2014-02-19 Thread PMario
On Wednesday, February 19, 2014 10:02:39 AM UTC+1, Leo Staley wrote: > > One major reason I can't even edit it to my needs is because everything is > so radically decentralized and scattered compared to TWC. It's too hard. > Too confusing. Everything in the style sheet(s) has its own specified >

[tw] Re: [TW5] Set the size of the rows used in the editor text area

2014-02-19 Thread PMario
On Wednesday, February 19, 2014 7:15:01 AM UTC+1, Didier BRETIN wrote: > > I'm currently working with TW5 and firefox for android and it works > great.But when the size of the editor text area is too big (too many rows), > firefox is doing some freeze with the text. > > I would like to specify a

[tw] Re: [TW5] Set the size of the rows used in the editor text area

2014-02-19 Thread PMario
On Wednesday, February 19, 2014 1:40:43 PM UTC+1, Didier BRETIN wrote: > > What do you mean Mario by "You could try to open the "Open" tab in the > right sidebar." ? > just select it, so that it is active. -m -- You received this message because you are subscribed to the Google Groups "Tiddly

[tw] Re: TW5 append content to a tiddler

2014-02-19 Thread PMario
On Wednesday, February 19, 2014 4:57:09 PM UTC+1, DrCory wrote: > > Is apending a tiddler possible in ClassicTiddlyWiki? > > I am wanting to build a "Text Generator" to build a paragraph from > selectable options. Then cut and paste into an outside document. > With checkboxes and / or radio buton

[tw] Re: [TW5] cron widget?

2014-02-20 Thread PMario
On Thursday, February 20, 2014 3:53:48 AM UTC+1, Mike wrote: > > This is solidly in the "nice to have feature request" bin, but how hard > would it be to make a cron widget? The most obvious action would be "clone > a tiddler," which could emulate a reminder or recurring note. It could > support

[tw] Re: [TWC} "Keep these tiddlers linked to this server so that you can synchronise subsequent changes"

2014-02-20 Thread PMario
Hi Robert, If you want to sync from a file:// tiddlywiki to a http:// tiddlywiki, this is not possible anymore, if you use an up to date brwoser. All browser vendors have removed this possibility, due to security concerns. I think the last browser that worked, is FireFox 16. You could us

[tw] Re: [TW5] 3 properly functioning columns. I'm begging for help making this work. Please. I can't even sleep.

2014-02-20 Thread PMario
On Wednesday, February 19, 2014 12:49:02 PM UTC+1, PMario wrote: ... > So experimenting with the existing stuff and make it less whitespace is > easy, if you know how to experiment with a browser. ... Just use the "dev > tools" in Chrome or FireFox. I'll upload a sho

[tw] Re: [TWC] TagSearchPlugin wirks and doesn't work - one other other depending on the file

2014-02-21 Thread PMario
On Friday, February 21, 2014 4:46:47 AM UTC+1, Anton Aylward wrote: > > I've tried to make the non-working one as close to the working one as > possible, same stylesheets and other plugins. > But the debug defeats me. i'm not a javascript programmer anyway and > don't know what tools i'm suppose

Re: [tw] Re: [TWC] TagSearchPlugin wirks and doesn't work - one other other depending on the file

2014-02-21 Thread PMario
TagSearchPlugin depends on GotoPlugin from tiddlytools. Is gotoplugin installed? It seems there is no dependency check? -m -- 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

Re: [tw] Re: [TWC] TagSearchPlugin wirks and doesn't work - one other other depending on the file

2014-02-21 Thread PMario
On Friday, February 21, 2014 2:43:02 PM UTC+1, Anton Aylward wrote: > > Is this it? > > 08:09:50.765 ReferenceError: e is not defined BaseLine_Char_Loc.html:8454 > If you click the line number 8454 it doesn't jump to the code you posted. right? Can you copy the code from http://tagsearch.tiddl

Re: [tw] Re: [TWC] TagSearchPlugin wirks and doesn't work - one other other depending on the file

2014-02-21 Thread PMario
It seems, the line numbers we get aren't right. ... They point to the core code. :/ the e variable is often used to store the event information for event handlers. events are mouse click, keyboard So sometimes if event handlers are overwritten by plugins, this can happen. I actually

Re: [tw] Re: [TWC] TagSearchPlugin wirks and doesn't work - one other other depending on the file

2014-02-21 Thread PMario
Hi Anton, With the testcase file it was possible to track the problem down. As you wrote, the problem was the TiddlerNotesPlugin. The plugin added some extensions, that are part of the core, since 2007 in core version 2.2.6. I removed the offending functions, adjusted the dependencies gave the

[tw] [TWc] INTRO: TiddlerNotesPlugin ... compatible with TagSearchPlugin now

2014-02-21 Thread PMario
Hi folks, TiddlerNotesPlugin did cause a problem with the TagSearchPlugin and the latest TW 2.8.1. See the topic link below [1]. So TagSearch didn't open the popup anymore. .. I did fix the problem (at least I think so :) and uploaded the modified plugin to tiddlyspot [2], since the old repos a

[tw] Re: [tw5] Custom CSS for writing screenplays

2014-02-22 Thread PMario
Hi Matthew, I think it would be more effective to include a fountain parser as a plugin into TW. So you could get full support for a dedicated language. IMO this would make more sense. I did have a short look at github and found Fountain.js [1]. It looks promising. There is already a syntax

[tw] Re: [tw5] Custom CSS for writing screenplays

2014-02-22 Thread PMario
Hi Anton, While all of your suggestions are fine, they __only__ work with TiddlyWiki classic. Especially plugins are different in TW5 and there have been some changes in the syntax. see: http://compare-tw2-tw5.tiddlyspace.com/#syntax -m -- You received this message because you are subscribed t

[tw] Re: Sliders in TW5

2014-02-22 Thread PMario
On Saturday, February 22, 2014 9:30:48 PM UTC+1, Andy Unrein wrote: > > I have two wikis that have made extensive use of > http://tiddlytools.com/#NestedSlidersPlugin > > I'm unclear on the conclusion of this discussion -- is there a macro in > TW5 that will enable my tiddlers with +++[x] ... ===

[tw] Re: [TW5] Is it possible to use a dropdown to select tags from within a certain group without affecting the other tags attached to a tiddler?

2014-02-23 Thread PMario
have you had a look, how the EdtiTemplate does it? -m -- 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 grou

Re: [tw] Re: [TWC] Editing dates for a story line

2014-02-23 Thread PMario
On Sunday, February 23, 2014 8:16:55 AM UTC+1, Anton Aylward wrote: > > What I'm seeing and what I've posted is that this field and the parsing > with the built in Date.parse() is inconsistent. I think, what Stephan wants to say is, you could easily use a string instead of a date. So if you

[tw] Re: RFC: tiddlywebwiki and wikklytext

2014-02-24 Thread PMario
On Monday, February 24, 2014 4:26:19 PM UTC+1, cdent wrote: > > The default option as this stage, barring convincing feedback in > some other direction, is 2. > > Please let me know your thoughts. If you have questions please do > not hesitate to ask. > Your arguments are clear to me. So +1 f

[tw] Re: [TW5] Is it possible to use a dropdown to select tags from within a certain group without affecting the other tags attached to a tiddler?

2014-02-24 Thread PMario
I think, there is a general porblem with the "navigation" and "fieldmangler" signals. eg: tw-add-tag, tw-remove-tag. ... A radiobutto imo would need a tw-select-tag. It would need to send this signal with a list of all the tags that are affected and one of them has an attribute: selected. So

Re: [tw] Re: (TWC) Change to View Template and Edit Template have no effect

2014-02-26 Thread PMario
On Wednesday, February 26, 2014 11:56:18 PM UTC+1, Leo Staley wrote: > > I think you probably originally applied the template by including the > simplicity theme tiddlyspace. To uninclude a space on tiddlyspace, click > on the tiddlyspace icon in the upper right hand corner of the screen, click

Re: [tw] Re: (TWC) Change to View Template and Edit Template have no effect

2014-02-26 Thread PMario
I forgot to link to the info tiddler. - http://simplicity.tiddlyspace.com/#HowIncludeThisSpace I also did 3 short videos how to deal with TS and themes. If you have some time ~16min for 3 of them :) - http://simplicity.tiddlyspace.com/#video have fun! mario -- You received this message becau

[tw] Re: TW5 Text Widget documentation.

2014-02-27 Thread PMario
Hi, - If you go to https://github.com/Jermolene/TiddlyWiki5 - Enter the text: "textwidget" into the search field on top of the page - The dropdown lists possibilities while you type. - or use the item "Search Jeremolene/TiddlyWiki5 for ..." at the bottom of the list - you'll get a list o

Re: [tw] Re: [TWC] Filtering plugins, which ones to use? Please help.

2014-02-27 Thread PMario
On Thursday, February 27, 2014 8:34:48 AM UTC+1, Leo Staley wrote: > > Consider the list macro. To use the list macro with a filter, enter < filter ...>> This calls the list macro and tells it that it will be > generating a list from the next bit of info which tells the list macro > what to sear

[tw] Re: Computer Crashed, Encrypted TiddlyWiki5 No Longer Recognizes Password

2014-02-27 Thread PMario
On Thursday, February 27, 2014 8:32:11 AM UTC+1, runfore...@gmail.com wrote: > > I've been working on this wiki for about 2 weeks now, and I moved > everything from my old Basket files over to my new TW5. ..and deleted my > old files since i thought "I no longer needed them". > Which OS do you

[tw] Re: Searching by new fields?

2014-02-27 Thread PMario
On Thursday, February 27, 2014 4:24:34 PM UTC+1, Andy Pastuszak wrote: > > Is there a way to search and have it check new fields I create in a > tiddler? Or is it better to just stick with tags instead of fields? > [TW5] or [TWC] ..TiddlyWiki classic ? -- You received this message because you

[tw] Re: [TW5] how to update the tag tittle field

2014-02-27 Thread PMario
On Thursday, February 27, 2014 4:58:25 PM UTC+1, vpl wrote: > > Is their a way to update this title ? > Not in this way atm. Your'll need to crate a new tag. then You'll need to open every tiddler remove the old tag and add the new tag. or create a new tiddler eg: FastTag with this content imp

[tw] Re: [TW5] how to update the tag tittle field

2014-02-27 Thread PMario
On Thursday, February 27, 2014 6:29:42 PM UTC+1, PMario wrote: > > <$checkbox tiddler={{!!title}} tag="oldTag"/> .. oldTag > <$checkbox tiddler={{!!title}} tag="newTag"> .. newTag > ... you need to replace "oldTag" and "newTag" with

[tw] Re: Computer Crashed, Encrypted TiddlyWiki5 No Longer Recognizes Password

2014-02-27 Thread PMario
On Thursday, February 27, 2014 8:27:30 PM UTC+1, runfore...@gmail.com wrote: > > I'm running Linux and using the TiddlyDesktop client. I didn't delete > anything, > I didn't think about the TiddlyWiki. I thought about your "source files" that you did delete. So may be some of those files are st

[tw] Re: TiddlyWiki Hangout #35 will be on Tuesday 18th February at 4pm GMT

2014-02-28 Thread PMario
Hi A bit late but here are the annotations: http://pmario.tiddlyspace.com/#2014-02-18-TW-hangout-35 and the video link: http://www.youtube.com/watch?v=gAjKKI9Rkis There has been some problems with the recording. From timestamp 0:25:00 to 1:02:02 you are forced to watch my beautiful avatar pictur

[tw] Re: TiddlyWiki Hangout #36 on Tuesday 25th February at 4pm GMT

2014-02-28 Thread PMario
annotations: http://pmario.tiddlyspace.com/#2014-02-25-TW-hangout-36 video: http://www.youtube.com/watch?v=HVM4MqxuOHk have fun! mario -- 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: [TW5] Upgrading on node to v5.0.8_b

2014-03-01 Thread PMario
Hi, This comes from the name change of "clientserver" edition to "server" So if you change your start script to use /editions/tw5.com-serverinstead aof /edtions/clientserver it should work again. -mario -- You received this message because you are subscribed to the Google Groups "Tiddl

[tw] Re: [TW5] Upgrading on node to v5.0.8_b

2014-03-01 Thread PMario
This is a somewhat related topic. https://groups.google.com/forum/?fromgroups=#!topic/tiddlywikidev/cVXCqASv8fc -m -- 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: [TWC] ForEachTiddler Prompt for Search String

2014-03-01 Thread PMario
Leo, At the "dropdown" near the authors is a setting: "Email Updates to me". The dropdown near the "g+" button top left. -m -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an

[tw] Re: [TW5] Upgrading on node to v5.0.8_b

2014-03-02 Thread PMario
On Saturday, March 1, 2014 9:16:16 PM UTC+1, Matabele wrote: > > > > OK - solved. It appears that not only new, but also existing TW folders > must be initialised. > Probably yes. Th

[tw] Re: <$transclude> bugged via <> ?

2014-03-02 Thread PMario
Hi Baad Sequel, Could you paste a bit more code, how your tiddlers and your <> macro really look like. So it would be easier to reproduce your behaviour. -m -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and st

[tw] Re: Announcing TiddlyWiki 5.0.8-beta

2014-03-02 Thread PMario
On Sunday, March 2, 2014 6:45:10 PM UTC+1, Jeremy Ruston wrote: > > That form of autosave is built into TW5 when you're working with a server. > Just like with Gmail, each character you type in a draft entry is > automatically synced to the server. There's some throttling going on so > that if y

[tw] Re: [TW5] TranscludeWidget vs. transclusion in WikiText

2014-03-03 Thread PMario
On Monday, March 3, 2014 8:10:48 PM UTC+1, cmari wrote: > > So two things: > 1. perhaps the documentation could be updated, and > 2. perhaps there could even be built-in templates to allow for something > like {{A||block}} vs. {{A||inline}}? > That's actually the way it works. create a tiddler

[tw] Re: Application that writes a TiddlyWiki

2014-03-03 Thread PMario
On Monday, March 3, 2014 9:20:56 PM UTC+1, Timothy Groves wrote: > > Some friends of mine and I are writing a program that outputs a metric > crapton of text, and we stumbled across TiddlyWiki whilst looking for an > easy way to store and view the data. It seems perfect, except for one tiny > d

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