Re: [tw] [TW5] Hosting my own on Ubuntu box - a guide?

2014-06-24 Thread Jeremy Ruston
Hi Kevin

I'm afraid I don't have direct experience of setting up TW5 on Ubuntu, but
I'd expect it to work as usual (ie install Node.js, then use npm to install
TiddlyWiki).

I'm keen to improve the docs on tiddlywiki.com; if you do get it working
perhaps you could document the process for others?

Best wishes

Jeremy



On Mon, Jun 23, 2014 at 11:22 PM, Kevin Muncie nivek2...@gmail.com wrote:

 The moment I came across TW5 I was excited about the possibilities of
 having my own to build and store information. I am beginning to learn how
 to manage my own server with a Digital Ocean droplet running Ubuntu 14.04.
 I currently have it setup with nginx and iptables serving a couple small
 static sites I am playing around with.

 *I would like to getting my own TW5 instance running on this box that I
 can then access from a domain name and manage from anywhere and keep backed
 up. *

 *Is this currently a feasible thing to do? Are there any comprehensive
 guides to doing it?*

 Or am I really overdoing things and I should keep it simple with
 Drive/Dropbox syncing?

 I have node.js and tiddlywiki installed, I can start a server but not sure
 how to make it publicly visible.

 Sorry if these are all very basic questions, I did a little searching
 through the group but did not find anything really basic enough.

 Thanks for your time!
 Kevin

 --
 You received this message because you are subscribed to the Google Groups
 TiddlyWiki group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to tiddlywiki+unsubscr...@googlegroups.com.
 To post to this group, send email to tiddlywiki@googlegroups.com.
 Visit this group at http://groups.google.com/group/tiddlywiki.
 For more options, visit https://groups.google.com/d/optout.




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

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] [TW5] Node.js vs. single HTML

2014-06-24 Thread Jeremy Ruston
Hi Ulrik

 Are there any performance advantages? I am particularly thinking about
memory usage: are the tid-files in the node.js read as needed or are they
all read in at start up, making it not much different from the single HTML
file variant?

Under Node.js all tiddlers are loaded into memory at startup, so there is
little difference in terms of performance.

But of course you can run TW under Node.js to generate a static,
JavaScript-less version of a wiki; in practice that can often give much
better performance in the browser.

 I am interested, because it seems I will be generating a large file - for
now it is just 3mb, but when I add some long tables, it may become close to
10mb. And I will keep adding. I have seen posts that tiddlywiki starts to
slow down dramatically at some point (20mb if my memory serves me well). Is
there any way to avoid that?

We've had reports of people being able to run TW5 documents of 50-100mb.
There are some functions of TW5 that get slower with more tiddlers (mainly
the sidebar lists), but it's straightforward to adapt the UI to avoid them.

Best wishes

Jeremy





On Mon, Jun 23, 2014 at 9:29 PM, Ulrik Stervbo ulrik.ster...@gmail.com
wrote:

 Hello list,

 What are the advantages of running the tiddlywiki as a node.js app rather
 than a single file? Other than the wiki is being run as a server and can be
 accessed from outside.

 Are there any performance advantages? I am particularly thinking about
 memory usage: are the tid-files in the node.js read as needed or are they
 all read in at start up, making it not much different from the single HTML
 file variant?

 I am interested, because it seems I will be generating a large file - for
 now it is just 3mb, but when I add some long tables, it may become close to
 10mb. And I will keep adding. I have seen posts that tiddlywiki starts to
 slow down dramatically at some point (20mb if my memory serves me well). Is
 there any way to avoid that?

 Thanks for any comments.

 Cheers,
 Ulrik

 --
 You received this message because you are subscribed to the Google Groups
 TiddlyWiki group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to tiddlywiki+unsubscr...@googlegroups.com.
 To post to this group, send email to tiddlywiki@googlegroups.com.
 Visit this group at http://groups.google.com/group/tiddlywiki.
 For more options, visit https://groups.google.com/d/optout.




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

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] [TW5] Hosting my own on Ubuntu box - a guide?

2014-06-24 Thread simon.eigeldinger

hi,

