Re: [tw] Question on Tiddlywiki Header

2010-09-03 Thread Alex Hough
Hi M,

By chance or design, the header on TW appears big to many new users
[is there an example of design where there is a slight error to
encourage exploration?]. Changing the header is presents an
easy-to-solve problem which can mark the start a (personal non-linear)
learning process.

Changing the header introduces the concept of Cascading Style Sheets
(CSS), the language by which the appearance of Webpages is controlled.
A good starting point is the W3 Schools CSS tutorial, where you can
learn about the basics, syntax, ID and Class.

TiddlyWiki is slightly different than other web pages. The W3 tutorial
suggests Three Ways to Insert CSS, but Tiddlywiki's design a unique
way to add CSS. In TiddlyWiki everything is stored in tiddler: The
SiteTitle tiddler contains the main text  in the header
(TiddlyWiki be default), SiteSubtitle contains the smaller text
(a reusable non-linear personal web notebook). The StyleSheet is
intended for users to insert their own CSS. It can be accessed by the
menu on the right hand side of the page. Click on the More tab, then
Shadowed - Tiddlers shadowed with default contents

Upon opening StyleSheet you will notice that there is no text - to
this tiddler you can insert CSS which will change the appearance of TW
to your specifications. To alter the header -- or any other element of
TW for that matter you need to find out either its Class or ID (see
Basics on the W3 Schools CSS tutorial). The easy way to start out is
look in another of TW's StyleSheets: StyleSheetLayout. In this tiddler
you will see the following default CSS:

.header {position:relative;}
.header a:hover {background:transparent;}
.headerShadow {position:relative; padding:4.5em 0 1em 1em; left:-1px; top:-1px;}
.headerForeground {position:absolute; padding:4.5em 0 1em 1em;
left:0px; top:0px;}

StyleSheet overwrites CSS in StyleSheetLayout,  do not change anything
in StyleSheetLayout. Instead cut-and-paste the chunk of CSS into
StyleSheet and then edit it.

The important part for changing the size of the header is not
.header{position:relative;} , .header a:hover
{background:transparent;} so delete them from your cut-and-pasted
chunk in StyleSheet

The important bit is the padding (see Box Model on the W3 Schools CSS
tutorial). The first padding number is larger than the others, it is
the one that is setting the padding at the top. Reducing it to 1em
something that you could try:

.headerShadow {position:relative; padding:1em 0 1em 1em; left:-1px; top:-1px;}
.headerForeground {position:absolute; padding:1em 0 1em 1em; left:0px; top:0px;}

Once you click done to finish editing, you should see the changes
immediately take effect.

Links
http://www.w3schools.com/css/

ALex
ps. I wrote the above and posted it to TW.org -
http://tiddlywiki.org/wiki/How_to_Change_the_Header. Tweaks most
welcome.

-- 
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: Warning: Using TaggerPlugin in TW 2.6.0 results in loss of custom fields (names and contents)

2010-09-03 Thread Eric Shulman
 In TW version 2.6.0, if you use the TaggerPlugin to change the tags of
 a tiddler, that tiddler's custom fields (and their contents) will
 disappear without a trace.  You can test this here:

 http://dl.dropbox.com/u/5687735/taggertest.html

in the onToggleTag() function, you can add a parameter to the
saveTiddler() call, by changing this:

store.saveTiddler(tiddler.title,tiddler.title,tiddler.text,tiddler.modifier,tiddler.modified,tiddler.tags);

to

store.saveTiddler(tiddler.title,tiddler.title,tiddler.text,tiddler.modifier,tiddler.modified,tiddler.tags,tiddler.fields);

i.e., pass the *existing* fields object (if any), when saving the
tiddler.

That should do it.

enjoy,
-e


-- 
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] TiddlyWiki on Android phones

2010-09-03 Thread Desire2010
Hi,

I found a couple of posts on this but they looked being a few months
old so I am wondering whether there is any good news on this topic.

Just tried TiddlyWiki on my Desire under Android 2.2 (Froyo) both with
the inbuild browser and both Dolphin browsers. Unfortunately with no
success.

Problem persists that you can open and navigate the wiki but not enter/
save any changes to it.

I am not a programmer, but ... has anyone thought about writing an app
that uses the inbuilt javascript resources to display the wiki and,
different to the browser, has permission to write to the SD card?

I found the app AndTidWiki Beta in the market which is a nice
starting point... however... I have to create my wiki with that tool
and can not use my existing TiddlyWiki.

Cheers

-- 
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] Announcing TagSearchPlugin (x-tagger + GotoPlugin)

2010-09-03 Thread Tobias Beer
Hi Everyone,

Since I've been reading a few requests lately for ways to tag things
differently - and as a birthday present to myself - I wanted to
announce a new plugin... TagSearchPlugin [1].

Its largely based on x-tagger [2] and - amongst other things -
integrates GotoPlugin [3] for tag selection.

Cheers, Tobias.


[1] http://tagsearch.tiddlyspot.com/
[2] http://tbgtd.tiddlyspot.com/#x-tagger
[3] http://www.tiddlytools.com/#GotoPlugin

-- 
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: Warning: Using TaggerPlugin in TW 2.6.0 results in loss of custom fields (names and contents)

2010-09-03 Thread Tobias Beer
Hi cmari,

As at one time it was based on tagger, feel free to test...

http://tagsearch.tiddlyspot.com

I hope it does not come with the above behaviour.


Tobias

-- 
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: Tag tiddler to another

2010-09-03 Thread Tobias Beer
Check out...

