[tw5] Re: How to create recurring tasks/events in TiddlyWiki?

2020-02-03 Thread J Mc
si
I'm not sure if this will help, but the ftlist tiddlywiki plugin can set 
ticklers (reminders) which can be repeated every Day, Month and Year and 
more.

https://btheado.github.io/tw-ftlist/#ticklers%20plugin

J Mc


On Wednesday, 18 December 2019 15:13:51 UTC, Mark S. wrote:
>
> I think I would consider pre-generating the list of event dates, and 
> storing them in a list field of your event. This would make it fairly 
> easily to check whether your Koffee Klatch will be meeting on August 5, 
> 2020.
>
> The downside of this approach, compared to Google, is that it needs to be 
> close-ended. Google can be open-ended because they've got massive computing 
> power and database tools, so they could figure out whether your Yoga 
> Pilates will clash with the Koffee Klatch in 2150 ... since you like to 
> plan ahead. All we have are some javascript-based tools and whatever 
> computing power your browser can muster.
>

-- 
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/b7b5d130-bf33-4bb2-b336-602091fd552e%40googlegroups.com.


[tw5] Re: Conditionally format output of $view widget

2020-01-16 Thread J Mc
Hello Sid,
you may be interested in Shiraz ToDos. It has a list with priority colours.

https://kookma.github.io/Shiraz/#ToDos

J Mc


On Wednesday, 15 January 2020 19:38:57 UTC, Sid wrote:
>
> Howdy! 
> I'm trying to customize with a plugin to show a to-do style list. Am 
> trying to conditionally format entries based on custom fields.
>
> My tiddlers that populate the list have a custom field 'priority'. I'd 
> like to render the HTML output so that the value of the *priority* field 
> is rendered based on their value. For example, (priority value) 'high' is 
> in red, while others 'medium' 'low' are different colors.
>
> Not sure how to do the above or use conditional operators in this case.
>
>
> !! Outstanding tasks
>
> <$list filter="[!has[draft.of]tag[task]!tag[done]sort[created]]">
>
> <$checkbox tag="done">
> <$link to={{!!title}}><$view field="title"/> <$view field=
> "priority"/> 
> <$view/>
> 
>
> 
>
>
>
> * New to Tiddlywiki programming syntax, so *any pointers to tutorials on 
> TW5 programming would be additionally helpful! *
>
> Thanks,
> Sid 
>

-- 
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/0dcb3c9d-3534-46e7-97d9-53a34b8aa58d%40googlegroups.com.


[tw5] Re: Question: A simple way to create a tiddler with many fields (on demand)

2020-01-09 Thread J Mc


On Thursday, 9 January 2020 19:45:44 UTC, Mohammad wrote:
>
>
> On Thursday, January 9, 2020 at 11:03:51 PM UTC+3:30, J Mc wrote:
>>
>> *Hi Mohammad*
>>
>> this is another excellent example of how to use TW.
>> Would it be possible to add tags and a tiddler type selection to the form?
>>
>>
>>
> Please have a look at 
> https://groups.google.com/d/msg/tiddlywiki/h9WI6UCPuJM/QbYywce3CAAJ
> The above code is used in Commander!
>
> Mohammad
>
>  
>
Many thanks. I will have a look.
>
 

> J Mc 
>

-- 
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/e7e61140-13ce-4ef9-b41f-9c6fbdc12420%40googlegroups.com.


[tw5] Re: Question: A simple way to create a tiddler with many fields (on demand)

2020-01-09 Thread J Mc
*Hi Mohammad*

this is another excellent example of how to use TW.
Would it be possible to add tags and a tiddler type selection to the form?


I added an example in the post below, that you may be interested in.

https://groups.google.com/forum/#!topic/tiddlywiki/c8HZhq74JdQ



On Thursday, 9 January 2020 08:22:31 UTC, Mohammad wrote:
>
> I have created the below interface to create a tiddler with many fields!
> The field name and value pairs are collected from variable number of input 
> boxes
>
> While this work seamlessly I am looking for a simpler code!
>
>
> To give a try go to tiddlywiki.com create a new tiddler and paste the 
> below code!
>
>
> \define createMyTiddler()
> <$vars newTitle={{{ [get[text]] }}}>
> <$wikify name=flt text={{{ [indexes[]count[]] }}}> 
> <$list filter=<> variable="cnt">
> <$action-setfield $tiddler=<> 
>  $field={{{ [getindex]  }}} 
>  $value={{{ [getindex] }}} />
> 
> 
> 
>
> \end
>
>
> \define datafieldsTid()   $:/temp/sample
> \define newtiddlerdName() $:/temp/tidName
> \define myfilter() [range[1,$(flt)$]]
> \define id_fldName()   fldn$(cnt)$
> \define id_fldValue()  fldv$(cnt)$
>
> \define create-records()
> <$wikify name=flt text={{{ [get[counter]]~[[1]] }}}>
> <$list filter=<> variable=cnt>
>
> <>
> 
> 
> \end
>
> \define getInputs()
> <$edit-text tiddler=<> index=<>  tag=input  
> default="" placeholder="field name"/>
> <$edit-text tiddler=<> index=<> tag=input  
> default="" placeholder="field value"/>
> \end
>
>
> 
>
> <$button>add
> <$action-setfield $tiddler=<> 
> counter={{{[get[counter]add[1]]~[[2]]}}}/>
> 
> <$button>reset
> <$action-setfield $tiddler=<> counter="1"/>
> <$action-setfield $tiddler=<> text=""/>
> <$action-setfield $tiddler=<> text=""/>
> 
>
> Number of records: <$count filter="[indexes[]]" />
> Counter: <$transclude tiddler=<> field="counter"/>
>
>
> <>
>
> <$edit-text tiddler=<> field=text tag=input default="" 
> placeholder="new title"/>
>
> <$button actions="">Create Tiddler
> <>
> 
>
>
>
>

-- 
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/2a800dac-ec32-4e8f-ac9f-cd3a2b178992%40googlegroups.com.


[tw5] Re: How to add fields to new-journal?

2020-01-08 Thread J Mc


> HC Haase,
>
 
Replace the shadow tiddler  $:/core/ui/Buttons/new-journal with the 
contents of attached file 

$:/core/ui/Buttons/new-journal-with-exercise field

\define journalButton()
<$button class=<> tooltip="New Journal">
<$action-sendmessage $message="tm-new-tiddler" $param=<> tags="Journal" exercise=""/>
<$list filter="[prefix[yes]]">
{{$:/core/images/new-journal-button}}


\end
<>

-- 
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/9e6bcff4-0e77-495a-9c91-89d68b625533%40googlegroups.com.


$__core_ui_Buttons_new-journal-with-exercise field.tid
Description: Binary data


[tw5] Re: Editing TiddlyWiki files on Android