i got it working without any problem on debian.
should work the same as on ubuntu.
i got the node.js package from the normal node.js website from 
www.nodejs.org because debian has pretty outdated packages for that.
you just need to follow their instructions how to install. but its 
basically extracting it.
but they have instructions there how to do this correctly and how to 
set this up.
then i got git. git is available as a package on more or less all 
linux distros.

just install with your package manager.
then i pulled the latest unstable version using:

$ git clone git://github.com/Jermolene/TiddlyWiki5.git tw5

then i have the master branch fresh from the git repo.
i currently don't know where the stable versions are residing.

then i cd into the dir:

$ cd tw5


and do a quick update of the git repo:

$ git pull

then i link npm with the git repo:

$ npm link

then its installed.

You can also use the following command to install tw stable that way:

$ npm install -g tiddlywiki

when i am not mistaken.


hope this helps somehow.

greetings,
simon

On Tue, 24 Jun 2014 08:00:31 +0100
 Jeremy Ruston jeremy.rus...@gmail.com wrote:

Hi Kevin

I'm afraid I don't have direct experience of setting up TW5 on 
Ubuntu, but
I'd expect it to work as usual (ie install Node.js, then use npm to 
install

TiddlyWiki).

I'm keen to improve the docs on tiddlywiki.com; if you do get it 
working

perhaps you could document the process for others?

Best wishes

Jeremy



On Mon, Jun 23, 2014 at 11:22 PM, Kevin Muncie nivek2...@gmail.com 
wrote:


The moment I came across TW5 I was excited about the possibilities 
of
having my own to build and store information. I am beginning to 
learn how
to manage my own server with a Digital Ocean droplet running Ubuntu 
14.04.
I currently have it setup with nginx and iptables serving a couple 
small

static sites I am playing around with.

*I would like to getting my own TW5 instance running on this box 
that I
can then access from a domain name and manage from anywhere and keep 
backed

up. *

*Is this currently a feasible thing to do? Are there any 
comprehensive

guides to doing it?*

Or am I really overdoing things and I should keep it simple with
Drive/Dropbox syncing?

I have node.js and tiddlywiki installed, I can start a server but 
not sure

how to make it publicly visible.

Sorry if these are all very basic questions, I did a little 
searching

through the group but did not find anything really basic enough.

Thanks for your time!
Kevin

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

TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from it, 
send an

email to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.





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

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

To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


--
Simon Eigeldinger
simon.eigeldin...@vol.at

--
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] [TW5] Node.js vs. single HTML

2014-06-24 Thread Xavier Cazin
Hi Ulrik,

I am interested, because it seems I will be generating a large file - for
 now it is just 3mb, but when I add some long tables, it may become close to
 10mb. And I will keep adding. I have seen posts that tiddlywiki starts to
 slow down dramatically at some point (20mb if my memory serves me well). Is
 there any way to avoid that?


If you use a sync app like owncloud or dropbox to keep your files safe, you
will see an advantage to the server mode in terms of bandwith usage:
instead of synchronising one big file each time you are changing a tiddler,
you'll sync only the file corresponding to the tiddler you are editing.

Cheers,
Xavier.

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] [TW5] Node.js vs. single HTML

2014-06-24 Thread Ulrik Stervbo
Thanks for the clarification

Cheers,
Ulrik


2014-06-24 9:27 GMT+02:00 Xavier Cazin caz...@gmail.com:

 Hi Ulrik,

 I am interested, because it seems I will be generating a large file - for
 now it is just 3mb, but when I add some long tables, it may become close to
 10mb. And I will keep adding. I have seen posts that tiddlywiki starts to
 slow down dramatically at some point (20mb if my memory serves me well). Is
 there any way to avoid that?


 If you use a sync app like owncloud or dropbox to keep your files safe,
 you will see an advantage to the server mode in terms of bandwith usage:
 instead of synchronising one big file each time you are changing a tiddler,
 you'll sync only the file corresponding to the tiddler you are editing.

 Cheers,
 Xavier.


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


-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [TWC] Re: [tw] Non-proportional text while editing?

2014-06-24 Thread Ton Gerner
Hi Mark,

Replace 'Consolas' monospace; by 'Consolas', monospace;

Note the ','

Cheers,

Ton

