Re: [tw] Re: How to get rid of icons and use text again instead?

2015-04-14 Thread Leo Staley
I see that you added this back in august! Thanks! 

Unfortunately, I don't know how to do it. I still can't seem to figure out 
how to turn off icons and use text buttons for the existing theme. Help?

Thanks in advance! 

On Wednesday, February 12, 2014 at 1:22:54 AM UTC-7, Jeremy Ruston wrote:

 I'd like themes to be able to choose between text vs. icon labels for 
 toolbar buttons. I've created a ticket:

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

 Best wishes

 Jeremy




 On Wed, Feb 12, 2014 at 7:56 AM, Stephan Hradek stephan...@gmail.com 
 javascript: wrote:

 The easy approach could be to simply replace the icon tiddlers with text. 
 That way you'll replace them everywhere.

 The more flexble approach is to find the view/edit templates where the 
 buttons are used (transcluded) and replace the transclusion with the 
 preferred text.

 -- 
 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.
 For more options, visit https://groups.google.com/groups/opt_out.




 -- 
 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/da56de2c-c4af-48fc-94c5-2a995a41b825%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TWC] How to display local .txt file (no iframe)

2015-04-14 Thread julien23
Hi all

Exception was caused by \ instead of / in the url.

Can you please help me with a last thing ?

At the end of [[UrlContentScript]], I don't manage to concatenate {{{ + 
p.responseText + }}} to keep indentations.

How do I do that ?

Looking forward to read from you

JBo




On Monday, April 13, 2015 at 10:14:07 PM UTC+2, julien23 wrote:

 [Exception... Failure nsresult: 0x80004005 (NS_ERROR_FAILURE) 
 location: JS frame :: file:///S:/satt_prop14/index.html line 17349  eval 
 line 76  eval :: _out :: line 13 data: no]

 not perfect ...
 I get this error depending on files

 On Monday, April 13, 2015 at 9:47:16 PM UTC+2, julien23 wrote:

 Hi all

 I finally managed something ... experts might find it dirty :-)

 script
 var url = '../satt_prop14_dev/matlab/ScoreCalculation14.m';
  if ('undefined' == typeof(url)) return false;
  var p,rnd;
  if (document.all){
// For IE, create an ActiveX Object instance
p = new ActiveXObject(Microsoft.XMLHTTP);
  }
  else {
// For mozilla, create an instance of XMLHttpRequest.
p = new XMLHttpRequest();
  }
  p.open(GET,url,false);
  p.send(null);
 var urlContent = p.responseText.toString();
 wikify(urlContent,place)
 /script



 On Monday, April 13, 2015 at 9:21:10 AM UTC+2, julien23 wrote:

 Hi all

 Thank you for answers.

 html
 object data=..\satt_prop14_dev\matlab\ScoreCalculation14.m type=txt
 
   File not found.
  /object
 /html

 works on win7/FF36
 win7/Chrome File not found. not my main browser, maybe it is not 
 configured for local files.

 but anyway, I have the same issue than with iframe : the file content is 
 exiguous and delimited with both horizontal and vertical scrollbar.

 see TW14_2015_04_13.pdf 
 https://www.sugarsync.com/pf/D7464562_93409053_6658137

 and even if I manually fit width and height to file content...
 object style=width:650px; height:264em; data=..\satt_prop14_dev\
 matlab\ScoreCalculation14.m type=txt
 ... then when I print, object is truncated to one page.

 It does not display inline like for example
 {{{
 contents of your .m file goes here ...
 }}}

 I think I am looking for a script that fetch the file content and send 
 it as output.

 I have tried to tweak the [AliasScript] Eric did me earlier.
 script
 out=store.getValue($1,alias)
 wikify(out.toString(),place); //Final output
 /script

 with this code :

 script
 document.include = function (url) {
  if ('undefined' == typeof(url)) return false;
  var p,rnd;
  if (document.all){
// For IE, create an ActiveX Object instance
p = new ActiveXObject(Microsoft.XMLHTTP);
  }
  else {
// For mozilla, create an instance of XMLHttpRequest.
p = new XMLHttpRequest();
  }
  // Prevent browsers from caching the included page
  // by appending a random  number (optional)
  rnd = Math.random().toString().substring(2);
  url = url.indexOf('?')-1 ? url+'rnd='+rnd : url+'?rnd='+rnd;
  // Open the url and write out the response
  p.open(GET,url,false);
  p.send(null);
  document.write( p.responseText );
 }
 document.include('../satt_prop14_dev/matlab/ScoreCalculation14.m');
 /script


 I display the file content as text. It wraps properly. But don't manage 
 to make it wikify so far ...

 Looking forward to read from you

 JBo



 On Saturday, April 11, 2015 at 10:02:15 PM UTC+2, Eric Shulman wrote:

 On Saturday, April 11, 2015 at 12:45:08 PM UTC-7, Mat wrote:

 Maybe something like this. I get this to work with a local txt file:

  object data=..\satt_prop14_dev\matlab\ScoreCalculation14.m 
 type=..whateveritis..
   Text showing if file does not show up.
  /object


 Excellent solution!  This works for me using Win7/Chrome.  Note that 
 TWClassic needs to have html.../html markers around any HTML syntax, 
 and if you want to use wiki syntax to format the file not found text 
 (the 
 content within the object.../object block), then you will need to 
 install
