[tw] ImportTiddlersPlugin issues

2009-11-03 Thread RA

Couple of issues using ImportTiddlersPlugin (via bookmarklet)

1. Getting error messages like

Opening http://www.tiddlywiki.com/
Could not open http://www.tiddlywiki.com/ - error=(XMLHTTPRequest
error)
Found 191 tiddlers in http://www.tiddlywiki.com/

Importing works despite that.

2. Cannot switch to a different server. I type in a new server, it
keeps opening the previous URL. Closing ImportTiddlers and reopening
it seems to help.
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to tiddlywiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en
-~--~~~~--~~--~--~---



[tw] Re: List of Versions

2009-11-03 Thread FND

> Is there a list of all past TiddlyWiki versions?

Right here:
 http://tiddlywiki.com/archive/

Out of curiosity, what do you need this for?


-- F.

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



[tw] Re: How to insert date?

2009-11-03 Thread Alex Hough
hi axelm

try this

http://mptw.tiddlyspot.com/#InstantTimestampPlugin

alex

2009/11/3 axelm 

>
> I am sure there was a keyboard shortcut to insert a date and or time.
> Anybody know?
>
> >
>


-- 
http://www.multiurl.com/g/64

--~--~-~--~~~---~--~~
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] search box too big in main menu

2009-11-03 Thread DaveP

Hi,

After I put <> in MainMenu, the resulting search box is too
wide and protrudes beyond the right margin on which the text in
MainMenu is aligned.

How do I either make MainMenu wider or the search box smaller?

Assuming both is possible, what are the advantages of one over the
other?

-Dave
--~--~-~--~~~---~--~~
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] How to insert date?

2009-11-03 Thread axelm

I am sure there was a keyboard shortcut to insert a date and or time.
Anybody know?

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



[tw] Re: search box too big in main menu

2009-11-03 Thread Alex Hough
Hi Dave,

I made what I understand to be a minimal test case (MTC)  [1] that you can
look at - (FND can you confirm that this *is a MTC) and include an
explanation below;

Overview
-
To change sizes you need to edit the StyleSheet tiddler.
In your case, you can either change the width of the MainMenu or the width
of the search box.
To do this you use CSS. First need to 'select' the element you want to
change.

To find out which 'selector' you need, a good place to start is
StyleSheetLayout in shadow tiddlers.
Here you will see the TW default settings.

Steps

1) In StyleSheetLayout, find, then cut and paste the MainMenu bit into
StyleSheet:

#mainMenu {position:absolute; left:0; width:10em; text-align:right;
line-height:1.6em; padding:1.5em 0.5em 0.5em 0.5em; font-size:1.1em;}

2) Then edit so that only the width remains

#mainMenu {width:10em;}

3) Then try higher values. One 'em' is one character width, like if you
think five more character spaces might do the trick try:

#mainMenu {width:15em;}

Changing Search

To change the width of the seach follow the same process, but it is slightly
less obvious. The search box has a 'class' "txtOptionInput" - you will see
it in StyleSheetLayout as

.txtOptionInput {width:11em;}

The dot '.' means class where as '#' means ID. When there are many items its
class, when only one, its ID. This is why its '#mainMenu' - there is only
one MainMenu tiddler, where as there are a few txtOptionInput or 'text
inputs'

To change the width of your txtOptionInput in the MainMenu and not elsewhere
(in options - where you type UserName for example) you need to use both
selectors

#mainMenu .txtOptionInput {width:15em;}

But you will also then have to shift over your tiddlers. Otherwise you will
get the MainMenu overlapping the tiddlers.
So, you'll have to alter the margin on the display area, the area that
contains the tiddlers (look in PageTemplate to see how the order of the
elements)

#displayArea {margin:2em 17em 0em 25em;}

the order of the values is top, right, bottom, left. So the 25em is the left
margin, which is more than enough to hold your new wide MainMenu

Alex

[1]
https://dl.getdropbox.com/u/1316865/TiddlyWiki/TiddlyWikiTestCases/MainMenuSearch.html






2009/11/3 DaveP 

>
> Hi,
>
> After I put <> in MainMenu, the resulting search box is too
> wide and protrudes beyond the right margin on which the text in
> MainMenu is aligned.
>
> How do I either make MainMenu wider or the search box smaller?
>
> Assuming both is possible, what are the advantages of one over the
> other?
>
> -Dave
> >
>


-- 
http://www.multiurl.com/g/64

--~--~-~--~~~---~--~~
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: Tiddle: beta release. A desktop application providing an indexed view into your TiddlyWiki

2009-11-03 Thread ben