On Monday, June 23, 2014 11:33:23 PM UTC+2, Mark Booth wrote:

 In message b0c906f3-2e3c-4999-bc2a-e433a28d3...@googlegroups.com 
 javascript: on 
 Sun, 22 Jun 2014, PMario pmar...@gmail.com javascript: writes 
 Do you use a vanilla TiddlyWiki or one with a modified theme. 
 May be your StyleSheet tiddler isn't activated in the right way. 
 Is it possible to point us to your TW, if it is public. 

 Theme wise, it's vanilla, my current StyleSheet contains: 

 /*{{{*/ 
 /* Blockquote margins are too fat */ 
 .viewer blockquote { margin-left: 1em; } 
 .viewer blockquote blockquote { margin-left: 0.5ex; } 

 /* I think in-tiddler bordered elements (tables and pre blocks) 
 * should line up */ 
 .viewer table, .viewer table.twtable { margin-left: 0.5em; } 

 .tagged {margin:0.5em; } .tagged li, .tagged ul { display:inline; } 
 .tagging {margin:0.5em; } .tagging li, .tagging ul { display:inline; } 

 /* Failed attempt to get the editor area to be monospaced. This works 
 fine in StyleSheetLayout, but not here */ 
 /* 
 .editor input, .editor textarea {display:block; width:100%; 
 font-family: 'Consolas' monospace; 
 } 
 */ 

 /*}}}*/ 

 and StyleSheetPrint contains: 

 /*{{{*/ 
 @media print { 
 #mainMenu, #sidebar, #messageArea, .toolbar, #backstageButton, 
 #backstageArea {display: none !important;} 
 #displayArea {margin: 1em 1em 0em;} 
 noscript {display:none;} /* Fixes a feature in Firefox 1.5.0.2 where 
 print preview displays the noscript content */ 

 .tagged {margin:0.5em; } .tagged li, .tagged ul { display:inline; } 
 .tagging {margin:0.5em; } .tagging li, .tagging ul { display:inline; } 
 } 
 /*}}}*/ 

 with all of the rest v2.6.5 standard (i.e. shadowed). 

 I know that StyleSheet is being used because the tag insets are all 
 horizontal, as I want them, so it must be something else. 

 Regards, 


 Mark.. 
 -- 
 Mark Booth 


-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [TWC] Re: [tw] Non-proportional text while editing?

2014-06-24 Thread PMario
On Monday, June 23, 2014 11:33:23 PM UTC+2, Mark Booth wrote:

 /* Failed attempt to get the editor area to be monospaced. This works  
 fine in StyleSheetLayout, but not here */ 
  
 .editor input, .editor textarea {display:block; width:100%; 
 font-family: 'Consolas' monospace; 
 } 
  


try:  

.editor input, .editor textarea {
display:block; width:100%; 
font-family: 'Consolas', monospace; 
} 

See the comma.


-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [TWC] Re: [tw] Non-proportional text while editing?

2014-06-24 Thread PMario
https://developer.mozilla.org/de/docs/Web/CSS/font-family
-m

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Announcing TiddlyWiki 5.0.13-beta

2014-06-24 Thread Jeremy Ruston
TiddlyWiki 5.0.13-beta has just been released:

http://tiddlywiki.com/

Highlights include:

* Global macros
* New select widget for generating HTML dropdowns
* Greatly improved accessibility for screen reader users
* iframes for embedding HTML
* Support for external images that are stored outside the HTML file
* Dozens of smaller usability and hackability enhancements

See the release note for full details:

http://tiddlywiki.com/#Release%205.0.13-beta

As ever, TiddlyWiki is a collaborative effort and I'd like to thank the
many contributors who've devoted their time and attention to making
TiddlyWiki better.

Best wishes

Jeremy

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

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] TW5 as outliner?

2014-06-24 Thread Mark Brown
Anyone given any thought to how TW5 might be used as an outliner? Thus far, 
it is simple to use lists and nested lists to summarise tiddlers as an 
outline. What would it take to go the other way and create tiddlers from an 
outline? 

At its simplest, one could outline with wikitext making each item a link, 
then click a link to create a blank tiddler and add content.  What that 
doesn't do, as far as I can see, is attach any of the order or hierachy to 
the item tiddlers themselves.

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TiddlyWiki Hangout #39 on Tuesday 18th March at 4pm GMT

2014-06-24 Thread PMario
Some more nightly builds :) The annotations for ho 39.