http://www.TiddlyTools.com/#HTMLFormattingPlugin

 Also, if you don't specify the type=..., the browser defaults to 
 text/plain.  The type param is only required if you want the browser to 
 attempt to display the file content using an addon viewer that was 
 previously installed (e.g., PDF, Excel, Word)

 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 

Re: [tw] Re: How to get rid of icons and use text again instead?

2015-04-14 Thread Leo Staley
Also, 

2) Would it be possible to use SOME icons, but not all? For example, say I 
wanted to use the X icon for closing a tiddler, but text buttons for the 
rest.

3) While I'm on that, Is it possible to use icons as they are now, just 
make them smaller? 

4) would I be able to have border around my text buttons (and or other 
styling) to indicate that they are buttons?

Thanks in advance! 


On Wednesday, February 12, 2014 at 1:22:54 AM UTC-7, Jeremy Ruston wrote:

 I'd like themes to be able to choose between text vs. icon labels for 
 toolbar buttons. I've created a ticket:

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

 Best wishes

 Jeremy




 On Wed, Feb 12, 2014 at 7:56 AM, Stephan Hradek stephan...@gmail.com 
 javascript: wrote:

 The easy approach could be to simply replace the icon tiddlers with text. 
 That way you'll replace them everywhere.

 The more flexble approach is to find the view/edit templates where the 
 buttons are used (transcluded) and replace the transclusion with the 
 preferred text.

 -- 
 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.
 For more options, visit https://groups.google.com/groups/opt_out.




 -- 
 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/7a8c0c9b-d770-452c-bcba-98581b6e84bb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: (TWC) Input Box

2015-04-14 Thread Leo Staley
Okie dokie. So Tobi has a much more complete version of this working at 
tbgtd.tiddlyspot.com/#QuickNotes, with some great documentation at 
http://tbgtd.tiddlyspot.com/#[[quick-add%20help]] (Tobi tends to have 
downright awesome documentation!)

Basically, copy the script into a new tiddler, and it should work, no 
plugin required. (you'll need the TiddlerListMacro plugin for the feature 
of listing recently created notes from it)

You should be able to hack and tweak away at this to fit your needs quite a 
bit more easily. 


On Monday, April 13, 2015 at 4:19:27 PM UTC-7, jpt wrote:

 Hi,
 I am trying to make a box for inputting new tiddlers (tiddler titles only).
 It has to operate from the Main Menu and I want it to create the tiddler 
 silently (without opening it).
 I have tried QuickNotes (http://tiddlytools.com/#QuickNotePlugin), it 
 adds however user name and date as the title and opens the tiddler once 
 created and I don't know how to tweak that.
 I used Tobi Beer's Notes (http://lastfm.tiddlyspot.com/#Notes) and it 
 looks promising, but has to be tweaked.
 I hacked and mutilated the code and got it working in the story part of 
 the TW. It only works on the Main Menu when the tiddler containing it is 
 also being displayed for viewing.
 Sorry if this all sounds complicated.
 Here is the re-purposed code:

 htmlnowikiform id=Notes style=width:100%;height:20px;
 input title=message title name=msgTitle type=text cols=60 style=
 width:90%;height:20px;padding:0px;margin-bottom:1px;margin-right:2px;
 border:1px solid #CCC;input title=tags added to message name=
 msgTags type=text cols=60 style=display:none;width:0%;height:20px;
 padding:0px;margin-bottom:0px;border:0px solid #CCC;br/
 textarea title=message body name=msgBody rows=1 cols=0 style=
 display:none;width:0%;height:0px;padding:0px 0px;margin:0px;float:left;
 border:0px solid #CCC;/textarea
 input class=button type=button value=ok style=font-weight:bold;
 font-size:1.0em;width:9%;height:22px;float:right;border:1px solid 
 #CCC;margin:-23px 
 0px 0px 0px; title=click to save this message onclick= 
 var note=this.form.msgBody.value;// if (note=='') return;
 var tags=this.form.msgTags.value.readBracketedList();
 tags.push('day');
 var tid=story.findContainingTiddler(place).getAttribute('tiddler'
 );
 var who=config.options.txtUserName; 
 var when=new Date();
 var title=this.form.msgTitle.value;
 if (title=='') title=when.formatString(' -0MM-0DD 0hh:0mm:0ss'
 );
 var msg=config.messages.overwriteWarning.format([title]);
 if (store.tiddlerExists(title)  !confirm(msg)) return; 
 store.saveTiddler(title,title,note,who,when,tags,{}); 
 this.form.msgTitle.value='';
 this.form.msgTags.value='';
 this.form.msgBody.value='';
 this.form.msgTitle.focus();
 /form/html


 I would be grateful for any pointers.

 Thank you.

 Johannes


-- 
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/520ca5d9-442c-4b94-9d87-acfd8fdc2686%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW Background and Header

2015-04-14 Thread Juan Don
Thanks for your reply, i created the Stylesheet Tiddler and the tiddler for 
my bg (copied from yours) but i'm not able to make it Show up. you changed 
your bg tiddler to jpeg and it just Shows the right Picture. When i'm 
trying to use the jpeg Formation on this tiddler, i just can draw with a 
yellow pen. This works for me as a Background, but imported jpegs/pngs 
don't.. Tried to link to my Picture file [img[F:\\]] still doesn't work 
for me...

any advice ?

Am Freitag, 10. April 2015 02:22:14 UTC+2 schrieb Richard Smith:

 Hi Juan,

 You need to get the background stylesheet from my page at the moment - you 
 should change clouds.jpg to the title of your image tiddler - the 
 background of individual tiddlers can be set to transparent (or anything) 
 by tagging, as you can see by looking at the tiddler called 'color styles'. 
 Note that these tiddlers have the tag $:/tags/Stylesheet. You're quite 
 welcome to gut my page as a starting point for your own if that's easier.

 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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/f86b3f80-aeb4-4a48-a5f5-1817437d0e1c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: How to get rid of icons and use text again instead?

2015-04-14 Thread Eric Shulman
On Monday, April 13, 2015 at 11:48:43 PM UTC-7, Leo Staley wrote:

 I see that you added this back in august! Thanks! 
 Unfortunately, I don't know how to do it. I still can't seem to figure out 
 how to turn off icons and use text buttons for the existing theme. Help?


Open the $:/ControlPanel (the gear icon in the sidebar)...
Select the Settings tab...
Scroll down to find Toolbar Buttons...
There are two checkboxes: include icon and include text
Set them as desired.

-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/3cff5cb0-6347-4051-8992-029fbc361657%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: How to get rid of icons and use text again instead?

2015-04-14 Thread Leo Staley
Fantastic! Thank you Eric!

And After an hour of fiddling, 
2) Is it possible to use icons as they are now, just make them smaller (and 
other styling, like adding a border around buttons to set them apart?)
3) Would it be possible to use SOME icons, but not all? For example, say I 
wanted to use the X icon for closing a tiddler, but text buttons for the 
rest. (I suspect not, and just using text should be fine for me...)

