[tw] Using TW in-house, securely, with multiple users

2015-07-09 Thread wkowalski
Hello:
I am looking for a good wiki solution for my workplace.  TW is appealing 
for many reasons, but I have some questions about sharing among multiple 
users.  Firstly, we work with extremely sensitive material and so Dropbox 
or any other cloud-based storage is entirely out of the question, as is 
password protection.  Does TW allow for some kind of hosting on an in-house 
server, and if so what would that look like?  Or would we really have to 
simply email the latest version to each other?

Secondly, when one updates or adds an entry and saves it, what exactly is 
being downloaded?  Is there any kind of data exchange with a central server 
somewhere?  I confess this part of it seems counter-intuitive to me, 
because it looks to me like some kind of overwrite is taking place. 

Thanks in advance.

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/afd24ef2-6275-4a12-ade8-7cd5e7eca9f7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: [TW5] Is there a way to import multiple tiddlers from a single file?

2015-07-09 Thread stevesuny

Reviving an old thread. Am again interested in importing CSV as separate 
tiddlers.

I use google sheets to generate CSV.

I'd like to use http://www.convertcsv.com/csv-to-json.htm to create json, 
but none of the output formats work - when I use the import, the json file 
doesn't return any tiddlers available for import.

Anyone have suggestions or experience with this? Or, alternatives?

Thanks,

//steve.