video : https://www.youtube.com/watch?v=4fw0QJTpHSQ
QA enabled: 
https://www.youtube.com/watch?feature=player_detailpagev=4fw0QJTpHSQ

annotations: http://pmario.tiddlyspace.com/#2014-03-18-TW5-hangout-39

ho40, ho41 still missing :)

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


[tw] Re: Announcing TiddlyWiki 5.0.13-beta

2014-06-24 Thread Alberto Molina
Hi Jeremy,

Thanks for the release!

Seamless upgrade process (for the first time, I didn't see any problem 
while upgrading).

Regards,

Alberto

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 as outliner?

2014-06-24 Thread PMario
If you use a structure like this it works.

* [[tiddler 1]]
** [[tiddler 1.1]]
** [[tiddler 1.2]]
* [[tiddler 2]]
** AnsSoOn
* [[tiddler 3]]

-m

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 as outliner?

2014-06-24 Thread PMario
On Tuesday, June 24, 2014 11:56:38 AM UTC+2, Mark Brown wrote:

 At its simplest, one could outline with wikitext making each item a link, 
 then click a link to create a blank tiddler and add content.  What that 
 doesn't do, as far as I can see, is attach any of the order or hierachy to 
 the item tiddlers themselves.


right! 

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] ]tw5] installing languages

2014-06-24 Thread simon.eigeldinger

hi all,

how do i install/add languages to my tiddlywiki?

greetings,
simon

--
Simon Eigeldinger
simon.eigeldin...@vol.at

--
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] ]tw5] installing languages

2014-06-24 Thread Jeremy Ruston
1. Visit tiddlywiki.com in a new window
2. open control panel plugins tab
3. locate desired language plugin and drag link into a browser window
containing your wiki
4. save and refresh your wiki

Best wishes

Jeremy




On Tue, Jun 24, 2014 at 2:01 PM, simon.eigeldin...@vol.at wrote:

 hi all,

 how do i install/add languages to my tiddlywiki?

 greetings,
 simon

 --
 Simon Eigeldinger
 simon.eigeldin...@vol.at

 --
 You received this message because you are subscribed to the Google Groups
 TiddlyWiki group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to tiddlywiki+unsubscr...@googlegroups.com.
 To post to this group, send email to tiddlywiki@googlegroups.com.
 Visit this group at http://groups.google.com/group/tiddlywiki.
 For more options, visit https://groups.google.com/d/optout.




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

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] ]tw5] installing languages

2014-06-24 Thread simon.eigeldinger

hi jeremy,

just tried dragging.
most screenreaders don't support dragging.
and those who do kind of fail by default and work very unreliably with 
this method.


greetings,
simon

On Tue, 24 Jun 2014 14:39:01 +0100
 Jeremy Ruston jeremy.rus...@gmail.com wrote:

1. Visit tiddlywiki.com in a new window
2. open control panel plugins tab
3. locate desired language plugin and drag link into a browser 
window

containing your wiki
4. save and refresh your wiki

Best wishes

Jeremy




On Tue, Jun 24, 2014 at 2:01 PM, simon.eigeldin...@vol.at wrote:


hi all,

how do i install/add languages to my tiddlywiki?

greetings,
simon

--
Simon Eigeldinger
simon.eigeldin...@vol.at

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

TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from it, 
send an

email to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.





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

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

To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


--
Simon Eigeldinger
simon.eigeldin...@vol.at

--
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] ]tw5] installing languages

2014-06-24 Thread simon.eigeldinger

hi,

i also tried cofpying the link into the browser window which didn't 
work all that well. *smile*



greetings,
simon

On Tue, 24 Jun 2014 14:39:01 +0100
 Jeremy Ruston jeremy.rus...@gmail.com wrote:

1. Visit tiddlywiki.com in a new window
2. open control panel plugins tab
3. locate desired language plugin and drag link into a browser 
window

containing your wiki
4. save and refresh your wiki

Best wishes

Jeremy




On Tue, Jun 24, 2014 at 2:01 PM, simon.eigeldin...@vol.at wrote:


hi all,

how do i install/add languages to my tiddlywiki?

greetings,
simon

--
Simon Eigeldinger
simon.eigeldin...@vol.at

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

TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from it, 
send an

email to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.





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

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

To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


--
Simon Eigeldinger
simon.eigeldin...@vol.at

