Re: [tw] Re: Preventing Firefox from asking about "unsafe enhanced abilities"

2011-04-23 Thread Dani Zobin
Thanks guys

It works

This tool demands a lot of customization, but great that so much is ready
and people are willing to help

On Fri, Apr 22, 2011 at 11:40 PM, Eric Shulman  wrote:

> > Put Eric's Firefox Privilege Manager bookmarklet* in your
> > bookmarkstoolbar, click it and set your priviliges...
> >
> > *http://tiddlytools.com/#InstantBookmarklets
>
> Although I have a *bookmarklet* that loads the plugin on the fly
> (using the LoadRemotePlugin transclusion), I am not the author/
> maintainer of the actual plugin.
>
> For the official distribution version, please visit:
>   http://firefoxprivileges.tiddlyspot.com/
>
> -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.
>
>

-- 
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: Calendar plugin tooltip tweak ?

2011-04-23 Thread Eric Shulman


On Apr 23, 3:13 am, Jim McD  wrote:
> Hi,
>    Could I ask for a small tweak, or some advice, regarding the
> calendar plugin ?  When I float the mouse over a day in the calendar,
> the tooltip shows that date, eg: "23 April 2011".  Would it be
> possible to add the day of the week to that, eg "Saturday 23 April
> 2011".  I tried adding "DDD" at various places in the code without
> success.

Please don't change "the code"... DatePlugin (which provides the
display service for CalendarPlugin) is set up to be customized using
DatePluginConfig, instead of modifying the plugin code.

I've added a new internal configuration to DatePlugin
   config.macros.date.tipformat=".0MM.0DD"

Edit DatePluginConfig to customize the tooltip format.

> Also, is it possible to show the reminder for that day, if there is
> one, in the tooltip ?  Currently I have remindermacros and dateplugin
> all setup and working.  To see the reminder on a given day, I have to
> click on the day and view the popup.  I would prefer to have that info
> in the tooltip.

Sorry, no. This is not practical.  The reminders are only computed
when you CLICK on the date and the popup is rendered and, depending
upon the size of your document, this may not be all that quick, making
response time for the mouseover tooltip very sluggish or seemingly non-
responsive.  In addition, the tooltip itself is limited in the length
of text it can display.  Some browsers may display only one line of
tip text (with no text-wrapping).  Other browsers may wrap the text
(at some arbitrary), but not allow mutli-line text (i.e., with
embedded newlines).

> Lastly, the third item in my wish list is to remove future reminders
> from the popup.  If I click a day, the popup shows all reminders
> occurring within 30 days after that date.  Is there a tweek to have it
> show only reminders for that date ?  This might not be needed if the
> tooltip thing above works.

I've added a new internal config in [[DatePluginConfig]]:
   config.macros.date.leadtime=31; // find reminders up to 31 days
from now

Get the updates (v2.7.3) here:
   http://www.TiddlyTools.com/#DatePlugin
   http://www.TiddlyTools.com/#DatePluginConfig
   http://www.TiddlyTools.com/#DatePluginInfo

enjoy,
-e
Eric Shulman
TiddlyTools / ELS Design Studios
--
Was this answer useful? If so, please help support TiddlyTools:

   TiddlyTools direct contributions: (paypal)
  http://www.TiddlyTools.com/#Donate
   UnaMesa tax-deductible contributions:
  http://about.unamesa.org/Participate (paypal)
   TiddlyWiki consulting:
  http://www.TiddlyTools.com/#ELSDesignStudios
  http://www.TiddlyTools.com/#Contact

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



[tw] Re: Is it easy to upload a TW made offline to TiddlySpace?

2011-04-23 Thread Eric Shulman
> The only thing, that I see is, that your non existant tiddlers have no
> custom fields. And that causes, the problem. But I have no concrete
> idea, why. Somewhere your TW overwrites some TiddlySpace core
> functions.
>
> Sry,
> @devs have to jump in here.

TiddlySpace tiddlers use custom fields to set the server information.
Otherwise they don't get saved online.  TiddlySpace automatically sets
the config.defaultCustomFields object to contain the required custom
field name/value pairs.

Unfortunately, some plugins -- those not specifically written for
TiddlySpace -- don't always pass the default fields into the TWCore
store.saveTiddler(...) function.  As a result, although a tiddler is
created *locally*, and can be saved *locally*, it lacks the needed
server info and thus, does not get saved online.

