Re: [tw5] Re: Is it possible to host a Plugin-Library for content?

2020-04-30 Thread julien23
Hi all

I have a use case that may be relevant here.

I have with TWC a "library" structure I would like to reproduce on TW5
(TWC IncludePlugin alternative for TW5 
)

.../ProjectA/twA.html
.../ProjectB/twB.html
.../ProjectC/twC.html

Tiddlers shared by twA and twB are tagged #twA and #twB

When twB is loaded in a web browser, it silently looks for #twB tiddlers in 
twA and twC and copies them into itself (Abego IncludePlugin 
)

Tiddlers may be plugins or themes because one of the project is precisely 
to develop packages specific to the different types of content I handle 
with my wiki

Is it something that could be achieved based on your testings ?

Looking forward to finally move to TW5 :)

Regards

Julien

On Friday, April 24, 2020 at 3:00:16 PM UTC+2, Jan wrote:
>
> Hi Jed,
>  it is not the size but the number of files to upload that is difficult to 
> represent in one upload-form and recieving php .
> But perhaps I only do not know the technology well enough.
> So my Idea was to upload (and delete) the plugins one by one and generate 
> index.html and the also tiddlers.json dynamically on the server by php.
> Does the "index" have to be named html or can it have the ending and 
> execute php and adapt it content and generate the json.
>
> But I thinK you are right: this project apppears to big for me right know. 
>
> Yours Jan
>
>
>
>
>
>
> Am 24.04.2020 um 07:11 schrieb Mohammad:
>
>
>
> On Friday, April 24, 2020 at 2:46:43 AM UTC+4:30, Jed Carty wrote: 
>>
>> Jan, 
>>
>> I am not sure the reason the folder is called recipes, I believe it has 
>> something to do with how some system was set up while this was being 
>> developed. I think you would have to ask Jeremy why.
>>
>
> Right now the folder structure is like below
>
> - /root
> -- index.html
> -- /recipes
> --- /library
> - tiddlers.json
> - /tiddlers
>
> Why two nested folders that way (library under recipes ,...). So, if ask 
> Jeremy, please ask about the folder structure too!
>
>>
>> the things that are uploaded are the things generated by the tiddler I 
>> made, yes they are necessary. tiddlers.json is the metadata for the 
>> plugins, not the full plugins.
>>
>> I think that you are thinking about this as more complex than it has to 
>> be, a single php server that can accept post and a path is plenty to do 
>> this, on the wiki side it could be done with one click. When adding plugins 
>> you just need to upload the plugin itself and update the index.html file, 
>> unless you are on a very limited bandwidth connection that shouldn't be a 
>> problem, if you manage to have enough plugins to make a 1mb index.html file 
>> I will be very impressed.
>>
>> It would probably be helpful to make a plugin library and look at its 
>> structure.
>>
> -- 
> You received this message because you are subscribed to the Google Groups 
> "TiddlyWiki" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to tiddl...@googlegroups.com .
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/tiddlywiki/4556a7cb-1490-4d70-a695-622787414b41%40googlegroups.com
>  
> 
> .
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/6772c898-0db8-4596-be8a-3e2e553145b4%40googlegroups.com.


[tw5] Re: TWC IncludePlugin alternative for TW5 ?

2020-04-29 Thread julien23
Hi Joshua

Thanks for the enlightening reading.

under Node.js; 
>
In my structure, tiddler sync/import processing across my different 
projects is very common. It has to be feasible from standard web browser 
without action from the reader.

planning where to store which set of tiddlers
>
Because of folder permissions, just including remote TW  is not an option, 
tiddlers must be copied.

For example :

   - User1 can access
  - .../FolderA/TWA.html
  - .../FolderB/TWB.html
   - User2 can access
  - .../FolderA/TWA.html
   - User3 can access
  - .../FolderB/TWB.html
   
The shared tiddlers between TWA and TWB shall be visible to both User2 and 3
Shared tiddlers may be a note about a meeting, a contact card, a 
publication clip ... whatever is related with the project.

I understand there is no tag based IncludePlugin for TW5 right now. But do 
you think it is technically possible ?

Regards

Julien


On Thursday, April 30, 2020 at 1:36:13 AM UTC+2, Joshua Fontany wrote:
>
>
> If you are running TW under Node.js, it is possible to include whole wikis 
> in other wikis via the `tiddlywiki.info` file. It is not possible to 
> include partial or filtered sets yet, so planning where to store which set 
> of tiddlers can be important.
>
>
> https://tiddlywiki.com/#:TiddlyWikiFolders%20%5B%5Btiddlywiki.info%20Files%5D%5D
>
> There are options to set the imported tiddlers to Read Only, or to force 
> saving them back under their home wiki directory. See the help above.
>
> For example:
>
> {
> "plugins": [
> "tiddlywiki/tiddlyweb",
> "tiddlywiki/filesystem"
> ],
> "includeWikis": [
> {"path": "../path/to/imported/wiki", "read-only": true}
> ],
> "build": {
> "index": [
> 
> "--rendertiddler","$:/core/save/all","index.html","text/plain"],
> "favicon": [
> "--savetiddler","$:/favicon.ico","favicon.ico",
> 
> "--savetiddler","$:/green_favicon.ico","static/favicon.ico"]
> },
> "config": {
> "retain-original-tiddler-path": true
> }
> }
>
>
>
> On Wednesday, April 29, 2020 at 12:57:25 AM UTC-7, julien23 wrote:
>>
>> Hi all
>> I am trying to migrate from TWC to TW5
>>
>> I used to share tiddlers across TW using Abego IncludePlugin 
>> <https://tiddlywiki.abego-software.de/#IncludePlugin>
>>
>> Basically at ...\1\TW1.html startup, it fetches #TW1 tiddlers from 
>> ...\2\TW2.html ...\3\TW3.html , ...
>>
>> It is a must have for me.
>> Totally new to TW5, What's your advice?
>>
>> Related topics :
>>
>>- TW5: automatically import tiddlers? 
>><https://groups.google.com/d/topic/tiddlywiki/EzLax6CId1I/discussion>
>>- ImportCommand <https://tiddlywiki.com/#ImportCommand> > I have not 
>>understood yet how to run commands in tw5
>>- Importing Tiddlers <https://tiddlywiki.com/#Importing%20Tiddlers>  
>>> tested it works but how could I select tiddlers by tag and make it 
>>silently at startup ?
>>
>>
>> Regards
>>
>> Julien
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/24f923d9-2809-4d13-9390-326e7e62d64a%40googlegroups.com.


Re: [tw5] TWC IncludePlugin alternative for TW5 ?

2020-04-29 Thread julien23
Hi Jan

Thank you for the answer

that was cool stuff, back then.
>
Yeah ... hard to quit on TWC once you have tailored it to your need. I must 
admit I have nor understood yet how TW5 will make my life better !

discussion (...) on hosting a private Plugin-Library
>
This thread was actually pointing out in my "sync" "import" searches  in 
this group, but I wasn't sure what it was about. I'll give it a closer 
reading. Thanks for the hint.

Regards

Julien

 

On Wednesday, April 29, 2020 at 9:06:49 PM UTC+2, Jan wrote:
>
> Hi Julian,
> that was cool stuff, back then.
> There has been a discussion a week ago on hosting a private 
> Plugin-Library, jed developped some interesting plugins for that. Perhaps 
> this I could be also a clue to your desire.
>
> Greetings Jan
>
> Am 29.04.2020 um 09:57 schrieb julien23:
>
> Hi all
> I am trying to migrate from TWC to TW5
>
> I used to share tiddlers accross TW using Abego IncludePlugin 
> <https://tiddlywiki.abego-software.de/#IncludePlugin>
>
> Basically at ...\1\TW1.html startup, it fetches #TW1 tiddlers from 
> ...\2\TW2.html ...\3\TW3.html , ...
>
> It is a must have for me.
> Totally new to TW5, What's your advice?
>
> Regards
>
> Julien
> -- 
> You received this message because you are subscribed to the Google Groups 
> "TiddlyWiki" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to tiddl...@googlegroups.com .
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/tiddlywiki/516f11af-3bc1-4cac-beff-9af3fef3c9a4%40googlegroups.com
>  
> <https://groups.google.com/d/msgid/tiddlywiki/516f11af-3bc1-4cac-beff-9af3fef3c9a4%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/7335f626-0b5c-4603-b3d9-97c5fdb43340%40googlegroups.com.


[tw5] TWC IncludePlugin alternative for TW5 ?

2020-04-29 Thread julien23
Hi all
I am trying to migrate from TWC to TW5

I used to share tiddlers accross TW using Abego IncludePlugin 


Basically at ...\1\TW1.html startup, it fetches #TW1 tiddlers from 
...\2\TW2.html ...\3\TW3.html , ...

It is a must have for me.
Totally new to TW5, What's your advice?

Regards

Julien

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/516f11af-3bc1-4cac-beff-9af3fef3c9a4%40googlegroups.com.


[tw] Re: savetiddlers extension and tiddlywiki location folder

2017-12-05 Thread julien23
@Mark S.

> same network, or at different facilities?

We are all remote, and with offline mode in transportation.
Relying fully on filebased synchronization with to whom it may concern 
project directories indexes and files was just fine !

@BJ
I'll try FF saveTiddler AddOn but I'll need some time to delimit a "test 
ecosystem" with several directories, TW, machines and browsers.

Thanks all

Julien

On Tuesday, December 5, 2017 at 4:23:33 PM UTC+1, BJ wrote:
>
> Hi Julien,
> with the latest release of savetiddlers the default subdirectory can be 
> changed in the options. savetiddler and FileBackup AddOn are very similar.
>
> cheers
> BJ
>
> On Tuesday, December 5, 2017 at 1:35:46 PM UTC+1, julien23 wrote:
>>
>> Hi all, and thank you for support...
>>
>> @TonyM
>>
>>> use tiddlyserver instead
>>
>> I could use it for myself but there is no way I can deploy it to my 
>> partners 
>>
>> @Birthe C
>>
>>> Find explanation here: https://tiddlywiki.com/#Firefox%20Apocalypse
>>>
>> Sorry, I am barely a TW user and I am not close to understand how a web 
>> browser works. Hope one does not need that to use TW !
>> From the tone I'd take it for a "Yes Forever"
>>
>> @TonyM
>>
>>> what operating system are you on?
>>>
>> Win10x64, but it is not the case for all my partners
>>
>>> symbolic links
>>>
>> I can digg this idea, but most of us are not admin on their machines in 
>> companies, and it is OS related...
>>
>> @PMario
>>
>>> "browser downloads" directory or a subdirectory
>>>
>> I could do that...
>> all projects are usually in the same folder (and FF seems to accept 
>> /Documents folder)
>> it is something my partners could change easily in FF
>>
>> What about if they tick "Always ask where you save files" option ?
>>
>> Conclusion :
>>
>>1. Fortunatly DownloadSaver still works out of the box.
>>So I will use it in the first place.
>>I will just rename 
>>index.html into Project1index.html
>>to make sure no one overwrites the wrong file
>>2. I'll give a try to PMario FileBackup AddOn, but it makes me 
>>nervous !
>>
>> Regards and thanks again
>>
>>
>> Julien
>>
>>
>>
>>
>>
>>
>>
>> On Tuesday, December 5, 2017 at 11:51:00 AM UTC+1, PMario wrote:
>>>
>>> Hi Julien, 
>>>
>>> I did create a "file-backups" AddOn 
>>> <https://groups.google.com/forum/#!topic/tiddlywiki/h0k7z62N79Y>, which 
>>> also has the ability to save TW5 and TWclassic ... FireFox only atm. 
>>> Watch the Intro-Video! <https://youtu.be/KVLtID8nElU>
>>>
>>> file-backups doesn't need a fixed "tiddlywikilocations" directory. BUT 
>>> it also needs to be a "browser downloads" directory or a subdirectory. 
>>>
>>> Mark S. made a comment, how you can create windows directory links: .. 
>>> junctions .. 
>>> https://groups.google.com/d/msg/tiddlywiki/h0k7z62N79Y/mOnErEHqBwAJ
>>>
>>> Which can be used to physically store the content in different places 
>>> than the "browser download directory". 
>>> ... but you still have to open a fileTW from within the downloads 
>>> folder. So the browser thinks it is within the "secure system"
>>>
>>> Since browser vendors think, users are unable to take care of their 
>>> harddisks, downloading is limited to the browser download folder + 
>>> sub-folders. 
>>> This won't change in the near future. ... 
>>>
>>> We may be able to convince them, to think differently, if we can proove 
>>> that this restriction is worthless if we use junctions for windows and 
>>> hardlinks in unix. ... But it will be difficult. 
>>>
>>> have fun!
>>> mario
>>>
>>>
>>>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/e4124852-77b3-42ab-aea8-affa1950428c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] [FF57] life after TiddlyLockPlugin

2017-12-05 Thread julien23
Hi all

TiddlyLockPlugin  did 
not make it through FF57

Fortunatly SharedTiddlersPlugin 
 does
DownloadSaver is currently the only working solution across all browsers 
and OS

Based on this I am planning this to go multi-user again like this 
workaround :

In my template, move the SaveButton inside a Tiddler where the TiddlyWiki 
would self import at rendering with :
<>

Is it a good idea or am I going into troubles ?

Regards

Julien

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/f47b6ea6-7926-40ba-a77d-1d9d7e179509%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: savetiddlers extension and tiddlywiki location folder

2017-12-05 Thread julien23
Hi all, and thank you for support...

@TonyM

> use tiddlyserver instead

I could use it for myself but there is no way I can deploy it to my 
partners 

@Birthe C

> Find explanation here: https://tiddlywiki.com/#Firefox%20Apocalypse
>
Sorry, I am barely a TW user and I am not close to understand how a web 
browser works. Hope one does not need that to use TW !
>From the tone I'd take it for a "Yes Forever"

@TonyM

> what operating system are you on?
>
Win10x64, but it is not the case for all my partners

> symbolic links
>
I can digg this idea, but most of us are not admin on their machines in 
companies, and it is OS related...

@PMario

> "browser downloads" directory or a subdirectory
>
I could do that...
all projects are usually in the same folder (and FF seems to accept 
/Documents folder)
it is something my partners could change easily in FF

What about if they tick "Always ask where you save files" option ?

Conclusion :

   1. Fortunatly DownloadSaver still works out of the box.
   So I will use it in the first place.
   I will just rename 
   index.html into Project1index.html
   to make sure no one overwrites the wrong file
   2. I'll give a try to PMario FileBackup AddOn, but it makes me nervous !

Regards and thanks again


Julien







On Tuesday, December 5, 2017 at 11:51:00 AM UTC+1, PMario wrote:
>
> Hi Julien, 
>
> I did create a "file-backups" AddOn 
> , which 
> also has the ability to save TW5 and TWclassic ... FireFox only atm. 
> Watch the Intro-Video! 
>
> file-backups doesn't need a fixed "tiddlywikilocations" directory. BUT it 
> also needs to be a "browser downloads" directory or a subdirectory. 
>
> Mark S. made a comment, how you can create windows directory links: .. 
> junctions .. 
> https://groups.google.com/d/msg/tiddlywiki/h0k7z62N79Y/mOnErEHqBwAJ
>
> Which can be used to physically store the content in different places than 
> the "browser download directory". 
> ... but you still have to open a fileTW from within the downloads folder. 
> So the browser thinks it is within the "secure system"
>
> Since browser vendors think, users are unable to take care of their 
> harddisks, downloading is limited to the browser download folder + 
> sub-folders. 
> This won't change in the near future. ... 
>
> We may be able to convince them, to think differently, if we can proove 
> that this restriction is worthless if we use junctions for windows and 
> hardlinks in unix. ... But it will be difficult. 
>
> have fun!
> mario
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/9cc82cb1-4a3c-428a-a8f2-dfbc23d893aa%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] savetiddlers extension and tiddlywiki location folder

2017-12-05 Thread julien23
Hi all

I was about to give a try to savetiddlers extension for FF57 then I read 
this :

Due to browser restrictions tiddlywikis must be located below a subdir of 
> the browser's download directory . The default directory is called 
> 'tiddlywikilocations'.


Is it forever restriction ?

My TW are organised like :

   - S:/Project1/
  - S:/Project1/index.html  (TW)
  - S:/Project1/Pict/...
   - S:/Project2/
  - S:/Project2/index.html  (TW)
  - S:/Project2/Pict/...
   
With relative path for shared data :

   - [img[..\Project2\Pict\Image.jpg]]
   - <>

Projects folders are sinced with different people through SugarSync.com , I 
can't move TW out of their projects folders...


Will savetiddlers work in the future for me ?

Regards

Julien


-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/e7773646-b17c-4bf3-8aec-4e74778c3161%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] [TW5] SharedTiddlersPlugin alternative ?

2017-03-19 Thread julien23
Hi all

I am a TWC long timer. I mostly rely on SharedTiddlersPlugin 
 to share 
tiddlers between multiple local TW.

Is there a way to reproduce this scheme with TW5 ?

Regards

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/f8cb69d9-c46d-46d6-b4fb-cce2e285f20d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] [TWC] modify ImageSizePlugin to open images in new tab

2017-02-06 Thread julien23
Hi all

I would like to change ImageSizePlugin shift click beaviour to open image 
in a new tab.

Here is the Source: http://www.TiddlyTools.com/#ImageSizePlugin
Here is the Line to be modified :
if (ev.shiftKey) { this.style.width=this.style.height=''; }

Thank you in advance

JBo

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/ce416ca7-5ffd-4f03-af66-ce588314f58e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TWC] Printing to pdf with links

2017-02-06 Thread julien23
It actually does work !

Here I must say I was skeptical ... but I am happy I tried :)

But ... why would Chrome preserve links while Firefox does not ?
Can any FF extension help me stick to my favorite browser ?

Regards

JBo

On Tuesday, January 24, 2017 at 10:10:56 PM UTC+1, Dragon Cotterill wrote:
>
> Simple. Just use Chrome to open your TW then you can print directly to PDF 
> from there.
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/22b79d08-82bc-4090-905f-872150247be2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] [TWC] Printing to pdf with links

2017-01-24 Thread julien23
Hi all

This is not a TW specific issue, but it gets annoying when you rely on TW 
for ... everything !

I cant find a way to export parts of my TW to pdf without loosing links

I use :

   - FF 50.1.0
  - PrintEdit 17.6 extension
   - PdfCreator 2.1

I have tried both :

   - [[google|https://www.google.com/]]
   - http://google.com/>google

Does one of you have a workaround ?


Regards


Julien

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/f30fdef8-ac60-4cba-8fad-3c059243ddeb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] [TWC] Append Username to backup file name

2016-08-16 Thread julien23
Hi all

[TWC] LessBackupsPlugin alternative for rotating backup
https://groups.google.com/d/topic/tiddlywiki/wkT3wGZtd-4/discussion

helped me a lot to reduce errors in real time synced folders.
But it also increase a lot the number of files to be synced.

I am thinking of using the username in the backup file like 
/backup/index_jbo.html

How can I fetch an use "Username" to modify the following code ?

if (config.options.chkOneADayBackUpFile==true) {
var x = (new Date()).getMinutes();
backupPath += 
(x<10?'0':x<20?'1':x<30?'2':x<40?'3':x<50?'4':'5')+ "." + "html";}



Regards

Julien

 


-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/0bdd2766-74c2-4e8f-83ed-b0a90a65778f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TWC] LessBackupsPlugin alternative for rotating backup