Hi there Shavinder,

Please try running tiddle with the Xmx parameter.  This will increase
the heap size available.

java -Xmx512m -jar tiddle-0.0.4-jar-with-dependencies.jar

Please let me know if this fixes it.

Cheers,
B


On Oct 30, 1:48 pm, shavinder  wrote:
> Tried to runtiddleon Puppy Linux 4.3 java version "1.6.0_16"
> Here are the exceptions generated when I give the command from the
> terminal:
>
> Terminal
> Output-
> # java -jartiddle-0.0.4-jar-with-dependencies.jar
> log4j:WARN No appenders could be found for logger
> (tiddle.search.WikiFileLoader)                                   .
> log4j:WARN Please initialize the log4j system properly.
> Exception in thread "AWT-EventQueue-0" java.lang.OutOfMemoryError:
> Java heap spa                                   ce
>         at org.apache.lucene.index.DocumentsWriter.getCharBlock
> (DocumentsWriter.                                   java:1241)
>         at org.apache.lucene.index.CharBlockPool.nextBuffer
> (CharBlockPool.java:4                                   9)
>         at org.apache.lucene.index.TermsHashPerField.add
> (TermsHashPerField.java:                                   409)
>         at org.apache.lucene.index.DocInverterPerField.processFields
> (DocInverter                                   PerField.java:85)
>         at
> org.apache.lucene.index.DocFieldConsumersPerField.processFields
> (DocFi                                   eldConsumersPerField.java:36)
>         at
> org.apache.lucene.index.DocFieldProcessorPerThread.processDocument
> (Do                                   cFieldProcessorPerThread.java:
> 234)
>         at org.apache.lucene.index.DocumentsWriter.updateDocument
> (DocumentsWrite                                   r.java:765)
>         at org.apache.lucene.index.DocumentsWriter.addDocument
> (DocumentsWriter.j                                   ava:743)
>         at org.apache.lucene.index.IndexWriter.addDocument
> (IndexWriter.java:1917                                   )
>         at org.apache.lucene.index.IndexWriter.addDocument
> (IndexWriter.java:1895                                   )
>         attiddle.search.WikiSearchService.forDocuments
> (WikiSearchService.java:5                                   4)
>         attiddle.search.WikiSearchService.build
> (WikiSearchService.java:32)
>         attiddle.TiddleMain$1.run(TiddleMain.java:17)
>         at java.awt.event.InvocationEvent.dispatch(Unknown Source)
>         at java.awt.EventQueue.dispatchEvent(Unknown Source)
>         at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown
> Source)
>         at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown
> Source)
>         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown
> Source)
>         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
>         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
>         at java.awt.EventDispatchThread.run(Unknown Source)
> #
> --End of Terminal
> Output--
> I have no idea what the exception means. If you can please look into
> it I shall be thankful.
>
> -shavinder
>
> On Oct 29, 8:49 am, ben  wrote:
>
> > Hey Guys,
> > I've released a new version 0.0.4.
>
> > This version:
> > --Has improved file loading, will not fall over if it hits files that
> > are not TiddlyWikis when recursively loading directories.
> > --Will fail gracefully if not running on Windows.
> > --Has a debugging facility.  RunningTiddlefromtiddle-debug.bat will
> > output logs totiddle.log file in theTiddleinstallation directory.
>
> >https://sourceforge.net/projects/tiddle/
>
> > Cheers,
> > Ben
>
> > On Oct 28, 8:32 am, Måns  wrote:
>
> > > Thanks for explaining how to prevent the quick closedown of the cmd.
> > > Here is the full error 
> > > trace:http://twmtc.tiddlyspot.com/index.html#CmdScreenDumps
>
> > > YS Måns Mårtensson
>
> > > On 27 Okt., 21:57, ben  wrote:
>
> > > > Hiya Mans,
> > > > I still can't see the second screenshot.  I think it's not marked as
> > > > public on dropbox.
>
> > > > Could you please send me the full error trace?  You should be able to
> > > > get it by going to a dos prompt "Windows-R, type cmd, press enter"  cd
> > > > to yourTiddleinstallation directory, and type intiddle.bat.  The
> > > > command windows should stay there whilst any error messages are
> > > > displayed.  Let me know what you see.
>
> > > > Cheers,
> > > > Ben
>
> > > > On Oct 28, 7:26 am, Måns  wrote:
>
> > > > > Sorry there was a problem with the second link - here's a new 
> > > > > one:http://tinyurl.com/yj5nln8
>
> > > > > YS Måns Mårtensson
>
> > > > > On 27 Okt., 21:22, Måns  wrote:
>
> > > > > > Hi Ben
>
> > > > > > GREAT!! - I like the new options - thanks for sharing and developing
> > > > > > such a great tool -
> > > > > > but
> > > > > > I can't run it - not from the *.bat file nor from a customized
> > > > > > shortc