2019-04-15 Thread J Mc
Hi FrD,
I am using the WebDAV server on my android tablet and phone and it works well 
with Tiddlywiki.
I am trying to link to PDF files using _canonical_uri field but I  can't seem 
to open the file.
My WebDAV settings point to localhost:8080 and Home Directory of 
/mnt/sdcard/docroot.
In docroot the file is my file.pdf
If I use a subdirectory such as docroot/pdf or similar setup on ext sdcard the 
same thing happens. 
It may be the path which is the problem as the pdf opens when I link to it in 
the browser address bar
Can you shed any light on this problem please.
Thanks
J Mc

-- 
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/e1ba6844-2da6-413d-97ca-da9138e64df3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: free host with ability to add a Google Domains domain, secure https pw?

2018-10-28 Thread J Mc
Thanks Tony.
I'm going on holiday, so I don't know when I'll be able to take this 
further.
I'll try and keep an eye on your or anyone else's comments.
J Mc

On Sunday, 28 October 2018 03:59:56 UTC, TonyM wrote:
>
> J Mc
>
> If you look closely at the instructions you will see the solid server can 
> or is installed in node js if I am correct, and node js can be installed on 
> variouse platforms. 
>
> However I subscribed to the free solid conmunity account. Keep in mind 
> that noteself can be put anywhere on line and changes are only saved in the 
> browser unless you configure a couch db, so you need to host it, but not 
> for saving. 
>
> I will continue researching it.
>
> Regards
> Tony
>
>

-- 
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/659ab527-aadb-4cd6-a8db-6078daa54d5d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Re: free host with ability to add a Google Domains domain, secure https pw?

2018-10-27 Thread J Mc
Hi Tony,
thanks for setting up the Noteself TiddlyWiki, I'll have a play with it.
How easy was the set up process.
You mention servers, but as I understand it from my brief look at Solid, 
you can run your own servers.
There is an Example install: Solid Server on Debian GNU/Linux but I don't 
have Linux at present just windows.
https://solid.inrupt.com/docs/installing-running-nss
J Mc

On Saturday, 27 October 2018 03:19:59 UTC+1, TonyM wrote:
>
> I have created a Public install of an empty Noteself tiddlywiki, I any one 
> wants a play?
>
> https://psat.solid.community/public/TiddlyWiki/NoteSelf.html
>
> It only saves in your browser session
>
> Regards
> Tony
>
> On Saturday, October 27, 2018 at 12:36:03 PM UTC+11, TonyM wrote:
>>
>> JMC,
>>
>> Thanks for that reference, interesting. It may not be relevant to 
>> multi-use (for update) cases as we need a server to deal with multi-user 
>> contention.
>>
>> It is however an interesting  initiative, which I am yet to clarify how 
>> it differs from other cloud storage.
>>
>> I respect Tim Berners-lee but I also see his name used is a marketing way 
>> too often, this seems however to be something of his.
>>
>> Regards
>> Tony
>>
>>
>> On Friday, 26 October 2018 22:23:21 UTC+11, J Mc wrote:
>>>
>>> I'm not sure if this is relevant, but I hope someone else could look 
>>> into this as a hosting option. It mentions hosting (pods) and servers 
>>> (running Node Solid Server).
>>> i presume that you could install Bob on the server.
>>>
>>> The Evolution of* Solid* 
>>>
>>> Why the inventor of the World Wide Web needs to change the world, again.
>>>
>>>
>>> https://solid.inrupt.com/about
>>>
>>>
>>> Welcome to *Solid* 
>>>
>>> Solid was created by the inventor of the World Wide Web,* Sir Tim 
>>> Berners-Lee.* Its mission is to reshape the web as we know it. Solid 
>>> will foster a new breed of applications with capabilities above and beyond 
>>> anything that exists today.
>>>
>>>
>>> https://solid.inrupt.com/
>>>
>>> Your pod is your personal storage space 
>>>
>>> *Store anything you want in your own Solid POD.* PODs are like secure 
>>> USB sticks for the Web, that you can access from anywhere. When you give 
>>> others access to parts of your POD, they can react to your photos and share 
>>> their memories with you. You decide which things apps and people can see.
>>>
>>> *Think of your Solid POD as your own private website*, except that your 
>>> data interoperates with all your apps, which means you have your own 
>>> personal API to go along with it. When you post comments or videos online, 
>>> your friends can view them with whatever app they like, such as an album 
>>> viewer or a social feed. It’s your data, that can be shaped in any way or 
>>> form.
>>>
>>> You can have as many PODs as you like, and they live on Solid enabled 
>>> Web servers. Install the Solid Server 
>>> <https://solid.inrupt.com/docs/installing-running-nss> on your own 
>>> server at your home or workplace, or Get a Solid POD 
>>> <https://solid.inrupt.com/get-a-solid-pod> from a listed provider.
>>>
>>> https://solid.inrupt.com/how-it-works
>>>
>>> Installing and running Node Solid Server 
>>> <https://solid.inrupt.com/docs/installing-running-nss> 
>>>
>>> The primary implementation offered of Solid is written in Javascript 
>>> based on Node.js <https://nodejs.org/>. It should run on versions later 
>>> than version 8. It is being developed on Github 
>>> <https://github.com/solid/node-solid-server> and is released with the 
>>> liberal MIT license to NPM <https://www.npmjs.com/package/solid-server>. 
>>> To give it a spin, you can download Node.js, including npm, and get it 
>>> running quickly. We have an extensive module README 
>>> <https://github.com/solid/node-solid-server#install> that provides an 
>>> overview of the many options of the server and is very useful a development 
>>> environment. For a simple single-user production installation, we provide 
>>> an example for Debian systems:
>>>
>>> https://solid.inrupt.com/docs/installing-running-nss
>>>
>>> Regards,
>>> jmc
>>>
>>>
>>>
>>>
>>>
>>> On Thursday, 18 October 2018 16:19:44 U

[tw5] Re: free host with ability to add a Google Domains domain, secure https pw?

2018-10-26 Thread J Mc
I'm not sure if this is relevant, but I hope someone else could look into 
this as a hosting option. It mentions hosting (pods) and servers (running 
Node Solid Server).
i presume that you could install Bob on the server.

Welcome to *Solid* 

Solid was created by the inventor of the World Wide Web,* Sir Tim 
Berners-Lee.* Its mission is to reshape the web as we know it. Solid will 
foster a new breed of applications with capabilities above and beyond 
anything that exists today.


https://solid.inrupt.com/

Your pod is your personal storage space 

*Store anything you want in your own Solid POD.* PODs are like secure USB 
sticks for the Web, that you can access from anywhere. When you give others 
access to parts of your POD, they can react to your photos and share their 
memories with you. You decide which things apps and people can see.

*Think of your Solid POD as your own private website*, except that your 
data interoperates with all your apps, which means you have your own 
personal API to go along with it. When you post comments or videos online, 
your friends can view them with whatever app they like, such as an album 
viewer or a social feed. It’s your data, that can be shaped in any way or 
form.