On Friday, April 24, 2015 at 11:15:16 AM UTC-4, Jeremy Ruston wrote:

 Hi Steve

 You'll probably have seen the current built-in support for CSV files in 
 TW5: dragging or importing a file results in a single tiddler containing 
 the entire CSV file. There's a special parser for text/csv tiddlers so that 
 the content gets displayed as a nicely formatted HTML table.

 The approach I favour for making the CSV importing more flexible is 
 actually to add facilities for accessing and manipulating the content of 
 CSV tiddlers, rather than extending the import process itself. I like the 
 idea of maintaining CSV as a native format, not just an import format - we 
 could integrate a JavaScript spreadsheet engine like SocialCalc (see 
 http://tiddlywiki.com/rboue's%20plugins%20for%20TiddlyWiki)/

 Adding basic support for referencing rows and cells in CSV tiddlers would 
 be fairly straightforward - it would largely mirror the existing 
 implementation for access to property indexes within data tiddlers (aka 
 JSON tiddlers). I'd be happy to guide anyone interested in working on a 
 pull request.

 Best wishes

 Jeremy.


 On Fri, Apr 24, 2015 at 3:01 PM, stevesuny stev...@gmail.com 
 javascript: wrote:

 Of course, writing out the problems leads to its solution (at least 
 partially).

 I've discovered that, as promised above, a properly formatted json file, 
 as:

 [
 {title:Tiddler1,text:This is the text of tiddler 
 1,tags:Tag1 Tag2 [[Tag 3]]},
 {title:Tiddler2,text:This is the text of tiddler 2, with a 
 link to [[Tiddler1]],tags:Tag1 Tag4}
 ]

 saved as, for example, tiddlers.json

 can then be imported using the native import in TW5, and then click on 
 import, and all tiddlers get created.


 I'm now working on generating json files from spreadsheet. Here is a link 
 for a script for google sheets:


 http://blog.pamelafox.org/2013/06/exporting-google-spreadsheet-as-json.html

 It looks reasonable, and I'll work on it today. 

 As always, once discovered, it seems straightforward. Thanks, Jeremy, for 
 the file structure that you put in a few years ago which got me headed in 
 the right direction.

 //steve.


 On Friday, April 24, 2015 at 9:53:43 AM UTC-4, Måns wrote:

 +1

 My workflow has been to import csv file to TWc via Eric's 
 CreateTiddlersFromCsv and then drop the TWc on a TW5 to import all tiddlers 
 at once.
 The tedious part is then to click/accept to convert every imported 
 tiddler from TW classic format to a TW5 format.
 It is tedious when you have 300+ tiddlers to convert. I guess it should 
 be ok with a few tiddlers...

 There is an online csv to JSON converter here: 
 http://www.convertcsv.com/csv-to-json.htm I haven't tried it out yet...

 If you drag a correctly formated JSON file on to a TW5 it should 
 generate tiddlers - again I haven't tried it out.

 Good luck - and please tell how it goes.

 Cheers Måns Mårtensson
  

 Den fredag den 24. april 2015 kl. 15.41.55 UTC+2 skrev stevesuny:

 Resurrecting an old thread, yet again...I have the same challenge (a 
 spreadsheet file where each line becomes a tiddler, with separate column 
 for title, text, tags, etc.. I need to help students import a large number 
 of tiddlers (5 to 200 or more) that they create through spreadsheet 
 manipulation. In TWClassic on tiddlyspace, we use the Tiddlytools plugin 
 http://tiddlytools.com/#CreateTiddlersFromCSV. 

 As I contemplate moving classes from TWClassic to TW5, I need to 
 replicate that functionality, for non-technical users. The responses above 
 reference scripts etc. that are beyond my expertise, and certainly that of 
 my students.

 How do to this in TW5. Maybe I just don't know how to run the load-file 
 command?

 Thanks!

 //steve.


 On Saturday, November 9, 2013 at 4:56:36 PM UTC-5, Arkady Grudzinsky 
 wrote:

 I have a text file where each line is a list item.  I would like to 
 import this file in my TW5 and create a separate tiddler for each line.  
 I 
 also would like to specify tags and some fields for each tiddler.

 .tid files do not allow multiple tiddlers in one file.

 I thought, HTML would work with something like this
 div title=Tiddler 1 tags=task start=201311080800 
 priority=5Tiddler 1 text/div
 div title=Tiddler 2 tags=task start=201311080800 
 priority=6Tiddler 2 text/div
 etc.

 But it did not work.  I get one tiddler with type=text/html with 
 file name as a title and this HTML code inside.

 I could, of course, create a Perl or an awk script to produce one .tid 
 file per line, but it seems like too much effort.

 Any suggestions?

  -- 

[tw] Capitalisation of tiddler links

2015-07-09 Thread Leopold Bloom
Hi all

I have been trying out TiddlyWiki. It creates separated tiddlers based on 
the capitalisation of links in wikitext. Is there a way to avoid creating 
separate tiddlers for capitalised and non-capitalised links? 

If I have a tiddler called *Grammar* and then I put something like [[
*grammar*]] I want it to refer to same link as [[*Grammar*]]; it creates 
different link based on the capitalisation. I want lowercase *grammar* to 
link to the uppercase on or vice versa. I want internal links to be 
capitalisation blind, is there a setting I can turn off?

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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/4306fb79-9e9e-4923-9986-9804c8db8269%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: [TW5] Is there a way to import multiple tiddlers from a single file?

2015-07-09 Thread Jeremy Ruston
Hi Steve

Funnily enough, I've been working with some CSV files in my dayjob. I've
got a very noddy little Node.js script that converts CSV files into JSON
files. It's not very polished - eg one has to edit the JS source to tell it
which columns to use.

But, if you're comfortable with Node.js it might make a good starting
point. If you're interested I can post it to GitHub.

Best wishes

Jeremy.


On Thu, Jul 9, 2015 at 4:18 PM, stevesuny steves...@gmail.com wrote:


 Reviving an old thread. Am again interested in importing CSV as separate
 tiddlers.

 I use google sheets to generate CSV.

 I'd like to use http://www.convertcsv.com/csv-to-json.htm to create json,
 but none of the output formats work - when I use the import, the json file
 doesn't return any tiddlers available for import.

 Anyone have suggestions or experience with this? Or, alternatives?

 Thanks,

 //steve.


 On Friday, April 24, 2015 at 11:15:16 AM UTC-4, Jeremy Ruston wrote:

 Hi Steve

 You'll probably have seen the current built-in support for CSV files in
 TW5: dragging or importing a file results in a single tiddler containing
 the entire CSV file. There's a special parser for text/csv tiddlers so that
 the content gets displayed as a nicely formatted HTML table.

 The approach I favour for making the CSV importing more flexible is
 actually to add facilities for accessing and manipulating the content of
 CSV tiddlers, rather than extending the import process itself. I like the
 idea of maintaining CSV as a native format, not just an import format - we
 could integrate a JavaScript spreadsheet engine like SocialCalc (see
 http://tiddlywiki.com/rboue's%20plugins%20for%20TiddlyWiki)/

 Adding basic support for referencing rows and cells in CSV tiddlers would
 be fairly straightforward - it would largely mirror the existing
 implementation for access to property indexes within data tiddlers (aka
 JSON tiddlers). I'd be happy to guide anyone interested in working on a
 pull request.

 Best wishes

 Jeremy.


 On Fri, Apr 24, 2015 at 3:01 PM, stevesuny stev...@gmail.com wrote:

 Of course, writing out the problems leads to its solution (at least
 partially).

 I've discovered that, as promised above, a properly formatted json file,
 as:

 [
 {title:Tiddler1,text:This is the text of tiddler
 1,tags:Tag1 Tag2 [[Tag 3]]},
 {title:Tiddler2,text:This is the text of tiddler 2, with a
 link to [[Tiddler1]],tags:Tag1 Tag4}
 ]

 saved as, for example, tiddlers.json

 can then be imported using the native import in TW5, and then click on
 import, and all tiddlers get created.


 I'm now working on generating json files from spreadsheet. Here is a
 link for a script for google sheets:


 http://blog.pamelafox.org/2013/06/exporting-google-spreadsheet-as-json.html

 It looks reasonable, and I'll work on it today.

 As always, once discovered, it seems straightforward. Thanks, Jeremy,
 for the file structure that you put in a few years ago which got me headed
 in the right direction.

 //steve.


 On Friday, April 24, 2015 at 9:53:43 AM UTC-4, Måns wrote:

 +1

 My workflow has been to import csv file to TWc via Eric's
 CreateTiddlersFromCsv and then drop the TWc on a TW5 to import all tiddlers
 at once.
 The tedious part is then to click/accept to convert every imported
 tiddler from TW classic format to a TW5 format.
 It is tedious when you have 300+ tiddlers to convert. I guess it should
 be ok with a few tiddlers...

 There is an online csv to JSON converter here:
 http://www.convertcsv.com/csv-to-json.htm I haven't tried it out yet...

 If you drag a correctly formated JSON file on to a TW5 it should
 generate tiddlers - again I haven't tried it out.

 Good luck - and please tell how it goes.

 Cheers Måns Mårtensson


 Den fredag den 24. april 2015 kl. 15.41.55 UTC+2 skrev stevesuny:

 Resurrecting an old thread, yet again...I have the same challenge (a
 spreadsheet file where each line becomes a tiddler, with separate column
 for title, text, tags, etc.. I need to help students import a large number
 of tiddlers (5 to 200 or more) that they create through spreadsheet
 manipulation. In TWClassic on tiddlyspace, we use the Tiddlytools plugin
 http://tiddlytools.com/#CreateTiddlersFromCSV.

 As I contemplate moving classes from TWClassic to TW5, I need to
 replicate that functionality, for non-technical users. The responses above
 reference scripts etc. that are beyond my expertise, and certainly that of
 my students.

 How do to this in TW5. Maybe I just don't know how to run the
 load-file command?

 Thanks!

 //steve.


 On Saturday, November 9, 2013 at 4:56:36 PM UTC-5, Arkady Grudzinsky
 wrote:

 I have a text file where each line is a list item.  I would like to
 import this file in my TW5 and create a separate tiddler for each line.  
 I
 also would like to specify tags and some fields for each tiddler.

 .tid files do not allow multiple tiddlers in one file.

 I thought, HTML would work with something like this
 div 

[tw] Re: Using TW in-house, securely, with multiple users

2015-07-09 Thread Danielo Rodríguez
There are some Server-Side solutions
* Node JS edition. Very weak in terms of security and multi user usage
* There is another server side solution, based on python, but I allways 
forget it's name. It requires a specific plugin installed on tiddlywiki. 
I'm not sure about multi user usage.
* There are many plugins to connect to different backends. You can for 
example use the couch adaptor to connect your wiki to a couch database, and 
even host the wiki on the couch database.

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/29150aa1-38d8-48fa-8393-9822f6c3507e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Youtube annotations

2015-07-09 Thread Felix Küppers
Hi,

today I quickly wanted to go over the topics of the past 3-4 hangouts and 
discovered that there are no youtube annotations anymore :(

I really liked the annotations below the video to quickly jump to the 
topics in the video-timeline. I don't know who was so kind to create these 
annotations in the past but if annotations also exist for the hangouts in 
the recent past, would it be possible to add them to the videos as well?

Many thanks,
-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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/396ae5f0-32f8-442f-8fb8-41f82e38749e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] [TW5] Error in executing tiddlydesktop on ubuntu 15

2015-07-09 Thread Sivaram L
Hi Jeremy,

My issue is coming after I fixed the problem described in the ticket, I 
have another machine with linux mint, where I don't see a issue. issue May 
be due to some dependency. 

Regards,
Sivaram

On Tuesday, June 30, 2015 at 10:54:01 PM UTC+5:30, Jeremy Ruston wrote:

 Hi Sivaram

 Sorry for the late reply.

 It sounds like the same problem as this ticket:

 https://github.com/Jermolene/TiddlyDesktop/issues/53#issuecomment-73359574

 I'm afraid I don't have any experience of Linux, but you may pick up some 
 hints from the discussion there,

 Best wishes

 Jeremy.



 On Sat, Jun 27, 2015 at 2:52 PM, Sivaram L sivara...@gmail.com 
 javascript: wrote:

 Hi, 
 I downloaded and when try to run the tiddly desktop after updating nw 
 for the libudev issue, I am getting the following output on terminal, the 
 application window flashes for one second and crashes. 


 [8108:0627/191632:ERROR:browser_main_loop.cc(162)] Running without the 
 SUID sandbox! See 
 https://code.google.com/p/chromium/wiki/LinuxSUIDSandboxDevelopment for 
 more information on developing with the sandbox on.
 ATTENTION: default value of option force_s3tc_enable overridden by 
 environment.
 [8108:0627/191639:INFO:CONSOLE(1591)] Uncaught TypeError: Cannot read 
 property 'build' of null, source: 
 /home/sivaram/SparkleShare/tiddlydesktop-linux64-0.0.4/tiddlywiki/boot/boot.js
  
 (1591)

 Any Idea, how to get it running.

 Rgds,
 Sivaram

 -- 
 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 javascript:.
 To post to this group, send email to tiddl...@googlegroups.com 
 javascript:.
 Visit this group at http://groups.google.com/group/tiddlywiki.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/tiddlywiki/5d289b85-b84b-4afa-bbcf-eeedd920e62b%40googlegroups.com
  
 https://groups.google.com/d/msgid/tiddlywiki/5d289b85-b84b-4afa-bbcf-eeedd920e62b%40googlegroups.com?utm_medium=emailutm_source=footer
 .
 For more options, visit https://groups.google.com/d/optout.




 -- 
 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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/d01bb0cb-aed3-4872-9ec6-680feb5a4b0a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Youtube annotations

2015-07-09 Thread stevesuny
Does anyone have the code to facilitate retrieving / rendering a youtube 
(or any) video or audio clip in TW? Somethng like 

playclip src=https://www.youtube.com/watch?v=RK7tYOVd0Hs; start=35:03 
stop=end icon=youtube caption=Obama during recent euology in South 
Carolina

This would allow annotation of videos within TW. If we had that macro or 
something similar, we (the SUNY Poly folks) could try building an interface 
to the hangouts...at least to get it started. One of my students has been 
working on a TW implementation of this concept in a master's thesis, and 
this would be an interesting use case.

//steve.

On Thursday, July 9, 2015 at 11:53:25 AM UTC-4, Felix Küppers wrote:

 Hi,

 today I quickly wanted to go over the topics of the past 3-4 hangouts and 
 discovered that there are no youtube annotations anymore :(

 I really liked the annotations below the video to quickly jump to the 
 topics in the video-timeline. I don't know who was so kind to create these 
 annotations in the past but if annotations also exist for the hangouts in 
 the recent past, would it be possible to add them to the videos as well?

 Many thanks,
 -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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/433c7418-53a6-4dd1-af73-08cb75a0b7d8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] [TW5] Where is my imported images

2015-07-09 Thread Sivaram L
Hi Jeremy,

Thanks, 
I got it.

Regards,
Sivaram

On Thursday, July 9, 2015 at 3:43:51 PM UTC+5:30, Jeremy Ruston wrote:

 Hi Sivaram

 Look under the Types tab in the More tab of the sidebar. You should 
 see your images listed under image/jpg or image/png, according to their 
 type.

 Best wishes

 Jeremy.


 On Thu, Jul 9, 2015 at 10:10 AM, Sivaram L sivara...@gmail.com 
 javascript: wrote:

 Hi,

 I am new to Tiddly wiki, I wanted to add images to my tiddler, hence I 
 used drag and drop to import a bunch of images to the wiki. I closed the 
 import tiddler, Now where can I see the list of imported images?

 Sivaram,

  -- 
 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 javascript:.
 To post to this group, send email to tiddl...@googlegroups.com 
 javascript:.
 Visit this group at http://groups.google.com/group/tiddlywiki.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/tiddlywiki/f9255b04-a8b7-482f-894f-b837e54c42d4%40googlegroups.com
  
 https://groups.google.com/d/msgid/tiddlywiki/f9255b04-a8b7-482f-894f-b837e54c42d4%40googlegroups.com?utm_medium=emailutm_source=footer
 .
 For more options, visit https://groups.google.com/d/optout.




 -- 
 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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/f825d588-896d-499f-bb18-fc213f9cc860%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: [TW5] Is there a way to import multiple tiddlers from a single file?

2015-07-09 Thread stevesuny
Thanks, Jermey. I'm not quite to node.js yet. I installed but don't really 
get it. I don't do much at command line.

As for CSV, the tool I'm trying to use 
(http://www.convertcsv.com/csv-to-json.htm) offers these options:

Use this tool to convert CSV data to JSON. There are 4 types of JSON 
conversions: 

   - CSV to JSON - array of JSON structures matching your CSV
   - CSV to Keyed JSON - Structure of JSON with the specified key field as 
   the key value to a structure of the remaining fields 
   - CSV to JSON Array - An array of CSV values where the CSV values are in 
   an array, or [image: New] a structure with column names and data as an 
   array
   - CSV to JSON Column Array - An array of CSV values where each column of 
   values are in an array

Which of these would be best to use to import JSON file?


Thanks!


//steve.





On Thursday, July 9, 2015 at 11:32:25 AM UTC-4, Jeremy Ruston wrote:

 Hi Steve

 Funnily enough, I've been working with some CSV files in my dayjob. I've 
 got a very noddy little Node.js script that converts CSV files into JSON 
 files. It's not very polished - eg one has to edit the JS source to tell it 
 which columns to use.

 But, if you're comfortable with Node.js it might make a good starting 
 point. If you're interested I can post it to GitHub.

 Best wishes

 Jeremy.


 On Thu, Jul 9, 2015 at 4:18 PM, stevesuny stev...@gmail.com javascript:
  wrote:


 Reviving an old thread. Am again interested in importing CSV as separate 
 tiddlers.

 I use google sheets to generate CSV.

 I'd like to use http://www.convertcsv.com/csv-to-json.htm to create 
 json, but none of the output formats work - when I use the import, the json 
 file doesn't return any tiddlers available for import.

 Anyone have suggestions or experience with this? Or, alternatives?

 Thanks,

 //steve.


 On Friday, April 24, 2015 at 11:15:16 AM UTC-4, Jeremy Ruston wrote:

 Hi Steve

 You'll probably have seen the current built-in support for CSV files in 
 TW5: dragging or importing a file results in a single tiddler containing 
 the entire CSV file. There's a special parser for text/csv tiddlers so that 
 the content gets displayed as a nicely formatted HTML table.

 The approach I favour for making the CSV importing more flexible is 
 actually to add facilities for accessing and manipulating the content of 
 CSV tiddlers, rather than extending the import process itself. I like the 
 idea of maintaining CSV as a native format, not just an import format - we 
 could integrate a JavaScript spreadsheet engine like SocialCalc (see 
 http://tiddlywiki.com/rboue's%20plugins%20for%20TiddlyWiki)/

 Adding basic support for referencing rows and cells in CSV tiddlers 
 would be fairly straightforward - it would largely mirror the existing 
 implementation for access to property indexes within data tiddlers (aka 
 JSON tiddlers). I'd be happy to guide anyone interested in working on a 
 pull request.

 Best wishes

 Jeremy.


 On Fri, Apr 24, 2015 at 3:01 PM, stevesuny stev...@gmail.com wrote:

 Of course, writing out the problems leads to its solution (at least 
 partially).

 I've discovered that, as promised above, a properly formatted json 
 file, as:

 [
 {title:Tiddler1,text:This is the text of tiddler 
 1,tags:Tag1 Tag2 [[Tag 3]]},
 {title:Tiddler2,text:This is the text of tiddler 2, with a 
 link to [[Tiddler1]],tags:Tag1 Tag4}
 ]

 saved as, for example, tiddlers.json

 can then be imported using the native import in TW5, and then click 
 on import, and all tiddlers get created.


 I'm now working on generating json files from spreadsheet. Here is a 
 link for a script for google sheets:


 http://blog.pamelafox.org/2013/06/exporting-google-spreadsheet-as-json.html

 It looks reasonable, and I'll work on it today. 

 As always, once discovered, it seems straightforward. Thanks, Jeremy, 
 for the file structure that you put in a few years ago which got me headed 
 in the right direction.

 //steve.


 On Friday, April 24, 2015 at 9:53:43 AM UTC-4, Måns wrote:

 +1

 My workflow has been to import csv file to TWc via Eric's 
 CreateTiddlersFromCsv and then drop the TWc on a TW5 to import all 
 tiddlers 
 at once.
 The tedious part is then to click/accept to convert every imported 
 tiddler from TW classic format to a TW5 format.
 It is tedious when you have 300+ tiddlers to convert. I guess it 
 should be ok with a few tiddlers...

 There is an online csv to JSON converter here: 
 http://www.convertcsv.com/csv-to-json.htm I haven't tried it out 
 yet...

 If you drag a correctly formated JSON file on to a TW5 it should 
 generate tiddlers - again I haven't tried it out.

 Good luck - and please tell how it goes.

 Cheers Måns Mårtensson
  

 Den fredag den 24. april 2015 kl. 15.41.55 UTC+2 skrev stevesuny:

 Resurrecting an old thread, yet again...I have the same challenge (a 
 spreadsheet file where each line becomes a tiddler, with separate column 
 for title, text, tags, etc.. I need 

[tw] Re: [TW5] How to disable automatic wikilinking?

2015-07-09 Thread Christian de la Serna

On Thursday, July 9, 2015 at 6:45:44 PM UTC+8, PMario wrote:

 Hi,  

 Just open this tiddler 
 $:/core/modules/parsers/wikiparser/rules/wikilink.js  in advances search: 
 http://tiddlywiki.com/#%24%3A%2FAdvancedSearch   Shadows  tab

 Edit it. .. There is a warning, that you'll overwrite a system tiddler. 
 ... This is OK
 If you mess something up. just delete this tiddler and the core default 
 will be restored. 

 change the type field from : type: wikirule   to type: wikirule-disabled

 If you want to restore the old behaviour, just delete this tiddler,  so 
 the core will take over again. 


Thanks this worked perfectly! And thank you everyone for helping. 

Is there a way to make this into a global macro? Just curious...
 \rules except wikilink


-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/326537e2-4c4c-4a5c-8639-08cead030d93%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] [TW5] Link to local Word or Excel document

2015-07-09 Thread Bob Flandard
Hello,

Is it possible to put a link in a tiddler to a Word or Excel file (or any 
other application) on my local disk, so that when I click it the file opens 
in the application?

Thanks,

Bob

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/cf3767d7-3cff-4f10-b447-f50b4d825d4c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Capitalisation of tiddler links

2015-07-09 Thread Leopold Bloom
Thanks for the suggestion Jed. I have read this in the WikiText 
documentation http://tiddlywiki.com/#Linking%20in%20WikiText. 

I am currently using DokuWIki and was expecting a similar behaviour: for 
[[grammar police]]
and [[Grammar Police]] it defaults to lower case URLs and will generate 
grammar_police
(or grammar.police or grammar-police depending on settings). 

I sometimes forget whether I created the capitalised or the non-capitalised 
version.
One advantage with the DokuWIki approach 
https://www.dokuwiki.org/wiki:syntax#internal is that I don't have to 
think when I am
linking something using square brackets. Now I create and publish and when 
a link
doesn't look right I would search for it and then edit it back.

On Friday, 10 July 2015 01:20:58 UTC+5:30, Jed Carty wrote:

 There isn't currently a way to make links ignore case like this. You can 
 get around this by using [[grammar|Grammar]] where the part before the pipe 
 (in this case grammar) is what is displayed as the link and the part after 
 the pipe (Grammer) is the title of the tiddler that is linked to. You can 
 use this to put whatever text you want as the link to a tiddler. Creating 
 something that made links ignore case automatically would probably require 
 making a javascript 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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/72e07e05-c7b5-4655-a613-98872fefd3cc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Capitalisation of tiddler links

2015-07-09 Thread Leopold Bloom
This is exactly it. Hope you would find to port this.

Offtopic:

How long would it take to port the TiddlyWiki Classic plugins to TW5?

I have seen orders of magnitude more plugins for the TW Classic than for 
TW5. Is it
that TW5 doesn't have as much developer interest as the classic one? In 
third party
sites I have seen many Classic plugins/customisations but virtually zero 
plugins/themes
for TW5

seen any for 

On Friday, 10 July 2015 01:48:42 UTC+5:30, Eric Shulman wrote:

  

 This particular feature was also requested in TWClassic, for which I wrote 
 this plugin:
http://www.tiddlytools.com/#LooseLinksPlugin

 It adds optional case-folding (ignore case) and space-folding (ignore 
 spaces) to explicitly bracketed links (but not automatic WikiWord links). 
  For example, with LooseLinksPlugin installed and enabled, all of the 
 following are recognized as links to a tiddler named CoreTweaks.

 [[CoreTweaks]], [[coreTweaks]], [[core tweaks]], [[CORE TWEAKS]], [[CoRe 
 TwEaKs]], [[coreTWEAKS]]

 I plan on *eventually* re-writing many of my TiddlyTools Classic plugins 
 for TW5, but I haven't really started on that yet.

 -e



-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/f4c2ff28-8262-48f8-819a-6c89806d9f0b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] [TW5] How to disable automatic wikilinking?

2015-07-09 Thread Christian de la Serna
Hello,

I've been trying to search for ways to disable automatic wikilinking 
CamelCase words in TW5. Searched the group and found a macro but it does 
not seem to work for me. 

\define tw-wikilinks() no

Using TW 5.1.9.

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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/a463fa84-e847-4c20-8213-6773585a9bb0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] How to disable automatic wikilinking?

2015-07-09 Thread Birthe C
The macro you used will only work in the tiddler, you put it in.

If you want to avoid all internal links except for links with square 
brackets, you can edit 
$:/core/modules/parsers/wikiparser/rules/wikilink.js. Open the tiddler and 
edit it deleting the content and removing the field module-type, save the 
tiddler and refresh your TiddlyWiki. If this is not what you are after, you 
will just have to delete that tiddler again.


Birthe


Den torsdag den 9. juli 2015 kl. 10.40.13 UTC+2 skrev Christian de la Serna:

 Hello,

 I've been trying to search for ways to disable automatic wikilinking 
 CamelCase words in TW5. Searched the group and found a macro but it does 
 not seem to work for me. 

 \define tw-wikilinks() no

 Using TW 5.1.9.

 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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/ba29b0ad-af50-41e0-be7c-918f990693be%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] How to disable automatic wikilinking?

2015-07-09 Thread PMario
Hi,  

Just open this tiddler 
$:/core/modules/parsers/wikiparser/rules/wikilink.js  in advances search: 
http://tiddlywiki.com/#%24%3A%2FAdvancedSearch   Shadows  tab

Edit it. .. There is a warning, that you'll overwrite a system tiddler. ... 
This is OK
If you mess something up. just delete this tiddler and the core default 
will be restored. 

change the type field from : type: wikirule   to type: wikirule-disabled

If you want to restore the old behaviour, just delete this tiddler,  so the 
core will take over again. 

hope this helps
mario

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from 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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/564728ee-0395-436e-b223-a9ef7193dfdf%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] How to disable automatic wikilinking?

2015-07-09 Thread Eric Shulman
On Thursday, July 9, 2015 at 1:40:13 AM UTC-7, Christian de la Serna wrote:

 I've been trying to search for ways to disable automatic wikilinking 
 CamelCase words in TW5. Searched the group and found a macro but it does 
 not seem to work for me. 
 \define tw-wikilinks() no
 Using TW 5.1.9.


Some time ago (5.1.5?) the various tw-*** definitions were renamed to 
tv-*** for variable, tc-*** for CSS classes, tm-*** for messages, etc.

In this instance, use tv-wikilinks.

enjoy,
-e
Eric Shulman
ELS Design Studios
TiddlyTools - Small Tools for Big Ideas!
InsideTiddlyWiki: The Missing Manuals

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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/45615fb4-229a-441f-845e-5e1dcaf84365%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] How to disable automatic wikilinking?

2015-07-09 Thread PMario
Hi Christian,

If you want to disable it for just one tiddler, then insert this code into 
the first line. 

\rules except wikilink


-mario

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from 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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/a3fe9c04-34e7-4ee5-9866-51387deccddd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] How to disable automatic wikilinking?