[tw] SaveAs

2009-11-03 Thread skye riquelme

Hi All

I am still struggling with the SaveAsPlugin around which I recently
posted two items -

http://groups.google.com.br/group/tiddlywiki/browse_thread/thread/829a1db47107d25d
http://groups.google.com.br/group/tiddlywiki/browse_thread/thread/89548962c5ab04ea

in one response FND pointed me to ccTiddly and TiddlyWeb.and I
confess I DO need to get up to speed with at least one of these
developments.

However, as I understand it...that won´t solve my specific situation
at present.

I need to explain that I am using TW for on-line interactive
courses...in an environment (rural Brasil) where internet is not
available at everyones doorstep. Many people have old desktops (some
even still running WIndows 98 !!!) at home...and can access internet
through cybercafes, schools, libraries ou the local council...when
they go to town. So I am working with a pendrive based system (using
PortableApps) that allows people to receive information packages
(storing them on the pendrive)..then go home ..work on the
materialkeep their learning journal...notes, fotos of projects
etc. When they next go to town...some of that information is loaded to
the school/my server (sort of assignments and ePortfolio) and some is
not (learning journal).

So...I am not sure about installing ccTiddly or TiddlWeb on a pendrive
and then figuring out how to sync some of the files and not
othersmaybe its possible...but at the moment its seems that the
combination of SaveAs/loadTiddlers and UploadPlugin is more do-able
for me.

So, if anyone cares to back and reread my previous two posts and offer
further suggestions I would be very gratefull. I have the system
basically functioningand would appreciate support in improving it
even more...

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 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: migrating to TW notes or TWT notes

2009-11-03 Thread iain

I think one important tip is if you are importing data tiddlers from
another TW don't they both have to be in the same folder?

Iain
--~--~-~--~~~---~--~~
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] Can't post to Groups

2009-11-03 Thread Morris Gray

I'm sending this by email. I don't know whether it will get through 
or not.  I can't post to the Group online.

We were unable to post your message
If you believe this is an error, please contact Google Support.

Sure!!

Here goes.

Morris 


--~--~-~--~~~---~--~~
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] TagSynonymPlugin?

2009-11-03 Thread Amzg

Is there a plugin that allows the user to pre-define synonymous tags
e.g;
tasty, delicious, yummy, "good tasting", ...

so that when a listing is run for the tag "tasty" (e.g via a fET),
then all tiddlers tagged with any synonym are also listed?

A particular - yet often encountered - situation that I've found is
for menus. For instance tagglyTaggingPlugin and the recent
TreeViewPlugin automatically structure tiddlers by tags into trees.
However, individual tiddlers are often tagged in singular form, e.g it
makes sense to tag "Mark Twain" with the tag "Author", But the menu
category header is ideally named "Authors" as there are many listed
there.

Is there some plugin that lets the user pre-define synonyms in a list
and that then ensures that all synonymously tagged tiddlers are
included when one if it's synonyms are used in listings etc? A
"feature" must be to let the user only care about the "synonym-aspect"
while setting up the synonym-list. I.e when the user later tags his
various tiddlers he should not have to bother to remember anything but
only to tag along freely.

I guess a decent variant would be something that automatically
*converts* all tags according to a pre-defined synonyms list. E.g any
tag occurence of 'yummy' becomes 'tasty'. Could be upon saving the
tiddler or perhaps invoked via some global command, or possibly when
saving the whole TW.


...now why do I have a feeling that the answer to my question if this
pllugin exists is "No"
 ;-)


Thanks


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



Re: D3 - Corrupted Content

2009-11-03 Thread James

Strangely, after re-assigning the first incorrect action to its
correct project, all the other actions re-appeared against their
correct projects.   This makes me think that it may have been an issue
with the initial population of the Summary View.  So all looks OK
again now.  What a relief.
James

On Nov 3, 7:05 pm, James  wrote:
> As mentioned above, I have just been trialling D3 today but have
> populated about 6 projects and about 30 actions.  It was saving
> backups automatically as I went.  When I closed the browser (IE!) not
> errors seen but I did notice that I had been populating D3 within the
> downloads directory.  To avoid confusion later I then moved the whole
> of the d3-sample folder to my documents folder, renamed the main file
> as D3-tracker and opened it up in IE again.  On re-opening the file I
> have found that several of my projects have been combined into one.
>
> I have looked at a number of the backups going back an hour or two and
> these are similarly corrupt.  Moving the folder back to where it was
> has made no discernable difference.  Will investigate further on the
> journey home tonight to see if there is any pattern.
>
> Anyone else come across this?  Any ideas what might have happened?
>
> James
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



