[tw] Re: Auto Focus

2012-05-29 Thread PMario
I did some changes to the TiddlersBarPlugin and added an MP [1] to the
name.
You can try this one and report back if it fixes the problem.

Just copy/paste the tiddler content into your old plugin tiddler.

have fun!
-mario

[1] http://nostalgia.tiddlyspace.com/#TiddlersBarPluginMP

-- 
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: tagging part of tiddler

2012-05-29 Thread Cyrill
TX whatever, yes this Plugin was installed and worked, I will send a link 
to the file.

I confirm that until now it will not be possible to join Tags only to 
section or parts of tiddler...
I make some experience with the Linkify und Hashtag-Plugins without succes.

Regards

Am Mittwoch, 23. Mai 2012 15:50:45 UTC+2 schrieb whatever:

 Hi! 

 @Cyrill. 
 Did you also install the PartTiddlerPlugin (1)? 
 (1) http://tiddlywiki.abego-software.de/#PartTiddlerPlugin 

 Well, you can only tag tiddlers, not sections, slices or parts. Each 
 tiddler, on the other hand, can contain multiple sections, slices or 
 parts. The code calls up all tiddlers which are tagged with your tag 
 and which contain a part with a certain name. So if instead of parts 
 you'd be using sections, the only thing that you'd need to change in 
 the code is / with ##. For PartTiddlerPlugin syntax, see its 
 documentation. 

 Otherwise, can you post the content of your tiddlers? 


 @Wim 
 Well, that cleared it up.:D Anyway, I see your problem. You're using 
 part name as sort of tags. I think this problem can be solved using 
 regular expressions (provided you use a standardized naming 
 convention), but I'd have to look into it. I'll give it a shot when I 
 have the time, unless a regexp wizard has a ready solution. 

 w 

 On May 22, 3:01 pm, Cyrill 2rig...@googlemail.com wrote: 
  Hi whatever, 
  
  this initial problem to tag only sections or parts of a tiddler cause 
  interest to me. 
  I install the FET Plugin an make several tests of these lines of code 
 and 
  get all times a Referance Error. 
  Where is my fault ? 
  I understand this answer in that way that the tag refer only to the 
  specially part of this tiddler. Is it also possible to show this tag 
 only 
  there / or beside the position of this part of tiddler. 
  
  Best regards 
  
  Am Montag, 21. Mai 2012 11:52:13 UTC+2 schrieb whatever: 
  
  
  
  
  
  
  
  
  
   Hi! 
  
   Using Udo's forEachTiddler plugin, you can do this: 
  
   forEachTiddler where 'tidder.tags.contains(YourTag)' write 
   'tiddler [[+tiddler.title+/YourPartName]]\\n' 
  
   w 
  
   On May 20, 11:40 am, Wim w...@zeggetwaalf.be wrote: 
Hello, 
  
I'm (successfully) working with Udo Borkowski's  PartTiddlePlugin. 
  
Now, I want to know if it's possible to tag each part seperately. 
  
If so, how do you do this AND  how can I select (in another tiddler) 
 all 
the parts FROM DIFFERENT main-tiddlers with a specified tag? 
  
Thanks in advance 
  
Wim

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/tiddlywiki/-/NCeMBWl3YtcJ.
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] changecount

2012-05-29 Thread Wim
Hi,

every tiddler has a changecount-parameter.
Is it possible / easy to add a viewcount-parameter that counts... the 
visits of this tiddler?

I know Eric's VisitCount-plugin (http://www.tiddlytools.com/#VisitCounter), 
but this uses browser cookies to store the data.
In my office, the cookies are removed each night by the IT-department AND I 
want to count the visits  (by me and by other collegeas) of tiddlers.

Therefore, a simple (??) viewcount parameter, identically to the 
changecount-parameter could be a solution.

Thanks for helping.

Wim

-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/tiddlywiki/-/5iAlFVBr9TsJ.
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: changecount

2012-05-29 Thread Eric Shulman
On May 29, 8:10 am, Wim w...@zeggetwaalf.be wrote:
 Hi,

 every tiddler has a changecount-parameter.
 Is it possible / easy to add a viewcount-parameter that counts... the
 visits of this tiddler?

 I know Eric's VisitCount-plugin (http://www.tiddlytools.com/#VisitCounter),
 but this uses browser cookies to store the data.
 In my office, the cookies are removed each night by the IT-department AND I
 want to count the visits  (by me and by other collegeas) of tiddlers.

 Therefore, a simple (??) viewcount parameter, identically to the
 changecount-parameter could be a solution.

It would be relatively easy to write a plugin that defines a
'viewcount' macro that increments a custom field named 'viewcount'
whenever it is rendered.  This macro could then be embedded in
individual tiddler content (e.g., viewcount ...) or by added to
the ViewTemplate (e.g., span macro='viewcount ...'/span) so that
every tiddler is automatically counted.

However...

The problem with this approach is that every time a tiddler is
*viewed*, it will also be *modified*, and the entire TW document must
then be *saved* order for the incremented viewcount values to persist
between sessions.  For the 'changecount' use-case, this isn't a
problem since, by definition, changecount is only incremented if an
actual modification of the tiddler has occurred.

