[tw] [TW5] Filter all tids with alternative tags

2015-03-30 Thread Mat
Basic question, I know: How can I simplify this so to not repeat amost 
identical filter segments:

list-links [all[shadows+tiddlers]!has[draft.of]tag[Foo]] 
[all[shadows+tiddlers]!has[draft.of]tag[Bar]]


...thinking of elementary math, a*(b+c) = a*b+a*c, I was kinda hoping for 
something like:

list-links [all[shadows+tiddlers]!has[draft.of][tag[Foo] tag[Bar]]

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 post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [off topic] Why English sucks as the language for international and scientific communication

2015-03-30 Thread Jeremy Ruston
Oops, I sent that too quickly.

This article popped up via Hacker News last week. It's a very well written
and interesting analysis of the weaknesses of English as the international
default language. It definitely increases my consciousness of TiddlyWiki's
Englishness, for both good and bad.

I'm thankful for our team of translators; with their help, TiddlyWiki can
reasonably claim to be an international product that is somewhat
independent of English.

Best wishes

Jeremy.


On Mon, Mar 30, 2015 at 12:56 PM, Jeremy Ruston jeremy.rus...@gmail.com
wrote:

 http://www.madore.org/~david/weblog/d.2015-03-20.2284.html


 --
 Jeremy Ruston
 mailto:jeremy.rus...@gmail.com




-- 
Jeremy Ruston
mailto:jeremy.rus...@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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] using a filter to add a tag to a batch of files

2015-03-30 Thread Alec Perkey
Hi, so I might give you bad advice here cause I am newbie but, looking at a 
.tid i have (nodejs install of tw) it looks like this:

created: 20150324100050929
 id: ab994720-5660-467a-bd78-1e2849694abb
 modified: 20150324101547319
 tags: [[programming concepts]]
 title: Hashmap
 type: text/vnd.tiddlywiki


 A hash table (hash map) is a data structure used to implement an 
 associative array



And looking the 'hack' you linked to 
 

 $tw.wiki.each(function(tiddler, title) {
 if (title.substr(-4) === .txt) {
 $tw.wiki.addTiddler(new $tw.Tiddler(tiddler, {
 title: title.substr(0, title.length - 4),
 type: text/vnd.tiddlywiki
 }));
 $tw.wiki.deleteTiddler(title);
 }
 });



I think you could modify the hack to

 
$tw.wiki.each(function(tiddler, title) {
if (title.substr(-4) === .htm) {
$tw.wiki.addTiddler(new $tw.Tiddler(tiddler, {
title: title.substr(0, title.length - 4),
type: text/vnd.tiddlywiki,
tags: [[Your Tag]]
}));
$tw.wiki.deleteTiddler(title);
}
});


Note, I changed .txt to .htm since you said you're importing htm files.
And then all i did was add the extra property for the tag
Should be able to replace Your Tag with what you want
Back up your thing and give it a try  let me know :)

On Monday, March 30, 2015 at 12:22:18 PM UTC+1, Jon wrote:

 Hi,

 I'm importing a large number of .htm files and I'll convert the file type 
 by adapting Jeremy's solution here:
 https://gist.github.com/Jermolene/1c1ff69c7afe91550057.

 Would it possible to adapt this code so that a tag is also added to all 
 the files once imported?

 Or, perhaps after the .htm files have been imported, to then select with a 
 filter and then apply a tag?

 Thanks
 Jon



-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: [TW5] Getting 5.1.8 ready for release

2015-03-30 Thread Jeremy Ruston
Hi Danielo

I'm curious about how the plugin library works.


When the plugin library is opened, TiddlyWiki loads the following HTML file
into a hidden iframe:

http://tiddlywiki.com/prerelease/library/v5.1.8/index.html

TiddlyWiki then talks to the HTML file via window.PostMessage, requesting
the plugin listing, and individual plugins when they are installed.

(The HTML file is used instead of a straightforward XMLHttpRequest for a
JSON file because the plugin library is hosted on GitHub Pages which
doesn't support CORS).


 It does not work properly on any mobile browser that I tried. On chrome it
 directly kills the browser, Firefox slows down significantly and the
 scrolling is nearly unresponsive. On Galaxy s6 default browser it is not
 even possible to see the library.


For the record, it does work OK on the iPhone 6, which is obviously a
reasonably fast processor and has decent RAM.


 I think that you all are forgetting about mobile world,and I think Jeremy
 that you are interested on that particular scenario.


It's true that I use TiddlyWiki on a laptop or tablet much more often than
on my phone. I'm acutely conscious that the handling of the sidebar in the
default Snow White theme is not great on a phone.

Anyhow, my ambition is for TW to work well across desktop, tablet and
phones. Necessarily, there's a minimum spec in terms of JavaScript muscle
(RAM, processor etc.). It's also important that we make it straightforward
to browse static content on mobile devices; if connectivity is bad, I'd
rather have the content without any JavaScript.


 The help plugin, for example, is not very helpful while on mobile.


Indeed not, that's one of the reasons that the help plugin is a plugin.

Best wishes

Jeremy






 Regards.

 --
 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@googlegroups.com.
 Visit this group at http://groups.google.com/group/tiddlywiki.
 For more options, visit https://groups.google.com/d/optout.




-- 
Jeremy Ruston
mailto:jeremy.rus...@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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] [TW5] using a filter to add a tag to a batch of files

2015-03-30 Thread Jon
Hi,

I'm importing a large number of .htm files and I'll convert the file type 
by adapting Jeremy's solution here:
https://gist.github.com/Jermolene/1c1ff69c7afe91550057.

Would it possible to adapt this code so that a tag is also added to all the 
files once imported?

Or, perhaps after the .htm files have been imported, to then select with a 
filter and then apply a tag?

Thanks
Jon

-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] [off topic] Why English sucks as the language for international and scientific communication

2015-03-30 Thread Jeremy Ruston
http://www.madore.org/~david/weblog/d.2015-03-20.2284.html


-- 
Jeremy Ruston
mailto:jeremy.rus...@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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] using a filter to add a tag to a batch of files

2015-03-30 Thread Jon
Hi Alec,

Thanks for that.

I tried the amended hack but I got SyntaxError: missing ] after element 
list

It's probably something simple - any ideas?

Thanks
Jon

SyntaxError: missing ] after element list

On Monday, 30 March 2015 12:22:18 UTC+1, Jon wrote:

 Hi,

 I'm importing a large number of .htm files and I'll convert the file type 
 by adapting Jeremy's solution here:
 https://gist.github.com/Jermolene/1c1ff69c7afe91550057.

 Would it possible to adapt this code so that a tag is also added to all 
 the files once imported?

 Or, perhaps after the .htm files have been imported, to then select with a 
 filter and then apply a tag?

 Thanks
 Jon



-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] using a filter to add a tag to a batch of files

2015-03-30 Thread Jon
Hi Alec,

just played around with it and this line needs to change to:
tags: [[Your Tag]]

Many thanks
Jon

On Monday, 30 March 2015 12:22:18 UTC+1, Jon wrote:

 Hi,

 I'm importing a large number of .htm files and I'll convert the file type 
 by adapting Jeremy's solution here:
 https://gist.github.com/Jermolene/1c1ff69c7afe91550057.

 Would it possible to adapt this code so that a tag is also added to all 
 the files once imported?

 Or, perhaps after the .htm files have been imported, to then select with a 
 filter and then apply a tag?

 Thanks
 Jon



-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Calendar plugin

2015-03-30 Thread RickL
This looks great!  I think it would work as a replacement for the calendar 
I am currently using, which requires several manual adjustments every month 
and loads of tags  (I don't know how to do macros) - 

That being said, I can't get it working. I imported the plugin and checked 
that all the tiddlers are present but need some guidance getting started. 
Here is the TW5 with the plugin 
installed http://journalexample.tiddlyspot.com/ - 

Let me know if you can help.
Thanks


On Friday, February 27, 2015 at 1:40:48 PM UTC-5, Jed Carty wrote:

 With help from Astrid and BJ I made a widget that will, given a year and 
 month, generate a calendar for that month. You can give the widget a macro 
 that will be inserted into each day of the month to make the calendar do 
 what you want it to. By default it lists tiddlers that have a field for 
 that day and clicking on a day brings you to a tiddler whose title is the 
 date you clicked on.

 Here is a link to some documentation and the plugin: 
 http://inmysocks.tiddlyspot.com/#Calendar%20Plugin

 On a slightly related note, does anyone other than me use this stuff or am 
 I just spamming the board showing off toys I made?


-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [off topic] Why English sucks as the language for international and scientific communication

2015-03-30 Thread Alberto Molina
Very interesting, thanks for sharing! 

Alberto 

-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Filter all tids with alternative tags

2015-03-30 Thread Mat


 I think that regular expressions is your best bet here, but not accurate. 


Thanks for your help Danielo. But I don't quite understand what you mean - 
Is that initial (and working) filter that I wrote a regular expression? 
And what do you mean with but no accurate?

Again, thank you.

:-)