2016-05-17 Thread julien23
BJ

backups only occur when you save the tiddlywiki
>

sure

but then simplyLessBackups renames backup files like :
*index.20160517*.0709301140*.html*

I would like them renamed like :
*index*.20160517.07*0*9301140*.html*

To keep only the minutes decades.

Is this explication more specific ?

Regards

Julien




On Monday, May 16, 2016 at 6:11:37 PM UTC+2, BJ wrote:
>
> I don't understand what you mean - backups only occur when you save the 
> tiddlywiki. Do you mean maximum of one every ten minutes? (up to 6 an hour 
> * 24)
>
> On Monday, May 16, 2016 at 3:57:40 PM UTC+1, julien23 wrote:
>>
>> BJ,
>> Thanks
>>
>> Nows it is working.
>>
>> How can I modify this code to have 1 backup /10 minutes ?
>> if (config.options.chkOneADayBackUpFile==true)
>> backupPath += (new Date()).convertToMMDDHHMMSSMMM().replace 
>> (/(.*)\.(.*)/,"$1") + "." + "html";
>>
>> Objective is a 6 backups rotating pattern like :
>>
>>> index_00.html
>>> index_10.html
>>> ...
>>> index_50.html
>>>
>>
>> Looking forward to read from you
>>
>> Julien
>>
>>
>> On Monday, May 16, 2016 at 4:20:37 PM UTC+2, BJ wrote:
>>>
>>> type copying it from this url
>>>
>>>
>>> https://raw.githubusercontent.com/buggyj/tiddlywikiplugins/master/simplyLessBackups.js
>>>
>>> On Monday, May 16, 2016 at 10:44:19 AM UTC+1, BJ wrote:
>>>>
>>>> what version of tiddlywiki are you using?
>>>>
>>>> On Monday, May 16, 2016 at 8:38:57 AM UTC+1, julien23 wrote:
>>>>>
>>>>> Hi BJ
>>>>>
>>>>> Thank you for help.
>>>>>
>>>>> I have an issue with your code. 
>>>>>
>>>>> [PluginManager] says :
>>>>>
>>>>>> Error: SyntaxError: missing ) after formal parameters
>>>>>>
>>>>>
>>>>> Win7x64
>>>>> FF 46.0.1
>>>>> TiddlyFox 1.0alpha18.1 
>>>>>
>>>>> Any clue ?
>>>>>
>>>>> Regards
>>>>>
>>>>> Julien 
>>>>>
>>>>> On Wednesday, May 11, 2016 at 3:56:34 PM UTC+2, BJ wrote:
>>>>>
>>>>> its a tiddlywiki classic plugin - it needs to be copied into a new 
>>>>>> tiddler and tagged with sytemConfig
>>>>>>
>>>>>> On Wednesday, May 11, 2016 at 1:45:41 PM UTC+1, prog...@assays.tv 
>>>>>> wrote:
>>>>>>>
>>>>>>> BJ, Sounds great, looks erm ... like computer code. HOW does a 
>>>>>>> mortal use it? :-) Josiah, x
>>>>>>>
>>>>>>> BJ wrote:
>>>>>>>>
>>>>>>>> Hi Julien,
>>>>>>>> I wrote a simple backup plugin that works when using tiddlyfox:
>>>>>>>>
>>>>>>>>
>>>>>>>> https://github.com/buggyj/tiddlywikiplugins/blob/master/simplyLessBackups.js
>>>>>>>>
>>>>>>>> maybe it could be of help to you,
>>>>>>>>  
>>>>>>>>
>>>>>>>>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/3f5591c0-ecaf-4667-ba12-781352ac3068%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TWC] LessBackupsPlugin alternative for rotating backup

2016-05-16 Thread julien23
BJ,
Thanks

Nows it is working.

How can I modify this code to have 1 backup /10 minutes ?
if (config.options.chkOneADayBackUpFile==true)
backupPath += (new Date()).convertToMMDDHHMMSSMMM().replace 
(/(.*)\.(.*)/,"$1") + "." + "html";

Objective is a 6 backups rotating pattern like :

> index_00.html
> index_10.html
> ...
> index_50.html
>

Looking forward to read from you

Julien


On Monday, May 16, 2016 at 4:20:37 PM UTC+2, BJ wrote:
>
> type copying it from this url
>
>
> https://raw.githubusercontent.com/buggyj/tiddlywikiplugins/master/simplyLessBackups.js
>
> On Monday, May 16, 2016 at 10:44:19 AM UTC+1, BJ wrote:
>>
>> what version of tiddlywiki are you using?
>>
>> On Monday, May 16, 2016 at 8:38:57 AM UTC+1, julien23 wrote:
>>>
>>> Hi BJ
>>>
>>> Thank you for help.
>>>
>>> I have an issue with your code. 
>>>
>>> [PluginManager] says :
>>>
>>>> Error: SyntaxError: missing ) after formal parameters
>>>>
>>>
>>> Win7x64
>>> FF 46.0.1
>>> TiddlyFox 1.0alpha18.1 
>>>
>>> Any clue ?
>>>
>>> Regards
>>>
>>> Julien 
>>>
>>> On Wednesday, May 11, 2016 at 3:56:34 PM UTC+2, BJ wrote:
>>>
>>> its a tiddlywiki classic plugin - it needs to be copied into a new 
>>>> tiddler and tagged with sytemConfig
>>>>
>>>> On Wednesday, May 11, 2016 at 1:45:41 PM UTC+1, prog...@assays.tv 
>>>> wrote:
>>>>>
>>>>> BJ, Sounds great, looks erm ... like computer code. HOW does a mortal 
>>>>> use it? :-) Josiah, x
>>>>>
>>>>> BJ wrote:
>>>>>>
>>>>>> Hi Julien,
>>>>>> I wrote a simple backup plugin that works when using tiddlyfox:
>>>>>>
>>>>>>
>>>>>> https://github.com/buggyj/tiddlywikiplugins/blob/master/simplyLessBackups.js
>>>>>>
>>>>>> maybe it could be of help to you,
>>>>>>  
>>>>>>
>>>>>>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/b96f6ed5-d2e4-43ce-a4c0-63d6b237f64b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TWC] LessBackupsPlugin alternative for rotating backup

2016-05-16 Thread julien23
Hi BJ

Thank you for help.

I have an issue with your code. 

[PluginManager] says :

> Error: SyntaxError: missing ) after formal parameters
>

Win7x64
FF 46.0.1
TiddlyFox 1.0alpha18.1 

Any clue ?

Regards

Julien 

On Wednesday, May 11, 2016 at 3:56:34 PM UTC+2, BJ wrote:

its a tiddlywiki classic plugin - it needs to be copied into a new tiddler 
> and tagged with sytemConfig
>
> On Wednesday, May 11, 2016 at 1:45:41 PM UTC+1, prog...@assays.tv wrote:
>>
>> BJ, Sounds great, looks erm ... like computer code. HOW does a mortal use 
>> it? :-) Josiah, x
>>
>> BJ wrote:
>>>
>>> Hi Julien,
>>> I wrote a simple backup plugin that works when using tiddlyfox:
>>>
>>>
>>> https://github.com/buggyj/tiddlywikiplugins/blob/master/simplyLessBackups.js
>>>
>>> maybe it could be of help to you,
>>>  
>>>
>>>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/fc30e794-95d6-46ae-95cf-9be414c39e4f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] [TWC] LessBackupsPlugin alternative for rotating backup

2016-05-11 Thread julien23
Hi all

We use TW in synced folders (sugarsync).
Sometime the TW would not sync fast enough, and having a backup TW to fetch 
missing modifications is a nice thing :

[IncludeList]
<>
<>
<>
<>
<>

Today I need to manually rename autobackups to "index 1, 2, 3 ..."

LessBackupsPlugin used to give the possibility of rotating backup, but it 
is no longer compatible with modern browsers.

What Alternative would you suggest ?

Regards

Julien


-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/627e6a30-1bcc-4b3a-9b2d-c7d6c468963a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TWC] Help improve my inline CSV display script

2015-12-17 Thread julien23
Hi all

Thanks Eric and Tobias for help.

Here is my final code :

[UrlContentScriptCsv]

var p;
 if (document.all){
   // For IE, create an ActiveX Object instance
   p = new ActiveXObject("Microsoft.XMLHTTP");
 }
 else {
   // For mozilla, create an instance of XMLHttpRequest.
   p = new XMLHttpRequest();
 }
p.open("GET","$1",false);
p.send(null);
var out = p.responseText;
out = out.replace(/\n$/,"")
out = out.split(";").join("|");
out = "|" + out.split("\n").join("|\n|") + "|";
wikify(out.replace("|\n","|h\n"),place);




You can place it  into attachments like :

[plouf.csv]
!type
application
!file
..\matlab\plouf.csv

!Link
<>
!Content
<>


Works with
Win7 / FF43.0

++

JBo



On Friday, December 11, 2015 at 3:41:30 PM UTC+1, Eric Shulman wrote:
>
> On Friday, December 11, 2015 at 3:38:39 AM UTC-8, julien23 wrote:
>>
>> Hi all
>> I wrote this script to display CSV from URL : [UrlContentScriptCsv]
>>
>> 
>> ...
>> var out = p.responseText.split("\n");
>> out = out.join("|\n|");
>> out = out.split(";");
>> wikify(out.join("|"),place);
>> 
>>
>>- first line misses a "|" at the begening
>>- last lines is a lonely "|"
>>
>> It seems that what you are trying to do is to make each line into a table 
> row, where the input data is delimited by semi-colons.
>
> To achieve this, there are three actions to apply:
>
> * change all ";" to "|"
> out = out.split(";").join("|");
>
> * add "|" to beginning and ending of each line
> out = "|" + out.split("\n").join("|\n|") + "|";
>
> * if the input data includes a trailing newline, then there will be an 
> extra "|" at the end of the output.  To avoid this, remove the trailing "\n"
> out = out.replace(/\n$/,"");
>
> Combining these three actions into one line:
> out = "|" + out.split(";").join("|").replace(/\n$/,"").split("\n").join(
> "|\n|") + "|";
>
> That should do it.  Let me know if you get stuck.
>
> enjoy,
> -e
> Eric Shulman
> ELS Design Studios
> TiddlyTools - "Small Tools for Big Ideas!"
> InsideTiddlyWiki: The Missing Manuals
>
> YOUR DONATIONS ARE VERY IMPORTANT!
> HELP ME TO HELP YOU - MAKE A CONTRIBUTION TO MY "TIP JAR"...
>http://TiddlyTools.github.com/fundraising.html#MakeADonation
>
> 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 unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/a4f5a1f1-8c69-44ed-9e77-87403274b296%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TWC] Help improve my inline CSV display script

2015-12-11 Thread julien23
Hi Tobias

wikify("|" + out.join("|"),place); 
has fixed the " first line misses a "|" at the begening "

but 
out = out.join("|\n");
was a mistake. It removes the starting "|" for every other lines.

still trying/failing :) 

++

JBo




On Friday, December 11, 2015 at 2:12:14 PM UTC+1, Tobias Beer wrote:
>
> Hi Julien,
>
>>
>>- first line misses a "|" at the begening
>>- last lines is a lonely "|"
>>
>>
>>
> Try...
>
> var out = p.responseText.split("\n");
> out = out.join("|\n");
> out = out.split(";");
> wikify("|" + out.join("|"),place); 
>
> Best wishes,
>
> Tobias.
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/e76e21d7-2351-403f-a310-932f6de46e7e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] [TWC] Help improve my inline CSV display script

2015-12-11 Thread julien23
Hi all

I wrote this script to display CSV from URL : [UrlContentScriptCsv]


var p;
 if (document.all){
   // For IE, create an ActiveX Object instance
   p = new ActiveXObject("Microsoft.XMLHTTP");
 }
 else {
   // For mozilla, create an instance of XMLHttpRequest.
   p = new XMLHttpRequest();
 }
p.open("GET","$1",false);
p.send(null);
var out = p.responseText.split("\n");
out = out.join("|\n|");
out = out.split(";");
wikify(out.join("|"),place);


I use it for example in attachments : [FCBnc26_Outputs.csv]
!type
application
!file
..\look_FCBnc26_dev\office\FCBnc26_Outputs.csv

!Link
<>
!Content
<>


But

   - first line misses a "|" at the begening
   - last lines is a lonely "|"

I am not enought skilled to do that.

Can you please help me ?

Regards

Julien


-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/50bb6886-d25e-483e-aa56-4b96877984fa%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TWC] TypeError: url is undefined with images

2015-12-07 Thread julien23
Hi

works as planned
>
The image is correctly displayed and the link works.

gives this error

When the tiddler is displayed, a pop-up opens with the error and a "ok" 
button.

Does it help ?

Regards

Julien  


On Monday, December 7, 2015 at 7:20:39 PM UTC+1, Eric Shulman wrote:
>
> On Monday, December 7, 2015 at 7:05:02 AM UTC-8, julien23 wrote:
>>
>> [img[http://tiddlywiki.com/favicon.ico][http://www.tiddlywiki.com 
>> <http://tiddlywiki.com/favicon.ico%5D%5Bhttp://www.tiddlywiki.com>]]
>> works as planed, but gives me this error :
>>
>>> TypeError: url is undefined with images
>>
>>
> 1) go to http://classic.tiddlywiki.com
> 2) create a new tiddler
> 3) copy/paste the above syntax
> 4) press done
>
> result: the icon is displayed correctly and the link works.  No error 
> appears.
>
> Can you elaborate:
>
> * "works as planned" ... explain what works and what doesn't
> * "gives this error" ... where *exactly* does this error appear?
>
> -e
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/003b8e5b-69d0-4674-99db-345c2f4b8939%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] [TWC] TypeError: url is undefined with images

2015-12-07 Thread julien23
Hi all

I am trying to have an image as an external link : 

[img[http://tiddlywiki.com/favicon.ico][http://www.tiddlywiki.com]]

works as planed, but gives me this error :

> TypeError: url is undefined with images
>

What am I doing wrong ?

Regards

Julien 

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/5cd5d283-54d1-492e-8efc-af9dceb4096a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TWC] How to sort by slices value in FET (ForEachTiddlerPlugin) ?

2015-11-12 Thread julien23
Great

Thank you Tobias

Is there a TW Tip Jar I can contribute for this ?

Regards

Julien 

On Thursday, November 12, 2015 at 10:47:04 AM UTC+1, Tobias Beer wrote:
>
> Try something like...
>
> <> where
>> 'tiddler.tags.contains("Task") && tiddler.tags.contains("$2") && 
>> !tiddler.tags.contains("attachment") && !tiddler.tags.contains("Trash")' 
>> sortBy 
>> 'store.getTiddlerText(tiddler.title + "::Priority")' 
>> descending
>>write 
>>  '((index == 0) ? "" : "\n")+"[["+tiddler.title+"|"+tiddler.title+"]]"'
>> >>
>>
>
> Best wishes,
>
> — tb 
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/da0b4052-fcb8-4157-9238-751da93af703%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] [TWC] How to sort by slices value in FET (ForEachTiddlerPlugin) ?

2015-11-12 Thread julien23
Hi All

I would like to sort tiddlers by "Priority" slice value.

The slice is

|Priority|123|

Can you please clue me to the right code in FET ?

<>

Thank a lot

Julien

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/ebc93081-5bd4-4a2d-9e40-4531ca060f8a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TWC] Include tiddlers based on text filter

2015-10-12 Thread julien23
Hi

Ok another reason why I should move to TW5 ... no time for it right now.

Another question : 

I removed the MyText filter to include the whole TW.

How can I display a list of Tiddler with the MyText in there textContent ?

FET don't seems to fetch included tiddlers :

<><>

With [[FetTodoText]] : 

<>

Thank you

JBo



On Monday, September 28, 2015 at 4:59:25 PM UTC+2, Eric Shulman wrote:
>
> On Monday, September 28, 2015 at 6:21:07 AM UTC-7, julien23 wrote:
>>
>> I use
>> http://yakovl.bplaced.net/TW/STP/STP.html#SharedTiddlersPlugin
>> to include data from remote projetcs
>>
>> I would like to Include tiddlers based on text filter, but I can't find 
>> the right syntax
>>
>> <>
>>
>> Can you please help me ?
>>
>>
> TiddlyWiki Classic filters are very limited.  Unfortunately, there is no 
> [text[...]] operator.  The only operators that are supported (by the TWC 
> core) are [tag[...]] and [sort[...]].
>
> -e
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/7d4184e3-a35b-4de3-b9e6-39a7cef94dd1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] [TWC] Include tiddlers based on text filter

2015-09-28 Thread julien23
Hi all

I use
http://yakovl.bplaced.net/TW/STP/STP.html#SharedTiddlersPlugin
to include data from remote projetcs

I would like to Include tiddlers based on text filter, but I can't find the 
right syntax

<>

Can you please help me ?

Regards

JBo


tw14/index.html 

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/565b8fd8-6e47-474d-bb1e-22bbe5b1654d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] [TWC] round calculations to 2 decimals ?

2015-09-23 Thread julien23
Hi all

I have found this to do simple calculations inside TWC :

<>

with [[resultTid]] 
$1

Problem is that it renders up to 15 decimals ... which is sometime far too much 
!!
How can round this to 2 decimals ?

Looking forward to read from you

JBo

tw14/index.html 

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/ad8d8d51-ff29-41f9-b929-ef8222f54255%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TWC] trunk remote file for display

2015-09-22 Thread julien23
Hi Tobias

Thank you for quick and good idea.

I made it work with :
out = out.splice(5-1,9-5+1);

Final with parametrization :

<>

with [[UrlContentScriptStartEnd]] :


var p;
 if (document.all){
   // For IE, create an ActiveX Object instance
   p = new ActiveXObject("Microsoft.XMLHTTP");
 }
 else {
   // For mozilla, create an instance of XMLHttpRequest.
   p = new XMLHttpRequest();
 }
p.open("GET","$1",false);
p.send(null);
var out = p.responseText.split("\n");
out = out.splice($2-1,$3-$2+1);
wikify(out.join("\n"),place);


Thanks a lot

JBo




On Tuesday, September 22, 2015 at 11:13:28 AM UTC+2, Tobias Beer wrote:
>
> Hi Julien,
>  
>
>> wikify(p.responseText,place);
>>
>
>> Sometime I would like to trunck the remote file to display for example 
>> only lines 5 to 9.
>
>
> =>
>
> var out = p.responseText.split("\n");
> out = out.splice(5, out.length-9);
> wikify(out.join("\n"),place);
>
> Best wishes,
>
> — tb
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/6bf6c227-7b54-43e7-ab88-7325ffe14fae%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] [TWC]

2015-09-22 Thread julien23
Hi all

I am use to display remote code within TW using for example : 

<
>

with [[UrlContentScript]] :


var p;
 if (document.all){
   // For IE, create an ActiveX Object instance
   p = new ActiveXObject("Microsoft.XMLHTTP");
 }
 else {
   // For mozilla, create an instance of XMLHttpRequest.
   p = new XMLHttpRequest();
 }
 p.open("GET","$1",false);
 p.send(null);
wikify(p.responseText,place);



Sometime I would like to trunck the remote file to display for example only 
lines 5 to 9.
Can you please help me modify my script ?

