[tw] Re: Less than, less than or equal to, etc in ASCIIMathML

2008-11-14 Thread kilucas

The following solution is from David Lippman in the ASCIIMath Google
group:


= doesn't always work because the editor can sometimes mess up
encoding of HTML entities.

To get it to recognize gt or \gt, search the ASCIIMathML.js file for
a
line like:

{input:lt,  tag:mo, output:,  tex:null, ttype:CONST},

and add a line after it that looks like:

{input:gt,  tag:mo, output:,  tex:null, ttype:CONST},


-David


On Nov 5, 10:09 pm, kilucas [EMAIL PROTECTED] wrote:
 If I use a=b in the hope of generating a less than or equal to
 symbol in ASCIIMathML within a TiddlyWiki, I see a ;=b. But if I
 use a\leb I do indeed see a less than or equal to b symbolically.
 But I don't see any reference to \le in the ASCIMathML documentation.

 I can also use \lt for less than, \ge for greater than or equal to,
 but oddly can't use \gt for greater than; the result is just displayed
 as gt.

 Does anyone know:

 1) why this is happening

 2) whether I have to do something special to get ASCIIMathML to
 recognise the documented character sequaneces

 3) and what symbol system I've stumbled on with the back-slash based
 codes

 Many thanks

 Kevin
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



[tw] Bullets in HTMLArea

2008-11-14 Thread kilucas

I'm using standard bullets using the* markup and numbered bullets
using the # markup in HTMLArea and wondered if anyone has any clues
about how to resolve the following perhaps:

1) Bullets are widely spaced - like paragraph spacing. But in some
HTML editors it's possible to have them in adjacent screen lines. Is
there a way to tell my bullets to pack closer together?

2) Numbered bullets don't get numbered - they're all set to the number
1

3) If I place some ASCIIMathML is a standard or numbered bullet, the
line breaks at that point when the tiddler is displayed. (It doesn't
break when I'm initially editing the line but displays in the editor
as broken if I return to the editor after displaying the tiddler). How
can I place ASCIIMathML in a bullet and have the text remain
continuous? (ASCIIMathML is signified by a back single-quote and I
wondered if that was causing a problem somehow and if so how to
resolve it).

Thanks for any clues you migtht have.

Kevin
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



[tw] Re: Google SyntaxHighlighter Plugin for TiddlyWiki

2008-11-14 Thread FND

N.B.:
Coding-related questions should be discussed on the developers group:
  http://groups.google.com/group/TiddlyWikiDev/
You're much more likely to get a useful response there.

 I was able to make this interesting plugin SyntaxHighlighterPlugin
 work in TW version 2.4. [...] But I have problem making it work in TW v2.3

It appears this has already been solved on the Chinese TiddlyWiki group; 
the problem was the CoreVersion slice:
 http://tinyurl.com/6nz3r6 
