[tw] Re: TiddlyWiki hangout #79 on Tuesday 10th February 2015 at 4pm GMT

2015-02-10 Thread Jeremy Ruston
TiddlyWiki Hangout #79 is about to start. Watch or post questions at: https://plus.google.com/events/c808253a2dtiimn3on0uioac0us Or join in at: https://plus.google.com/hangouts/_/hoaevent/AP36tYcVI0LqvROxVSJiAu3Fj9sTI5SUBOGc0-zaD0hcZ94PObsYFA Best wishes Jeremy On Fri, Feb 6, 2015 at 5:28

[tw] Re: basic question: list of sub or relevant tags/contents in an expandable way

2015-02-10 Thread László Zsigmond
Thanks. So the tiddler's content that is inserted into the sidebar is: div class='tc-table-of-contents' toc-selective-expandable 'jobs' /div Its tag is $:/tags/SideBar Its fields are: caption:{{$:/language/SideBar/Contents/Caption}} list-after:$:/core/ui/SideBar/Open One of the tiddlers that are

[tw] Re: CKEditor replace by class

2015-02-10 Thread Duarte Farrajota Ramos
Yes, this was the one I mentioned in the original post, I had seen it around before, that looks really really promising, one big step in the right direction, congrats on the great work. Find and replace sure is a godsend, I hope it becomes an integral part of official releases some day. It is

[tw] CKEditor replace by class