D3 - Two Newbie Questions

2009-11-03 Thread James

Have been trialling D3 today.  It is mostly self-explanatory and
simpler to understand than other gtd implementations but I have two
questions:

In the Project Review and other views some actions are displayed in
bold.  What does bold text signify?

When I add an action from a project it is pre-populated with tags
'action' and 'unfiled'.  When I add an action from the left hand menu
I just get action.  What is the purpose of 'unfiled'.

Thanks,

James

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



D3 - Corrupted Content

2009-11-03 Thread James

As mentioned above, I have just been trialling D3 today but have
populated about 6 projects and about 30 actions.  It was saving
backups automatically as I went.  When I closed the browser (IE!) not
errors seen but I did notice that I had been populating D3 within the
downloads directory.  To avoid confusion later I then moved the whole
of the d3-sample folder to my documents folder, renamed the main file
as D3-tracker and opened it up in IE again.  On re-opening the file I
have found that several of my projects have been combined into one.

I have looked at a number of the backups going back an hour or two and
these are similarly corrupt.  Moving the folder back to where it was
has made no discernable difference.  Will investigate further on the
journey home tonight to see if there is any pattern.

Anyone else come across this?  Any ideas what might have happened?

James

--~--~-~--~~~---~--~~
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: migrating to TW notes or TWT notes

2009-11-03 Thread Måns

Hi Jeremiah
> If so, how do I migrate my existing data?
>
> thanks!
Read this (about how to import tiddlers and plugins) 
http://tinyurl.com/yl5o2vx

Morris' twhelp for beginners http://twhelp.tiddlyspot.com/#MovingTiddlers
Dave's TiddlyWiki for the rest of us
http://www.giffmex.org/twfortherestofus.html#[[How%20to%20install%20a%20plugin]]
and Tiddlywiki.org 
http://tiddlywiki.org/wiki/Import#Importing_From_TiddlyWiki_Documents

Regards 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 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: using TW with large editable files and dropbox

2009-11-03 Thread Måns

Hi Stefve

I have used TWs with references to video, images, audio and pdf's a
lot.
When you reference to images through fields and show them in eg.
custom viewtemplates - then you can rely on normal file references (to
images in the same directory as the TW) - when seeing the TW online -
but if you want to use images - or any file in your TW, you must embed
the files in your TW. Filesize is not a problem because you don't have
to actually encode the files to attach them to the TW. An example of a
link to a file which is located in a directory in the same directory
as the TW: "./images/imagetitle.jpg". You simply write [img
[imagetitle.jpg]] - and the attached file - embedded in a tiddler
delivers the local path to the file. It works very well with Dropbox -
and with any file I have tried to attach...
I often use pdf's in iframes like this: 
I don't even have to write that it is a pdf-file or suggest a path.
The embedded file tiddler (title:pdftitle.pdf) delivers paths and
mimetype.

All you need to make it work is Eric Shulmans 
http://www.tiddlytools.com/#AttachFilePlugin
+ AttachFilePluginFormatters, AttachFileMIMETypes.
For easy and automatic attachment - You should also install
http://www.tiddlytools.com/#FileDropPlugin.

Regards Måns Mårtensson

On Oct 31, 8:22 pm, steved  wrote:
> I have work that is too big or needs a speical or regular editor for
> TW , like academic papers, spreadsheers. I reference them in TW, but
> use TW's 'launch application' plugin around them, so when I want to
> edit them, it brings the app ( MS word, ...) of the file and away I
> go. This has worked fine in a local situation. But I would like to
> move this to a web based situation with dropbox. But unsure the best
> way to do it. Have folks attempted using dropbox not only to have your
> TW there, but to drop all sort of files for TW to use - and how to you
> reference and call them from TW. I guess I can continue to call them
> locally (launch application) as long as I sync dropbox first. But
> thought I should be able to call them from TW as a web based file.
>
> thoughts or experiences here?
>
> -stefve
--~--~-~--~~~---~--~~
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: migrating to TW notes or TWT notes

2009-11-03 Thread Måns

I second that :-)
"Looking forward and waiting to be amazed."..
Maybe a Christmaspresent - that would be very welcome.

YS Måns Mårtensson

