Awsome!!! Thank you very much!!
On Dec 22, 11:26 am, "Nicolas Syssoieff" <[email protected]>
wrote:
> Hi Jeff,
>
> I corrected the errors and sent you back the file.
> The errors are all for one reason : themes in MPTW work with tiddlers called
> SomeNameTheme and tagged "systemTheme", and no longer with standard
> TiddlyWiki PageTemplate, ViewTemplate, and so on.., which is where you made
> the modifications.
>
> To make things right, here is what I did :
> 1/ Did an entire copy/paste of MptwTheme to a theme called WorkTheme (I
> know you're using RoundedTheme but if you open this tiddler, you'll see it's
> a call to MptwTheme with only two additional options in the StyleSheet part)
> 2/ Added the two stylesheet options that make RoundedTheme different from
> MptwTheme directly in WorkTheme, at the end of the code.
>
> => WorkTheme is now a copy of RoundedTheme, and you can make your
> modifications for TiddlersBarPlugin and EasyEditPlugin inside it without
> disturbing a future TW update.
>
> Then,
> 3/ In the PageTemplate *section* of WorkTheme, I moved the line you had
> originally placed in the PageTemplate tiddler.
> 4/ In the ViewTemplate *section* of WorkTheme, I placed the "easyEdit"
> button that you had originally placed into the ViewTemplate tiddler. (Note
> that the ViewTemplate section of WorkTheme calls the ViewTemplateToolbar
> section of the very same WorkTheme, which can be found a few lines below. So
> if you're looking for the "easyEdit" call you should in fact look a few
> lines below)
>
> Finally,
> 5/ Added this line :
> config.options.txtTheme = 'WorkTheme';
> to your MptwUserConfigPlugin to make sure that this theme, and not a default
> one, is loaded on startup
>
> I've sent you your file back in another email.
> Enjoy !
> Nicolas.
>
> On Mon, Dec 22, 2008 at 16:39, jrbast <[email protected]> wrote:
>
> > Ok, you now should have my file... email address was cut off...
>
> > On Dec 22, 9:05 am, "Nicolas Syssoieff" <[email protected]>
> > wrote:
> > > Hi Jeff,
>
> > > Are you sure that it is indeed the Theme in which you made both changes
> > that
> > > is applied ?
> > > Seeing only one tiddler at a time is *normal* for the TiddlersBarPlugin
> > > behavior, except that you should of course see the tab bar also :)
> > > And the fact that you are not seeing any of the two modifications makes
> > me
> > > think that the applied theme is not the one in which you made the
> > changes...
>
> > > Do you have a demo I could look at ? Either uploaded online if you're
> > using
> > > TiddlySpot, or you can email it to me if it does not contain sensitive
> > > information.
>
> > > Cheers,
> > > Nicolas.
>
> > > On Mon, Dec 22, 2008 at 15:54, jrbast <[email protected]> wrote:
>
> > > > Made the changes, but all that has changed is that now each tiddler I
> > > > open closes the previous. Only a single tiddler is displayed at a
> > > > time. No tiddlerbar and no "write" toolbar option??? Could it be a
> > > > conflict with breadcrumbsplugin? I will remove to see what happens,
> > > > but I think I already tried that
>
> > > > Jeff
>
> > > > On Dec 17, 3:34 am, [email protected] wrote:
> > > > > Hi again JR,
>
> > > > > I found the answer to both your questions while reading this post :
> > you
> > > > are
> > > > > indeed using MPTW.
> > > > > You'll find the instructions to make EasyEdit work in your other
> > post,
> > > > and
> > > > > I guess the reason you're not seeing the TiddlersBarPlugin is the
> > same
> > > > one,
> > > > > you are missing a line in your Theme tiddler. (it is what the 3rd
> > > > > instruction of the plugin says : "if you're using a custom
> > PageTemplate,
>
> > > > > add <div id='tiddlersBar' refresh='none'
>
> > ondblclick='config.macros.tiddlersBar.onTiddlersBarAction(event)'></div>
>
> > > > > before <div id='tiddlerDisplay'></div> ")
>
> > > > > So, how to proceed ?
> > > > > Again, as for EasyEdit, locate your Theme tiddler (it depends of the
> > name
>
> > > > > of the Theme you are currently using, could be MptwTheme for
> > example),
> > > > then
> > > > > go to the PageTemplate section, and change this :
>
> > > > > <div id='displayArea'>
> > > > > <div id='messageArea'></div>
> > > > > <div id='tiddlerDisplay'></div>
> > > > > </div>
>
> > > > > to this :
>
> > > > > <div id='displayArea'>
> > > > > <div id='messageArea'></div>
> > > > > <div id='tiddlersBar' refresh='none'
>
> > ondblclick='config.macros.tiddlersBar.onTiddlersBarAction(event)'></div>
> > > > > <div id='tiddlerDisplay'></div>
> > > > > </div>
>
> > > > > (Mind the potential line breaks i'm sure Gmail will introduce once I
> > post
>
> > > > > the message)
> > > > > After a save and reload, this should be it.
>
> > > > > To be perfectly complete, I should add that for future compatibility
> > with
>
> > > > > TW updates (so that the MptwTheme tiddler is not overwritten if you
> > > > update
> > > > > your TW in the future), what you should in fact do is to duplicate
> > the
> > > > > MptwTheme (assuming this is the one you're using), rename the
> > duplicate
> > > > > (for example, "MyPersonalTheme"), then apply both modifications (for
> > > > > EasyEdit and for TiddlersBar) to this one. Once it is done, simply
> > save,
>
> > > > > reload, and apply your own MyPersonalTheme to use it. This way, you
> > can
> > > > be
> > > > > sure that no future update of MPTW will overwrite your settings.
> > > > > (Additionnally, if you want to be absolutely sure that your MPTW
> > always
> > > > > loads from now on with the "MyPersonalTheme" loaded, you can add this
> > :
> > > > > config.options.txtTheme = 'MyPersonalTheme';
> > > > > in your MptwUserConfigPlugin tiddler; this is where you should store
> > your
>
> > > > > personal settings)
>
> > > > > Enjoy!
> > > > > Nicolas.
>
> > > > > On Dec 17, 2008 5:17am, jrbast <[email protected]> wrote:
>
> > > > > > Does TiddlersBarPlugin conflict other plugins?
>
> > > > > > I'm using a MPTW distrubution of TiddlyWiki and also using
>
> > > > > > TagglyTagging.
>
> > > > > > I cannot get TiddlersBarPlugin to work on this system. I also have
>
> > > > > > the BreadcrumbsPlugin which has a similar capability to the
>
> > > > > > TiddlersBarPlugin.
>
> > > > > > Help from anyoone would be welcome on what is needed to get this
>
> > > > > > working. I have removed the BreadcrumbsPlugin but does not solve
> > the
>
> > > > > > problem...
>
> > > > > > Thanks,
>
> > > > > > [email protected]
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"TiddlyWiki" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/TiddlyWiki?hl=en
-~----------~----~----~----~------~----~------~--~---