On Tuesday, April 14, 2015 at 1:35:08 AM UTC-7, Eric Shulman wrote:

 On Monday, April 13, 2015 at 11:48:43 PM UTC-7, Leo Staley wrote:

 I see that you added this back in august! Thanks! 
 Unfortunately, I don't know how to do it. I still can't seem to figure 
 out how to turn off icons and use text buttons for the existing theme. Help?


 Open the $:/ControlPanel (the gear icon in the sidebar)...
 Select the Settings tab...
 Scroll down to find Toolbar Buttons...
 There are two checkboxes: include icon and include text
 Set them as desired.

 -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/9e20b64c-a64f-4126-93dc-324a202e8878%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: (TWC) Input Box

2015-04-14 Thread jpt
Great!
Thank you - will try.
Johannes

On Monday, April 13, 2015 at 7:19:27 PM UTC-4, jpt wrote:

 Hi,
 I am trying to make a box for inputting new tiddlers (tiddler titles only).
 It has to operate from the Main Menu and I want it to create the tiddler 
 silently (without opening it).
 I have tried QuickNotes (http://tiddlytools.com/#QuickNotePlugin), it 
 adds however user name and date as the title and opens the tiddler once 
 created and I don't know how to tweak that.
 I used Tobi Beer's Notes (http://lastfm.tiddlyspot.com/#Notes) and it 
 looks promising, but has to be tweaked.
 I hacked and mutilated the code and got it working in the story part of 
 the TW. It only works on the Main Menu when the tiddler containing it is 
 also being displayed for viewing.
 Sorry if this all sounds complicated.
 Here is the re-purposed code:

 htmlnowikiform id=Notes style=width:100%;height:20px;
 input title=message title name=msgTitle type=text cols=60 style=
 width:90%;height:20px;padding:0px;margin-bottom:1px;margin-right:2px;
 border:1px solid #CCC;input title=tags added to message name=
 msgTags type=text cols=60 style=display:none;width:0%;height:20px;
 padding:0px;margin-bottom:0px;border:0px solid #CCC;br/
 textarea title=message body name=msgBody rows=1 cols=0 style=
 display:none;width:0%;height:0px;padding:0px 0px;margin:0px;float:left;
 border:0px solid #CCC;/textarea
 input class=button type=button value=ok style=font-weight:bold;
 font-size:1.0em;width:9%;height:22px;float:right;border:1px solid 
 #CCC;margin:-23px 
 0px 0px 0px; title=click to save this message onclick= 
 var note=this.form.msgBody.value;// if (note=='') return;
 var tags=this.form.msgTags.value.readBracketedList();
 tags.push('day');
 var tid=story.findContainingTiddler(place).getAttribute('tiddler'
 );
 var who=config.options.txtUserName; 
 var when=new Date();
 var title=this.form.msgTitle.value;
 if (title=='') title=when.formatString(' -0MM-0DD 0hh:0mm:0ss'
 );
 var msg=config.messages.overwriteWarning.format([title]);
 if (store.tiddlerExists(title)  !confirm(msg)) return; 
 store.saveTiddler(title,title,note,who,when,tags,{}); 
 this.form.msgTitle.value='';
 this.form.msgTags.value='';
 this.form.msgBody.value='';
 this.form.msgTitle.focus();
 /form/html


 I would be grateful for any pointers.

 Thank you.

 Johannes


-- 
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/ab4d0dd6-2e60-4afe-800c-7f0ab46a0642%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] [TW5] Change tagpill filter to not list tiddlers tagged Unfinished.

2015-04-14 Thread Mat
In a hopefully-soon-to-be-released TW (for *you* guys :-), I tag unfinished 
articles with Unfinished and make sure they don't appear in the various 
lists. However, because these articles are typically also tagged with other 
tags, the articles do still appear in the tagpill-dropdowns of those other 
tags.

How can I prevent this? (And, no, I can't just finish up on the articles. 
At least not if the TW is to be released this decade.) 