On Nov 3, 6:17 pm, shavinder  wrote:
> Morris, what you just described is like a long-standing wish come
> true. Being able to change color schemes in an easy and mix-and-match
> way is what I have wanted since long.
> Looking forward and waiting to be amazed.
>
> -shavinder
>
> On Nov 3, 3:11 pm, Morris Gray  wrote:
>
> > On Nov 3, 7:33 pm, iain  wrote:
>
> > > Morris,
>
> > > are you going to offer some different colour schemes - something light
> > > and breezy with a touch of blue and yellow you know sand and sea.
> > > FiddlyWiki had a very nice colour scheme 
> > > (seehttp://way.net/FiddlyWiki/FiddlyWiki.html).
>
> > What I am working on is a wysiwyg TW design package that allows you to
> > virtually have any combination of themes applied separately to header,
> > background, MainMenu, topmenu, Sidebar, viewer, tiddler etc,
>
> > You'll be able to have multiple MainMenus and more than one at a time
> > by appending or prepending them into MainMenu, or the same in sidebar
> > choices - even reversing them if you wish or having both the same.
> > All changes are made with a single click and no knowledge of any type
> > of code is required.  There are default versions of all so if you
> > don't like what you did just click the defaults.
>
> > Once you have made your choices you simply save and it stays that
> > way.  There are no plugins or cookies used. So nothing can interfere
> > with the design used and you can make as many TiddlyWikis as you want,
> > all differing from one another, in perhaps many different ways, but
> > never interfering with each other whether online or offline or any
> > combination thereof. If you decide later to change any part just do it
> > and save.
>
> > Best of all even with all of the options it is still very light at
> > under 650k and could be less if the unused options are deleted.  All
> > of the hard work is done and I am now trying to clean it up and decide
> > on some options for a beta release and get comments.
>
> > You'll be amazed... stay tuned ;-)
>
> > Morris
>
> > On Nov 3, 7:33 pm, iain  wrote:
>
> > > Morris,
>
> > > are you going to offer some different colour schemes - something light
> > > and breezy with a touch of blue and yellow you know sand and sea.
> > > FiddlyWiki had a very nice colour scheme 
> > > (seehttp://way.net/FiddlyWiki/FiddlyWiki.html).
>
> > > Regards
>
> > > Iain
--~--~-~--~~~---~--~~
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: tbGTD

2009-11-03 Thread Måns

Better late than never - Congratulations with this wonderful TW-
design.
I'm totally in awe when navigating your GTD. It's just beautiful!!

I want to translate it into Danish - and I'm a little confused by all
the relations that are set up from the start.

Is there a best way of doing it - working from the middle and out - or
the opposite?

Maybe I should get your German version to see where to translate tags
etc?

Great work Tobias!! - Very impressive layout and very focused at gtd -
I really like the combination of reminders and the calendar +
weeknumbers - it almost reads ones mind :-) -
Just add speechcommands and you'll be able to work, if you talk while
you sleep.. (I do..)

Greetings from Denmark

YS Måns Mårtensson


On Oct 16, 4:26 pm, Tobias  wrote:
> Never quite "published" that one properly,
>
> After a major overhaul, I now present you withtbGTD, yet another
> TiddlyWiki's to get things done.
> Look here for recent changes:http://tinyurl.com/ylrf5zh
>
> Let me know what you think and, above all... enjoy
>
> Tobias.
--~--~-~--~~~---~--~~
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] DataTiddler woes.

2009-11-03 Thread David Cooper

I'm writing a new macro and I am trying to use the
DataTiddler.getDataObject which I am assuming is an array but it just
doesn't seem to be working for me. The code below is just some scratch
code to figure this out. It should return 3. Can anyone eyeball this
code and tell me what I am doing wrong?

config.macros.testmacro = {
  handler: function (place,macroName,params,wikifier,paramString,tiddler) {
var title = story.findContainingTiddler(place).getAttribute("tiddler");
var data = DataTiddler.getDataObject(title);
var datum = DataTiddler.getData(title,"two")
wikify(datum+" "+data.length,place);
   }
};

Tiddler
<>
{"one":1,"two":2,"three":3}

Tiddler displays:
2 undefined

--~--~-~--~~~---~--~~
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: migrating to TW notes or TWT notes

2009-11-03 Thread Craig in Calgary

Count me in on the "Oh boy! I can't wait!" list.
--~--~-~--~~~---~--~~
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] List of Versions

2009-11-03 Thread Chad

Is there a list of all past TiddlyWiki versions? I found a link to it
somewhere in this group, but can't find it any longer.
--~--~-~--~~~---~--~~
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: WikifyPlugin