-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Getting 5.1.8 ready for release

2015-03-30 Thread Duarte Farrajota Ramos
Tried again with a different encrypted wiki and got the same result.
Bug or did I do something stupid to break it?

On Saturday, 28 March 2015 18:38:11 UTC, Duarte Farrajota Ramos wrote:

 Hey Jeremy
 Sorry to bother again but I've been trying to upgrade my prerelease 
 tiddlywikis to the latest 5.1.8 pre-releases and I am having trouble with 
 an encrypted one.
 After upgrading through Upgrade.html whenever I am promtped to insert the 
 password I get an in-browser tiddlywiki error message which disappears too 
 fast to be able to read and I can't see the contents of the wiki, I am 
 repeatedly prompted again for the password.
 One weird thing that I noticed happen is that the browser adress bar then 
 shows the following:
 file:///C:/Path/To/My/Database/TiddlyWiki.html?password=MyPassword

 with my password in plain sight. I am using Firefox 36.0.6 under Windows 7 
 64bits

 One thing I noticed is that the plugins library is now working correctly 
 in standalone file mode, which I couldn't get to work before which is a 
 nice addition. :)

 On Wednesday, 18 March 2015 18:12:54 UTC, Jeremy Ruston wrote:

 Version 5.1.8 is turning out to be the most significant upgrade to 
 TiddlyWiki since 5.1.0 was released in September. Notable new features 
 include:

 * Integrated online plugin library - see here for a brief screencast: 
 https://www.youtube.com/watch?v=yLJn_0QgJ6U
 * New banner warning when plugins have been modified and a restart is 
 needed
 * Seven new translations: Czech, Interlingua, Portuguese, Punjabi, Hindu, 
 Slovak and Spanish
 * Much improved documentation, including filter documentation using the 
 new RailroadPlugin to produce dynamic syntax diagrams
 * Upgrade to KaTeX 2.0, with better symbol support
 * New overlay help panel
 * Improved scrolling behaviour, including fixing the problem with 
 unneeded scrolling at startup
 * Many minor and internal improvements

 With such a big release, there are bound to be wrinkles. For example, 
 it's harder than usual to make sure that backwards compatibility isn't 
 accidentally broken.

 So, I'd appreciate your help in kicking the tyres of the new release. 
 Don't switch over to it for everyday use, but please do try upgrading your 
 existing wikis, and verifying that they work OK.

 The prerelease is available at:

 http://tiddlywiki.com/prerelease

 You can upgrade at:

 http://tiddlywiki.com/prerelease/upgrade.html

 The things that remain on my todo list for 5.1.8 include:

 * Include help plugin in empty.html, or gettingstarted.html
 * Re-establish Configurations docs section
 * Fixing propogation of action widgets

 Apart from those issues I intend to now freeze the features for 5.1.8, 
 and focus on getting it ready for release. As ever, any comments or 
 questions are welcome.

 Best wishes

 Jeremy.

 -- 
 Jeremy Ruston
 mailto:jeremy...@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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Generic Search and Replace and a Table Making tool

2015-03-30 Thread Crash Pop-Quiz
Thanks for sharing your work. This is exactly the piece I needed to knit 
together key pieces of my TW.

On Tuesday, March 17, 2015 at 1:32:13 AM UTC-4, Jed Carty wrote:

 I got bored, so I made a tool that can do batch search and replace for 
 field contents, field names, index contents and tags. The tags interface 
 could use some work but I am not sure how to make it better. I am planning 
 on adding a similar tool to add field, indexes and tags to groups of 
 tiddlers, but I haven't made that yet. This only works in the prerelease, 
 here 
 it is http://ooktech.com/jed/ExampleWikis/Version518Fun/.

 I have also created a tool to help you build and configure tables using 
 data stored in tiddlers. It isn't as flexible as I would like it to be, and 
 there aren't any options to modify the css yet. I will probably get around 
 to adding more to it later. Here is a demo. 
 http://ooktech.com/jed/ExampleWikis/DynamicTables/MacroVersion2.html


-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] [TW5] Filter all tids with alternative tags

2015-03-30 Thread Danielo Rodríguez
Hello, 

Try 

list-links [all[shadows+tiddlers]!has[draft.of]tag[Foo]tag[Bar]]

-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: [TW5] Getting 5.1.8 ready for release

2015-03-30 Thread Danielo Rodríguez
Hello Jeremy, 

Thank you for explaining the flow. I suspect that the answer is yes, but I 
would like you to confirm this: Does opening the plugin library means that the 
whole collection of plugins is downloaded? 
If the answer is yes this is another big disadvantage for mobile: you have to 
download a big file and load it into memory with the negative effect this can 
have in your Internet plan and device's ram. And all of that each time you want 
to install a single plugin! 

I also don't like how the plugin library is displayed. I expected it to be part 
of the config panel, not an uncomfortable pop-up that does not play well on may 
scenarios due to : 
* more processing power requirements, 
* less screen space available 
* it feels not part of TW

As I said, I tried this in a a galaxy S6,and a Xperia Z, pretty powerful 
devices. 

-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] [TW5] Filter all tids with alternative tags

2015-03-30 Thread Danielo Rodríguez
Oh, sorry

Did you mean that you want some kid of OR. I think that regular expressions is 
your best bet here, but not accurate. 

-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: [TW5] Constant messages from discarded drafts

2015-03-30 Thread Jeremy Ruston
Hi Mark,

If you are experiencing the discarded draft sync error alerts at startup
with 5.1.7 or below, you should be able to remove the alerts by locating
and deleting the tiddler files corresponding to them - they would normally
be in the root folder of your wiki and have filenames such as
___temp_alerts_alert.tid.

Best wishes

Jeremy.


