[tw] Re: Problem using TiddlerNotesPlugin in my own macro

2009-03-02 Thread Eric Shulman

> wikify(pagecontent, place);
> Anyone understand why my macro produces an error?

wikify() has *four* parameters:

wikify(pagecontent,place,null,tiddler);


Also, if all you are trying to do is to insert a value into some
preformatted content, you can do this just by using TW standard
features, without having to write any code at all:

First, create a tiddler called [[PageText]], containing:
-
{{pages{
| Page $1 | Notes |
|<>|<>|
}}}
-

Then, to invoke it, use the TW core <> macro, like this:

<>

When the <> macro is processed, it automatically replaces all
occurrences of 'substitution markers' $1 through $9 with the
corresponding parameter values passed following the "with:" keyword.
Thus, the value "1" will be inserted in place of the marker "$1"
before the content from [[PageText]] is rendered, producing exactly
the same results as intended by your custom-written macro.

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



[tw] Problem using TiddlerNotesPlugin in my own macro

2009-03-02 Thread Matthew Horton

I have made the following macro, and everything works fine except
<>, which renders with the error "tiddler has no properties" in
the resulting tiddler where I call <>

//{{{
config.macros.PageText = {};
config.macros.PageText.handler = function
(place,macroName,params,wikifier,paramString,tiddler){

var pagenumber = params[0];
var pagecontent = "";
pagecontent = "{{pages{\n| Page " + pagenumber + " | Notes |\n|
<>|<>|
\n}}}";
wikify(pagecontent, place);

};
//}}}

Typed manually into a tiddler, the following code works fine:

{{pages{
| Page 1 | Notes |
|<>|<>|
}}}

Anyone understand why my macro produces an error?

Thanks,

Matthew
--~--~-~--~~~---~--~~
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: splittiddler dynamic title or rename tiddlers

2009-03-02 Thread Anthony Muscio
Awesome Eric !

This is fantastic, I have thoroughly tested this new version of the script
and it does exactly what I need.

For others reading this post I can recommend this script as a "top tool" for
tiddlywiki.

With this you can create multiple tiddlers from a single tiddler and name
them, attach tags and manipulate the contents generated systematically
(using the output format). For any PIM GTD or other application where a
canned set of tiddlers need to be generated it is fantastic. I imagine you
could even package a customised tiddlywiki in a few tiddlers then run the
splittiddler to "extract" them all, save and reload, and "wa la" fully
customised tiddlywiki. I use it now to generate the first 11 'known' steps
for every project I do.

Eric,

As I did with the older script I have modified it in my wiki (with a note to
that effect) so that I can pass replacable parameters to it; eg in bold.


source tiddler:


item separator:


add tags:


I pass the source tiddler name as $1, but for some reason this does not
work, although the tiddler name apears in the source tiddler field, I get an
error message until I change it in some way. When you hit the button a
message comes up ""Please enter a tiddler title". At the moment I pass the
value  "Del sourcetiddler", by deleting the "del ", the split tiddler button
works. All the others work fine such as the tags value above.

Is there a way to get the script to accept the first replacable parameter
without typing in that field ?

*Regardless of the above issue It is fantastic, so once again thank you very
much Eric, peoples productivity with tiddlywiki around the world improves
when you make enhancements.*

Regards TonyM

On Tue, Mar 3, 2009 at 11:37, Eric Shulman  wrote:

>
> > I use the very helpful split tiddlers script to generate a number of
> > canned task tiddlers to initiate a project. The Only problems is I
> > can't work out how to have the project name in the tiddler title so
> > they will be unique to each project (other wise they will overwrite
> > another uncompleted one),
>
> I've just updated SplitTiddler so it is much easier to specify a
> custom format for the 'target tiddler' titles.
>
> Instead of choosing the format from a fixed set of radio buttons, you
> can now enter a "format string" using the following substitution
> markers to indicate where key values will be inserted: %0=source
> tiddler title, %1=first line of item, %2=first word of item, %3=item
> number, %4=item content.
>
> Note: the default format is: "%0 - %1", so that if you are splitting a
> tiddler named [[SomeStuff]], you would get results like [[SomeStuff -
> This Part]], [[SomeStuff - That Part]], [[SomeStuff - TheOtherPart]],
> etc.
>
> With this latest revision to the SplitTiddler script, you should be
> able to produce the specific title results you are seeking simply by
> entering a format like: "MyFirstProject %1"
>
> Get the update (v1.5.0) here:
>   http://www.TiddlyTools.com/#SplitTiddler
>
> enjoy,
> -e
> Eric Shulman
> TiddlyTools / ELS Design Studios
> >
>