(It would be neat if the Unfinished titles did still show up if I click the 
very tagpill *Unfinished*, but no must.)

Thank you!

:-)

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/6a0e3d14-942b-410b-99f9-974808b7a390%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: list URLs as URLs

2015-04-14 Thread Rustem
It works! I was trying to use $view instead of $transclude. Thank you.

On Monday, April 13, 2015 at 6:44:05 PM UTC-7, Jed Carty wrote:

 Do you have http:// or https:// in front of your links? Because that would 
 This works for me:

 $list filter='[is[current]fields[]regexp[-url]]' variable=CurrentField
 $transclude field=CurrentField/
 /$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/fd21e15f-2560-4241-b6d5-d4b89ba6b0f2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] [TW5] show list of tiddlers if checkbox selected

2015-04-14 Thread Siniy-Kit
Hi! I have a list of checkboxes where I select the value of the 
field nazvanie  and want to see the tiddlers with this field 
nazvanie and it's value.
how can I gather values from my checkboxes and form new list of tiddlers.
here is my  list of checkboxes

$list 
filter=[is[current]tagging[]tag[$:/Note]each[nazvanie]get[nazvanie]] 
variable=nazvanie
$checkbox tiddler=$:/_allvendors field= nazvanie   checked=1  ''
nazvanie''  /$checkboxbr
/$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/b6aae6a5-116d-42e5-8221-18f66e6f50f3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] bookmarking examples?

2015-04-14 Thread Rustem


I’m good with cut and paste ;) so I could try and cobble something together 
that works for me, by looking at existing examples.

Parts I’d like to have in my bookmarking implementation:

   - tiddler controls button for “Create a bookmark tagged with the current 
   tiddler” 
   - template for using in $list macro 
   - custom view and edit templates for tiddlers tagged “Bookmark” 

I found two so far, are there more examples of using TW5 for bookmarking?

   1. http://ooktech.com/jed/externalbrain/#Bookmarks%20by%20Tags 
   2. http://giffmex.org/experiments/tidmarks.html 

—R.
​

-- 
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/70d3c423-4d86-4805-b79e-0dfa996d60fa%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] [TW5] Importing large number of text files

2015-04-14 Thread RickL
I have now...worked like a charm...thanks...I knew it would be simple; I 
should have known that!

On Tuesday, April 14, 2015 at 12:24:34 PM UTC-4, Jon wrote:

 Have you tried using the keyboard shortcut for paste: Press Ctrl and V?
 Regards
 Jon

 On Tuesday, 14 April 2015 13:56:58 UTC+1, RickL wrote:

 Already tried that...there is no 'paste' option in the console...most 
 likely this is very simple but I don't see it

 On Mon, Apr 13, 2015 at 5:45 PM, Eric Shulman elsd...@gmail.com wrote:

 On Monday, April 13, 2015 at 1:33:26 PM UTC-7, RickL wrote:

 How does this work with Chrome?  Pardon my ignorance as I am no 
 developer, but I like the idea of changing all these tiddlers with one 
 click


 In Chrome, you can use ctrl-shift-j to quickly open the developer 
 'console'.  Then, paste in the code provided by Jeremy.  Because it uses 
 TiddlyWiki-defined core functions, it will work the same in every browser.

 enjoy,
 -e
 Eric Shulman
 TiddlyTools / ELS Design Studios

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

 -- 
 You received this message because you are subscribed to a topic in the 
 Google Groups TiddlyWiki group.
 To unsubscribe from this topic, visit 
 https://groups.google.com/d/topic/tiddlywiki/7q8mYGUZ3lo/unsubscribe.
 To unsubscribe from this group and all its topics, send an email to 
 tiddlywiki+...@googlegroups.com.
 To post to this group, send email to tiddl...@googlegroups.com.
 Visit this group at http://groups.google.com/group/tiddlywiki.
 To view this discussion on the web visit 
 https://groups.google.com/d/msgid/tiddlywiki/f4eaee6d-71fc-43d0-87ac-c8c82e687ff3%40googlegroups.com
  
 https://groups.google.com/d/msgid/tiddlywiki/f4eaee6d-71fc-43d0-87ac-c8c82e687ff3%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/c98a22c0-dd02-4d54-92eb-fa8a9003ed79%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] bookmarking examples?

2015-04-14 Thread Jed Carty
In case you didn't see it, everything that is used for my bookmarks stuff is in 
a plugin on my other site 
http://inmysocks.tiddlyspot.com/#%24%3A%2Fplugins%2Finmysocks%2FBookmarks

It may be more convenient to pick it apart using that. 

-- 
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/fbbc34f9-903f-42be-89ae-721fd3f59ce2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] [TW5] Importing large number of text files

2015-04-14 Thread Jon
Have you tried using the keyboard shortcut for paste: Press Ctrl and V?
Regards
Jon

