[tw5] Re: Passing variable to link widget?

2018-10-18 Thread Ivan Aparicio
Thanks Tony, Is the heads up for backwards compatibility? The reason I would like to use the link method, is because if the tiddler already exists, I would like to link to it, and if it doesn't yet, I would like to be able to create it. Is that an option with the new tiddler button? On

[tw5] Re: Passing variable to link widget?

2018-10-18 Thread Ivan Aparicio
Hi Mario, You're right, sorry it was a transcription typo. I've corrected it now. Thanks On Thursday, October 18, 2018 at 9:32:38 AM UTC+1, PMario wrote: > > modified > > On Thursday, October 18, 2018 at 10:30:04 AM UTC+2, PMario wrote: >> >> hi >> >> imo you missed the quotes and a space.

[tw5] Passing variable to link widget?

2018-10-18 Thread Ivan Aparicio
I'm trying to get a tiddler to link to a different tiddler that is based on its name: <$setname=tiddler-title value={!!title}}> Tiddler content !<$link><> Observations The tiddler shows a link, but it doesn't work. I was hoping I would have a link that I could then use to create the

Re: [tw5] setting up tiddlywiki with save working on Apache

2018-08-09 Thread Ivan Aparicio
I've attached the file On Wednesday, August 8, 2018 at 3:23:07 PM UTC+1, Lost Admin wrote: > > > > On Tuesday, August 7, 2018 at 3:45:22 PM UTC-4, Ivan Aparicio wrote: >> >> ... >> >> I can post the PHP file working on PHP 7 if anyone is interested. >>

[tw5] Nested filters for large report

2018-08-09 Thread Ivan Aparicio
Hi All, I'm trying to write a filter that will put together a report with headings based on tags. As an example: - 2 types of tiddler: Fruit tiddlers and review tiddlers. - Review tiddlers are tagged with the name of the fruit (say Apple) and the variety (say Fuji, Granny Smith) I

Re: [tw5] setting up tiddlywiki with save working on Apache

2018-08-07 Thread Ivan Aparicio
; simply remove the lines, which suggests that they might never get invoked > in some circumstances. > > -- Mark > > On Sunday, August 5, 2018 at 11:20:38 AM UTC-7, Ivan Aparicio wrote: >> >> Do you know what changes are needed? I had a great little setup with &g

Re: [tw5] setting up tiddlywiki with save working on Apache