On Mon, Mar 30, 2015 at 12:05 AM, Stefan Szekeres stefan.szeke...@gmail.com
 wrote:

 C:\Users\user\Desktop\tiddlywikiroottiddlywiki mynewwiki --server 8080
 $:/cor
 e/save/all text/plain text/html   192.168.1.102
 Serving on 192.168.1.102:8080
 (press ctrl-C to exit)
 syncer-server: Dispatching 'save' task: Draft of 'te iubesc enorm'
 FileSystem: Saved file
 C:\Users\user\Desktop\tiddlywikiroot\mynewwiki\tiddlers
 \Draft of 'te iubesc enorm'.tid
 syncer-server: Dispatching 'delete' task: Draft of 'te iubesc enorm'
 FileSystem: Deleted file
 C:\Users\user\Desktop\tiddlywikiroot\mynewwiki\tiddle
 rs\Draft of 'te iubesc enorm'.tid
 syncer-server: Dispatching 'delete' task: Draft of 'New Tiddler'
 FileSystem: Deleted file
 C:\Users\user\Desktop\tiddlywikiroot\mynewwiki\tiddle
 rs\Draft of 'New Tiddler 1'.tid
 syncer-server: Dispatching 'delete' task: New Tiddler
 FileSystem: Deleted file
 C:\Users\user\Desktop\tiddlywikiroot\mynewwiki\tiddle
 rs\New Tiddler.tid
 syncer-server: Dispatching 'delete' task: This
 FileSystem: Deleted file
 C:\Users\user\Desktop\tiddlywikiroot\mynewwiki\tiddle
 rs\This.tid
 syncer-server: Dispatching 'save' task: 102_1612.JPG

 $:/plugins/tiddlywiki/filesystem/filesystemadaptor.js:116
 .writeFile(fileInfo.filepath,tiddler.fields.text,{encoding:
 typeInfo.encoding}
 ^
 TypeError: Cannot read property 'encoding' of undefined
 at $:/plugins/tiddlywiki/filesystem/filesystemadaptor.js:116:74
 at FileSystemAdaptor.getTiddlerFileInfo
 ($:/plugins/tiddlywiki/filesystem/fi
 lesystemadaptor.js:76:3)
 at FileSystemAdaptor.saveTiddler
 ($:/plugins/tiddlywiki/filesystem/filesyste
 madaptor.js:105:7)
 at Syncer.dispatchTask ($:/core/modules/syncer.js:458:21)
 at Syncer.processTaskQueue ($:/core/modules/syncer.js:401:9)
 at null._onTimeout ($:/core/modules/syncer.js:380:26)
 at Timer.listOnTimeout (timers.js:110:15)

 C:\Users\user\Desktop\tiddlywikiroottiddlywiki mynewwiki --server 8080
 $:/cor
 e/save/all text/plain text/html   192.168.1.102
 Serving on 192.168.1.102:8080
 (press ctrl-C to exit)
 syncer-server: Dispatching 'save' task: 20140410_030328.jpg
 FileSystem: Saved file
 C:\Users\user\Desktop\tiddlywikiroot\mynewwiki\tiddlers
 \20140410_030328.jpg
 syncer-server: Dispatching 'save' task: 20140309_121833.jpg
 FileSystem: Saved file
 C:\Users\user\Desktop\tiddlywikiroot\mynewwiki\tiddlers
 \20140309_121833.jpg
 syncer-server: Dispatching 'save' task: 102_1715.JPG

 $:/plugins/tiddlywiki/filesystem/filesystemadaptor.js:116
 .writeFile(fileInfo.filepath,tiddler.fields.text,{encoding:
 typeInfo.encoding}
 ^
 TypeError: Cannot read property 'encoding' of undefined
 at $:/plugins/tiddlywiki/filesystem/filesystemadaptor.js:116:74
 at FileSystemAdaptor.getTiddlerFileInfo
 ($:/plugins/tiddlywiki/filesystem/fi
 lesystemadaptor.js:76:3)
 at FileSystemAdaptor.saveTiddler
 ($:/plugins/tiddlywiki/filesystem/filesyste
 madaptor.js:105:7)
 at Syncer.dispatchTask ($:/core/modules/syncer.js:458:21)
 at Syncer.processTaskQueue ($:/core/modules/syncer.js:401:9)
 at null._onTimeout ($:/core/modules/syncer.js:380:26)
 at Timer.listOnTimeout (timers.js:110:15)

 Seems like this happened because my gf was also editing some page in
 parallel.


 On Wednesday, 20 August 2014 06:58:25 UTC+3, JimyKK wrote:

 Hey everyone, Love using TW5.

 I'm on Tiddllywiki 5 *5.0.14-beta *Node.js installed through npm on an
 AMR system running a version of Debian
 (Cubian on my Cubie truck to be specific)

 I am consistently having the following error messages popups:


 Sync error while processing 'Draft of 'Networking setup*: Error: ENOENT,
 unlink '/ssd/html/tiddly/tiddlers/Draft of 'Networking setup'.tid'*


 and

  Sync error while processing 'Draft of 'New Tiddler 1*: Error: ENOENT,
 unlink '/ssd/html/tiddly/tiddlers/Draft of 'New Tiddler 1'.tid'*


 I've had these pop up in the past with previous versions and my solution
 has always been to download a copy, wipe the server files then re-import my
 wiki (after clearing the error message on my local copy). I have just
 atempted to start completely clean and rebuild from scratch but now these
 messages are back.

 Clearly not ideal. has anyone else had experiences with fixing this? or
 is there any simple way to just disable these messages as everything seems
 to work just fine it's just annoying to have to dismiss these dialog boxes
 every time I open my wiki.

  --
 You received this message because you are subscribed to the Google Groups
 

Re: [tw] Re: [TW5] Constant messages from discarded drafts

2015-03-30 Thread Jeremy Ruston
Hi Stefan

I think the problem in your case is a bug pre-5.1.8 whereby files with
uppercase extensions don't work properly:

https://github.com/Jermolene/TiddlyWiki5/issues/1418

Best wishes

Jeremy


On Mon, Mar 30, 2015 at 12:05 AM, Stefan Szekeres stefan.szeke...@gmail.com
 wrote:

 C:\Users\user\Desktop\tiddlywikiroottiddlywiki mynewwiki --server 8080
 $:/cor
 e/save/all text/plain text/html   192.168.1.102
 Serving on 192.168.1.102:8080
 (press ctrl-C to exit)
 syncer-server: Dispatching 'save' task: Draft of 'te iubesc enorm'
 FileSystem: Saved file
 C:\Users\user\Desktop\tiddlywikiroot\mynewwiki\tiddlers
 \Draft of 'te iubesc enorm'.tid
 syncer-server: Dispatching 'delete' task: Draft of 'te iubesc enorm'
 FileSystem: Deleted file
 C:\Users\user\Desktop\tiddlywikiroot\mynewwiki\tiddle
 rs\Draft of 'te iubesc enorm'.tid
 syncer-server: Dispatching 'delete' task: Draft of 'New Tiddler'
 FileSystem: Deleted file
 C:\Users\user\Desktop\tiddlywikiroot\mynewwiki\tiddle
 rs\Draft of 'New Tiddler 1'.tid
 syncer-server: Dispatching 'delete' task: New Tiddler
 FileSystem: Deleted file
 C:\Users\user\Desktop\tiddlywikiroot\mynewwiki\tiddle
 rs\New Tiddler.tid
 syncer-server: Dispatching 'delete' task: This
 FileSystem: Deleted file
 C:\Users\user\Desktop\tiddlywikiroot\mynewwiki\tiddle
 rs\This.tid
 syncer-server: Dispatching 'save' task: 102_1612.JPG

 $:/plugins/tiddlywiki/filesystem/filesystemadaptor.js:116
 .writeFile(fileInfo.filepath,tiddler.fields.text,{encoding:
 typeInfo.encoding}
 ^
 TypeError: Cannot read property 'encoding' of undefined
 at $:/plugins/tiddlywiki/filesystem/filesystemadaptor.js:116:74
 at FileSystemAdaptor.getTiddlerFileInfo
 ($:/plugins/tiddlywiki/filesystem/fi
 lesystemadaptor.js:76:3)
 at FileSystemAdaptor.saveTiddler
 ($:/plugins/tiddlywiki/filesystem/filesyste
 madaptor.js:105:7)
 at Syncer.dispatchTask ($:/core/modules/syncer.js:458:21)
 at Syncer.processTaskQueue ($:/core/modules/syncer.js:401:9)
 at null._onTimeout ($:/core/modules/syncer.js:380:26)
 at Timer.listOnTimeout (timers.js:110:15)

 C:\Users\user\Desktop\tiddlywikiroottiddlywiki mynewwiki --server 8080
 $:/cor
 e/save/all text/plain text/html   192.168.1.102
 Serving on 192.168.1.102:8080
 (press ctrl-C to exit)
 syncer-server: Dispatching 'save' task: 20140410_030328.jpg
 FileSystem: Saved file
 C:\Users\user\Desktop\tiddlywikiroot\mynewwiki\tiddlers
 \20140410_030328.jpg
 syncer-server: Dispatching 'save' task: 20140309_121833.jpg
 FileSystem: Saved file
 C:\Users\user\Desktop\tiddlywikiroot\mynewwiki\tiddlers
 \20140309_121833.jpg
 syncer-server: Dispatching 'save' task: 102_1715.JPG

 $:/plugins/tiddlywiki/filesystem/filesystemadaptor.js:116
 .writeFile(fileInfo.filepath,tiddler.fields.text,{encoding:
 typeInfo.encoding}
 ^
 TypeError: Cannot read property 'encoding' of undefined
 at $:/plugins/tiddlywiki/filesystem/filesystemadaptor.js:116:74
 at FileSystemAdaptor.getTiddlerFileInfo
 ($:/plugins/tiddlywiki/filesystem/fi
 lesystemadaptor.js:76:3)
 at FileSystemAdaptor.saveTiddler
 ($:/plugins/tiddlywiki/filesystem/filesyste
 madaptor.js:105:7)
 at Syncer.dispatchTask ($:/core/modules/syncer.js:458:21)
 at Syncer.processTaskQueue ($:/core/modules/syncer.js:401:9)
 at null._onTimeout ($:/core/modules/syncer.js:380:26)
 at Timer.listOnTimeout (timers.js:110:15)

 Seems like this happened because my gf was also editing some page in
 parallel.


 On Wednesday, 20 August 2014 06:58:25 UTC+3, JimyKK wrote:

 Hey everyone, Love using TW5.

 I'm on Tiddllywiki 5 *5.0.14-beta *Node.js installed through npm on an
 AMR system running a version of Debian
 (Cubian on my Cubie truck to be specific)

 I am consistently having the following error messages popups:


 Sync error while processing 'Draft of 'Networking setup*: Error: ENOENT,
 unlink '/ssd/html/tiddly/tiddlers/Draft of 'Networking setup'.tid'*


 and

  Sync error while processing 'Draft of 'New Tiddler 1*: Error: ENOENT,
 unlink '/ssd/html/tiddly/tiddlers/Draft of 'New Tiddler 1'.tid'*


 I've had these pop up in the past with previous versions and my solution
 has always been to download a copy, wipe the server files then re-import my
 wiki (after clearing the error message on my local copy). I have just
 atempted to start completely clean and rebuild from scratch but now these
 messages are back.

 Clearly not ideal. has anyone else had experiences with fixing this? or
 is there any simple way to just disable these messages as everything seems
 to work just fine it's just annoying to have to dismiss these dialog boxes
 every time I open my wiki.

  --
 You received this message because you are subscribed to the Google Groups
 TiddlyWiki group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to tiddlywiki+unsubscr...@googlegroups.com.
 To 

[tw] How to Embed an Image?

2015-03-30 Thread Aidan Grey
I'm a noob, ish, and not having any luck undersdtanding what details I've 
been able to find.

Specifically, I have a few images I want to embed in my TW, so that 
internet access is irrelevant. Most are imgur or other websites, but a 
couple, I need to see and work with them whether I have access or not. 

How do I do that? I am using the new TiddlyWiki, not the classic (though 
I used to use the classic, years ago). Generally, in Firefox or Chrome.

-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] TW5 bit of javascript help needed

2015-03-30 Thread Jon
Hi, 
I've imported a lot of.htm files which I now want to delete and I suspect 
the following excerpt might work if I could get the syntax right.
Any ideas?

$tw.wiki.each(function(tiddler, title) {
if (title.substr(-4) === .htm) {
   $tw.wiki.deleteTiddler(title);
});

Thanks
Jon

-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How to Embed an Image?

2015-03-30 Thread Jed Carty
There are two ways, one is to make the image part of the tiddlywiki html 
file, which can slow down loading if there are too many. If you are always 
going to have access to the local file system (either on the same computer 
or through some service like dropbox) you can link to a local copy of the 
image.

Either way you need a local copy of the image. 

To embed the image in your wiki you can either drag the file from a file 
browser into your wiki, or use the import function of tiddlywiki by 
clicking on the import button and then selecting the image file you want to 
include using the file browser.
To display the import button to controlpanel - Apperance tab - Toolbars 
tab - Page Toolbar tab and then check the box next to the paperclip icon, 
the import icon should appear in the sidebar next to the home and save 
buttons.
Once you have imported the image like this it is a tiddler and is part of 
your wiki.

To embed a local image in your wiki it is easiest to use the _canonical_uri 
field. You put the image either in the same folder as your wiki or in a sub 
folder (I use a folder called images), then, assuming you are using a 
folder called images located in the same folder as your wiki, you make a 
new tiddler and give it a field called _canonical_uri and in that field put 
./images/(imagename)
Where you replace (imagename) with the name of the image you want to 
display, complete with file extension. When you have done that the tiddler 
should display the image and it can be transcluded or displayed using the 
[img []] syntax or the image widget.

There is some more about this here. 
http://inmysocks.tiddlyspot.com/#Embedding%20Images%20-%20Images%20added%20to%20the%20wiki:[[Embedding%20Images%20-%20Images%20added%20to%20the%20wiki]]%20[[Embedding%20Images%20-%20External%20Images]]
 
There should be two tiddlers open, one talking about images added to the 
wiki and one talking about local (external) images.

-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: [TW5] Getting 5.1.8 ready for release

2015-03-30 Thread Jeremy Ruston
Hi Danielo


 Thank you for explaining the flow. I suspect that the answer is yes, but I
 would like you to confirm this: Does opening the plugin library means that
 the whole collection of plugins is downloaded?


No, that is not the case. The plugin library HTML file has the metadata for
the plugins (it is 148KB) and uses XMLHTTPRequest to load the individual
JSON files. You can see all this with the browser dev tools network tab.


 If the answer is yes this is another big disadvantage for mobile: you have
 to download a big file and load it into memory with the negative effect
 this can have in your Internet plan and device's ram. And all of that each
 time you want to install a single plugin!


As I say, that is not in fact the case. (The upgrade utility at
http://tiddlywiki.com/upgrade.html does currently include the entire plugin
library).


 I also don't like how the plugin library is displayed. I expected it to be
 part of the config panel, not an uncomfortable pop-up that does not play
 well on may scenarios due to :
 * more processing power requirements,


Why does the use of a modal affect processing power?


 * less screen space available
 * it feels not part of TW


The reason it uses a popup is because otherwise the plugin library listing
is almost indistinguishable from the existing plugin listing in the control
panel. For a long time the prerelease had them as two separate tabs; the
result was incredibly confusing.


 As I said, I tried this in a a galaxy S6,and a Xperia Z, pretty powerful
 devices.


I'm not familiar with the model numbers, and hadn't realised these were
recent devices. Can you access the browser dev tools to see if there are
any issues? I've no idea how it would work with Android, but with
iPhone/iPad one can easily open dev tools from a computer into a page
loaded up on a phone attached via USB.

Best wishes

Jeremy.






 --
 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@googlegroups.com.
 Visit this group at http://groups.google.com/group/tiddlywiki.
 For more options, visit https://groups.google.com/d/optout.




-- 
Jeremy Ruston
mailto:jeremy.rus...@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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] [TW5] Story river margin-right covers sidebar

2015-03-30 Thread Mat
As demo'ed here http://temp.tiddlyspot.com/, the story river has a righ 
side padding or margin in spite of setting these to 0px.

As you can see, setting the padding to 0px does work for top and left sides.

This causes problems when I wish to lessen the distance between the story 
river and the sidebar (e.g via Ctrolpanel  Appearence  ThemeTweaks) 
because this margin (or whatever it is) then overlaps the sidebar so the 
sidebar cannot be clicked.

I don't know why there is a river right-side margin to begin with (the 
sidebar position is not affected by it) but, accepting this, how do I 
change it?

Thank you!

:-)

-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: [TW5] Getting 5.1.8 ready for release

2015-03-30 Thread Jeremy Ruston
Hi Duarte

Apologies for the late reply

On Mon, Mar 30, 2015 at 6:54 PM, Duarte Farrajota Ramos 
duarte.fra...@gmail.com wrote:

 Tried again with a different encrypted wiki and got the same result.
 Bug or did I do something stupid to break it?


I think what's going on is that an error is being raised during the event
handler for the login button. The browser is responding by trying to
apply its default form processing; in this case, that means posting the
value of the password input control.

The problem is that the entire post-decryption boot process is run within
the login event handler. The way to figure this one out is to use the
browser dev tools facility to break on all errors (including ones that are
trapped). Then you should be able to see the error message before the
reload.

Alternatively, feel free to email me the file and I'll be happy to have a
look,

Best wishes

Jeremy.







 On Saturday, 28 March 2015 18:38:11 UTC, Duarte Farrajota Ramos wrote:

 Hey Jeremy
 Sorry to bother again but I've been trying to upgrade my prerelease
 tiddlywikis to the latest 5.1.8 pre-releases and I am having trouble with
 an encrypted one.
 After upgrading through Upgrade.html whenever I am promtped to insert the
 password I get an in-browser tiddlywiki error message which disappears too
 fast to be able to read and I can't see the contents of the wiki, I am
 repeatedly prompted again for the password.
 One weird thing that I noticed happen is that the browser adress bar then
 shows the following:
 file:///C:/Path/To/My/Database/TiddlyWiki.html?password=MyPassword

 with my password in plain sight. I am using Firefox 36.0.6 under Windows
 7 64bits

 One thing I noticed is that the plugins library is now working correctly
 in standalone file mode, which I couldn't get to work before which is a
 nice addition. :)


 On Wednesday, 18 March 2015 18:12:54 UTC, Jeremy Ruston wrote:

 Version 5.1.8 is turning out to be the most significant upgrade to
 TiddlyWiki since 5.1.0 was released in September. Notable new features
 include:

 * Integrated online plugin library - see here for a brief screencast:
 https://www.youtube.com/watch?v=yLJn_0QgJ6U
 * New banner warning when plugins have been modified and a restart is
 needed
 * Seven new translations: Czech, Interlingua, Portuguese, Punjabi,
 Hindu, Slovak and Spanish
 * Much improved documentation, including filter documentation using the
 new RailroadPlugin to produce dynamic syntax diagrams
 * Upgrade to KaTeX 2.0, with better symbol support
 * New overlay help panel
 * Improved scrolling behaviour, including fixing the problem with
 unneeded scrolling at startup
 * Many minor and internal improvements

 With such a big release, there are bound to be wrinkles. For example,
 it's harder than usual to make sure that backwards compatibility isn't
 accidentally broken.

 So, I'd appreciate your help in kicking the tyres of the new release.
 Don't switch over to it for everyday use, but please do try upgrading your
 existing wikis, and verifying that they work OK.

 The prerelease is available at:

 http://tiddlywiki.com/prerelease

 You can upgrade at:

 http://tiddlywiki.com/prerelease/upgrade.html

 The things that remain on my todo list for 5.1.8 include:

 * Include help plugin in empty.html, or gettingstarted.html
 * Re-establish Configurations docs section
 * Fixing propogation of action widgets

 Apart from those issues I intend to now freeze the features for 5.1.8,
 and focus on getting it ready for release. As ever, any comments or
 questions are welcome.

 Best wishes

 Jeremy.

 --
 Jeremy Ruston
 mailto:jeremy...@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 tiddlywiki+unsubscr...@googlegroups.com.
 To post to this group, send email to tiddlywiki@googlegroups.com.
 Visit this group at http://groups.google.com/group/tiddlywiki.
 For more options, visit https://groups.google.com/d/optout.