--
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] TW5 - Styling individual tiddlers based on their tags

2014-06-24 Thread Michael
After reading around a bit in the forum (and some unsuccessful 
experimenting) I am still not sure whether it is possible to change the 
styling of individual tiddlers based on how they are tagged.

The 'Using Stylesheets' information in the TW5 documentation describes only 
how to use custom stylesheets to override the core styling of ALL tiddlers, 
at least this is how it works for me.

Is individual styling possible in TW5?

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 - Styling individual tiddlers based on their tags

2014-06-24 Thread Stephan Hradek
Yes. But you need to change the view template(s).

Either you create a view template which adds one or mor classes to some of 
the dom elements, or you create individual view templates for specifically 
tagged tiddlers.

For example: On http://tw5magick.tiddlyspot.com/ I created a viewtemplate 
viewPerson for the Creating a simple Contacts DB example which changes 
how a tiddler with tag person is displayed.

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TiddlyWiki Hangout 51 on Tuesday 24th June at 4pm BST

2014-06-24 Thread Jeremy Ruston
Hangout #51 is about to start over at:

https://plus.google.com/hangouts/_/hoaevent/AP36tYdMqQKwyMYpqDbz0Hg_VKewXX5bfrCP8XTPaJspDn-T-u_L_Q

Best wishes

Jeremy


On Mon, Jun 23, 2014 at 7:56 AM, Jeremy Ruston jeremy.rus...@gmail.com
wrote:

 TiddlyWiki Hangout #51 will be on Tuesday 24th June at 4pm BST:

 https://plus.google.com/events/cd9v9bgjeaftksp548qnsvontvs

 Feel free to post questions here for the hangout, or via the QA button on
 the event page.

 Best wishes

 Jeremy

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




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

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Treeview for navigation

2014-06-24 Thread fergy quatsch



Hi,

for the old tiddlywiki I was using the twt treeview for creating a nice 
navigation menu (http://twt-treeview.tiddlyspot.com) for my personal wiki. 
What I am looking for is a plugin or makro or somethign else  that creates 
a menu as a tree based on defined tiddlers. Thats means one menuitem per 
tiddler and so on.

Is another treeview or menu plugin available for the new TW5 doing the same 
functionality ?


Kind Regards

Bernd




-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Treeview for navigation

2014-06-24 Thread Stephan Hradek
Did you see the Content tab in the new 5.0.13? Is that sufficient?

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Announcing TiddlyWiki 5.0.13-beta

2014-06-24 Thread Clément Aymé

I have recently updated my wiki from 6.beta to 13.beta and it seems 
SiteTitle  is no longer working even after editing the _content_.  Are you 
aware of similar report ?


Le mardi 24 juin 2014 11:51:38 UTC+2, Jeremy Ruston a écrit :

 TiddlyWiki 5.0.13-beta has just been released:

 http://tiddlywiki.com/

 Highlights include:

 * Global macros
 * New select widget for generating HTML dropdowns
 * Greatly improved accessibility for screen reader users
 * iframes for embedding HTML
 * Support for external images that are stored outside the HTML file
 * Dozens of smaller usability and hackability enhancements

 See the release note for full details:

 http://tiddlywiki.com/#Release%205.0.13-beta

 As ever, TiddlyWiki is a collaborative effort and I'd like to thank the 
 many contributors who've devoted their time and attention to making 
 TiddlyWiki better.

 Best wishes

 Jeremy 

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

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] [TWC] Is it possible to use GridPlugin with numeric slices names?

2014-06-24 Thread Mark Booth
In message CAJfsztcj-yj-8869Wd6dOuMSZA0o-g7WM9D4=dj2wpzentw...@mail.gma
il.com on Mon, 23 Jun 2014, Keith Buckner kabu...@gmail.com writes
... the column names are missing from the header,...

I added the colorblue to this line. to get the column names to show.
I believe the existing one worked fine on tiddlytools.com, with the
light text on dark background, but wasn't visible with dark test on
light background.

gridStyles: '.viewer .grid thead td, .grid thead td {
color:blue;background:transparent; }',

Thanks Kieth, I really didn't expect colours to be hard coded into the
plugin like that.

If anyone has any thoughts about my other problem though, I'd really
appreciate hearing you ideas.

Take care,