Thank you

JBo

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/cd720065-4eaa-4a50-b63b-3ae3d9a037ec%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] [TWC] RSS to tiddlers

2015-04-26 Thread julien23
Hi all

I am looking for a way to create tiddlers from RSS feed messages.

I have found this old discussion about RSSAdaptor :
https://groups.google.com/d/topic/tiddlywiki/fvnhgQyWmgQ/discussion

But I can't have it back to work.
Even with FF3.6

What would you suggest ?

Regards

JBo

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/3f40fbcc-2df2-41d5-a387-1dd94982a61e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TWC] How to display local .txt file (no iframe)

2015-04-14 Thread julien23
Hi all

Exception was caused by "\" instead of "/" in the url.

Can you please help me with a last thing ?

At the end of [[UrlContentScript]], I don't manage to concatenate "{{{" + 
p.responseText + "}}}" to keep indentations.

How do I do that ?

Looking forward to read from you

JBo




On Monday, April 13, 2015 at 10:14:07 PM UTC+2, julien23 wrote:
>
> [Exception... "Failure" nsresult: "0x80004005 (NS_ERROR_FAILURE)" 
> location: "JS frame :: file:///S:/satt_prop14/index.html line 17349 > eval 
> line 76 > eval :: _out :: line 13" data: no]
>
> not perfect ...
> I get this error depending on files
>
> On Monday, April 13, 2015 at 9:47:16 PM UTC+2, julien23 wrote:
>>
>> Hi all
>>
>> I finally managed something ... experts might find it dirty :-)
>>
>> 
>> var url = '../satt_prop14_dev/matlab/ScoreCalculation14.m';
>>  if ('undefined' == typeof(url)) return false;
>>  var p,rnd;
>>  if (document.all){
>>// For IE, create an ActiveX Object instance
>>p = new ActiveXObject("Microsoft.XMLHTTP");
>>  }
>>  else {
>>// For mozilla, create an instance of XMLHttpRequest.
>>p = new XMLHttpRequest();
>>  }
>>  p.open("GET",url,false);
>>  p.send(null);
>> var urlContent = p.responseText.toString();
>> wikify(urlContent,place)
>> 
>>
>>
>>
>> On Monday, April 13, 2015 at 9:21:10 AM UTC+2, julien23 wrote:
>>>
>>> Hi all
>>>
>>> Thank you for answers.
>>>
>>> 
>>> >> >
>>>   File not found.
>>>  
>>> 
>>>
>>> works on win7/FF36
>>> win7/Chrome "File not found." not my main browser, maybe it is not 
>>> configured for local files.
>>>
>>> but anyway, I have the same issue than with iframe : the file content is 
>>> exiguous and delimited with both horizontal and vertical scrollbar.
>>>
>>> see TW14_2015_04_13.pdf 
>>> <https://www.sugarsync.com/pf/D7464562_93409053_6658137>
>>>
>>> and even if I manually fit width and height to file content...
>>> 
>>> ... then when I print, object is truncated to one page.
>>>
>>> It does not display inline like for example
>>> {{{
>>> contents of your .m file goes here ...
>>> }}}
>>>
>>> I think I am looking for a script that fetch the file content and send 
>>> it as output.
>>>
>>> I have tried to tweak the [AliasScript] Eric did me earlier.
>>> 
>>> out=store.getValue("$1","alias")
>>> wikify(out.toString(),place); //Final output
>>> 
>>>
>>> with this code :
>>>
>>> 
>>> document.include = function (url) {
>>>  if ('undefined' == typeof(url)) return false;
>>>  var p,rnd;
>>>  if (document.all){
>>>// For IE, create an ActiveX Object instance
>>>p = new ActiveXObject("Microsoft.XMLHTTP");
>>>  }
>>>  else {
>>>// For mozilla, create an instance of XMLHttpRequest.
>>>p = new XMLHttpRequest();
>>>  }
>>>  // Prevent browsers from caching the included page
>>>  // by appending a random  number (optional)
>>>  rnd = Math.random().toString().substring(2);
>>>  url = url.indexOf('?')>-1 ? url+'&rnd='+rnd : url+'?rnd='+rnd;
>>>  // Open the url and write out the response
>>>  p.open("GET",url,false);
>>>  p.send(null);
>>>  document.write( p.responseText );
>>> }
>>> document.include('../satt_prop14_dev/matlab/ScoreCalculation14.m');
>>> 
>>>
>>>
>>> I display the file content as text. It wraps properly. But don't manage 
>>> to make it wikify so far ...
>>>
>>> Looking forward to read from you
>>>
>>> JBo
>>>
>>>
>>>
>>> On Saturday, April 11, 2015 at 10:02:15 PM UTC+2, Eric Shulman wrote:
>>>>
>>>> On Saturday, April 11, 2015 at 12:45:08 PM UTC-7, Mat wrote:
>>>>>
>>>>> Maybe something like this. I get this to work with a local txt file:
>>>>>
>>>>>  >>>> type="..whateveritis..">
>>>>>   Text showing if file does not show up.
>>>>>  
>>>>>
>>>>
>>>> Excellent solution!  This works 

[tw] Re: [TWC] How to display local .txt file (no iframe)

2015-04-13 Thread julien23


[Exception... "Failure" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: 
"JS frame :: file:///S:/satt_prop14/index.html line 17349 > eval line 76 > 
eval :: _out :: line 13" data: no]

not perfect ...
I get this error depending on files

On Monday, April 13, 2015 at 9:47:16 PM UTC+2, julien23 wrote:
>
> Hi all
>
> I finally managed something ... experts might find it dirty :-)
>
> 
> var url = '../satt_prop14_dev/matlab/ScoreCalculation14.m';
>  if ('undefined' == typeof(url)) return false;
>  var p,rnd;
>  if (document.all){
>// For IE, create an ActiveX Object instance
>p = new ActiveXObject("Microsoft.XMLHTTP");
>  }
>  else {
>// For mozilla, create an instance of XMLHttpRequest.
>p = new XMLHttpRequest();
>  }
>  p.open("GET",url,false);
>  p.send(null);
> var urlContent = p.responseText.toString();
> wikify(urlContent,place)
> 
>
>
>
> On Monday, April 13, 2015 at 9:21:10 AM UTC+2, julien23 wrote:
>>
>> Hi all
>>
>> Thank you for answers.
>>
>> 
>> 
>>   File not found.
>>  
>> 
>>
>> works on win7/FF36
>> win7/Chrome "File not found." not my main browser, maybe it is not 
>> configured for local files.
>>
>> but anyway, I have the same issue than with iframe : the file content is 
>> exiguous and delimited with both horizontal and vertical scrollbar.
>>
>> see TW14_2015_04_13.pdf 
>> <https://www.sugarsync.com/pf/D7464562_93409053_6658137>
>>
>> and even if I manually fit width and height to file content...
>> 
>> ... then when I print, object is truncated to one page.
>>
>> It does not display inline like for example
>> {{{
>> contents of your .m file goes here ...
>> }}}
>>
>> I think I am looking for a script that fetch the file content and send it 
>> as output.
>>
>> I have tried to tweak the [AliasScript] Eric did me earlier.
>> 
>> out=store.getValue("$1","alias")
>> wikify(out.toString(),place); //Final output
>> 
>>
>> with this code :
>>
>> 
>> document.include = function (url) {
>>  if ('undefined' == typeof(url)) return false;
>>  var p,rnd;
>>  if (document.all){
>>// For IE, create an ActiveX Object instance
>>p = new ActiveXObject("Microsoft.XMLHTTP");
>>  }
>>  else {
>>// For mozilla, create an instance of XMLHttpRequest.
>>p = new XMLHttpRequest();
>>  }
>>  // Prevent browsers from caching the included page
>>  // by appending a random  number (optional)
>>  rnd = Math.random().toString().substring(2);
>>  url = url.indexOf('?')>-1 ? url+'&rnd='+rnd : url+'?rnd='+rnd;
>>  // Open the url and write out the response
>>  p.open("GET",url,false);
>>  p.send(null);
>>  document.write( p.responseText );
>> }
>> document.include('../satt_prop14_dev/matlab/ScoreCalculation14.m');
>> 
>>
>>
>> I display the file content as text. It wraps properly. But don't manage 
>> to make it wikify so far ...
>>
>> Looking forward to read from you
>>
>> JBo
>>
>>
>>
>> On Saturday, April 11, 2015 at 10:02:15 PM UTC+2, Eric Shulman wrote:
>>>
>>> On Saturday, April 11, 2015 at 12:45:08 PM UTC-7, Mat wrote:
>>>>
>>>> Maybe something like this. I get this to work with a local txt file:
>>>>
>>>>  >>> type="..whateveritis..">
>>>>   Text showing if file does not show up.
>>>>  
>>>>
>>>
>>> Excellent solution!  This works for me using Win7/Chrome.  Note that 
>>> TWClassic needs to have ... markers around any HTML syntax, 
>>> and if you want to use wiki syntax to format the "file not found" text (the 
>>> content within the ... block), then you will need to 
>>> install
>>>http://www.TiddlyTools.com/#HTMLFormattingPlugin
>>>
>>> Also, if you don't specify the type="...", the browser defaults to 
>>> "text/plain".  The type param is only required if you want the browser to 
>>> attempt to display the file content using an addon "viewer" that was 
>>> previously installed (e.g., PDF, Excel, Word)
>>>
>>> enjoy,
>>> -e
>>> Eric Shulman
>>> TiddlyTools / ELS Design Studios
>>>
>>> "Inside TiddlyWiki: The Missi

[tw] Re: [TWC] How to display local .txt file (no iframe)

2015-04-13 Thread julien23
Hi all

I finally managed something ... experts might find it dirty :-)


var url = '../satt_prop14_dev/matlab/ScoreCalculation14.m';

 if ('undefined' == typeof(url)) return false;
 var p,rnd;
 if (document.all){
   // For IE, create an ActiveX Object instance
   p = new ActiveXObject("Microsoft.XMLHTTP");
 }
 else {
   // For mozilla, create an instance of XMLHttpRequest.
   p = new XMLHttpRequest();
 }
 p.open("GET",url,false);
 p.send(null);
var urlContent = p.responseText.toString();
wikify(urlContent,place)




On Monday, April 13, 2015 at 9:21:10 AM UTC+2, julien23 wrote:
>
> Hi all
>
> Thank you for answers.
>
> 
> 
>   File not found.
>  
> 
>
> works on win7/FF36
> win7/Chrome "File not found." not my main browser, maybe it is not 
> configured for local files.
>
> but anyway, I have the same issue than with iframe : the file content is 
> exiguous and delimited with both horizontal and vertical scrollbar.
>
> see TW14_2015_04_13.pdf 
> <https://www.sugarsync.com/pf/D7464562_93409053_6658137>
>
> and even if I manually fit width and height to file content...
> 
> ... then when I print, object is truncated to one page.
>
> It does not display inline like for example
> {{{
> contents of your .m file goes here ...
> }}}
>
> I think I am looking for a script that fetch the file content and send it 
> as output.
>
> I have tried to tweak the [AliasScript] Eric did me earlier.
> 
> out=store.getValue("$1","alias")
> wikify(out.toString(),place); //Final output
> 
>
> with this code :
>
> 
> document.include = function (url) {
>  if ('undefined' == typeof(url)) return false;
>  var p,rnd;
>  if (document.all){
>// For IE, create an ActiveX Object instance
>p = new ActiveXObject("Microsoft.XMLHTTP");
>  }
>  else {
>// For mozilla, create an instance of XMLHttpRequest.
>p = new XMLHttpRequest();
>  }
>  // Prevent browsers from caching the included page
>  // by appending a random  number (optional)
>  rnd = Math.random().toString().substring(2);
>  url = url.indexOf('?')>-1 ? url+'&rnd='+rnd : url+'?rnd='+rnd;
>  // Open the url and write out the response
>  p.open("GET",url,false);
>  p.send(null);
>  document.write( p.responseText );
> }
> document.include('../satt_prop14_dev/matlab/ScoreCalculation14.m');
> 
>
>
> I display the file content as text. It wraps properly. But don't manage to 
> make it wikify so far ...
>
> Looking forward to read from you
>
> JBo
>
>
>
> On Saturday, April 11, 2015 at 10:02:15 PM UTC+2, Eric Shulman wrote:
>>
>> On Saturday, April 11, 2015 at 12:45:08 PM UTC-7, Mat wrote:
>>>
>>> Maybe something like this. I get this to work with a local txt file:
>>>
>>>  >> type="..whateveritis..">
>>>   Text showing if file does not show up.
>>>  
>>>
>>
>> Excellent solution!  This works for me using Win7/Chrome.  Note that 
>> TWClassic needs to have ... markers around any HTML syntax, 
>> and if you want to use wiki syntax to format the "file not found" text (the 
>> content within the ... block), then you will need to 
>> install
>>http://www.TiddlyTools.com/#HTMLFormattingPlugin
>>
>> Also, if you don't specify the type="...", the browser defaults to 
>> "text/plain".  The type param is only required if you want the browser to 
>> attempt to display the file content using an addon "viewer" that was 
>> previously installed (e.g., PDF, Excel, Word)
>>
>> enjoy,
>> -e
>> Eric Shulman
>> TiddlyTools / ELS Design Studios
>>
>> "Inside TiddlyWiki: The Missing Manual"
>>
>> https://www.indiegogo.com/projects/inside-tiddlywiki-the-missing-manual/x/8816263
>> Note: the IndieGogo funding campaign has ended,
>> but direct fundraising continues below...
>>
>> YOUR DONATIONS ARE VERY IMPORTANT!
>> HELP ME TO HELP YOU - MAKE A CONTRIBUTION TO MY "TIP JAR"...
>>http://TiddlyTools.github.com/fundraising.html#MakeADonation
>>
>> 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 unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/27451671-8d2f-4dd1-bb66-c14a9857ea2e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TWC] How to display local .txt file (no iframe)

2015-04-13 Thread julien23
Hi all

Thank you for answers.



  File not found.
 


works on win7/FF36
win7/Chrome "File not found." not my main browser, maybe it is not 
configured for local files.

but anyway, I have the same issue than with iframe : the file content is 
exiguous and delimited with both horizontal and vertical scrollbar.

see TW14_2015_04_13.pdf 


It does not display inline like for example
{{{
contents of your .m file goes here ...
}}}

I think I am looking for a script that fetch the file content and send it 
as output.

I have tried to tweak the [AliasScript] Eric did me earlier.

out=store.getValue("$1","alias")
wikify(out.toString(),place); //Final output


no success so far ...

Looking forward to read from you

JBo



On Saturday, April 11, 2015 at 10:02:15 PM UTC+2, Eric Shulman wrote:
>
> On Saturday, April 11, 2015 at 12:45:08 PM UTC-7, Mat wrote:
>>
>> Maybe something like this. I get this to work with a local txt file:
>>
>>  > type="..whateveritis..">
>>   Text showing if file does not show up.
>>  
>>
>
> Excellent solution!  This works for me using Win7/Chrome.  Note that 
> TWClassic needs to have ... markers around any HTML syntax, 
> and if you want to use wiki syntax to format the "file not found" text (the 
> content within the ... block), then you will need to 
> install
>http://www.TiddlyTools.com/#HTMLFormattingPlugin
>
> Also, if you don't specify the type="...", the browser defaults to 
> "text/plain".  The type param is only required if you want the browser to 
> attempt to display the file content using an addon "viewer" that was 
> previously installed (e.g., PDF, Excel, Word)
>
> enjoy,
> -e
> Eric Shulman
> TiddlyTools / ELS Design Studios
>
> "Inside TiddlyWiki: The Missing Manual"
>
> https://www.indiegogo.com/projects/inside-tiddlywiki-the-missing-manual/x/8816263
> Note: the IndieGogo funding campaign has ended,
> but direct fundraising continues below...
>
> YOUR DONATIONS ARE VERY IMPORTANT!
> HELP ME TO HELP YOU - MAKE A CONTRIBUTION TO MY "TIP JAR"...
>http://TiddlyTools.github.com/fundraising.html#MakeADonation
>
> 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 unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/f0cf3814-0a02-4d78-92e7-f5f7b2e659d3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] [TWC] ViewingTimesPlugin

2014-12-19 Thread julien23
Hi all

This old post talk about a ViewingTimesPlugin
https://groups.google.com/d/topic/tiddlywiki/6kCmwj3e3eo/discussion

unfortunatly link are no longer available
http://svn.tiddlywiki.org/Trunk/contributors/MichaelMahemoff/plugins/ViewingTimesPlugin/
http://tiddlywiki.mahemoff.com/ViewingTimesPlugin.html

Does nay on has a copy ?
Do you know any alternatives ?

Regards

Julien

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TWC] removing "@@" marks with notepad++ broke my TW

2014-12-04 Thread julien23
answering myself...

I found an old version of my TW
I added back the @@ in the customFormat section and now everything works.

I use highlights to show revisions. In the futur I should find another way 
to do that...

name: "customFormat",
match: "@@|\\{\\{",
handler: function(w)
{
switch(w.matchText) {
case "@@":
var e = createTiddlyElement(w.output,"span");
var styles = config.formatterHelpers.inlineCssHelper(w);
if(styles.length == 0)
e.className = "marked";
else
config.formatterHelpers.applyCssHelper(e,styles);
w.subWikifyTerm(e,/(@@)/mg);



On Thursday, December 4, 2014 2:21:16 PM UTC+1, julien23 wrote:
>
> Hi all
>
> I may have done something silly...
>
> I have opened the TW .html file with notepad++ and removed all the 
> highlight marks
>
> replace "@@" with""
>
> and now the file is broken, impossible to open with FF33.1
>
> Can you please help me ?
>
> Regards
>
> JBo
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] [TWC] removing "@@" marks with notepad++ broke my TW

2014-12-04 Thread julien23
Hi all

I may have done something silly...

I have opened the TW .html file with notepad++ and removed all the 
highlight marks

replace "@@" with""

and now the file is broken, impossible to open with FF33.1

Can you please help me ?

Regards

JBo

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] [TW] how to get SomeSection ? <>

2014-12-03 Thread julien23
Hi all

Obviously
<>

renders

> <>
>

But I want SomeSection's content

how to ?

Thank you 

JBo

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TWC] How can I get a list of Paul's skills ?

2014-10-07 Thread julien23
Hi all

Eric,
Thank you
I have abounded your tip jar as usual

Stephan,
I do love TW5, but it took me so much time to build my system with TWC, I 
can't imagine to migrate ... too bad!

Regards

Julien



On Tuesday, October 7, 2014 2:18:10 PM UTC+2, Stephan Hradek wrote:
>
>
>
> Am Dienstag, 7. Oktober 2014 14:08:26 UTC+2 schrieb Eric Shulman:
>>
>>
>> This solution is for TW5.  The question was specifically for TWClassic. 
>>  However, it does demonstrate how powerful the new TiddlyWiki filter syntax 
>> is!
>>
>
> Now that you say it… ;) 
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TWC] How can I get a list of Paul's skills ?

2014-10-07 Thread julien23
Hi whatever

Sorry for long silence ...

I slightly modified your script to match my taxonomy 