On Tuesday, 14 April 2015 13:56:58 UTC+1, RickL wrote:

 Already tried that...there is no 'paste' option in the console...most 
 likely this is very simple but I don't see it

 On Mon, Apr 13, 2015 at 5:45 PM, Eric Shulman elsd...@gmail.com 
 javascript: wrote:

 On Monday, April 13, 2015 at 1:33:26 PM UTC-7, RickL wrote:

 How does this work with Chrome?  Pardon my ignorance as I am no 
 developer, but I like the idea of changing all these tiddlers with one click


 In Chrome, you can use ctrl-shift-j to quickly open the developer 
 'console'.  Then, paste in the code provided by Jeremy.  Because it uses 
 TiddlyWiki-defined core functions, it will work the same in every browser.

 enjoy,
 -e
 Eric Shulman
 TiddlyTools / ELS Design Studios

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

 -- 
 You received this message because you are subscribed to a topic in the 
 Google Groups TiddlyWiki group.
 To unsubscribe from this topic, visit 
 https://groups.google.com/d/topic/tiddlywiki/7q8mYGUZ3lo/unsubscribe.
 To unsubscribe from this group and all its topics, 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/f4eaee6d-71fc-43d0-87ac-c8c82e687ff3%40googlegroups.com
  
 https://groups.google.com/d/msgid/tiddlywiki/f4eaee6d-71fc-43d0-87ac-c8c82e687ff3%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/9b9d0981-7d12-44e0-a450-f4ec66b06cc2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Running server brings up unstyled tiddly wiki

2015-04-14 Thread TJ Hoeft
This sounds similar to the issue that I'm having.  Keep checking here to 
see if anything will help you.
TJ

https://groups.google.com/forum/#!topic/tiddlywiki/2DmWNbPyO3Q

On Monday, April 13, 2015 at 2:35:20 AM UTC-7, spen...@gmail.com wrote:

 Hi - could someone with more knowledge tell me if I'm doing something 
 wrong?

 I have a initialised tiddily directory from which I use the node.js 
 tiddlywiki application to run a server to localhost. I've then zipped the 
 directory up, moved it to my laptop, unzipped it and then tried to run it 
 on another machine. 

 It runs, but it's unstyled, there's no warnings, even when I've set the 
 verbose flag. 

 Is this to be expected? 




-- 
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/c7058edd-0cfe-4b1f-a21c-2d283d3e2b7f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] My personal tiddlywiki don't load themes

2015-04-14 Thread TJ Hoeft
Hi Jeremy,
Thank you for the idea!  I will tinker around a bit and I'll let you know 
the results.
TJ

On Sunday, April 12, 2015 at 5:48:44 AM UTC-7, Jeremy Ruston wrote:

 Hi TJ

 Am I correct in understanding that the problem you're experiencing is that 
 you're seeing an unstyled but otherwise functional TiddlyWiki in the 
 browser?

 The steps you describe about moving a tiddlywiki.info file into the boot 
 folder of the TW5 repo are not correct. The TW5 repo holds the code; your 
 data would ordinarily be stored in an entirely different folder. 

  Since the tiddlywiki mynewwiki --init server mainly seems to generate 
 a tiddlywiki.info, I assumed that having this file referenced from the 
 code would fix the Themes Issue.  No success.

 The init command does indeed just copy a tiddlywiki.info file into your 
 wiki folder. I don't understand why it's not working for you, though? Why 
 aren't you just creating a blank wiki folder within 
 process.env.OPENSHIFT_DATA_DIR?

 Best wishes

 Jeremy.





 On Sat, Apr 11, 2015 at 6:13 AM, TJ Hoeft tj.h...@gmail.com javascript:
  wrote:

 Hello,
 I'm still wrestling to figure out themes.  I looked at the boot.js and 
 found a config block as shown below:

 config: { // Configuration overridables
  pluginsPath: ../plugins/,
  themesPath: ../themes/,
  languagesPath: ../languages/,
  editionsPath: ../editions/,
  wikiInfo: ./tiddlywiki.info,
  wikiPluginsSubDir: ./plugins,
  wikiThemesSubDir: ./themes,
  wikiLanguagesSubDir: ./languages,
  wikiTiddlersSubDir: ./tiddlers,
  wikiOutputSubDir: ./output,
  jsModuleHeaderRegExpString: 
 ^\\/\\*(?:\\r?\\n)((?:^[^\\r\\n]*(?:\\r?\\n))+?)(^\\*\\/$(?:\\r?\\n)?)
 ,
  fileExtensionInfo: Object.create(null), // Map file extension to {type:}
  contentTypeInfo: Object.create(null), // Map type to 
 {encoding:,extension:}
  pluginsEnvVar: TIDDLYWIKI_PLUGIN_PATH,
  themesEnvVar: TIDDLYWIKI_THEME_PATH,
  languagesEnvVar: TIDDLYWIKI_LANGUAGE_PATH,
  editionsEnvVar: TIDDLYWIKI_EDITION_PATH
  }

 I have a locally generated TW5 server instance.  I was able to copy its 
 tiddlywiki.info into my OpenShift staging area within the boot 
 subdirectory. (I also copied the entire tiddlers subdir there too.)  I 
 added and checked in my changes into Git and pushed them to OpenShift.  
 After restarting NodeJS on OpenShift, I was able to see my content.

 Since the tiddlywiki mynewwiki --init server mainly seems to generate 
 a tiddlywiki.info, I assumed that having this file referenced from the 
 code would fix the Themes Issue.  No success.

 Any ideas?

 Thanks ahead of time,
 TJ

 On Friday, April 10, 2015 at 4:51:53 PM UTC-7, TJ Hoeft wrote:

 Hello everyone,
 I'm trying to do a similar deployment in OpenShift based on the blog:

 http://ericmiao.github.io/blog/2014/04/05/setup-personal-tiddlywiki-on-
 openshift/

 I ended up with the same issue with the themes.  
 TJ


 On Friday, January 9, 2015 at 11:30:16 AM UTC-8, Jeremy Ruston wrote:

 Hi Châu

 That's an unusual way to start TiddlyWiki. I'm guessing that you modded 
 tiddlywiki.js from the TW5 repo?

 Anyhow, have you initialised your data directory? To be a valid wiki 
 folder you need to create a tiddlywiki.info file. The usual way of 
 doing that is via the command line:

 tiddlywiki my_data_dir --init server

 Best wishes

 Jeremy

 On Fri, Jan 9, 2015 at 7:07 AM, Châu Thân Đức Hoàng 
 simples...@gmail.com wrote:

 I setup my personal tiddlywiki on OpenShift. But it don't load themes.
 This is my code to start it.

 var $tw = require(./boot/boot.js).TiddlyWiki();
 $tw.boot.argv = [
   process.env.OPENSHIFT_DATA_DIR,
   --server,
   process.env.OPENSHIFT_NODEJS_PORT,
   $:/core/save/all,
   text/plain,
   text/html,
   usename,
   password,
   process.env.OPENSHIFT_NODEJS_IP,
 ];
 $tw.boot.boot();


 Please help me.
 Thanks.

 PS: I don't know about argurement of $tw. Where do I read 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+...@googlegroups.com.
 To post to this group, send email to tiddl...@googlegroups.com.
 Visit this group at http://groups.google.com/group/tiddlywiki.
 For more options, visit https://groups.google.com/d/optout.




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



 -- 
 Jeremy Ruston
 mailto:jeremy...@gmail.com 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/4139588a-e8f6-467c-85d8-8f8457fa45cb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] [TW5] Unable to save

