[tw] Re: [TW5] Best handling of sorting section numbers?

2015-03-29 Thread Michael Wiktowy
Sort answer, efficiency.

I didn't want to manually add a second field that I didn't need since I had 
already split each section into separate subdocuments and only needed to 
sort on the subsection. So I just added a subsection field as you were 
suggesting. With Richard's handy button tool to add section/subsection 
fields, I may go back and add both to give me more ordering flexibility in 
the future.

On Sunday, March 29, 2015 at 4:28:36 AM UTC-4, Stephan Hradek wrote:

 When you already have an order field, why not add a suborder field? 
 Instead of puttong 1.10 into order put 1 into order and 10 into 
 suborder.


-- 
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] Best handling of sorting section numbers?

2015-03-29 Thread Michael Wiktowy
Thank you Richard,

Thanks for the match filter plugin pointer. Your example helps a great deal 
also.

I had been adding subsection order fields manually on section creation 
which adds a whole lot of clicking and scrolling for each ... which adds up 
when you are doing this hundreds of times.

It would be great if the sort filter was a little bit smarter and allowed a 
regexp filter to be nested in it to extract out the parts you want to sort 
on so helper-fields aren't needed. The semi-automated method you provide 
will help a lot in the meanwhile.

Thanks!
/Mike

On Sunday, March 29, 2015 at 6:30:20 AM UTC-4, Richard Smith wrote:

 Hi Michael,

 There is a widget here http://eucaly-tw5.tiddlyspot.com/ called match 
 filter that lets you extract pieces of fields. At first I thought I could 
 use it to solve your problem but once you've extracted the pieces and 
 sorted them, there's no way to relate them to the original tiddler-titles 
 they were extracted from.

 The best I could think of was that you could use it to set the chapter and 
 subchapter fields automatically. I made an example here 
 https://dl.dropboxusercontent.com/u/83055414/tiddlywiki%20%288%29.html

 At the moment you have to click a button to set the fields for each 
 tiddler but I think Jed can show us how to do it all with a single click in 
 5.1.8.

 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.


[tw] Re: Losing focus after first key input but ok after that

2015-03-29 Thread James Mars
Hi,

Jed, I had a look at your example, but I am not sure that it is relevant to 
my case. Below is the code that am having problems with. It is a tiddler 
that creates a new lexeme entry.

\define def_tags() $(oldtags)$ $(newtags)$
\define def_text() $(newtext)$ $(oldtext)$
\define main(skeleton:$:/_skl/lexeme,table:$:/_tbl/lexeme)
$set name=oldtags value={{$skeleton$!!tags}}
$set name=oldtext value={{$skeleton$!!text}}
$transclude tiddler=$table$ mode=block/

$set name=antonym value={{!!antonym}}
$set name=category value={{!!category}}
$set name=language value={{!!language}}
$set name=title value={{!!newtitle}}
$set name=synonym value={{!!synonym}}
$set name=newtags value={{!!tags}}
$set name=newtext value={{!!text}}
$set name=tags value=def_tags
$set name=text value=def_text
$button
$action-setfield antonym= category= language= newtitle= synonym= 
tags= text=/
$action-setfield $tiddler=$skeleton$ $field=title 
$value=title/$action-setfield $tiddler=title antonym=antonym 
category=category language=language synonym=synonym 
tags=tags text=text/
$action-navigate $to=title/
Create/$button
/$set/$set/$set/$set/$set/$set/$set/$set/$set/$set/$set
\end
$tiddler tiddler=$:/temp/new/lexememain/$tiddler

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to 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] Best handling of sorting section numbers?

2015-03-29 Thread Stephan Hradek
When you already have an order field, why not add a suborder field? Instead 
of puttong 1.10 into order put 1 into order and 10 into suborder.

-- 
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: Losing focus after first key input but ok after that

2015-03-29 Thread James Mars
Hi Jed,

Thanks again.. You were right, I had to move the transcluded tidder outside 
the main macro, more specifically I had to move it out of the $tiddler 
widget.

It's all working now.

Thank you.

James.

On Sunday, 29 March 2015 17:24:37 UTC+11, Jed Carty wrote:

 Assuming that the actual text editing part is inside $transclude 
 tiddler=$table$ mode=block/, than the problem is probably that 
 whatever you are editing changes the value of oldtags or oldtext, if you 
 can you should put the transclude outside of the set widgets, if you can't 
 than how you would fix it depends on what is in the transcluded tiddler.