var skills = store.getTaggedTiddlers("*Skills*"); //Get skill tiddlers
var here = story.findContainingTiddler(place); //Determine place
if (here) {
var tid = store.getTiddler(here.getAttribute("tiddler")); //Get this tiddler
}
var title = tid.title; //This tiddler's title
var i, skill;
var out = []; //Output for skills
for (i = 0; i < skills.length; i++) {
skill = skills[i].title; //A skill is skill tiddler's title
if (tid.isTagged(skill)) { //If this tiddler is tagged with a skill
out.push(skill); //Add the skill to the output
}
}
wikify(title+" has the following skills: "+out.toString().replace(/,/g, ", "
)+".",place); //Final output


It works fine if I past it into [Paul].

Thank an lot.

Now I am trying to save it into [PeopleSkillsScript]
Therefor I am trying to replace tiddler's title with $1 variable.


var skills = store.getTaggedTiddlers("Skills"); //Get skill tiddlers
var here = story.findContainingTiddler(place); //Determine place
var title = $1; //Calling tiddler's title
var i, skill;
var out = []; //Output for skills
for (i = 0; i < skills.length; i++) {
skill = skills[i].title; //A skill is skill tiddler's title
if (tid.isTagged(skill)) { //If this tiddler is tagged with a skill
out.push(skill); //Add the skill to the output
}
}
wikify(title+" has the following skills: "+out.toString().replace(/,/g, ", "
)+".",place); //Final output


And to call it from [Paul] with
<>

But I get :
ReferenceError: Paul is not defined

Can you please help me further ?

Regards

Julien


On Friday, September 12, 2014 5:29:32 PM UTC+2, whatever wrote:
>
> Hey!
>
> Try the following:
>
> 
> var skills = store.getTaggedTiddlers("skill"); //Get skill tiddlers
> var here = story.findContainingTiddler(place); //Determine place
> if (here) {
> var tid = store.getTiddler(here.getAttribute("tiddler")); //Get this 
> tiddler
> }
> var title = tid.title; //This tiddler's title
> var i, skill;
> var out = []; //Output for skills
> for (i = 0; i < skills.length; i++) {
> skill = skills[i].title; //A skill is skill tiddler's title
> if (tid.isTagged(skill)) { //If this tiddler is tagged with a skill
> out.push(skill); //Add the skill to the output
> }
> }
> wikify(title+" has the following skills: "+out.toString().replace(/,/g, ", 
> ")+".",place); //Final output
> 
>
> Note that you need InlineJavascriptPlugin (1) for this to work.
>
> (1) http://www.TiddlyTools.com/#InlineJavascriptPlugin
>
> w
>
> On Friday, September 12, 2014 4:45:51 PM UTC+2, julien23 wrote:
>>
>> Hi All
>>
>> I use TW for contact management
>>
>> [Paul] may be tagged SportScience , SystemControl or Coding
>> but he is also tagged with People, silverDim13, Journal20140912 ...
>>
>> [SportScience] , [SystemControl] and [Coding] are skills, they are tagged 
>> with "Skills"
>>
>> How can I get a list of Paul's skills ?
>>
>> Looking forward to read from you
>>
>> Julien
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TiddlerAliasPlugin : looking for tiddler.aliases to make a "acronyms and variables" table

2014-09-24 Thread julien23
I reply to myself

!!store.getValue(tiddler,"alias")

perfectly fixed all the empty, null or undefined Alias.

The whole code looks like :

[[Aliases]]
<>

++

JBo



On Monday, July 1, 2013 9:48:07 PM UTC+2, julien23 wrote:
>
> One last before I definitely declare myself satisfied for ever ... or at 
> least until tomorrow
>
> I don't manage to have
>
>> where
>> '(store.getValue(tiddler,"alias") != undefined)' 
>>
>
> working properly
>
> also tried
>
>> != null)' 
>> != 'undefined')'
>
> != "")'  
>>
>
> If one of you have more knowledge than I have luck :-)
>
> Julien
>
> Le lundi 1 juillet 2013 21:25:50 UTC+2, julien23 a écrit :
>>
>> Thank you Eric
>>
>> my final would be
>>
>> <>> where
>>> 'tiddler.tags.contains("$1")'
>>> sortBy 
>>>store.getValue(tiddler,"alias")
>>>ascending
>>> write
>>> '"\n|"+store.getValue(tiddler,"alias")+"|"+tiddler.title+"|"
>>> begin
>>> '"|!acronym|!title|"'
>>> >>
>>>
>>
>> Good night all
>>
>> Le lundi 1 juillet 2013 20:42:43 UTC+2, Eric Shulman a écrit :
>>>
>>>write
>>>
>>>>'"|"+*tiddler.alias*+"|"+tiddler.title+"|\n"
>>>> but *tiddler.alias* still send "undefined" to the table...
>>>>
>>>>
>>> instead of tiddler.alias try store.getValue(tiddler,"alias") 
>>>
>>> enjoy,
>>> -e
>>> Eric Shulman
>>> TiddlyTools / ELS Design Studios
>>>
>>> HELP ME TO HELP YOU - MAKE A CONTRIBUTION TO MY "TIP JAR"...
>>>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 unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] [TWC] How can I get a list of Paul's skills ?

2014-09-12 Thread julien23
Hi All

I use TW for contact management

[Paul] may be tagged SportScience , SystemControl or Coding
but he is also tagged with People, silverDim13, Journal20140912 ...

[SportScience] , [SystemControl] and [Coding] are skills, they are tagged 
with "Skills"

How can I get a list of Paul's skills ?

Looking forward to read from you

Julien

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TWC] calculation with FET

2014-07-18 Thread julien23
Hi Eric
thank you for fast answer

... so FET cannot do everything !!  :)

Not sure about InlineJavascriptPlugin process

I have installed/activated the plugin
I have pasted your code in

[[Last5CreatedSliceAverage]]


> var count=0, total=0;
> // get ALL tiddlers, sorted by creation date (newest first)
> var tids=store.sortTiddlers(store.getTiddlers(),"-created");
> // for each tiddler...
> for (var i=0; i<tids.length; i++) {
>// get the desired slice value as a number, default to 0 if no slice is 
> defined 
>var val=1*store.getTiddlerText(tiddler.title+"::$1","0");
>// if value is non-zero, add it to the total, and increment the count
>if (val>0) { total+=val; count++; }
>// if we have found five values, that's enough
>if (count==5) break;
> }
> // calculate and return the average value
> // which is then rendered by InlineJavascriptPlugin
> return total/count;
> 
>

Then I try to call it :

[[ConfusedVectorError]]

...
> <>
> ...
>

but nothing shows up

Am I mistaken in the process of using InlineJavascriptPlugin ?

Regards

Julien



On Friday, July 18, 2014 11:13:08 AM UTC+2, Eric Shulman wrote:
>
> On Friday, July 18, 2014 12:27:59 AM UTC-7, julien23 wrote:
>>
>> I am trying to get the average value of a field for the 5 last created 
>> tiddlers with FET.
>> [[ConfusedVectorError]]
>>
>>> |DPMO|<>|
>>>
>>
> For this kind of calculation, you may be better off using 
>http://www.TiddlyTools.com/#InlineJavascriptPlugin
>
> Like this:
> 
> var count=0, total=0;
> // get ALL tiddlers, sorted by creation date (newest first)
> var tids=store.sortTiddlers(store.getTiddlers(),"-created");
> // for each tiddler...
> for (var i=0; i<tids.length; i++) {
>// get the desired slice value as a number, default to 0 if no slice is 
> defined 
>var val=1*store.getTiddlerText(tiddler.title+"::$1","0");
>// if value is non-zero, add it to the total, and increment the count
>if (val>0) { total+=val; count++; }
>// if we have found five values, that's enough
>if (count==5) break;
> }
> // calculate and return the average value
> // which is then rendered by InlineJavascriptPlugin
> return total/count;
> 
>
> Note: if there are < 5 tiddlers with a non-zero field value, the average 
> will be correctly calculated based on the actual number of tiddlers found.
>
> That should do it... let me know how it goes.
>
> enjoy,
> -e
> Eric Shulman
> TiddlyTools / ELS Design Studios
>
> YOUR DONATIONS ARE VERY IMPORTANT!
> HELP ME TO HELP YOU - MAKE A CONTRIBUTION TO MY "TIP JAR"...
>http://TiddlyTools.github.com/fundraising.html#MakeADonation
>
> 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 unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] [TWC] sort by "dynamic" slice using FET ?

2014-07-18 Thread julien23
Hi all

You could help me sorting FET by slice here :
https://groups.google.com/d/topic/tiddlywiki/i3-EnWFmFjc/discussion

with :

> sortBy 'tiddler.title+"::customSlice"' descending
>
>
It looks that it does not work if customSlice is dynamic.
I am trying below to sort Errors by the last time it occured in a Log.

I get not visible error, but sorting is wrong.

Can you please help me ?

Regards

Julien


[[Errors]]

... 

<> 

... 
>

 [[FetErrorsTagTag]]

< where
> 'tiddler.tags.contains("$1") && tiddler.tags.contains("$2") && 
> !tiddler.tags.contains("attachment") && !tiddler.tags.contains("Trash")&& 
> !tiddler.tags.contains("hidden")' 
> sortBy
> 'tiddler.title+"::LastSeen"'
> ascending
>write 
>  '((index == 0) ? "|borderless|k\n|LastSeen : "\n")+"|< [["+tiddler.title+"::DPMO]]$))|[["+tiddler.title+"|"+tiddler.title+"]] 
> ("+store.getValue(tiddler,"alias")+") [["+tiddler.title+"##Description]]$))|< [["+tiddler.title+"##Todo]]$))|"'
> >>
>

[[ConfusedVectorError]] #Errors

...
> |DPMO|252883|
> |LastSeen|<>|
> ... 
>

 [[FetLastSeenSlice]]

< where
> 'tiddler.text.contains("|$1|") && 
> !tiddler.text.contains("|$1|0|")  && !tiddler.tags.contains("attachment") 
> && !tiddler.tags.contains("Hidden")' 
> sortBy 
> tiddler.created
> descending
> write 
> '((index == 1) ? tiddler.created.formatString("-0MM-0DD") : 
> "")'
> >>
>

 

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] [TWC] calculation with FET

2014-07-18 Thread julien23
Hi all

I am trying to get the average value of a field for the 5 last created 
tiddlers with FET.
See below what I have so far.

I can't have it work.

Can you please help me ?

regards

Julien

[[ConfusedVectorError]]

|DPMO|<>|
>


[[FetAverage5Text]]

< where
> 'tiddler.text.contains("|$1|") && 
> !tiddler.text.contains("|$1|0|")' 
> sortBy 
> tiddler.created
> descending
>write 
> '((index == 1) ? "< [["+tiddler.title+"::$1]]/>/>" :
>   (index >= 2) && (index <= 4) ? " + < [["+tiddler.title+"::$1]]/>/>" :
>   (index == 5) ? " +  ) /5 
> /}/}/>/>" :
>   "")'
> >>
>

[[resultTid]]

$1
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: how to add a newJournal in the ToolbarCommands ?

2014-07-17 Thread julien23
Hi magev958

On this point I have moved to a new strategy, see : 
https://groups.google.com/d/topic/tiddlywiki/rbcqIiISU-4/discussion

regards

JBo

On Thursday, July 17, 2014 1:48:48 PM UTC+2, magev958 wrote:
>
> Hi, I managed to get it to work with previousTiddler in 
> http://www.tiddlytools.com/ # BreadcrumbsPlugin. But I'd also like to get 
> cycleTag from http://lastfm.tiddlyspot.com/ # cycleTags in the toolbarC
> ommand. Do you have any idea on how to do it?
> thanks in advance :)
>
>
> Den tisdagen den 19:e mars 2013 kl. 23:26:25 UTC+1 skrev Yakov:
>>
>> Hi julien23,
>>
>> here's a hint how to achieve what you want: there's no newJournal command 
>> of the toolbar, so you have to add it..
>>
>> /*{{{*/
>> config.commands.myCommand = {
>>
>>hideReadOnly: false, // as far as I know, that means that the button 
>> won't appear in the readOnly mode
>>
>>getText: function() { return 'newJournal'; }, // returns the label of 
>> the button
>>
>>tooltip: 'my test toolbar button',
>>
>>handler: function() { // called when you click on the button
>>   displayMessage('this works!', '');
>>   console.log('Super cool button works.');
>>   return false;
>>}
>> };
>> /*}}}*/
>>
>> This plugin adds a command to the toolbar (you have to activate it by 
>> adding "myCommand" to the ToolbarCommands). The quest is to change the 
>> handler so that it does what you need -- for this you can dig NewTiddler.js 
>> where newJournal.handler is defined..
>>
>> Best regards,
>> Yakov.
>>
>> [1] https://github.com/TiddlyWiki/tiddlywiki/blob/master/js/NewTiddler.js
>>
>> четверг, 14 марта 2013 г., 0:33:44 UTC+4 пользователь julien23 написал:
>>>
>>> Hi all
>>>
>>> I am trying to add something like this to the ToolbarCommands :
>>>
>>> <>>> focus:"title" text:{{store.getTiddlerText("templateAttachment")}} 
>>>> label:link prompt:"link a file here"   Attachment context.inTiddler.title 
>>>> >>
>>>>
>>>
>>> Obviously the syntaxe is totally wrong but I don't even to have just
>>>
>>> newJournal
>>>>
>>>  
>>> showing up in the toolbar commands
>>>
>>> Could you please help ?
>>>
>>> Thanks
>>>  
>>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TWC] new tiddlers creation from type list

2014-06-15 Thread julien23
Hi All

It finally works with

[[FetNewHere]]

<\>"'
  begin
 '"new..."'
>>

Thank you Eric a lot !

I just need to have autorefresh(1) to works and I could spread my 
"newTypeHereToolbar" to all my projects.
Looking forward to it !

Julien

1 : https://groups.google.com/d/topic/tiddlywiki/9xCyJdh9cVc/discussion


On Saturday, June 14, 2014 3:19:33 PM UTC+2, Eric Shulman wrote:
>
> On Saturday, June 14, 2014 2:57:03 AM UTC-7, julien23 wrote:
>>
>> I have already tried
>> ...Template%22)}}
>> according to "whatever"'s saying but I get the red
>>
>> new... Error in macro <> Error in macro <> Error 
>> in macro <> Error in macro <> Error in macro 
>> <> Error in macro <> Error in macro 
>> <>
>>
>> click on the red text to show a popup with the actual error message 
> returned by the macro.  This may provide the clue to what is wrong.
>
> Note: it's possible that using %22 in the ForEachTiddler context may not 
> be correct.  Try using \" (backslash-doublequote) instead.
>
> -e
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TWC] new tiddlers creation from type list

2014-06-14 Thread julien23
Hi Eric

I have already tried
...Template%22)}}
according to "whatever"'s saying but I get the red

new... Error in macro <> Error in macro <> Error in 
macro <> Error in macro <> Error in macro 
<> Error in macro <> Error in macro <>

...Template%22)\}\}
does not make it any better

On Saturday, June 14, 2014 10:34:18 AM UTC+2, Eric Shulman wrote:
>
> text
>> {{store.getTiddlerText(ConstantsTemplate)/}/}
>>
>> I am allmost there... I just can't figure out how to have this store to 
>> work.
>>
>>
> Try changing /}/} to just }}
>
> -e
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Re: What is your TW5 plugin wishlist?

2014-04-05 Thread julien23
Hi All

my top5 TWC plugins

   - 
SharedTiddlersPlugin
   - 
ForEachTiddlerPlugin
   - TiddlyLockPlugin 
   - FileDropPlugin 
   - RenameTagsPlugin 

I need their functionalities ported to TW5 before I can consider migrating 
to TW5

Regards

Julien

Le mercredi 26 mars 2014 12:25:47 UTC+1, David Gifford a écrit :
>
> Hi Aaron,
>
> I think what Stephan is trying to say is that he has already created a new 
> journal button. (Thanks again for that valuable addition to TW5, Stephan!) 
> You can find it here. 
>
> http://tiddlystuff.tiddlyspot.com/
>
> Aaron, here is some documentation I wrote up for myself, since Stephan's 
> documentation style tends to assume a fair bit of prior knowledge. Hope 
> this fulfills your longing for a new journal button!
>
> Requires $:/plugins/skeeve/let.js, $:/macros/skeeve/dateTime.js, 
> $:/plugins/skeeve/newtiddler.js, 
>
> *1. Create Skeleton tiddler*, in this case we will call it JournalSkeleton
>
> I tag it 2014. Otherwise a typical blank tiddler.
>
>
> *2. Create tiddler with button, in this case journalButton*
>
> <$let tag1="2014" text="">
>
> <$newtiddler title=<> 
> skeleton="JournalSkeleton" edit="yes">New Journal
>
> 
>
> *3. Add button to tiddler from which you want to create new journals*
>
> {{journalButton}}
>
>
>
> On Tuesday, March 25, 2014 9:48:10 PM UTC-4, Aaron wrote:
>>
>> On my list would be a journal tiddler. Title initialized with the date 
>> (formattable), tagged "journal". A separate button from the current + 
>> button for normal tiddlers. I think (it's been years) that classic or 
>> MPTW had this. 
>>
>> I also like the TOC inside a tiddler. 
>>
>> -- 
>> Aaron 
>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TWC] tagging on importing with SharedTiddlersPlugin

2014-04-05 Thread julien23
Hi Yakof

you can tag your tiddlers with both "projA" and "projB" at once
>
That is what I actually do, but sometime I miss this point.
Also if I found  projB tagged tiddlers in projAtw I whish this new line 
would be added in IncludeList
<>

I understand your priorities
FET is in my top5 plugin along with 

   - SharedTiddlersPlugin
   - TiddlyLockPlugin <http://www.minormania.com/tiddlylock/tiddlylock.html>
   - FileDropPlugin <http://www.TiddlyTools.com/#FileDropPlugin>
   - RenameTagsPlugin <http://mptw.tiddlyspot.com/#RenameTagsPlugin>

, and I agree I can do it by hand.

Some day I'll might ask for TW5 core 2 way tiddlers syncing...

Regards

Julien

Le vendredi 4 avril 2014 20:13:51 UTC+2, Yakov a écrit :
>
> Hello Julien,
>
> this is not currently implemented. I have a use-case where this would be 
> nice, too. But I don't want to implement this using a simple approach like 
> "addTag" param or something like, because another time, it will be nice to 
> remove some tag/tags, or add a field value or ... So, what should be 
> implemented is something like "onTiddlerLoad" param that "eats" JavaScript 
> that does some changes to the tiddler. Though, actually, "syncing" should 
> be implemented in another way, using special "import" mode(s) that would 
> set a "date of syncing" field to a tiddler and take into account dates of 
> syncing and dates of modification of the tiddler versions in two 
> TiddlyWikis.
>
> But, to be honest, this is not a top priority dev tasks for the moment. 
> Currently, STP is in the process of "core refactoring" that would allow 
> different things like consistent search through all nodes (TWs) and also 
> better performance, clearer "priority/conflicts" logic and more compact 
> code. And, unfortunatelly, STP itself isn't the top priority development 
> for me now (I have to finish docs and publish an update of 
> ForEachTiddlerPlugin and some cool addons for it).
>
> On the other hand, I don't get your idea about tagging. You add the 
> "projA" tag to show that it's interesting for the project A. But in this 
> case, what's the point of tagging it projB automatically? May be just tag 
> it "shared A+B" or smth like that? I mean, what's the difference between 
> tagging "shared A+B" at once and tagging "projA" and then -- autotagging 
> "projB"? Does your model have something to do with multiple TWs? If that's 
> the case, you can tag your tiddlers with both "projA" and "projB" at once, 
> without waiting them to be imported. Or not?
>
> Best regards,
> Yakov.
>
> пятница, 4 апреля 2014 г., 14:55:59 UTC+4 пользователь julien23 написал:
>>
>> Hi all
>>
>> I use SharedTiddlersPlugin a lot to 2 ways sync tiddlers between projects.
>>
>> ex projA projB
>>
>> I would fetch projB's tiddlers of interest for projA by
>> tagging them projA in projBtw
>> importing them in projAtw with SharedTiddlersPlugin : 
>> <>
>>
>> I would like something in the <> that would allow me to tag 
>> them projB so I can fetch them back to projBtw if they have been modified 
>> in proAtw.
>>
>> Does this exist allready ?
>> Could consider this in SharedTiddlersPlugin's developpement ?
>>
>> Looking forward to read from you
>>
>> Julien
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TWC] speed up large IncludeList with SharedTiddlersPlugin