Mark..
-- 
Mark Booth

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Treeview for navigation

2014-06-24 Thread Alex V
It would be really great if you generate a complete ToC from the top 
hierarchical tiddler. Something like: 

$list filter=[list[Index]]
* (Recursively add the lists from its listed tiddlers and add 1 * per 
depth level)
/$list

This way it would require no effort to keep the ToC up to date.

It would also be cool if you could make breadcrumbs using a recursive 
listed[] filter.


On Tuesday, June 24, 2014 7:22:41 PM UTC+2, Stephan Hradek wrote:

 Did you see the Content tab in the new 5.0.13? Is that sufficient?


-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] [TW5] Changing TableOfContents to be the first tab in sidebar?

2014-06-24 Thread Måns
Hi TwWizards

First I tried adding TableOfContents as the first element in 
the $:/tags/SideBar's list field:

TableOfContents $:/core/ui/SideBar/Open $:/core/ui/SideBar/Recent 
$:/core/ui/SideBar/Tools $:/core/ui/SideBar/More

to no avail.

I also changed the $:/core/ui/SideBarLists list to this:

tabs [all[shadows+tiddlers]tag[$:/tags/SideBar]!has[draft.of]] 
TableOfContents $:/state/tab/sidebar

which selects the TableOfContents tab as default.

It seems that it works as indtended -  still I have the Open tab as the 
first tab in the sidebar.

What did I miss?

Cheers Måns Mårtensson

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] [TWC] Is it possible to use GridPlugin with numeric slices names?

2014-06-24 Thread Eric Shulman
On Tuesday, June 24, 2014 12:32:02 PM UTC-7, Mark Booth wrote:

 I added the colorblue to this line. to get the column names to show. 
 I believe the existing one worked fine on tiddlytools.com, with the 
 light text on dark background, but wasn't visible with dark test on 
 light background. 

 gridStyles: '.viewer .grid thead td, .grid thead td { 
 color:blue;background:transparent; }', 

 Thanks Kieth, I really didn't expect colours to be hard coded into the 
 plugin like that. 


Colors are NOT hard coded into the plugin.  The CSS style that is 
plugin-defined is background: transparent, and should not be changed. 
 You don't need to modify the plugin code to adjust the colors (or other 
attributes) of the grid column headings... just ADD a rule for your desired 
custom CSS to [[StyleSheet]].  Make sure to use the .grid classname in 
your CSS rule, like this:

.viewer .grid thead td, .grid thead td { color: blue; }

I am looking in to your other problem (showing characters, regardless of 
activities)... It's been a while since I've look through the GridPlugin 
code, so I'm not sure if it's a bug, or a usage issue.  I have to set up a 
test document to try your minimal sample data so I can understand exactly 
what the problem is and then determine a suitable fix or workaround.

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

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

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Problems getting TW to work

2014-06-24 Thread Yakov
Hi Stuart,

first, there's no 4.x series (at least for now), there are only 2.x series 
(called TiddlyWiki Classic, TWc) and 5.x series (called previously 
TiddlyWiki5 and now suggested to be called just TiddlyWiki, but TW5 is used 
as well);

second, TW5 is not fully compatible with the old syntax, plugins etc, so 
going on with some old projects, would probably (but not necessary) require 
TWc;

third, tiddlywiki.com is now for TW5 while TWc is stored at 
classic.tiddlywiki.com (the latest version is 2.8.1);

next, you are describing a situation about TW5, so for the sake of TW5 
development, I suggest to start a new thread with a more clear title like 
[TW5] Buttons on TW5 menu don't work, including saving (currently, I'm 
not using TW5, so I can't be of much assistance in this context);

finally, I suggest you to try TWc as well: go to 
http://classic.tiddlywiki.com/, download TW and see if saving works for you 
(I'm not sure about versioning of TiddlySaver.jar, though: there were some 
discussions and development recently, but I don't know if the new unsigned 
version is included in the download package).

Best regards,
Yakov.

понедельник, 23 июня 2014 г., 23:13:59 UTC+4 пользователь Stuart Dunstan 
написал:

 I presume TW5 is the better option, but a working 4.x would be fine.

 Firefox 30.0, Windows 7.

 When I open empty.html online here: http://tiddlywiki.com/empty.html
  