You can have as many PODs as you like, and they live on Solid enabled Web 
servers. Install the Solid Server 
 on your own server 
at your home or workplace, or Get a Solid POD 
 from a listed provider.

https://solid.inrupt.com/how-it-works

Installing and running Node Solid Server 
 

The primary implementation offered of Solid is written in Javascript based 
on Node.js . It should run on versions later than 
version 8. It is being developed on Github 
 and is released with the 
liberal MIT license to NPM . To 
give it a spin, you can download Node.js, including npm, and get it running 
quickly. We have an extensive module README 
 that provides an 
overview of the many options of the server and is very useful a development 
environment. For a simple single-user production installation, we provide 
an example for Debian systems:

https://solid.inrupt.com/docs/installing-running-nss

Regards,
jmc





On Thursday, 18 October 2018 16:19:44 UTC+1, John Benjamin wrote:
>
> I need a free way to host TW5, editable in browser and uploaded with 
> tiddlyspot saver plugin, but secure password https, and I need a way to do 
> it freely. Any ideas? With Github pages you have to use a different editor 
> than edit directly as website. TiddlySpot doesn't have custom domain adding 
> support of Google Domains and no secure password. Please help find a way to 
> do it freely.
>

-- 
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/549d3737-a695-4613-886e-fc7b055d4f84%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How to build recurring tasks in existing tiddlers?

2018-01-15 Thread J Mc
Hi Surya and Birthe,

have you seen G Comments, by MAT, it uses Google Forms to add  comments to 
tiddlers.

http://gcomments.tiddlyspot.com/

The discussion is below
https://groups.google.com/forum/#!searchin/tiddlywiki/G$20Comments%7Csort:date/tiddlywiki/QcTOJCVXkDw/yawPkieNDwAJ

J Mc



On Sunday, 14 January 2018 19:33:46 UTC, Birthe C wrote:
>
> Hi Surya,
>
> Jed experimented with several solution possibilities, the thread is here: 
> https://groups.google.com/d/msg/tiddlywiki/msDS-4x8Qms/b1yS55pqNDIJ
>
> Birthe
>
>
> Den søndag den 14. januar 2018 kl. 19.53.40 UTC+1 skrev Surya:
>>
>> Hello Birthe,
>>
>> I just read about the comment-feature of Jed Carty. He writes "This 
>> requires you to have access to a server with PHP".
>> Hmmm, that overstrains me
>> I am not such a computer freak Only a power enduser ;-)
>>
>> Maybe one time
>>
>> Surya
>>
>

-- 
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/035c95c9-0c11-46b6-b75b-2ac2bdf17d87%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Presenting: field value selector

2018-01-13 Thread J Mc
Mat,
While I think this is a very useful feature, I can't get it to work with 
any other fields in my tiddlers.
Can you put an example on Tiddlyspot or give some help please
J Mc

On Tuesday, 26 September 2017 01:01:05 UTC+1, TonyM wrote:
>
> Mat,
>
> Thanks, for this. Personally I think this is an essential feature. It is 
> some what related to my comments on Fields as first class citizens 
> https://groups.google.com/forum/?hl=en#!msg/tiddlywikidev/iw59ThjJID8/bQoqHJNtBAAJ;context-place=forum/tiddlywikidev
>
> Great work
> Tony
>
>
>
> On Sunday, September 24, 2017 at 2:53:55 AM UTC+10, Mat wrote:
>>
>> *TWaddle Global Enterprises Incorporated Limited International Multisuper* 
>> presents 
>> the...
>>
>> field value selector <http://fieldvalueselector.tiddlyspot.com/>
>>
>> a drop down to select *field value* when creating new field
>>
>>
>> This is just a *small* tool for *wikitext developers*. Not very sexy for 
>> the general user.
>>
>> Similar to the "new field name" dropdown, this shows a dropdown listing 
>> existing *field values* for that field name.
>>
>> The incentive to create this was the *list-before* and *list-after* 
>> fields - it is frustratingly impossible to remember the title names to fill 
>> in. In the process of solving this, I made the dropdown general to handle 
>> values for all fields.
>>
>> This does NOT overwrite any shadow tids - but the cost is that the little 
>> arrow appears below the "new field" area, rather than integrated into 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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/57617285-b334-4b90-8571-570a6dda555a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] [NEW plugin] TW5 Search and Replace

2017-03-22 Thread J Mc
Danielo,

That's what was wrong. I didn't notice the space after the z.
It worked perfectly.
Thank you very much. This will save me quite a lot of time preparing this 
and other such lists.
Best regards,

J Mc

On Wednesday, 22 March 2017 15:16:47 UTC, Danielo Rodríguez wrote:
>
> Dear J Mc,
>
> You are probably missing the whitespace between the braces. Note the 
> regular expression is ([A-z ]+), with a space after the z
>
>
>

-- 
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/74f7c4f6-6b83-4d94-a10e-39fb78833187%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] [NEW plugin] TW5 Search and Replace

2017-03-22 Thread J Mc
Hi Danielo,
I have tried the regular expression suggested in your screenshot, but it 
does not work. It is close, but not exactly as I need it.

The results is as shown below.

[[Abbey]] [[Close]]
[[Abbey]] [[Lane]]
[[Abbey]] [[Mount]]
[[Abbey]] [[Strand]]
[[Abbey]] [[Street]]

The result that I need is as shown below. (Please note the blank lines in 
between each street name).


[[Abbey Close]]

[[Abbey Lane]]

[[Abbey Mount]]

[[Abbey Strand]]

[[Abbey Street]]

Thanks for your help.
J Mc