2014-04-05 Thread julien23
Yakov, Eric 

Thanks to both of you

Loading time has been cut from minutes to 8sec. That makes the whole system 
usable again.

noRefresh parametter was crucial 

Have a nice day 

Julien

Le vendredi 4 avril 2014 20:11:14 UTC+2, Yakov a écrit :
>
> Ah, I haven't noticed the thing that Eric has:
>
> пятница, 4 апреля 2014 г., 20:32:54 UTC+4 пользователь Eric Shulman 
> написал:
>>
>> On Friday, April 4, 2014 3:46:25 AM UTC-7, julien23 wrote:
>>>
>>> I use SharedTiddlersPlugin 2.4.0  to sync tiddlers betwen projects.
>>> My main "contact" TW is very slow to start due to its large [IncludeList]
>>>
>> <>> import:4>>
>>> <>> "[tag[AirbankCataloguePackage]]" import:4>>
>>> <>> "[tag[AirbankContactPackage]]" import:4>>
>>> <>> "[tag[AirbankProspectPackage]]" import:4> ... 
>>>
>> Is there a way to speed up the process? Maybe be grouping lines with more 
>>> clever filter, but I could no find the right syntax...
>>
>>
>> Such a usage of the macro is not optimal. Although the TW is only loaded 
> once, on the first macro call (it's the STP behaviour), this still makes 
> some extra work. The most slowing factor, as I've mentioned, should be the 
> multiple refreshing, but even if you use the noRefresh param, this syntax:
>
> < [tag[AirbankCataloguePackage]] 
> [tag[AirbankContactPackage]] [tag[AirbankProspectPackage]]" import:4noParam>
> >
>
> should provide more optimal behaviour (@Eric: yes, STP does use 
> store.filterTiddlers, and in this particular case the usage of OR is 
> something excessive, but the regexp version looks nicely).
>
> Without usage of the noRefresh param this would increase the speed 
> significantly (again, because of less refreshing).
>
> Best regards,
> Yakov.
>  
>
>> SharedTiddlersPlugin probably uses the TWCore's store.filterTiddlers() 
>> function to select the desired tiddlers by tag value.  If this is the case, 
>> then you should be able to install:
>>http://www.TiddlyTools.com/#MatchTagsPlugin
>>
>> which extends the TWCore filterTiddlers() handling to enable matching 
>> combinations of tag values, using *boolean* operators (AND,OR,NOT, and 
>> parentheses as needed).  For example, you could write this one line:
>> <> OR AirbankCataloguePackage OR AirbankContactPackage OR 
>> [tag[AirbankProspectPackage]]" import:16>
>> You can even use text patterns ("regular expressions") within the tag 
>> values, like this:
>> <> import:16>
>> which will match tag values that start with "Airbank" and end with 
>> "Package" with any other text in between.
>>
>> By using MatchTagsPlugin to combine the filters for the same file, you 
>> should be able to save some overhead time: it won't re-read the same file 
>> contents multiple times, and there's only one loop through the tiddlers to 
>> filter them.
>>
>> Let me know if it helps...
>>
>> enjoy,
>> -e
>> Eric Shulman
>> TiddlyTools / ELS Design Studios
>>
>> YOUR DONATIONS ARE VERY IMPORTANT!
>> HELP ME TO HELP YOU - MAKE A CONTRIBUTION TO MY "TIP JAR"...
>>http://TiddlyTools.github.com/fundraising.html#MakeADonation
>>
>> 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 unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] [TWC] tagging on importing with SharedTiddlersPlugin

2014-04-04 Thread julien23
Hi all

I use SharedTiddlersPlugin a lot to 2 ways sync tiddlers between projects.

ex projA projB

I would fetch projB's tiddlers of interest for projA by
tagging them projA in projBtw
importing them in projAtw with SharedTiddlersPlugin : 
<>

I would like something in the <> that would allow me to tag 
them projB so I can fetch them back to projBtw if they have been modified 
in proAtw.

Does this exist allready ?
Could consider this in SharedTiddlersPlugin's developpement ?

Looking forward to read from you

Julien

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] [TWC] speed up large IncludeList with SharedTiddlersPlugin

2014-04-04 Thread julien23
Hi all

I use SharedTiddlersPlugin 2.4.0  to sync tiddlers betwen projects.

My main "contact" TW is very slow to start due to its large [IncludeList]

<>
<>
<>
<>

!!Cross
<>
<>
<>

<>
<>
<>

<
>
<>

<>
<>

<>
<>

<>
<>

Is there a way to speed up the process ?

Maybe be grouping lines with more clever filter, but I could no find the 
right syntax...

Looking forward to read from you

Julien


-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [twc] display and (re)calculate simple operations

2014-02-04 Thread julien23
are Math.floor Math.pow ... depending of a plugin I might not have ?

Le mardi 4 février 2014 13:23:10 UTC+1, julien23 a écrit :
>
> Thank you Eric
>
> I still have "108.95-84.72 = 24.234"
> I'll figure out why later
>
> Regards
>
> Julien
>
> Le mardi 4 février 2014 12:06:42 UTC+1, Eric Shulman a écrit :
>>
>> On Tuesday, February 4, 2014 1:18:02 AM UTC-8, julien23 wrote:
>>>
>>> I made this tiddler:
>>> [[calcTid]]
>>> $1
>>> And I call it with:
>>> [[test]]
>>> <>
>>> it works almost  fine : 24.234
>>>
>>> I wish I could
>>>
>>>- remove the extra 4
>>>- write litteraly 108.95-84.72=24.23 without writing twice the 
>>>operation like 
>>><>
>>>
>>> Try this:
>>
>> Change [[calcTid]] to:
>> /%
>> !out
>> $1=$2
>> !end
>> %/<> Math.pow(10,16) }}>>
>> then, to call it in [[test]], write:
>> <>
>>
>>
>> enjoy,
>> -e
>> Eric Shulman
>> TiddlyTools / ELS Design Studios
>>
>> YOUR DONATIONS ARE IMPORTANT!
>> HELP ME TO HELP YOU - MAKE A CONTRIBUTION TO MY "TIP JAR"...
>>http://TiddlyTools.github.com/fundraising.html#MakeADonation
>>
>> 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 unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/groups/opt_out.


[tw] Re: [twc] display and (re)calculate simple operations

2014-02-04 Thread julien23
Thank you Eric

I still have "108.95-84.72 = 24.234"
I'll figure out why later

Regards

Julien

Le mardi 4 février 2014 12:06:42 UTC+1, Eric Shulman a écrit :
>
> On Tuesday, February 4, 2014 1:18:02 AM UTC-8, julien23 wrote:
>>
>> I made this tiddler:
>> [[calcTid]]
>> $1
>> And I call it with:
>> [[test]]
>> <>
>> it works almost  fine : 24.234
>>
>> I wish I could
>>
>>- remove the extra 4
>>- write litteraly 108.95-84.72=24.23 without writing twice the 
>>operation like 
>><>
>>
>> Try this:
>
> Change [[calcTid]] to:
> /%
> !out
> $1=$2
> !end
> %/< Math.pow(10,16) }}>>
> then, to call it in [[test]], write:
> <>
>
>
> enjoy,
> -e
> Eric Shulman
> TiddlyTools / ELS Design Studios
>
> YOUR DONATIONS ARE IMPORTANT!
> HELP ME TO HELP YOU - MAKE A CONTRIBUTION TO MY "TIP JAR"...
>http://TiddlyTools.github.com/fundraising.html#MakeADonation
>
> 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 unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/groups/opt_out.


[tw] Re: [twc] display and (re)calculate simple operations

2014-02-04 Thread julien23
Thank you Eric

I slightly tuned your code

I made this tiddler:

[[calcTid]]
$1

And I call it with:

[[test]]
<>

it works almost  fine : 24.234

I wish I could

   - remove the extra 4
   - write litteraly 108.95-84.72=24.23 without writing twice the operation 
   like 
   <>
   
Regards

Julien

Le lundi 3 février 2014 15:15:26 UTC+1, julien23 a écrit :
>
> Hi all
>
> Is there a way to display and (re)calculate simple operations like 108.95 
> - 84.72 = 24.23 without the need of an external calculator ?
>
> Regards
>
> Julien
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/groups/opt_out.


[tw] [twc] display and (re)calculate simple operations

2014-02-03 Thread julien23
Hi all

Is there a way to display and (re)calculate simple operations like 108.95 - 
84.72 = 24.23 without the need of an external calculator ?

Regards

Julien


-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/groups/opt_out.


[tw] [TWC] retreive and write lines with a specific text

2014-01-22 Thread julien23
Hi All

I use TW for project managements.

In tiddlers I usually have have a Todo section like this.

!!Todo

JGBo > JBo > LCo : mécanique
JBo : spec accel
JBo > JBi : Lancer
JBo > JGBo : quartz




LCo JBo JBi and JGBo are people aliases

In ex. JBi's tiddler I have a FET that shows all JBi's actions : <>

<>

But it lakes clarity for the user because it shows all the Todo lines and 
not only the user's.

I whish I could find a way to write only the lines that contain ex. JBi and 
belong to the !!Todo chapter.

Could you please help me ?

Thank you

Julien

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/groups/opt_out.


[tw] [TWC] sorting mixed Type case

2013-12-23 Thread julien23
Hi All

I call the tiddler [FetAccronymsTagTag]  

<>

to sort a list of tiddlers by their alias.

I works but I get Upper Case first then Lower Case ... How do I get them 
together ?

Regards

Julien

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/groups/opt_out.


[tw] [TWC] how to display a txt file ?

2013-12-12 Thread julien23
Hi all

I have linked the MATLAB file defaultConstants.m to my TW :

[defaultConstants.m]
>
> !type
> application
> !file
> .\matlab\defaultConstants.m
>
> !Link
> <>
>

How can I display the defaultConstants.m content with code markup ?

> {{{
> file content
> file content file content
>
> file content
> }}}
>

Looking forward to read from you

Julien 

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/groups/opt_out.


[tw] Re: [TWC] how to get a tiddder's alias with $1

2013-12-05 Thread julien23
Hi all

Thank you for your help

WikifyPlugin
>
Not knowing when I will migrate to TW5 I prefer not rely too much on plugins

<>
>
would be fine but
- it does not take account of changes made to SomeTiddler until page is 
refresher.
- if there are alias duplicates there is a problem
I had the same problem using 
<>

Then I will use this one :

> <>
>
slightly modified :

> [[$2|$1]] (=<><>) 
>
to be more robust against alias duplicates

Thank all



Le mercredi 4 décembre 2013 22:24:05 UTC+1, Eric Shulman a écrit :
>
> On Wednesday, December 4, 2013 9:47:46 AM UTC-8, julien23 wrote:
>>
>> [[ADU]]
>>>
>> with this code inside :
>>
>>> [[$1|$1]] (=<><>> [[$1::valueUnit]]>>) 
>>>
>> and I call it in other tiddlers using :
>>
>>> <>
>>>
>> What code should à use in [[ADU]] to fetch the tiddler's alias ?
>>
> I made some try around
>
> store.getValue(tiddler,"alias")
>>>
>> but haven't found the correct syntax yet...
>>
>  
> Tiddler aliases are not a standard TWCore tiddler field, so I assume you 
> are using a plugin to add 'alias' as a custom field to your tiddlers. 
>  Using store.getValue(tiddler,"alias") lets you programmatically access the 
> custom field value from javascript code.  However, there is no TWCore 
> native method for *directly* inserting a custom field value into the 
> rendered tiddler display.
>
> However, if you don't mind installing another plugin, there is an approach 
> that may close to what you have in mind.
>http://www.TiddlyTools.com/#WikifyPlugin
> provides a simple macro that constructs and renders formatted output based 
> on specified macro parameter values.  Using this macro, you can insert the 
> custom field value directly into the displayed content in [[ADU]], like 
> this:
><> (=< [[$1::defaultValue]]>><>) 
>
> The first param of the <> macro is the output format using %0 as a 
> substitution marker.  In this example, it constructs a PrettyLink 
> ("[[...|...]]") from the value specified by the second param, which it 
> retrieves from the indicated "fieldname@tiddlername" (in this example, 
> using $1 to insert the tiddler name passed to [[ADU]]).
>
> If you prefer not to add WikifyPlugin to your document, you can use 
> *evaluated parameters* to invoke the necessary javascript code from the 
> calling <> macro... like this:
><>
> which will pass in the alias instead of the real tiddler title. 
>  However... for your specific use case, you may need to pass *both* the 
> real tiddler title and the alias... so that the slice references inside the 
> [[ADU]] tiddler will still work:
>< {{store.getValue("SomeTitle","alias")}}>>
> where [[ADU]] is modified to use $1 and $2 substitution markers:
>[[$2|$2]] (=<>< [[$1::valueUnit]]>>) 
> (this allows the alias to be displayed as the link, while still using the 
> actual tiddler title to retrieve slice values).
>
> enjoy,
> -e
> Eric Shulman
> TiddlyTools / ELS Design Studios
>
> EVERY DONATION IS IMPORTANT!
> HELP ME TO HELP YOU - MAKE A CONTRIBUTION TO MY "TIP JAR"...
>http://TiddlyTools.github.com/fundraising.html#MakeADonation
>
> 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 unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/groups/opt_out.


[tw] [TWC] how to get a tiddder's alias with $1

2013-12-04 Thread julien23
Hi all

Some of my tiddlers have values stored in table :

|~|value||h
> |defaultValue|4|
> |valueUnit|newtons|
> |valueType|...|
> |valueByteNumber|...|
>


I would like to write

> "alias" (="defaultValue""valueUnit)
>
in another tiddler.

I made for this a tiddler :

> [[ADU]]
>
 
with this code inside :

> [[$1|$1]] (=<><>) 
>

and I call it in other tiddlers using :

> <>
>


What code should à use in [[ADU]] to fetch the tiddler's alias ?


I made some try around

> store.getValue(tiddler,"alias")
>
but haven't found the correct syntax yet...

Looking forward to read from you

Julien 


 

 

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/groups/opt_out.


[tw] Re: [TWC] sort by defined slice using FET ?

2013-12-04 Thread julien23
Hi cmari

don't ask me why, but it worket out with

sortBy 'tiddler.title+"::valueByteNumber"' *descending*
>

regards

Julien

Le mercredi 4 décembre 2013 17:33:15 UTC+1, cmari a écrit :
>
> Hi Julien,
> You should be able to use
>
> sortBy 'tiddler.title+"::valueByteNumber"' ascending 
>
> or did I misunderstand what you want?
> cmari
>
> On Wednesday, December 4, 2013 6:48:18 AM UTC-8, julien23 wrote:
>>
>> Hi All
>>
>> I use ForEachTiddlerPlugin to build electronic communication 
>> characteristics specifications.
>>
>> value byte Number is stored in tiddlers :
>>
>> ... 
>>> |valueByteNumber|1,2|
>>> ...
>>>
>>
>>
>> ...
>>> |valueByteNumber|3|
>>> ...
>>>
>>
>> How do I get this tiddlers sorted by valueByteNumber with FET ?
>>
>> ...
>>> sortBy 
>>> store.getValue(tiddler,"alias")
>>> ascending
>>> ...
>>>
>>
>> Thank you
>>
>> Julien
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/groups/opt_out.


[tw] [TWC] sort by defined slice using FET ?

2013-12-04 Thread julien23
Hi All

I use ForEachTiddlerPlugin to build electronic communication 
characteristics specifications.

value byte Number is stored in tiddlers :

... 
> |valueByteNumber|1,2|
> ...
>


...
> |valueByteNumber|3|
> ...
>

How do I get this tiddlers sorted by valueByteNumber with FET ?

...
> sortBy 
> store.getValue(tiddler,"alias")
> ascending
> ...
>

Thank you

Julien

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/groups/opt_out.


[tw] Re: STP : not sur about hiding 'error when including ...'

2013-11-22 Thread julien23
Thank you Yakov

I give a try to your solution and will let you know about.

Regards

Julien

Le vendredi 22 novembre 2013 11:19:20 UTC+1, Yakov a écrit :
>
> Hello Julien,
>
> keep in mind that I don't read all the messages in TW group these days, so 
> to make sure your message don't get lost, you should either mail me about 
> the new thread (if it stays unanswered for a couple of days) or post in the 
> "main" thread [1] (which is easily found by keywords "new 
> SharedTiddlersPlugin").
>
> As for your problem,
>
> 1. the option you mentioned is used for conflicts warnings, not for the 
> error messages
> 2. because of what use I intended for STP, there's no such option for 
> error messages for now
> 3. as a quick solution, you can grab the source code [2], and try to:
> 3.1 in onError: function comment out the messaging (add // in the 
> beginning of the line containing displayAndLogMessage)
> 3.2 use the new code instead of STP
> 4. I recommend to report your progress with this, I'll probably include 
> the possibility to hide error messages in the next release (although, 
> currently I'm focused on other externsions, so unfortunately it won't 
> appear soon)
>
> Best regards,
> Yakov.
>
> [1] 
> https://groups.google.com/forum/#!searchin/tiddlywiki/new$20sharedtiddlersplugin/tiddlywiki/rQz8aDt76vQ/i86RrtAyB-UJ
> [2] 
> http://yakovl.bplaced.net/TW/STP/STP.html#SharedTiddlersPluginCode<http://www.google.com/url?q=http%3A%2F%2Fyakovl.bplaced.net%2FTW%2FSTP%2FSTP.html%23SharedTiddlersPluginCode&sa=D&sntz=1&usg=AFQjCNEAVSBuqb5iT6WZEHKKOmngkPOp3A>
>
> вторник, 19 ноября 2013 г., 18:26:18 UTC+4 пользователь julien23 написал:
>>
>> Hi all
>>
>> I use SharedTiddlersPlugin a lot to sync tiddlers through several 
>> projects.
>>
>>> <>
>>> <>
>>> <>> import:4>>
>>> <>> import:4>>
>>> <>> commerciaux]] " import:4>>
>>>
>>
>> Depending on users rights on folders some ca have a very big amount of 
>> errors ... which is not good for TW acceptation.
>>
>> I added
>>
>>> config.options.chkAlertOnSharedTiddlersConflicts=false;
>>>
>>>
>> to my [z_configOptions] but I am not sure it does the trick.
>>
>> Am I doing things wrong ?
>>
>> Thank-you
>>
>> Julien
>>
>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/groups/opt_out.