2015-07-09 Thread Eric Shulman
On Thursday, July 9, 2015 at 3:42:38 AM UTC-7, Birthe C wrote:

 The macro you used will only work in the tiddler, you put it in.

 If you want to avoid all internal links except for links with square 
 brackets, you can edit 
 $:/core/modules/parsers/wikiparser/rules/wikilink.js. Open the tiddler and 
 edit it deleting the content and removing the field module-type, save the 
 tiddler and refresh your TiddlyWiki. If this is not what you are after, you 
 will just have to delete that tiddler again.


Note: it is not necessary to delete the tiddler content.  Just change the 
module-type to any unrecognized value (e.g., blank or, as Mario suggested, 
wikirule-disabled) and it will prevent that code from being loaded.

-e

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/b0b98f54-63e9-443e-aaf2-45ea39deacb2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Announcing TiddlyChrome

2015-07-09 Thread Birthe C
Hi Arlien Beiler,

Thank you very much for this!
I have never tried anything like it before. Installation went well using 
your last update. I had  a few crashes before realising how to use the app. 
After that it is working very well for me.


Birthe





-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/6131aaf0-ac6f-4962-8a07-47037be6c63f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] [TW5] Where is my imported images

2015-07-09 Thread Sivaram L
Hi,

I am new to Tiddly wiki, I wanted to add images to my tiddler, hence I used 
drag and drop to import a bunch of images to the wiki. I closed the import 
tiddler, Now where can I see the list of imported images?