On Wednesday, 22 March 2017 11:59:54 UTC, Danielo Rodríguez wrote:
>
> Hello J Mc,
>
> You should be able to get wat you want making use of the regular 
> expression feature.
>
> Hope the following screenshots helps you, let me know if it does not:
>
>
> <https://lh3.googleusercontent.com/-zjoDMS4fpWE/WNJnLRsZhUI/V6o/Bvlr_AbuN90g2V2oa-z9wal6l6LOEjRdACLcB/s1600/Captura%2Bde%2Bpantalla%2B2017-03-22%2B12.58.25.png>
>
>
> El martes, 21 de marzo de 2017, 20:43:46 (UTC+1), J Mc escribió:
>>
>> Hi Danielo,
>> I have tried your searchNreplace plugin but can't get it to work.
>> I have a large list of street names which I need to enclose in square 
>> brackets and need to separate with a blank line so that I can create new 
>> tiddlers from a list.
>> I can search for \n and replace this [[ but can't put the closing ]] 
>> brackets in place.
>> If I have a list such as below,
>>
>> Abbey Close
>> Abbey Lane
>> Abbey Mount
>> Abbey Strand
>> Abbey Street
>>
>>
>> how do I achieve the following
>>
>> [[Abbey Close]]
>>
>> [[Abbey Lane]]
>>
>> [[Abbey Mount]]
>>
>> [[Abbey Strand]]
>>
>> [[Abbey Street]]
>>
>> Any help you could offer would be great much appreciated.
>>
>> Thanks,
>>
>> J Mc
>>
>> On Monday, 13 April 2015 07:09:27 UTC+1, Danielo Rodríguez wrote:
>>>
>>> Please can you point to the code?
>>>>
>>>
>>> Hello Jeremy,
>>>
>>> Sorry,the code that does the replacement is here:
>>>
>>>
>>> https://github.com/danielo515/TW5-searchNreplace/blob/master/searchNreplacewiki/plugins/searchNreplace/daemons/replace-daemon.js
>>>  
>>>
>>

-- 
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/0836f371-ab46-4eaf-ac0b-ed17efacfc2e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] [NEW plugin] TW5 Search and Replace

2017-03-21 Thread J Mc
Hi Danielo,
I have tried your searchNreplace plugin but can't get it to work.
I have a large list of street names which I need to enclose in square 
brackets and need to separate with a blank line so that I can create new 
tiddlers from a list.
I can search for \n and replace this [[ but can't put the closing ]] 
brackets in place.
If I have a list such as below,

Abbey Close
Abbey Lane
Abbey Mount
Abbey Strand
Abbey Street


how do I achieve the following

[[Abbey Close]]

[[Abbey Lane]]

[[Abbey Mount]]

[[Abbey Strand]]

[[Abbey Street]]

Any help you could offer would be great much appreciated.

Thanks,

J Mc

On Monday, 13 April 2015 07:09:27 UTC+1, Danielo Rodríguez wrote:
>
> Please can you point to the code?
>>
>
> Hello Jeremy,
>
> Sorry,the code that does the replacement is here:
>
>
> https://github.com/danielo515/TW5-searchNreplace/blob/master/searchNreplacewiki/plugins/searchNreplace/daemons/replace-daemon.js
>  
>

-- 
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/6bce6e1a-9176-4790-b211-803aca4226dc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5: New Tiddler From Button With Custom User Fields Added

2017-03-15 Thread J Mc
Hi tdymon,
I think this topic might be what you need.
https://groups.google.com/forum/#!searchin/tiddlywiki/EditTemplate$2Fdrop-fields%7Csort:relevance/tiddlywiki/1eVLcslhmLM/CognfvIZIysJ
J Mc

On Wednesday, 15 March 2017 07:04:33 UTC, tdymon...@gmail.com wrote:
>
> I'm a long time user of classic TiddlyWiki, but am new to TW5.  I'm trying 
> to create buttons for different journal types, e.g., personal, fitness, 
> food.  I've used the existing documentation I could find on tiddlywiki.com 
> and this forum to successfully create the button that creates the new 
> journal tiddler with the title I want, which is a journal type specific 
> prefix to the current date and time, and tags.  The generated tiddlers are 
> automatically opened for editing.
>
> I'm having a bit of difficulty adding custom fields to the button 
> generated new tiddlers.  What i'm wanting is for the custom fields to 
> appear, along with their pre-assigned values, in the newly generated 
> tiddlers that are open for editing.  I don't want to have to add the custom 
> fields and values manually after creation or saving.  In other words, to 
> create an entry in the journal I only want to have to hit the New Journal 
> button (for the desired journal type), type the text of the entry and hit 
> save without having to do anything else.
>
> For instance:
>
> Title: Fitness-MMDDHHMMSS
> Tags: Journal, Additional Tags...
> Text: empty
>
> Which is working at this point.  But I also want custom user fields:
>
> journal-type: (E.G., personal, fitness,
> journal-part: (E.G., segment, entry)
> year: 2017
> month: 03
> day: 14
>
> Which I can't figure out how to do.
>
> I've tried using the $fieldmangler and action-setfield within the button 
> code, to no effect.  It doesn't add any fields the the newly created and 
> opened for editing tiddler.
>
> I've spent hours on this forum searching for an answer, as well as a lot 
> of additional hours on Google searching, but to no avail. Any help or 
> directions to help would be greatly appreciated.
>
> Ultimately, my goal is to use the custom fields to automatically add the 
> entries of the journals into the TOC, which I'm doing now with tags, with a 
> hierarchy of journal type, year, month and day, in order to alleviate the 
> amount of bloat to my tags.  However, for right now, I'll just be happy to 
> get the code for the new journal buttons working correctly.
>
> Below is the current code for the button: The title of this tiddler is 
> $:/me/Buttons/NewFitness and it is tagged $:/tags/PageControls
>
> \define journalButton()
> <$fieldmangler>
> <$button tooltip={{$:/me/language/Buttons/NewFitness/Caption}} 
> aria-label={{$:/me/language/Buttons/NewFitness/Caption}} 
> class=<>>
> <$action-setfield journal-type="fitness" journal-part="segment"/>
> <$action-sendmessage $message="tm-new-tiddler" title=< "DEL-$(journalTitleTemplate)$">> tags="$(journalTags)$"/>
> <$list filter="[prefix[yes]]">
> {{$:/core/images/new-journal-button}}
> 
> <$list filter="[prefix[yes]]">
> <$text 
> text={{$:/me/language/Buttons/Fitness/Caption}}/>
> 
> 
> 
> \end
> <$set name="journalTitleTemplate" value={{$:/config/NewJournal/Title}}>
> <$set name="journalTags" value="Journal">
> <>
> 
>
> The only part of this that doesn't work is adding the custom fields to a 
> newly created tiddler.  Thank you in advance for your help.
>
>

-- 
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/2ae4a6f9-15ea-419a-9522-f22687686324%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Can the MakeTid Widget be used to create tiddlers from a list in conjunction with a tiddler template

2017-02-04 Thread J Mc
Thanks Tobias,
this works for me too.

J Mc

On Friday, 3 February 2017 21:01:35 UTC, Tobias Beer wrote:
>
> Hi J,
>  
>
>> Simply define the fields you wish to set
>> using action.setfield and you're done.
>>
>
> What I mean is something like...
>
> <$tiddler tiddler="ListOfTitles">
> <$button>
> make new tiddlers from list
> <$list filter={{ListOfTitles}} variable="title">
> <$action-setfield
> $tiddler=<>
> text="some text"
> tags={{!!tags}}
> foo={{!!foo}}
> mumble={{!!mumble}}/>
> 
> 
> 
>
> and then...
>
> title: ListOfTitles
> foo: bar baz
> tags: ah ja
> mumble: [[frotz gronk]]
>
> first
> second
> third
>
> 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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/9da55c8f-569e-43f2-b497-a957fc3ceada%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Can the MakeTid Widget be used to create tiddlers from a list in conjunction with a tiddler template

2017-02-04 Thread J Mc
Hello again Tobias,
You are assuming right, that's exactly what I need.

Best wishes,

J Mc

On Saturday, 4 February 2017 09:18:53 UTC, Tobias Beer wrote:
>
> Hi again J,
>
> So, am I assumging right that you try to achieve both these things:
>
>1. a list of (possibly generated) titles based on which to generate 
>tiddlers
>2. a (dynamic) template the properties / fields of which you do not 
>want hard-coded via action-setfield but rather "copy" from that template
>
> Something like that?
>
> 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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/08f191a8-7c7d-40d9-83ae-0b40022d7bd9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Can the MakeTid Widget be used to create tiddlers from a list in conjunction with a tiddler template

2017-02-03 Thread J Mc
Hi Tobias,
I new the original list was working, but if I added fields etc it didn't.
Like you say, if I define the fields using action setfield rather than 
trying to do it via a template, it should work.
I'll try your suggestion and get back to you when it works.
Sorry again for any confusion caused and for wasting your time.
Thanks,
J Mc

On Friday, 3 February 2017 20:56:47 UTC, Tobias Beer wrote:
>
> Hi J,
>  
>
>> Sorry for the confusion'
>>
>
> Can you specifically say what is not working for you?
> Because, when I try your example, it work's for me,
> w/o needing any ActionMakeTid.
>
> Simply define the fields you wish to set
> using action.setfield and you're done.
>
> 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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/c025cfe3-b364-4d68-b94d-d460f8ad555d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Can the MakeTid Widget be used to create tiddlers from a list in conjunction with a tiddler template

2017-02-03 Thread J Mc
Hi Tobias,
my main problem is the list of titles.
If I can define the fields and tags elsewhere, then the ListOfTitles 
tiddler would be just that - a list of names for each tiddlers title.
I want to create families of items such as parts, materials, ingredients 
etc by making a list of titles for each.
I can then edit each tiddler's fields and text as necessary.

Sorry for the confusion'

On Friday, 3 February 2017 20:20:54 UTC, Tobias Beer wrote:
>
> Hi J,
>
> Still not getting what isn't working for you.
>
> What's not working about my initial suggestion(s)?
>
> Are you saying you want to make an exact duplicate of ListOfTitles,
> except for the text field since that contains the titles?
> In other words: you don't want to have to be specific about the fields?
>
> If that is so, why does ListOfTitles have to be both the template as well 
> as the list?
>
> You can just define the right fields and values using action-setfield.
> You do not need any template tiddler.
> Do you have a hard requirement that it must be a template tiddler?
>
> 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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/06559f54-b310-44f0-bd6e-31199a4c5652%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Can the MakeTid Widget be used to create tiddlers from a list in conjunction with a tiddler template

2017-02-03 Thread J Mc
Hello Tobias, Mat and cmari, sorry for my delay in replying.

My original requirements were:

1) create a tiddler with a number of fields, some tags and several titles 
of a required list of tiddlers (ListOfTitles)

2) Use the MakeTid or other widget to read each of the titles and number of 
fields in the ListOfTitles tiddler, then create the resultant individual 
tiddlers.

The problem seems to be how can the ListOfTitles tiddler be used to create 
the required tiddlers.

The MakeTid widget and others can be used to make multiple tiddlers in a 
sequence or with one title but not the named tiddler titles defined in the 
ListOfTitles tiddler.

Eg.
ListOfTitles tiddler includes a number of tiddler names.

These could be,
Name A
Name B
Name C 
Etc.

The created tiddlers should be Name A, Name B, Name C all with tags and 
fields as defined in the ListOfTitles tiddler.

I hope this is clearer than my original post.

J Mc






On Friday, 3 February 2017 15:42:04 UTC, cmari wrote:
>
> It should work with single quotes around the text? As in:
> <$button>
> make new tiddlers from list
> <$list filter={{ListOfTitles}}>
> <$action-setfield $tiddler={{!!title}} text='{{||A}}'/>
> 
> 
>
> cmari
>
> On Friday, February 3, 2017 at 1:43:56 AM UTC-8, Mat wrote:
>>
>> (unknown reason why formtting messes below, sorry)
>>
>>  
>>
>>> I agree with J Mc's original question.
>>>
>>> Why can I not use this template:
>>>
>>> title:A
>>> text:
>>> @@background-color:yellow;
>>> Hello, my title is {{!!title}}
>>> @@
>>>
>>>
>>> And then another tiddler with the button:
>>>
>>> {{||A}}
>>>
>>> The tags are applied. The text is not. It does not help if one uses 
>>> "text=<>" either. I cannot see how that makes sense.
>>>
>>> <:-)
>>>
>>

-- 
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/83d887e4-05c1-47c8-9b0f-20309bd24408%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Can the MakeTid Widget be used to create tiddlers from a list in conjunction with a tiddler template

2017-02-02 Thread J Mc


On Thursday, 2 February 2017 12:31:25 UTC, Tobias Beer wrote:
>
> Hi J,
>
> As far as I can see, it cannot, since it provides
> the button itself rather act like other ActionWidgets 
> <http://tiddlywiki.com/#ActionWidgets>.
>
> However, you can use tobibeer/make 
> <http://tobibeer.github.io/tw5-plugins/#make> and tobibeer/split 
> <http://tobibeer.github.io/tw5-plugins/#split>
> alongside the WidgetMessage: tm-new-tiddler 
> <http://tiddlywiki.com/#WidgetMessage%3A%20tm-new-tiddler> like so:
>
> <$set name="titleFoo" filter="[[foo]make[%title% %date% \ 
> date-format:-0MM-0DD]split[ ]]">
> <$set name="titleBar" filter="[[bar]make[%title% %date% \ 
> date-format:0hh:0mm:0ss]split[ ]]">
> <$button>
> <$action-sendmessage $message="tm-new-tiddler" title=<> 
> tags="Foo" text=<>/>
> <$action-sendmessage $message="tm-new-tiddler" title=<> 
> tags="Bar" text=<>/>
> Create two tiddlers in edit-mode
> 
> 
> 
>
> Alternatively, you can use the ActionSetFieldWidget 
> <http://tiddlywiki.com/#ActionSetFieldWidget> instead,
> to create the tiddlers silently, w/o EditMode:
>
> <$set name="titleFoo" filter="[[foo]make[%title% %date% \ 
> date-format:-0MM-0DD]split[ ]]">
> <$set name="titleBar" filter="[[bar]make[%title% %date% \ 
> date-format:0hh:0mm:0ss]split[ ]]">
> <$button>
> <$action-setfield $tiddler=<>
> text=<>
> tags="Foo"/>
> <$action-setfield $tiddler=<>
> text=<>
> tags="Bar"/>
> <$action-navigate $to=<>/>
> <$action-navigate $to=<>/>
> Create two tiddlers silently and open them
> 
> 
> 
>
> You can try the above examples directly at:
>
> http://tobibeer.github.io/tw5-plugins
>
> Best wishes,
>
> Tobias.
>