(http://groups.google.com/group/TiddlyWiki-zh/browse_thread/thread/4831ccbe59c90260/0c778658960a?#0c778658960a)

 The site is  http://www.coolcode.cn/show-310-1.html

I'm afraid I don't understand Chinese - could you upload a TiddlyWiki 
document demo'ing the plugin?


-- F.

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



[tw] Re: iPhone 3G

2008-11-14 Thread FND

 I have been using TW for a year or more now and I *really* want this
 function on my iPhone.  I also want to be able to save.

I'm not an iPhone user myself, but maybe the community wiki can provide 
some leads here:
 http://www.tiddlywiki.org/wiki/IPhone
The possibility of setting up a local web server isn't mention there 
yet; would be worth adding it there.

 Do I have any other options other than PHP to get this working ?

If the iPhone supports Python (and a quick Google search suggests it 
does), you could also use TiddlyWeb:
 http://www.tiddlywiki.org/wiki/TiddlyWeb

 thing is that I store confidential information (social sec numbers,
 credit cards, etc etc), so I cannot risk having a copy on the net.  It
 needs to be on my phone and encrypted.

I use the TiddlerEncryptionPlugin for this sort of thing:
 http://www.remotely-helpful.com/TiddlyWiki/TiddlerEncryptionPlugin.html

HTH.


-- F.

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



[tw] Re: Google SyntaxHighlighter Plugin for TiddlyWiki

2008-11-14 Thread BramChen

Installation reference:

1) download and extract the zip file, http://www.coolcode.cn/
attachment.php?id=8, to the relative subfolder *common/
syntaxhighlighter/* where the folder your TW document located.

2) add the followed contents to the shadowed tiddler *MarkupPostBody*
!--{{{--
script type=text/javascript src=common/syntaxhighlighter/
shPlugin.js/script
script type=text/javascript
dp.sh.ClipboardSwf = 'common/syntaxhighlighter/clipboard.swf';
/script
!--}}}--

3) add the followed contents shadowed tiddler *MarkupPreHead*
--{{{--
link rel=stylesheet type=text/css href=common/syntaxhighlighter/
SyntaxHighlighter.css /
!--}}}--

--
Bram

On 11月14日, 下午5時17分, FND [EMAIL PROTECTED] wrote:
 N.B.:
 Coding-related questions should be discussed on the developers group:
  http://groups.google.com/group/TiddlyWikiDev/
 You're much more likely to get a useful response there.

  I was able to make this interesting plugin SyntaxHighlighterPlugin
  work in TW version 2.4. [...] But I have problem making it work in TW v2.3

 It appears this has already been solved on the Chinese TiddlyWiki group;
 the problem was the CoreVersion slice:
  http://tinyurl.com/6nz3r6
 (http://groups.google.com/group/TiddlyWiki-zh/browse_thread/thread/483...)

  The site is  http://www.coolcode.cn/show-310-1.html

 I'm afraid I don't understand Chinese - could you upload a TiddlyWiki
 document demo'ing the plugin?

 -- F.
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



[tw] Re: Formatting center alignment and TW philosophy

2008-11-14 Thread iain

I can see where you are coming from Cloudburst Poetry, it is
frustrating that to use TW it seems that you need to know something
about HTML and CSS (and thanks very much to Eric I now know allot more
about CSS).

But isn't this where the various fully formatted TW's such as No
Brainer Notes and Fiddly Wiki come into play? I could use some of
these immediately without any knowledge of HTML or CSS.

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



[tw] Re: iPhone 3G

2008-11-14 Thread Mario

Willsy, If you get this up and running I will buy an iPhone, or at
least an iPod touch (not that you get a commission or anything). The
only thing stopping me now is that I use my pda for two main things -
contacts and a wikified notepad. So, contacts - check, wikified
notepad - none that I can find.

When you have it going please please please post at least a high level
overview of the tech you used and some of the hurdles you got over.

Thanks! Mario.

On Nov 14, 4:26 am, FND [EMAIL PROTECTED] wrote:
  I have been using TW for a year or more now and I *really* want this
  function on my iPhone.  I also want to be able to save.

 I'm not an iPhone user myself, but maybe the community wiki can provide
 some leads here:
      http://www.tiddlywiki.org/wiki/IPhone
 The possibility of setting up a local web server isn't mention there
 yet; would be worth adding it there.

  Do I have any other options other than PHP to get this working ?

 If the iPhone supports Python (and a quick Google search suggests it
 does), you could also use TiddlyWeb:
      http://www.tiddlywiki.org/wiki/TiddlyWeb

  thing is that I store confidential information (social sec numbers,
  credit cards, etc etc), so I cannot risk having a copy on the net.  It
  needs to be on my phone and encrypted.

 I use the TiddlerEncryptionPlugin for this sort of thing:
      http://www.remotely-helpful.com/TiddlyWiki/TiddlerEncryptionPlugin.html

 HTH.

 -- F.
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



[tw] CopyTiddlerPlugin new mode?

2008-11-14 Thread Ruzz

Eric - thanks for the help re ILJS btw...

Now, CopyTiddlerPlugin... I don't know if this can be added to CT by
way of a new mode of operation or, indeed, if it might be a whole new
plugin (or perhaps there's an existing plugin I don't know about!)  ;)

Currently, CT (pseudocode) does this:

NewT = T +  (n)  // eg: MyTiddler begets MyTiddler (1)

Where n is the generation index of the copy - kind of.  That's fine.
Kind of.  I've actually changed (hacked) it to do this:  NewT = T + -
n but that's immaterial to my question.

When another copy is made we get MyTiddler (2) - but only as long as
the source was *MyTiddler*.  If the source was MyTiddler (1) we get
MyTiddler (1) (1) (or MyTiddler-1-1 in my hacked version).  So here's
the proposal/question thing:

What I'd like is:  MyTiddler (2), MyTiddler (3) irrespective of
*which* tiddler was used as the source.  IOW, versioning, to all
intents and purposes.  This to me would be a superbly useful addition
(and if a branching mechanism could be specified too, well... ;))

TIA
Ruzz




--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



[tw] Re: CopyTiddlerPlugin new mode?

2008-11-14 Thread Eric Shulman

 Currently, CT (pseudocode) does this:

 NewT = T +  (n)  // eg: MyTiddler begets MyTiddler (1)
 When another copy is made we get MyTiddler (2) - but only as long as
 the source was *MyTiddler*.  If the source was MyTiddler (1) we get
 MyTiddler (1) (1) (or MyTiddler-1-1 in my hacked version).

CopyTiddlerPlugin is supposed to remove-and-replace the copy number
with the next incremental value, and it is working properly in my
documents, so it's a bit surprising that you are getting the results
you have observed.

Here's the *actual* code from the plugin (with annotations), which
shows that the desired functionality that you described is, in fact,
*exactly* what the code does:

First, find the existing (#) part of the title text (if any):
var re=/ \(([0-9]+)\)$/; var match = re.exec(title);
Next, calculate the new copy number, n and remove the old copy
number from the title:
var n=match?parseInt(match[1])+1:1; if (match) title=title.replace
(re,'');
Then construct the new tiddler title:
var newTitle=this.prefix+title+this.suffix.format([n]);

The problem arises because you are no longer using (#) as a suffix...
even though you have changed the output format for the suffix to -
#, the first line in the code shown above was still looking for the
(#) text pattern.

I've updated the plugin so that the suffix *pattern* can be properly
customized to match your customized suffix output *format*.

Also, please note that to change the format of the suffix, you should
not modify the plugin code.  Rather, you can simply create a new
tiddler called [[CopyTiddlerPluginConfig]], tagged with
'systemConfig', containing something like this:
   config.commands.copyTiddler.suffixText= - %0;
   config.commands.copyTiddler.suffixPattern=/ - ([0-9]+)$/;
when you save-and-reload, CopyTiddlerPluginConfig is invoked
immediately after CopyTiddlerPlugin (because plugins are run in
alphabetical order).  Thus, this setting will supersede the default
value defined in the plugin, and your customized suffix format/pattern
will be used.

enjoy,
-e
Eric Shulman
TiddlyTools / ELS Design Studios
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



[tw] Re: CopyTiddlerPlugin new mode?

2008-11-14 Thread Carol Rizzolo
I'm sorry but I am completely clueless as to what to do with what you have
written...help translating please! And thanks for your quick reply...I did
go to the link below , but, I really have no idea how to understand what is
there...help please!

On Fri, Nov 14, 2008 at 8:39 AM, Eric Shulman [EMAIL PROTECTED] wrote:


  I've updated the plugin so that the suffix *pattern* can be properly
  customized to match your customized suffix output *format*.

 Get the update (v3.1.1) here:
http://www.TiddlyTools.com/#CopyTiddlerPlugin

 -e

 



-- 
Wisdom begins in wonder Socrates

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



[tw] Still unable to upload to TiddlySpot

2008-11-14 Thread Eric Weir

I finally found time -- I'm recovering from surgery to repair a ruptured 
Achilles tendon -- to try to upload a TW to TiddlySpot.

History: I registered on TiddlySpot and created a TiddlyWiki, downloaded 
it, then imported it into a bare K2WS-themed TiddlyWiki, then tried 
uploading it, which returned the following error message:

About to upload on 

file:///C:/MyDocs/TiddlyWikiC:/MyDocs/TiddlyWiki/DownloadFromTiddlySpot.html.html
...
[Exception... Component returned failure code: 0x80520012
(NS_ERROR_FILE_NOT_FOUND) [nsIXMLHttpRequest.send] nsresult:
0x80520012 (NS_ERROR_FILE_NOT_FOUND) location: JS frame ::
file:///C:/MyDocs/TiddlyWiki/DownloadFromTiddlySpot.html :: httpReq
:: line 9364 data: no]

It was suggested that this might be a firewall problem. So just now I 
disabled the firewall and got the same result.

I'm at a point in my work with TiddlyWiki that it would be very helpful 
to me in my real work to be able to have a TiddlyWiki -- a database of 
reports on grant-making foundations-- hosted on TiddlySpot. I'm 
wondering if I should follow the directions uploading that Dave Gifford 
put together with BidiX's help, or is that unnecessary since I'm working 
with a TiddlyWiki created on and downloaded from TiddlySpot.

Help resolving this issue would be greatly appreciated.

Sincerely,

Eric Weir
Decatur, GA  USA
[EMAIL PROTECTED]

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



[tw] Re: CopyTiddlerPlugin new mode?

2008-11-14 Thread Eric Shulman

 I'm sorry but I am completely clueless as to what to do with what you have
 written...help translating please! And thanks for your quick reply...I did
 go to the link below , but, I really have no idea how to understand what is
 there...help please!

My posting was specifically addressing a problem that Ruzz noted in
TiddlyTools' CopyTiddlerPlugin.  This problem only appeared after he
has customized the (n) format that is used as a suffix for the newly
copied tiddler.  In response, I updated the CopyTiddlerPlugin code to
handle the kind of customization Ruzz wants to do.  In addition, I
explained how to correctly add a *separate* tiddler to make his code
changes, rather than modifying the code directly in CopyTiddlerPlugin.

If you just want to use CopyTiddlerPlugin without any customization,
all you need to do is use the 'backstageimport' feature in your
document to import the updated plugin from www.TiddlyTools.com, and
then add the copyTiddler command keyword to the 'ViewToolbar' and
'EditToolbar' definitions contained in [[ToolbarCommands]].  After you
save-and-reload, the 'copy' command will then appear in each tiddler's
toolbar.

HTH,
-e
Eric Shulman
TiddlyTools / ELS Design Studios
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



[tw] Re: CopyTiddlerPlugin new mode?

2008-11-14 Thread schilke

Carol,

I believe you've mixed up different threads, did you expect an answer
to your question here:
http://groups.google.com/group/TiddlyWiki/t/7e8895f81f160d62
If so, there's also the right place to look for answers (you might
also watch the title/subject of the answer to see what question is
addressed...)

--s.
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



[tw] Re: TiddlyDu2 - changing the left menu items

2008-11-14 Thread AlanBCohen

Dave, Thanks for the tip.  I haven't invested any significant time in
data entry yet, so I will take a look at MonkeyGTD.
If I go the route of moving to a wiki-based PIM instead of Palm
Desktop (since 1996 - LOTS of data!), there will be a significant
rebuilding effort needed on my part.

On Nov 12, 5:03 pm, Dave Gifford - http://www.giffmex.org/;
[EMAIL PROTECTED] wrote:
 I have kind of moved on from TiddlyDu2, since I have found Simon Baird's 
 MonkeyGTD alpha to be more helpful.
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



[tw] Re: CopyTiddlerPlugin new mode?

2008-11-14 Thread Ruzz

On Nov 14, 1:39 pm, Eric Shulman [EMAIL PROTECTED] wrote:
  I've updated the plugin so that the suffix *pattern* can be properly
  customized to match your customized suffix output *format*.

 Get the update (v3.1.1) here:
    http://www.TiddlyTools.com/#CopyTiddlerPlugin

 -e

Many many thanks Eric!

Ruzz
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Tiddlywiki and android phones

2008-11-14 Thread schilke

 Hah! Works for me...I could do some iPhone compatibility testing
 too...

damn, best parts away - so I'll go for the MBP, or at least a MBA :-S

--s.

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



[tw] Re: TiddlyDu2 - changing the left menu items

2008-11-14 Thread schilke

 Dave, Thanks for the tip.  I haven't invested any significant time in
 data entry yet, so I will take a look at MonkeyGTD.

...it resides here: http://monkeygtd.tiddlyspot.com/
And a better place for questions is here:
http://groups.google.com/group/GTD-TiddlyWiki

--s.

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



[tw] Re: CopyTiddlerPlugin new mode?

2008-11-14 Thread Eric Weir

On 11/14/2008 Ruzz wrote:

  What I'd like is:  MyTiddler (2), MyTiddler (3) irrespective of
  *which* tiddler was used as the source.

Hmm. Perhaps I was using another plugin, but I thought CopyTiddler gave 
the title New Tiddler to the copies it creates. Am I mistaken in 
taking this to suggest that it gives the new tiddler the title of the 
source tiddler plus (n)? If so, it's exactly what I want.

Thanks,

Eric Weir
Decatur, GA  USA
[EMAIL PROTECTED]

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



[tw] Re: CopyTiddlerPlugin new mode?

2008-11-14 Thread Eric Shulman

   What I'd like is:  MyTiddler (2), MyTiddler (3) irrespective of
   *which* tiddler was used as the source.
 Hmm. Perhaps I was using another plugin, but I thought CopyTiddler gave
 the title New Tiddler to the copies it creates.

Perhaps you are thinking of
   http://mptw.tiddlyspot.com/empty.html#NewMeansNewPlugin

 taking this to suggest that it gives the new tiddler the title of the
 source tiddler plus (n)? If so, it's exactly what I want.

That is exactly what CopyTiddler does.  It is invoked from the toolbar
of one tiddler, and uses that tiddler's title plus an appended (n)
suffix to create a new tiddler.

-e

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



[tw] Re: CopyTiddlerPlugin new mode?

2008-11-14 Thread Ruzz

    config.commands.copyTiddler.suffixText= - %0;
    config.commands.copyTiddler.suffixPattern=/ - ([0-9]+)$/;

Eric - what change is required to force min 2 digits in 'n'? (I always
find RegEx to have completely the opposite effect to aspirin ;))

TIA
R
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



[tw] Re: CopyTiddlerPlugin new mode?

2008-11-14 Thread FND

config.commands.copyTiddler.suffixPattern=/ - ([0-9]+)$/;
 
 Eric - what change is required to force min 2 digits in 'n'?

I'm not familiar with the rest of the code, but it seems like changing 
[0-9]+ to [0-9]{2,} should do the trick.

 I always find RegEx to have completely the opposite effect to aspirin

Once you get the hang of it, RegEx is lovely. Much like the *nix command 
line.


-- F.

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



[tw] Saving Tiddly Online

2008-11-14 Thread misha

Hello!

I am trying to get my Tiddly to save online the way it would if stored
locally.
Right now, if i make any changes to my wiki online, it doesnt take.
Is there a way to make the Tiddly function like a wiki does online?

Please 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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[tw] Re: Google SyntaxHighlighter Plugin for TiddlyWiki - Translation

2008-11-14 Thread Alfonso Reyes

FND ad Brem,
in retribution, if you don't mind, I will do the translation of the
Chinese page of the installation. It about 5 lines. I used the Google
translator which did good, approx. 75% accurate.
Alfonso Reyes
Houston, Texas


On Nov 14, 5:20 am, FND [EMAIL PROTECTED] wrote:
  Installation reference  [...]

 Thanks for that, Brem.

 So pretty much all you need is the code from shPlugin.js (which also
 works when in a systemConfig tiddler) and the SyntaxHighlighter.css
 styles (can be pasted into StyleSheet), with the Flash file for
 clipboard control being optional.
 (Such TiddlyWiki-friendly packaging would make it easier to import and
 use this plugin.)

 The code's not exactly lightweigt (~56 kB in total), but seems to
 produce really nice results.

 I've added links to the CoolCode posting and this discussion to the
 community wiki:
      http://www.tiddlywiki.org/wiki/Syntax_Highlighting

 By the way, the original post suggests this plugin is based on existing
 code - do you have a link to that source?

 -- F.
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Re: Use of TiddlyLock Plugin in monkeyGTD

2008-11-14 Thread Jordi Ballester Alomar

Hello Len,

I'm not sure where should I document my findings in the wiki. Do you
refer to this link? 
http://tiddlywiki.org/wiki/MonkeyGTD/Contributing_to_MonkeyGTD

Anyway, the changes are quite small, so I'll be posting them here. I
have uploaded a running example in the files section of this group.
File name is monkeyGTD and TiddlyLock.html.

In the html file, my changes are marked with

///START CHANGE JORDI BALLESTER///
...new code here...
///END CHANGE JORDI BALLESTER///

I hope that it helps!

Kind regards,
Jordi Ballester.

On Nov 14, 10:08 am, Len [EMAIL PROTECTED] wrote:
 Sharing your discoveries and tips is always welcome for others I guess
 You could even write instructions on the wiki so it would be easier to
 find if someone else is interested

 Thanks Jordi

 On Nov 14, 9:09 am, Jordi Ballester Alomar [EMAIL PROTECTED]
 wrote:

  Hello,

  I found a solution for using the TiddlyLock plugin in the monkeyGTD.
  It requires changes in the source code, but seems to be working pretty
  fine. If someone is interested, I can share the required code changes.

  Kind regards,
  Jordi.

  On Nov 12, 10:43 am, Jordi Ballester Alomar

  [EMAIL PROTECTED] wrote:
   Hello,

   I have started to test using the monkeyGTD to process actions for my
   team. We act as 'one' with respect to other teams in a project, and so
   I considered that the GTD method should apply.

   We put the html in a shared folder. After some use, we realized that
   we could not make changes concurrently. Then I found the TiddlyLock
   plugin (http://minormania.com/tiddlylock/tiddlylock.html), which
   should lock and unlock the tiddlywiki as required, allowing multiple
   users to edit the Tiddlywiki without fear of overwriting other user's
   changes.

   I have imported the TiddlyLock plugin into the monkeyGTD, and found
   that it works well whenever I'm editting an action or project. I mean,
   when I double click on a tiddler to edit it, the system will lock the
   mGTD with my user, and will prevent changes being made in the mGTD by
   other users.

   However, whenever I would expect that whenever I'm creating new
   actions, projects, ticklers or reference items, the application should
   automatically lock the file, or show an error message if it was
   unlocked.

   I wonder if it would be possible to adapt the mGTD in order to
   integrate smoothy with the TiddlyLock plugin? I expect that it would
   really have a big impact for my team!

   Thank you very much!!

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



[tw] Re: CopyTiddlerPlugin new mode?

2008-11-14 Thread Ruzz

On Nov 14, 5:19 pm, FND [EMAIL PROTECTED] wrote:
     config.commands.copyTiddler.suffixPattern=/ - ([0-9]+)$/;

  Eric - what change is required to force min 2 digits in 'n'?

 I'm not familiar with the rest of the code, but it seems like changing
 [0-9]+ to [0-9]{2,} should do the trick.

  I always find RegEx to have completely the opposite effect to aspirin

 Once you get the hang of it, RegEx is lovely. Much like the *nix command
 line.

 -- F.

Thanks - but didn't work:

config.commands.copyTiddler.suffixText=-%0;
config.commands.copyTiddler.suffixPattern=/-([0-9]{2,})$/;

Starting with a tiddler called test-one, three successive copy clicks
gave me

test-one-1
test-one-1-1
test-one-1-1-1

whereas,

test-one-01
test-one-02
test-one-03 (thru 99)

is what I'm trying to achieve.

Now, where's the aspirin ;)


--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



[tw] Re: Saving Tiddly Online

2008-11-14 Thread FND

 Right now, if i make any changes to my wiki online, it doesnt take.
 Is there a way to make the Tiddly function like a wiki does online?

You'll need a server-side solution for that:
 http://tinyurl.com/2y8fma 
(http://www.tiddlywiki.org/wiki/I_put_my_TiddlyWiki_file_on_my_web_server_and_I_can%27t_save)
There's a variety of options to choose from:
 http://www.tiddlywiki.org/wiki/Server-Side_Implementations


-- F.

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



[tw] Re: CopyTiddlerPlugin new mode?

2008-11-14 Thread Eric Shulman

      config.commands.copyTiddler.suffixPattern=/ - ([0-9]+)$/;
   what change is required to force min 2 digits in 'n'?
  changing [0-9]+ to [0-9]{2,} should do the trick.
 Thanks - but didn't work:
 config.commands.copyTiddler.suffixText=-%0;
 config.commands.copyTiddler.suffixPattern=/-([0-9]{2,})$/;
 gave me
 test-one-1
 test-one-1-1
 test-one-1-1-1

The problem is that the number formatting in CopyTiddlerPlugin wasn't
set up to support zero-padding... until now :-)

Get the update (v3.1.2) here:
   http://www.TiddlyTools.com/#CopyTiddlerPlugin
and then add this to your [[CopyTiddlerPluginConfig]]:
   config.commands.copyTiddler.zeroPad=2;

enjoy,
-e

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



[tw] Re: CopyTiddlerPlugin new mode?

2008-11-14 Thread Ruzz

  Get the update (v3.1.2) here:
     http://www.TiddlyTools.com/#CopyTiddlerPlugin
  and then add this to your [[CopyTiddlerPluginConfig]]:
     config.commands.copyTiddler.zeroPad=2;

Just a suggestion for 3.1.3

config.commands.copyTiddler.sparse='true';

Eric being... well, Eric, he'll

1 - know exactly what I'm expecting
2 - find some way to make that a tri-state/ternary value to include
some weird in between state I'd never even think of, and,
3 - have it done before I've finished typing!

Ruzz

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



[tw] Re: CopyTiddlerPlugin new mode?

2008-11-14 Thread Eric Shulman

   config.commands.copyTiddler.sparse=true;
 Eric being... well, Eric, he'll
 1 - know exactly what I'm expecting

If you've deleted a numbered tiddler, you don't want to re-use that
number... right?  I already thought about that situation, even before
your posting, but I decided to wait to see if anyone actually asked
for that feature before throwing it into the mix.

 2 - find some way to make that a tri-state/ternary value to include
 some weird in between state I'd never even think of, and,

actually, there *is* one weird situation: the sparse-ness will only
work when you are also zero padding the number, and then only up to
the limit of the padding.  Thus, if you are padding to 2-digits, once
you reach '100', any missing gaps above 100 will get re-used (i.e.,
non-sparse handling).

 3 - have it done before I've finished typing!

Well, it did take a little bit longer than that... :-)

Get the update (v3.1.3) here:
   http://www.TiddlyTools.com/#CopyTiddlerPlugin
and then add this to your [[CopyTiddlerPluginConfig]]:
   config.commands.copyTiddler.sparse=true;

enjoy,
-e
Eric Shulman
TiddlyTools / ELS Design Studios
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



[tw] Re: Unable to use ContactInfoPlugin

2008-11-14 Thread David Sevilla

Someone sent me a TW with the plugin (much appreciated), I rather
wanted it in MPTW (may come in handy) so I imported the plugin from
that TW into a new MPTW. It didn't work. Then I imported _all_ the
related plugins into a MPTW and it did work.

Thanks to all,

David

On Nov 13, 5:02 pm, David Sevilla [EMAIL PROTECTED] wrote:
 Of course, if someone has been successful, I would appreciate
 receiving a blank tiddlywiki with the plugin installed!

 Thanks,

 David

 On Nov 12, 5:45 pm, David Sevilla [EMAIL PROTECTED] wrote:

  Hi,

  After finding this plugin (http://macrolinz.com/macrolinz/tiddlyware/
  MacroLinz.html), I decided to use it for my own address book. But I
  have tried to install it a few times and it never works. I have tried
  to install it over a new MPTW and also over a new TW, both by copying
  the content of the plugin into a new tiddler and by importing it, and
  in two computers on top of that  :)

  In all the cases, when I refresh I get the sidebar buttons for new
  contacts, but when I create a contact the initial content of the
  tiddler is empty instead of Type the text for 'X', and after done
  I get nothing of the different menus to display information inside the
  tiddler. On top of that, if I try to open a contact tiddler that is
  closed, I just get an empty box, and the same thing happens if I try
  to open any of the new tiddlers that the plugin creates.

  I believe there is something wrong with the plugin, but my knowledge
  is too limited to look into it. Has anyone found the same problem?

  Thanks in advance,

  David
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



New Next Action in Project

2008-11-14 Thread Jeff

If I am working in a project tiddler, and I click the plus sign next
to next actions, it pops a new next action item, but doesn't fill in
the project. Clicking on the plus sign next to future actions in a
project tiddler pops a new future action item with the project field
pre-filled. Am I doing something wrong? I'd like the project to be
pre-filled when clicking on the plus sign for new next action under a
project. Running MonkeyGTD 3.0 alpha r103230

-- 
Jeff

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



[tw] ccTiddly importing themes

2008-11-14 Thread misha

Hello Everyone,

I have setup my server side ccTiddly install and have imported my
content from my local tiddly, however, the styles and theme don't seem
to be taking, i am thinking i have missed something but cannot figure
out what or find the place in the cctiddly that controls look and feel
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



[tw] Re: Google SyntaxHighlighter Plugin for TiddlyWiki

2008-11-14 Thread BramChen



On 11月14日, 下午7時20分, FND [EMAIL PROTECTED] wrote:
  Installation reference  [...]

 Thanks for that, Brem.


 The code's not exactly lightweigt (~56 kB in total), but seems to
 produce really nice results.
shPlugin.js included shCore.js, SyntaxHighlighterPlugin.js, all
supported languages listed on original web site and some other
collections of custom hightlighter by plugin author. Although it had
been compressed, it was a big file.

You would encounter a time lag while you open the tiddler itself if
you install it as a systemConfig tiddler.
In general, we don't need all supported languages, for the reason, I
recommend you instlall the shCore.js, parts of languages you needed,
and SyntaxHighlighterPlugin.js, thus the way like as I mentioned in
previous post would be easy to extend, of course. you still can
install the SyntaxHighlighterPlugin as a systemConfig tiddler.



 By the way, the original post suggests this plugin is based on existing
 code - do you have a link to that source?
http://code.google.com/p/syntaxhighlighter/


 -- F.
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---