Sivaram,

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/f9255b04-a8b7-482f-894f-b837e54c42d4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Announcing TiddlyChrome

2015-07-09 Thread Arlen Beiler
I just realized that it isn't truncating the file when it writes to it, so
this version fixes that.
-Arlen

On Thu, Jul 9, 2015 at 7:34 AM, Arlen Beiler arlen...@gmail.com wrote:

 One thing I should mention is that this can't open any file you don't
 specify, so it can't save backup files. Maybe TW5 doesn't do that, I don't
 know. I'm pretty sure I can add a feature to create new files in a
 specified folder. Anyway, just thought I'd mention that.
 -Arlen

 On Thu, Jul 9, 2015 at 2:16 AM, Birthe C strikkeglad...@googlemail.com
 wrote:

 Hi Arlien Beiler,

 Thank you very much for this!
 I have never tried anything like it before. Installation went well using
 your last update. I had  a few crashes before realising how to use the app.
 After that it is working very well for me.


 Birthe





  --
 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.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/tiddlywiki/6131aaf0-ac6f-4962-8a07-47037be6c63f%40googlegroups.com
 https://groups.google.com/d/msgid/tiddlywiki/6131aaf0-ac6f-4962-8a07-47037be6c63f%40googlegroups.com?utm_medium=emailutm_source=footer
 .

 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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/CAJ1vdSR%2B8C_HWG3a-%3DArHfJVe%3D9ijU3kA%2BhrLx%3Dbesx-XeXOZA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


