[tw] Download TiddlyWiki.org theme?

2013-02-27 Thread Adam Sneller
I really like the theme TiddlyWiki.org uses. Does anyone know if this can be download installed on our own local TiddlyWiki? Thanks! -Adam -- You received this message because you are subscribed to the Google Groups TiddlyWiki group. To unsubscribe from this group and stop receiving emails

[tw] Re: jQuery UI?

2013-02-28 Thread Adam Sneller
I have the same problem. I've tried putting this in the MarkupPreHead, MarkupPostHead. I even tried pasting it into the tiddler where it was being called. Nothing seems to work. Can anyone shed some light on this?? On Wednesday, January 30, 2013 1:55:48 AM UTC-8, Arc Acorn wrote: Is it

Re: [tw] Will or will we not have WYSIWYG in Tiddly v5

2013-03-01 Thread Adam Sneller
HI Jeremy, I'd like to 2nd this. Like Yakov, I am also interested in using TiddlyWiki for scientific notetaking. I think this make a terrific Log Book and Journal. In the past, I have really enjoyed using LyX for writing LaTeX. Instead of taking a straight WYSIWYG approach, LyX takes a

[tw] Re: Download TiddlyWiki.org theme?

2013-03-01 Thread Adam Sneller
Hi Tobias, Thanks for your reply! I'll check this out. On Friday, March 1, 2013 7:16:36 AM UTC-8, Tobias Beer wrote: Well, and of course the way I defined the ColorPalette reusing the same colors also plays some role in the looks ;-) Cheers, Tobias. -- You received this message because

[tw] Re: Will or will we not have WYSIWYG in Tiddly v5

2013-03-01 Thread Adam Sneller
Thanks Mario—these look promising! On Friday, March 1, 2013 3:24:51 PM UTC-8, PMario wrote: On 1 Mrz., 23:16, Adam Sneller adam%earth2adam@gtempaccount.com wrote: In the past, I have really enjoyed using LyX for writing LaTeX. Instead of taking a straight WYSIWYG approach, LyX

[tw] Piping MatchTags to jQueryUI/sortable

2013-03-02 Thread Adam Sneller
I am trying to generate an unordered list (HTML) using Eric Shulman's TodoList template. I then want to make this sortable with the jQueryUI, so that I can manually reorder items via drag and drop. I'm having trouble creating the html from MatchTags... and of course jQuery doesn't want to fire

[tw] Re: New Plugin: Kanban Productivity Tool

2013-03-02 Thread Adam Sneller
Wow, this plugin is amazing! I've been struggling to create something similar with the jQueryUI... then it occured to me to just google TiddlyWiki Kanban (sigh). A couple of notes: 1. I noticed that the floating board element breaks the bottom of the tiddler div (this is with the K2WS

[tw] Re: Piping MatchTags to jQueryUI/sortable

2013-03-02 Thread Adam Sneller
Thank you both for your comments. I will try and get something posted online so you can see what I'm after. Basically, I'm looking to create a todo list, where each item maps to a tiddler (similar to Eric Shulman's TodoList example). But I want the ability to manually reorder todo items by

[tw] Re: Piping MatchTags to jQueryUI/sortable

2013-03-03 Thread Adam Sneller
https://lh5.googleusercontent.com/-VRzHCDkGS9g/UTMosZhg06I/AAM/PJSoddsiLKQ/s1600/screenshot.tif A couple more things: Here is the version that I adapted it for TW. For this test, I actually used jQuery.sortable() instead of the DragSort library, but it works fine. The only problem is

[tw] Re: Download TiddlyWiki.org theme?

2013-03-03 Thread Adam Sneller
stated above) but it's doable! Yeah that color scheme is very catchy. :) Best regards, Julio http://jpen24mtc.tiddlyspot.com/ On Friday, March 1, 2013 5:27:18 PM UTC-5, Adam Sneller wrote: Hi Tobias, Thanks for your reply! I'll check this out. On Friday, March 1, 2013 7:16:36 AM UTC-8

[tw] Re: Piping MatchTags to jQueryUI/sortable

2013-03-03 Thread Adam Sneller
Mario Thanks! I haven't been able to find much documentation on the TiddlyWiki API. This code is a big help! Best, -Adam On Sunday, March 3, 2013 3:33:59 AM UTC-8, PMario wrote: Hi Adam, Following this topic, the following video may be of interest. 3:17 min

[tw] Modify DOM with jQuery and Save work back to TW?

2013-03-03 Thread Adam Sneller
I am working on a plugin that lets the user manipulate the DOM for a tiddler with jQuery (sorting an unordered list via drag and drop). I would like to then save these changes back to the tiddler. Does anyone know how to do this? I had thought about using Ajax but... TW doesn't have a server??

[tw] Re: Modify DOM with jQuery and Save work back to TW?

2013-03-03 Thread Adam Sneller
Nevermind. 2 days of searching and I find my answer immediately after writing this post! I just stumbled onto: http://tiddlywikidev.tiddlyspace.com/ On Sunday, March 3, 2013 11:01:09 PM UTC-8, Adam Sneller wrote: I am working on a plugin that lets the user manipulate the DOM for a tiddler

