Re: [tw] Query: Markup Parsers

2017-09-01 Thread Dragon Cotterill
This takes us into the realm of Yacc (Bison) and Lex for tokenising and parsing. Just a few Javascript versions and alternatives off hand: https://www.npmjs.com/package/jscc-parser http://zaach.github.com/jison/docs/ http://canna71.github.io/Jacob/ I'm sure there must be someway to sort out the

[tw] Tiddly wiki web developer

2017-09-01 Thread Pedro Vaz Santos
I'm searching for a web developer in tiddly wiki to create customized template for a project. Anyone know where I should look for? Regards. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails

[tw] Re: [TW5] WebDav Saver Observations.

2017-09-01 Thread Lost Admin
Is there an easy way to get TiddlyWiki to re-read itself after saving? Apache tracks the time that you read the file and issues an error if you try to save back to the server if the file on disk has a newer timestamp. Which means: after I save changes to a file, it give me an error on

Re: [tw] Re: [TW5] WebDav Saver Observations.

2017-09-01 Thread Arlen Beiler
I remember running into that when writing TiddlyServer. The apache webdav module should return some kind of revision string. The put saver expects an Etag, but this may not necessarily be what Apache sends. However, I believe that is where the problem is. On Fri, Sep 1, 2017 at 9:22 AM, Lost

Re: [tw] Query: Markup Parsers

2017-09-01 Thread Jeremy Ruston
Hi Josiah > My FIRST question is this: Is it possible to make a new parser for mark-up > without having to use JavaScript? Just a macro using Regular Expressions? As Mario has explained, it’s not currently possible to create a new parse rule without using JavaScript. It is something that I

Re: [tw] Re: Tiddly wiki web developer

2017-09-01 Thread Arlen Beiler
Unfortunately, it is not a private email On Fri, Sep 1, 2017 at 11:53 AM, PMario wrote: > Hi Pedro, > This is a private mail. > > On Friday, September 1, 2017 at 2:37:48 PM UTC+2, Pedro Vaz Santos wrote: >> >> I'm searching for a web developer in tiddly wiki to create

Re: [tw] Query: Markup Parsers

2017-09-01 Thread Jeremy Ruston
> That's right, but we can't sacrifice the existing flexibility. We don’t need to; there would still be six separate filters, just that they were instantiated from the same JS filter with different parameters. It would be akin to refactoring six independent functions to each be an

[tw] Extended TOC functionality

2017-09-01 Thread Niels Bjerre
TiddlyWiki has very nice tableOfContents functionality - eg macros: *toc-selective-expandable* and *toc-tabbed-external-nav*. The toc is based on tags. I need a modified version of the toc functionality: 1. Root nodes selected by a filter (not by 1 tag only) 2. Add a filter to child

[tw] Re: Tiddly wiki web developer

2017-09-01 Thread PMario
Hi Pedro, This is a private mail. On Friday, September 1, 2017 at 2:37:48 PM UTC+2, Pedro Vaz Santos wrote: > > I'm searching for a web developer in tiddly wiki to create customized > template for a project. Anyone know where I should look for? > Regards. > I would be interested! Can you

[tw] Re: [video] HowTo Save TiddlyWiki wihh every browser using IIS and WebDAV

2017-09-01 Thread codacodercodacoder
Very comprehensive. Thanks Mario. I'll be doing this on Win7 shortly and will post back the results. On Friday, September 1, 2017 at 10:03:50 AM UTC-5, PMario wrote: > > Hi folks, > > Inspired by Lost Admin's "[TW5] WebDav Saver Observations" [1]. I did > create 3 short videos, that describe,

[tw] Re: Extended TOC functionality

2017-09-01 Thread PMario
Hi Niels, I did create Parent Based Toc macros - tocP - see: https://wikilabs.github.io/editions/tocP/ ... which should be ready to use, but doesn't exactly do what you describe. - The following stuff is EXPERIMENTAL but imo fits to your description! see attachment! so BACKUP!

[tw] Re: [video] HowTo Save TiddlyWiki wihh every browser using IIS and WebDAV