App-0.3.crx
Description: application/chrome-extension


Re: [tw] Re: Announcing TiddlyChrome

2015-07-09 Thread Arlen Beiler
One thing I should mention is that this can't open any file you don't
specify, so it can't save backup files. Maybe TW5 doesn't do that, I don't
know. I'm pretty sure I can add a feature to create new files in a
specified folder. Anyway, just thought I'd mention that.
-Arlen

On Thu, Jul 9, 2015 at 2:16 AM, Birthe C strikkeglad...@googlemail.com
wrote:

 Hi Arlien Beiler,

 Thank you very much for this!
 I have never tried anything like it before. Installation went well using
 your last update. I had  a few crashes before realising how to use the app.
 After that it is working very well for me.


 Birthe





  --
 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.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/tiddlywiki/6131aaf0-ac6f-4962-8a07-47037be6c63f%40googlegroups.com
 https://groups.google.com/d/msgid/tiddlywiki/6131aaf0-ac6f-4962-8a07-47037be6c63f%40googlegroups.com?utm_medium=emailutm_source=footer
 .

 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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/CAJ1vdSSyrmGyHwzJH%2BsKoQdgUH%2BNuvvozjBV%3DdbeykPjj%3DrY0A%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] [TW5] Where is my imported images

2015-07-09 Thread Jeremy Ruston
Hi Sivaram