-- 
Jeremy Ruston
mailto:jeremy.rus...@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 tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] TW5 bit of javascript help needed

2015-03-30 Thread Felix Küppers
Hi Jon,

you are missing a curly bracket (the if is not closed).

Please note that substr(-4) might produce an out of bounds error if a
tiddler with less then 4 letters exists. so maybe add a check


$tw.wiki.each(function(tiddler, title) {
   if(title.length = 4  title.substr(-4) === .htm) {
 $tw.wiki.deleteTiddler(title);
  }
});

-Felix

-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 bit of javascript help needed

2015-03-30 Thread Jon
Hi Felix,

That worked a treat!

Thanks a lot
Jon

On Monday, 30 March 2015 19:55:51 UTC+1, Jon wrote:

 Hi, 
 I've imported a lot of.htm files which I now want to delete and I suspect 
 the following excerpt might work if I could get the syntax right.
 Any ideas?

 $tw.wiki.each(function(tiddler, title) {
 if (title.substr(-4) === .htm) {
$tw.wiki.deleteTiddler(title);
 });

 Thanks
 Jon


-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] [TW5] Table of contents - what am I doing wrong?

2015-03-30 Thread Jon
Hi,

I've got a functioning Table of Contents but I can't seem to create another 
in a separate wiki and I can't think what I'm doing wrong.