2017-09-01 Thread PMario
On Friday, September 1, 2017 at 5:34:25 PM UTC+2, codacoder...@outlook.com wrote: > > Very comprehensive. Thanks Mario. > > I'll be doing this on Win7 shortly and will post back the results. > I'm looking forward to your info. -m -- You received this message because you are subscribed to

Re: [tw] Query: Markup Parsers

2017-09-01 Thread PMario
On Friday, September 1, 2017 at 2:12:55 PM UTC+2, Jeremy Ruston wrote: > > Instead, I’ve wondered whether we might be able to make (some of) the > existing parser rules much more configurable. For example, right now there > are 6 separate parser modules for each of bold, italic, strikethrough,

Re: [tw] Re: [TW5] WebDav Saver Observations.

2017-09-01 Thread Lost Admin
Ah! you are ahead of me in figuring out what needs to be done. Unfortunately, my javascript skills are nowhere near good enough to figure out how to integrate the Apache way of doing things into TiddlyWiki. On Friday, September 1, 2017 at 9:47:32 AM UTC-4, Arlen Beiler wrote: > > I remember

Re: [tw] Re: [TW5] WebDav Saver Observations.

2017-09-01 Thread Arlen Beiler
Ok, well all I need is the request and response info for the put request. Actually, just the response headers. If you open your Developer Tools and go to the network tab, it will show you all the requests the page makes for everything. Find the put request it sends to save the file and click on

[tw] Re: [video] HowTo Save TiddlyWiki wihh every browser using IIS and WebDAV

2017-09-01 Thread TonyM
Also, Success on a MAC Mini using Safari to access ISS Served empty.html on WIndows 10 Home Chrome on MAC Mini Failure identical to Windows Chrome. Regards Tony On Saturday, 2 September 2017 12:22:00 UTC+10, TonyM wrote: > > Mario, > > Good work on the videos, To thank you I have done a quick

[tw] Re: working with "original" shadow tiddler

2017-09-01 Thread PMario
On Saturday, September 2, 2017 at 1:09:48 AM UTC+2, Rustem wrote: > > When I have a tiddler overriding a shadow, how can I display the original > shadow tiddler as defined in a plugin, including all it's fields? > Just rename the "new" tiddler and the shadow will come back. back and forth.

[tw] Re: [video] HowTo Save TiddlyWiki wihh every browser using IIS and WebDAV

2017-09-01 Thread TonyM
Mario, Good work on the videos, To thank you I have done a quick browser test on Windows 10 Home and the browsers available to me In Windows 10 Home 64bitWorking save reload - FF 55.0.2 (32bit) - FF 55.0.3 (64bit) Portable App - Internet Explorer 11 (Latest as at 2/9/2017) -

Re: [tw] Query: Markup Parsers

2017-09-01 Thread Jan
Dear Jeremy, I would love to have that feature, this would give us a lot more flexibility. For example formatting screenplays it would be great to set the format just by a mark like : preceding the line ... and it would be even better to have a fixed sequence of formats following one another

[tw] Re: Positive Assertions In One Sentence ... (aka Saying Succinctly What TW Is About ...)

2017-09-01 Thread @TiddlyTweeter
You can conceivably implement anything you want in @TiddlyWiki . Possibilities are endless. --#Twitter message by @ABSamma -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To

Re: [tw] does tiddler widget really have "class" attribute?

2017-09-01 Thread Jeremy Ruston
Hi Rustem > > The spec (http://tiddlywiki.com/#TiddlerWidget > , excerpt below) says there is "class" > attribute, but I don't see that it is being added. Looked at the source code > (http://tiddlywiki.com/#%24%3A%2Fcore%2Fmodules%2Fwidgets%2Ftiddler.js

Re: [tw] Parse PDF into tiddlers

2017-09-01 Thread Jeremy Ruston
The trouble with PDF is that, contrary to expectations, it is actually an image file format, rather than a text document format. In other words, it doesn’t know anything about paragraphs, or headers, or footers; all it knows about are simple instructions to draw a given letter at given