2015-04-14 Thread Andrew
Please forgive me if I am missing something obvious. I'm trying to run a stand 
alone version 5.1.8-prerelease locally at work where I can't install anything 
which may be the problem. It is on Window 7 using IE9. Since we can't download 
anything, I had to use notepad to save the code from the page on tiddlyspot to 
an html file. When I originally opened it, IE9 asked if I wanted to allow an 
activex plugin and I stupidly said no. The page displays but now no matter what 
I try it only displays the message about right clicking the link and file save 
as but nothing happens when I do that. I tried the hta hack, clearing cache, 
redoing everything but still the same. I know it is IE9, but I was so hoping I 
could work around the problems with polyfills but I feel like I killed it. Any 
suggestions?

-- 
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/58580d24-a2fd-4055-8a91-a27a72428c22%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: java is dying

2015-04-14 Thread Eric Shulman
On Tuesday, April 14, 2015 at 4:15:33 PM UTC-7, @atomi wrote:

 This https://www.chromium.org/developers/npapi-deprecation/ appears to 
 kill the java plugin to run tiddlywiki in browser.
 For now you can re-enable it in about://flags but that options seems to be 
 going away in September as well.


Just to be clear... neither TiddlyWiki nor TiddlyWiki Classic relies upon 
*java* to run in the browser.  All TiddlyWiki code is written in 
*javascript*, which is natively supported by nearly all browsers, without 
any plugins needed.

The only impact of this phase-out of NPAPI support will be for people using 
TiddlyWiki Classic with the mostly-obsolete TiddlySaver.jar applet to 
enable local file I/O. However, without TiddlySaver.jar, TiddlyWiki Classic 
(v2.8.1+) will still be able to save locally, using the fallback download 
saver functionality.

-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/da3cb2fc-ec9f-4e12-9cc4-00eaef9c76d7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: java is dying

2015-04-14 Thread Eric Shulman
On Tuesday, April 14, 2015 at 8:17:13 PM UTC-7, @atomi wrote:

 Yeah, as far as I know there is no other way to enable saving tiddlys in 
 browser (and without having to download the whole file) without 
 TiddlySaver.jar


* modern TiddlyWiki (v5.0.0+) does NOT use Java in any way, so there is 
simply no impact on current usage.

* TiddlyWiki Classic (v2.8.1+) does not *need* TiddlySaver.jar to save your 
changes locally since it also can use the fallback download saver that 
works without any Java applet support.  Regardless of how the local file is 
saved (TiddlySaver.jar or the fallback download saver), there is really 
no difference in the end result... TiddlyWiki Classic always saves the 
*whole file* each time.

What I'm trying to make clear is that the demise of *Java* plugin support 
in the Chromium browser will have virtually no impact whatsoever on 
TiddlyWiki users.

-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/8f0fb79c-e21a-4a16-b68b-0843a3dc1bdb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: Building a Mobile Menu for TiddlyWiki

2015-04-14 Thread Jan Johannpeter

Hi Jed,
I guess that you are right, TW5 looks more mobile friendly. Alas I am 
quite glued to TWC because there I need some plugins and logic in my TWC 
which I cannot replace in TW5 so far.
Fixed menus with Icons are a very useful attempt for smartphones. I need 
a multi-level-menu containing big lists, which makes me long for the 
drill-down function which i could not find in any plugin yet.

Yours Jan

Am 15.04.2015 um 01:10 schrieb Jed Carty:
That does look like it could be very useful. I don't know if it would 
be better or not but you may be able to create something equivalent to 
that using only TW5, which is partly my goal for my icon menus 
http://ooktech.com/iconmenus/.


I think that TW5 is much more mobile friendly than TWc. That or I was 
doing something wrong when I was using TWc, which is very possible.

--
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/c962fa3d-a49b-4a15-a6bd-3254b0eeb045%40googlegroups.com 
https://groups.google.com/d/msgid/tiddlywiki/c962fa3d-a49b-4a15-a6bd-3254b0eeb045%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/552DACE5.2020807%40googlemail.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Font Size