-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to 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] creating new tiddlers silently?

2015-03-29 Thread Richard Smith
Hi Jed,

Thanks from me also for the explanation. I wasn't paying attention when I 
tried it - sorry James.

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.


[tw] Re: New search behaviour demo

2015-03-29 Thread PMario
On Sunday, March 29, 2015 at 3:15:35 PM UTC+2, Felix Küppers wrote:

 +1 for including this as a core feature. Or at least as an official plugin.


 Yes. and I also strongly promote the context search to become a core 
 thingy, it is like the google search for tw.


I think the core should have the basic functions. So there is space for 
different advanced search plugins. .. 

+1 to add these functions to a plugin

-m

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@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: New search behaviour demo

2015-03-29 Thread Felix Küppers

 +1 to add these functions to a plugin

Adding the context search as an official plugin is fine too, especially
with 5.1.8 and the new plugin mechanism.

-- 
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: Losing focus after first key input but ok after that

2015-03-29 Thread Jed Carty
Assuming that the actual text editing part is inside $transclude 
tiddler=$table$ mode=block/, than the problem is probably that 
whatever you are editing changes the value of oldtags or oldtext, if you 
can you should put the transclude outside of the set widgets, if you can't 
than how you would fix it depends on what is in the transcluded tiddler.

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to 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-29 Thread Felix Küppers


 +1 for including this as a core feature. Or at least as an official plugin.


Yes. and I also strongly promote the context search to become a core 
thingy, it is like the google search for tw.

-- 
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-29 Thread Felix Küppers
I now updated the code and put a demo (that is an exact copy of 
@Spangenhelm's original demo) with the bugfix here: 
http://wkpr.de/hosting/tmp/searchdemo/tw.html

Once @Spangenhelm merged the bugfixed macro, the official demo remains: 
http://spangenhelm.tiddlyspot.com

-Felix

On Sunday, March 29, 2015 at 3:13:35 PM UTC+2, Felix Küppers wrote:

 Servus Mario

 There is a JavaScript error if you open this tiddler:  
 http://spangenhelm.tiddlyspot.com/#%24%3A%2Fcore%2Fui%2FSideBarLists 
 http://www.google.com/url?q=http%3A%2F%2Fspangenhelm.tiddlyspot.com%2F%23%2524%253A%252Fcore%252Fui%252FSideBarListssa=Dsntz=1usg=AFQjCNH1hGu4ydjkxFwMH2eYADqifIsvSw
 FF 36.0.4, 38.0a2, cromium Version 40.0.2186.0 - windows 8.1

 -m


 I added this error to prevent people from messing with the demo-code. :)

 - I will fix it.


-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from it, send an 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-29 Thread Felix Küppers
Servus Mario

There is a JavaScript error if you open this tiddler:  
 http://spangenhelm.tiddlyspot.com/#%24%3A%2Fcore%2Fui%2FSideBarLists
 FF 36.0.4, 38.0a2, cromium Version 40.0.2186.0 - windows 8.1

 -m


I added this error to prevent people from messing with the demo-code. :)

- I will fix it.

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from it, send an 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] Best handling of sorting section numbers?

2015-03-29 Thread Richard Smith
Hi Michael,

There is a widget here http://eucaly-tw5.tiddlyspot.com/ called match 
filter that lets you extract pieces of fields. At first I thought I could 
use it to solve your problem but once you've extracted the pieces and 
sorted them, there's no way to relate them to the original tiddler-titles 
they were extracted from.

The best I could think of was that you could use it to set the chapter and 
subchapter fields automatically. I made an example 
here https://dl.dropboxusercontent.com/u/83055414/tiddlywiki%20%288%29.html

At the moment you have to click a button to set the fields for each tiddler 
but I think Jed can show us how to do it all with a single click in 5.1.8.

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.


[tw] New search behaviour demo

2015-03-29 Thread Danielo Rodríguez
Lovely, marvelous, awesome, perfect. And the best is that it uses one of my 
plugins 

+1 for including this as a core feature. Or at least as an official plugin.