A quick look at the installed plugins in your document reveals that
you are using an older version of TiddlyTools PasteUpPlugin (v1.0.1).
That version doesn't use the defaultCustomFields, so any tiddlers
created by paste up actions won't be saved online.

Fortunately, this has *already been fixed*:

2011.02.08 1.0.9 when saving new tiddlers, use
config.defaultCustomFields for TiddlySpace compatibility

Please install the most up-to-date version (v1.1.0)
   http://www.tiddlytools.com/#PasteUpPlugin

Also, if you add the following to your EditTemplate:
   
   
   
You can view/modify the values for the TiddlySpace custom fields
assigned to each tiddler.  This enables you to hand-edit any missing
values to "fix" those tiddlers so that they will get saved online.

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: Is it easy to upload a TW made offline to TiddlySpace?

2011-04-23 Thread PMario
On Apr 23, 5:56 pm, Yakov  wrote:
> So, any ideas?
Nope, not really.

The only thing, that I see is, that your non existant tiddlers have no
custom fields. And that causes, the problem. But I have no concrete
idea, why. Somewhere your TW overwrites some TiddlySpace core
functions.

Sry,
@devs have to jump in here.
=

An other possibility would be, that you use a TS theme, until you get
the problem with yours solved.

-m

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



[tw] Re: Is it easy to upload a TW made offline to TiddlySpace?

2011-04-23 Thread Yakov
So, any ideas?

-- 
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] Calendar plugin tooltip tweak ?

2011-04-23 Thread Jim McD
Hi,
   Could I ask for a small tweak, or some advice, regarding the
calendar plugin ?  When I float the mouse over a day in the calendar,
the tooltip shows that date, eg: "23 April 2011".  Would it be
possible to add the day of the week to that, eg "Saturday 23 April
2011".  I tried adding "DDD" at various places in the code without
success.

Also, is it possible to show the reminder for that day, if there is
one, in the tooltip ?  Currently I have remindermacros and dateplugin
all setup and working.  To see the reminder on a given day, I have to
click on the day and view the popup.  I would prefer to have that info
in the tooltip.

Lastly, the third item in my wish list is to remove future reminders
from the popup.  If I click a day, the popup shows all reminders
occurring within 30 days after that date.  Is there a tweek to have it
show only reminders for that date ?  This might not be needed if the
tooltip thing above works.

Thanks,
Jim.



-- 
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: NEW: MineralTheme a theme for TiddlyWiki

2011-04-23 Thread Bauwe Bijl
Hi everybody

Thanks for the response!

About Måns reply :

> You'll need to delete the StyleSheet section in the
> BackstageSidebarPlugin and put it into the MineralTheme StyleSheet
> section instead, if you want to be able to switch to another theme
> which utilizes a sidebar...

Good one!
I solved this right away but slightly different because I don't want
to change the BackstageSidebarPlugin.
The none-display of the sidebar is added to the MineralTheme css
section. Which makes the use of the BackstageSidebarPlugin optional.
In case of a switchtheme one could easily switch to another theme
_with_  sidebar...and continue working on the TiddlyWiki. (no need for
the BackstageSidebarPlugin in such case)
If there are no other (sidebar)themes available one could quickly
create a new tiddler with:
<>
<>

Enjoy!
Bauwe

-- 
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: [tw] Re: Does the Simile-Timeline-Plugin Work and is it still maintained?

2011-04-23 Thread Jan Johannpeter
Hallo Dawn!
Thanks a lot!
I am in holidays for a week but then i will certainly try it out. So far
I tested Martins version and did the basics for an Arthistory-Timeline.
Does yours work in the same way this means with a Timelinespec
cheers Jan