2015-04-14 Thread Valikhanov
Thanks, that worked! 

Is there a list of general stylesheet options somewhere?  For instance, a 
way to change the display spacing (i.e. increase the space between lines)?




On Monday, April 13, 2015 at 5:54:35 PM UTC-4, Valikhanov wrote:

 Question from an old TiddlyWiki user, but a new adopter of the new version:

 In the settings, it seems that font size governs *both* the font sizes 
 of the titles *and* the font size of the editing text box.  So if I want 
 a readable font size for editing, I need to deal with colossally sized 
 titles.  Is there any way to deal with this?


-- 
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/544f8c13-fe43-4b5f-950e-e67c328fecce%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Font Size

2015-04-14 Thread Valikhanov
Or - more importantly - setting the font size for just the display text of 
the Tiddly?

On Tuesday, April 14, 2015 at 8:26:48 PM UTC-4, Valikhanov wrote:

 Thanks, that worked! 

 Is there a list of general stylesheet options somewhere?  For instance, a 
 way to change the display spacing (i.e. increase the space between lines)?




 On Monday, April 13, 2015 at 5:54:35 PM UTC-4, Valikhanov wrote:

 Question from an old TiddlyWiki user, but a new adopter of the new 
 version:

 In the settings, it seems that font size governs *both* the font sizes 
 of the titles *and* the font size of the editing text box.  So if I want 
 a readable font size for editing, I need to deal with colossally sized 
 titles.  Is there any way to deal with this?



-- 
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/84f9de32-cd46-4f4c-ab8d-85d8b70f2cb3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] FontAwesome appearance

2015-04-14 Thread Rustem


I embedded FontAwesome into my TW5, but when I use it inside a button 
widget, the button looks big and darkly colored. How do I make it look 
uniform with the other buttons? 

Here’s what I have so far, just put it in a new tiddler and tag it with 
“$:/tags/ViewToolbar”:
(I added a new journal button there just to see how it looks)

$button
  class=tv-config-toolbar-class

  $action-sendmessage
$message=tm-new-tiddler
$param=BookmarkCreateTemplate
title=Bookmark
tags=currentTiddler
  /
  i class=fa fa-bookmark/
  {{$:/core/images/new-journal-button}}
/$button

​

-- 
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/22006e9b-b3b6-4c04-abef-56e513c74fd0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: java is dying

2015-04-14 Thread @atomi
Yeah, as far as I know there is no other way to enable saving tiddlys in 
browser (and without having to download the whole file) without 
TiddlySaver.jar


On Tuesday, April 14, 2015 at 5:46:34 PM UTC-7, Eric Shulman wrote:

 On Tuesday, April 14, 2015 at 4:15:33 PM UTC-7, @atomi wrote:

 This https://www.chromium.org/developers/npapi-deprecation/ appears to 
 kill the java plugin to run tiddlywiki in browser.
 For now you can re-enable it in about://flags but that options seems to 
 be going away in September as well.


 Just to be clear... neither TiddlyWiki nor TiddlyWiki Classic relies upon 
 *java* to run in the browser.  All TiddlyWiki code is written in 
 *javascript*, which is natively supported by nearly all browsers, without 
 any plugins needed.

 The only impact of this phase-out of NPAPI support will be for people 
 using TiddlyWiki Classic with the mostly-obsolete TiddlySaver.jar applet to 
 enable local file I/O. However, without TiddlySaver.jar, TiddlyWiki Classic 
 (v2.8.1+) will still be able to save locally, using the fallback download 
 saver functionality.

 -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/3bf56a08-344f-4b8b-85b3-818e741a1480%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Building a Mobile Menu for TiddlyWiki

2015-04-14 Thread Jed Carty
There aren't just fixed menus with icons, the icons can be any tiddler you 
wish. I threw together a very crude proof of concept nested menu example 
here http://ooktech.com/jed/ExampleWikis/Text%20Menus/. It is still TW5 
so it is probably not helpful to you but it will hopefully show some of 
what is possible.

To see the example click on the black bar on the left and the menu should 
pop out. It has the problem I have run into before where on mobile devices 
when you tap on the menu once it is displayed, it will hide itself. I think 
it has something to do with the list widget refreshing itself causing the 
on hover status to reset. Or something like that.

Like I said, it is very crude, but with some css and other magic you could 
make arbitrary nested menus using 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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/54b04e92-d466-43f1-a415-34a9680d51e0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: java is dying

2015-04-14 Thread @atomi
I use TiddlyWiki classic with the TiddlySaver.jar daily, because I can save 
without having to deal with additional dialogues.
This post was just a heads up for those people that do use TiddlySaver.jar. 
If you don't use it don't worry about it.


On Tuesday, April 14, 2015 at 8:51:57 PM UTC-7, Eric Shulman wrote:

 On Tuesday, April 14, 2015 at 8:17:13 PM UTC-7, @atomi wrote:

 Yeah, as far as I know there is no other way to enable saving tiddlys in 
 browser (and without having to download the whole file) without 
 TiddlySaver.jar


 * modern TiddlyWiki (v5.0.0+) does NOT use Java in any way, so there is 
 simply no impact on current usage.

 * TiddlyWiki Classic (v2.8.1+) does not *need* TiddlySaver.jar to save 
 your changes locally since it also can use the fallback download saver 
 that works without any Java applet support.  Regardless of how the local 
 file is saved (TiddlySaver.jar or the fallback download saver), there is 
 really no difference in the end result... TiddlyWiki Classic always saves 
 the *whole file* each time.

 What I'm trying to make clear is that the demise of *Java* plugin support 
 in the Chromium browser will have virtually no impact whatsoever on 
 TiddlyWiki users.

 -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/a279d377-ab1a-4fad-9ade-5b5131b89334%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: bookmarking examples?

