[tw] Re: SearchOptionPlugin question

2010-04-20 Thread overett1
So how do I remove the Options... button/link? Christopher Find the following lines in the plugin: body+=' a href=javascript:; onclick='; body+=' var e=this.parentNode.nextSibling;'; body+=' var show=e.style.display!=\'block\';'; body+=' if(!config.options.chkAnimate)

[tw] Re: ANN: TagsplorerMacro released

2010-04-16 Thread overett1
I intentionally only support excludeLists to reduce complexity. I believe there was talk of someone forking the plugin to allow for more sophisticated exclusion, but that hasn't happened yet. tagsplorer exclude:foo does work to exclude tiddlers tagged with foo from the filtered list, or have I

[tw] Re: ANN: TagsplorerMacro released

2010-04-06 Thread overett1
Is there any particular reason why the IncludePlugin doesn't support getTiddlers - it sounds like perhaps it should? [...] According to the comments in the source code it's because getTiddlers is used for saving, and the idea of ImportPlugin is that external tiddlers are imported but

[tw] Re: ANN: TagsplorerMacro released

2010-04-01 Thread overett1
To ensure tiddlers included using IncludePlugin are listed, it would be good if the first line of the getTiddlers function could use reverseLookup, so: var tiddlers = store.reverseLookup(title, excludeTag); I've also added a cross after the tags by amending refreshTags as follows:

[tw] Re: ANN: TagsplorerMacro released

2010-04-01 Thread overett1
Is there any particular reason why the IncludePlugin doesn't support getTiddlers - it sounds like perhaps it should? (I'm not intimately familiar with that particular plugin.) According to the comments in the source code it's because getTiddlers is used for saving, and the idea of ImportPlugin

[tw] Re: ANN: TagsplorerMacro released