2009-11-03 Thread Alex Hough
Hi Jakob,

I think that the problem here is that the custom field does not exist until
you open the tiddler to create it.
Where are you displaying the wikified text?

You could do some kind of filtering so that you don't display those tiddlers
where the field does not exist. HideWhen plugin? ForEachTiddler?

I had a similar problem with wikify plugin. I got round it my defining the
values in a 'configTweeks' tiddler, tagged 'systemConfig'.


ALex

2009/11/1 Jakob Graulund Jørgensen 

>
> Hi
>
> I am using the http://www.TiddlyTools.com/#WikifyPlugin to display
> formatted content from custom fields and it works pretty great. But
> tiddlers without content in custom fields display the code I've put
> into the viewtemplate inside the wikifymacro (ie. costumfi...@here
> costumfie...@here). If I open these trouble tiddlers to edit them and
> press done without doing anything, the code is no longer display and
> everything is fine (ie. nothing is displayed). That, however, is less
> than a perfect solution.
>
> Is anybody else experiencing this problem? And can it be fixed?
>
> (Im using IE7, windows and the lastest version of tiddlywiki)
>
> Regards
> >
>


-- 
http://www.multiurl.com/g/64

--~--~-~--~~~---~--~~
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: migrating to TW notes or TWT notes

2009-11-03 Thread shavinder

Morris, what you just described is like a long-standing wish come
true. Being able to change color schemes in an easy and mix-and-match
way is what I have wanted since long.
Looking forward and waiting to be amazed.

-shavinder