2015-04-14 Thread whatever
Hey!
I made TiddlyMarks (1) a while back. It's for TWC, but maybe it could help 
you get ideas for a TW5 version. I'm using TiddlySnip to add bookmarks 
directly from the browser (Firefox/Waterfox).

(1) http://tiddlymarks.tiddlyspot.com

w

On Tuesday, April 14, 2015 at 6:37:10 PM UTC+2, Rustem wrote:

 I’m good with cut and paste ;) so I could try and cobble something 
 together that works for me, by looking at existing examples.

 Parts I’d like to have in my bookmarking implementation:

- tiddler controls button for “Create a bookmark tagged with the 
current tiddler” 
- template for using in $list macro 
- custom view and edit templates for tiddlers tagged “Bookmark” 

 I found two so far, are there more examples of using TW5 for bookmarking?

1. http://ooktech.com/jed/externalbrain/#Bookmarks%20by%20Tags 
2. http://giffmex.org/experiments/tidmarks.html 

 —R.
 ​


-- 
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/a8501618-58a3-40bf-92de-40bf63c36665%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Building a Mobile Menu for TiddlyWiki

2015-04-14 Thread Jan Johannpeter

Hello,
I made a naive attempt to implement mmenu to TiddlyWiki.
I would dearly like to have the funktionality of MMenu because I would 
like to have a SwipeMenu and drill-down-navigation  to be able to use TW 
on a smartphone or small screen.
Obviously it was a little too optimistic thinking that following the 
tutorial of MMenu would work for TW as well.


Well if anyone wants to give it a further try, here is a TiddlyWiki with 
all the necessary files already packed in Tiddlers.

https://www.dropbox.com/s/xpxcs9x0r59j283/MMenuTest.html?dl=0

I think its worth it but I'll have to do some learning first.

Yours Jan

--
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/552D9254.1080001%40web.de.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] [TW5] Importing large number of text files

2015-04-14 Thread Rick
Already tried that...there is no 'paste' option in the console...most
likely this is very simple but I don't see it

On Mon, Apr 13, 2015 at 5:45 PM, Eric Shulman elsdes...@gmail.com wrote:

 On Monday, April 13, 2015 at 1:33:26 PM UTC-7, RickL wrote:

 How does this work with Chrome?  Pardon my ignorance as I am no
 developer, but I like the idea of changing all these tiddlers with one click


 In Chrome, you can use ctrl-shift-j to quickly open the developer
 'console'.  Then, paste in the code provided by Jeremy.  Because it uses
 TiddlyWiki-defined core functions, it will work the same in every browser.

 enjoy,
 -e
 Eric Shulman
 TiddlyTools / ELS Design Studios

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

 --
 You received this message because you are subscribed to a topic in the
 Google Groups TiddlyWiki group.
 To unsubscribe from this topic, visit
 https://groups.google.com/d/topic/tiddlywiki/7q8mYGUZ3lo/unsubscribe.
 To unsubscribe from this group and all its topics, 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/f4eaee6d-71fc-43d0-87ac-c8c82e687ff3%40googlegroups.com
 https://groups.google.com/d/msgid/tiddlywiki/f4eaee6d-71fc-43d0-87ac-c8c82e687ff3%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/CAK-Y%3DBAOcKQgju7Y69SvGm9an%3DHtwXRj7PqumS%3DiuXSXmQrc5g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Tiddler inclusion or tiered tagging?

2015-04-14 Thread Mat
Do I interpret this right:

The hierarcy you refer to is manifested as tags, i.e you're not talking 
about an actual aggregation or some applied widget, right?

When you say the reader should be able to follow the text both ways, you 
mean access to a parent tag and children tags. The parent tags are the tag 
pills. Getting the children links to show is definitely doable, and should 
even be very easy - but unfortunately I'm a bit sucky at this so I'm not 
sure of the commands. Tobias has a tagglytagging plugin 
http://tobibeer.github.io/tb5/#Taggly%20Tagging%20For%20TW5 for tw5 that 
you may want to try. (For some reason it is not performing correctly for 
me.)

And to include a tiddler inside another tiddler - sure, you just 
transclude, i.e type {{TitleOfTiddlerToSee}} in the other 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.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/e2116be2-a475-47c9-834e-fd28bbed7b73%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Building a Mobile Menu for TiddlyWiki

2015-04-14 Thread Jed Carty
That does look like it could be very useful. I don't know if it would be 
better or not but you may be able to create something equivalent to that 
using only TW5, which is partly my goal for my icon menus 
http://ooktech.com/iconmenus/.

I think that TW5 is much more mobile friendly than TWc. That or I was doing 
something wrong when I was using TWc, which is very possible.

-- 
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/c962fa3d-a49b-4a15-a6bd-3254b0eeb045%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] java is dying

2015-04-14 Thread @atomi


This https://www.chromium.org/developers/npapi-deprecation/ appears to kill 
the java plugin to run tiddlywiki in browser.

For now you can re-enable it in about://flags but that options seems to be 
going away in September as well.

-- 
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/409e1736-386a-4a9a-8303-598e3d31776e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.