-- 
TonyM

If you have not found an easy way to do it with TiddlyWiki, you have missed
something.
www.tiddlywiki.com

--~--~-~--~~~---~--~~
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: Cookie Jar

2009-03-02 Thread RA

This works:
config.options.chkPortableCookies=true;

This does not:
with(config) {
with(options) {
...
chkPortableCookies=true;
}
...
}

This is how I keep all other config tweaks and it's always been fine,
but not for chkPortableCookies. How do you explain that?

--R.

On Mar 2, 12:57 am, Eric Shulman  wrote:
> On Mar 1, 11:16 pm, RA  wrote:
>
> > Installed CookieSaverPlugin. But to use it, I still need one option -
> > chkPortableCookies - to be set "the old way", as a regular cookie?
> > I tried to add config.options.chkPortableCookies=true; to my
> > ConfigTweaks, but it gets ignored for some reason, and unless there is
> > a cookie present the option is still false.
> > Am I missing something?
>
> hmmm... not sure why that isn't working... but try putting your
> settings in CookieSaverPluginConfig so they are guaranteed to be
> invoked *after* CookieSaverPlugin is loaded.  Not sure if that will
> fix your problem, but it's worth a try...
>
> -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 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[tw] Re: splittiddler dynamic title or rename tiddlers

2009-03-02 Thread Eric Shulman

> I use the very helpful split tiddlers script to generate a number of
> canned task tiddlers to initiate a project. The Only problems is I
> can't work out how to have the project name in the tiddler title so
> they will be unique to each project (other wise they will overwrite
> another uncompleted one),

I've just updated SplitTiddler so it is much easier to specify a
custom format for the 'target tiddler' titles.

Instead of choosing the format from a fixed set of radio buttons, you
can now enter a "format string" using the following substitution
markers to indicate where key values will be inserted: %0=source
tiddler title, %1=first line of item, %2=first word of item, %3=item
number, %4=item content.

Note: the default format is: "%0 - %1", so that if you are splitting a
tiddler named [[SomeStuff]], you would get results like [[SomeStuff -
This Part]], [[SomeStuff - That Part]], [[SomeStuff - TheOtherPart]],
etc.

With this latest revision to the SplitTiddler script, you should be
able to produce the specific title results you are seeking simply by
entering a format like: "MyFirstProject %1"

Get the update (v1.5.0) here:
   http://www.TiddlyTools.com/#SplitTiddler

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



[tw] Re: a plugin to convert asterisks to radio-buttons

2009-03-02 Thread RA

Hi Saq,

thanks for noticing this.

If you have a formatter, that's already almost everything I need.
I am planning to use it when documenting software settings dialogs.
Using TW I can fake almost every element of a typical "Properties" GUI
- tabs, buttons, checkboxes, groupboxes, textareas. For radiobuttons I
have to resort to bulky html.

So I'd be happy if I had
 - simple wiki-style format for radiobuttons (which is how I
understood the "a plugin to convert asterisks to radio-buttons"
phrase)
 - ability to specify a selected radiobutton using syntax or custom