Tobias, thanks for your very quick reponse.

I am not sure how your examples call up a tiddler containing the list of 
tiddler titles which I need to split, but I will look through your examples 
and documentation.
After further reading, I'm sure it will be made clear.

Best wishes,

J Mc

-- 
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/42ff963d-54a4-4c41-9d6f-4905c6150b81%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] [TW5] Can the MakeTid Widget be used to create tiddlers from a list in conjunction with a tiddler template

2017-02-02 Thread J Mc
I can create multiple new tiddlers from a list in a tiddler called 
"ListOfTitles" by using a button.

<$button>
make new tiddlers from list
<$list filter={{ListOfTitles}}>
<$action-setfield $tiddler={{!!title}} text=""/>



Tiddler ListOfTitles
first
second
third

Can I use the MakeTid widget 
(http://gwiz.tiddlyspot.com/#:MakeTidWidget%20sample-template) in 
conjunction with this code to create a series of tiddlers based on a 
defined template with a number of fields.

Any help you could offer would be much appreciated.

My understanding is that the setfield action can only use a pure list and 
not include the field contents of a template tiddler.

I need to create a large number of tiddlers (each with the same fields) 
which would take forever to create using newhere or cloning.

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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/937bde24-a086-4ab3-aba9-ef073141f65c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: (TW5) Question about filtering with multiple tags

2016-11-18 Thread J Mc
@ Matabele

Hi Matabele,

I used your first example and it works a treat. I was wondering whether it 
is possible to do another two things

1) remove the tag from the tiddler as the output shows the tiddler with the 
checkboxes