To make a viewcount macro practical, you really need to use some
kind of storage that is *not* part of the TW document itself, so that
simply viewing a document doesn't automatically modify it.  This is
why VisitCounter uses browser-based cookies.  It allows the counter
values to persist between sessions, without altering the document
itself.

Unfortunately, as you noted, your office IT department clears all
cookies each night.  In addition, even if you could you cookies to
record your own tiddler viewcounts, it would still not achieve the
results you want, which is to record combined viewcounts for *all*
people who view a given tiddler.  This clearly indicates a need for
*shared* server-based view counting system.

You could look into using a 3rd-party 'hit counter' service that
supports tracking of individual pages by using arbitrary 'page IDs'.
Then, you could embed their tracking 'bug' into each tiddler, and use
the tiddler title as a page ID.  Of course, given your IT department's
cookie-killing paranoia, they probably keep a tight lock on the
company firewall as well, so it's unlikely that they would approve of
any scheme that relies on 3rd-party tracking of activities.

Perhaps you could implement an internal server-based approach that
provides a similar mechanism as the 3rd-party hit counter services;
i.e., a script running on your company's internal web server, invoked
via embedded tracking 'bugs' in the tiddlers, that counts views based
on IDs and stores the counter values on the server.

It just occurred to me... you don't necessarily even need special
server-side scripting to count the tiddler hits.  You could embed an
'image bug' into your tiddlers that references a server-side image
file, using the name of the tiddler as part of the name of the image
file.  By default, the server should log all requests for files, so
you can use conventional logfile analyzers to generate a report of all
tiddler views, based on a specific server-side path.

For example, you might put something like this into the ViewTemplate
to add an 'image bug' to all tiddlers:

span macro='tiddler ViewTemplate##tracker with: {{tiddler.title}}'/
span
!--
!tracker
htmlnowikiimg src=http://internal.mycompany.com/tiddlertracks/
$1 //html
!end
--

Every time a tiddler is rendered, it will trigger a request for a URL
of the form:
   http://internal.mycompany.com/tiddlertracks/NameOfTiddler
which will automatically add an entry in the server-side httpd.log
file that tracks all requests for files.

Note that the server-side files (or even the 'tiddlertracks' folder)
do not need to actually exist on the server in order to be counted.
By default, the server should record a '404 error' for all attempts to
access 'missing' files.  Thus, you can simply analyze the server's
error.log for relevant 404 errors, rather than the analyzing the
full httpd.log which tracks all server-side requests.  As long as
your IT department doesn't mind the extra web traffic (which is
minimal, as it is just requests, without actual transfer of file
content), this scheme might be your best approach.

Hope this helps,
enjoy,
-e
Eric Shulman
TiddlyTools / ELS Design Studios


WAS THIS ANSWER USEFUL?  IF SO, PLEASE MAKE A DONATION
   http://www.TiddlyTools.com/#Donations
Professional TiddlyWiki Consulting Services...
Analysis, Design, and Custom Solutions:
   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 

[tw] Re: New tiddlywiki shows javascript when re-opened.

2012-05-29 Thread JRae
HI  thanks for the reply.

I'm using IE8.  I can't find the tutorial at the moment, but will try
again later.  What I did was
download the empty.html file
open the file
add a tiddler
save changes
close the browser

When I opened the file, I go tthe javascript stuff.


Cheers
JRae

On May 29, 12:20 am, PMario pmari...@gmail.com wrote:
 On May 28, 1:15 am, JRae johnc...@gmail.com wrote: ... following a 
 tutorial.   ...

 Would be nise to know the tutorial too?
 -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: New tiddlywiki shows javascript when re-opened.

2012-05-29 Thread JRae
Found the tutorial, here

http://danielbaird.com/tiddlywikiguides/userguide-sample.html#%5B%5BUsing%20TiddlyWiki%5D%5D

Cheers
JRae

-- 
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: Auto Focus

2012-05-29 Thread mezcalbean
Hi Mario,

excellent work thank you so much - I was getting dizzy watching the screen 
!!

Thanks again

Philippe

On Tuesday, May 29, 2012 4:46:41 PM UTC+8, PMario wrote:

 I did some changes to the TiddlersBarPlugin and added an MP [1] to the 
 name. 
 You can try this one and report back if it fixes the problem. 

 Just copy/paste the tiddler content into your old plugin tiddler. 

 have fun! 
 -mario 

 [1] http://nostalgia.tiddlyspace.com/#TiddlersBarPluginMP 



-- 
You received this message because you are subscribed to the Google Groups 
TiddlyWiki group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/tiddlywiki/-/WCGzTT8fwHYJ.
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: CHAP timeline

2012-05-29 Thread ant...@bellingen.nsw.gov.au
I've updated the CHAP Timeline plugin so that it is no longer
dependant on the DataTiddler plugin (it now uses slices), and also put
a demonstration on the site of using ForEachTiddler Plugin to
dynamically create bars.  It allows you to use your own custom slices,
create multiple bars from a single tiddler etc...  A little bit of
javascripting is necessary to achieve this.

http://chaptimeline.tiddlyspot.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.