[tw] STP : how to fetch every tiddlers with an alias ?

2013-11-19 Thread julien23
Hi all

I use TiddlerAliasPlugin to assign short variables names to parameters or 
measurements.
I use SharedTiddlersPlugin to share information across projects.

We have specialties for bicycle design so most of the time I need the same 
variables and I wish I could share these acronyms across projects.

Is there way to have a centralized TW that fetch every tiddler with 
assigned alias from another TW ?

Thank you

Regards

Julien

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/groups/opt_out.


[tw] STP : not sur about hiding 'error when including ...'

2013-11-19 Thread julien23
Hi all

I use SharedTiddlersPlugin a lot to sync tiddlers through several projects.

> <>
> <>
> < import:4>>
> < import:4>>
> < commerciaux]] " import:4>>
>

Depending on users rights on folders some ca have a very big amount of 
errors ... which is not good for TW acceptation.

I added

> config.options.chkAlertOnSharedTiddlersConflicts=false;
>
>
to my [z_configOptions] but I am not sure it does the trick.

Am I doing things wrong ?

Thank-you

Julien


-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/groups/opt_out.


[tw] Re: [TWC] retrieve tiddler's tags tagged with a specific tag

2013-10-30 Thread julien23
Hi Mario

Sorry I don't understand your idea...
Can you please tell in detail ?

Purpose is having
|Company|[[APPLE]]|
somehow written automaticly in tiddlers tagged by company names  

regards

Julien

Le mercredi 30 octobre 2013 16:55:05 UTC+1, PMario a écrit :
>
> On Tuesday, October 29, 2013 12:56:55 PM UTC+1, julien23 wrote:
>>
>> Is there a way to retrieve and write tiddler's tags themselves tagged 
>> with a specific tag (here : Company)
>>
>
> http://tagsearch.tiddlyspot.com/ may be an option
> -mario 
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/groups/opt_out.


[tw] [TWC] retrieve tiddler's tags tagged with a specific tag

2013-10-29 Thread julien23
Hi all

Among other applications, I use TW for contact management : [Steeve] is 
tagged [APPLE] is tagged [Company]

Inside [Steeve] I have contact informations like

|Initials|SJo|
|Company|[[APPLE]]|

I have to write two times APPLE, which make my days exhausting...

Is there a way to retrieve and write tiddler's tags themselves tagged with 
a specific tag (here : Company)

Thank you

Julien

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [tw] alternatives to IntelliTaggerPlugin ? x-tagger!

2013-10-28 Thread julien23
I will triy them out, I'll let you know...

regards

Le vendredi 25 octobre 2013 21:21:11 UTC+2, Jan a écrit :
>
> Hi Julien, 
> Sorry, I confused the two tagging-Plugins tbGTD. The features described 
> above are in the x-taggerPlugin 
> http://tbgtd-deutsch.tiddlyspot.com/#x-tagger. 
>
> -J 
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/groups/opt_out.


[tw] alternatives to IntelliTaggerPlugin ?

2013-10-25 Thread julien23
Hi All

I have been using IntelliTaggerPlugin for a long time but I am looking for 
something lighter.

What alternatives would you recommend me ?

Thank you

Julien

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/groups/opt_out.


[tw] Re: TWC : how to write tiddler.title inside itself

2013-10-17 Thread julien23
Great

Thank you

There *is* support for FileDrop in modern browsers.  The plugin code need a 
> major overhaul to implement the new methods.  It *is* on my short list

good to know. Looking forward to it then

Regards

Julien 

Le mardi 15 octobre 2013 17:27:07 UTC+2, Eric Shulman a écrit :
>
> On Tuesday, October 15, 2013 6:08:06 AM UTC-7, julien23 wrote:
>
>> Because FileDropPlugin is broken, I manualy copy file location in a 
>> templateNewFile 
>> tiddler :
>>
>> !type
>> application
>> !file
>> ./copyLinkHere
>>
>> I would like to render something like
>> [[tiddler.title|tiddler.title]]
>>
>> for files or
>> [img[tiddler.title]]
>>
>> for pictures at the end of my template.
>> Syntax is obviously wrong. Can you please correct me?
>>
>
> Unfortunately, unlike evalutated parameters for macro syntax, there's no 
> direct mechanism for inserting javascript variable values (such as 
> "tiddler.title") into TidlyWiki wiki syntax. As a workaround, for inserting 
> the tiddler.title value into wiki syntax, you can use a <> macro 
> with an evaluated parameter to transclude the syntax from a tiddler with an 
> "embed marker" ($1, $2, $3, etc...), like this:
>
> First, create a tiddler called "ShowImageForTitle" (any name will do), 
> containing just
>[img[$1]]
>
> Next, in your 'attachment tiddler', instead of writing the [img[...]] 
> syntax directly, write:
><>
>
> Similarly, you could create a tiddler called ShowLinkForTitle, containing:
>[[$1|$1]]
> and then write:
><>
>  
>
>> ps : by the way ... no chance to have FileDropPlugin back in moderns 
>> browsers ?
>>
>
> There *is* support for FileDrop in modern browsers.  The plugin code need 
> a major overhaul to implement the new methods.  It *is* on my short list.
>
> enjoy,
> -e
> Eric Shulman
> TiddlyTools / ELS Design Studios
>
> HELP ME TO HELP YOU - MAKE A CONTRIBUTION TO MY "TIP JAR"...
>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 unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/groups/opt_out.


[tw] TWC : how to write tiddler.title inside itself

2013-10-15 Thread julien23
Hi all

Because FileDropPlugin is broken, I manualy copy file location in a 
templateNewFile 
tiddler :

!type
application
!file
./copyLinkHere

I would like to render something like
[[tiddler.title|tiddler.title]]

for files or
[img[tiddler.title]]

for pictures at the end of my template.

Syntaxe is obviously wrong. Can you please correct me?

Regards

Julien

ps : by the way ... no chance to have FileDropPlugin back in moderns 
browsers ?

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [tw] Re: can't save in Firefox (component returned failure code)

2013-09-27 Thread julien23
Hi 

I experienced the same message

[Exception... "Component returned failure code: 0x8052000e 
> (NS_ERROR_FILE_IS_LOCKED) [nsIFileOutputStream.init]"  nsresult: 
> "0x8052000e (NS_ERROR_FILE_IS_LOCKED)"  location: "JS frame :: 
> chrome://tiddlyfox/content/overlay.js :: TiddlyFox.saveFile :: line 98"  
> data: no]
>

with a fresh empty.html downloaded to a network samba folder

error did not occur with the very same file on a local partition...


Le mardi 27 août 2013 00:04:51 UTC+2, apie...@googlemail.com a écrit :
>
> hi to everybody, 
>
> right now it seems to work with tiddly fox extension alpha 3
>
>
>
> Am Donnerstag, 22. August 2013 01:30:26 UTC+2 schrieb 
> apie...@googlemail.com:
>>
>> hi, 
>>
>> right - it worked the first two times, when I opened it...
>>
>> Am Donnerstag, 22. August 2013 00:18:15 UTC+2 schrieb Jeremy Ruston:
>>>
>>> Hi Anne
>>>  
>>>
  today i run ccleaner and changed the options (auto save, but no 
 backups). at the beginning it worked, but at the third time I opened it - 
 it didn't. 

>>>
>>> But it worked the first two times you opened the file after running 
>>> ccleaner?
>>>  
>>>
 I have some firefox extensions, but i didn't change anything in the 
 last two weeks, but tiddly weeks stopped saving with no reason. thanks a 
 lot for your help!!! 

>>>
>>> Baffling - hopefully another user can confirm that Firefox 23 + 
>>> TiddlyFox1.0alpha18 + Windows 7 is working for them?
>>>
>>> Best wishes
>>>
>>> Jeremy
>>>
>>>  
>>>
>>> best, 
>>>
>>> anne 
>>>
>>> Am Montag, 19. August 2013 16:05:52 UTC+2 schrieb Jeremy Ruston:

 Hi Anne

 Did it used to work, and then stop working? Or has it never worked for 
 you?

 Do things work for you if you try to save with a new empty TiddlyWiki 
 file from tiddlywiki.com?

 It may also be worth checking if you've got other Firefox extensions 
 that might be interfering with the saving process.

 Best wishes

 Jeremy


 On Mon, Aug 19, 2013 at 8:55 AM,  wrote:

> is there anyone who has the same problem - don't know what to change...
>
>
>
> Am Mittwoch, 14. August 2013 20:59:20 UTC+2 schrieb 
> apie...@googlemail.com:
>
>> Well, the wiki is in my local dropbox folder, which i use at home and 
>> on my work pc. The folder is synchronized via the internet.
>>
>> Thanks a lot for your help,
>>
>> Anne
>>
>> Am Mittwoch, 14. August 2013 10:05:40 UTC+2 schrieb 
>> apie...@googlemail.com:
>>>
>>> Hi, 
>>>
>>> if I try to save the wiki, a window pops up: 
>>>
>>>
>>> [Exception... "Component returned failure code: 0x80520001 
>>> (NS_ERROR_FILE_UNRECOGNIZED_**PA**TH) [nsILocalFile.initWithPath]"  
>>> nsresult: "0x80520001 (NS_ERROR_FILE_UNRECOGNIZED_**PA**TH)"  
>>> location: "JS frame :: chrome://tiddlyfox/content/**ove**rlay.js :: 
>>> TiddlyFox.saveFile :: line 94"  data: no]
>>>
>>>
>>> Firefox-Version: 23 
>>> tiddlyfoxextension alpha18
>>> Windows 7 
>>> saved in Dropbox 
>>>
>>>
>>> has anybody any ideas - i am not a huge expert in  it-things, maybe 
>>> s.th. easy just has to be changed? 
>>>
>>> in advance thanks for your help! 
>>>
>>> anne 
>>>
>>  -- 
> You received this message because you are subscribed to the Google 
> Groups "TiddlyWiki" group.
> To unsubscribe from this group and stop receiving emails from it, send 
> an email to tiddlywiki+...@**googlegroups.com.
> To post to this group, send email to tiddl...@googlegroups.com.
>
> Visit this group at 
> http://groups.google.com/**group/tiddlywiki
> .
> For more options, visit 
> https://groups.google.com/**groups/opt_out
> .
>



 -- 
 Jeremy Ruston
 mailto:jeremy...@gmail.com
  
>>>
>>>
>>>
>>> -- 
>>> Jeremy Ruston
>>> mailto:jeremy...@gmail.com
>>>  
>>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/groups/opt_out.


[tw] Is there a plugin dedicated to planning ?

2013-09-09 Thread julien23
Hi All

I can't find an easy way to add "due date" to tiddlers in order to group 
them in a planning view.

For sure a plugin would do that.

Which on would you suggest ?

Thank you

Julien

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/groups/opt_out.


[tw] Re: TiddlerAliasPlugin : looking for tiddler.aliases to make a "acronyms and variables" table

2013-07-01 Thread julien23
One last before I definitely declare myself satisfied for ever ... or at 
least until tomorrow

I don't manage to have

> where
> '(store.getValue(tiddler,"alias") != undefined)' 
>

working properly

also tried

> != null)' 
> != 'undefined')'

!= "")'  
>

If one of you have more knowledge than I have luck :-)

Julien

Le lundi 1 juillet 2013 21:25:50 UTC+2, julien23 a écrit :
>
> Thank you Eric
>
> my final would be
>
> <> where
>> 'tiddler.tags.contains("$1")'
>> sortBy 
>>store.getValue(tiddler,"alias")
>>ascending
>> write
>> '"\n|"+store.getValue(tiddler,"alias")+"|"+tiddler.title+"|"
>> begin
>> '"|!acronym|!title|"'
>> >>
>>
>
> Good night all
>
> Le lundi 1 juillet 2013 20:42:43 UTC+2, Eric Shulman a écrit :
>>
>>write
>>
>>>'"|"+*tiddler.alias*+"|"+tiddler.title+"|\n"
>>> but *tiddler.alias* still send "undefined" to the table...
>>>
>>>
>> instead of tiddler.alias try store.getValue(tiddler,"alias") 
>>
>> enjoy,
>> -e
>> Eric Shulman
>> TiddlyTools / ELS Design Studios
>>
>> HELP ME TO HELP YOU - MAKE A CONTRIBUTION TO MY "TIP JAR"...
>>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 unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/groups/opt_out.




[tw] Re: TiddlerAliasPlugin : looking for tiddler.aliases to make a "acronyms and variables" table

2013-07-01 Thread julien23
Thank you Eric

my final would be

< where
> 'tiddler.tags.contains("$1")'
> sortBy 
>store.getValue(tiddler,"alias")
>ascending
> write
> '"\n|"+store.getValue(tiddler,"alias")+"|"+tiddler.title+"|"
> begin
> '"|!acronym|!title|"'
> >>
>

Good night all

Le lundi 1 juillet 2013 20:42:43 UTC+2, Eric Shulman a écrit :
>
>write
>
>>'"|"+*tiddler.alias*+"|"+tiddler.title+"|\n"
>> but *tiddler.alias* still send "undefined" to the table...
>>
>>
> instead of tiddler.alias try store.getValue(tiddler,"alias") 
>
> enjoy,
> -e
> Eric Shulman
> TiddlyTools / ELS Design Studios
>
> HELP ME TO HELP YOU - MAKE A CONTRIBUTION TO MY "TIP JAR"...
>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 unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/groups/opt_out.




[tw] Re: TiddlerAliasPlugin : looking for tiddler.aliases to make a "acronyms and variables" table

2013-07-01 Thread julien23
Hi FrD

Nice to learn about the "begin" feature I did not know about. I may specify 
that "begin" should be below "write".

<>

but *tiddler.alias* still send "undefined" to the table...

Thank you

Julien

Le lundi 1 juillet 2013 19:57:45 UTC+2, FrD a écrit :
>
> Hi,
>
> I would try something like :
>
> < where
> 'tiddler.tags.contains("$1")'
>begin
>'"|!acronym|!title|\n"'
>write
>    '"|"+*tiddler.alias*+"|"+tiddler.title+"|\n"'
>
>> >>
>
>
> FrD 
>
>
>
>
> Le lundi 1 juillet 2013 19:25:30 UTC+2, julien23 a écrit :
>>
>> Hi FrD,
>>  
>>
>>> Perhaps tiddler.alias would work ?
>>>
>>
>> sadly not ... undefined
>>
>> thanks
>>
>> Le lundi 1 juillet 2013 19:21:31 UTC+2, FrD a écrit :
>>>
>>> Hi julien,
>>>
>>> Perhaps tiddler.alias would work ?
>>>
>>> FrD
>>>
>>> Le lundi 1 juillet 2013 17:15:18 UTC+2, julien23 a écrit :
>>>>
>>>> Hi all
>>>>
>>>> I am getting started with TiddlerAliasPlugin.
>>>>
>>>> I would like to make a "acronyms and variables" table but I don't know 
>>>> how to get the correct syntaxe for something like "tiddler.aliases"
>>>>
>>>> I wish I could do something like this :
>>>>
>>>> <>>>> where
>>>>> 'tiddler.tags.contains("$1")'
>>>>>write 
>>>>>  '((index == 0) ? "|acronym|title|\n" : "\n")+"|"+*tiddler.aliases*
>>>>> +"|"+tiddler.title+"|"'
>>>>> >>
>>>>>
>>>>
>>>> Thank you for any help
>>>>
>>>> Julien
>>>
>>>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/groups/opt_out.




[tw] Re: TiddlerAliasPlugin : looking for tiddler.aliases to make a "acronyms and variables" table

2013-07-01 Thread julien23
Hi FrD,
 

> Perhaps tiddler.alias would work ?
>

sadly not ... undefined

thanks

Le lundi 1 juillet 2013 19:21:31 UTC+2, FrD a écrit :
>
> Hi julien,
>
> Perhaps tiddler.alias would work ?
>
> FrD
>
> Le lundi 1 juillet 2013 17:15:18 UTC+2, julien23 a écrit :
>>
>> Hi all
>>
>> I am getting started with TiddlerAliasPlugin.
>>
>> I would like to make a "acronyms and variables" table but I don't know 
>> how to get the correct syntaxe for something like "tiddler.aliases"
>>
>> I wish I could do something like this :
>>
>> <>> where
>>> 'tiddler.tags.contains("$1")'
>>>write 
>>>  '((index == 0) ? "|acronym|title|\n" : "\n")+"|"+*tiddler.aliases*
>>> +"|"+tiddler.title+"|"'
>>> >>
>>>
>>
>> Thank you for any help
>>
>> Julien
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/groups/opt_out.




[tw] TiddlerAliasPlugin : looking for tiddler.aliases to make a "acronyms and variables" table

2013-07-01 Thread julien23
Hi all

I am getting started with TiddlerAliasPlugin.

I would like to make a "acronyms and variables" table but I don't know how 
to get the correct syntaxe for something like "tiddler.aliases"

I wish I could do something like this :

< where
> 'tiddler.tags.contains("$1")'
>write 
>  '((index == 0) ? "|acronym|title|\n" : "\n")+"|"+*tiddler.aliases*
> +"|"+tiddler.title+"|"'
> >>
>

Thank you for any help

Julien

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/groups/opt_out.




[tw] RenameTagsPlugin feature request : change tagged tiddlers timestamp

2013-06-15 Thread julien23
I Simon

I use your RenameTagsPlugin a lot
http://mptw.tiddlyspot.com/#RenameTagsPlugin

I have issues with it when loadind tiddlers from a tw to another.
https://groups.google.com/d/topic/tiddlywiki/BFwXbitwz_U/discussion

Because RenameTagsPlugin does not change the timestamp to the tagged 
tiddlers, I can't see which tiddlers have been modified, and they are not 
pulled.

Would it be possible to add this to RenameTagsPlugin at least as an option ?

Looking forward to read from you

Julien

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/groups/opt_out.




[tw] Re: SharedTiddlersPlugin don't see changes on RenameTagsPlugin trigger

2013-06-15 Thread julien23
Thank you Yakov,

I'll ask to Simon then if anything can be changed to RenameTagsPlugin to 
have it change the timestamps.

Regards

Julien