2018-08-05 Thread Ivan Aparicio
Do you know what changes are needed? I had a great little setup with store.php on apache until I upgraded my PHP to update nextcloud :(. Now I don't have access to my tiddlywiki On Tuesday, June 12, 2018 at 5:50:40 PM UTC+1, Mark S. wrote: > > Re Store.php, you need to make a small code change

[tw] Re: store.php isn't saving over LAN after ISP change

2018-01-26 Thread Ivan Aparicio
8 at 8:38:29 AM UTC-8, Ivan Aparicio wrote: >> >> Hi Mark, >> >> I tried connecting on both a macbook air and a thinkpad running Fedora >> 26. I'll try to change the hosts file once I get home. Is the idea to >> redirect the internet URL to my local IP address

[tw] Re: store.php isn't saving over LAN after ISP change

2018-01-26 Thread Ivan Aparicio
January 26, 2018 at 7:41:27 AM UTC-8, Ivan Aparicio wrote: >> >> Hi Tony, >> >> I hadn't heard of tiddlyserver. I am serving my TW from home using a >> raspberry pi and store.php which I got from here: >> >> https://code.google.com/archive/p/bidix/downloa

[tw] Re: store.php isn't saving over LAN after ISP change

2018-01-26 Thread Ivan Aparicio
Hi Tony, I hadn't heard of tiddlyserver. I am serving my TW from home using a raspberry pi and store.php which I got from here: https://code.google.com/archive/p/bidix/downloads I think that the reason I can't access it over LAN is that in the TW5 control panel under the 'Saving' tab, there

[tw] store.php isn't saving over LAN after ISP change

2018-01-26 Thread Ivan Aparicio
Hi All, First, tl;dr - I'm serving a TW5 at home using store.php, and can't save to it over LAN (using the local IP address), however I can save to it from work outside of my LAN (using my public IP with port forwarding). So I changed ISP again. Before everything was running great - I accessed

Re: [tw] Re: A little help for Saving on a PHP Server

2017-09-18 Thread Ivan Aparicio
I also found that changing permissions (of both the tiddlywiki and store.php files) to 777 fixed this issue On Thursday, January 8, 2015 at 9:40:44 PM UTC, RichShumaker wrote: > > SOLUTION!!! > and as I have said on the GitHub thread I owe Tobias a keg of beer(if he > drinks beer). > This is a

[tw] Re: tm-new-tiddler isn't loading my template

2017-08-26 Thread Ivan Aparicio
ns out after testing to be > > $param= > > Mark > > On Friday, August 25, 2017 at 3:46:16 AM UTC-7, Ivan Aparicio wrote: >> >> I'm trying to create a button that will create a book log tiddler: >> >> <$button> >> ''Book'' >> &l

[tw] Re: tm-new-tiddler isn't loading my template

2017-08-26 Thread Ivan Aparicio
> > I don't have the time to give you a more robust answer and others are more > expert but that should help you move along. > > Tony > > > On Friday, August 25, 2017 at 8:46:16 PM UTC+10, Ivan Aparicio wrote: >> >> I'm trying to create a button that will create a

[tw] Re: tm-new-tiddler isn't loading my template

2017-08-26 Thread Ivan Aparicio
t; Looking at TiddlyWiki.com, I believe it should be param="Template:Book". > Is there a source somewhere else suggesting $template= ?? > > Good luck, > Mark > > On Friday, August 25, 2017 at 3:46:16 AM UTC-7, Ivan Aparicio wrote: >> >> I'm trying to create a b

[tw] tm-new-tiddler isn't loading my template

2017-08-25 Thread Ivan Aparicio
I'm trying to create a button that will create a book log tiddler: <$button> ''Book'' <$action-sendmessage $message="tm-new-tiddler" $template="Template:Book" title="Book title" tags="Scrap [[book]]"/> Everything works, except for the template. I'm 100% sure that I have a tiddler

Re: [tw] Strange effect when using tm-new-tiddler

2017-01-08 Thread Ivan Aparicio
Guys, Really good stuff - Tobias' code fixed my problem! For a dream diary, this is more than adequate, as I don't need the timestamp to be accurate to the second. I normally only have one dream to record per day! Thanks again. Ivan On Sunday, January 8, 2017 at 6:10:55 PM UTC, Jeremy Ruston

[tw] Strange effect when using tm-new-tiddler

2017-01-08 Thread Ivan Aparicio
I've created a button that will allow me to make an entry in a dream diary. Here's the code: <$button> ''Dream'' <$action-sendmessage $message="tm-new-tiddler" $template="" title=<> tags="Journal [[Dream]]"/> The strange thing, is that when I click the button, the word 'Dream' in

[tw] Re: Nested lists using tiddler titles as tags

2016-11-29 Thread Ivan Aparicio
Thanks Jed, that does exactly what I wanted! I think I'm starting to get a hang of how to filter things in TW. On Friday, November 25, 2016 at 2:25:12 PM UTC, Jed Carty wrote: > > The quick answer is that you put a list around it that returns one element > when your conditional is true and

[tw] Re: Nested lists using tiddler titles as tags

2016-11-23 Thread Ivan Aparicio
I've been trying to make the an improvement; do you know how I could get the quarter tiddler to only display the areas for which there are tasks? I'm not sure how to put a conditional statement to trigger the line <$link>''{{!!title}}''. On Thursday, November 10, 2016 at 9:52:10 AM UTC, Jed

[tw] Re: Nested lists using tiddler titles as tags

2016-11-10 Thread Ivan Aparicio
That makes perfect sense now. Thanks Jed! On Thursday, November 10, 2016 at 9:52:10 AM UTC, Jed Carty wrote: > > Since it is inside a list widget the currentTiddler variable is set to the > title of the current item in the list in the same way that {{!!title}} > shows the title of the current

[tw] Re: Nested lists using tiddler titles as tags

2016-11-08 Thread Ivan Aparicio
Thanks Jed, that works! I'm a bit confused though, should the value of currentTiddler and tiddler-title be the same? On Tuesday, November 8, 2016 at 12:34:09 PM UTC, Jed Carty wrote: > > Your inner list isn't restricted to the results of the outer list, it is > getting everything tagged with

[tw] Nested lists using tiddler titles as tags

2016-11-08 Thread Ivan Aparicio
I've been grappling with a problem for two days that I hope someone could help me with. I have an application in which I'm trying to allocate home improvement tasks to different areas of the house, and split the tasks over the four quarters of the year. Essentially the breakdown is: Quarter

[tw] [BETA] I need 3 or 4 "non techy" volunteers - who want to test TiddlySpace Backup Scripts

2016-11-05 Thread Ivan Aparicio
I've got access to a mac, and would be happy to help. Please feel free to send me more info! -- 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

[tw] Re: Use fields as filter argument

2016-09-04 Thread Ivan Aparicio
Thanks guys, that's really useful stuff! I'll keep experimenting, but I may just take Mario's advice, because it seems that a tagging approach is most in harmony with how TiddlyWiki is built. On Saturday, September 3, 2016 at 11:29:16 PM UTC+1, PMario wrote: > > Hi Ivan, > > Is there a special

[tw] Re: Use fields as filter argument

2016-09-03 Thread Ivan Aparicio
Mark S. wrote: > > I don't know if this is your only problem, but when used in a filter I > believe the syntax for transclusion is ...regex{!!title}... > > HTH > Mark > > > On Saturday, September 3, 2016 at 4:51:46 AM UTC-7, Ivan Aparicio wrote: >> >> Hi everybod

[tw] Re: Use fields as filter argument

2016-09-03 Thread Ivan Aparicio
ember 3, 2016 at 4:51:46 AM UTC-7, Ivan Aparicio wrote: >> >> Hi everybody, >> >> I'm new to TiddlyWiki and I'm trying to use it to create a >> project-specific to-do list. Please bear with me if this is a pretty simple >> question, but I think I may need to use a

[tw] Use fields as filter argument

2016-09-03 Thread Ivan Aparicio
Hi everybody, I'm new to TiddlyWiki and I'm trying to use it to create a project-specific to-do list. Please bear with me if this is a pretty simple question, but I think I may need to use a tiddler field (tiddler title) as a filter argument. Let me explain: Each project is a tiddler with a