Look under the Types tab in the More tab of the sidebar. You should see
your images listed under image/jpg or image/png, according to their type.

Best wishes

Jeremy.


On Thu, Jul 9, 2015 at 10:10 AM, Sivaram L sivaram.g...@gmail.com wrote:

 Hi,

 I am new to Tiddly wiki, I wanted to add images to my tiddler, hence I
 used drag and drop to import a bunch of images to the wiki. I closed the
 import tiddler, Now where can I see the list of imported images?

 Sivaram,

  --
 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.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/tiddlywiki/f9255b04-a8b7-482f-894f-b837e54c42d4%40googlegroups.com
 https://groups.google.com/d/msgid/tiddlywiki/f9255b04-a8b7-482f-894f-b837e54c42d4%40googlegroups.com?utm_medium=emailutm_source=footer
 .
 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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/CAPKKYJb9%3Dv0R5q7aFOqVkb9pUjaJ9EvU0vOD7s1ynQSWJWvQtw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: AutoWeavePlugin Edit

2015-07-09 Thread Giang Lê Hoàng
Thank you so much, very useful for me!

On Thursday, October 30, 2008 at 2:07:01 PM UTC+7, Reenen wrote:

 Hi,

 I just want to share my edit to the AutoWeavePlugin.  All it does is that 
 it make that the Weave plugin won't weave itself into itself...

 ie.  My tiddler's name is Store Planning, previously it would link each 
 instance of Store Planning it found to itself.

 So just after :
 if (brackets  replaceOnlyFirst) break;

 I added:
 if (arr[i] == title) break;


 Ok thanks bye!

 :-)

 -Reenen



 -- 
 o__
 ,_./ _
 (_)_\(_)___
 ...speed is good
 ___
 I believe five out of four people have a problem with fractions.


-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/d97ab7a4-2c6f-4975-8505-a7156306fd55%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Announcing TiddlyChrome

2015-07-09 Thread Felix Küppers
Hi Arlen,

I will try it these days. Many thanks!

-Felix