Le jeudi 13 juin 2013 23:57:53 UTC+2, Yakov a écrit :
>
> Hi Julien,
>
> this actually doesn't seem to be connected with STP. Anyway,
>
> четверг, 13 июня 2013 г., 10:37:27 UTC+4 пользователь julien23 написал:
>>
>> I all
>>
>> here is an example of what happen to me :
>>
>> tw_a
>> tiddler1 is tagged plouf
>> tiddler2 is tagged tiddler1 and plouf
>>
>> both tiddlers are included in tw_b with:
>> <>
>>
>> if I rename in tw_a  tiddler1 to tiddler11, I am prompted to change tag 
>> in tiddler2, I accept that.
>>
>> You should then reload tw_a and see its content after these operations. 
> After that, you can understand whether there's some problem with STP (with 
> import), or with RenameTagsPlugin, or smth else.inside tw_a.
>  
>
>> Then on tw_b reload I am prompted for an update on tiddler11 but not 
>> tiddler2.
>>
>> Another thing is this: import:4 invites to update a tiddler if the 
> imported specimen's timestamp of modifying is bigger than that of the 
> specimen inside the including TW. It may occur that RenameTagsPlugin 
> doesn't change the timestamp of the tagged tiddlers when it modifies them 
> (I think that's actually the case).
>  
>
>> Do you experience this also ?
>>
>> Regards
>>
>> Julien
>>
>  
> By the way, a couple of recommendations:
> * add links to the plugin sources: other readers can have no idea what 
> plugins you're talking about (I don't know where RenameTagsPlugin is from; 
> although I can search, by adding such links you can save others' time)
> * I don't track the whole TiddlyWiki group very carefully, so if you 
> expect me to answer about STP, you should either mail me a link to the 
> thread or write smth in the main STP thread (I'm subscribed for the 
> comments).
>
> Best regards,
> Yakov.
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/groups/opt_out.




[tw] SharedTiddlersPlugin don't see changes on RenameTagsPlugin trigger

2013-06-12 Thread julien23
I all

here is an example of what happen to me :

tw_a
tiddler1 is tagged plouf
tiddler2 is tagged tiddler1 and plouf

both tiddlers are included in tw_b with:
<>

if I rename in tw_a  tiddler1 to tiddler11, I am prompted to change tag in 
tiddler2, I accept that.

Then on tw_b reload I am prompted for an update on tiddler11 but not 
tiddler2.

Do you experience this also ?

Regards

Julien

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




[tw] SharedTiddlersPlugin merge tags

2013-06-12 Thread julien23
I all

Is it possible to merge tags on import:4 ?

for example ...

I would like to keep my master TW
../airbank_tw/index.html
syncronized with 
http://yakovl.bplaced.net/TW/STP/STP.html/#SharedTiddlersPlugin
but want to keep my "AirbankBlankPackage" tag to it in order to spread over 
other TW with
<>

thank you

Julien

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




[tw] Re: plugin repository revived

2013-06-12 Thread julien23
Mat,

one of the intended key features for the Community 
space<http://community.tiddlyspace.com/>
> .
>
maybe, but not obvious ... what #Section of Community space are you talking 
about ?

David,

> difference between plugins in black text and plugins with purple
>
no difference, just a copy-paste artefact. I agree Intellitaggerplugin is 
fine so far.

Regards
 
 

Le mercredi 12 juin 2013 22:13:59 UTC+2, David Gifford a écrit :
>
> Hi Julien
>
> I don't know if there is a difference between plugins in black text and 
> plugins with purple text in your message, but for what it is worth I use 
> Intellitaggerplugin constantly and don't have any problem with it
>
> Dave
>
> On Wednesday, June 12, 2013 2:15:28 AM UTC-5, julien23 wrote:
>>
>> Hi all
>>
>> Here is an update after I did some testing with SharedTiddlersPlugin
>> https://groups.google.com/d/topic/tiddlywiki/rQz8aDt76vQ/discussion
>>
>> I did a public google spreadsheet.
>>
>> https://docs.google.com/spreadsheet/ccc?key=0AgsnfATVyIoUdHByT2xCSkNCRU5sZThNcUM1OVF5X1E&usp=sharing
>> feel free to populate
>>
>> AttachFilePlugin4.0.1
>> AttachFilePluginFormatters4.0.1
>> CopyTiddlerPlugin3.2.6
>> FileDropPlugin2.1.4   issue   
>> https://groups.google.com/d/topic/tiddlywiki/tfT2UNYxNt8/discussion
>> ForEachTiddlerPlugin1.0.8
>> ImageSizePlugin1.2.3
>> IntelliTaggerPlugin1.0.2
>> LineBreakHack0.2
>> LoadTiddlersPlugin3.9.0   issuesreplaced with : 
>> SharedTiddlersPlugin
>> NestedSlidersPlugin2.4.9
>> SharedTiddlersPlugin   2.1.0
>> RenameTagsPlugin3.0a
>> SaveCloseTiddlerPlugin3.0a
>> TiddlerTweakerPlugin    2.4.5
>> TiddlyLockPlugin1.2
>> YourSearchPlugin2.1.6
>> TiddlySnip   issue   
>> https://groups.google.com/d/topic/tiddlywiki/05tuXbtohNk/discussion
>>
>> Le mardi 14 mai 2013 17:49:49 UTC+2, julien23 a écrit :
>>>
>>> Hi Mario
>>>
>>> I didn't wanted that thread to be egocentric ! For dummies there is a 
>>> real need for a centralized pluginStore : TW is a time saver !
>>>
>>> but because you ask :) ... find below the plugins I rely on.
>>>
>>> Regards
>>>
>>> Julien
>>>
>>>- AttachFilePlugin4.0.1
>>>- AttachFilePluginFormatters4.0.1
>>>- CopyTiddlerPlugin3.2.6
>>>- FileDropPlugin2.1.4
>>>issue :
>>>- issue : 
>>>   https://groups.google.com/d/topic/tiddlywiki/tfT2UNYxNt8/discussion
>>>   - ForEachTiddlerPlugin1.0.8
>>>- ImageSizePlugin1.2.3
>>>- IntelliTaggerPlugin1.0.2
>>>- LineBreakHack0.2
>>>- LoadTiddlersPlugin3.9.0
>>>issues :
>>>- https://groups.google.com/d/topic/tiddlywiki/o4-ZDmzA2Vs/discussion
>>>   - 
>>>   https://groups.google.com/d/topic/tiddlywiki/-DQN6wvUsqU/discussion
>>>   - NestedSlidersPlugin2.4.9
>>>- RenameTagsPlugin3.0a
>>>- SaveCloseTiddlerPlugin3.0a
>>>- TiddlerTweakerPlugin2.4.5
>>>- TiddlyLockPlugin1.2
>>>- YourSearchPlugin2.1.6
>>>- TiddlySnip
>>>issue :
>>>- https://groups.google.com/d/topic/tiddlywiki/05tuXbtohNk/discussion
>>>   
>>>
>>>
>>>
>>> Le mardi 14 mai 2013 13:42:30 UTC+2, PMario a écrit :
>>>>
>>>> Hi Julien,
>>>> There is no plugin compatibility list. At least I don't know one :)
>>>>
>>>> If you tell us the plugins, that your "troublesome" plugins, we'll 
>>>> probably know a specific answer.
>>>>
>>>> -m
>>>>
>>>
>>>
>>>

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




[tw] SharedTiddlersPlugin merge tags

2013-06-12 Thread julien23
I all

Is it possible to merge tags on import:4 ?

for example:

I would like to keep my master TW
../airbank_tw/index.html

syncronized with 
**
http://yakovl.bplaced.net/TW/STP/STP.html/#SharedTiddlersPlugin

but want to keep my "AirbankBlankPackage" tag to it in order to spread over 
other TW with
<>

thank you

Julien

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




[tw] Re: plugin repository revived

2013-06-12 Thread julien23
Hi all

Here is an update after I did some testing with SharedTiddlersPlugin
https://groups.google.com/d/topic/tiddlywiki/rQz8aDt76vQ/discussion

I did a public google spreadsheet.
https://docs.google.com/spreadsheet/ccc?key=0AgsnfATVyIoUdHByT2xCSkNCRU5sZThNcUM1OVF5X1E&usp=sharing
feel free to populate

AttachFilePlugin4.0.1
AttachFilePluginFormatters4.0.1
CopyTiddlerPlugin3.2.6
FileDropPlugin2.1.4   issue   
https://groups.google.com/d/topic/tiddlywiki/tfT2UNYxNt8/discussion
ForEachTiddlerPlugin1.0.8
ImageSizePlugin1.2.3
IntelliTaggerPlugin1.0.2
LineBreakHack0.2
LoadTiddlersPlugin3.9.0   issuesreplaced with : 
SharedTiddlersPlugin
NestedSlidersPlugin2.4.9
SharedTiddlersPlugin   2.1.0
RenameTagsPlugin3.0a
SaveCloseTiddlerPlugin3.0a
TiddlerTweakerPlugin2.4.5
TiddlyLockPlugin1.2
YourSearchPlugin2.1.6
TiddlySnip   issue   
https://groups.google.com/d/topic/tiddlywiki/05tuXbtohNk/discussion

Le mardi 14 mai 2013 17:49:49 UTC+2, julien23 a écrit :
>
> Hi Mario
>
> I didn't wanted that thread to be egocentric ! For dummies there is a real 
> need for a centralized pluginStore : TW is a time saver !
>
> but because you ask :) ... find below the plugins I rely on.
>
> Regards
>
> Julien
>
>- AttachFilePlugin4.0.1
>- AttachFilePluginFormatters4.0.1
>- CopyTiddlerPlugin3.2.6
>- FileDropPlugin2.1.4
>issue :
>- issue : 
>   https://groups.google.com/d/topic/tiddlywiki/tfT2UNYxNt8/discussion
>   - ForEachTiddlerPlugin1.0.8
>- ImageSizePlugin1.2.3
>- IntelliTaggerPlugin1.0.2
>- LineBreakHack0.2
>- LoadTiddlersPlugin3.9.0
>issues :
>- https://groups.google.com/d/topic/tiddlywiki/o4-ZDmzA2Vs/discussion
>   - 
>   https://groups.google.com/d/topic/tiddlywiki/-DQN6wvUsqU/discussion
>   - NestedSlidersPlugin2.4.9
>- RenameTagsPlugin3.0a
>- SaveCloseTiddlerPlugin3.0a
>- TiddlerTweakerPlugin2.4.5
>- TiddlyLockPlugin1.2
>- YourSearchPlugin2.1.6
>- TiddlySnip
>issue :
>- https://groups.google.com/d/topic/tiddlywiki/05tuXbtohNk/discussion
>   
>
>
>
> Le mardi 14 mai 2013 13:42:30 UTC+2, PMario a écrit :
>>
>> Hi Julien,
>> There is no plugin compatibility list. At least I don't know one :)
>>
>> If you tell us the plugins, that your "troublesome" plugins, we'll 
>> probably know a specific answer.
>>
>> -m
>>
>
>
>

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




[tw] Re: plugin repository revived

2013-06-12 Thread julien23
Hi all

Here is an update after I did some testing with SharedTiddlersPlugin
https://groups.google.com/d/topic/tiddlywiki/rQz8aDt76vQ/discussion

I did a public google spreadsheet.
feel free to populate


   - AttachFilePlugin4.0.1
   - AttachFilePluginFormatters4.0.1
   - CopyTiddlerPlugin3.2.6
   - FileDropPlugin2.1.4
   issue :
   - issue : 
  https://groups.google.com/d/topic/tiddlywiki/tfT2UNYxNt8/discussion
  - ForEachTiddlerPlugin1.0.8
   - ImageSizePlugin1.2.3
   - IntelliTaggerPlugin1.0.2
   - LineBreakHack0.2
   - LoadTiddlersPlugin3.9.0
   issues
   replaced with : SharedTiddlersPlugin
   - NestedSlidersPlugin2.4.9
   - SharedTiddlersPlugin   2.1.0
   - RenameTagsPlugin3.0a


   - SaveCloseTiddlerPlugin3.0a
   - TiddlerTweakerPlugin2.4.5
   - TiddlyLockPlugin1.2
   - YourSearchPlugin2.1.6
   - TiddlySnip
   issue :
   - https://groups.google.com/d/topic/tiddlywiki/05tuXbtohNk/discussion
  



Le mardi 14 mai 2013 17:49:49 UTC+2, julien23 a écrit :
>
> Hi Mario
>
> I didn't wanted that thread to be egocentric ! For dummies there is a real 
> need for a centralized pluginStore : TW is a time saver !
>
> but because you ask :) ... find below the plugins I rely on.
>
> Regards
>
> Julien
>
>- AttachFilePlugin4.0.1
>- AttachFilePluginFormatters4.0.1
>- CopyTiddlerPlugin3.2.6
>- FileDropPlugin2.1.4
>issue :
>- issue : 
>   https://groups.google.com/d/topic/tiddlywiki/tfT2UNYxNt8/discussion
>   - ForEachTiddlerPlugin1.0.8
>- ImageSizePlugin1.2.3
>- IntelliTaggerPlugin1.0.2
>- LineBreakHack0.2
>- LoadTiddlersPlugin3.9.0
>issues :
>- https://groups.google.com/d/topic/tiddlywiki/o4-ZDmzA2Vs/discussion
>   - 
>   https://groups.google.com/d/topic/tiddlywiki/-DQN6wvUsqU/discussion
>   - NestedSlidersPlugin2.4.9
>- RenameTagsPlugin3.0a
>- SaveCloseTiddlerPlugin3.0a
>- TiddlerTweakerPlugin2.4.5
>- TiddlyLockPlugin1.2
>- YourSearchPlugin2.1.6
>- TiddlySnip
>issue :
>- https://groups.google.com/d/topic/tiddlywiki/05tuXbtohNk/discussion
>   
>
>
>
> Le mardi 14 mai 2013 13:42:30 UTC+2, PMario a écrit :
>>
>> Hi Julien,
>> There is no plugin compatibility list. At least I don't know one :)
>>
>> If you tell us the plugins, that your "troublesome" plugins, we'll 
>> probably know a specific answer.
>>
>> -m
>>
>
>
>

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




[tw] Re: New: SharedTiddlersPlugin (evolution of IncludePlugin)

2013-05-26 Thread julien23
Yakov,

your chain of component versions
>
Win7 pro X64 + Opera 12.15 X32 (fresh install) + TW 2.7.2 (fresh install) + 
STP 2.1.0
it also fails with
Nightly 24.0a1 X64 (fresh install)

folder structure :
file:///S:/capsule_prospect/empty.html
file:///S:/airbank_tw/empty.html

IncludeList
<>

Error when including '../airbank_tw/empty.html':

comment out the lines
>
same error :(


Le dimanche 26 mai 2013 01:58:28 UTC+2, Arc Acorn a écrit :
>
> My test:
> <>
> works fine:
> FireFox 24x64-Nightly, TW Core: 2.7.0 & 2.7.1, STP 2.1.0
>
> DOSE NOT work under:
> FFx32 - 20, 21, 22 or 23
>
> On Saturday, May 25, 2013 3:47:47 PM UTC-7, julien23 wrote:
>
>> Hi Yakov
>>
>> On my side ../ fails with STP 2.1.0 on Opera 12.15, FF21 and chrome 
>> 27.0.1453.94
>>
>> Looking forward for STP 2.2
>>
>> Thanks a lot
>>
>> Regards
>>
>> Julien
>>
>>
>> Le samedi 25 mai 2013 20:07:55 UTC+2, Yakov a écrit :
>>>
>>> Hi Julien,
>>>
>>> I've made a number of tests which is reported in the docs [1], "Detailed 
>>> reference" section, after the examples of different *url*s. In short, I 
>>> succeeded with including from "../some path" in Opera, Safari and IE but FF 
>>> and Chrome refused to work that way. I think I tested that in TW 2.6.0. As 
>>> for the TW 2.7.2, could you please test it with FF + STP 2.1.0 yourself? 
>>> I'll have a look and report when I release STP 2.2.0, but there's an amount 
>>> of work to do first..
>>>
>>> Best regards,
>>> Yakov.
>>>
>>> [1] http://yakovl.bplaced.net/TW/STP/STP.html#SharedTiddlersPluginInfo
>>>
>>> суббота, 25 мая 2013 г., 20:04:52 UTC+4 пользователь julien23 написал:
>>>>
>>>> Hi Yakov
>>>>
>>>> your example
>>>>
>>>>> <>
>>>>>
>>>> features a relative link to parent directory ../
>>>> did you finaly had it work ?
>>>> with FF or another browser ?
>>>>
>>>> Regards
>>>>
>>>> Julien 
>>>>
>>>> Le vendredi 3 mai 2013 13:57:46 UTC+2, Yakov a écrit :
>>>>>
>>>>> Hello all,
>>>>>
>>>>> today I'm proud to announce the brand new STP 2.0.0. In fact the 
>>>>> changes in functionality don't look that impressive, but introduction of 
>>>>> TwWeb required much coding and testing and will be fruitful in further 
>>>>> versions.
>>>>>
>>>>> So, what was changed?
>>>>>
>>>>> TwWeb -- is a system tracking TiddlyWikis (nodes) inside a virtual 
>>>>> "web". As for now, there's new
>>>>>
>>>>> <>
>>>>>
>>>>> macro. It adds a description of a node to the TwWeb; node names can be 
>>>>> than used in the <> macro like this:
>>>>>
>>>>> <>
>>>>>
>>>>> What advantage does this add? Currently, the main one is that 
>>>>> <> accounts the source of the tiddler it was handled in 
>>>>> which 
>>>>> allows to use relative paths only and painlessly move/rename nodes.
>>>>>
>>>>> For instance, if you put into the IncludeList
>>>>>
>>>>> <>
>>>>> <>
>>>>>
>>>>> and then put
>>>>>
>>>>> <>>>> "./extensions/someExtension.html">>
>>>>> <>>>> import:4>>
>>>>>
>>>>> to the CommonsHub, the latter include macro will be corretly treated 
>>>>> in the initial TiddlyWiki (with IncludeList), despite that the 
>>>>> "./extensions/someExtension.html" url is incorrect for it (correct one is 
>>>>> "./commons/extensions/someExtension.html").
>>>>>
>>>>> While this all sounds complicated, this already work for me quite well 
>>>>> and in future versions I'm going to implement at least links like [[link 
>>>>> text|tiddler name]]@nodeName which will require only <> 
>>>>> macro. For now, it is recommended to try <> and, ideally 
>>>>> make 
>>>>> all your <> macros use node names instead of url directly.
>>>>>
>>>>> ***
>>>>&

[tw] Re: New: SharedTiddlersPlugin (evolution of IncludePlugin)

2013-05-25 Thread julien23
Hi Yakov

On my side ../ fails with STP 2.1.0 on Opera 12.15, FF21 and chrome 
27.0.1453.94

Looking forward for STP 2.2

Thanks a lot

Regards

Julien