Process I've followed:

1. Download empty wiki from http://tiddlywiki.com/
2. Paste the following into a tiddler and change file type to 
text/vnd.tiddlywiki

div class=tc-table-of-contents

toc-selective-single-expandable 'ToC'

/div

3.Tiddlers tagged with ToC should then appear in the contents - shouldn't 
they?

Please put me out of my misery!

Thanks
Jon



-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [off topic] Why English sucks as the language for international and scientific communication

2015-03-30 Thread Richard Smith
Hi Jeremy,

I agree it was a very interesting article. I've always felt slightly 
ashamed of not having learned another language properly, but now I feel 
quite proud of myself for just being able to make sense out this gibberish.

Everything the writer says rings true, and it's a very well written piece, 
but I still found myself wanting to stick up for English. Yes, it is indeed 
a very silly language, and riddled with ambiguities and foibles but it's 
malleability is also a creative strength, allowing a necessary element of 
chaos into our thought process. I think it's fun that new words are created 
all the time - dongle, widget, tiddler and that we can convey meaning even 
by using words that aren't really even words I intend to wikify this 
content and then these words stick if they're useful enough.

Of course, the great variety also means that it's possible to write 
technically correct English which is practically impossible to make sense 
of and the burden of clarity falls on the writer to make him- or herself 
understood. The links about Simplified Technical English are very 
interesting and it's certainly worth thinking about in terms of our 
documentation. Having translators seems a great asset in this respect 
because if something is difficult to translate into another language, it 
may suggest there is something ambiguous about the English original.

I was a bit confused by this paragraph of the piece:

If we hear the story told the previous week was true, even though it is, 
*technically*, syntactically ambiguous, we know that it should be 
interpreted as ‹the story [that] was told [during] the previous week› was 
true, not the story told [≈said] ‹[that] the previous week was true›. 
(Unless the context calls for it: Ada's story was stirring something in my 
mind: I had lived so many lies and falsehoods, but not last week—no, last 
week was different, Ada's words revealed something that I had not dared to 
hope: these days were not a lie, Ada's words said to me—the story told the 
previous week was true.)

The writer appears to be suggesting that, in the context of this couching 
paragraph, the last sentence would be read to mean the story told [≈said] 
‹[that] the previous week was true› but I wouldn't read it that way 
because it doesn't do enough to dissuade me from the most natural form. I 
think a modern English writer would, at least, add that - ie; the story 
told *that* the previous week was true, to avoid the confusion.

Regards,
Richard

-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: [TW5] Constant messages from discarded drafts

2015-03-30 Thread Oleg Lavrovsky
Nevertheless Stefan's suggestion to 'touch' the files and restart the 
server worked for me as well.

O/