http://tagsearch.tiddlyspot.com

Cheers, Tobias.

-- 
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] Request for TiddlerTweakerPlugin...

2010-09-03 Thread Tobias Beer
This goes to Eric,

At many times when I wanted to batch-modify tiddlers I wanted to
invert the selection, e.g. get all tiddlers not tagged systemConfig.
As I am using TiddlerTweaker mostly in its bookmarklet version this
simple inversion is something I've always wanted.

It would be great if you could add a button to achieve that to its
toolbar ...and update the code for the bookmarklet. Thanks a lot!

Cheers, Tobias.

-- 
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 TagSearchPlugin (x-tagger + GotoPlugin)

2010-09-03 Thread PMario
uuups.
 - and as a birthday present to myself -
happy birthday :)

mario

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



Re: [tw] Re: Announcing TagSearchPlugin (x-tagger + GotoPlugin)

2010-09-03 Thread Alex Hough
Happy Birthday Tobias!

I like the idea of TW as a gift to self, but what about a gift for a
person? A family member? Corporate contact?

A TW gift pack comprising a memory stick, TW badge and some kind of
bedroom wall poster? A book - TiddlyWiki: The missing Manual?

(Perhaps a celebrity features in the poster wearing a badge and
performing some kind of task in a uniquely TiddlyWay?)

Alex

On 3 September 2010 12:32, PMario pmari...@gmail.com wrote:
 uuups.
 - and as a birthday present to myself -
 happy birthday :)

 mario

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



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



Re: [tw] Announcing TagSearchPlugin (x-tagger + GotoPlugin)

2010-09-03 Thread FND
This looks pretty nifty - good job, and thanks for sharing!

-- F.

-- 
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 TagSearchPlugin (x-tagger + GotoPlugin)

2010-09-03 Thread Tobias Beer
I noticed some display problems in ie too... will look into it.

Tobias.

On 3 Sep., 13:31, PMario pmari...@gmail.com wrote:
 Hi,
 Looks great. This could be the new way for tagging. :)

 FF 3.6.8 has a problem with

 .tagsearch a.toggleButton {
 ..
 padding: 0 2px}

 The toggle button is one line above the text.
 If I temporarily disable padding, with firebug it works.
 it looks like:
 []
 tag text

 same with:

 .tagsearch .quickopentag .button {
 padding:1px 3%;}

 quickopentag is below the text if the tag text is longer eg
 systemConfig
 see your descriptions
 this one just opens the new tiddler without asking ▾
 looks like
 []
 systemConfig
 ▾--

 On Sep 3, 1:01 pm, Tobias Beer beertob...@googlemail.com wrote:

  Hi Everyone,

  Since I've been reading a few requests lately for ways to tag things
  differently - and as a birthday present to myself - I wanted to
  announce a new plugin... TagSearchPlugin [1].

  Its largely based on x-tagger [2] and - amongst other things -
  integrates GotoPlugin [3] for tag selection.

  Cheers, Tobias.

  [1]http://tagsearch.tiddlyspot.com/
  [2]http://tbgtd.tiddlyspot.com/#x-tagger
  [3]http://www.tiddlytools.com/#GotoPlugin

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



Re: [tw] Re: Warning: Using TaggerPlugin in TW 2.6.0 results in loss of custom fields (names and contents)

2010-09-03 Thread cmari
Thanks to all!  Eric's solution worked perfectly of course.
It looks to me as though http://neilsandbox.tiddlyspot.com/ would need to be
similarly tweaked.
(I am completely clueless about jQeury so I'm too intimidated by Tobias's
plugin to investigate that one further).

I still don't understand why I didn't have this problem until I switched to
version 2.6.0.
Now I wonder if there are other broken things in my upgraded TWs. I depend
pretty heavily on custom fields.
cmari

On Fri, Sep 3, 2010 at 6:05 AM, Tobias Beer beertob...@googlemail.comwrote:

 Hi cmari,

 As at one time it was based on tagger, feel free to test...

 http://tagsearch.tiddlyspot.com

 I hope it does not come with the above behaviour.


 Tobias

 --
 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.comtiddlywiki%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/tiddlywiki?hl=en.




On Fri, Sep 3, 2010 at 6:05 AM, Tobias Beer beertob...@googlemail.comwrote:

 Hi cmari,

 As at one time it was based on tagger, feel free to test...

 http://tagsearch.tiddlyspot.com

 I hope it does not come with the above behaviour.


 Tobias

 --
 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.comtiddlywiki%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/tiddlywiki?hl=en.



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



Re: In-basket / Inbox

2010-09-03 Thread Mat
@Simon: Maybe it would simplify for newcomers if quick add was
renamed Inbox?

While on the topic;
I'ld love for the quick-add field to be half the size width wize and
in instead on the right hand side show the 'short form commands' i.e,
for actions: W: Waiting For N: Next F: Future S: Starred
and sliders with all existing projects listed etc.

:-)


On 27 Aug, 12:06, refortin refor...@gmail.com wrote:
 I created a tiddler called Inbox.  I just dump ideas and tasks into
 it.  Later in the day or even the next day, I process everything in
 the tiddler and clear it out.  Simple, clean, fast.

 On Aug 26, 10:02 pm, SirFabel fabien.beln...@gmail.com wrote:

  Guys, I don't see any In-basket... Am I missing something? The first
  goal of GTD is to get free of all the stuffs we have in mind, in our
  email inbox, etc. You cannot say a tool is GTD-compliant if it does
  not offer a collecting feature...