field (like Eric's CheckboxPlugin)
 - ability to have more than one radio group per tiddler (I suspect
this can be worked around using <> macro)


Thanks,
R.

On Mar 2, 1:48 am, Saq Imtiaz  wrote:
> Hiya,
>
> I'm afraid that was never turned into a general-use plugin, partly
> because whilst it is straightforward to turn a sequence of asterisks
> into radio-buttons, it was unclear to me as to how to generalize what
> do when a selection was made. For that particular use case we
> associated the selected radio buttons with answers and sent that data
> to a server, however I imagine that for a more general use plugin
> you'd probably want to save the selection locally somehow. Say as
> tags, or fields or something along those lines.
>
> If you know exactly how you plan to use it, I *might* be able to put
> together something usable for you.
>
> Cheers,
> Saq
>
> On Mar 1, 10:04 am, RA  wrote:
>
> > Is there such a plugin? Found this old blog entry that mentions it,
> > but nothing more. If anyone has it, please let me know, even if it's
> > alpha.
>
> >http://lewcid.org/2007/11/13/tiddlywiki-and-distance-learning/
--~--~-~--~~~---~--~~
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: Hiding/disabling editfunctions only for certain tiddlers, when online??

2009-03-02 Thread Måns

Maybe I need some kind of a lock.php function to be able to save
individual tiddlers, that aren't locked???

On 2 Mar., 20:09, Måns  wrote:
> Hi again Eric
>
> The TiddlerLock plugin has made it impossible for me to upload the
> single tiddlers not tagged with "locked" from my iTW.
> When I try to update/create/modify a tiddler I get this errormessage:
> 
> Warning:  fopen(./index.html) [ href='function.fopen'>function.fopen]: failed to open stream:
> Permission denied in /var/www/.dk/weekend/storeTiddler.php
> on line 362
> 
> Warning:  flock() expects parameter 1 to be resource, boolean
> given in /var/www/.dk/weekend/storeTiddler.php on line
> 363
> Error : 'index.html' couldn't be locked - File NOT updated !
>
> Should I write a lockfile (txt) on the server to get it to work again
> - or should I remove the plugins - and try to do something else?
> If you'd like to take a look at it - I will mail the adress and the
> password to you..
> But maybe it's just the lockfile and the uploadtiddlersplugin that
> don't work together??
>
> YS Måns Mårtensson
>
> On 28 Feb., 15:24, Måns  wrote:
>
> > I've imported
> > # TaggedTemplateTweak
> > # TiddlerPasswordPluginConfig
> > # TiddlerPasswordPlugin
> > # LockedEditTemplate
> > and tagged all the fragile tiddlers with "locked" - and it workes
> > excactly as I wanted.
>
> > My lesson learned is: When Mr. Shulman gives You a hint - you'd better
> > try it before you reject it...
> > I apologize profusely to mr. Shulman - and I will slow down and do the
> > testing before I jump to conlusions in the future.
>
> > Thank you very much mr. Shulman!!
>
> > As a reference for anyone else having a similar problem - I will
> > resume some of my considerations here:
>
> > I considered using ExternalTiddlersPlugin to be able to restore the
> > tiddlers when they break - When someone accidentially edited the
> > tiddler
> >  - or maybe even better
>
> > - make "alias tiddlers" with <> so people won't
> > get to the code by mistake.
> > (iTW uses ListByTag - it's a plugin which makes it possible to have a
> > Home-list of tiddlers tagged with Home as a "tappable" line (works
> > very good on my ppc) - and  use the iTW in the sidebar of FF or as a
> > programlink from Chrome. Here it really looks well - because Chrome
> > simulates iTWs iPhone-look.)
>
> > I would move the code to other tiddlers and change the FET-code from:
> > < > where
> > 'tiddler.tags.contains (context.inTiddler.title)
> > To:
> > < > where
> > 'tiddler.tags.contains ("TagName")
>
> > Now I don't need to..
>
> > Thank you very much Eric!!
>
> > YS Måns Mårtensson
>
> > On 27 Feb., 02:26, Måns  wrote:
>
> > > Thank you for answering my question.
> > > But - I didn't explain the situation correctly... sorry
>
> > > I need people to be able to see and use the content of certain
> > > tiddlers - not beeing able to edit the specific tiddlers 
> > > (online).http://groups.google.com/group/TiddlyWiki/browse_thread/thread/e750e6...
> > > I've made a table which uses forEachtiddlerplugin to gather
> > > information from other tiddlers and uses toggletags to tag those
> > > tiddlers. (in a sortable table)
> > > The code for this breaks when You save it online... so I don't want
> > > anyone (not even myself) to be able to edit the content of these
> > > 'preconfigured' tiddlers.(online). They are just there to gather
> > > information and toggle tags - not to be edited..
> > > I use BidiX's iTW and his tiddleruploadplugin with great success
> > > because of its ability to upload single tiddlers when refreshed. It
> > > enables me and my collegues to tag different tiddlers in the same iTW
> > > at the same time - and get sortable lists that we print via
> > > snapshotPlugin and a normal printer Its quite simple - yet
> > > effective.
>
> > > YS Måns Mårtensson
>
> > > On 27 Feb., 01:16, Eric Shulman  wrote:
>
> > > > > Is it possible to tag or insert a macro that prevents editing
> > > > > capabilities only for certain tiddlers when the TWs online?
>
> > > > First, install these tiddlers:
> > > >  http://www.TiddlyTools.com/#TiddlerPasswordPlugin
> > > >  http://www.TiddlyTools.com/#TiddlerPasswordPluginConfig
> > > >  http://www.TiddlyTools.com/#TaggedTemplateTweak
> > > >  http://www.TiddlyTools.com/#LockedEditTemplate
>
> > > > Then, for any tiddler that you don't want people to edit, simply tag
> > > > it with "locked", so it uses the alternative [[LockedEditTemplate]].
> > > > This template invokes the <> macro to prompt for
> > > > the admin password before rendering the standard EditTemplate.  If you
> > > > don't enter the correct password, the tiddler is automatically closed,
> > > > effectively preventing you from editing the tiddler.
>
> > > > Note: by default, [[LockedEditTemplate]] is tagged with 'locked', so
> > > > that people won't be able to break the lock on other tiddlers just by
> > > > editing the template to remove the macro="getTiddlerPassword"
> > > > invokation.
>
> > > > Simil

[tw] Re: HU - Moodle

2009-03-02 Thread Måns

Thank you Morris -it's true that I spent a lot of time translating
Eric Shulmans UnaMesaTW.
You can see it here: http://academy.unamesa.org/Application

But it's Mr. Shulmans work from a-z - I'm just a newbie fiddling
around with his very well constructed TiddlyWiki.
And beeing a novice in writing html (and all things webrelated) - the
copying/pasting/deleting html-code in the applicationform, was a true
challenge for me - because everytime I did hit finish - I had to hold
my breath to see what would happen :-)

