[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) e.style.display=show?\'block\':
\'none\';';
body+=' else anim.startAnimating(new Slider(e,show,false,\'none\'));';
body+=' return false;options.../a';

Comment them out by adding '//' at the start of each line. Save the
changes, reload the wiki and the options button should be gone. A more
flexible option would be to create a new config option (see the
opening part of the plugin which sets up some options), and then wrap
the above statements with an 'if' statement that checks the state of
the config option. That way you can use AdvancedOptions to toggle the
config option so that the Options... button shows/hides.

Jonathan

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlyw...@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[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 misunderstood your meaning?

Jonathan

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlyw...@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[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 not saved.

 After thinking about this some more, I'm not comfortable with such a
 change (for one thing, reverseLookup seems less performant than
 getTiddlers).

 So I suggest you create a simple fork, replacing just one line:
 - var tiddlers = store.getTiddlers(title, excludeTag);
 + var tiddlers = store.reverseLookup(tags, excludeTag, false, title);

 Does that seem acceptable?

That's fine with me, thanks for considering it!

Jonathan

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlyw...@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[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:

 createTagElement(clone, tag+ ×, self.locale.delTagTooltip,
self.delTag);

and delTag as follows:

 tags.remove(btn.text().replace(/ ×$/, ));


Jonathan

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlyw...@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[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 is that external
tiddlers are imported but not saved.

 As previously mentioned, I'm not too keen on adding magic characters for
 presentational purposes, so I probably won't adopt this change. (Though
 I gotta admit that I currently don't have a better solution.)
 Of course it's perfectly fine for you to keep your own little fork. You
 might want to amend the Name slice though to avoid confusion.

Fair enough, it was the reference to delicious above that made me
think it might work.

J

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlyw...@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[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, onTagClick, delTag, refreshTags and
refreshTiddlers).

Cheers

Jonathan

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlyw...@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[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 this group, send email to tiddlyw...@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[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 though I would share it in case
anyone else comes across this, and on the off chance that Eric might
be able to perform some of his usual wizardry to provide a better
solution :)

Jonathan

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlyw...@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[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 a 'master list'
of tags in combination with the IntelliTagger plugin. I'd like to tag
these tiddlers with 'excludeLists' so that they do not appear in the
tagging list of a tiddler.

Thanks

Jonathan

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlyw...@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.



[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).

Jonathan

--

You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to tiddlyw...@googlegroups.com.
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en.




[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 opened up a blank browser
window with an ActiveX dialog confirmation sought. Closing and
reloading shows the upgrade as taken place but the store has been
wiped.

Trying IE6 on a .htm file worked smoothly on one tiddlywiki, but got
stuck at the Saving the new core code stage on another so no upgrade
took place.

Jonathan
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[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 upgrading your document:
      http://tiddlywiki.com/beta/BetaUpgradePlugin.html
 (Please note that beta releases are not meant for production use, so use
 a copy of your document for testing.)

Tested on IE6 and it worked upgrading two wikis with .htm filetypes,
but for the same files with a .hta filetype it still opens a new
browser window with ActiveX content and stalls at the Reloading the
new core code stage, wiping the store.

Jonathan
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[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 read tiddler content. At the moment JAWS happily
reads any links that you navigate to with the Tab key, but it's
proving difficult to get it to read the text in between the links...

Thanks

Jonathan
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[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
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[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 or not an object.

I have narrowed this down. The problem is a plugin I have put together
(inevitably...) for rather esoteric use which clashes because it also
sets up a formatter. My HandbookReferencePlugin (http://
jos.tiddlyspot.com/#HandbookReferencePlugin) clashes with
InlineJavascriptPlugin (as you can see at http://jos.tiddlyspot.com/#TestScript)
but not if I rename HandbookReferencePlugin to
xHandbookReferencePlugin so that it starts after
InlineJavascriptPlugin. I can't see what I'm doing differently with my
formatter that should make this difference - but I'm hardly an expert.
The easy solution is obviuosly just to rename the plugin, but if I'm
doing something I shouldn't in the plugin that anyone can spot, please
let me know.

Jonathan
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[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 getting long search
result lists which take a while to open on IE6. Perhaps I'll try
lengthening the delay before a search is triggered instead.

  On a separate note, how would one go about amending the plugin so it
  showed titles included in a wiki via the IncludePlugin?

 I will look into the problem to determine if a solution is possible,
 but don't hold your breath...

Fair enough!

Many thanks

Jonathan
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[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 this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[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
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[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.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[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) 
params.shift();
var save=(params[0]=='save');if (save) params.shift(); // Added
this.newTags=[]; if (params[0]) this.newTags=params; // any
remaining params are used as 'autotags'

...

config.macros.loadTiddlers.loadFile
(src,config.macros.loadTiddlers.doImport,
{quiet:quiet,ask:ask,filter:filter,force:force,init:init,noreport:noreport,save:save});
  //
'save:save' added

...

config.macros.loadTiddlers.loadFile
(src,config.macros.loadTiddlers.doImport,
{quiet:quiet,ask:ask,filter:filter,force:force,init:init,nodirty:nodirty,norefresh:norefresh,noreport:noreport,save:save});
 //
'save:save' added

...

var save=params.save; // Added
var tiddlers = config.macros.loadTiddlers.readTiddlersFromHTML
(html);

...

if (!quiet||count) displayMessage
(config.macros.loadTiddlers.loadedMsg.format
([count,tiddlers.length,src.replace(/%20/g,' ')]));
if (save) saveChanges(true); // Added
},

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[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 automatically so that only the first person to
open the wiki has the delay while the updates take place. Eric, would
this be something that can be incorporated as an option into the
plugin, or is there an easy change I can make?

Thanks

Jonathan
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[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.

Jonathan

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[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, and
 only showing the table when there's three or more headings in a
 tiddler. I'll dig out the code tomorrow and post the changes I made.
Here's what I changed, for what it's worth in the light of the latest
addition to Eric's SectionLinksPlugin:

To fix the heading links, find '// Remove WikiLinks', substitute the
following for the two lines that start with 'text += ...':

  text += line.substr(0, i).replace(/[!]/g, '#');
  text += '[[' + desc + '|' + myTiddler.title + '##' + desc +
']]\n';

To fix the toggle button, find the line:
  createTiddlyButton(r, toggle, show/collapse table of contents,
function() { config.macros.showtoc.toggleElement(this.nextSibling); },
toggleButton)
and add return false; immediately before the closing curly brackets.
In IE that should stop a click on the toggle button from opening a
blank window.

Jonathan
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[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. Adding div class='sectionTOC [any other CSS classes]'Table of
contents:/div immediately above the line div class='viewer'
macro='view text wikified'/div; and
2. Adding div class=sectiontoc macro='sectionTOC'/div at the
end of ViewTemplate.

Is that the right way?

Thanks

Jonathan
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[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 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, and
only showing the table when there's three or more headings in a
tiddler. I'll dig out the code tomorrow and post the changes I made.

Jonathan
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[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.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[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

Jonathan
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[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 Google Groups 
TiddlyWiki group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[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 be great to be able to choose your own word
for a tiddler and that then be used throughout the wiki, and by plugin
authors.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[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 only one to have made changes to the file. If I save
 last then only Tiddler43 will show changes.
Yes, that is why we will be using TiddlerLockPlugin to lock people out
of the wiki when it is being edited 'online'.

 A different idea: Have each person desiring to make edits import the
 tiddler they want to edit into their own personal TW, and then once
 they are done with that re-import the edited tiddler into the official
 TW. You still have to worry that someone will leave the file open, and
 then save it 6 hour later, wiping out all the changes made between
 times.
Yes, we will just be operating one wiki for that reason.

Jonathan
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[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 with a server-side would be better suited but that
route has been investigated and, as mentioned, is not currently
possible.

 Like what Mr. Girard suggests; One central TW and everyone makes his/
 her changes into a copy. Additionally, this copy is set up so that its
 timeline is refreshed continuously from the central TW at some
 periodic time interval. Maybe plugins like Mr.Shulmans
 LoadTiddlersPlugin, or ExportTiddlersPlugin plus Mr.Borkowskis
 AutoRefreshPlugin could be used, with the latter autorefreshing the
 sidebar-lists thus. This way, I figure, each user gets force fed with
 an updated listing ensuring it is at least a recent edition.
I can see that might work with a small group and a relatively small
wiki but I suspect the overheads would be too high with a larger wiki
and group of people, and you still seem to run the risk of people's
changes being accidentally overwritten.

 (If the above is possible perhaps a primitive plugin could deal with
 the following potential solution:
 Now, if the user is about to save, maybe it's possible to have
 something comparing the last modified time, i.e;
 Say, tiddler A has a last modified time at 1 o'clock. This is stored
 at t1
 You open A to edit.
 Meanwhile, there is a sync (as described above) with the central TW.
 Now, as you wish to save tiddler A, t1 is compared to the last
 modified time for A.
 If A has a *new* last modified time, this means someone else has
 saved a new copy of A, and you're informed about it - and perhaps with
 the option of opening the latest A to apply your intended changes to
 it, or maybe you can save your version as A(1) etc...
 )
Thanks for the ideas. I still think that TIddlyLockPlugin on one
central wiki, then devising some kind of warning where a tiddler is
being edited 'offline' would be simplest and minimise risks of
accidental overwrites though.

Regards

Jonathan
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[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 certainly agree with this. Unfortunately that requires installing
software which is verboten. Finding Tiddlywiki was therefore a
revelation, but I realise that what we'd ideally want to do goes
beyond its capabilities. So I'm trying to find the nearest thing. So
far a combination of TiddlyLockPlugin and a warning for 'offline'
editing still seem to be the way forward.

Any advances on 'HideWhenPlugin' showing a message in ViewTemplate
when a tiddler is tagged as being edited offline?

Jonathan
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[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 so if
substantial edits are going to be made (and some of the tiddlers are
upwards of 10,000 words) we'll ask people to make the changes in Word
and then paste them back in (I've a function to clean up the resulting
messy HTML - I'll save questions on that for another post next
week...).

Obviously if people are editing a tiddler 'offline' there's a risk
that someone else amends that tiddler in the meantime. I was therefore
trying to work out whether we could perhaps get people to tag a
tiddler with 'BeingEdited' or similar which would then display a
message to warn people not to make amendments.

I wondered about:
* inserting something in a div in ViewTemplate and using
HideWhenPlugin to only show it when a tiddler is tagged appropriately
* using the annotations section - can only shadow tiddlers do this or
is there a way to do this in normal tiddlers?
* using transclusion - I dismissed this as tagging is one thing but
having to type in tiddler BeingEdited will be expecting too much.
Also, our use of HTML tiddlers would make this difficult.

Grateful for any thoughts on how this might be done.

Jonathan
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[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 new wiki on colleagues they like the
  SearchOptionsPlugin listing of search results, but want to combine it
  with having their search term highlighted when they click on a link.

 This was an oversight on my part.  I have updated SearchOptionsPlugin
 so that clicking on a link in the SearchResults report will now
 correctly highlight the matching search terms within the displayed
 tiddler content.

 Get the update (v3.0.2) here:
    http://www.TiddlyTools.com/#SearchOptionsPlugin
    http://www.TiddlyTools.com/#SearchOptionsPluginInfo

Thanks, don't know how you manage such fast responses! Having tried it
out, the result matches the in-built search highlighting.
Unfortunately that doesn't seem to give up once it hits an HTML tag
in a tiddler. As all our tiddlers are in HTML because of the need for
wysiwyg editing it looks like we'll have to live without the
highlighting.

Jonathan
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[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 and how this differs from the current
 handling.

Using your HTMLFormattingPlugin and some post-processing in
EasyEditPlugin to convert headings back into wiki syntax our tiddlers
look something like this:

html!Summary
PThe European Company (Societas Europaea, SE) is ... member states./
P
PThe legislation provides ... /P
H1The European Company Statute/H1
P[[Briefing on the European Company|http://link/to/document.pdf]]/
P
/HTML

If you searched for 'European' the tiddler would be found, but there
would be no highlighting (whether using the standard search function
or your latest version of SearchOptionsPlugin).

Testing this further with the following tiddler which starts off in
wiki syntax before moving to HTML and back to wiki syntax I found that
the first instance of 'European' was highlighted, but not the others.

Fascinating article on the European Union.

HTMLMore HTML text on the European Union./HTML

And then some more text about the European Union.

Ideally the highlighting would highlight all instances of 'European'.

Does that help?
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[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:
    http://www.TiddlyTools.com/#HTMLFormattingPlugin
    http://www.TiddlyTools.com/#HTMLFormattingPluginInfo
Thanks, Eric!
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[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 Groups 
TiddlyWiki group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[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 a bit more re-write than just fixing up the exclusion
 logic... (specifically, the segment size is now calculated *after*
 removing excluded tags, so the minimum and maximum tag counts can be
 correctly determined)

 Get the update (v1.4.1) here:
    http://www.TiddlyTools.com/#TagCloudPlugin

Thanks again, lightning work. Hovering over the tags, I seem to have
tags in segments 1,2,3,4 and 6 but not 5, and a lot of tags in segment
0.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[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 it shows 25 tags. Also,
only the bottom two segments seem to be used.

Sorry to be a trouble-maker!

Jonathan
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[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 systemConfigDisable excludeLists
quickLink macros plugins excludeSearch temporary HotTopic hideTags)
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[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 because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[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

Jonathan
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[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())
  {
TiddlyLock.OldLockData = TiddlyLock.LockData;
TLLock();
  }
  var ret = TiddlyLock.easyEdit.apply(this,arguments);
  return ret;
}

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[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 with:

for (var cpt=0; cptlinks.length; cpt++) {
if (links[cpt].ref) {
links[cpt].href=links[cpt].ref; //to avoid IE 
conversion of
relative URLs to absolute
links[cpt].removeAttribute(ref);
}
}

If anyone knows any better method, grateful to hear it.

You can also replace the following line:

return IEeditor.beforeLinkPostProcessor(text).replace(/a href=#([^]
*)([^]*)\/a/gi,[[$2|$1]]);

with

return IEeditor.beforeLinkPostProcessor(text).replace(/a href=([^]
*)([^]*)\/a/gi,[[$2|$1]]);

and then if you have imported HTML text into your article it should
convert a href=../a links into wikitext links - warning
though, haven't tested this at all thoroughly.

Jonathan
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To post to this group, send email to TiddlyWiki@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---