-- 
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: Tspace issue: scroll to top

2010-09-03 Thread twgrp
Thanks Tobias! What can be seen is a small pink triangle on top of the
X button, i.e on top of the close tiddler button. It is supposed to
be at at the lower corner instead.
Pleaes tell me if you still can't find it. (Maybe I'm missing/messing
up something with private/public?)

:-)

On Sep 2, 12:04 am, Tobias Beer beertob...@googlemail.com wrote:
 Hi twgrp,

 I can't see any scroll to top button at all, neither at the top nor at
 the bottom... what am I supposed to be looking for?

 Tobias.

-- 
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: TiddlyWiki on Android phones

2010-09-03 Thread Mike
Have you looked at this?

http://groups.google.com/group/tiddlywikidev/browse_thread/thread/82aedbd237790b5b?pli=1

hth,
Mike
Desire2010 wrote:
 Hi,

 I found a couple of posts on this but they looked being a few months
 old so I am wondering whether there is any good news on this topic.

 Just tried TiddlyWiki on my Desire under Android 2.2 (Froyo) both with
 the inbuild browser and both Dolphin browsers. Unfortunately with no
 success.

 Problem persists that you can open and navigate the wiki but not enter/
 save any changes to it.

 I am not a programmer, but ... has anyone thought about writing an app
 that uses the inbuilt javascript resources to display the wiki and,
 different to the browser, has permission to write to the SD card?

 I found the app AndTidWiki Beta in the market which is a nice
 starting point... however... I have to create my wiki with that tool
 and can not use my existing TiddlyWiki.

 Cheers

-- 
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] Is TW aware of its center being?

2010-09-03 Thread skye riquelme
Hi All

The title could sound rather esoteric.actually its a simple code
question.

I have some code sitting in a widened MainMenu (at left) that is
similiar to Erics QuickNote plugininput into some html boxes,
press Pass GO and it creates a new tiddler...out of thin air!

What I want is to be able to have this new tiddler automatically
linked to the tiddler that is currently open in the display
window so do I have something store.getTiddlerTitle
(current.mainwindow.tiddler) that I can add into the var tags =
calculation under the Pass GO botton.

Thanks in Advance
Skye

-- 
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 TagSearchPlugin (x-tagger + GotoPlugin)

2010-09-03 Thread skye riquelme
Hi All

Over the last few days, been working on a TW project and one
difficulty has been a simple way to let people keep their tags
organised and functioning  And now Tobias comes up and offers the
whole thing solved,,,simply and with great style..even before I
asked the question...even before I had time to properly formulate the
question 

Great Stuff .problem solved before I knew it was a problem.

This will become a valuable and oft-used part of my TW toolbox.

And HAPPY BIRTHDAY, TOBIAS

Skye

On 3 Set, 09:24, Tobias Beer beertob...@googlemail.com wrote:
 I noticed some display problems in ie too... will look into it.

 Tobias.

 On 3 Sep., 13:31, PMario pmari...@gmail.com wrote:

  Hi,
  Looks great. This could be the new way for tagging. :)

  FF 3.6.8 has a problem with

  .tagsearch a.toggleButton {
  ..
  padding: 0 2px}

  The toggle button is one line above the text.
  If I temporarily disable padding, with firebug it works.
  it looks like:
  []
  tag text

  same with:

  .tagsearch .quickopentag .button {
  padding:1px 3%;}

  quickopentag is below the text if the tag text is longer eg
  systemConfig
  see your descriptions
  this one just opens the new tiddler without asking ▾
  looks like
  []
  systemConfig
  ▾--

  On Sep 3, 1:01 pm, Tobias Beer beertob...@googlemail.com wrote:

   Hi Everyone,

   Since I've been reading a few requests lately for ways to tag things
   differently - and as a birthday present to myself - I wanted to
   announce a new plugin... TagSearchPlugin [1].

   Its largely based on x-tagger [2] and - amongst other things -
   integrates GotoPlugin [3] for tag selection.

   Cheers, Tobias.

   [1]http://tagsearch.tiddlyspot.com/
   [2]http://tbgtd.tiddlyspot.com/#x-tagger
   [3]http://www.tiddlytools.com/#GotoPlugin

-- 
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: Task dependencies

2010-09-03 Thread whatever
Hi!
I figured it out.
For example:
These conditions must be fulfilled in order for Task8 to be active:
list filter [tag[Task8 AND active_Task8 AND NOT (Task1 AND
active_Task1) AND NOT (Task2 AND active_Task2) AND NOT (Task3 AND
active_Task3) AND NOT (Task4 AND active_Task4) AND NOT (Task5 AND
active_Task5) AND NOT (Task6 AND active_Task6) AND NOT (Task7 AND
active_Task7) AND NOT finished_Task8 AND NOT Completed AND NOT
Archived]]

These conditions must be fulfilled in order for Task3 to be active:
list filter [tag[Task3 AND active_Task3 AND NOT (Task1 AND
active_Task1) AND NOT (Task2 AND active_Task2) AND NOT finished_Task3
AND NOT Completed AND NOT Archived]]

I have a table with a list of tasks for header and in each column is a
corresponding list of projects with active corresponding task.