The cog buttons work. Once I've downloaded it though: (Menu  Save Page) 
 the buttons no longer do, with the exception of the advanced search button, 
 which does.

 TiddlyFox seems to be installed in the FF add-ons.

 Opera (22.0) funstions similarly, except that clicking the buttons makes 
 them have an outline in orange.





-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Problems getting TW to work

2014-06-24 Thread Stuart Dunstan
Thankyou Yakov for your help and patience.

It seems I've been downloading the files in the wrong way. Switching from 
Save Page to clicking on the download buttons allows me to get working TW5 
and TWc!

I have TiddlyWiki back!
I'll probably stick to TWc for now, but I'll read up about 5 as well.

Thanks again  :)

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] TW 5.0.13 File Size Proformance

2014-06-24 Thread Chemaster
I have a Tiddly Wiki 5.0.13 file that has 101 Tiddliers and is 3.7 meg in 
size encrypted. Of coarse the blank size was around point .8 meg or so.  I 
currently have a few images embed within the program but will cut back more 
and more if possible. I am not using any addon's will have no plans of 
using any.

The file will be used locally on a hard drive but I plan on expanding it to 
around 500 - 1000 Tiddliers' total.

Currently there are no proformance issues but given this situation should I 
expect some later on? Should I do certain now in advance to prevent issues?

Thanks,

Chemaster

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] No Contents Tab on new version

2014-06-24 Thread Raymond McDowell
Maybe I'm doing something wrong, but when I download TW 5.0.13 I don't see 
the contents tab. I tried it both with a migrated version (importing my 
wiki) and then an empty version. In both cases I see no contents tab. When 
I check out the core tiddler I see it listed, but there's none in the 
actual version. Any way I can correct 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.
For more options, visit https://groups.google.com/d/optout.


[tw] TW5.013 no contents tab on sidebar

2014-06-24 Thread Raymond McDowell
 Maybe I'm doing something wrong, but when I download TW 5.0.13 I don't see 
the contents tab. I tried it both with a migrated version (importing my 
wiki) and then an empty version. In both cases I see no contents tab. I've 
tried on two separate computers. Both using FireFox.  When I check out the 
core tiddler I see it listed, but there's none in the actual version. Any 
way I can correct 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.
For more options, visit https://groups.google.com/d/optout.


[tw] [TW5] Changing TableOfContents to be the first tab in sidebar?

2014-06-24 Thread Greg Marine
On the TableOfContents tiddler, have you set the list-before: field to the open 
tab ($:/core/ui/SideBar/Open)? I did this and now the contents tab is the first 
tab

Cheers,
Greg

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5.013 no contents tab on sidebar

2014-06-24 Thread Jon
Hi Raymond,
I wondered the same thing before dragging the TableOfContents tiddler to my 
wiki which can then be amended to your own purposes.
Jon
On Wednesday, 25 June 2014 05:35:21 UTC+1, Raymond McDowell wrote:

 Maybe I'm doing something wrong, but when I download TW 5.0.13 I don't see 
 the contents tab. I tried it both with a migrated version (importing my 
 wiki) and then an empty version. In both cases I see no contents tab. I've 
 tried on two separate computers. Both using FireFox.  When I check out the 
 core tiddler I see it listed, but there's none in the actual version. Any 
 way I can correct 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.
For more options, visit https://groups.google.com/d/optout.


[tw] Adding tags to Table of Contents

2014-06-24 Thread Jon
For anyone where this isn't obvious and would be useful, I've added tags 
which I often refer to in the ToC ( by pasting {{Tag 
name||$:/core/ui/TagTemplate}} in place of eg. ## [[GettingStarted]] )
Jon

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5.013 no contents tab on sidebar

2014-06-24 Thread Raymond McDowell
Thanks Jon, worked like a charm.

On Wednesday, June 25, 2014 12:35:21 PM UTC+8, Raymond McDowell wrote:

 Maybe I'm doing something wrong, but when I download TW 5.0.13 I don't see 
 the contents tab. I tried it both with a migrated version (importing my 
 wiki) and then an empty version. In both cases I see no contents tab. I've 
 tried on two separate computers. Both using FireFox.  When I check out the 
 core tiddler I see it listed, but there's none in the actual version. Any 
 way I can correct 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.
For more options, visit https://groups.google.com/d/optout.