On Nov 3, 3:11 pm, Morris Gray  wrote:
> On Nov 3, 7:33 pm, iain  wrote:
>
> > Morris,
>
> > are you going to offer some different colour schemes - something light
> > and breezy with a touch of blue and yellow you know sand and sea.
> > FiddlyWiki had a very nice colour scheme 
> > (seehttp://way.net/FiddlyWiki/FiddlyWiki.html).
>
> What I am working on is a wysiwyg TW design package that allows you to
> virtually have any combination of themes applied separately to header,
> background, MainMenu, topmenu, Sidebar, viewer, tiddler etc,
>
> You'll be able to have multiple MainMenus and more than one at a time
> by appending or prepending them into MainMenu, or the same in sidebar
> choices - even reversing them if you wish or having both the same.
> All changes are made with a single click and no knowledge of any type
> of code is required.  There are default versions of all so if you
> don't like what you did just click the defaults.
>
> Once you have made your choices you simply save and it stays that
> way.  There are no plugins or cookies used. So nothing can interfere
> with the design used and you can make as many TiddlyWikis as you want,
> all differing from one another, in perhaps many different ways, but
> never interfering with each other whether online or offline or any
> combination thereof. If you decide later to change any part just do it
> and save.
>
> Best of all even with all of the options it is still very light at
> under 650k and could be less if the unused options are deleted.  All
> of the hard work is done and I am now trying to clean it up and decide
> on some options for a beta release and get comments.
>
> You'll be amazed... stay tuned ;-)
>
> Morris
>
> On Nov 3, 7:33 pm, iain  wrote:
>
> > Morris,
>
> > are you going to offer some different colour schemes - something light
> > and breezy with a touch of blue and yellow you know sand and sea.
> > FiddlyWiki had a very nice colour scheme 
> > (seehttp://way.net/FiddlyWiki/FiddlyWiki.html).
>
> > Regards
>
> > Iain
>
>
--~--~-~--~~~---~--~~
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: How to I round the corners of built in tabs

2009-11-03 Thread Alex Hough
Add this to your StyleSheet

.tab {
-moz-border-radius-topleft: 0.5em;
-moz-border-radius-topright: 0.5em;
}


This code in from MTPW roundtheme. [1]
It doesn't work  in IE.


ALex
[1] http://mptw.tiddlyspot.com/#MptwRoundTheme



2009/11/2 grant...@gmail.com 

>
> Update: I think what I am using are Sliders, which creates tabs along
> the top of the tiddler with the slider entries in the content area
>
> PS: how do I edit my original google group entry?
>
> On Nov 2, 11:25 am, "grant...@gmail.com"  wrote:
> > Hi, I am using the built in tab feature, where the tabs are along the
> > top as choice to get to content (thus not tabs for open tiddlers).  I
> > would like to round the corners of the tabs, but, seeing as how I am
> > not a css expert at all, I have no idea how to do this.  Can someone
> > point me to the right place to make the edit, and what I should add?
> > Thanks,
> > Grant
> >
>


-- 
http://www.multiurl.com/g/64

--~--~-~--~~~---~--~~
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: LoadRemotePlugin examples not working

2009-11-03 Thread RA

I can't get the "link imported tiddlers" checkbox checked by default.
Having ImportTiddlersPluginConfig has no effect.

-- R

On Nov 2, 11:21 pm, RA  wrote:
> It was still not working in my wiki, until I replaced double-quotes
> with singles. I thought there is no difference.
>
> And having ImportTiddlersPluginConfig has no effect.
> I have the following in ImportTiddlersPluginConfig:
>
>         config.macros.importTiddlers.sync = true;
>
> But the option remains unchecked.
>
> --R
>
> On Nov 2, 9:47 pm, Eric Shulman  wrote:
>
> > On Nov 2, 6:03 pm, RA  wrote:
>
> > > Inhttp://www.tiddlytools.com/#LoadRemotePlugin,
> > > ImportTiddlersPlugin and Firefox Privilege Manager links are empty,
> > > i.e. they show "javascript:;" and don't do anything.
>
> > Yup... they were broken. Should be fixed now (v2.0.2).  Give it a try:
> >    http://www.tiddlytools.com/#LoadRemotePlugin
>
> > enjoy,
> > -e
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To post to this group, send email to tiddlywiki@googlegroups.com
To unsubscribe from this group, send email to 
tiddlywiki+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/tiddlywiki?hl=en
-~--~~~~--~~--~--~---



[tw] Re: migrating to TW notes or TWT notes

2009-11-03 Thread jerimiah

OK, I like have a time frame: that will give me a reason to stop
fiddling with my tiddly (two months ago that remark would have sounded
wrong) and //just// take notes.

Which leads me back to the migration issue: will it be fairly simple
to migrate my data to this new TW?

Thanks,

Jerimiah

On Nov 2, 9:50 pm, Morris Gray  wrote:
> On Nov 3, 11:25 am, jerimiah  wrote:
>
> > I have been taking notes with MPTW for a while and TW notes looks a
> > little better.
>
> MPTW is an icon so perhaps it is better said TW Notes has featues that
> meets your needs better ;-)
>
> Firstly TW Notes and TWT Notes have a a rather dated hierarchical menu
> system but they both have tagglytagging installed. However they both
> should be superseded by the jQuery Treeview hierarchical menu system.
>
> Since I was first involved during the development of Treeview by MarkS
> I have developed several experimental TiddlyWikis, learning as I went.
> Examples are in the order they were developed:
>
> 1:http://twt-treeview.tiddlyspot.com/
> 2:http://twt-blackicity.tiddlyspot.com/
> 3:http://twt-treeview-executive.tiddlyspot.com/
>
> Number 3 I loaded with a lot of plugins and capabilities as a
> demonstration model and it might have things not needed by many.  I
> intended it to be used in a general way with the user removing what
> they didn't need or want.  NotesStorm by Dave Gifford is a good
> example. (I was thinking of calling a new one ThoughtShower but we'll
> see if NotesStorm blows over first:-)
>
> I am in the process of consolidating what I have learned and am
> currently working on developing two slim final ones of which one will
> include tagglytagging. And you might want to wait until then which is
> about a month or so away.
>
> I am only vaguely familiar with autoweave and current links to it seem
> to be down.  However I shouldn't think anything in Treeview
> TiddlyWikis should prevent it from working.
>
> None have tagglytagging installed but you can do that along with
> autoweave and you can experiment with one of the above and see if you
> can get some of your data to work in it.
>
> Morris
>
> On Nov 3, 11:25 am, jerimiah  wrote:
>
> > I have been taking notes with MPTW for a while and TW notes looks a
> > little better. Two questions:
>
> > Two features I'm hooked on are the autoweave plug in, which allows me
> > to discover things I already have notes on but didn't realize (like
> > complex drug names) and tiddly tagging, which is great because not
> > everything fits into a nice hierarchy.  Or, more specifically, it may
> > fit in one spot in a hierarchy in one class and an entirely different
> > one in another class/context.
>
> > Does TW Notes satisfy those things?
>
> > If so, how do I migrate my existing data?
>
> > thanks!
--~--~-~--~~~---~--~~
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: migrating to TW notes or TWT notes

2009-11-03 Thread Morris Gray