I still can't figure out how to get it to send data to my mailserver -
using some kind of script - but Mr. Shulman has said that he wil try
to guide me through the process - which I would appriciate very much.

He's a true magician with TW, Mr Shulman - and I hope that he will
keep on the good work - because we are many TW-afficionados out there/
here -  who couldn't live without his contributions from TiddlyTools -
as well as his kind advice!!!

But anyways - Thank you for your  positive response - I am proud to be
able to copy - and make it work in my native language - and I've also
had a look at your http://tiddlyspot.com/twhelp/  - Thinking that I
might try to translate it into Danish as well - I just have to
translate a GTD - first to be able to find the time for it :-))

Regards Måns Mårtensson


On 2 Mar., 08:48, Morris Gray  wrote:
> On Mar 2, 8:40 am, Måns  wrote:
>
> > You can see my attempts here:http://behovsanalyse.tiddlyspot.com
>
> It is good to see the results of all of the hard work you have been
> putting in on your TiddlyWiki.
>
> Well done Måns.
>
> Morris Grayhttp://twhelp.tiddlyspot.com
> A TiddlyWiki help file for beginners
--~--~-~--~~~---~--~~
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: Hiding/disabling editfunctions only for certain tiddlers, when online??

2009-03-02 Thread Måns

Hi again Eric

The TiddlerLock plugin has made it impossible for me to upload the
single tiddlers not tagged with "locked" from my iTW.
When I try to update/create/modify a tiddler I get this errormessage:

Warning:  fopen(./index.html) [function.fopen]: failed to open stream:
Permission denied in /var/www/.dk/weekend/storeTiddler.php
on line 362

Warning:  flock() expects parameter 1 to be resource, boolean
given in /var/www/.dk/weekend/storeTiddler.php on line
363
Error : 'index.html' couldn't be locked - File NOT updated !

Should I write a lockfile (txt) on the server to get it to work again
- or should I remove the plugins - and try to do something else?
If you'd like to take a look at it - I will mail the adress and the
password to you..
But maybe it's just the lockfile and the uploadtiddlersplugin that
don't work together??

YS Måns Mårtensson