2010-03-29 Thread overett1
When using TagsplorerMacro in a tiddlywiki run as an HTA file (with IE6 as the browser), any click on the list of tags or the [+] button leads to a blank window being opened. I fixed this by adding 'return false;' at the end of any function that did not return a value (handler, newTagClick,

[tw] Re: SectionLinksPlugin error

2010-03-24 Thread overett1
The solution seems to be to amend the following line i nthe 'sectionTOC macro' part of the plugin: var link='[['+txt+'|##'+txt+']]'; to read: var link='[['+txt+'|##'+encodeURI(txt)+']]'; -- You received this message because you are subscribed to the Google Groups TiddlyWiki group. To post to

[tw] SectionLinksPlugin error

2010-03-19 Thread overett1
When opening some tiddlers for viewing I found I was being given a The URI to be decoded is not a valid encoding error. I finally tracked this down to using SectionLinksPlugin to show a table of contents where headings contain a % sign. Easily fixed by writing percent in the heading instead but

[tw] Re: Announcing TiddlyWiki 2.6.0 Beta 1

2010-03-12 Thread overett1
On Mar 11, 4:01 pm, FND f...@gmx.net wrote: This release includes a variety of bugfixes and enhancements. Would it be possible to add support for excludeLists to the tagging macro as well? I have a number of tiddlers that have no content but each contain a list of unique tags in order to create

[tw] Re: DcTableOfContentsPlugin - Still basically non-functional for IE ?

2009-12-30 Thread overett1
On Dec 29, 7:46 pm, F900racer inaweoffish...@gmail.com wrote: I read through threads dating to 2008.  Is DcTableOfContentsPlugin still basically non-functional for IE ? I had problems with it in IE6 and now use Eric Shulman's SectionLinksPlugin (http://www.tiddlytools.com/#SectionLinksPlugin).

[tw] Re: Trouble importing into Ver 2.5.1

2009-06-23 Thread overett1
On 23 June, 09:27, FND f...@gmx.net wrote: It appears this doesn't affect all browsers though. We're looking into this and will report back ASAP. Sorry for the inconvenience. IE6 seems to be a problem with .hta files. The process halts on the Reloading the new core code stage, having

[tw] Re: Trouble importing into Ver 2.5.1

2009-06-23 Thread overett1
On 23 June, 12:04, FND f...@gmx.net wrote: We have just posted a new beta which should fix the upgrade issue:      http://tiddlywiki.com/beta/ (Turns out it was a somewhat obscure encoding issue.) For those interested in helping to test this, please install the BetaUpgradePlugin before

[tw] Screen-reading Tiddlywiki

2009-04-21 Thread overett1
Hi Does anyone have any experience in using screen-reading software (in particular, JAWS (http://www.freedomscientific.com/products/fs/jaws- product-page.asp)) with Tiddlywiki? If so, grateful for any input on andjustments you made either to Tiddlywiki or the screen-reader to make it easier to

[tw] Re: InlineJavascriptPlugin

2009-04-14 Thread overett1
Some basic information that you should *always* include when reporting a problem with a plugin: Fair point - I had stupidly not tried it on an empty version of TW and it works fine there, so I'll track down what the clash seems to be and come back if I have any problems. Jonathan

[tw] Re: InlineJavascriptPlugin

2009-04-14 Thread overett1
On 14 Apr, 14:46, overett1 jonathan.over...@gmail.com wrote: I have just installed v1.9.5 of InlineJavascriptPlugin from TiddlyTools (not having used any earlier version) but when I add script ... /script to a tiddler I get the error message 'this.formatter.formatters[...]' is null

[tw] Re: GotoPlugin suggestions

2009-03-24 Thread overett1
Get the update (v1.8.0) here:    http://www.TiddlyTools.com/#GotoPlugin    http://www.TiddlyTools.com/#GotoPluginInfo Great, thanks. I'll remove my hacked version from Tiddlyspot. I'd used a separate configuration setting as I've increased the SearchOptionsPlugin setting to 5 because we were

[tw] Re: GotoPlugin suggestions

2009-03-24 Thread overett1
The update (v1.8.0) has NOW been correctly uploaded:    http://www.TiddlyTools.com/#GotoPlugin Indeed it has, thanks again! Jonathan --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups TiddlyWiki group. To post to

[tw] Re: HTMLFormattingPlugin tiddler sections

2009-03-16 Thread overett1
You need to add separate html and /html tags to each section so they will be formatted correctly when transcluded. Thanks. Unfortunately EasyEditPlugin which I use to edit the tiddlers doesn't seem to like multiple html tags so doesn't allow you to re- edit correctly. Jonathan

[tw] Re: link cloud, link popularity

2009-02-27 Thread overett1
behavior).  However, if you use action:goto, then clicking a cloud item immediately opens the tiddler corresponding to that item Get the update (v1.6.0) here:    http://www.TiddlyTools.com/#TagCloudPlugin Thanks, Eric. Just as I'd envisaged it.

[tw] Re: LoadTiddlersPlugin

2009-02-06 Thread overett1
In case anyone else finds it useful (or Eric feels like incorporating them into the original), I made the following changes to add a 'save' parameter (changes are on commented lines, other lines provided to show location): var noreport=(params[0]=='noreport'); if (noreport)

[tw] LoadTiddlersPlugin

2009-02-04 Thread overett1
I'm using LoadTiddlersPlugin to ensure that the latest version of plugins, macros, stylesheets etc are pulled in from a central TiddlyWiki. When the updated tiddlers are incorporated into the wiki it is not saved. As we have a number of users, ideally I'd like the changes to be saved

[tw] Re: Search Options Plugin

2009-01-27 Thread overett1
Does anybody else have this problem on IE or am I special?! Don't have this problem with SearchOptionsPlugin - we're also having to use IE6. Mind you, I do have a tiddler that sets up the configuration options for searching rather than relying on cookies so maybe that makes a difference.

[tw] Re: Table of Contents

2009-01-19 Thread overett1
The question then becomes, how can the DCToC plug be repaired to work with TW2.4.3? I did some digging recently and got it working in combination with the TiddlyTools SectionLinksPlugin. Mended a couple of other things too, like the 'show/hide' button which opened a blank window in IE6,

[tw] Re: Table of Contents

2009-01-19 Thread overett1
Yo can get the update (v1.1.0) here:    http://www.TiddlyTools.com/#SectionLinksPlugin Eric It took me a while to work out how I might add this in to my ViewTemplate as I want ToCs on all tiddlers. It might be worth adding to the plugin instructions how to do this, which I think involves: 1.

[tw] Re: Table of Contents

2009-01-18 Thread overett1
The question then becomes, how can the DCToC plug be repaired to work with TW2.4.3? Since that's not my plugin (I'm just hosting it because the original author doesn't seem to be around anymore), I'm very hesitant to dig into the code trying to fix it. I did some digging recently and got

[tw] Re: Table of Contents

2009-01-18 Thread overett1
On Jan 18, 2:06 pm, cmari cema...@gmail.com wrote: It works for me as it is (and I just tested it in brand new, version 2.4.3, standard and mGTD tiddlywikis).  Possibly some of the confusion It worked for me in Chrome and Firefox, but IE6 seems to cause problems.

[tw] Re: Is there a way of opening a tiddler with a term highlighted?

2009-01-15 Thread overett1
Get the update (v3.0.2) here:    http://www.TiddlyTools.com/#SearchOptionsPlugin    http://www.TiddlyTools.com/#SearchOptionsPluginInfo Eric We've just noticed that tiddlers with an apostrophe in the title now seem to throw a script error. Any chance you could look at this, please? thanks

[tw] Re: Is there a way of opening a tiddler with a term highlighted?

2009-01-15 Thread overett1
Fixed.  Get the update (v3.0.4) here:    http://www.TiddlyTools.com/#SearchOptionsPlugin    http://www.TiddlyTools.com/#SearchOptionsPluginInfo You're a star, as usual. Jonathan --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

[tw] Re: TW interface annoyances - what are yours?

2009-01-14 Thread overett1
Afraid mine's the word 'tiddler'. Don't mind it personally but getting a bunch of lawyers to take it seriously's going to be interesting - has raised quite a few smirks already. Am referring to 'articles' wherever possible but gave up changing plugins due to need to redo when you upgrade. Would

[tw] Re: 'Being edited' warning

2009-01-12 Thread overett1
On Jan 11, 11:46 pm, Ken Girard ken.gir...@gmail.com wrote: When editing TW, you are editing the entire file, not just one tiddler. If I open the TW file at 9am and start editing Tiddler43, and you open the TW file at 9:01am and start editing Tiddler26, then who ever saves last will be the

[tw] Re: 'Being edited' warning

2009-01-12 Thread overett1
On Jan 12, 12:16 am, Amzg matiasg...@gmail.com wrote: The question posed is a very important one, from a user and usability perspective IMO. Maybe TiddlyWeb (and the other related) are aimed to deal with this? For one thing, I believe ccTiddly would be a possible solution. Agree that a wiki

[tw] Re: 'Being edited' warning

2009-01-12 Thread overett1
So if you want reliable multi-user collaboration, I don't think there's a way around server-side solutions (apart from TiddlyLock maybe, which has already been mentioned):      http://www.tiddlywiki.org/wiki/Server-Side_Implementations I'd be happy to be proven wrong though. -- F. I

[tw] 'Being edited' warning

2009-01-09 Thread overett1
We're planning to use Tiddlywiki with a group of potentially 100 people, but for reasons too tedious to go into can't use a server- based version. We'll be using TiddlyLockPlugin to prevent multiple people editing at the same time. However, we don't want people to block access for long periods

[tw] Re: Is there a way of opening a tiddler with a term highlighted?

2009-01-05 Thread overett1
On Jan 5, 10:39 pm, Eric Shulman elsdes...@gmail.com wrote: Idea is to have a link to a tiddler, specifying a term within the tiddler that should be highlighted (much like terms are highlighted using the search function). Any ideas on a way of achieving this? Main reason is testing my

[tw] Re: Is there a way of opening a tiddler with a term highlighted?

2009-01-05 Thread overett1
the result matches the in-built search highlighting. Unfortunately that doesn't seem to give up once it hits an HTML tag Can you explain this a bit more?  It may be possible to refine the highlight logic to handle your HTML content, but I need to understand exactly how you want it to work

[tw] Re: Is there a way of opening a tiddler with a term highlighted?

2009-01-05 Thread overett1
In fact, after making a small code fix, HTMLFormattingPlugin now correctly passes along the current search term info when it wikifies the content within the HTML block so that those terms are now properly highlighted. Get the update (v2.4.0) here:    

[tw] Re: List filter multi-word tags

2008-12-22 Thread overett1
You could use: list filter [tag[foo1]] [tag[foo2]] Thanks, but if my tag is [[GCD directory]] how do I filter the list based on that tag, not on [[GCD]] or [[directory]]? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[tw] Re: TagCloud limit

2008-12-16 Thread overett1
Doing some fiddling around myself, this seems to have the desired effect for me, but don't know whether it causes any wider problems: There were also some other subtle issues (related to how the segment size was being calculated and which segment each tag was assigned to), so I had to do

[tw] Re: TagCloud limit

2008-12-16 Thread overett1
...I've just added a new parameter to the macro:    tagCloud limit:N    (where N is an integer number) This will restrict the number of tags displayed to only the top N items. That's fantastic, thanks! However, when I set a limit of 10 it only shows 6 tags, and when I select a limit of 30

[tw] Re: TagCloud limit

2008-12-16 Thread overett1
That's fantastic, thanks! However, when I set a limit of 10 it only shows 6 tags, and when I select a limit of 30 it shows 25 tags. Also, only the bottom two segments seem to be used. This seems to happen when you exclude certain tags from the tagcloud (eg tagCloud limit:10 systemConfig

[tw] TagCloud limit

2008-12-15 Thread overett1
Can anyone help with suggestions for limiting the number of tags shown by TagCloudPlugin? Currently have about 60 tags shown, but would like to limit this to (say) the 30 most popular. Thanks in advance Jonathan --~--~-~--~~~---~--~~ You received this message

[tw] TiddlyLock EasyEdit

2008-12-12 Thread overett1
I'm using TiddlyLockPlugin successfully, but have noticed that it does not get triggered when clicking on the 'write' button used for WYSIWYG editing with the EasyEditPlugin: the wiki only gets locked if you use the standard 'edit' button. Does anyone have any solutions for this, please? Thanks

[tw] Re: TiddlyLock EasyEdit

2008-12-12 Thread overett1
After a bit more poking around I found what seems to be the answer. Add these lines at the end of the TiddlyLockPlugin: // // OVERRIDE easyEdit() // TiddlyLock.easyEdit = config.commands.easyEdit.handler; config.commands.easyEdit.handler = function(event,src,title) { if (TLChangesAllowed())

[tw] Re: EasyEditPlugin

2008-11-23 Thread overett1
I think I've answered my own question. Find the section that reads: for (var cpt=0; cptlinks.length; cpt++) { links[cpt].href=links[cpt].ref; //to avoid IE conversion of relative URLs to absolute links[cpt].removeAttribute(ref); } and replace it