[tw] Passing a Div through a macro to plugin?

2013-03-04 Thread Adam Sneller
Can anyone tell me how to pass a div from a tiddler, through a macro to a plugin? Basically, I have a tiddler that looks like this: *HTML UL id=#myList LI/LI ... LI/LI /UL /HTML* and I want to pass *#myList* through a macro... something like this?? *sortList,

Re: [tw] possible solution for tiddlywiki local saving problem in modern browsers

2013-03-04 Thread Adam Sneller
I hope this isn't off-topic but... have you guys thought about just incorporating a small portable server? There are a whole bunch of these that have really tiny footprints (like 40KB tiny). Most are written in Java so they are cross-plateform compatible. And some are only a single file! From

[tw] Re: Passing a Div through a macro to plugin?

2013-03-04 Thread Adam Sneller
., 10:04, Adam Sneller adam%earth2adam@gtempaccount.com wrote: Can anyone tell me how to pass a div from a tiddler, through a macro to a plugin? Basically, I have a tiddler that looks like this: *HTML UL id=#myList LI/LI ... LI/LI /UL /HTML

[tw] Re: Linking to a tiddler inside an html space.

2013-03-05 Thread Adam Sneller
Tobias, Suppose you want to generate an unordered list of tiddler titles, with each title linking back to its respective tiddler. Something like: jQuery(function() { var tiddlers = store.getTaggedTiddlers(whatever); for (var j = 0; j tiddlers.length; j++) {

Re: [tw] possible solution for tiddlywiki local saving problem in modern browsers

2013-03-05 Thread Adam Sneller
Ha! It sounds like you guys are waaayy ahead of me :) I was just thinking that if a small server was bundled with TW (the current version, not TW5 or TiddlyWeb, etc.) that users could save changes with Ajax calls or server-side java scripting? ...instead of having to build multiple versions of

[tw] Re: Linking to a tiddler inside an html space.

2013-03-05 Thread Adam Sneller
Hi Tobias, Thank you so much for putting this together! This is really helpful!! Best, -Adam On Tuesday, March 5, 2013 6:41:42 AM UTC-8, Tobias Beer wrote: Hi Adam, No idea how this happened, but my last post got deleted. So here it goes again... You have it a bit backwards ;-) Let

[tw] Re: Modify DOM with jQuery and Save work back to TW?

2013-03-05 Thread Adam Sneller
Yeah, absolutely—happy to share. I might have spoke a little soon though (I'm still figuring this one out). By the way, your documentation on http://tiddlywikidev.tiddlyspace.com/ is awesome! On Tuesday, March 5, 2013 3:07:53 AM UTC-8, Tobias Beer wrote: Hi Adam, If you find the time,

[tw] Re: Modify DOM with jQuery and Save work back to TW?

2013-03-06 Thread Adam Sneller
Okay, as promised... here's the update. I have a script that checks a tiddler for an old tag and swaps it out for a new one, like so: * *// Swap tags* tiddler.tags.remove(senderTag); tiddler.tags.pushUnique(receiverTag);* The trouble is, these changes don't stick once I refresh the page. The

[tw] Re: Modify DOM with jQuery and Save work back to TW?

2013-03-07 Thread Adam Sneller
Wow. As always Tobias, you have provided a wealth of information! Your tip on the setTiddlerTag() method solved two of my problems (I was wondering why my tags list wouldn't update!) Thanks! On Wednesday, March 6, 2013 12:52:29 AM UTC-8, Tobias Beer wrote: Hi Adam, Allow me to be picky

[tw] Re: Piping MatchTags to jQueryUI/sortable

2013-03-07 Thread Adam Sneller
Yeah, I'm not crazy about cookies as a final solution. This was more of a quick and dirty fix so that I could test things out until I found something better... Do you have a recommended method for storing metadata like this? In a shadow tiddler or in a hidden tiddler field perhaps?

[tw] Re: FCKEditor has made me crazy tonight...seems broken ???

2013-03-08 Thread Adam Sneller
Hi Gunnar, Would you mind posting more details about how you were able to install CKeditor on TiddlyWiki? I'm sure a lot of folk (including myself) would love to learn how to implement this! Thanks, -Adam On Friday, March 8, 2013 7:49:06 AM UTC-8, Gunnar Mathisen wrote: I'm trying out

[tw] Re: filedropplugin not working, And a question about images in tiddler.

2013-03-08 Thread Adam Sneller
Has anyone been able to get this to work recently? I have the same problem. I installed FileDrop and set signed.applets.codebase_principal_support to *true* but FF still insists on opening images files when I drag them to the window..? On Tuesday, January 22, 2013 11:40:04 AM UTC-8, Richard

[tw] Re: FCKEditor has made me crazy tonight...seems broken ???

2013-03-09 Thread Adam Sneller
Gunnar, This is fantastic! Thank you putting this online! Best, -Adam On Saturday, March 9, 2013 5:58:31 AM UTC-8, Gunnar Mathisen wrote: I've uploaded a copy of my current CKeditor set-up to http://wildweb.no/tiddlywiki if anyone wants to try it out. It's basically the CKeditorPlugin