On Monday, March 30, 2015 at 7:45:23 PM UTC+2, Jeremy Ruston wrote:

 Hi Stefan

 I think the problem in your case is a bug pre-5.1.8 whereby files with 
 uppercase extensions don't work properly:

 https://github.com/Jermolene/TiddlyWiki5/issues/1418

 Best wishes

 Jeremy


 On Mon, Mar 30, 2015 at 12:05 AM, Stefan Szekeres stefan@gmail.com 
 javascript: wrote:

 C:\Users\user\Desktop\tiddlywikiroottiddlywiki mynewwiki --server 8080 
 $:/cor
 e/save/all text/plain text/html   192.168.1.102
 Serving on 192.168.1.102:8080
 (press ctrl-C to exit)
 syncer-server: Dispatching 'save' task: Draft of 'te iubesc enorm'
 FileSystem: Saved file 
 C:\Users\user\Desktop\tiddlywikiroot\mynewwiki\tiddlers
 \Draft of 'te iubesc enorm'.tid
 syncer-server: Dispatching 'delete' task: Draft of 'te iubesc enorm'
 FileSystem: Deleted file 
 C:\Users\user\Desktop\tiddlywikiroot\mynewwiki\tiddle
 rs\Draft of 'te iubesc enorm'.tid
 syncer-server: Dispatching 'delete' task: Draft of 'New Tiddler'
 FileSystem: Deleted file 
 C:\Users\user\Desktop\tiddlywikiroot\mynewwiki\tiddle
 rs\Draft of 'New Tiddler 1'.tid
 syncer-server: Dispatching 'delete' task: New Tiddler
 FileSystem: Deleted file 
 C:\Users\user\Desktop\tiddlywikiroot\mynewwiki\tiddle
 rs\New Tiddler.tid
 syncer-server: Dispatching 'delete' task: This
 FileSystem: Deleted file 
 C:\Users\user\Desktop\tiddlywikiroot\mynewwiki\tiddle
 rs\This.tid
 syncer-server: Dispatching 'save' task: 102_1612.JPG

 $:/plugins/tiddlywiki/filesystem/filesystemadaptor.js:116
 .writeFile(fileInfo.filepath,tiddler.fields.text,{encoding: 
 typeInfo.encoding}
 ^
 TypeError: Cannot read property 'encoding' of undefined
 at $:/plugins/tiddlywiki/filesystem/filesystemadaptor.js:116:74
 at FileSystemAdaptor.getTiddlerFileInfo 
 ($:/plugins/tiddlywiki/filesystem/fi
 lesystemadaptor.js:76:3)
 at FileSystemAdaptor.saveTiddler 
 ($:/plugins/tiddlywiki/filesystem/filesyste
 madaptor.js:105:7)
 at Syncer.dispatchTask ($:/core/modules/syncer.js:458:21)
 at Syncer.processTaskQueue ($:/core/modules/syncer.js:401:9)
 at null._onTimeout ($:/core/modules/syncer.js:380:26)
 at Timer.listOnTimeout (timers.js:110:15)

 C:\Users\user\Desktop\tiddlywikiroottiddlywiki mynewwiki --server 8080 
 $:/cor
 e/save/all text/plain text/html   192.168.1.102
 Serving on 192.168.1.102:8080
 (press ctrl-C to exit)
 syncer-server: Dispatching 'save' task: 20140410_030328.jpg
 FileSystem: Saved file 
 C:\Users\user\Desktop\tiddlywikiroot\mynewwiki\tiddlers
 \20140410_030328.jpg
 syncer-server: Dispatching 'save' task: 20140309_121833.jpg
 FileSystem: Saved file 
 C:\Users\user\Desktop\tiddlywikiroot\mynewwiki\tiddlers
 \20140309_121833.jpg
 syncer-server: Dispatching 'save' task: 102_1715.JPG

 $:/plugins/tiddlywiki/filesystem/filesystemadaptor.js:116
 .writeFile(fileInfo.filepath,tiddler.fields.text,{encoding: 
 typeInfo.encoding}
 ^
 TypeError: Cannot read property 'encoding' of undefined
 at $:/plugins/tiddlywiki/filesystem/filesystemadaptor.js:116:74
 at FileSystemAdaptor.getTiddlerFileInfo 
 ($:/plugins/tiddlywiki/filesystem/fi
 lesystemadaptor.js:76:3)
 at FileSystemAdaptor.saveTiddler 
 ($:/plugins/tiddlywiki/filesystem/filesyste
 madaptor.js:105:7)
 at Syncer.dispatchTask ($:/core/modules/syncer.js:458:21)
 at Syncer.processTaskQueue ($:/core/modules/syncer.js:401:9)
 at null._onTimeout ($:/core/modules/syncer.js:380:26)
 at Timer.listOnTimeout (timers.js:110:15)

 Seems like this happened because my gf was also editing some page in 
 parallel.


 On Wednesday, 20 August 2014 06:58:25 UTC+3, JimyKK wrote:

 Hey everyone, Love using TW5.

 I'm on Tiddllywiki 5 *5.0.14-beta *Node.js installed through npm on an 
 AMR system running a version of Debian
 (Cubian on my Cubie truck to be specific)

 I am consistently having the following error messages popups:


 Sync error while processing 'Draft of 'Networking setup*: Error: 
 ENOENT, unlink '/ssd/html/tiddly/tiddlers/Draft of 'Networking setup'.tid'*


 and

  Sync error while processing 'Draft of 'New Tiddler 1*: Error: ENOENT, 
 unlink '/ssd/html/tiddly/tiddlers/Draft of 'New Tiddler 1'.tid'*


 I've had these pop up in the past with previous versions and my solution 
 has always been to download a copy, wipe the server files then re-import my 
 wiki (after clearing the error message on my local copy). I have just 
 atempted to start completely clean and rebuild from scratch but now these 
 messages are back.

 Clearly not ideal. has anyone else had experiences with fixing this? or 
 is there any simple way to just disable these messages as everything seems 
 to work just fine it's just annoying to have to dismiss these dialog boxes 
 every time I open my wiki.

  -- 
 You 

[tw] Macro JS Macro formatting difference

2015-03-30 Thread James Anderson
I came across this today while working on some simple YT macros so I can 
link to specific times within videos on a statically exported blog.

http://phasersonkill.com/2015/3/31/macro%20sample.html

The first video is generated via a JS macro and the 2nd via a plain macro 
defined with a global scope. the difference in size (at least on Chrome and 
IE) is because the JS macros output is wrapped in p tags. I can probably 
do some CSS hacking to fix this but is there a way of stopping the p tags 
from being generated in this case?

Thanks,
James

-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Filter all tids with alternative tags

2015-03-30 Thread Danielo Rodríguez
Hello Mat,

Sorry for being unclear. Your first filter is the only option I can think 
about. I misunderstood what you wanted at first. Currently there is not 
available any or operator for tags ,as far as I know.

-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: [TW5] Getting 5.1.8 ready for release

2015-03-30 Thread Jeremy Ruston
Hi Duarte

It seems that the problem is that your $:/core/boot.js is 5.1.7 while the
$:/core plugin itself is 5.1.8. What were the steps you used to produce the
file you attached?

 : I may have misunderstood but isn't the option Export river of tiddlers
as static HTML not supposed to export all currently opened tiddlers?

No, which tiddlers are exported depends on the situation:

* In the tiddler toolbar, a single tiddler is saved
* In the sidebar, all tiddlers are saved
* In the $:/AdvancedSearch Filter tab, the tiddlers matching the filter
are saved

The term river of tiddlers just means a sequence of tiddlers; the story
river is the river made up of the currently open tiddlers.

I think the phrasing is confusing and would welcome suggestions for
alternatives. Perhaps Export sequence of tiddlers as static HTML?

Best wishes

Jeremy





On Mon, Mar 30, 2015 at 8:15 PM, Duarte Farrajota Ramos 
duarte.fra...@gmail.com wrote:

 Hi Jeremy no problem, no hurries.
 One of the files was actually where I save all my passwords so I wouldn't
 really be conformable sharing that, so in an attempt to recreate the
 problem I found out that it only seems to happen when downloading the
 upgrade.html for local file use.
 Seems to not occur in the online upgrader.
 Anyway here is a test file with the mentioned error, password is:
 password
 Hope this helps

 On a separate note:
 One small feature request: it would be nice, when importing tiddlers or a
 whole tiddlywiki, to have an additional checkbox on the top to  toggle
 selecting/deselect all tiddlers.
 One other question: I may have misunderstood but isn't the option Export
 river of tiddlers as static HTML not supposed to export all currently
 opened tiddlers?


 On Monday, 30 March 2015 19:39:48 UTC+1, Jeremy Ruston wrote:

 Hi Duarte

 Apologies for the late reply

 On Mon, Mar 30, 2015 at 6:54 PM, Duarte Farrajota Ramos 
 duarte...@gmail.com wrote:

 Tried again with a different encrypted wiki and got the same result.
 Bug or did I do something stupid to break it?


 I think what's going on is that an error is being raised during the event
 handler for the login button. The browser is responding by trying to
 apply its default form processing; in this case, that means posting the
 value of the password input control.

 The problem is that the entire post-decryption boot process is run within
 the login event handler. The way to figure this one out is to use the
 browser dev tools facility to break on all errors (including ones that are
 trapped). Then you should be able to see the error message before the
 reload.

 Alternatively, feel free to email me the file and I'll be happy to have a
 look,

 Best wishes

 Jeremy.







 On Saturday, 28 March 2015 18:38:11 UTC, Duarte Farrajota Ramos wrote:

 Hey Jeremy
 Sorry to bother again but I've been trying to upgrade my prerelease
 tiddlywikis to the latest 5.1.8 pre-releases and I am having trouble with
 an encrypted one.
 After upgrading through Upgrade.html whenever I am promtped to insert
 the password I get an in-browser tiddlywiki error message which disappears
 too fast to be able to read and I can't see the contents of the wiki, I am
 repeatedly prompted again for the password.
 One weird thing that I noticed happen is that the browser adress bar
 then shows the following:
 file:///C:/Path/To/My/Database/TiddlyWiki.html?password=MyPassword

 with my password in plain sight. I am using Firefox 36.0.6 under
 Windows 7 64bits

 One thing I noticed is that the plugins library is now working
 correctly in standalone file mode, which I couldn't get to work before
 which is a nice addition. :)


 On Wednesday, 18 March 2015 18:12:54 UTC, Jeremy Ruston wrote:

 Version 5.1.8 is turning out to be the most significant upgrade to
 TiddlyWiki since 5.1.0 was released in September. Notable new features
 include:

 * Integrated online plugin library - see here for a brief screencast:
 https://www.youtube.com/watch?v=yLJn_0QgJ6U
 * New banner warning when plugins have been modified and a restart is
 needed
 * Seven new translations: Czech, Interlingua, Portuguese, Punjabi,
 Hindu, Slovak and Spanish
 * Much improved documentation, including filter documentation using
 the new RailroadPlugin to produce dynamic syntax diagrams
 * Upgrade to KaTeX 2.0, with better symbol support
 * New overlay help panel
 * Improved scrolling behaviour, including fixing the problem with
 unneeded scrolling at startup
 * Many minor and internal improvements

 With such a big release, there are bound to be wrinkles. For example,
 it's harder than usual to make sure that backwards compatibility isn't
 accidentally broken.

 So, I'd appreciate your help in kicking the tyres of the new release.
 Don't switch over to it for everyday use, but please do try upgrading your
 existing wikis, and verifying that they work OK.

 The prerelease is available at:

 http://tiddlywiki.com/prerelease

 You can upgrade at:

 

[tw] Re: Sticky Table Headers

2015-03-30 Thread Danielo Rodríguez
You can add the position:sticky to any element. Try adding it to your table 
headers. But it only works for Firefox.

-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Table of contents - what am I doing wrong?

2015-03-30 Thread Jon
Hi Jed,

I'd forgotten I'd done that.

Many thanks for spotting it.

Jon



On Monday, 30 March 2015 22:36:04 UTC+1, Jon wrote:

 Hi,

 I've got a functioning Table of Contents but I can't seem to create 
 another in a separate wiki and I can't think what I'm doing wrong.

 Process I've followed:

 1. Download empty wiki from http://tiddlywiki.com/
 2. Paste the following into a tiddler and change file type to 
 text/vnd.tiddlywiki

 div class=tc-table-of-contents

 toc-selective-single-expandable 'ToC'

 /div

 3.Tiddlers tagged with ToC should then appear in the contents - 
 shouldn't they?

 Please put me out of my misery!

 Thanks
 Jon





-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Sticky Table Headers

2015-03-30 Thread Danielo Rodríguez
Take a look at this example :

http://jsfiddle.net/daker/ecpTw/light/

Reference: https://developer.mozilla.org/en-US/docs/Web/CSS/position

-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Table of contents - what am I doing wrong?

2015-03-30 Thread Jed Carty
toc-selective-single-expandable isn't one of the toc macros in the core. 
toc-selective-expandable is. Someone may have made 
toc-selective-single-expandable, but you would have to import that macro 
into your wiki.

-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: the Bible in json

2015-03-30 Thread Joshua
Great work Richard. I'm going to see what further can be done with it. It 
certainly is a good stress test for the system :-).

Joshua