On Nov 3, 7:33 pm, iain  wrote:
> Morris,
>
> are you going to offer some different colour schemes - something light
> and breezy with a touch of blue and yellow you know sand and sea.
> FiddlyWiki had a very nice colour scheme 
> (seehttp://way.net/FiddlyWiki/FiddlyWiki.html).

What I am working on is a wysiwyg TW design package that allows you to
virtually have any combination of themes applied separately to header,
background, MainMenu, topmenu, Sidebar, viewer, tiddler etc,

You'll be able to have multiple MainMenus and more than one at a time
by appending or prepending them into MainMenu, or the same in sidebar
choices - even reversing them if you wish or having both the same.
All changes are made with a single click and no knowledge of any type
of code is required.  There are default versions of all so if you
don't like what you did just click the defaults.

Once you have made your choices you simply save and it stays that
way.  There are no plugins or cookies used. So nothing can interfere
with the design used and you can make as many TiddlyWikis as you want,
all differing from one another, in perhaps many different ways, but
never interfering with each other whether online or offline or any
combination thereof. If you decide later to change any part just do it
and save.

Best of all even with all of the options it is still very light at
under 650k and could be less if the unused options are deleted.  All
of the hard work is done and I am now trying to clean it up and decide
on some options for a beta release and get comments.

You'll be amazed... stay tuned ;-)

Morris






On Nov 3, 7:33 pm, iain  wrote:
> Morris,
>
> are you going to offer some different colour schemes - something light
> and breezy with a touch of blue and yellow you know sand and sea.
> FiddlyWiki had a very nice colour scheme 
> (seehttp://way.net/FiddlyWiki/FiddlyWiki.html).
>
> Regards
>
> Iain
--~--~-~--~~~---~--~~
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: using TW with large editable files and dropbox

2009-11-03 Thread FND

> I never check 'Hide editing features when viewed
> over HTTP'  Why is that config.options necessary?

So you're saying that option doesn't work? Could you confirm this with a 
minimal test case and raise a ticket?


-- F.

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



[tw] Re: Changing background color when changes need to be saved

2009-11-03 Thread FND

> I have tried this exact soln with v2.5.3 but have not been able to get
> it to work.

It seems transcluding a non-existing tiddler in the StyleSheet section 
breaks this. Just create an empty tiddler titled "StyleSheetCustom" and 
it should work.

HTH.


-- F.

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



[tw] Re: Printing

2009-11-03 Thread Morris Gray

On Nov 3, 7:22 pm, iain  wrote:

> Does it seem odd that changing the tiddler4 "Site Title' should cause
> a printing problem?

It seems very odd indeed Iain. Your scientific approach is good but
you must never change more than one thing at a time.  You seem to have
isolated it to the SiteTitle but I am still skeptical.

I still find it hard to believe that it is really the TiddlyWiki.
Although you never know

Also if you would like to zip it up and send it to me in the
'sitetitle change prevents printing state'  I'll see if I can
duplicate what you are seeing.

Morris

On Nov 3, 7:22 pm, iain  wrote:
> I have now loaded the tiddlers contains information from Iain's Notes
> on Industrial Archaeology into a clean copy of TW Notes.
>
> This eliminates changes made to improve the colour scheme, however the
> TW now appears in the print preview screen ot FF and prints.
>
> I then began my normal process of customisation. I changed the Default
> Tiddler and then edited the Site Title tiddler. This had the effect of
> bringing back the old problem. I reloaded the tiddler Site Tiddler
> from a clean backup of My Notes and this seems to have restored the
> problem.
>
> I tried this with my Iain's Notes on Industrial Archaeology but it
> didn't seem to fix the problem.
>
> Does it seem odd that changing the tiddler4 "Site Title' should cause
> a printing problem?
>
> Iain
--~--~-~--~~~---~--~~
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: migrating to TW notes or TWT notes

2009-11-03 Thread iain

Morris,

are you going to offer some different colour schemes - something light
and breezy with a touch of blue and yellow you know sand and sea.
FiddlyWiki had a very nice colour scheme (see 
http://way.net/FiddlyWiki/FiddlyWiki.html).

Regards

Iain
--~--~-~--~~~---~--~~
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: Printing

2009-11-03 Thread iain

I have now loaded the tiddlers contains information from Iain's Notes
on Industrial Archaeology into a clean copy of TW Notes.

This eliminates changes made to improve the colour scheme, however the
TW now appears in the print preview screen ot FF and prints.

I then began my normal process of customisation. I changed the Default
Tiddler and then edited the Site Title tiddler. This had the effect of
bringing back the old problem. I reloaded the tiddler Site Tiddler
from a clean backup of My Notes and this seems to have restored the
problem.

I tried this with my Iain's Notes on Industrial Archaeology but it
didn't seem to fix the problem.

Does it seem odd that changing the tiddler4 "Site Title' should cause
a printing problem?

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