On 28 Feb., 15:24, Måns  wrote:
> I've imported
> # TaggedTemplateTweak
> # TiddlerPasswordPluginConfig
> # TiddlerPasswordPlugin
> # LockedEditTemplate
> and tagged all the fragile tiddlers with "locked" - and it workes
> excactly as I wanted.
>
> My lesson learned is: When Mr. Shulman gives You a hint - you'd better
> try it before you reject it...
> I apologize profusely to mr. Shulman - and I will slow down and do the
> testing before I jump to conlusions in the future.
>
> Thank you very much mr. Shulman!!
>
> As a reference for anyone else having a similar problem - I will
> resume some of my considerations here:
>
> I considered using ExternalTiddlersPlugin to be able to restore the
> tiddlers when they break - When someone accidentially edited the
> tiddler
>  - or maybe even better
>
> - make "alias tiddlers" with <> so people won't
> get to the code by mistake.
> (iTW uses ListByTag - it's a plugin which makes it possible to have a
> Home-list of tiddlers tagged with Home as a "tappable" line (works
> very good on my ppc) - and  use the iTW in the sidebar of FF or as a
> programlink from Chrome. Here it really looks well - because Chrome
> simulates iTWs iPhone-look.)
>
> I would move the code to other tiddlers and change the FET-code from:
> < where
> 'tiddler.tags.contains (context.inTiddler.title)
> To:
> < where
> 'tiddler.tags.contains ("TagName")
>
> Now I don't need to..
>
> Thank you very much Eric!!
>
> YS Måns Mårtensson
>
> On 27 Feb., 02:26, Måns  wrote:
>
> > Thank you for answering my question.
> > But - I didn't explain the situation correctly... sorry
>
> > I need people to be able to see and use the content of certain
> > tiddlers - not beeing able to edit the specific tiddlers 
> > (online).http://groups.google.com/group/TiddlyWiki/browse_thread/thread/e750e6...
> > I've made a table which uses forEachtiddlerplugin to gather
> > information from other tiddlers and uses toggletags to tag those
> > tiddlers. (in a sortable table)
> > The code for this breaks when You save it online... so I don't want
> > anyone (not even myself) to be able to edit the content of these
> > 'preconfigured' tiddlers.(online). They are just there to gather
> > information and toggle tags - not to be edited..
> > I use BidiX's iTW and his tiddleruploadplugin with great success
> > because of its ability to upload single tiddlers when refreshed. It
> > enables me and my collegues to tag different tiddlers in the same iTW
> > at the same time - and get sortable lists that we print via
> > snapshotPlugin and a normal printer Its quite simple - yet
> > effective.
>
> > YS Måns Mårtensson
>
> > On 27 Feb., 01:16, Eric Shulman  wrote:
>
> > > > Is it possible to tag or insert a macro that prevents editing
> > > > capabilities only for certain tiddlers when the TWs online?
>
> > > First, install these tiddlers:
> > >  http://www.TiddlyTools.com/#TiddlerPasswordPlugin
> > >  http://www.TiddlyTools.com/#TiddlerPasswordPluginConfig
> > >  http://www.TiddlyTools.com/#TaggedTemplateTweak
> > >  http://www.TiddlyTools.com/#LockedEditTemplate
>
> > > Then, for any tiddler that you don't want people to edit, simply tag
> > > it with "locked", so it uses the alternative [[LockedEditTemplate]].
> > > This template invokes the <> macro to prompt for
> > > the admin password before rendering the standard EditTemplate.  If you
> > > don't enter the correct password, the tiddler is automatically closed,
> > > effectively preventing you from editing the tiddler.
>
> > > Note: by default, [[LockedEditTemplate]] is tagged with 'locked', so
> > > that people won't be able to break the lock on other tiddlers just by
> > > editing the template to remove the macro="getTiddlerPassword"
> > > invokation.
>
> > > Similarly, [[TiddlerPasswordPluginConfig]] also requires you to enter
> > > an admin password, just to *view* that tiddler, so that the admin
> > > password itself cannot be viewed or modified without knowing the
> > > current password.
>
> > > The default password is 'admin'.  You should change this once you have
> > > sucessfuly installed the above mentioned pl

[tw] Error loading missing tiddler from file

2009-03-02 Thread cuboo

Hi there,

I do work on a linux and on a windows system an upload my tiddlywiki
to tiddlyspot, which works pretty fine. Just when I create a new
tiddler I always face an error message:

Error loading missing tiddler from file:///home/lars/Desktop/Knowhow.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:///media/Windows/My%20Data/Documents/cuboo.html :: httpReq ::
line 10868" data: no]

The file "home/lars/Desktop/Knowhow.html" was my first attempt and
upload file to tiddlyspot. I renamed my tiddlywiki and placed it
somewhere else in my filesystem meanwhile: /home/lars/Desktop/Windows
Documents/cuboo.html

Can anybody please tell me, where to tell my tiddlywiki the new file-
location?

Thank you, Lars
--~--~-~--~~~---~--~~
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: Can't save changes to tiddlywiki as local file in ie8 RC1

2009-03-02 Thread Saq Imtiaz

What operating system are you using?
Have you made sure that the file is "unblocked"? (http://
tiddlywiki.org/wiki/It%27s_not_possible_to_save_changes)

I just installed IE8 RC1 on Windows XPSP2 to test this and was able to
save normally using the latest empty.html from tiddlywiki.com.

Saq

On Feb 27, 5:25 pm, Joseph  wrote:
> Anyone know a work around? It seems to work great other than that one
> hiccup.
--~--~-~--~~~---~--~~
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: CopyTiddler 3.2.2 Problem