On Friday, March 27, 2015 at 9:07:57 AM UTC-5, Richard Smith wrote:

 I know you've probably already got one, but in case you don't, here's a 
 copy of the old-testament, built using filters from the individual verses.

 https://dl.dropboxusercontent.com/u/83055414/kjv.html

 I think I found the easiest way to get stuff out of a spreadsheet into TW.


 https://lh3.googleusercontent.com/-uJjv290xbSI/VRVifJFLxnI/A-0/pYqkq8IxkLo/s1600/Screen%2BShot%2B2015-03-28%2Bat%2B12.15.47%2Bam.png
 By adding columns to mock-up a json file and then copying that into a 
 text-editor


 https://lh3.googleusercontent.com/-4DskvI83QLw/VRVi7qkfNVI/A-8/4z7-Xnk-1mg/s1600/Screen%2BShot%2B2015-03-28%2Bat%2B12.16.46%2Bam.png
 Save it as .json and drag it in to TW

 The file is ~7mb and isn't quick, but the drop in performance isn't what 
 one might fear. The wiki contains ~23,000 tiddlers. The original 
 spreadsheet files are here: 
 http://spreadsheetpage.com/index.php/file/king_james_bible/




-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: [TW5] Getting 5.1.8 ready for release

2015-03-30 Thread Duarte Farrajota Ramos
OK, I believe I found out what is wrong. Probably nothing to do with 
tiddlywiki itself
I think it is just that over at 
http://tiddlywiki.com/prerelease/upgrade.html if you press the download 
link at the bottom it is directed at http://tiddlywiki.com/upgrade.html
So since I downloaded upgrade.html for local filesystem updates, instead of 
upgrading I was probably downgrading to 5.1.7, that's probably what broke 
the mechanism.
I can still send all the files I used to recreate the problem, just let me 
know if they still help, though that was likely the origin of the problem.


On Saturday, 21 March 2015 19:37:56 UTC, Jeremy Ruston wrote:

 Hi Duarte

  One small suggestion, given the recent development speed of and the 
 frequency at which you release new updates to pre-releases, have you 
 considered perhaps adding a an additional number to the TiddyWiki version 
 or name them something like TiddyWiki 5.1.8 Prerelease## to help us know 
 which version we are on or if our files are updated to the latest version?

 Yes, I'd like to do that. The only hold-up is that it requires some 
 re-engineering of the build process.

 Best wishes

 Jeremy.


 On Sat, Mar 21, 2015 at 7:22 PM, Duarte Farrajota Ramos 
 duarte...@gmail.com javascript: wrote:

 Thanks Jeremy, that was quick. TiddlyWiki 5.1.8 is shaping up to be a 
 great release, love the new features, especially those always visible 
 floating heathers on tiddlers. Any plans to support that in additional 
 themes?

 One small suggestion, given the recent development speed of and the 
 frequency at which you release new updates to pre-releases, have you 
 considered perhaps adding a an additional number to the TiddyWiki version 
 or name them something like TiddyWiki 5.1.8 Prerelease## to help us know 
 which version we are on or if our files are updated to the latest version?



 On Saturday, 21 March 2015 14:18:49 UTC, Jeremy Ruston wrote:

 Hi Duarte

 One thing I've noticed when upgrading between different 5.1.8 pre-relese 
 versions happen repeatedly is that in certain tiddlers single quote marks 
  
 '  are replaced by their html code equivalents #39; breaking any 
 wikitext functionality they carried after the upgrade.
 I'm I doing something wrong, is this expected behavior or is there any 
 bug or way around it?


 Great, thank you, that's a bug, fixed here:

 https://github.com/Jermolene/TiddlyWiki5/commit/
 00f35fe41a7e6a030716daede793346356dfd9ae

 Best wishes

 Jeremy
  


 I am on Firefox 36.0.1 under Windows7 64bits if it make any difference.

 On Friday, 20 March 2015 16:21:57 UTC, Jeremy Ruston wrote:

 Hi everyone,

 Thanks for the feedback.

 The horizontal scrollbar problem is under discussion on GitHub, and a 
 fix will be committed soon.

 I've changed the help panel label to Help Panel, and fixed the 
 problem with tiddler titles overlaying the help panel in Firefox.

 I agree with the idea of not scrolling the title of the help panel, 
 and will come back to that post-5.1.8

 In terms of the long list of plugins in the plugin library, I'm 
 imagining that we'll bring in several enhancements: expandable 
 categories, 
 ratings, charts, etc.

  Another little oddity; help-button gets cropped when active...

 That seems to be a Firefox bug, I'm not going to put much effort into 
 working around it now.

 I've posted an update to the prerelease, do please give it a go:

 http://tiddlywiki.com/prerelease
 http://tiddlywiki.com/prerelease/upgrade.html

 Best wishes

 Jeremy.



 On Fri, Mar 20, 2015 at 1:13 PM, Lorenzo lorenzo...@gmail.com wrote:

 Hi Jeremy,

 there is another glitch with the Help panel.

 When the sidebar is closed and the Help panel is open, the title-bar 
 of the tiddlers overlays the Help panel.
 The problem occurs only on Firefox 36 (on Linux).
 Chrome and Chromium don't have the problem.

 Testing on the other browser I noticed that scrolling the tiddlers in 
 Firefox now, makes tiddlers show their title fixed on the top of the 
 windows until the tiddler is completely out of the client area of 
 window. 
 This doesn't work in Chrome/Chromium.


 Regards,
 Lorenzo


  -- 
 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+...@googlegroups.com.
 To post to this group, send email to tiddl...@googlegroups.com.

 Visit this group at http://groups.google.com/group/tiddlywiki.
 For more options, visit https://groups.google.com/d/optout.




 -- 
 Jeremy Ruston
 mailto:jeremy...@gmail.com
  



 -- 
 Jeremy Ruston
 mailto:jeremy...@gmail.com
  



 -- 
 Jeremy Ruston
 mailto:jeremy...@gmail.com javascript:
  

-- 
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 

Re: [tw] Re: [TW5] Getting 5.1.8 ready for release

2015-03-30 Thread Duarte Farrajota Ramos




 I think the phrasing is confusing and would welcome suggestions for 
 alternatives. Perhaps Export sequence of tiddlers as static HTML?

 Best wishes

 Jeremy

  Yes Export sequence of tiddlers as static HTML sounds about right, I'dd 
also like Export current tiddler(s) as static HTML .
An option to export only all visible tiddlers would be very desirable 
though, if made available from the page tools.

Thanks for the help, and sorry for all the noise.

-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: New search behaviour demo

2015-03-30 Thread Duarte Farrajota Ramos
I actually thought about it before, it would be nice if search results were 
just another sidebar tab instead of blocking them.
Great UI idea, I love it. Definitely wanna see it included as core aswell. 
:)



On Sunday, 29 March 2015 00:11:31 UTC, Felix Küppers wrote:

 Hi Everybody,

 There is a new way of searching currently discussed at 
 https://github.com/Jermolene/TiddlyWiki5/issues/1066.

 Please see the demo:

 http://spangenhelm.tiddlyspot.com/

- Searching does not hide default tabs
- Search tab is not visible per default
- If search is started, tw will change to the search tab and backup 
the old tab
- if search is empty, the old tab (if existed) is restored and search 
tab is hidden

 -Felix


-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: tc-vertical not working

2015-03-30 Thread Ed
Hi Eric, Felix  Richard (alphabetical order)

Back again and have been trying to sort out things, it seem to boil down to 
this.
(This was done on a freshly installed computer with Windows Vista Bussiness 
with the latest Firefox.)

*1. Horizontal Tabs*
1.1. If you are making horizontal tabs in a tiddler and if you use a 
tiddler with a PDF, located in a subdirectory of TW5-directory) using the 
PDFmacro then all tabs remain grey an none opens, although you defintely 
have specified that in the macro for the tabs.
1.2. If you are using a tiddler with an imported PDF, then the results are 
the same.

*2. What I did*
I have used a simple texttiddler, then a tiddler with an external image and 
a tiddler with {{SomeImage.jpg}}. Then there is no problem if you specify 
one of these types of tiddlers in the macro to be opened. It just works.
Could not test with _canonical_uri as I could not get that tiddler to 
display the local image, but that is another unfortunate story

*Examples used*
tabs [tag[Communication]] SomeImage.jpg
After saving the SomeImage.jpg was open and showing in the horizontal tabs

tabs [tag[Communication]] TextTiddler
Again after saving the TextTiddler was open in the horizontal tabs and 
one could 
read the text that I had typed into it.

With any of the four tiddlers with the PDFMacro embedded PDF: No dice. All 
tabs grey, none open.

So the culprits seem to be the tiddler with the PDF.

*3. Vertical tabs*
That’s a different story.
tabs “[tag[Communication]] “TextTiddler” class=”tc-verical”
Tabs vertical. TextTiddler open. Everything fine.

With tiddler called: SomeImage.jpg
Tabs Vertical. Image NOT open.. When you open any tab and then edit and 
Save the tiddler it then opens with this last opened tab disclosed. No, I 
am not making this up.

With such the feared PDF tiddler.
No vertical tabs, No tabs open. 

*4. Higher Level Tiddler inder the ToC*
The tiddler “Communication” has the tag “ProjectName”. This last tiddler is 
the top of the TableOfContents
This tiddler is leading a life of its own
tabs “[tag[ProjectName]] “Proposals”
When saved and previously the tab “Communication” was open then the choosen 
default tab “Proposals” is ignored and it opens with, yes, Communications.
Milage: about 8 hours, all together. Sigh.
Tired! Salut! Ed.