By default, all projects are tagged active_TaskX. I use Eric's
CheckboxToggleTag (http://www.TiddlyTools.com/#CheckboxToggleTag) to
first set the tag TaskX and when that task is complete, I toggled
active_TaskX off and replace it with finished_TaskX.

I have 8 tasks and they always follow the same order, but they're not
always all used.

Oh yeah, I switched to fET, but the principle is the same.

w


On Aug 28, 11:42 pm, Tobias Beer beertob...@googlemail.com wrote:
 Hi w,

 First question: Why tag a task with itself?

 Furthermore, I NEVER tag a high-level item (e.g. a project) with its
 subitems (e.g. tasks). I would strongly recommend that you tag your
 tasks with the corresponding project, not the other way around!

 Also, whether a task is finished or open is independent form it's
 name. Therefore, you should have two more tags indicating a task-
 status: todo and done. In tbGTD [1] I went so far as to prefix
 certain tags for easier recognition. Thus, there are #todo, #done,
 #waiting, etc... with # indicating that these are task-status-tags.
 Likewise I would have $active or $future or $completed as project-
 status-tags.

 Finally, other than you knowing about it, I fail to see how exactly
 you are modeling task-dependencies. As for that I would simply tag a
 task with another task and thus have the latter depend on the
 former ...just like high level items ((sub-)projects) depend on
 subitems (tasks).

 What do you mean with the sequence of tasks is always the same? I
 prefer to think in stages and thus have tasks not only tag to a
 project but also to a stage, such that one might only get from one
 stage to another if the previous stage had been completed, think
 milestones. So, a stage 1 task for project A might be equivalent to
 a stage 1 task of project B, but they're not called the same as that
 would violate TiddlyWiki's unique naming conventions. Therefore, have
 them tag to a stage of a unique name and you know what point in the
 project you're at.

 Eventually you might want a table for project xyz to look like this...

 |open tasks|done tasks|h
 |open tasks for stage 1 of project xyz|done tasks for stage 1 of
 project xyz|
 |open tasks for stage 2 of project xyz|done tasks for stage 2 of
 project xyz|
 |etc...|p.p...|

 No offense, but unless you're no longer in a design stage of your task
 management you might want to consider designing it from scratch.

 Eventually, (especially x-tab of) tbGTD may really be of help to you
 (see toolbar or help documentation).

 Cheers and good luck,

 Tobias.

 [1]http://tbgtd.tiddlyspot.com/

-- 
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: Task dependencies

2010-09-03 Thread whatever
Hi!
I figured it out.
For example:
These conditions must be fulfilled in order for Task8 to be active:
list filter [tag[Task8 AND active_Task8 AND NOT (Task1 AND
active_Task1) AND NOT (Task2 AND active_Task2) AND NOT (Task3 AND
active_Task3) AND NOT (Task4 AND active_Task4) AND NOT (Task5 AND
active_Task5) AND NOT (Task6 AND active_Task6) AND NOT (Task7 AND
active_Task7) AND NOT finished_Task8 AND NOT Completed AND NOT
Archived]]

These conditions must be fulfilled in order for Task3 to be active:
list filter [tag[Task3 AND active_Task3 AND NOT (Task1 AND
active_Task1) AND NOT (Task2 AND active_Task2) AND NOT finished_Task3
AND NOT Completed AND NOT Archived]]

I have a table with a list of tasks for header and in each column is a
corresponding list of projects with active corresponding task.

By default, all projects are tagged active_TaskX. I use Eric's
CheckboxToggleTag (http://www.TiddlyTools.com/#CheckboxToggleTag) to
first set the tag TaskX and when that task is complete, I toggled
active_TaskX off and replace it with finished_TaskX.

I have 8 tasks and they always follow the same order, but they're not
always all used.

Oh yeah, I switched to fET, but the principle is the same.

w


On Aug 28, 11:42 pm, Tobias Beer beertob...@googlemail.com wrote:
 Hi w,

 First question: Why tag a task with itself?

 Furthermore, I NEVER tag a high-level item (e.g. a project) with its
 subitems (e.g. tasks). I would strongly recommend that you tag your
 tasks with the corresponding project, not the other way around!

 Also, whether a task is finished or open is independent form it's
 name. Therefore, you should have two more tags indicating a task-
 status: todo and done. In tbGTD [1] I went so far as to prefix
 certain tags for easier recognition. Thus, there are #todo, #done,
 #waiting, etc... with # indicating that these are task-status-tags.
 Likewise I would have $active or $future or $completed as project-
 status-tags.

 Finally, other than you knowing about it, I fail to see how exactly
 you are modeling task-dependencies. As for that I would simply tag a
 task with another task and thus have the latter depend on the
 former ...just like high level items ((sub-)projects) depend on
 subitems (tasks).

 What do you mean with the sequence of tasks is always the same? I
 prefer to think in stages and thus have tasks not only tag to a
 project but also to a stage, such that one might only get from one
 stage to another if the previous stage had been completed, think
 milestones. So, a stage 1 task for project A might be equivalent to
 a stage 1 task of project B, but they're not called the same as that
 would violate TiddlyWiki's unique naming conventions. Therefore, have
 them tag to a stage of a unique name and you know what point in the
 project you're at.

 Eventually you might want a table for project xyz to look like this...

 |open tasks|done tasks|h
 |open tasks for stage 1 of project xyz|done tasks for stage 1 of
 project xyz|
 |open tasks for stage 2 of project xyz|done tasks for stage 2 of
 project xyz|
 |etc...|p.p...|

 No offense, but unless you're no longer in a design stage of your task
 management you might want to consider designing it from scratch.

 Eventually, (especially x-tab of) tbGTD may really be of help to you
 (see toolbar or help documentation).

 Cheers and good luck,

 Tobias.

 [1]http://tbgtd.tiddlyspot.com/

-- 
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: Task dependencies

2010-09-03 Thread whatever
Hi!
I figured it out.
For example:
These conditions must be fulfilled in order for Task8 to be active:
list filter [tag[Task8 AND active_Task8 AND NOT (Task1 AND
active_Task1) AND NOT (Task2 AND active_Task2) AND NOT (Task3 AND
active_Task3) AND NOT (Task4 AND active_Task4) AND NOT (Task5 AND
active_Task5) AND NOT (Task6 AND active_Task6) AND NOT (Task7 AND
active_Task7) AND NOT finished_Task8 AND NOT Completed AND NOT
Archived]]

These conditions must be fulfilled in order for Task3 to be active:
list filter [tag[Task3 AND active_Task3 AND NOT (Task1 AND
active_Task1) AND NOT (Task2 AND active_Task2) AND NOT finished_Task3
AND NOT Completed AND NOT Archived]]

I have a table with a list of tasks for header and in each column is a
corresponding list of projects with active corresponding task.

By default, all projects are tagged active_TaskX. I use Eric's
CheckboxToggleTag (http://www.TiddlyTools.com/#CheckboxToggleTag) to
first set the tag TaskX and when that task is complete, I toggled
active_TaskX off and replace it with finished_TaskX.

I have 8 tasks and they always follow the same order, but they're not
always all used.

Oh yeah, I switched to fET, but the principle is the same.

w


On Aug 28, 11:42 pm, Tobias Beer beertob...@googlemail.com wrote:
 Hi w,

 First question: Why tag a task with itself?

 Furthermore, I NEVER tag a high-level item (e.g. a project) with its
 subitems (e.g. tasks). I would strongly recommend that you tag your
 tasks with the corresponding project, not the other way around!

 Also, whether a task is finished or open is independent form it's
 name. Therefore, you should have two more tags indicating a task-
 status: todo and done. In tbGTD [1] I went so far as to prefix
 certain tags for easier recognition. Thus, there are #todo, #done,
 #waiting, etc... with # indicating that these are task-status-tags.
 Likewise I would have $active or $future or $completed as project-
 status-tags.

 Finally, other than you knowing about it, I fail to see how exactly
 you are modeling task-dependencies. As for that I would simply tag a
 task with another task and thus have the latter depend on the
 former ...just like high level items ((sub-)projects) depend on
 subitems (tasks).

 What do you mean with the sequence of tasks is always the same? I
 prefer to think in stages and thus have tasks not only tag to a
 project but also to a stage, such that one might only get from one
 stage to another if the previous stage had been completed, think
 milestones. So, a stage 1 task for project A might be equivalent to
 a stage 1 task of project B, but they're not called the same as that
 would violate TiddlyWiki's unique naming conventions. Therefore, have
 them tag to a stage of a unique name and you know what point in the
 project you're at.

 Eventually you might want a table for project xyz to look like this...

 |open tasks|done tasks|h
 |open tasks for stage 1 of project xyz|done tasks for stage 1 of
 project xyz|
 |open tasks for stage 2 of project xyz|done tasks for stage 2 of
 project xyz|
 |etc...|p.p...|

 No offense, but unless you're no longer in a design stage of your task
 management you might want to consider designing it from scratch.

 Eventually, (especially x-tab of) tbGTD may really be of help to you
 (see toolbar or help documentation).

 Cheers and good luck,

 Tobias.

 [1]http://tbgtd.tiddlyspot.com/

-- 
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: Task dependencies

2010-09-03 Thread whatever
Hi!
I figured it out.
For example:
These conditions must be fulfilled in order for Task8 to be active:
list filter [tag[Task8 AND active_Task8 AND NOT (Task1 AND
active_Task1) AND NOT (Task2 AND active_Task2) AND NOT (Task3 AND
active_Task3) AND NOT (Task4 AND active_Task4) AND NOT (Task5 AND
active_Task5) AND NOT (Task6 AND active_Task6) AND NOT (Task7 AND
active_Task7) AND NOT finished_Task8 AND NOT Completed AND NOT
Archived]]

These conditions must be fulfilled in order for Task3 to be active:
list filter [tag[Task3 AND active_Task3 AND NOT (Task1 AND
active_Task1) AND NOT (Task2 AND active_Task2) AND NOT finished_Task3
AND NOT Completed AND NOT Archived]]

I have a table with a list of tasks for header and in each column is a
corresponding list of projects with active corresponding task.

By default, all projects are tagged active_TaskX. I use Eric's
CheckboxToggleTag (http://www.TiddlyTools.com/#CheckboxToggleTag) to
first set the tag TaskX and when that task is complete, I toggled
active_TaskX off and replace it with finished_TaskX.

I have 8 tasks and they always follow the same order, but they're not
always all used.

Oh yeah, I switched to fET, but the principle is the same.

w


On Aug 28, 11:42 pm, Tobias Beer beertob...@googlemail.com wrote:
 Hi w,

 First question: Why tag a task with itself?

 Furthermore, I NEVER tag a high-level item (e.g. a project) with its
 subitems (e.g. tasks). I would strongly recommend that you tag your
 tasks with the corresponding project, not the other way around!

 Also, whether a task is finished or open is independent form it's
 name. Therefore, you should have two more tags indicating a task-
 status: todo and done. In tbGTD [1] I went so far as to prefix
 certain tags for easier recognition. Thus, there are #todo, #done,
 #waiting, etc... with # indicating that these are task-status-tags.
 Likewise I would have $active or $future or $completed as project-
 status-tags.

 Finally, other than you knowing about it, I fail to see how exactly
 you are modeling task-dependencies. As for that I would simply tag a
 task with another task and thus have the latter depend on the
 former ...just like high level items ((sub-)projects) depend on
 subitems (tasks).

 What do you mean with the sequence of tasks is always the same? I
 prefer to think in stages and thus have tasks not only tag to a
 project but also to a stage, such that one might only get from one
 stage to another if the previous stage had been completed, think
 milestones. So, a stage 1 task for project A might be equivalent to
 a stage 1 task of project B, but they're not called the same as that
 would violate TiddlyWiki's unique naming conventions. Therefore, have
 them tag to a stage of a unique name and you know what point in the
 project you're at.

 Eventually you might want a table for project xyz to look like this...

 |open tasks|done tasks|h
 |open tasks for stage 1 of project xyz|done tasks for stage 1 of
 project xyz|
 |open tasks for stage 2 of project xyz|done tasks for stage 2 of
 project xyz|
 |etc...|p.p...|

 No offense, but unless you're no longer in a design stage of your task
 management you might want to consider designing it from scratch.

 Eventually, (especially x-tab of) tbGTD may really be of help to you
 (see toolbar or help documentation).

 Cheers and good luck,

 Tobias.

 [1]http://tbgtd.tiddlyspot.com/

-- 
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: TiddlyWiki on Android phones

2010-09-03 Thread mgsimon
 I found the app AndTidWiki Beta in the market which is a nice
 starting point... however... I have to create my wiki with that tool
 and can not use my existing TiddlyWiki.

Just copy your wiki in /sdcard/andtidwiki or create a shortcut to your
wiki and use.

-- 
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: Task dependencies

2010-09-03 Thread whatever
Hi!
I figured it out.
For example:
These conditions must be fulfilled in order for Task8 to be active:
list filter [tag[Task8 AND active_Task8 AND NOT (Task1 AND
active_Task1) AND NOT (Task2 AND active_Task2) AND NOT (Task3 AND
active_Task3) AND NOT (Task4 AND active_Task4) AND NOT (Task5 AND
active_Task5) AND NOT (Task6 AND active_Task6) AND NOT (Task7 AND
active_Task7) AND NOT finished_Task8 AND NOT Completed AND NOT
Archived]]

These conditions must be fulfilled in order for Task3 to be active:
list filter [tag[Task3 AND active_Task3 AND NOT (Task1 AND
active_Task1) AND NOT (Task2 AND active_Task2) AND NOT finished_Task3
AND NOT Completed AND NOT Archived]]

I have a table with a list of tasks for header and in each column is a
corresponding list of projects with active corresponding task.

By default, all projects are tagged active_TaskX. I use Eric's
CheckboxToggleTag (http://www.TiddlyTools.com/#CheckboxToggleTag) to
first set the tag TaskX and when that task is complete, I toggled
active_TaskX off and replace it with finished_TaskX.

I have 8 tasks and they always follow the same order, but they're not
always all used.

Oh yeah, I switched to fET, but the principle is the same.

w


On Aug 28, 11:42 pm, Tobias Beer beertob...@googlemail.com wrote:
 Hi w,

 First question: Why tag a task with itself?

 Furthermore, I NEVER tag a high-level item (e.g. a project) with its
 subitems (e.g. tasks). I would strongly recommend that you tag your
 tasks with the corresponding project, not the other way around!

 Also, whether a task is finished or open is independent form it's
 name. Therefore, you should have two more tags indicating a task-
 status: todo and done. In tbGTD [1] I went so far as to prefix
 certain tags for easier recognition. Thus, there are #todo, #done,
 #waiting, etc... with # indicating that these are task-status-tags.
 Likewise I would have $active or $future or $completed as project-
 status-tags.

 Finally, other than you knowing about it, I fail to see how exactly
 you are modeling task-dependencies. As for that I would simply tag a
 task with another task and thus have the latter depend on the
 former ...just like high level items ((sub-)projects) depend on
 subitems (tasks).

 What do you mean with the sequence of tasks is always the same? I
 prefer to think in stages and thus have tasks not only tag to a
 project but also to a stage, such that one might only get from one
 stage to another if the previous stage had been completed, think
 milestones. So, a stage 1 task for project A might be equivalent to
 a stage 1 task of project B, but they're not called the same as that
 would violate TiddlyWiki's unique naming conventions. Therefore, have
 them tag to a stage of a unique name and you know what point in the
 project you're at.

 Eventually you might want a table for project xyz to look like this...

 |open tasks|done tasks|h
 |open tasks for stage 1 of project xyz|done tasks for stage 1 of
 project xyz|
 |open tasks for stage 2 of project xyz|done tasks for stage 2 of
 project xyz|
 |etc...|p.p...|

 No offense, but unless you're no longer in a design stage of your task
 management you might want to consider designing it from scratch.

 Eventually, (especially x-tab of) tbGTD may really be of help to you
 (see toolbar or help documentation).

 Cheers and good luck,

 Tobias.

 [1]http://tbgtd.tiddlyspot.com/

-- 
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: Request for TiddlerTweakerPlugin...

2010-09-03 Thread whatever
Since we're requesting features for TiddlerTweakerPlugin, how about
the ability to add/remove tags instead of just replace tags.

w

On Sep 3, 1:13 pm, Tobias Beer beertob...@googlemail.com wrote:
 This goes to Eric,

 At many times when I wanted to batch-modify tiddlers I wanted to
 invert the selection, e.g. get all tiddlers not tagged systemConfig.
 As I am using TiddlerTweaker mostly in its bookmarklet version this
 simple inversion is something I've always wanted.

 It would be great if you could add a button to achieve that to its
 toolbar ...and update the code for the bookmarklet. Thanks a lot!

 Cheers, Tobias.

-- 
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: Is TW aware of its center being?

2010-09-03 Thread PMario
Hi,
There is a forEachtiddler function in the story prototype [2].
And a short script, to demonstrate, how it works [1]


script label=click me
var text = '';
story.forEachTiddler(function(title, tiddler){
text += title + '\n';
});
return '\n\n' + text;
/script

have fun!
mario

http://hoster.peermore.com/recipes/TeamWork/tiddlers.wiki#StoryForEachTiddlerTest
http://tiddlywiki.org/wiki/Dev:Story.forEachTiddler

On Sep 3, 7:32 pm, skye riquelme riquelme.s...@gmail.com wrote:
 Hi All

 The title could sound rather esoteric.actually its a simple code
 question.

 I have some code sitting in a widened MainMenu (at left) that is
 similiar to Erics QuickNote plugininput into some html boxes,
 press Pass GO and it creates a new tiddler...out of thin air!

 What I want is to be able to have this new tiddler automatically
 linked to the tiddler that is currently open in the display
 window so do I have something store.getTiddlerTitle
 (current.mainwindow.tiddler) that I can add into the var tags =
 calculation under the Pass GO botton.

 Thanks in Advance
 Skye

-- 
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: Request for TiddlerTweakerPlugin...

2010-09-03 Thread Eric Shulman
 Since we're requesting features for TiddlerTweakerPlugin, how about
 the ability to add/remove tags instead of just replace tags.

this feature *already exists* in TiddlerTweaker

As you noted, the entry in tags field:
   tag tag tag 
*replaces* the existing tags on the selected tiddlers.

However, if you include a + or - prefix on a tag value, then that
tags is *added* or *removed*, respectively, from the selected
tiddlers, rather than replacing the existing tags.  Thus:
   tag1 tag2 tag3 ... = replace existing tags
while
   +tag1 -tag2 +tag3 -tag4 ... = add/remove tags

Important note: to add/remove tags, make sure that EVERY tag value in
the input has a + or - prefix, because ANY tag *without* a prefix will
cause all existing tags to be replaced.

enjoy,
-e

-- 
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 TagSearchPlugin (x-tagger + GotoPlugin)

2010-09-03 Thread Mike
Happy Birthday!

thx for the great contribution, 2 items of interest
1) cmari posted a bug / conflict w/ taggerplugin, not sure if it
applies, but might want to check (not sure if u have any taggerplugin
code in their anymore)
2) I kept losing the popup when I tried to search/add a tag via
goto. . . Haven't tried adding stickypopupplugin yet, might be a easy
fix. . .

looks graet !

Mike


skye riquelme wrote:
 Hi All

 Over the last few days, been working on a TW project and one
 difficulty has been a simple way to let people keep their tags
 organised and functioning  And now Tobias comes up and offers the
 whole thing solved,,,simply and with great style..even before I
 asked the question...even before I had time to properly formulate the
 question 

 Great Stuff .problem solved before I knew it was a problem.

 This will become a valuable and oft-used part of my TW toolbox.

 And HAPPY BIRTHDAY, TOBIAS

 Skye

 On 3 Set, 09:24, Tobias Beer beertob...@googlemail.com wrote:
  I noticed some display problems in ie too... will look into it.
 
  Tobias.
 
  On 3 Sep., 13:31, PMario pmari...@gmail.com wrote:
 
   Hi,
   Looks great. This could be the new way for tagging. :)
 
   FF 3.6.8 has a problem with
 
   .tagsearch a.toggleButton {
   ..
   padding: 0 2px}
 
   The toggle button is one line above the text.
   If I temporarily disable padding, with firebug it works.
   it looks like:
   []
   tag text
 
   same with:
 
   .tagsearch .quickopentag .button {
   padding:1px 3%;}
 
   quickopentag is below the text if the tag text is longer eg
   systemConfig
   see your descriptions
   this one just opens the new tiddler without asking ▾
   looks like
   []
   systemConfig
   ▾--
 
   On Sep 3, 1:01 pm, Tobias Beer beertob...@googlemail.com wrote:
 
Hi Everyone,
 
Since I've been reading a few requests lately for ways to tag things
differently - and as a birthday present to myself - I wanted to
announce a new plugin... TagSearchPlugin [1].
 
Its largely based on x-tagger [2] and - amongst other things -
integrates GotoPlugin [3] for tag selection.
 
Cheers, Tobias.
 
[1]http://tagsearch.tiddlyspot.com/
[2]http://tbgtd.tiddlyspot.com/#x-tagger
[3]http://www.tiddlytools.com/#GotoPlugin

-- 
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: Is TW aware of its center being?

2010-09-03 Thread skye riquelme
Thanks Mario...I was not aware of that function.it gives me a
list of all tiddlers open in main window..and I was planning to
run with SinglePageMode activated anyway...so it gives me exactly what
I asked for...

perfect

WOW thats three perfect solutions in the same dayyou guys are
great !!!

Skye

On 3 Set, 17:38, PMario pmari...@gmail.com wrote:
 Hi,
 There is a forEachtiddler function in the story prototype [2].
 And a short script, to demonstrate, how it works [1]

 script label=click me
         var text = '';
         story.forEachTiddler(function(title, tiddler){
                 text += title + '\n';
         });
         return '\n\n' + text;
 /script

 have fun!
 mario

 http://hoster.peermore.com/recipes/TeamWork/tiddlers.wiki#StoryForEac...http://tiddlywiki.org/wiki/Dev:Story.forEachTiddler

 On Sep 3, 7:32 pm, skye riquelme riquelme.s...@gmail.com wrote:

  Hi All

  The title could sound rather esoteric.actually its a simple code
  question.

  I have some code sitting in a widened MainMenu (at left) that is
  similiar to Erics QuickNote plugininput into some html boxes,
  press Pass GO and it creates a new tiddler...out of thin air!

  What I want is to be able to have this new tiddler automatically
  linked to the tiddler that is currently open in the display
  window so do I have something store.getTiddlerTitle
  (current.mainwindow.tiddler) that I can add into the var tags =
  calculation under the Pass GO botton.

  Thanks in Advance
  Skye

-- 
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: Request for TiddlerTweakerPlugin...

2010-09-03 Thread Måns
Hi Eric
 However, if you include a + or - prefix on a tag value, then that
 tags is *added* or *removed*, respectively, from the selected
 tiddlers, rather than replacing the existing tags.  Thus:
    tag1 tag2 tag3 ... = replace existing tags
 while
    +tag1 -tag2 +tag3 -tag4 ... = add/remove tags

 Important note: to add/remove tags, make sure that EVERY tag value in
 the input has a + or - prefix, because ANY tag *without* a prefix will
 cause all existing tags to be replaced.

Would it be, in any way, possible to add the functionality of beeing
able to add, replace or remove text from tiddlers textfields (or
custom fields) in a similar way, in TiddlerTweaker?

Cheers Måns Mårtensson

-- 
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: Is TW aware of its center being?

2010-09-03 Thread skye riquelme
Oooopsspoke too soon

the script example works perfectly when I put it into the
MainMenu...it  displays the tiddlers as expected..

but when I tried to incorporate it into the bit of javascript that is
activated by the forms Pass Go button...the script does not
completealthough it was functioning before I added this partI
guess I am writing the code wrong..what i now have inside the
button script for this part.is...

var extratags = ;
story.forEachTiddler(function(title, tiddler){
text += title+ ;
});

I have changed the single quotes to doubles as I am inside the single
quotes of the onClick expresion...and I want to be able to the reult
as the variable extratags...to add it into the tags list for the new
tiddler...

...whats wrong with this code??

Thanks in Advance
Skye

On 3 Set, 19:03, skye riquelme riquelme.s...@gmail.com wrote:
 Thanks Mario...I was not aware of that function.it gives me a
 list of all tiddlers open in main window..and I was planning to
 run with SinglePageMode activated anyway...so it gives me exactly what
 I asked for...

 perfect

 WOW thats three perfect solutions in the same dayyou guys are
 great !!!

 Skye

 On 3 Set, 17:38, PMario pmari...@gmail.com wrote:

  Hi,
  There is a forEachtiddler function in the story prototype [2].
  And a short script, to demonstrate, how it works [1]

  script label=click me
          var text = '';
          story.forEachTiddler(function(title, tiddler){
                  text += title + '\n';
          });
          return '\n\n' + text;
  /script

  have fun!
  mario

 http://hoster.peermore.com/recipes/TeamWork/tiddlers.wiki#StoryForEac...

  On Sep 3, 7:32 pm, skye riquelme riquelme.s...@gmail.com wrote:

   Hi All

   The title could sound rather esoteric.actually its a simple code
   question.

   I have some code sitting in a widened MainMenu (at left) that is
   similiar to Erics QuickNote plugininput into some html boxes,
   press Pass GO and it creates a new tiddler...out of thin air!

   What I want is to be able to have this new tiddler automatically
   linked to the tiddler that is currently open in the display
   window so do I have something store.getTiddlerTitle
   (current.mainwindow.tiddler) that I can add into the var tags =
   calculation under the Pass GO botton.

   Thanks in Advance
   Skye

-- 
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: How to access tiddlerdataplugin data from another tiddler without FET

2010-09-03 Thread Dave Gifford - http://www.giffmex.org/
Thanks to everyone for your help! Blessings to you all

Dave

On Aug 31, 12:11 pm, Tobias Beer beertob...@googlemail.com wrote:
 Hi everyone,

 Sorry if this might not be helpful to the topic ... but with
 transclusion and things like:

 /%get section bar from tiddler foo%/
 tiddler foo##bar

 /%get slice b from tiddler a%/
 tiddler 'a::b'

 /%do the same using javascript%/
 section=store.getTiddlerText('foo##bar');
 slice=store.getTiddlerText(a::b,default);

 /%and not to forget%/
 store.getValue(tiddler,field)
 setValue        store.setValue(tiddler,field,value)

 ...what are the benefits of using DataTiddlerPlugin?

 Could it be that the missing link (if missing indeed) are some...

 store.saveSection(tiddler,section,text,visible);
 store.saveSlice(tiddler,slice,visible);

 ...methods for writing those values back to a given tiddler if one so
 choses to have them edited individually via some form?

 Tobias.

-- 
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] Permanent settings changes

2010-09-03 Thread tomblond
Hey everyone, I love the idea of TiddlyWikis, and am currently
exploring them. One thing I'm not particularly keen on though is the
way it uses cookies to save changes. As I will use these on many
different computers, I can see this getting annoying. Is there a way
to make settings permanent?

Basically, I want to stop it from saving backups altogether. Is there
some code I can comment out? Or any other way?

Cheers,
Tom

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