Am 21.04.2011 21:18, schrieb josep:
> dawn,
>
> currently i am very busy
> but off course i will test your update
> as soon as possible
>
> thanks for your great work
>
> cheers,
> josep
>
>
> On Apr 21, 3:51 pm, Dawn Ahukanna  wrote:
>> Finally got my arse in gear and i'm updating the XML based simile
>> timeline plugin to work with Tiddlywiki 2.6.2. Currently testing, any
>> volunteers?
>> dawn.
>>
>> On Apr 11, 9:41 pm, josep  wrote:
>>
>>
>>
>>
>>
>>
>>
>>> hi,
>>> Dawn's plugin also working at:http://canricart.info
>>> TiddlyWiki version: 2.4.0
>>> cheers
>>> josep
>>> On Apr 11, 9:40 pm, Måns  wrote:
 Btw -
 I've got the SimileTimeline working on tiddlyspace ver 2.6.2 
 here:http://stimeline.tiddlyspace.com/
 Cheers Måns Mårtensson
 On 11 Apr., 21:34, Måns  wrote:
> Hi Jan Johannpeter
> David announced Dido on the devgroup a while 
> ago:http://groups.google.com/group/tiddlywikidev/browse_thread/thread/b86...
> "Dido, a tiddlywiki-inspired tool for managing
> small databases in a web page.  Dido is intended for managing small
> databases of information---an address book, a stamp collection, a
> shopping list, a video collection.  It contains an editable
> structured
> database (stored in the page, tiddlywiki-style) and layers rich
> interactive visualizations (sortable lists, grids, maps, timelines)
> and filtering (faceted browsing and text search) over the data.  You
> can find Dido at
>  http://projects.csail.mit.edu/exhibit/Dido
> Both the data and the visualization can be edited using the WYSIWYG
> editor that's part of the document.
> As with tiddlywiki, you can download it and start playing, saving
> your
> file to persist any changes (we use the tiddlywiki file save code;
> thanks for that!). "
> Cheers Måns Mårtensson
> On 11 Apr., 17:32, Jan Johannpeter  wrote:
>> Hello
>> I wonder whethter the plugin that is implementing scripts the
>> MIT-Visualisation-Freeware Simile
>> (http://simile.mit.edu/timeline/examples/) in Tiddly Wiki working and
>> whether it is still maintained.
>> I found Martin Buddens wellworking example but it is impossible to
>> integrate it into newer 
>> distributions.http://www.martinswiki.com/timeline/
>> The discussion on this googlegroup seems to stop 2007. Are there any
>> newer 
>> experiences?http://groups.google.com/group/tiddlywiki/search?hl=en&group=tiddlywi...
>> 
>> I think this could  be a great tool for educational und Organizing 
>> purposes.
>> Regards Jan Johannpeter

-- 
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: NEW: MineralTheme a theme for TiddlyWiki

2011-04-23 Thread Måns
Hi again

You'll need to delete the StyleSheet section in the
BackstageSidebarPlugin and put it into the MineralTheme StyleSheet
section instead, if you want to be able to switch to another theme
which utilizes a sidebar...

Cheers Måns Mårtensson

On 22 Apr., 23:04, Måns  wrote:
> Hi Bauwe
>
> > I like to share a new theme for TiddlyWiki.
> > MineralTheme
>
> >http://mineral-tiddlywiki.appspot.com
>
> That's downright beautifull work!!! Thanks a lot for sharing it..
>
> Cheers Måns Mårtensson
>
>
>
>
>
>
>
> > Features:
> > No sidebars
> > Horizontal main-menu plus a ToolBox on a slider (to fill in with your
> > own favorite tools)
> > Clear styling (embracing all features instead of hiding the "geeky" )
> > IE-friendly (internetexplorer renders at least something :)
>
> > The MineralTheme is perhaps not entirely suitable for new users ... I
> > like to encourage experienced users to use/create their own set of
> > tools in the ToolBox (via MainMenu-slider).
> > To fill in some blanks I pre-installed the tiddlerTweaker in the
> > ToolBox.
> > Also the Overview and Lists tiddler-examples in the main-menu might be
> > a base for a more simplified ToolBox or as example to build-out. (feel
> > free to delete the examples from the menu...)
>
> > The Sidebar is moved to the backstage with the BackstageSidebarPlugin
> > instead of a total remove in case it is needed (however...I think the
> > Tweaker does the job quiet well as replacement)
> > Included the SimpleSearchPlugin to complement the idea to "do it all
> > on tiddlers".
>
> > Documentation can be found 
> > here:http://bauwebijl-tiddlywiki.appspot.com/#MineralThemeInfo
>
> > Enjoy!
> > Bauwe
>
> > MineralTheme:http://mineral-tiddlywiki.appspot.com

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