2009-03-02 Thread Russ Thomas

'tis all good Eric.  Much appreciated.
Russ

2009/3/2 Russ Thomas :
>>> Strangely, once I've upgraded to 3.2.2 I can't
>>> revert back to the old functionality with restoring from a backup TW.
>
> Damn-  WITHOUT restoring from... ;)
>
>> Now that *is* strange!  Note that the problem started with v3.2.0...
>> is it possible that you had already installed a broken revision (3.2.0
>> or 3.2.1), but didn't notice until now?  In any case, the latest
>> update should make this problem moot.
>
> Indeed.  We'll find out shortly.  But to answer said moot point (long
> intake of breath)...
>
> While you and I were swapping code/bugs about this, I was working from
> a test TW  - the "production" TW where I had planned to use CT later
> was kept on the sidelines waiting...
>
> Later, once you'd got sparse working and all the other goodies, I
> decided I'd split the production TW in two - only today I discovered
> that I had forgotten/neglected to upgrade the TW that makes the most
> use of CT (how dumb is that).  It has version 3.1.3+RTFix - which, as
> you might guess was your 313 code plus my cobbled-together fix.
>
> I now don't know nor can I determine what 313 became (314? 320?).
> Either way, I can assure you Eric, If I upgrade 3.1.3+RTFix to 3.2.2,
> and revert back to 3.1.3+RTFix, I've a broken CT as described above.
> If I a restore last night's backup, it's fine.  Twilight Zone?  ;)
>
> Off to get the update - back soon.
>
> 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 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[tw] Re: CopyTiddler 3.2.2 Problem

2009-03-02 Thread Russ Thomas

>> Strangely, once I've upgraded to 3.2.2 I can't
>> revert back to the old functionality with restoring from a backup TW.

Damn-  WITHOUT restoring from... ;)

> Now that *is* strange!  Note that the problem started with v3.2.0...
> is it possible that you had already installed a broken revision (3.2.0
> or 3.2.1), but didn't notice until now?  In any case, the latest
> update should make this problem moot.

Indeed.  We'll find out shortly.  But to answer said moot point (long
intake of breath)...

While you and I were swapping code/bugs about this, I was working from
a test TW  - the "production" TW where I had planned to use CT later
was kept on the sidelines waiting...

Later, once you'd got sparse working and all the other goodies, I
decided I'd split the production TW in two - only today I discovered
that I had forgotten/neglected to upgrade the TW that makes the most
use of CT (how dumb is that).  It has version 3.1.3+RTFix - which, as
you might guess was your 313 code plus my cobbled-together fix.

I now don't know nor can I determine what 313 became (314? 320?).
Either way, I can assure you Eric, If I upgrade 3.1.3+RTFix to 3.2.2,
and revert back to 3.1.3+RTFix, I've a broken CT as described above.
If I a restore last night's backup, it's fine.  Twilight Zone?  ;)

Off to get the update - back soon.

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



Filtering dates with mgtdlist?

2009-03-02 Thread acodring

Hi there,
I'm trying to cook up a reporting view that includes completed actions
and/or projects from last week.
where or gwhere from mgtdlist smell like they might be able to filter
by date, but I haven't found a reference saying what's available in
them.
In a perfect world the filter would 'just know' when last week was,
but I'd be very willing to edit the tiddler and put in the date range
I want.

The timeline part of 'Last 30 Modifications' from the Mankoff Dash
looks interesting too:
<>
Where does 'timeline' come from?

Any pointers that will speed my googling appreciated!
Andrew
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups "GTD 
TiddlyWiki" group.
To post to this group, send email to gtd-tiddlyw...@googlegroups.com
To unsubscribe from this group, send email to 
gtd-tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/GTD-TiddlyWiki?hl=en
-~--~~~~--~~--~--~---



[tw] Re: CopyTiddler 3.2.2 Problem

2009-03-02 Thread Eric Shulman



On Mar 2, 2:18 am, Russ Thomas  wrote:
> Hi Eric
>
> I've tried to update to 3.2.2 but have found a problem.  Recall that I
> use a CopyTiddlerPluginConfig tiddler to set options:
>
> config.commands.copyTiddler.suffixText="-%0";
> config.commands.copyTiddler.suffixPattern=/-([0-9]+)$/;
> config.commands.copyTiddler.zeroPad=2;
> config.commands.copyTiddler.sparse=true;
>
> These no longer work.