On 08.07.2015 18:57, Arlen Beiler wrote:
 Hi everyone, 
 Was working on a project and once again wished that chrome would save
 files to disk. Well, to make a long story short, here it is. Inspired
 by TiddlyFox, but I needed to use a Chrome Packaged App. So this will
 work with Google Chrome, and it might also work with Chrome OS, I have
 no clue. Regardless, here it is and feel free to email me if you have
 questions. It is really an alpha version, so use it at your own risk.
 -Arlen
 -- 
 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
 mailto:tiddlywiki+unsubscr...@googlegroups.com.
 To post to this group, send email to tiddlywiki@googlegroups.com
 mailto:tiddlywiki@googlegroups.com.
 Visit this group at http://groups.google.com/group/tiddlywiki.
 To view this discussion on the web visit
 https://groups.google.com/d/msgid/tiddlywiki/CAJ1vdSRH1xz8AG0CcCGcMFA62wAHgPb%2BuYt_jMNs8K2EhunuqQ%40mail.gmail.com
 https://groups.google.com/d/msgid/tiddlywiki/CAJ1vdSRH1xz8AG0CcCGcMFA62wAHgPb%2BuYt_jMNs8K2EhunuqQ%40mail.gmail.com?utm_medium=emailutm_source=footer.
 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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/BLU436-SMTP13936CD83642AE20E57F2DFCE900%40phx.gbl.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Link to local Word or Excel document

2015-07-09 Thread Eric Shulman
On Thursday, July 9, 2015 at 11:47:03 AM UTC-7, Bob Flandard wrote:

 Is it possible to put a link in a tiddler to a Word or Excel file (or any 
 other application) on my local disk, so that when I click it the file opens 
 in the application?


In TW5, you can create an explicit external link using:

[ext[text to show|URL or relative path/file]]
(i.e., similar to a regular TW link, but with ext added in between the 
first two brackets)

However, the *handling* for specific application file types is determined 
by the browser configuration.  If the browser has an association between 
the file type and the application, then clicking the external link will 
launch the application.  If there is no file type association, most 
browsers just invoke their 'download and save' dialog.

enjoy,
-e
Eric Shulman
ELS Design Studios
TiddlyTools - Small Tools for Big Ideas!
InsideTiddlyWiki: The Missing Manuals

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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/006cee30-6940-4701-bf44-fd190141b56c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Youtube annotations

2015-07-09 Thread Jed Carty
I made this http://inmysocks.tiddlyspot.com/#YouTube%20Video%20Annotations 
a while ago for youtube annotations, you could probably fix it up to use 
your syntax. It is part of what Rich Shumaker used for his annotations. I 
think you only need to import that one tiddler but it has been a while 
since I used it so I am not certain.

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/7f7cf795-29d3-45ff-9509-fda15dbb9407%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Link to local Word or Excel document

2015-07-09 Thread Bob Flandard
Hello Eric,

Thanks for the quick reply. That does the trick.

All the best,

Bob

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/4631892f-0b49-408c-af1b-3e093545d793%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: $set not working inside my own macro

2015-07-09 Thread Jed Carty
Here you need to use tagName instead of $(tagName)$ like this:

\define TagHistory()

$set name=tagName value={{!!title}}

tagName

$list filter=[tagtagNametag[Journal]!sort[title]] /

/$set

\end

Note that there are single  and  around tagName in the filter instead of 
[ and ].

If you have something like this:

$set name=tagName value={{!!title}}
TagHistory
/$set

then you could use $(tagName)$ inside the TagHistory macro. 

This explaination may be missing some details, but the general difference 
between tagName and $(tagName)$ is when you use tagName it treats 
it like a macro and inserts the wikitext which is then evaluated, if you 
use a set widget outside a macro and then use $(tagName)$ inside the macro 
than the wikitext that defines tagName is evaluated before being passed 
into the macro.

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/3971ce3f-b804-40a1-a21d-f375f0e07fc0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Capitalisation of tiddler links

2015-07-09 Thread Eric Shulman
On Thursday, July 9, 2015 at 12:50:58 PM UTC-7, Jed Carty wrote:

 There isn't currently a way to make links ignore case like this. You can 
 get around this by using [[grammar|Grammar]] where the part before the pipe 
 (in this case grammar) is what is displayed as the link and the part after 
 the pipe (Grammer) is the title of the tiddler that is linked to. You can 
 use this to put whatever text you want as the link to a tiddler. Creating 
 something that made links ignore case automatically would probably require 
 making a javascript plugin.


This particular feature was also requested in TWClassic, for which I wrote 
this plugin:
   http://www.tiddlytools.com/#LooseLinksPlugin

It adds optional case-folding (ignore case) and space-folding (ignore 
spaces) to explicitly bracketed links (but not automatic WikiWord links). 
 For example, with LooseLinksPlugin installed and enabled, all of the 
following are recognized as links to a tiddler named CoreTweaks.

[[CoreTweaks]], [[coreTweaks]], [[core tweaks]], [[CORE TWEAKS]], [[CoRe 
TwEaKs]], [[coreTWEAKS]]

I plan on *eventually* re-writing many of my TiddlyTools Classic plugins 
for TW5, but I haven't really started on that yet.

-e

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/b11b7b47-8c95-4452-8470-b7d95042edf2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: [TW5] Is there a way to import multiple tiddlers from a single file?

2015-07-09 Thread Andrew Sanchez
Dear Jeremy,

I'd be interested in playing around with the Node.js script.  Sounds useful!

Thanks,
Andrew