Le samedi 25 mai 2013 20:07:55 UTC+2, Yakov a écrit :
>
> Hi Julien,
>
> I've made a number of tests which is reported in the docs [1], "Detailed 
> reference" section, after the examples of different *url*s. In short, I 
> succeeded with including from "../some path" in Opera, Safari and IE but FF 
> and Chrome refused to work that way. I think I tested that in TW 2.6.0. As 
> for the TW 2.7.2, could you please test it with FF + STP 2.1.0 yourself? 
> I'll have a look and report when I release STP 2.2.0, but there's an amount 
> of work to do first..
>
> Best regards,
> Yakov.
>
> [1] http://yakovl.bplaced.net/TW/STP/STP.html#SharedTiddlersPluginInfo
>
> суббота, 25 мая 2013 г., 20:04:52 UTC+4 пользователь julien23 написал:
>>
>> Hi Yakov
>>
>> your example
>>
>>> <>
>>>
>> features a relative link to parent directory ../
>> did you finaly had it work ?
>> with FF or another browser ?
>>
>> Regards
>>
>> Julien 
>>
>> Le vendredi 3 mai 2013 13:57:46 UTC+2, Yakov a écrit :
>>>
>>> Hello all,
>>>
>>> today I'm proud to announce the brand new STP 2.0.0. In fact the changes 
>>> in functionality don't look that impressive, but introduction of TwWeb 
>>> required much coding and testing and will be fruitful in further versions.
>>>
>>> So, what was changed?
>>>
>>> TwWeb -- is a system tracking TiddlyWikis (nodes) inside a virtual 
>>> "web". As for now, there's new
>>>
>>> <>
>>>
>>> macro. It adds a description of a node to the TwWeb; node names can be 
>>> than used in the <> macro like this:
>>>
>>> <>
>>>
>>> What advantage does this add? Currently, the main one is that 
>>> <> accounts the source of the tiddler it was handled in which 
>>> allows to use relative paths only and painlessly move/rename nodes.
>>>
>>> For instance, if you put into the IncludeList
>>>
>>> <>
>>> <>
>>>
>>> and then put
>>>
>>> <>> "./extensions/someExtension.html">>
>>> <>> import:4>>
>>>
>>> to the CommonsHub, the latter include macro will be corretly treated in 
>>> the initial TiddlyWiki (with IncludeList), despite that the 
>>> "./extensions/someExtension.html" url is incorrect for it (correct one is 
>>> "./commons/extensions/someExtension.html").
>>>
>>> While this all sounds complicated, this already work for me quite well 
>>> and in future versions I'm going to implement at least links like [[link 
>>> text|tiddler name]]@nodeName which will require only <> 
>>> macro. For now, it is recommended to try <> and, ideally make 
>>> all your <> macros use node names instead of url directly.
>>>
>>> ***
>>>
>>> Other changes are:
>>>
>>> * <> macro got a new parameter: wikify, which causes 
>>> wikification of included tiddlers, obviously; <> macro is 
>>> now deprecated and throws alerts about it (it still works, but in the next 
>>> version I'm going to cut its functionality and leave the notification only).
>>> * some minor changes/fixes
>>> ** now STP works for me in FireFox and Android 4.0.3, looks like all the 
>>> "a.fetchTiddler is not fuction" issues had gone
>>> * major update of the documentation, new "Functionality and examples" 
>>> section will ease reading about functionality, without digging those 
>>> filters, priorities etc
>>> ** though, the new section is not very small and all the suggestions 
>>> about documentation are welcome
>>>
>>> Best regards,
>>> Yakov.
>>> --
>>> PS May be you don't know that you can subscribe for email notifications 
>>> about new comments in this thread; if you are interested to stay tuned, 
>>> check the popup button under the thread title (next to the "g+1" button).
>>>
>>> воскресенье, 16 декабря 2012 г., 2:42:51 UTC+4 пользователь Yakov 
>>> написал:
>>>>
>>>> Hello everybody,
>>>>
>>>> today I'd like to announce that the public release of SharedTiddlers 
>

[tw] Re: New: SharedTiddlersPlugin (evolution of IncludePlugin)

2013-05-25 Thread julien23
Hi Yakov

your example

> <>
>
features a relative link to parent directory ../
did you finaly had it work ?
with FF or another browser ?

Regards

Julien 

Le vendredi 3 mai 2013 13:57:46 UTC+2, Yakov a écrit :
>
> Hello all,
>
> today I'm proud to announce the brand new STP 2.0.0. In fact the changes 
> in functionality don't look that impressive, but introduction of TwWeb 
> required much coding and testing and will be fruitful in further versions.
>
> So, what was changed?
>
> TwWeb -- is a system tracking TiddlyWikis (nodes) inside a virtual "web". 
> As for now, there's new
>
> <>
>
> macro. It adds a description of a node to the TwWeb; node names can be 
> than used in the <> macro like this:
>
> <>
>
> What advantage does this add? Currently, the main one is that 
> <> accounts the source of the tiddler it was handled in which 
> allows to use relative paths only and painlessly move/rename nodes.
>
> For instance, if you put into the IncludeList
>
> <>
> <>
>
> and then put
>
> < "./extensions/someExtension.html">>
> < import:4>>
>
> to the CommonsHub, the latter include macro will be corretly treated in 
> the initial TiddlyWiki (with IncludeList), despite that the 
> "./extensions/someExtension.html" url is incorrect for it (correct one is 
> "./commons/extensions/someExtension.html").
>
> While this all sounds complicated, this already work for me quite well and 
> in future versions I'm going to implement at least links like [[link 
> text|tiddler name]]@nodeName which will require only <> 
> macro. For now, it is recommended to try <> and, ideally make 
> all your <> macros use node names instead of url directly.
>
> ***
>
> Other changes are:
>
> * <> macro got a new parameter: wikify, which causes wikification 
> of included tiddlers, obviously; <> macro is now deprecated 
> and throws alerts about it (it still works, but in the next version I'm 
> going to cut its functionality and leave the notification only).
> * some minor changes/fixes
> ** now STP works for me in FireFox and Android 4.0.3, looks like all the 
> "a.fetchTiddler is not fuction" issues had gone
> * major update of the documentation, new "Functionality and examples" 
> section will ease reading about functionality, without digging those 
> filters, priorities etc
> ** though, the new section is not very small and all the suggestions about 
> documentation are welcome
>
> Best regards,
> Yakov.
> --
> PS May be you don't know that you can subscribe for email notifications 
> about new comments in this thread; if you are interested to stay tuned, 
> check the popup button under the thread title (next to the "g+1" button).
>
> воскресенье, 16 декабря 2012 г., 2:42:51 UTC+4 пользователь Yakov написал:
>>
>> Hello everybody,
>>
>> today I'd like to announce that the public release of SharedTiddlers 
>> plugin is ready [1].
>>
>> In principle, almost everything, including an introduction, can be found 
>> in the repository.
>>
>> In two words: the plugin allows to
>> * see tiddlers from another tiddlywikis (as read-only) inside the "main" 
>> one
>> * share theme components (style sheets, templates: PageTemplate, 
>> ViewTemplate, EditTemplate, ToolbarCommands) which can be stored in one 
>> central TW
>> * do other things, including sharing evaluated transclusions like "toggle 
>> menus" engines from TiddlyTools [2] or "custom" ones (in fact, most of 
>> plugins can easily turned into evaluated transclusions, which will be 
>> described in the documentation later)
>>
>> Some major improvements since IncludePlugin [3]:
>> * now a set of tiddlers (defined by a filter) can be included instead of 
>> all tiddlers
>> * shadows and tiddlers can be "substituted" with the included tiddlers 
>> (they are not altered and if including is switched off, they remain the 
>> same as they were)
>> * a notification system for name conflicts is introduced
>> * elements of themes are now applied on load
>> * wikifyIncluded macro is introduced (see docs)
>> * simple "importing" engine is added
>> * slices are recalculated according to the presence of new tiddlers
>> * documentation on how to make plugins "include-aware" is added (and 
>> pieces of code that make abego plugins "include-aware" are removed from the 
>> main code)
>>
>> Feedback is welcome. Though, I'm rather slow in my development, so take 
>> this into account. Also, if you have some "basic" questions, please take a 
>> look at the docs first and let me know if I missed something there.
>>
>> Best regards,
>> Yakov.
>>
>> PS there are some plans for further development including
>> * evaluation system for plugins (to remove the need of making evaluated 
>> transclusions)
>> * aggregation tools for analysing data (search and other) among several 
>> TWs simultaneously (accounting name conflicts)
>> but I can't predict how soon I implement this.
>>
>> [1] http://yakovl.bplaced.net/TW/STP/STP.html
>> [2] http://www.tiddlytools.com/#ToggleLeftSidebar%20ToggleRightSidebar 
>> [3] htt

[tw] Re: New: SharedTiddlersPlugin (evolution of IncludePlugin)

2013-05-25 Thread julien23
Hi Yakov

* FF refuses to include TWs outside the folder where including TW is (no 
> relative paths with "../  ")
>
I am trying to replace LoadTiddlerPlugin that have the same issue.

Is it something you managed to go through with STP ?

I have read Eric managed this with TiddlyWiki version 2.7.2 BETA 1
>
> you can now  successfully import tiddler from files that are outside of 
> the current folder. 

https://groups.google.com/d/topic/tiddlywiki/W4_yyzmgeEA/discussion
>

Looking forward to read from you

Julien
 

Le lundi 11 mars 2013 18:42:43 UTC+1, Yakov a écrit :
>
> Hi Mat,
>
> so what's your result? Does STP work for you?
>
> In fact, the problems in FF have nothing to do with TiddlyFox, it had 
> problems with FF priveledge managment system. Recent versions of STP should 
> work fine (and elder ones work fine in TW 2.7.0+). However there are some 
> issues unsolved for FF:
>
> * for me, STP doesn't work in FF for Android in Android 4.0.3 (while it 
> works in Android 2.6.3)
> * FF refuses to include TWs outside the folder where including TW is (no 
> relative paths with "../  ")
> * once or twice I had problems in FF in Windows, but I can't reproduce 
> them now, even with the previous versions of STP
>
> Because of the first problem, I'll dig this anyway, but as I use FF in 
> Windows quite rarely, I'm not sure how soon (there are many more things to 
> with STP).
>
> Best regards,
> Yakov.
>
> понедельник, 11 марта 2013 г., 17:41:29 UTC+4 пользователь Mat написал:
>>
>> On Sunday, December 16, 2012 1:00:45 AM UTC+1, Yakov wrote:
>>>
>>> Almost forgot. Unfortunately, recent versions of FireFox cut the 
>>> including abilities of TiddlyWiki as well, while TiddlyFox solves only 
>>> saving issues, so with FF 17+ you probably wouldn't be able to use this 
>>> plugin unless Jeremy succeeds with such issues through TiddlyFox, or 
>>> another way to load files is found (by me or by others).
>>
>>
>> Does this still hold - ie. is it not possible to use on FF17+ and also 
>> not with TiddlyFox? Darn annoying how the browser creators change these 
>> things.
>>
>> Has anyone tested to share between different "forms" (for lack of better 
>> term) of TW's, ie between eg "local copy and tiddlyspot copy"? "local and 
>> tiddlyspace"? etc.
>>
>> Thank you!
>>
>> <:-)
>>
>

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




[tw] getting started with SharedTiddlersPlugin

2013-05-25 Thread julien23
Hi all

I am doing some test to replace LoadTiddlerPlugin with SharedTiddlersPlugin.

I want to import tiddlers
tagged AirbankBlankPackage
from the TW file:///S:/airbank_tw/index.html
to the TW file:///S:/capsule_prospect/index.html

I have made a new tiddler IncludeList with this line inside :
<>

I get the error
Error when including 'file:///S:/airbank_tw/index.html':

Could you please help me to fixe this out ?

both TW are v2.7.2 and I use FF21 with TiddlyFox 1.0alpha15

Thank you

Julien

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




[tw] Re: plugin repository revived

2013-05-24 Thread julien23
Hi Mario

Have you had the time to give a look to my troublesome plugins ?
Do you have any answers then ?

Thanks a lot

Julien

Le mardi 14 mai 2013 13:42:30 UTC+2, PMario a écrit :
>
> Hi Julien,
> There is no plugin compatibility list. At least I don't know one :)
>
> If you tell us the plugins, that your "troublesome" plugins, we'll 
> probably know a specific answer.
>
> -m
>

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




[tw] Re: TiddlySnip and Firefox 17 (with TiddlyFox)

2013-05-24 Thread julien23
Hi all

Is someone able to operate TiddlySnip in FF21?

regards

Julien

Le mardi 11 décembre 2012 10:36:34 UTC+1, TonG a écrit :
>
> Hi Julian, 
>
> TiddlySnip did work with Firefox up to version 16. After upgrading to 
> v17 TiddlySnip does not work anymore. 
> I hoped TiddlyFox would help, but it only works for standard TWs (at 
> least for me it works with all my TWs). But I think there must be a 
> solution by changing the TiddlySnip code like the TiddlyFox code. 
> Not being a programmer, I cannot do anything in that direction. 
>
> At the moment I'm using the Utilu Mozilla Firefox Collection 
> http://utilu.com/UtiluMFC/ 
> The latest version 1.0.9.2 contains versions ranging from v2 to v20 
> nightly build that can be used simultaneously, next to your "standard" 
> Firefox browser. 
> "Upgrading" has been switched off in these versions. 
> I installed v3.6 (the latest version without any problems with TW), 
> v16 (I use it for TiddlySnip) and v17 (as a "clean" installation of FF 
> for testing purposes). 
>
> Cheers, 
>
> Ton 
>
> On Dec 10, 7:21 pm, Julian Schütte  wrote: 
> > Did you get it working? Reinstalling does not help. 
> > At the onclick handler of the "Save" button in tiddler.xul, 
> > saveTiddlerWindow(loadedTW,tiddlerList,storeType), all three parameters 
> are 
> > null. 
> > 
> > Am Donnerstag, 29. November 2012 06:15:25 UTC+1 schrieb Corey S: 
> > 
> > 
> > 
> > 
> > 
> > 
> > 
> > 
> > 
> > > Reinstall? Then turn off updates. 
> > > FF is really cheezing me off with the 6 week version cycle. 
> > > I've held mine at v12. 
> > 
> > > On Wednesday, November 28, 2012 11:27:52 AM UTC-8, TonG wrote: 
> > 
> > >> Hi all, 
> > 
> > >> My TiddlySnip (with MaxVersion= "99.9") does not work anymore with FF 
> > >> 17 (Win 7 64-bit). 
> > >> Clicking the "Save" button in the "Preview snippet to save" window 
> has 
> > >> no effect. 
> > 
> > >> TiddlySnip did work with Firefox up to version 16. After upgrading to 
> > >> v17 (and installing the new TiddlyFox extension v1.0alpha7), 
> > >> TiddlySnip does not work anymore. 
> > >> Downgrading TiddlyFox to v1.0alpha6 did not help either. 
> > 
> > >> I suspect it has something to do with stricter security in Firefox. 
> > >> Any other ideas than downgrading Firefox to v16? 
> > 
> > >> Cheers, 
> > 
> > >> Ton 
>

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




[tw] Re: plugin repository revived

2013-05-14 Thread julien23
Hi Mario

I didn't wanted that thread to be egocentric ! For dummies there is a real 
need for a centralized pluginStore : TW is a time saver !

but because you ask :) ... find below the plugins I rely on.

Regards

Julien

   - AttachFilePlugin4.0.1
   - AttachFilePluginFormatters4.0.1
   - CopyTiddlerPlugin3.2.6
   - FileDropPlugin2.1.4
   issue :
   - issue : 
  https://groups.google.com/d/topic/tiddlywiki/tfT2UNYxNt8/discussion
  - ForEachTiddlerPlugin1.0.8
   - ImageSizePlugin1.2.3
   - IntelliTaggerPlugin1.0.2
   - LineBreakHack0.2
   - LoadTiddlersPlugin3.9.0
   issues :
   - https://groups.google.com/d/topic/tiddlywiki/o4-ZDmzA2Vs/discussion
  - https://groups.google.com/d/topic/tiddlywiki/-DQN6wvUsqU/discussion
  - NestedSlidersPlugin2.4.9
   - RenameTagsPlugin3.0a
   - SaveCloseTiddlerPlugin3.0a
   - TiddlerTweakerPlugin2.4.5
   - TiddlyLockPlugin1.2
   - YourSearchPlugin2.1.6
   - TiddlySnip
   issue :
   - https://groups.google.com/d/topic/tiddlywiki/05tuXbtohNk/discussion
  



Le mardi 14 mai 2013 13:42:30 UTC+2, PMario a écrit :
>
> Hi Julien,
> There is no plugin compatibility list. At least I don't know one :)
>
> If you tell us the plugins, that your "troublesome" plugins, we'll 
> probably know a specific answer.
>
> -m
>


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




[tw] plugin repository revived

2013-05-14 Thread julien23
Hi all

I know this subject has allready been discussed, I have been through again 
but most solutions seem outdated.

I am addicted to TW but lately some of my mandatory plugins don't work 
anymore. I don't really understand if it is because me or because of 
browsers policies.

Is there somewhere a comprehensive list of

   - is this plug in popular ?
   - is this plug in working with this or that browser ?
   - is this plug in still maintained ?

Thanks all

Julien

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




[tw] Re: Announcing TiddlyWiki version 2.7.2 BETA 1

2013-05-06 Thread julien23
Hi

Upgrade process worked fine.

I was exited to have the import feature back so I immediately triggered my 
sync scheme ... but it relies on LoadTiddlersPlugin that have to be fixed 
as well :(

Thank you anyway ... waiting for the futur


Le lundi 6 mai 2013 13:27:15 UTC+2, julien23 a écrit :
>
> Hi Eric
>
> Thank you for new version.
>
> I am very pleased too to have "import tiddler from files that are outside 
> of the current folder." back. Same as Måns, it gives me hope to have one 
> day your AttachFilePackage back too.
>
> Regards
>
> Julien
>
> Le samedi 4 mai 2013 08:44:07 UTC+2, Måns a écrit :
>>
>> Hi Eric
>>
>>>
>>> * Backstage>import: 
>>>   See https://github.com/TiddlyWiki/tiddlywiki/issues/116 
>>>
>>> Importing tiddlers now uses "FileReader" API whenever available 
>>> (currently supported by Chrome, Firefox 20+, etc.).  This new HTML5- 
>>> standard browser-based file I/O handling does not require any special 
>>> privileges or security permissions to read contents of files that you 
>>> interactively select from your local filesystem, and you can now 
>>> successfully import tiddler from files that are outside of the current 
>>> folder. 
>>>
>>
>> This is *GREAT* news :-)
>> It seems to work very well - thank you!
>>
>> I was wondering: Is there any chance that your  AttachFilePlugin could 
>> benefit from the same "FileReader" API?
>>
>> Cheers Måns Mårtensson
>>
>

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




[tw] Re: Announcing TiddlyWiki version 2.7.2 BETA 1

2013-05-06 Thread julien23
Hi Eric

Thank you for new version.

I am very pleased too to have "import tiddler from files that are outside 
of the current folder." back. Same as Måns, it gives me hope to have one 
day your AttachFilePackage back too.

Regards

Julien

Le samedi 4 mai 2013 08:44:07 UTC+2, Måns a écrit :
>
> Hi Eric
>
>>
>> * Backstage>import: 
>>   See https://github.com/TiddlyWiki/tiddlywiki/issues/116 
>>
>> Importing tiddlers now uses "FileReader" API whenever available 
>> (currently supported by Chrome, Firefox 20+, etc.).  This new HTML5- 
>> standard browser-based file I/O handling does not require any special 
>> privileges or security permissions to read contents of files that you 
>> interactively select from your local filesystem, and you can now 
>> successfully import tiddler from files that are outside of the current 
>> folder. 
>>
>
> This is *GREAT* news :-)
> It seems to work very well - thank you!
>
> I was wondering: Is there any chance that your  AttachFilePlugin could 
> benefit from the same "FileReader" API?
>
> Cheers Måns Mårtensson
>

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




[tw] tw5 drag and drop as link

2013-05-01 Thread julien23
Hi Jeremy

I used to be a fervent TW user but last browser's release have cut my 
mandatory plugins. And using a legacy FF 3.6.23 is fine to me but not to my 
employees nor our customers.

FileDropPlugin was one of them
https://groups.google.com/d/topic/tiddlywiki/tfT2UNYxNt8/discussion
So it is nice to see that dropping actually works on your 
http://five.tiddlywiki.com/ page.

Thank you for that.

Do you think it could give the option to embed a (relative?) link to the 
file instead of embedding the file itself ?

You maybe have a clean feature request process somewhere, but I can not 
find it.

Looking forward to read from you.

Julien

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




  1   2   3   >