My profound apologies! Starting with v3.2.0 (2009.01.23), I refactored
the CopyTiddler code to add a *macro* syntax in addition to the
toolbar *command* keyword.  Unfortunately, as a result of the process,
I moved the configuration variables into a different place, thus
ignoring your existing configuration settings :-(

To correct this, I've just re-refactored the CopyTiddler code, in
order to restore backward-compatible support for using the
config.commands.copyTiddler.*=... settings.

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

After updating (and save/reload, of course), your old settings should
start working again.

> Strangely, once I've upgraded to 3.2.2 I can't
> revert back to the old functionality with restoring from a backup TW.

Now that *is* strange!  Note that the problem started with v3.2.0...
is it possible that you had already installed a broken revision (3.2.0
or 3.2.1), but didn't notice until now?  In any case, the latest
update should make this problem moot.

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



[tw] Re: Lightbox link inside popup list used for mainMenu

2009-03-02 Thread Fandang

I have now discovered how to mak ethis work. It was a simple case of
putting a  bullet in the CustomMenu list.

On Mar 1, 10:58 am, Fandang  wrote:
> Hi, TiddlyNoob here - I'm still working my way through these Tiddly
> things, but have hit a snag and hope someone can help.
>
> I have a main menu which shows for arguments sake:
>
> [[Home|Welcome]]<>  
> < ("Wikiresource")'$))]]>>< 22>>  
>
> So the second icon produces a popup menu containing the tiddlers
> tagged "Wikiresource" - that's fine.
>
> What I want to do is create a third menu (in MainMenu) that displays a
> popup (just like icon 2) with links that open content directly in alightbox. 
> I have followed the example docs for each tiddler (Lightbox
> Examples / PopUp macros), but can't get it to work.
>
> I have created a tiddler called CustomMenu (as per the PopUp example)
> which contains 2 links which produce content in lightboxes:
>
> <>
> <>
>
> When I put this code into the MainMenu (see below), it doesn't work.
>
> <>< topmen_tools.png 25 22>>
>
> Unfortunately, I can't work out why ... probably 'cos I'm stupid, but
> hope someone can help.
>
> Best regards and thanks
>
> Fandang
--~--~-~--~~~---~--~~
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] CopyTiddler 3.2.2 Problem

2009-03-02 Thread Russ Thomas

Hi Eric

I've tried to update to 3.2.2 but have found a problem.  Recall that I
use a CopyTiddlerPluginConfig tiddler to set options:

config.commands.copyTiddler.suffixText="-%0";
config.commands.copyTiddler.suffixPattern=/-([0-9]+)$/;
config.commands.copyTiddler.zeroPad=2;
config.commands.copyTiddler.sparse=true;

These no longer work.  Strangely, once I've upgraded to 3.2.2 I can't
revert back to the old functionality with restoring from a backup TW.
IOW, once 3.2.2 "breaks" this config, reverting back to a supposedly
working version of CT it is then broken too (weird).  Luckily this TW
is in a structure that is backed up each night.

Hope that's enough info for you.

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



[tw] Re: a plugin to convert asterisks to radio-buttons

2009-03-02 Thread Saq Imtiaz

Hiya,

I'm afraid that was never turned into a general-use plugin, partly
because whilst it is straightforward to turn a sequence of asterisks
into radio-buttons, it was unclear to me as to how to generalize what
do when a selection was made. For that particular use case we
associated the selected radio buttons with answers and sent that data
to a server, however I imagine that for a more general use plugin
you'd probably want to save the selection locally somehow. Say as
tags, or fields or something along those lines.

If you know exactly how you plan to use it, I *might* be able to put
together something usable for you.

Cheers,
Saq

On Mar 1, 10:04 am, RA  wrote:
> Is there such a plugin? Found this old blog entry that mentions it,
> but nothing more. If anyone has it, please let me know, even if it's
> alpha.
>
> http://lewcid.org/2007/11/13/tiddlywiki-and-distance-learning/
--~--~-~--~~~---~--~~
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: A TiddlyWiki presentation tool, textbook and notebook. Am I nuts?

2009-03-02 Thread Saq Imtiaz

Hey there,

That's quite a shopping list now isnt it? ;)

The good news is that all what you've mentioned is possible. The bad
news is that I don't think there are existing plugins that will cover
all of your needs, so you will need to write some of the pieces.

I do have the writing of a presentation setup similar to what you are
mentioning on my to-do list for the next version of the student and
instructor notebooks, but I wont be working on it until later this
year (July-August). However, there might be bits and pieces of the
current instructor notebook that you might find useful. It allows for
multiple "presentations" by combining a "SlideShow" theme with
multiple instances of the NavigationMacro. Using the TiddlerNotes
plugin allows for notes on slides which are not visible when viewing
as a SlideShow/presentation but are otherwise.