2015-02-10 Thread Duarte Farrajota Ramos
Hello everyone I was hoping some of the experts here could help me with something I wanted to achieve with TiddlyWiki5 So one of the biggest personal barriers stopping me from using TW5 as my main go to note taking application is the lack of a WYSIWYG editor (my guess is this is also probably

[tw] Re: CKEditor replace by class

2015-02-10 Thread Duarte Farrajota Ramos
Ok, never mind, I was midway typing my post when I decided to try again and somehow it started working, It seems I was missing a full refresh. Just to make sure, - I started with an empty tiddlywiki 5.1.7 - Imported the plugin by dragging the link $:/plugins/bj/visualeditor - Accepted

[tw] Re: CKEditor replace by class

2015-02-10 Thread BJ
On Tuesday, February 10, 2015 at 7:33:37 PM UTC-6, Duarte Farrajota Ramos wrote: Ok, never mind, I was midway typing my post when I decided to try again and somehow it started working, It seems I was missing a full refresh. Just to make sure, - I started with an empty tiddlywiki

Re: [tw] Re: to paste textNode as html

2015-02-10 Thread BJ
Hi sini-Kit, On Tuesday, February 10, 2015 at 2:39:34 PM UTC-6, sini-Kit wrote: if I write im1.im3...im4 getAttribute will not work :( if I paste $image source= images/products/products_big/418.jpg / as HTMl (or textnode) it looks like simple text (not an image) I think I don`t

[tw] [TW5] Selecting all text displayed on a single tiddler

2015-02-10 Thread Jed Carty
Is there a way to use ctrl+a to just the text in a rendered tiddler the way you can select all text in a editor field? I have made my citations library generate the context of a .bib file for LaTeX and I would like to be able to just use ctrl+a to select it so I can copy and paste it into a

[tw] Re: CKEditor replace by class

2015-02-10 Thread Duarte Farrajota Ramos
That'd be an useful addition. Also just remembered, when selecting a chunk of text to convert to a link perhaps automatically assign it to the display text part of the link, since that is probably the most common use scenario. Tiddlywiki converts external links automatically anyway, and handles

Re: [tw] Re: to paste textNode as html

2015-02-10 Thread sini-Kit
Thank you it works! I make macros here is the demo http://novye-podarki.ru/heeg.html#test2 I paste this slider with the code $slider im1=images/products/products_big/418.jpg im2=images/products/products_big/419.jpg im3=images/products/products_big/420.jpg / it works for 1-5 images. to

[tw] Re: Can I have ribbon on a specific tiddler?

2015-02-10 Thread Tobias Beer
Would it be possible to have the tiddler stick on top left corner of the tiddler? That will avoid the flexible width. Of course it is, I simply just googled GitHub ribbon css until I found something like this: - http://codepen.io/eode9/pen/twkKm -

[tw] Re: [TW5] Comparing Tiddlers side by side

2015-02-10 Thread The Bo
Hi Birthe, ah, it was so easy. Thanks! :) Now my code looks like this and its working fine: table colgroup width=50% span=2/colgroup tr td valign=top ''@@color:green;$select tiddler='$:/generated-list1' $list filter='[all[orphans]]' option$view field='title'//option /$list /$select@@'' $tiddler

[tw] Re: basic question: list of sub or relevant tags/contents in an expandable way

2015-02-10 Thread Tobias Beer
I tried to figure this out by my self from http://tiddlywiki.com/#TableOfContentsMacro but I miss something or my TiddlyWiki isn't behaving as supposed to. Any chance we can peek at your problematic document (or a stripped down version thereof)? Would whatever you tried also fail on

[tw] Re: (TWC) manipulating tags on closed tiddlers (e.g. as displayed in lists)

2015-02-10 Thread jpt
There is a question to this I would have: Is it possible to take a plug-in that has certain parameters built in (or not) and add any parameter one wants through evalled parameters? Like TagSearch (http://tagsearch.tiddlyspot.com/), which doesn't seem to have the option to have it refer to any

[tw] (TWC) ReminderPlugin and triggering 2 macros with one click

2015-02-10 Thread jpt
Here is a question I have: The ReminderPlugin (http://remindermacros.tiddlyspot.com/) has the option to filter out reminders by tag (amongst other things). What I am trying to do is make a distinction between: 1. reminders (which are just that, certain birthdays, when to get one's hair

Re: [tw] Re: to paste textNode as html

2015-02-10 Thread Jeremy Ruston
Hi sini-Kit If you're creating a widget that needs to generate an HTML string then you can use innerHTML. For example: /* Render this widget into the DOM */ AddUpWidget.prototype.render = function(parent,nextSibling) { this.parentDomNode = parent; this.computeAttributes(); this.execute(); var

Re: [tw] Re: [TW5] Comparing Tiddlers side by side

2015-02-10 Thread Jeremy Ruston
I'm keen to integrate a diff viewer into the core, with several use cases: * Reviewing imported tiddlers * Reviewing the results of search and replace before committing them * Tiddler versioning * Reviewing shadow overrides To do it, we'll need to integrate a 3rd party diff library such as this

[tw] Re: [TW5] Comparing Tiddlers side by side

2015-02-10 Thread Felix Küppers
I think adding a split view for the import mechanism would be nice too. I added this as an issue at github... https://github.com/Jermolene/TiddlyWiki5/issues/1487 -Felix -- You received this message because you are subscribed to the Google Groups TiddlyWiki group. To unsubscribe from this

[tw] Re: Bug: hard linebreaks plus angle brackets plus code block

2015-02-10 Thread PMario
IMO the easiest way would be to cover the e-mail address in a code block with backticks. eg: `m...@example.com` -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

[tw] Re: [TWC] Fwd: All About ToggleText

2015-02-10 Thread Paul Lee
Does that make sense? So, *SomeTiddler* can contain *anything*, a script, just wikitext, whatever you want it to... like *ToggleText*. First, thanks again for the explanations. I'm not sure what kind of ultimate project I'm going to be developing in TiddlyWiki Classic yet, but you've

[tw] Re: (TWC) manipulating tags on closed tiddlers (e.g. as displayed in lists)

2015-02-10 Thread Tobias Beer
Is it possible to take a plug-in that has certain parameters built in (or not) and add any parameter one wants through evalled parameters? Like TagSearch (http://tagsearch.tiddlyspot.com/), which doesn't seem to have the option to have it refer to any specific tiddler like I described

[tw] Re: (TWC) ReminderPlugin and triggering 2 macros with one click

2015-02-10 Thread Tobias Beer
Hi jpt, That would require for someone to extend ReminderMacros to cater for reminder-tags... as those sure are not actual tags... and would also need for a way to perhaps more reliably enter a reminder-tag from a predefined list or even from existing ones... non-trivial. Best wishes, Tobias.

Re: [tw] Re: [TW5] Comparing Tiddlers side by side

2015-02-10 Thread Felix Küppers
Hi Jeremy, Great use cases you mentioned there. Using a diff library would be a killer feature. It could be also used to quickly signal at import whether tiddlers differ or not by e.g. coloring a title green or red. Then a user could open the diff viewer for a closer look. -Felix On 10.02.2015

[tw] Re: CKEditor replace by class

2015-02-10 Thread 'Stephen Kimmel' via TiddlyWiki
Duarte, This is a bit off-topic for your question, but I would appreciate it if you would take a look at my editor project and give me some feedback on it. http://tw5editor.tiddlyspot.com/ It's not a WYSIWYG editor but I started working on it to address some of what I saw as shortcomings with

Re: [tw] Re: to paste textNode as html

2015-02-10 Thread Jeremy Ruston
Hi sini-Kit if I write im1.im3...im4 getAttribute will not work :( Can you show the code you've tried? if I paste $image source= images/products/products_big/418.jpg / as HTMl (or textnode) it looks like simple text (not an image) If you're generating widgets (as opposed to plain

[tw] Re: Can I have ribbon on a specific tiddler?

2015-02-10 Thread Tobias Beer
One more question, how can I put the ribbon on top right of the tiddler with your script provided in earlier post? Not sure what you mean. If you want a dynamic ribbon, you need a *template* like the one I provided. There isn't any scripting going on, it's plain wikitext and then some

[tw] Re: basic question: list of sub or relevant tags/contents in an expandable way

2015-02-10 Thread László Zsigmond
Hi Tobias, Ahaa... it really work this way. hmm... I'll have to adapt my thinking/s to it. Thanks for helping me figuring this out. Best wishes, Laci marți, 10 februarie 2015, 21:46:30 UTC+2, Tobias Beer a scris: Hi László, I think you have a slight misunderstanding as to how the toc

[tw] Re: [TW5] TiddlyMap

2015-02-10 Thread Jon
Thanks, Felix and I've put it onto GitHub. You're probably already familiar with FreePlane, but if not, please have a look (also open source) Best wishes Jon. On Sunday, 8 February 2015 11:53:00 UTC, Jon wrote: Hi, I've been playing around with TiddlyMap which I think is quite fabulous.

[tw] Re: basic question: list of sub or relevant tags/contents in an expandable way

2015-02-10 Thread Tobias Beer
Hi László, I think you have a slight misunderstanding as to how the toc works. It works entirely by tagging. So, at your Linux tiddler, open the more dropdown and click new here, then create a linux job... et voilà. Whatever the content of the Linux tiddler is quite irrelevant to the toc.

Re: [tw] Re: [TW5] TiddlyMap

2015-02-10 Thread Felix Küppers
Hi Jon, this is a smart way to do it and I already tried it myself but I encountered some errors so I deactivated this feature (setting the description field to text) in the current version right after I wrote you the last message. I need to fix some bugs before I can make this work and it might

Re: [tw] Re: to paste textNode as html

2015-02-10 Thread sini-Kit
if I write im1.im3...im4 getAttribute will not work :( if I paste $image source= images/products/products_big/418.jpg / as HTMl (or textnode) it looks like simple text (not an image) I think I don`t know something and go in the wrong way. вторник, 10 февраля 2015 г., 22:46:13

[tw] Re: CKEditor replace by class

2015-02-10 Thread Tobias Beer
So I was wondering if there is an easy way to integrate CKEditor into tiddlywiki, intentionally keeping it as external dependency and without the need for complex addons that need maintenance. You should find one at http://bjtools.tiddlyspot.com Create a tiddler and set the type to the

Re: [tw] Re: [TW5] TiddlyMap

2015-02-10 Thread Jon
Sounds good to me! Jon On Tuesday, 10 February 2015 22:54:37 UTC, Tobias Beer wrote: I understand you don't want to leave the fullscreen map, but the concept of tiddlymap is to use the existing structures of tiddlywiki, i.e. content is not displayed in the map but in the story river and

[tw] Puzzled by SVG Icons

2015-02-10 Thread Don Robertson
Greetings, I'm a bit puzzled by the svg icons I have added. I have removed the fill colours from the icons. If I set the icon tiddler to type image/svg+xml, the icon will only show up as black. If I remove the type, the icon will show up as the colour specified in the css. When I look at

[tw] Re: CKEditor replace by class

2015-02-10 Thread Duarte Farrajota Ramos
Yes I found that one earlier here at the forum using the search. That is exactly what I was looking for, almost perfect for me. Unfortunately, it bumps right into my biggest fear of relying on plugins: it naturally doesn't seem to work with the latest 5.1.7 version :( Oh well, worth the try,

[tw] Re: [TW5] TiddlyMap

2015-02-10 Thread Peter Miller
Agreed. I got a free account last week so I could keep up with TiddlyMap and it was pretty painless. On Tuesday, February 10, 2015 at 12:17:20 PM UTC, PMario wrote: On Monday, February 9, 2015 at 11:28:02 PM UTC+1, Jon wrote: I tried registering at GitHub to post this but it said the free

[tw] Re: [TW5] TiddlyMap

2015-02-10 Thread Jon
Ah, misread it. Done now. Jon On Sunday, 8 February 2015 11:53:00 UTC, Jon wrote: Hi, I've been playing around with TiddlyMap which I think is quite fabulous. Are there any updates on it's development? Just a couple of suggestions: When deleting a node, the default is to delete the

[tw] Re: Bug: hard linebreaks plus angle brackets plus code block

2015-02-10 Thread Astrid Elocson
Very true, although it's then harder to make the address be a link. And you wouldn't need the angle brackets – they're really only there to delimit the address in ordinary prose. The typographical styling of the code element would be a sufficient delimiter. – æ -- You received this message

Re: [tw] Password projection on Node.js installation

2015-02-10 Thread Austin Storm
Is there any way to run one's own TiddlySpot? I'm trying to replace my Wordpress with Tiddlywiki. On Sat, Feb 7, 2015 at 2:38 AM, Jeremy Ruston jeremy.rus...@gmail.com wrote: Hi Austin On Sat, Feb 7, 2015 at 3:01 AM, Austin Storm austinst...@gmail.com wrote: Am I correct in thinking that

[tw] Re: Password projection on Node.js installation

2015-02-10 Thread Tobias Beer
The version of store.php listed there didn't work for me, I had to use https://code.google.com/p/bidix/source/browse/trunk/TiddlyWiki/contributors/BidiX/serversides/UploadService/store.php?r=140. I have no idea why. Oh, wow... I just compared the two and noticed that the one I was

[tw] Re: CKEditor replace by class

2015-02-10 Thread BJ
HI Duarte, could you explain what problems you are seeing with the visualeditor plugin - I have tried to with firefox and it seem to work ok with tw 5.1.7 Cheers BJ (author of visualeditor plugin) On Tuesday, February 10, 2015 at 6:30:05 PM UTC-6, Duarte Farrajota Ramos wrote: Yes I found