2) add a checkbox to the output tiddlers

I would like to tag a list of parts tagged part and show each with a 
checkbox that when checked would tag them as parts list. I could then list 
these in a separate tiddler with all tiddlers tagged with parts list
Hope you can help


On Wednesday, 30 December 2015 06:10:37 UTC, Matabele wrote:
>
> Hi mondayrobot
>
> OK -- I have attached a tiddler which contains an example hack to AND the 
> selected tags together in the filter expression.
>
> regards
>
> On Tuesday, 17 November 2015 08:03:53 UTC+2, mondayrobot wrote:
>>
>> Do you guys know if it's possible to Is it possible to make an option to 
>> update a filter visually (selecting from a dropdown list or using 
>> checkboxes or something similar)?  
>>
>  
>
>>  so if I choose tags A and B, it will show me only the tiddlers tagged 
>> with A and B ; if I choose the tags A, B and D, it will show me only the 
>> tiddlers tagged with A, B and D...
>>
>

-- 
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/7c680d16-92e7-44ba-906d-6ffc24f8587a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Select Example 1.tid
Description: Binary data


[tw] Re: Running Tiddly Wiki from Synology NAS Drive

2016-09-11 Thread J Mc
Hello Farayi Chambati,
have a look at this post.

https://groups.google.com/forum/#!topic/tiddlywiki/tqXXRMojJks

J Mc

On Friday, 9 September 2016 04:09:40 UTC+1, Farayi Chambati wrote:
>
>
> Does anyone have experience or tips?
>

-- 
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/e000a6c3-a189-4498-b607-bed7c9fc4601%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: my portable hosting/sync solution for tiddlywiki (windows)

2016-08-30 Thread J Mc
Thank you very much,

Dominik P.

J  Mc