Feel free to take a look at the InstructorNotebook and see what if
anything you might be able to use. However, please do note that this
is very much still in development and rather raw and therefore I can't
promise any support for it: 
http://share.lewcid.org/POLS250-InstructorNotebook.html
(Go to Manage -> ListTags to get access to the plugins used)

The StudentNotebook on the other hand is much more mature:
http://lewcid.org/2009/02/11/student-notebook-workflow-demo-and-screencast/

Lastly, I am curious as to why you would prefer not have a server-side
component for this? Having worked with this type of set up for over a
year now, I've found that having some kind of server-side component in
the middle vastly simplifies the user experience. If the issue is the
ability/resources to deploy a server-side component we (UnaMesa) can
probably help you with that.

Cheers,
Saq

On Mar 2, 12:43 am, rouilj  wrote:
> Hi all:
>
> I am looking at using TiddlyWiki as a combination:
>
>    * presentation tool
>    * on-line textbook
>    * notebook
>
> for a class I will be teaching to system administrators.
>
> I am using the PresentationPlugin and associated TiddlyWiki from Saq
> Imtiaz athttp://lewcid.googlepages.com/presentation_empty_full.html.
> Since I need multiple presentations, I have tried using
> TaggedTemplateTweak (http://www.TiddlyTools.com/#TaggedTemplateTweak)
> to apply a Presentation1ViewTemplate for tiddlers (slides) tagged
> Presentation1. Then there is a Presentation2ViewTemplate etc where the
> view templates have hard coded into them the Index for the various
> presentations. This kind of works, but not really. Footers, page
> layout changes etc don't really work properly.
>
> I have integrated the TiddlerNotesPlugin
> (http://tw.lewcid.org/#TiddlerNotesPlugin) using the ViewTemplate to
> provide the note taking/annotation capability.
>
> Sadly this doesn't quite meet my requirements. I have the following
> needs and am looking for ideas on how to implement them:
>
>    * Presentation
>       * More than 1 presentation per TiddlyWiki (probably 5-10). The
>         goal is a single single textbook with "appendices" that supply
>         all the presentations.
>
>       * One tiddler per slide (to allow students to annotate on a per
>         slide basis).
>
>       * Slide navigation should be possible for presenter and student
>         modes.  So there should be next/prev links in the student copy
>         to allow them to follow along with the presentation. (My
>         tweaks above work fine for this as the
>         Presentation1ViewTemplate includes the navigation.) In student
>         mode, the notes will be shown as well as the standard 2/3
>         column style for searching/navigating within the TiddlyWiki.
>
>         The presenter's presentation mode should have a single tiddler
>         filling the screen/window with no left/right TiddlyWiki
>         navigation columns.  It should not show any notes and should
>         allow headers and footers. I have the no-notes part done by
>         replacing the Presentation1ViewTemplate in the presenter's
>         copy, but that doesn't change the view to single tiddler mode,
>         nor does it change the page layout to remove the three column
>         format.
>
>       * I need some way to make the next/prev buttons in the student
>         view replace the current slide rather than displaying the new
>         tiddler. Using SinglePageModePlugin would work, but it is
>         useful to display the slide and also any tiddlers referenced
>         from the slide at the same time to the students. For
>         presentation, using the SinglePageModePlugin is fine.
>
>       * Mouse navigation locations (next/prev links) should be fixed
>         and not have their vertical location change depending on the
>         slide length. (putting them just above the footer at the very
>         bottom of the window would work well). However the current
>         next/prev links require hard coding the name of the index file
>         used for the presentation.
>
>       * Allow navigation through the presen

[tw] Re: Cookie Jar

2009-03-02 Thread Eric Shulman



On Mar 1, 11:16 pm, RA  wrote:
> Installed CookieSaverPlugin. But to use it, I still need one option -
> chkPortableCookies - to be set "the old way", as a regular cookie?
> I tried to add config.options.chkPortableCookies=true; to my
> ConfigTweaks, but it gets ignored for some reason, and unless there is
> a cookie present the option is still false.

> Am I missing something?
hmmm... not sure why that isn't working... but try putting your
settings in CookieSaverPluginConfig so they are guaranteed to be
invoked *after* CookieSaverPlugin is loaded.  Not sure if that will
fix your problem, but it's worth a try...

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