[twdev] ToggleTiddlersBar tuning request.

2009-12-06 Thread PMario
Hi there, Also See: http://groups.google.com/group/tiddlywiki/browse_thread/thread/8210adec73b35fc2?hl=en I used Erics ToggleRightSidebar transclusion to make ToggleTiddlersBar [1] transclusion. Inside the code I am using: story.displayTiddler(null,''); story.closeTiddler(''); to refresh

[twdev] TW macro command chaining, linking

2010-02-19 Thread PMario
Hi Has anyone thought about macro chaining at user lvl, which is supported by the core? eg. a list passes its result to filter to sort and back to list, which displays it. To have simple syntax at every macro. regards Mario -- You received this message because you are subscribed to the

[twdev] Re: TW macro command chaining, linking

2010-02-21 Thread PMario
Hi Eric, I think, there is a lot of communication between different parts of tw macros, with DOM attributes. Every button does it. I think, the whole page template, view template thing, works in a similar way. But I don't understand that process very well, yet. I don't want to make a macro which

[twdev] SelectThemePlugin sugestion

2010-03-12 Thread PMario
Hi Simon, I want to sugest an addition to the SelectThemePlugin. Especially to applyTheme macro. /*x*/ .. marks changes /*+*/ .. marks new {{{ config.macros.applyTheme = { label: apply, /*x*/ prompt: apply this theme or palette: // i'm lazy }; config.macros.applyTheme.handler =

[twdev] Re: readOnly not setting correctly

2010-03-12 Thread PMario
Hi, Have you tried your plugin with a vanilla TW? If you use a customized version may be readOnly is set somewhere else again. Have you tried displayMessage() instead of alert(). Or console.log() if available. What is, if data is not equal to value1 nor to value2? regards Mario On Mar 12, 1:34 

[twdev] Re: Ketchup - jQuery Validation Form Plugin integration

2010-03-21 Thread PMario
Hi, Can you provide a tw, that we can have a view, what you did allready? The plugin mechanism in TW is a bit different to the ketchup discription. I'll try. 3 steps 1) go and get inline script plugin from tiddlytools [1] 2) copy the content of the jquery.ketchup.js file into a tiddler named:

[twdev] Re: Future of TW5, TiddlyWeb, TW...

2010-04-02 Thread PMario
Hi, On Apr 2, 7:13 am, Xen Can someone explain to me how the bags 'n recipes concept is being reflected in TW classic and TW5? I can show you an example: http://hoster.peermore.com/pmario.myopenid.com There ia a wiki called MaloCSSLibrary which contains: Ricipe: system .. comes from

[twdev] Re: Future of TW5, TiddlyWeb, TW...

2010-04-02 Thread PMario
uups, I forgot. You have to register, otherwise bookmark and favorite doesnt work -m On Apr 2, 5:19 pm, PMario pmari...@gmail.com wrote: Hi, On Apr 2, 7:13 am, Xen Can someone explain to me how the bags 'n recipes concept is being reflected in TW classic and TW5? I can show you

[twdev] Re: Draggable / Inline Editable Lists (Existing Plugin?)

2010-04-13 Thread PMario
Hi Mike, simon mcmanus did a TableOfContent [1] plugin for a different type of sorting tiddler titles. He stores the content of the TOC inside a tiddler as a json structure. I did a jQSorterPlugin [2] which uses drag and drop for sorting TW stories. But I am using widgets and parts of the

[twdev] Re: Separate edit mode for dragging boxes

2010-04-13 Thread PMario
hi On Apr 9, 4:43 pm, g99k g999...@fastmail.net wrote: Thanks for your suggestions. Following your example, I've just copy- and-pasted the jQuery UI code into a systemConfig tiddler, and am now able to use draggable() and resizable(). cool. but be aware, that there is a newer version of

[twdev] Re: Tiddlywiki + MS-Access

2010-05-05 Thread PMario
Hi, What could be the advantage? -m On May 5, 7:49 pm, lapin pascallerudul...@gmail.com wrote: Good Evening Everybody,    My question might sound silly to some but has anybody thought about using MS-Access as back-end database?    Regards, Pascal -- You received this message because

[twdev] Re: Plugin, setStylesheet - Error: SyntaxError: illegal character

2010-05-22 Thread PMario
Hi Mike, are you searching for this?: setStylesheet( .custom ul {list-style: none;}\n+ .custom ul li:before {content: '\u2B0D \u202F';}\n+ .custom ol li:before {content: '\u2B0D \u202F';}\n ,dsStyles); Did some testing at:

[twdev] Re: adaptation of ListNav goes wrong: jQuery problem?

2010-06-24 Thread PMario
Hi, Have you tried something like this? var items = $(text).find(tr td:nth-child(1)); console.log('items: ', items); // --!! $.each(items, function(i, itm) { console.log('i: ' + i, $(li /)); // --!! $(li /).text(itm).appendTo(place); }); -m -- You received this message because you

[twdev] Re: adaptation of ListNav goes wrong: jQuery problem?

2010-06-24 Thread PMario
and debugging!) On Jun 24, 5:38 am, PMario pmari...@gmail.com wrote: Hi, Have you tried something like this? var items = $(text).find(tr td:nth-child(1)); console.log('items: ', items);  // --!! $.each(items, function(i, itm) {    console.log('i: ' + i, $(li

[twdev] Re: adaptation of ListNav goes wrong: jQuery problem?

2010-06-24 Thread PMario
Hi Bill, I put in a table, and a test tiddler, and get the same behavior. Could always be my (overloaded) browser I am allmost sure, it is not the browser :) At the first run, I didn't have a look at ListNavPlugin. Now I did. I made a side by side tiddler

[twdev] Re: adaptation of ListNav goes wrong: jQuery problem?

2010-06-25 Thread PMario
Cool !                     var itmfound                     $.each(items, function(i, itm) {                        itmfound=itm.innerHTML;                         $(li+itmfound+/li).appendTo(#ListTableColumn); Popping the innerHTML out of that itm object seems to do the trick.

[twdev] Re: adaptation of ListNav goes wrong: jQuery problem?

2010-06-27 Thread PMario
could .unwrap() it again or .text() it... but that doesn't work. On Jun 25, 1:01 pm, PMario pmari...@gmail.com wrote: Cool !                     var itmfound                     $.each(items, function(i, itm) {                        itmfound=itm.innerHTML

[twdev] Re: adaptation of ListNav goes wrong: jQuery problem?

2010-06-28 Thread PMario
control here:http://www.lshift.net/blog/2008/07/01/adding-distributed-version-cont... I will continue tweaking, and working on my main quiz plugin, which will use the jqTables techniques. Best, Bill On Jun 27, 10:07 am, PMario pmari...@gmail.com wrote: I added a new parameter

[twdev] MS IE9 preview and SVG

2010-07-01 Thread PMario
Hi Folks, Did you see this: [4] http://samples.msdn.microsoft.com/ietestcenter/#svg11e2 I did some tests IE9 preview 1.9.7874.6000 which can#t display svgs at my tiddlyspace [1]. No svgs are shown. Imported a svg from ie testsuite [2] to tiddlyspace, and image macro can display it with FF [3].

[twdev] Re: Will content from old Tiddlywiki's be importable to the upcoming TiddlyWiki 5?

2010-07-08 Thread PMario
Hi Andrew, May be this is of interest. http://groups.google.com/group/tiddlywikidev/browse_thread/thread/41b6ecb08cfb6151/f0309c628b42241e -m On Jul 8, 1:21 am, leeand00 leean...@gmail.com wrote: I've got alot of old Tiddlywiki's and I was just wondering if they could be imported into the new

[twdev] issue with hoster logout on private server

2010-07-09 Thread PMario
Hi, I installed hoster from pypi site. It says This is TiddlyWeb 1.0.3. Seems to work. But if I want to logout I get: Traceback (most recent call last): File /home/tweb/.venvs/tweb/lib/python2.5/site-packages/tiddlyweb/ web/http.py, line 112, in __call__ return self.application(environ,

[twdev] Re: issue with hoster logout on private server

2010-07-14 Thread PMario
bump. How can I provide more info, if needed? On Jul 9, 5:25 pm, PMario pmari...@gmail.com wrote: Hi, I installed hoster from pypi site. It says This is TiddlyWeb  1.0.3. Seems to work. But if I want to logout I get: Traceback (most recent call last):   File /home/tweb/.venvs/tweb/lib

[twdev] Re: issue with hoster logout on private server

2010-07-17 Thread PMario
Hi, didn't work. I sent a pm -m On Jul 16, 5:46 pm, chris.d...@gmail.com wrote: On Fri, 9 Jul 2010, PMario wrote: I installed hoster from pypi site. It says This is TiddlyWeb  1.0.3. Seems to work. But if I want to logout I get: Hrmm. I'm not sure what is going on here, so what I've done

[twdev] Re: Updating of tags' Tiddlers.

2010-07-29 Thread PMario
May be this can help: http://www.tiddlytools.com/#AutoRefresh -m -- You received this message because you are subscribed to the Google Groups TiddlyWikiDev group. To post to this group, send email to tiddlywiki...@googlegroups.com. To unsubscribe from this group, send email to

[twdev] Re: TiddlySpace System Space

2010-07-31 Thread PMario
On Jul 31, 1:51 am, Bauwe Bijl bauweb...@gmail.com wrote: Today I used the system/space to repair some older spaces. I had messed with them (because of some styling issues with icons)screwed up the original tiddlyspace look. But today...on these messed spaces the backstage area

[twdev] Re: TiddlySpace System Space

2010-07-31 Thread PMario
Hi Paul, I think, this is fighting the symptoms. For me there is a need, that the server handles plugin delivery. It is part of a security system, that I know, is discussed already. eg. I include: wanted-theme-space not-wanted-plugin-space system uuups theme is gone. You could play this game.

[twdev] Re: adding a little bit of ajax.

2010-08-04 Thread PMario
hi, I learnd a lot at http://www.tiddlytools.com/insideTW/ which makes the core code searchable. At the Files section on the left you have direct links to the actual code repo, which is 2.6.0. -m -- You received this message because you are subscribed to the Google Groups TiddlyWikiDev group.

[twdev] Best practice with tiddlyspace plugins

2010-08-14 Thread PMario
and the public/private [draft] mechanism. have fun -pmario [1] http://helloworld.tiddlyspace.com/#HelloWorldPlugin -- You received this message because you are subscribed to the Google Groups TiddlyWikiDev group. To post to this group, send email to tiddlywiki...@googlegroups.com. To unsubscribe from

[twdev] SyntaxHighlighterPlugin help request

2010-08-18 Thread PMario
Hi, SyntaxHighlighterPlugin identifies the different brushes by the used braces text .. {{{ css .. /*{{{*/ xml .. !--{{{-- js .. //{{{ to have more possibilities I added eg: {{{ brush:pascal VAR a: integer; a := 0; }}} !--{{{ brush:pascal -- would also work :) which will render

[twdev] Re: Slider and cookies

2010-09-09 Thread PMario
copy this into a tiddler eg: SliderCookieHack and tag it systemConfig //{{{ config.macros.slider.onClickSlider = function(ev) { var e = ev || window.event; var n = this.nextSibling; var cookie = n.getAttribute(cookie); var isOpen = n.style.display != none; if(config.options.chkAnimate

[twdev] Re: Slider and cookies

2010-09-09 Thread PMario
Since you have an empty cookie allready, it will be needed to delete it. On 9 Sep., 10:08, PMario pmari...@gmail.com wrote: copy this into a tiddler eg: SliderCookieHack and tag it systemConfig //{{{ config.macros.slider.onClickSlider = function(ev) {   var e = ev || window.event;   var n

[twdev] Re: How to remove (or hide) everything but my data

2010-09-12 Thread PMario
Hi, Welcome I think, If you post to TW group you will have more people reading your posts. First: Tag the unwanted tiddlers excludeLists, excludeSearch, excludeMissing, [1] and they will be gone at the right sidebar. If you want to have readOnly mode goto TW group and search for readOnly. There

[twdev] Re: Plugin for txt2tags parser.

2010-09-20 Thread PMario
In addition to FNDs links I'd suggest martinswiki [1] I think it would be a good starting point for a new formatter. insideTW is the source (for me) to see what happens inside TW :) Eric has nicely sniped out the main code, to get a good overview [2] about the repexp which is used. I think the

[twdev] Re: Plugin for txt2tags parser.

2010-09-20 Thread PMario
On Sep 20, 4:16 am, dave david.a.yo...@gmail.com wrote: For the sake of minimal code size in my plugin tiddler, I think modifying the config.formatters object would be better than simply re- creating the whole array (most of it would be almost a direct copy from the core anyways; wasted

[twdev] Re: Security, SVG, inline scripts

2010-09-29 Thread PMario
On Sep 29, 6:34 pm, Eric Shulman elsdes...@gmail.com wrote: How do you plan do deal with inline scripts. eg: inlineScriptPlugin Sorry for the typo. http://www.TiddlyTools.com/#InlineJavascriptPlugin is a *plugin*.  Thus, TiddlySpace already has the ability to prevent processing of

[twdev] Re: Change requests for GotoPlugin

2010-10-06 Thread PMario
Hi Tobias, If you edit/change TagSearchPlugin. Do you think about my feature request, to enable/disable every element in the tagsearch dialog. It would be nice to have maximum flexibility. -mario On Oct 5, 7:03 pm, Tobias Beer beertob...@googlemail.com wrote: Mainly @Eric Shulman, GotoPlugin

[twdev] Re: Plugin for txt2tags parser.

2010-10-06 Thread PMario
? On Mon, Sep 20, 2010 at 8:56 AM, PMario pmari...@gmail.com wrote: In addition to FNDs links I'd suggest martinswiki [1] I think it would be a good starting point for a new formatter. insideTW is the source (for me) to see what happens inside TW :) Eric has nicely sniped out the main

[twdev] Re: tiddlywiki outputting br instead of p?

2010-10-07 Thread PMario
Hi David I think it is not that easy. If you have a look at a standard html page it may look like this for a section h1header/h1 psome more textbr / second line /p and not p h1/h1 /p But as FND sayd you can pretty much do whatever you please. -m On Oct 7, 5:13 pm, David Young

[twdev] Re: tiddlywiki outputting br instead of p?

2010-10-08 Thread PMario
Hi Jeremy, Thanks for the links to the early versions. It is very interesting to see TiddlyWiki's metamorphose. Having a short look at gtdtw source, I understand the desire to rewrite it :) == OT == @David Sorry, for hijacking your thread a little bit. @Jeremy Are there some more links + timeline

[twdev] Re: tiddlywiki outputting br instead of p?

2010-10-09 Thread PMario
. Potentially you could reverse-engineer by undoing the translation.http://trac.tiddlywiki.org/wiki/Translations Best of luck, Ton van Rooijen. On 8 okt, 22:14, PMario pmari...@gmail.com wrote: Hi Jeremy, Thanks for the links to the early versions. It is very interesting to see TiddlyWiki's

[twdev] Re: Tspace; possibility to push

2010-10-13 Thread PMario
Hi, I think this could be done with a new tsScanSecure eg: tsScanSecure contact tag:@pmario And tsScanSecure could use a hardcoded template similar to the following one. |image http://$1.tiddlyspace.com/bags/$1_public/tiddlers/SiteIcon 24 24|@$1 wants to contact me| {{{ view text

[twdev] Re: Tspace; possibility to push

2010-10-13 Thread PMario
On Oct 13, 1:32 pm, chris.d...@gmail.com wrote: On Wed, 13 Oct 2010, Tobias Beer wrote: I would certainly understand if this overly stretched TiddlyWeb's current design tenets. Not TiddlyWeb's. TiddlyWeb itself has very flexible policies on bags that would allow the stuff you describe.

[twdev] Re: TW formatters - Markdown

2010-10-27 Thread PMario
@tobias ==OT== hihi, I did tell you :))) == lookaheadRegExp: /showdown((?:.|\n)*?)\/showdown/mg, I think it should be markdown or md. showdown is the library. right? It's a nice plugin, but I think it should be either §§§ or xx. Having two possibilities will be confusing and could cause a

[twdev] Re: TW formatters - Markdown

2010-10-28 Thread PMario
Hi, I didn't want to use it for different markup. I'd want to use it for the syntaxhighlighter, that I introduced some time ago. It needs code class=brush:js code goes here /code which is not rendered by a vanilla tw. {{{ brush:js }}} would be cool. If the core would ignore the rest of the

[twdev] Re: PROPOSAL to change parsers to be less destructive.

2010-12-07 Thread PMario
Hi David, I follow this thread with insterest. The start and the end of blocks sometimes is not obvious. I think, I have an example, that produces no markup explosion but artefacts eg: an invisible section like this /% !Section Some text %/ can be transcluded with tiddler xx##Section and

[twdev] Re: PROPOSAL to change parsers to be less destructive.

2010-12-07 Thread PMario
On Dec 7, 5:55 pm, Eric Shulman elsdes...@gmail.com wrote: I use a different solution: place a 'dummy' section marker at the END of the section, like this:    /%    !Section    Some text    !end    %/ Hi Eric. I am pretty sure, that I learned this at your tiddlytools.com site. :) I wanted

[twdev] Re: issue: What's going on with the sucked in tiddler title?

2011-01-26 Thread PMario
: a present from:@pmario .. is confusing, and doesn't clearly specify the title and the reference. from:@pmario ... from is english. and needs some translation, which probably breaks the code. please no additional text. == I created the topic, because there where fast changes, and I couldn't see

[twdev] Output: image macro vs [img[]]

2011-01-26 Thread PMario
Hi, The core TW markup [img[San Benedicto|01.jpg][http://fancybox-pics.tiddlyspace.com/ 01.jpg]] produces: a class=externalLink imageLink href=http://fancybox-pics.tiddlyspace.com/01.jpg; title=External link to http://fancybox-pics.tiddlyspace.com/01.jpg; target=_blank img

[twdev] Re: Output: image macro vs [img[]]

2011-01-27 Thread PMario
On Jan 27, 2:11 pm, rakugo jdlrob...@gmail.com wrote: I've moved this to githttps://github.com/jdlrobson/TiddlyWiki/commit/adb823d8db964d9535b090... You used 2 times imageLink, is that right, or should there be an externalLink and imageLink? Just need to update TiddlySpace to point

[twdev] Re: Cannot get SyntaxHighlighterPlugin to work

2011-01-30 Thread PMario
Hi, I made a new SyntaxHighlighter [1] plugin, with library version 3.0.83 from Alex Gorbatchev. May be it works. I don't know the Linkification FF plugin, so would need some testing :) If you are using TiddlySpace simply include the syntaxhighlighter space and it should work. -m [1]

[twdev] Re: Output: image macro vs [img[]]

2011-02-02 Thread PMario
/commit/66628e15c31d46218e09ed... Jon On Jan 27, 2:06 pm, PMario pmari...@gmail.com wrote: On Jan 27, 2:11 pm, rakugo jdlrob...@gmail.com wrote: I've moved this to githttps://github.com/jdlrobson/TiddlyWiki/commit/adb823d8db964d9535b090... You used 2 times imageLink, is that right

[twdev] Re: keeping up with jQuery

2011-02-08 Thread PMario
Hi Folks, 3 years ago I even didn't know that TW exist. IMO this issue should have been fixed 3 years ago. Or may be 2 years ago, after a one year beta. I started programming TW about one year ago. Not fixing this issue, now causes trouble, for everyone, that have made the mistake to use a

[twdev] Re: keeping up with jQuery

2011-02-11 Thread PMario
Quite interesting ... I like the idea, having a repo, that doesn't change weekly. I also like the idea, using the newest stuff. I think, having the core moved to github, can provide both. I feel comfortable if a stable core moves on every half a year of even every year. On the other hand, I

[twdev] Broken Tiddly Space offline workflow.

2011-02-13 Thread PMario
An adventure report, working with an offline TS and developing a plugin. = I am using [[ExternalScripts]] fancyBoxPlugin.js fancyBoxPluginAddOn.js [[MarkupPostBody]] src=loadExternal.js language=javascript type=text/javascript/ script That works quite nice. === fb.html is offline. And I am

[twdev] Re: TiddlyWiki core dev migration to github

2011-03-18 Thread PMario
Looks good. Which version is it. Is it planned to use tags for the different stable version. To switch back and forth? -m On Mar 18, 2:04 pm, cd...@peermore.com chris.d...@gmail.com wrote: On Mar 11, 11:40 am, cd...@peermore.com chris.d...@gmail.com wrote: Okay, sounds like there's

[twdev] Re: Request - templating in TW made easy ... (see TW-usergroup)

2011-03-26 Thread PMario
I think this is a related one. https://groups.google.com/group/tiddlywiki/browse_thread/thread/82d28db049e2ee95 = jQuery also seems to establish a templating mechanism [1]. Which is one level below Jon's list templating. But I think it should be taken into account. Since it seems that jQuery

[twdev] Re: Request - templating in TW made easy ... (see TW-usergroup)

2011-03-28 Thread PMario
On Mar 28, 9:24 am, rakugo jdlrob...@gmail.com wrote: So essentially you want to make use of transclusion in templates to access tiddler attributes/fields? No. I want to create a multi column view, using list filter [tag[myTag]] [sort[sortField]] template:xx. Since I have a widescreen, it is

[twdev] Re: Request - templating in TW made easy ... (see TW-usergroup)

2011-03-28 Thread PMario
On Mar 28, 4:21 pm, rakugo jdlrob...@gmail.com wrote: No. I want to create a multi column view, using list filter [tag[myTag]] [sort[sortField]] template:xx. Since I have a widescreen, it is more readable that way. *Since an old TW will ignore the named parameter, it just creates a

[twdev] Re: Request - templating in TW made easy ... (see TW-usergroup)

2011-03-28 Thread PMario
On Mar 28, 5:31 pm, rakugo jdlrob...@gmail.com wrote: Not exactly. One could imagine altering the macro for users who know what they are doing e.g. view wikified text refresh:yes It's more of a case of whether this is useful. IMO you'll need list filter [tag[xx]] template:##temp !temp view

[twdev] Re: alpha releases of TiddlyWiki and call for participation

2011-04-20 Thread PMario
Hi, Nice work. An issue. Since all other TWs are loadable directly from the link, I think http://tiddlywiki.com/alpha/tiddlywiki_externaljs_tiddlyspace.html should be too. But Firebug says: useJavaSaver is not defined [Bei diesem Fehler anhalten] if(useJavaSaver) tiddly...ce.html (Zeile 535)

[twdev] Re: TiddlySpace - Manifesto - Defining the future.

2011-05-07 Thread PMario
On May 6, 10:42 am, chris.d...@gmail.com wrote: May be I am wrong and the linked tiddlers have to be interpreted in the sense of a) and they are public declaration of principles and intentions ... then I have to say. Some of these principles are really _scary_ ... for me. It's on this

[twdev] Re: questionnaire feature request

2011-05-10 Thread PMario
On May 10, 5:11 pm, rakugo jdlrob...@gmail.com wrote: Currently the name is the tiddler you give it. I think it should stay this way as one can determine username from the modifier on the tiddler and the timestamp from the modified date. I have seen the template shadow tiddler, that defines the

[twdev] issue: space-install.tiddlyspace.com/#test is public

2011-05-17 Thread PMario
Hi Jon, Since I include this space, test shouldn't be public. Not a big problem, but confusing/missleading in my space. http://space-install.tiddlyspace.com/#test -m -- You received this message because you are subscribed to the Google Groups TiddlyWikiDev group. To post to this group, send

[twdev] Re: story.displayTiddler in a plugin?

2011-05-21 Thread PMario
The standard way is, using the DefaultTiddlers tiddler. eg: [[tiddler1]] [[tiddler2]] ... opens tiddler1 and 2 or [tag[default]] .. which opens every tiddler tagged: default. === story.displayTiddler(null,'TopLineMenu'); This isn't a complete plugin in the TW sence. So if you tagged it

[twdev] Re: store.sortTiddlers() documentation

2011-05-24 Thread PMario
There has been a discussion some time ago [1]. I made a little example at the Teamwork place [2]. Eric Shulman's InsideTW [3] may be a valuable resouce too. hope this helps. If you want to have a look at some home made list and sort functions some plugins may be of use. [4] btw list filter

[twdev] Re: store.sortTiddlers() documentation

2011-05-24 Thread PMario
http://oldwiki.tiddlywiki.org/wiki/Dev:Core_Code_Overview But I didn't find anything about sortTiddlers :( -- You received this message because you are subscribed to the Google Groups TiddlyWikiDev group. To post to this group, send email to tiddlywikidev@googlegroups.com. To unsubscribe from

[twdev] Re: store.sortTiddlers() documentation

2011-05-24 Thread PMario
On May 24, 4:58 pm, axs alexst...@gmail.com wrote: I notice that store.sortTiddlers first checks to see whether the sort field is in TiddlyWiki.standardFieldAccess. In this object, I see things like 'text', 'tags','tiddler'. How should these search fields be used? Tags field returns a string

[twdev] Re: Use of plugin meta data for bundling css etc

2011-06-14 Thread PMario
On Jun 14, 1:01 pm, rakugo jdlrob...@gmail.com wrote: 2) If we are should we be not be making use of important comments e.g. /*! to signal to javascript minifiers not to minify these comments I am using uglify [1] to minify code. Does minification just break, if I use a different tool? eg: I

[twdev] Re: Use of plugin meta data for bundling css etc

2011-06-14 Thread PMario
I really like the behaviour of TW, to mix and match executable code with wikified description content. I just think code shouldn't rely on comments. Some more thoughts:

[twdev] Attempt, to make hideWhen more secure

2011-06-21 Thread PMario
Using: http://mptw.tiddlyspot.com/#HideWhenPlugin with TS introduces a security issue, because of the eval() used. Would something like the following make it more secure, or is it just a lame attempt. merge(config.macros,{ hideWhen: { handler:

[twdev] Re: Attempt, to make hideWhen more secure

2011-06-21 Thread PMario
hideWhen can do evil things: div macro=hideWhen evil code I know, that the above can execute code. But creating local variables, that overwrite global vars, that are needed to do evil code, I thought would help. var clearInterval, clearTimeout, document, event, frames, history, Image,

[twdev] Re: Attempt, to make hideWhen more secure

2011-06-21 Thread PMario
@Eric What do you think about this: https://github.com/eligrey/jsandbox -m -- You received this message because you are subscribed to the Google Groups TiddlyWikiDev group. To post to this group, send email to tiddlywikidev@googlegroups.com. To unsubscribe from this group, send email to

[twdev] Re: UploadPlugin (from local file) incompatible with FF ver 5 ??

2011-06-23 Thread PMario
Hi Måns I tested it with one of my tiddlyspot TWs. It works fine. FF 5.0 ubuntu 11.04. -m -- You received this message because you are subscribed to the Google Groups TiddlyWikiDev group. To post to this group, send email to tiddlywikidev@googlegroups.com. To unsubscribe from this group, send

[twdev] Re: post-processing tiddlywiki generated html

2011-06-24 Thread PMario
On Jun 24, 3:15 pm, chris.d...@gmail.com wrote: I saw purpleater which looks quite promising :) My question: Has anyone come up with a good way to post-process this HTML so that it can be used as a reasonable DOM (such that paragraphs are paragraphs etc). I did 3 attempts allready. (Your and

[twdev] Issue: Make TW plugins TiddlySpace aware

2011-06-26 Thread PMario
* The existing ColorPalette should be overwritten eg: TS Structure 3 /pmario_private/ColorPalette * The existing ColorPalette should be overwritten - mario [1] https://github.com/pmario/MPTW/tree/tiddlyspace-ready [2] https://github.com/pmario/MPTW/compare/pmario:fix-depricated

[twdev] Re: post-processing tiddlywiki generated html

2011-06-27 Thread PMario
Hi Chris, Should your code handle tiddler transclusions too? It doesn't. testcase: [[tiddler 1]] paragraph 1 {{{monospaced text}}} pargraph 2 [[tiddler 2]] some text tiddler tiddler 1 some more text -m -- You received this message because you are subscribed to the Google Groups

[twdev] Re: post-processing tiddlywiki generated html

2011-06-27 Thread PMario
On Jun 27, 8:52 pm, chris.d...@gmail.com wrote: Can you be more specific than It doesn't? Try my testcase testcase: [[tiddler 1]] paragraph 1 {{{monospaced text}}} pargraph 2 [[tiddler 2]] some text tiddler tiddler 1 some more text -- You received this message because you are subscribed

[twdev] Re: Managing pull requests on git repository

2011-06-29 Thread PMario
On Jun 29, 2:50 pm, rakugo jdlrob...@gmail.com wrote: I've had a good at a first version of guidelines The idea of this text is that it would be linked to or part ofhttps://github.com/TiddlyWiki/tiddlywiki/blob/master/README Please help me finalise this so we can do a better job of helping

[twdev] Re: Issue: Make TW plugins TiddlySpace aware

2011-06-30 Thread PMario
On Jun 30, 8:55 am, rakugo jdlrob...@gmail.com wrote: Hi pmario, I'm not entirely sure what you are trying to achieve here, but you shouldn't need to delete field values I also thought so, that's why this post exists. If you are just trying to get a tiddler to save you need to run merge

[twdev] Re: Managing pull requests on git repository

2011-07-02 Thread PMario
On 30 Jun., 08:30, rakugo jdlrob...@gmail.com wrote: I haven't yet linked to it from the readme file but that would be the logical next step when/if we are happy with what I have written. :) I just wanted to post a ticket about this! I'd say. Just link it -m -- You received this message

[twdev] Issue: Presoify

2011-07-06 Thread PMario
The Preso concept is great. A Preso bookmarklet is terrific. But I don't know, how it should work :( It is a bookmarklet, that's why I thought it would work with every TiddlySpace. What I did: I created a Presoify bookmark Opend http://pmario.tiddlyspace.com And clicked the button :) .. Just

[twdev] New TiddlySpace Frontpage

2011-07-07 Thread PMario
Hi folks, The new frontpage looks really great. The only thing, that is not obvious, is the registration form. It doesn't look like a registration form. I thought, the form is a description, what to do to sign up. I directly clicked tie register button and nothing happend. I didn't even think

[twdev] Re: New TiddlySpace Frontpage

2011-07-07 Thread PMario
The user name availability should be checked immidiately, if the input field looses the focus. eg: green - available, red - taken with the text right to the input field. -m -- You received this message because you are subscribed to the Google Groups TiddlyWikiDev group. To post to this group,

[twdev] Re: sloppy code for field deletion

2011-07-08 Thread PMario
On 8 Jul., 19:51, okido bkn...@gmail.com wrote: I use following script with inlinejavascript plugin, it removes a field from a tiddler. The problem is that it takes ages to run and most times it freezes FF 4.0. script var tids =store.getTiddlers('title')  for ( i=1 ; i tids.length ; i++ )

[twdev] Re: sloppy code for field deletion

2011-07-08 Thread PMario
there is the store.filterTiddlers(fieldName) function, with allready gives the filtered list back. https://github.com/TiddlyWiki/tiddlywiki/blob/master/js/Filters.js the array starts with 0. for (var i=0... -m On 8 Jul., 22:42, okido bkn...@gmail.com wrote: Thanks PMario, The conditional

[twdev] tagsearch plugin stops working with 2.6.3 (alpha 9)

2011-07-12 Thread PMario
@tobias hasClass function will be deprecated, so tagsearch plugin will stop working. - jQuery(el).hasClass('className';) see: https://github.com/TiddlyWiki/tiddlywiki/blob/master/deprecated/Utilities.js#L34 -m -- You received this message because you are subscribed to the Google Groups

[twdev] Re: tagsearch plugin stops working with 2.6.3 (alpha 9)

2011-07-13 Thread PMario
I'll put togehter a post. Since the github repo, doesn't work out of the box. May be include it into the TiddlyWiki github wiki for contributors. -m On 13 Jul., 09:51, Tobias Beer beertob...@googlemail.com wrote: Thanks, Mario, for the notification, will make an update soon... and probably use

[twdev] Re: GitHub best practices and recommendations

2011-07-13 Thread PMario
Tobias, Which OS do you use? -- You received this message because you are subscribed to the Google Groups TiddlyWikiDev group. To post to this group, send email to tiddlywikidev@googlegroups.com. To unsubscribe from this group, send email to tiddlywikidev+unsubscr...@googlegroups.com. For more

[twdev] Re: Is it time for a new tiddlywiki release?

2011-07-14 Thread PMario
On 7 Jul., 14:17, Martin Budden mjbud...@gmail.com wrote: I'm happy for us to do a 2.6.3 beta and release. Martin Martin, When pushed to github, it would be nice to have a Tag: 2.6.3 that makes it possible to switch back and forth, for testing. -m -- You received this message because you are

[twdev] Re: Is it time for a new tiddlywiki release?

2011-07-14 Thread PMario
On Jul 14, 6:33 pm, rakugo jdlrob...@gmail.com wrote: pmario there's no need for this. Just find the right commit and check it out e.g.https://github.com/TiddlyWiki/tiddlywiki/commit/d3747a512d626d9d86c3f... is release a 2.6.3.A8 alpha You can do a git checkout

[twdev] Re: TiddlySpaceLinkedTiddlers feature request

2011-07-16 Thread PMario
works like a charm :) -m -- You received this message because you are subscribed to the Google Groups TiddlyWikiDev group. To post to this group, send email to tiddlywikidev@googlegroups.com. To unsubscribe from this group, send email to tiddlywikidev+unsubscr...@googlegroups.com. For more

[twdev] Re: Time for TW 2.6.3? Also improving www.tiddlywiki.com?

2011-07-18 Thread PMario
Hi Ton, I think your texts are cool. If you also post your other suggestions, I think I'd vote for them :) -m -- You received this message because you are subscribed to the Google Groups TiddlyWikiDev group. To post to this group, send email to tiddlywikidev@googlegroups.com. To unsubscribe

[twdev] Re: TiddlyWiki 2.6.3 schedule

2011-07-21 Thread PMario
I think, it should be summarized a bit more and posted to TiddlyWiki group. Since there are more people. I'd start with the new features and then with the issus :) -m -- You received this message because you are subscribed to the Google Groups TiddlyWikiDev group. To post to this group, send

[twdev] Re: An issue with Github

2011-08-11 Thread PMario
Hi Basim, Nice work :) Open the file you want to see eg: master/js/lingo.js click the history button and add *.atom at the end of the URL it redirects you to: https://github.com/TiddlyWiki/tiddlywiki/commits/master/js/Lingo.js.atom There may be a better way. But it works for me :) -m -- You

[twdev] Re: An issue with Github

2011-08-11 Thread PMario
uups sry for the name typo. -- You received this message because you are subscribed to the Google Groups TiddlyWikiDev group. To post to this group, send email to tiddlywikidev@googlegroups.com. To unsubscribe from this group, send email to tiddlywikidev+unsubscr...@googlegroups.com. For more

[twdev] TiddlySpace alpha channel

2011-08-11 Thread PMario
Hi folks, During 2.6.3 beta testing time period, the alpha channel was not updated anymore. It still is 2.6.3 (alpha 9) now I tried to use twrelease: beta once. It activated stable 2.6.2 instead. I'd suggest, that the alpha channel is allways updated. Even if the numbering is 2.6.3 (beta 1-3).

[twdev] TiddlySpace frontpage broken

2011-08-16 Thread PMario
Hi folks, It seems the TS frontpage is broken with FF5 win7 -m -- You received this message because you are subscribed to the Google Groups TiddlyWikiDev group. To post to this group, send email to tiddlywikidev@googlegroups.com. To unsubscribe from this group, send email to

[twdev] Re: TiddlySpace frontpage broken

2011-08-16 Thread PMario
I did find it :) My browser default font setting was 22px instead of 16px. So the first paragraph 2.5em, did mess it up. http://www.imagebanana.com/view/83x95nt0/tiddlyspace.com.gif -m -- You received this message because you are subscribed to the Google Groups TiddlyWikiDev group. To post to

[twdev] TW - CodeMirror2 wrapper alpha testing :)

2011-09-01 Thread PMario
Hi folks, I've uploaded an alpha TW [1] to dropbox for experimenting. It contains a TW wrapper for CodeMirror text editor [2], which I think has some potential :) CM has different modes for real time syntax highlighting. At the moment, there are just 2 ToolbarCommands cmEdit and cmSave in the

[twdev] Re: TW - CodeMirror2 wrapper alpha testing :)

2011-09-02 Thread PMario
Newer version uploaded. * Edit mode still hardcoded to javascript mode * TW code block rendering now uses CodeMirror2Plugin's syntax highlighting -- {{{ ... text -- //{{{ ... code -- /*{{{*/ ... css -- !--{{{-- ... xml -- code some params ... /code code class=python ... seems to have a bug. so

  1   2   3   4   5   6   7   8   9   10   >