On Monday, 29 August 2016 17:49:52 UTC+1, Dominik P. wrote:
>
> sure j mc
>
> store.php
>
>  /***
> ! User settings
> Edit these lines according to your need
> ***/
> //{{{
> $AUTHENTICATE_USER = true; // true | false
> $USERS = array( 
> 'UserName1'=>'Password1'); // set usernames and strong passwords
> $DEBUG = false; // true | false
> $CLEAN_BACKUP = true;   // during backuping a file, remove 
> overmuch backups
> $FOLD_JS = true;// if javascript files have been 
> expanded during download the fold them
> error_reporting(E_ERROR | E_WARNING | E_PARSE);
> //}}}
> /***
> !Code
> No change needed under
> ***/
> //{{{
>
> /***
>  * store.php - upload a file in this directory
>  * version :1.6.1 - 2007/08/01 - bi...@bidix.info
>  * 
>  * see : 
>  *  http://tiddlywiki.bidi.info/#UploadPlugin for usage
>  *  http://www.php.net/manual/en/features.file-upload.php 
>  *  for details on uploading files
>  * usage : 
>  *  POST  
>  * 
>  
> UploadPlugin[backupDir=;user=;password=;uploadir=;[debug=1];;]
>  *  userfile 
>  *  GET
>  *
>  * each external javascript file included by download.php is change by a 
> reference (src=...)
>  *
>  * Revision history
>  * V1.6.1 - 2007/08/01
>  * Enhancement: Add javascript folding
>  * V1.6.0 - 2007/05/17
>  * Enhancement: Add backup management
>  * V1.5.2 - 2007/02/13
>  * Enhancement: Add optional debug option in client parameters
>  * V1.5.1 - 2007/02/01
>  * Enhancement: Check value of file_uploads in php.ini. Thanks to Didier 
> Corbière
>  * V1.5.0 - 2007/01/15
>  * Correct: a bug in moving uploadFile in uploadDir thanks to 
> DaniGutiérrez for reporting
>  * Refactoring
>  * V 1.4.3 - 2006/10/17 
>  * Test if $filename.lock exists for GroupAuthoring compatibility
>  * return mtime, destfile and backupfile after the message line
>  * V 1.4.2 - 2006/10/12
>  *  add error_reporting(E_PARSE);
>  * v 1.4.1 - 2006/03/15
>  *  add chmo 0664 on the uploadedFile
>  * v 1.4 - 2006/02/23
>  *  add uploaddir option :  a path for the uploaded file relative to 
> the current directory
>  *  backupdir is a relative path
>  *  make recusively directories if necessary for backupDir and 
> uploadDir
>  * v 1.3 - 2006/02/17
>  *  presence and value of user are checked with $USERS Array (thanks 
> to PauloSoares)
>  * v 1.2 - 2006/02/12 
>   * POST  
>  * 
>  UploadPlugin[backupDir=;user=;password=;]
>  *  userfile 
> *   if $AUTHENTICATE_USER
>  *  presence and value of user and password are checked with 
>  *  $USER and $PASSWORD
>  * v 1.1 - 2005/12/23 
>  *  POST  UploadPlugin[backupDir=]  userfile 
>  * v 1.0 - 2005/12/12 
>  *  POST userfile 
>  *
>  * Copyright (c) bi...@bidix.info 2005-2007
>  ***/
> //}}}
>
> //{{{
>
> if ($_SERVER['REQUEST_METHOD'] == 'GET') {
> /*
>  * GET Request
>  */
> ?>
> 
> 
> 
>  content="text/html;charset=utf-8" >
> BidiX.info - TiddlyWiki UploadPlugin - Store 
> script
> 
> 
> 
> store.php V 1.6.1
> bi...@bidix.info
>  
>  
>  
> This page is designed to upload a  href="http://www.tiddlywiki.com/";>TiddlyWiki.
> for details see : http://TiddlyWiki.bidix.info/#HowToUpload";>
> TiddlyWiki.bidix.info/#HowToUpload.  
> 
> 
>  exit;
> }
>
> /*
>  * POST Request
>  */
>  
> // Recursive mkdir
> function mkdirs($dir) {
> if( is_null($dir) || $dir === "" ){
> return false;
> }
> if( is_dir($dir) || $dir === "/" ){
> return true;
> }
> if( mkdirs(dirname($dir)) ){
> return mkdir($dir);
> }
> return false;
> }
>
> function toExit() {
> global $DEBUG, $filename, $backupFilename, $options;
> if ($DEBUG) {
> echo ("\nHere is some debugging info : \n");
> echo("\$filename : $filename \n");
> echo("\$backupFilename : $backupFilename \n");
> print ("\$_FILES : \n");
> print_r($_FILES);
> print ("

[tw] Re: my portable hosting/sync solution for tiddlywiki (windows)

2016-08-28 Thread J Mc
Hi Dominik P
can you please tell me the config settings for store.php that you used and 
the info in the tiddlywiki control panel for saving.

Thanks,

J Mc

On Tuesday, 23 August 2016 11:45:31 UTC+1, Dominik P. wrote:
>
> my issue was:
> - i have my wiki synced through my home network via nas sync and hosted on 
> nas web server 
> and i 
> - would've had to change the filepath variable for external files all the 
> time (which wouldve been overwritten via sync)
>
> so i wanted to share with you the solution i came up with: (maybe it helps 
> someone)
> i used microapache from dokuwiki standalone download and modified it a bit 
> (so everything is in the wiki folder) and added store.php and relative 
> paths inside wiki everywhere
>
> so this solution works on my local windows-computers the same way like on 
> my nas-webserver without changing anything
>
>
> <https://lh3.googleusercontent.com/-j2dRF0Qv0xY/V7wiwzqKi-I/Alg/H_UdilkN7Twuh2eFV8qyL_A02nDgGM7IACLcB/s1600/standalone.JPG>so
>  
> when im on a local computer/(or usb drive) i simply run run.bat and am able 
> to autosave (with store.php/without taking portable firefox+plugnin with 
> me) and access external stuff inside my src folder like mp3s mp4s etc. with 
> iframe/html5 video/audio tags 
> <https://lh3.googleusercontent.com/-j2dRF0Qv0xY/V7wiwzqKi-I/Alg/H_UdilkN7Twuh2eFV8qyL_A02nDgGM7IACLcB/s1600/standalone.JPG>
>  
> <https://lh3.googleusercontent.com/-j2dRF0Qv0xY/V7wiwzqKi-I/Alg/H_UdilkN7Twuh2eFV8qyL_A02nDgGM7IACLcB/s1600/standalone.JPG>
>  
> <https://lh3.googleusercontent.com/-0j-IpscER9Y/V7wmOMeas5I/Alw/N0lNzdeVmk8P4noX7O119co-6ny1YYJJwCLcB/s1600/tw5sol.jpg>
>  let 
> me know what you think
>
> <https://lh3.googleusercontent.com/-j2dRF0Qv0xY/V7wiwzqKi-I/Alg/H_UdilkN7Twuh2eFV8qyL_A02nDgGM7IACLcB/s1600/standalone.JPG>greetings,
>  
> dominik 
> <https://lh3.googleusercontent.com/-j2dRF0Qv0xY/V7wiwzqKi-I/Alg/H_UdilkN7Twuh2eFV8qyL_A02nDgGM7IACLcB/s1600/standalone.JPG>
>

-- 
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/7d15e1f8-89c1-414c-a718-b38fe2e8f88c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] I can't program, I need help for custom TW for TBI patient

2016-08-23 Thread J Mc
Hi CPorter9
I think you could use the tw5-suitcase to do what you want.

http://tw5-suitcase.tiddlyspot.com/

J Mc

On Tuesday, 23 August 2016 16:13:42 UTC+1, CPorter9 wrote:
>
> I'm  trying to set up a simple journal tiddlywiki for a TBI (traumatic 
> brain injury) patient.  I have asked for help earlier, but actually, I 
> can't understand the replies I've gotten, I'm floundering.
>
> I'm deciding to ask for help in general. The person with the TBI has 
> severe deficits in executive functions re: organization skills, time 
> management skills, memory and decision making. The TBI patient does like 
> technology, and does enjoy writing, so I'm thinking a personal computer 
> program that runs in a ubiquitous browser is very likely to see a lot of 
> use. 
>
> So I want to set up a journal so that each day is somewhat structured 
> around the directions in the journal. I've uploaded 3 screenshots of an 
> example TW I am working on. It has been modified with a toc-content 
> sidetab, and each journal entry has a tab bar at the top that shows items 
> the person is supposed to tackle daily. The tabs are for daily things, they 
> don't contain stuff that needs to be saved in any tiddler that's called in 
> the tab.
>
> Really could use some help on this as I have spent about 10 hours on this 
> and I haven't yet been able to figure out how to get a default journal 
> tiddler to display a tab bar, nor have I been able to find a way for the 
> tasks tab to have a rotating set of tasks depending on the day the journal 
> was created. All I can do is create static tiddlers for the contents. The 
> journal tiddler modification is beyond me.
>
> Will anyone be willing to help? Please? 
>
>
>

-- 
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/96ea5dc6-efe1-417d-8c65-dcacaf6d0692%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Is there a TW5 version of TiddlyPacking available

2016-08-09 Thread J Mc
Hi Birthe C,
Sorry, but I  didn't find a solution.
Thank you for providing an updated TW5 version though, It looks good and 
will be very useful.

J Mc

On Monday, 8 August 2016 22:01:54 UTC+1, Birthe C wrote:
>
> Hi J Mc
>
> Did you find a solution?
>
> I did try but without the different packing lists you wanted. 
> http://tw5-suitcase.tiddlyspot.com/
>
>
> Birthe
>
>

-- 
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/0f7096e4-21e3-453d-a2dd-752414a79405%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Any Cooks here?

2016-06-29 Thread J Mc
Thanks Rick,
I've got your TW now and will try it out and get back to you soon.

J Mc

On Wednesday, June 29, 2016 at 1:23:32 AM UTC+1, RickL wrote:
>
> Since your gmail address is in your response, I will pm you with my 
> current recipes file. 
>
> I have the recipes linked to the Grocery List tiddler which makes it easy 
> to keep track and plan.
>
> Take a look and let me know if you have questions.
>
> Rick
>
> On Tuesday, June 28, 2016 at 1:00:21 PM UTC-4, J Mc wrote:
>>
>> Hello RickL
>> I am interested in your journalexample.tiddlyspot.com
>> I would like to see how it could be used for shopping lists but the 
>> website is requesting a login and password.
>> Could you please post an example somewhere.
>>
>> Thanks J Mc
>>
>> On Sunday, February 8, 2015 at 3:59:44 PM UTC, RickL wrote:
>>>
>>> Here is something I have been using and modifying for the past few 
>>> monthsnice for shopping list too.  Have a look 
>>> journalexample.tiddlyspot.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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/5b06849a-28fb-4e3e-b6ad-080710345b32%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Any Cooks here?

2016-06-28 Thread J Mc
Hello RickL
I am interested in your journalexample.tiddlyspot.com
I would like to see how it could be used for shopping lists but the website 
is requesting a login and password.
Could you please post an example somewhere.

Thanks J Mc

On Sunday, February 8, 2015 at 3:59:44 PM UTC, RickL wrote:
>
> Here is something I have been using and modifying for the past few 
> monthsnice for shopping list too.  Have a look 
> journalexample.tiddlyspot.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 https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/5bc7cdc2-70fa-48c6-a263-f6923bbf5c58%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Simple template for modals

2016-06-28 Thread J Mc
Hi FrD,
I'll use the drag and drop method, as you suggest.
Thanks for your help and the great templates.

On Monday, June 27, 2016 at 5:56:43 PM UTC+1, FrD wrote:
>
> Hi J Mc
>
> Well I don't know if it's possible. I doubt it because of the access to 
> the filesystem but I'm not sure.
> And if it is possible it probably would need higher skills in javascript !
>
> The templates are in wikitext and I didn' mean to extand them with js.
>
> To import in an easy way you can use drag and drop ; it works well in TW.
>
> FrD
>
> Le lundi 27 juin 2016 17:23:11 UTC+2, J Mc a écrit :
>>
>> Hi FrD,
>> is it possible to point to a local directory of images and retrieve them 
>> automatically rather than pointing to each separate image?
>>
>> On Monday, June 27, 2016 at 12:39:12 PM UTC+1, FrD wrote:
>>>
>>> Hi,
>>>
>>> This is a work in progress, but I've made some templates to display a 
>>> simple slideshow in a modal window :
>>>
>>> http://simplemodaltemplate.tiddlyspot.com/
>>>
>>> Any feedback welcome
>>>
>>> FrD
>>>
>>

-- 
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/235a5c8a-4e0a-4664-af88-e8218dd6f14e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Simple template for modals

2016-06-27 Thread J Mc
Hi FrD,
is it possible to point to a local directory of images and retrieve them 
automatically rather than pointing to each separate image?

On Monday, June 27, 2016 at 12:39:12 PM UTC+1, FrD wrote:
>
> Hi,
>
> This is a work in progress, but I've made some templates to display a 
> simple slideshow in a modal window :
>
> http://simplemodaltemplate.tiddlyspot.com/
>
> Any feedback welcome
>
> FrD
>

-- 
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/025e85cc-a274-4220-a71e-c95969bdfd34%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Is there a TW5 version of TiddlyPacking available

2016-03-30 Thread J Mc
As there has not been a reply to this post, I presume the answer to my 
question is no.

Thanks to everyone who took time to read this post.

I have found a checklist plugin that will help create checklists without 
having to create tiddlers.

http://grosinger.net/tw5-checklist/

I can use a button to create a new checklist and then add the checklist to 
a tabbed tiddler, providing a similar function to my original request.

Thanks again,

J mc

On Thursday, March 17, 2016 at 10:12:12 AM UTC, J Mc wrote:
>
> Hello everyone,
> some time ago I used the classic TW TiddlyPacking. (See link below)
>
> https://dl.dropboxusercontent.com/u/10400854/TiddlyPacking.html
>
> Can anyone tell me if there is a TW5 equivalent or can it be created from 
> scratch.
>
> The TW uses horizontal tabs for different categories.
>
> My problem is that I do not have the coding skills to put my wishlist of 
> features together. It could probably be done using separate TW's by I would 
> like everything in one place.
>
> What I would like the TW to do:
>
> I would like to create a new page/category of tabs (allowing a number of 
> different Tab Lists to be created e.g. Packing, Parts List, Camping List, 
> Holiday List) silently from a button or link
>
> I would like to create Tabs on each page/category silently from a button 
> or link
>
> I would like to create Tiddlers that contain the tag for the tab list, 
> from a dropdown selection box/menu
>
> Any help or suggestions on this matter would be much appreciated.
>
> Thanks, J mc
>
>

-- 
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/2d2009fa-28f1-4020-81a0-05eef919c01d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] [TW5] Is there a TW5 version of TiddlyPacking available