On Thursday, July 9, 2015 at 8:32:25 AM UTC-7, Jeremy Ruston wrote:

 Hi Steve

 Funnily enough, I've been working with some CSV files in my dayjob. I've 
 got a very noddy little Node.js script that converts CSV files into JSON 
 files. It's not very polished - eg one has to edit the JS source to tell it 
 which columns to use.

 But, if you're comfortable with Node.js it might make a good starting 
 point. If you're interested I can post it to GitHub.

 Best wishes

 Jeremy.


 On Thu, Jul 9, 2015 at 4:18 PM, stevesuny stev...@gmail.com javascript:
  wrote:


 Reviving an old thread. Am again interested in importing CSV as separate 
 tiddlers.

 I use google sheets to generate CSV.

 I'd like to use http://www.convertcsv.com/csv-to-json.htm to create 
 json, but none of the output formats work - when I use the import, the json 
 file doesn't return any tiddlers available for import.

 Anyone have suggestions or experience with this? Or, alternatives?

 Thanks,

 //steve.


 On Friday, April 24, 2015 at 11:15:16 AM UTC-4, Jeremy Ruston wrote:

 Hi Steve

 You'll probably have seen the current built-in support for CSV files in 
 TW5: dragging or importing a file results in a single tiddler containing 
 the entire CSV file. There's a special parser for text/csv tiddlers so that 
 the content gets displayed as a nicely formatted HTML table.

 The approach I favour for making the CSV importing more flexible is 
 actually to add facilities for accessing and manipulating the content of 
 CSV tiddlers, rather than extending the import process itself. I like the 
 idea of maintaining CSV as a native format, not just an import format - we 
 could integrate a JavaScript spreadsheet engine like SocialCalc (see 
 http://tiddlywiki.com/rboue's%20plugins%20for%20TiddlyWiki)/

 Adding basic support for referencing rows and cells in CSV tiddlers 
 would be fairly straightforward - it would largely mirror the existing 
 implementation for access to property indexes within data tiddlers (aka 
 JSON tiddlers). I'd be happy to guide anyone interested in working on a 
 pull request.

 Best wishes

 Jeremy.


 On Fri, Apr 24, 2015 at 3:01 PM, stevesuny stev...@gmail.com wrote:

 Of course, writing out the problems leads to its solution (at least 
 partially).

 I've discovered that, as promised above, a properly formatted json 
 file, as:

 [
 {title:Tiddler1,text:This is the text of tiddler 
 1,tags:Tag1 Tag2 [[Tag 3]]},
 {title:Tiddler2,text:This is the text of tiddler 2, with a 
 link to [[Tiddler1]],tags:Tag1 Tag4}
 ]

 saved as, for example, tiddlers.json

 can then be imported using the native import in TW5, and then click 
 on import, and all tiddlers get created.


 I'm now working on generating json files from spreadsheet. Here is a 
 link for a script for google sheets:


 http://blog.pamelafox.org/2013/06/exporting-google-spreadsheet-as-json.html

 It looks reasonable, and I'll work on it today. 

 As always, once discovered, it seems straightforward. Thanks, Jeremy, 
 for the file structure that you put in a few years ago which got me headed 
 in the right direction.

 //steve.


 On Friday, April 24, 2015 at 9:53:43 AM UTC-4, Måns wrote:

 +1

 My workflow has been to import csv file to TWc via Eric's 
 CreateTiddlersFromCsv and then drop the TWc on a TW5 to import all 
 tiddlers 
 at once.
 The tedious part is then to click/accept to convert every imported 
 tiddler from TW classic format to a TW5 format.
 It is tedious when you have 300+ tiddlers to convert. I guess it 
 should be ok with a few tiddlers...

 There is an online csv to JSON converter here: 
 http://www.convertcsv.com/csv-to-json.htm I haven't tried it out 
 yet...

 If you drag a correctly formated JSON file on to a TW5 it should 
 generate tiddlers - again I haven't tried it out.

 Good luck - and please tell how it goes.

 Cheers Måns Mårtensson
  

 Den fredag den 24. april 2015 kl. 15.41.55 UTC+2 skrev stevesuny:

 Resurrecting an old thread, yet again...I have the same challenge (a 
 spreadsheet file where each line becomes a tiddler, with separate column 
 for title, text, tags, etc.. I need to help students import a large 
 number 
 of tiddlers (5 to 200 or more) that they create through spreadsheet 
 manipulation. In TWClassic on tiddlyspace, we use the Tiddlytools plugin 
 http://tiddlytools.com/#CreateTiddlersFromCSV. 

 As I contemplate moving classes from TWClassic to TW5, I need to 
 replicate that functionality, for non-technical users. The responses 
 above 
 reference scripts etc. that are beyond my expertise, and certainly that 
 of 
 my students.

 How do to this in TW5. Maybe I just don't know how to run the 
 load-file command?

 Thanks!

 //steve.


 On Saturday, November 9, 2013 at 4:56:36 PM UTC-5, Arkady Grudzinsky 
 wrote:

 I have a text file where each line is a list item.  I would like to 
 import 

[tw] Re: Capitalisation of tiddler links

2015-07-09 Thread Jed Carty
There isn't currently a way to make links ignore case like this. You can 
get around this by using [[grammar|Grammar]] where the part before the pipe 
(in this case grammar) is what is displayed as the link and the part after 
the pipe (Grammer) is the title of the tiddler that is linked to. You can 
use this to put whatever text you want as the link to a tiddler. Creating 
something that made links ignore case automatically would probably require 
making a javascript 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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/ae82ac53-7faf-4d7b-9c27-aaf050d7d410%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] $set not working inside my own macro

2015-07-09 Thread Eduardo P. Klein
Hi people!

I'm having trouble setting a variable inside a macro. It seems that the 
{{!!title}} field is not available for the $set macro inside my own macro.

\define TagHistory()

$set name=tagName value={{!!title}}

$(tagName)$

$list filter=[tag[$(tagName)$]tag[Journal]!sort[title]] /

/$set

\end


Calling TagHistory shows nothing. But setting the variable outside the 
macro, in the calling tiddler, than it works.

What am I missing here?

Thanks,
Eduardo

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/ef335176-b026-4a40-9ce5-9ab1f5dc34f1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] homegrown speed test

2015-07-09 Thread Rustem


Not sure how useful this is, but seeing that there are some 
performance-related commits in GitHub lately, I compared the two filters by 
simply copying each if the two lists below 20,000 times in a tiddler. 
all[current] is almost double the speed of currentTiddler, 1min 15sec vs. 
2 min 20 sec on my Core-i7. There is probably some datatype conversion 
happening with the latter.

$list filter=[all[current]]#xfeff;/$list
$list filter=[currentTiddler]#xfeff;/$list

​

-- 
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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/c1bfbaf7-cd04-4f16-959a-eee8db46def0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.