-- 
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-29 Thread PMario
There is a JavaScript error if you open this tiddler:  
http://spangenhelm.tiddlyspot.com/#%24%3A%2Fcore%2Fui%2FSideBarLists
FF 36.0.4, 38.0a2, cromium Version 40.0.2186.0 - windows 8.1

-m

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@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-29 Thread 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.


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

2015-03-29 Thread Ed
*Hi Eric, Hi Richard,*

*Big Thanks, guys* for trying to maken sense of my problem.
If, for the moment, people of your calibre can't solve the 
problem, then certainly I can't make head or tails of it.

 If I was you, I'd make a test tiddler with a very simple name and content 
and try to set that as the default to begin with.

*Sound advice.* That is exactly what I did to start with. I really started 
from scratch with the example Jeremy gave at TW.com
But when I am at work next week, I'll start all over again as I am there 
not pestered by the annoying download pop-up screens.

Richard, what exactly the state tiddler does/signifies, escapes me still 
at the moment, that is for now beyond my level of understanding.
(BTW, I think it was from studying your site, that I learned the sort and 
!sort function, used inside a list or tab ... *Great!!*)

I had wanted to showcase my work proposals (PDFs) and connected email 
(PDFs) at work as a way to get people into contact with TW5. 
We still rather foolishly keep sending interoffice email and everybode 
sometimes succumbs to the amount and searching the inbox
is a quite a hassle. The TW5 interface is a delight. Well for the moment I 
can only stick al the PDFs in one file a mile long, rather 
uncomfortable reading at one's computerscreen.

Salut! Edm.


Op zondag 29 maart 2015 05:03:45 UTC+2 schreef Richard Smith:

 Hi,

 I suspect you have something like this - note the space between the quotes

 tabs [tag[About]] tc-vertical 

 This namesas the tiddler in which state should be stored and so you 
 get your *--1202157337 *when the qualifier is added.

 The issue with pdfs not being displayed inline on your G4 is, I think, a 
 browser issue - t might be that the browser can't render them inline or 
 that in needs to be enabled (I suspect the former)

 The tab not being set correctly to begin with could be related to the 
 issue above or a conflict between different nestings of the tabs macro, 
 which you should also be able to fix by setting a name for the state 
 tiddler. If I was you, I'd make a test tiddler with a very simple name and 
 content and try to set that as the default to begin with.

 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] [TW5] Constant messages from discarded drafts

2015-03-29 Thread Stefan Szekeres
I'm experiencing this error also, (running from node.js) can we edit 
something to remove this alert ?

On Sunday, 29 March 2015 11:06:38 UTC+3, Mark Brown wrote:

 Also been experiencing this in 5.1.7 soon after installing the node js 
 edition on a vps

 Also get the errors on page load. In case the errors are informative a 
 screen shot is attached

 I've been playing with having new tiddlers created by setting the title 
 field of a template tid to a new unique title. Could this be the reason? 


 On Sunday, 15 March 2015 08:58:16 UTC+11, Nicola Worthington wrote:



 On Thursday, 12 March 2015 20:13:24 UTC, Jeremy Ruston wrote:

  Is there a way to just disable drafts altogether?

 Not really, the draft mechanism is deeply tied into the editing and 
 navigation mechanism. But I think that would be treating the symptom; 
 drafts are just ordinary tiddlers, and what we appear to have here is a 
 problem that may impact data integrity for any tiddler.

 I've spent some time again trying to duplicate this problem. I've 
 managed to trigger the same error once, but not been able to duplicate it 
 since. I'd really appreciate some help with reproducing it.


 I'm seeing this quite frequently as well. I think it might be happening 
 when I have more than one browser window open to my TW at a time. (Although 
 I'm not editing in both at the same time).

 This is just a hunch though.

 I'll try and work out when it's happening and report back with what I 
 find out. 



-- 
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] Constant messages from discarded drafts

2015-03-29 Thread Stefan Szekeres
Done, just created the two missing files (the drafts) manually in the 
folder then rebooted the server. Don't really know if the creation was 
necessary but the alerts are gone. 

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 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] Constant messages from discarded drafts

2015-03-29 Thread Stefan Szekeres
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)


Now i get this in node.js, not sure why ?

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 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] Constant messages from discarded drafts

2015-03-29 Thread Stefan Szekeres
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 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.