2016-03-19 Thread J Mc
Hello everyone,
some time ago I used the classic TW TiddlyPacking. (See link below)

https://dl.dropboxusercontent.com/u/10400854/TiddlyPacking.html

Can anyone tell me if there is a TW5 equivalent or can it be created from 
scratch.

The TW uses horizontal tabs for different categories.

My problem is that I do not have the coding skills to put my wishlist of 
features together. It could probably be done using separate TW's by I would 
like everything in one place.

What I would like the TW to do:

I would like to create a new page/category of tabs (allowing a number of 
different Tab Lists to be created e.g. Packing, Parts List, Camping List, 
Holiday List) silently from a button or link

I would like to create Tabs on each page/category silently from a button or 
link

I would like to create Tiddlers that contain the tag for the tab list, from 
a dropdown selection box/menu

Any help or suggestions on this matter would be much appreciated.

Thanks, J mc

-- 
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/965c4596-bee2-4419-ab1c-b6d83261ec23%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Numbered heading

2012-09-28 Thread J Mc
Hi Andras,
you will have to edit your StyleSheet Tiddler.
If you have just started with TW the StyleSheet Tiddler is a shadow Tiddler
Create a new Tiddler named StyleSheet and add the following to it, save TW 
and refresh the browser;

body {counter-reset:section;}
h1 {counter-reset:subsection;}
h1:before
{
counter-increment:section;
content:" " counter(section) ". ";
}
h2:before 
{
counter-increment:subsection;
content:counter(section) "." counter(subsection) " ";
}
h3:before 
{
counter-increment:subsubsection;
content:counter(section) "." counter(subsection) "." counter(subsection) " 
"; ";
}

I have been trying to do this by using a template document but TW sometimes 
upsets the numbering by adding other ocuments with numbering to the counter.
E.g.
If you had two documents, the first with sections 1, 1.1, 1.2,1.3 and try 
to do the same in a second document, the second document results in 2, 
2.1,2.2, 2.3

Give it a try.

W3 Schools.com
http://www.w3schools.com/css/css_examples.asp - See CSS Generated Content
http://www.w3schools.com/css/tryit.asp?filename=trycss_gen_counter-reset

Jim


On Friday, 28 September 2012 00:03:17 UTC+1, Andras Galig wrote:
>
> I'd like to use numbered heading.
>
> Example:
> !H1
> !!H21
> !!H22
> !!!H3
>
> Expected result:
> 1 H1
> 1.1 H21
> 1.2 H22
> 1.2.1 H3
>
> How can I do this in TiddlyWiki?
> BR/Andras
>
>

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