Op zondag 29 maart 2015 23:06:33 UTC+2 schreef Ed:

 Hi Eric,

 Please see my reaction to the post from Richard below.
 Still clueless, I'm afraid

 Salut! Ed.


 Op zaterdag 28 maart 2015 19:56:17 UTC+1 schreef Eric Shulman:

 On Saturday, March 28, 2015 at 10:43:35 AM UTC-7, Ed wrote:

 Another strange thing happended by the way; all of a sudden there is 
 tiddler called *--1202157337* (without the  
 of course. And the text of the tiddler is, you guessed it already, 
 *20150326b-AntwOverlapDeadLine*.
 Double-Huh!? It appeared out of thin air, autogenerated. so to say.


 That is most likely the result of using tabs to display the content.  To 
 track which tab is currently open, the tabs macro stores the title of 
 the tiddler shown that tab into a state tiddler.  To uniquely identify 
 which tabset is being tracked, a qualifier number is generated (based on 
 the location of the tabset in the parse tree) and appended to the state 
 tracking tiddler's name.  Generally, the state tiddler has a name like 
 $:/state/tab--1231231231.  However, on the tiddler you found in your 
 document, there is no $:/state/tab prefix, and that seems quite odd.

 one thought: perhaps that state tiddler is not being generated from the 
 tabs macro.. but from Tobi's PDFMacro

 Hope this provides some clues for where to look

 enjoy,
 -e
 Eric Shulman
 TiddlyTools / ELS Design Studios

 Inside TiddlyWiki: The Missing Manual

 https://www.indiegogo.com/projects/inside-tiddlywiki-the-missing-manual/x/8816263
 Note: the IndieGogo funding campaign has ended,
 but direct fundraising continues below...

 YOUR DONATIONS ARE VERY IMPORTANT!
 HELP ME TO HELP YOU - MAKE A CONTRIBUTION TO MY TIP JAR...
http://TiddlyTools.github.com/fundraising.html#MakeADonation

 Professional TiddlyWiki Consulting Services...
 Analysis, Design, and Custom Solutions:
http://www.TiddlyTools.com/#Contact



-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Calendar plugin

2015-03-30 Thread Jed Carty
cmari,

Thanks for pointing out the bug, it should be fixed now. Using non-numeric 
values for February and March of this year only worked because they 
happened to both start on Sunday, otherwise it was broken.

RickL,

I am not really sure what I was thinking when I made that macro. It is very 
poorly done. You need to have a field with a name in the form 
(day)-(month)-(year) that matches the calendar date for the tiddler to show 
up in the calendar. Also the tiddler with the calendar has to have a field 
called year with the year in it, and a field called month with the month in 
it.
Like I said, it is poorly put together. I am not sure why I made it like 
that.
Even with that though, due to my lack of testing with that macro, clicking 
on the dates won't open the tiddlers like it is supposed to because of how 
action widgets are handled in 5.1.7 compared to how they will work in 5.1.8.

Now that I am thinking about it I will throw together something that 
hopefully works better.

-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] [tw5] Odd text concatenating behavior

2015-03-30 Thread 'c pa' via TiddlyWiki
I'm doing something wrong here but can't figure out what. 

1. I have a json Tiddler with a list of items in it

{
01: Item2,
02: Item1,
03: Item3,
04: Item4
}
2. I want to retrieve the index so I use $list

$list filter=[[jsonlist]indexes[]]

3. Then I want to retrieve the values of the index so I use a macro

\define getvalue() $view tiddler=jsonlist index=currentTiddler /

4. Then I want to concatenate another string with that string 

\define concatitems(one:  , two:  ) $one$$two$

5. Then I want to display a link to a tiddler with that name

$list filter=[[jsonlist]indexes[]]
$set name=temp1 value=getvalue 
$set name=temp2 value=concatitems GetThis $(temp1)$  

temp2br/

/$set
/$set
/$list

Results: Bizarrely if the first string is a tiddlylink itself then the display 
doesn't concatenate the two strings. 
Instead the first string is a link and the second just sits there

Here's the example: http://cpashow.tiddlyspot.com/#concat_error

-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [off topic] Why English sucks as the language for international and scientific communication

2015-03-30 Thread iain
An interesting but ultimately not very convincing argument especially 
considering that there are no alternatives recommended. Of course languages 
are not all that great for international or scientific communication 
because they are designed to work locally within the community rather then 
globally. I can think of Japanese with its three alphabets of characters; 
or German where you have to wait for 5 min before the verb arrives to tell 
you whether you house is on fire now or last year...and so on. As for 
ambiguities, one might note that that is what punctuation is for - removing 
the ambiguities or perhaps leaving them in. Pronunciation seems to be a 
universal problem whether in English or any other language(I have had a 
Tokyo based Japanese interpreter tell me she cannot understand the accent 
for someone from the south). So I think these are universal problems rather 
than English problems.

But that is different from the hegemony of English over pretty much 
everything (and worse it is American English as well) which Jeremy 
mentioned. I am glad TW is keen to been more international because if it 
pisses me off that everything seems to be in American English bit must be 
much worse for the non-English speakers.

Iain  

On Monday, 30 March 2015 22:56:55 UTC+11, Jeremy Ruston wrote:

 http://www.madore.org/~david/weblog/d.2015-03-20.2284.html


 -- 
 Jeremy Ruston
 mailto:jeremy...@gmail.com javascript:
  

-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [tw5] Odd text concatenating behavior

2015-03-30 Thread Jed Carty
I don't know of anyway to get around this problem, it looks like the view 
widget is doing strange things when it is getting parsed. The good news is 
that if you can upgrade to 5.1.8 when it comes out what you are trying to 
do becomes much easier.
If you go to http://tiddlywiki.com/prerelease/ and import your jsonlist 
tiddler, then make a tiddler with this in it:

$list filter=[[jsonlist]indexes[]]
$list filter=[[jsonlist]getindexcurrentTiddler]+[addprefix[GetThis]]

$view field='title'/
/$list
/$list

It will do what you want it to.

If your example is different from what you are hoping to do this may not be 
helpful, but if you can wait until the next version is released it will 
work.

Sorry if this wasn't helpful, I may not have actually answered your 
question.

-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] [off topic] Why English sucks as the language for international and scientific communication

2015-03-30 Thread Alex Hough
Thankfully we now have hypertext, ambiguities in a text can be ironed out
by authors. Multi user wikis can help insert discussion into a text.
Hypertext, and the written English language is the way forward for
scientific communication.


Alex

On Tuesday, 31 March 2015, iain i...@jcis.net.au wrote:

 An interesting but ultimately not very convincing argument especially
 considering that there are no alternatives recommended. Of course languages
 are not all that great for international or scientific communication
 because they are designed to work locally within the community rather then
 globally. I can think of Japanese with its three alphabets of characters;
 or German where you have to wait for 5 min before the verb arrives to tell
 you whether you house is on fire now or last year...and so on. As for
 ambiguities, one might note that that is what punctuation is for - removing
 the ambiguities or perhaps leaving them in. Pronunciation seems to be a
 universal problem whether in English or any other language(I have had a
 Tokyo based Japanese interpreter tell me she cannot understand the accent
 for someone from the south). So I think these are universal problems rather
 than English problems.

 But that is different from the hegemony of English over pretty much
 everything (and worse it is American English as well) which Jeremy
 mentioned. I am glad TW is keen to been more international because if it
 pisses me off that everything seems to be in American English bit must be
 much worse for the non-English speakers.

 Iain

 On Monday, 30 March 2015 22:56:55 UTC+11, Jeremy Ruston wrote:

 http://www.madore.org/~david/weblog/d.2015-03-20.2284.html


 --
 Jeremy Ruston
 mailto:jeremy...@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 tiddlywiki+unsubscr...@googlegroups.com
 javascript:_e(%7B%7D,'cvml','tiddlywiki%2bunsubscr...@googlegroups.com');
 .
 To post to this group, send email to tiddlywiki@googlegroups.com
 javascript:_e(%7B%7D,'cvml','tiddlywiki@googlegroups.com');.
 Visit this group at http://groups.google.com/group/tiddlywiki.
 For more options, visit https://groups.google.com/d/optout.


-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Calendar plugin

2015-03-30 Thread Jed Carty
Ok, the default macro now lists any tiddlers that have the fields month, 
day and year that match the date on the calendar instead of what I had 
before. The reason I used the whole string before is because you could want 
the same tiddler listed in multiple dates, which you can't do using this 
new default macro. So the old macro has been renamed to 
CalendarListDailyThingsOld.

The updated version should be here 
http://inmysocks.tiddlyspot.com/#Calendar%20Plugin, hopefully the macro 
actually works now.

-- 
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@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.