[tw5] Re: Input Prompts to Provide Variables With Button?

2021-06-08 Thread Darth Mole
Hello and thank you very much for providing another solution! I very much 
appreciate the answers and also the information provided!

As a quick follow-up question:

For both methods: 

<$action-setfield $tiddler=<>
<$action-setfield $tiddler={{!!target}}

If I wanted to add/append some static text to the end of the target field 
value, how would I do so? I have tried various ways, using + or enclosing 
the variable and text in " or brackets but can't seem to find the 
combination.

For an idea:

Target = HTVW

<$action-setfield $tiddler=[<> Chapter 01] would produce a 
Tiddler with the title of HTVW Chapter 01
<$action-setfield $tiddler={{{!!target}}+ Chapter 01} would produce a 
Tiddler with the title of HTVW Chapter 01

Thank you again for your help and any additional information/solutions you 
can provide!


On Wednesday, June 9, 2021 at 1:09:25 AM UTC-4 Eric Shulman wrote:

> On Tuesday, June 8, 2021 at 8:21:19 PM UTC-7 cj.v...@gmail.com wrote:
>
>> There are often many different ways of doing things, and I just went 
>> ahead with the fastest solution I could think of...
>>
>
> Here's a much more compact way to write the same functionality:
> \define temp() $:/temp/input/$(currentTiddler)$
>
> |  Label:|<$edit-text tiddler=<> field="label"/>|
> |   From Tag:|<$edit-text tiddler=<> field="fromtag"/>  |
> | Target:|<$edit-text tiddler=<> field="target"/>   |
> | Target Tag:|<$edit-text tiddler=<> field="targettag"/>|
>
> <$tiddler tiddler=<>>
> <$button> <$view field="label">join tiddlers 
><$action-setfield $tiddler={{!!target}} text={{{ 
> [tag{!!fromtag}get[text]join[]] }}} tags={{!!targettag}} />
><$action-deletetiddler tiddler=<> />
> 
> 
>
> Notes:
> 1) the inputs are stored in a $:/temp tiddler, so it doesn't clutter up 
> the visible list of tiddlers
> 2) the temp tiddler's title is assembled using a simple \define, rather 
> than using $vars with filtered transclusion syntax
> 3) the input form uses simple wikitext table syntax instead of HTML syntax 
> to produce more readable code
> 4) the $edit-text widgets target <> rather than the more verbose, 
> but equivalent, {{{ [] }}}
> 5) the $button is enclosed in a $tiddler widget so that references to the 
> input field values can use {{!!fieldname}}
> 6) the $button uses <$view>... to provide a default label if none 
> is input
> 7) instead of using $wikify, the output text is constructed using filtered 
> transclusion syntax to join the source tiddler content into a single string
> 8) the $:/temp tiddler is deleted after processing the $button press to 
> clear all the form inputs for re-use
>
> enjoy,
> -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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/85a2d028-81ee-47cb-b5e5-388910f36bc9n%40googlegroups.com.


[tw5] Re: Input Prompts to Provide Variables With Button?

2021-06-08 Thread Eric Shulman
On Tuesday, June 8, 2021 at 8:21:19 PM UTC-7 cj.v...@gmail.com wrote:

> There are often many different ways of doing things, and I just went ahead 
> with the fastest solution I could think of...
>

Here's a much more compact way to write the same functionality:
\define temp() $:/temp/input/$(currentTiddler)$

|  Label:|<$edit-text tiddler=<> field="label"/>|
|   From Tag:|<$edit-text tiddler=<> field="fromtag"/>  |
| Target:|<$edit-text tiddler=<> field="target"/>   |
| Target Tag:|<$edit-text tiddler=<> field="targettag"/>|

<$tiddler tiddler=<>>
<$button> <$view field="label">join tiddlers 
   <$action-setfield $tiddler={{!!target}} text={{{ 
[tag{!!fromtag}get[text]join[]] }}} tags={{!!targettag}} />
   <$action-deletetiddler tiddler=<> />



Notes:
1) the inputs are stored in a $:/temp tiddler, so it doesn't clutter up the 
visible list of tiddlers
2) the temp tiddler's title is assembled using a simple \define, rather 
than using $vars with filtered transclusion syntax
3) the input form uses simple wikitext table syntax instead of HTML syntax 
to produce more readable code
4) the $edit-text widgets target <> rather than the more verbose, but 
equivalent, {{{ [] }}}
5) the $button is enclosed in a $tiddler widget so that references to the 
input field values can use {{!!fieldname}}
6) the $button uses <$view>... to provide a default label if none 
is input
7) instead of using $wikify, the output text is constructed using filtered 
transclusion syntax to join the source tiddler content into a single string
8) the $:/temp tiddler is deleted after processing the $button press to 
clear all the form inputs for re-use

enjoy,
-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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/218d0f02-a4f4-4deb-b259-60e4767b1460n%40googlegroups.com.


Re: [tw5] Re: Shiraz list-content (experimental)

2021-06-08 Thread Mohammad Rahmani
On Wed, Jun 9, 2021 at 2:34 AM Saq Imtiaz  wrote:

Hi Saq,


This is neat. I quite like it.


Thank you!

> Is performance an issue if there are too many results?
>

Well yes! Especially when the tiddlers themselves are long and have
manythings to render!


> On Friday, June 4, 2021 at 6:14:28 PM UTC+2 Mohammad wrote:
>
>> Shiraz has a list-search which is very handy and list filtered tiddlers
>> with a search box lets you search in results!
>> Shiraz has a lot of features that lets you create new tools with more
>> ease!
>>
>> I have implemented another list macro called list-content! BUT I'm not
>> sure if it has already been published (introduced) by another
>> user/developer!
>>
>> The list-content is actually a search box, but instead of displaying
>> titles, it displays the tiddler with its content!
>>
>> As soon as it find any results it shows
>>
>> 1. each result as a Card
>> 2. The resulting tiddler is displayed with title, subtitle, tags and text
>> 3. It is possible to have multi column result or truncate the text and
>> show part of text
>>
>>
>>
>> Best wishes
>> Mohammad
>>
> --
> 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/6a5e17bb-88b8-46ad-aa4b-da0bc439da97n%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/CAAV1gMC_yANeTRpreH7Sr5G%3DwBBTuvX-TuH8OOM47emMdDjzHA%40mail.gmail.com.


[tw5] Removing Collapsible Arrow/Funcion from toc-tabbed-internal-nav

2021-06-08 Thread Darth Mole
Hello!

I'm currently in a love hate relationship with the 
new toc-tabbed-internal-nav macro for my current project. 

I'm not even sure if what I want to do is possible:

Is there anyway to remove the > that appears next to the headers? 

I only want the first level to show on the left of the two column window 
that is generated by using the above macro. 

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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/61469cb4-b4cc-4fcc-9ea6-57d5e4deeb16n%40googlegroups.com.


[tw5] Re: Create Save and close in one click ?

2021-06-08 Thread Eric Shulman
On Tuesday, June 8, 2021 at 7:03:17 PM UTC-7 mohamed...@hotmail.com wrote:

> One more thing if possible , the field part somefield, i need to 
> transclude a value there with spaces
> somefield={{!!title}}
> and i cant add brackets , because this turns it into a string 
> [[{{!!title}}]]
> Is there any way to insert the value enclosed in brackets ?
>

So... let's say you have a title of "Foo Bar Baz" (i.e., text containing 
spaces).  Then, when you create a new tiddler using somefield={{!!title}}, 
the resulting value of somefield will still be "Foo Bar Baz" (i.e., a 
single text value containing spaces).  For almost all purposes, this will 
be sufficient, and subsequent references to {{!!somefield}} will still 
result as a single text value containing spaces.  Nonetheless, it still 
possible to save the field value including added brackets, so that it will 
be stored as "[[Foo Bar Baz]]".  Here's one method for adding the brackets:

<$button> click me
   <$vars lb="[[" rb="]]">
   <$action-createtiddler $basetitle="SomethingNew" text="yabba dabba doo!" 
tags="foo bar baz" caption="this is a caption" somefield={{{ 
[{!!title}addprefixaddsuffix] }}} />
   


Notes:
* The $vars defines two variables that contain the literal "[[" and "]]" 
text
* The somefield parameter value is then assembled using "filtered 
transclusion" to add the brackets before and after the {!!title} value.
* The $vars is needed because you can't use literal square brackets as text 
within the filter syntax, since they would be interpreted as part of the 
filter syntax itself (i.e., you can't write ...addprefix[[[]... or 
...addsuffix[]]]...)

Another way to achieve this is to use macros instead of $vars to define the 
lb and rb variables, like this:
\define lb() [[
\define rb() ]]

<$button> click me
   <$action-createtiddler $basetitle="SomethingNew" text="yabba dabba doo!" 
tags="foo bar baz" caption="this is a caption" somefield={{{ 
[{!!title}addprefixaddsuffix] }}} />


enjoy,
-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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/4d444bdb-faf5-4681-98ae-2d83238d469cn%40googlegroups.com.


[tw5] xlxs utilities not working in V22 or V23

2021-06-08 Thread Patrick RB
I'm a big fan of Tiddlywiki, fairly new and not really a developer so it's 
been a long slog to get past the basics!

I've been using XLXS utilities to import chunks of text with dates and 
sorting them using the timelines plugin. I need to upgrade a wiki from V16 
which can't use Timelines. However when upgraded to V22 when xlxs files are 
imported they show as binary files. 

I've tried with V23 - same issue - can anyone help? 

I use tiddlywiki with tiddly desktop so don't know how to upgrade manually 
(have always used the drag and drop updater). There is no previous updater 
versions, so i can;t try updating the V16 to V20. 

kind 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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/9d5390f4-1321-498b-ab38-d3c2265ec1efn%40googlegroups.com.


[tw5] Re: Input Prompts to Provide Variables With Button?

2021-06-08 Thread Charlie Veniot
Hey, my pleasure.  Although I'm often too deeply immersed in my own 
projects, I do find it hard to pass up quick and fun "programming" 
opportunities.

If ever you need to tweak that somehow, just post right back into this 
thread.

There are often many different ways of doing things, and I just went ahead 
with the fastest solution I could think of.  Well, I did roll up my sleeves 
a smidgen to make it look kind of pretty with some HTML.  Although I'm more 
into practical than pretty, ain't nothing wrong with pretty.  Well, the 
rendering is kind of pretty.  The HTML, maybe not so much ...

Rock'n roll !

On Tuesday, June 8, 2021 at 11:52:43 PM UTC-3 iamdar...@gmail.com wrote:

> You are awesome! Thank you very much! It works just great! Thank you, 
> thank you, thank you, thank you!
>
> On Tuesday, June 8, 2021 at 10:39:55 PM UTC-4 cj.v...@gmail.com wrote:
>
>> I can't really properly test this, but maybe this does the trick?
>>
>> <$vars dataTiddler={{{ [addsuffix[ Data]] }}}>
>>
>> 
>> Whatever description needs to be put here:
>>
>> 
>> Label:
>>  <$edit-text tiddler={{{ [] }}} field="my_label"/> 
>> 
>> Tag:
>>  <$edit-text tiddler={{{ [] }}} field="my_tag"/> 
>> 
>> Target:
>>  <$edit-text tiddler={{{ [] }}} field="my_target"/> 
>> 
>> Targetting:
>>  <$edit-text tiddler={{{ [] }}} field="my_targetting"/> 
>> 
>> 
>>
>> <$vars myLabel={{{ [get[my_label]] }}}
>>   myTag={{{ [get[my_tag]] }}}
>>   myTarget={{{ [get[my_target]] }}}
>>   myTargetting={{{ [get[my_targetting]] }}}>
>> <$button> Create <>
>><$wikify name="out" text="""<$list filter="[tag]"><$text 
>> text={{!!text}}/>""">
>>   <$action-setfield $tiddler=<> text=<> 
>> tags=<> />
>>
>> 
>> 
>>
>>   
>>
>> 
>>
>> On Tuesday, June 8, 2021 at 10:42:53 PM UTC-3 iamdar...@gmail.com wrote:
>>
>>> Hello,
>>>
>>> I hope I didn't miss a clear answer for this but is there anyway to 
>>> prompt the user for a variable, with an input field, after a button press?
>>>
>>> I found the below code to combine multiple tiddlers into one based on a 
>>> shared tag, and then modified it to add a tag.
>>>
>>> \define join(label,tag,target,targettag)
>>> <$button> $label$
>>><$wikify name="out" text="""<$list filter="[tag[$tag$]]"><$text 
>>> text={{!!text}}/>""">
>>>   <$action-setfield $tiddler="$target$" text=<> 
>>> tags=<> />
>>>
>>> 
>>> \end
>>>
>>> <>
>>>
>>> As of now the variables for the button are set by the <>> which has to be manually set.
>>>
>>> My question/hope is if there is a way to prompt the user to input the 
>>> variables, one at a time, via an input box/field/prompt, that would allow 
>>> them to set the variables each time the button is pressed.
>>>
>>> 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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/13a7f3cb-c97f-4d3f-9904-47c43e5c0cc6n%40googlegroups.com.


[tw5] Re: Input Prompts to Provide Variables With Button?

2021-06-08 Thread Darth Mole
You are awesome! Thank you very much! It works just great! Thank you, thank 
you, thank you, thank you!

On Tuesday, June 8, 2021 at 10:39:55 PM UTC-4 cj.v...@gmail.com wrote:

> I can't really properly test this, but maybe this does the trick?
>
> <$vars dataTiddler={{{ [addsuffix[ Data]] }}}>
>
> 
> Whatever description needs to be put here:
>
> 
> Label:
>  <$edit-text tiddler={{{ [] }}} field="my_label"/> 
> 
> Tag:
>  <$edit-text tiddler={{{ [] }}} field="my_tag"/> 
> 
> Target:
>  <$edit-text tiddler={{{ [] }}} field="my_target"/> 
> 
> Targetting:
>  <$edit-text tiddler={{{ [] }}} field="my_targetting"/> 
> 
> 
>
> <$vars myLabel={{{ [get[my_label]] }}}
>   myTag={{{ [get[my_tag]] }}}
>   myTarget={{{ [get[my_target]] }}}
>   myTargetting={{{ [get[my_targetting]] }}}>
> <$button> Create <>
><$wikify name="out" text="""<$list filter="[tag]"><$text 
> text={{!!text}}/>""">
>   <$action-setfield $tiddler=<> text=<> 
> tags=<> />
>
> 
> 
>
>   
>
> 
>
> On Tuesday, June 8, 2021 at 10:42:53 PM UTC-3 iamdar...@gmail.com wrote:
>
>> Hello,
>>
>> I hope I didn't miss a clear answer for this but is there anyway to 
>> prompt the user for a variable, with an input field, after a button press?
>>
>> I found the below code to combine multiple tiddlers into one based on a 
>> shared tag, and then modified it to add a tag.
>>
>> \define join(label,tag,target,targettag)
>> <$button> $label$
>><$wikify name="out" text="""<$list filter="[tag[$tag$]]"><$text 
>> text={{!!text}}/>""">
>>   <$action-setfield $tiddler="$target$" text=<> 
>> tags=<> />
>>
>> 
>> \end
>>
>> <>
>>
>> As of now the variables for the button are set by the <> which has to be manually set.
>>
>> My question/hope is if there is a way to prompt the user to input the 
>> variables, one at a time, via an input box/field/prompt, that would allow 
>> them to set the variables each time the button is pressed.
>>
>> 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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/055455d0-5dd3-4253-93c1-e43ae3cf104cn%40googlegroups.com.


Re: [tw5] A tour through my Zettelkasten

2021-06-08 Thread Soren Bjornstad
#1 is because for some reason I don't understand, initing a new TiddlyWiki 
doesn't add those plugins. They basically implement the saver for the 
Node.js wiki.

#2 and #3 I believe you could fix by doing "npm init" in the directory one 
up from TiddlyWiki. For #2 you could also totally just remove the 
check...the purpose is just to make sure the script is being run from the 
right folder so that all the relative paths work correctly, and the 
*package.json* file being in that directory was a convenient way to check.

On Tuesday, June 8, 2021 at 7:16:13 PM UTC-5 Tully Hansen wrote:

> Hi all, and thanks Soren for so generously sharing your script and 
> workflow here! I've got it mostly up and running on my Mac (macOS 10.14.6, 
> Homebrew something-or-other), but not without running into a few issues - 
> thought I'd note theme here for posterity (and anyone else who tries to get 
> this up and running):
>
>
>1. After decompiling the flat file to Node version (tiddlywiki --load 
>path/to/single/file.html --savewikifolder path/to/output/folder), I 
>was getting an error message when starting the TiddlyWiki server locally 
>with tiddlywiki --listen that read Warning: Plugins required for 
>client-server operation ("tiddlywiki/filesystem" and 
>"tiddlywiki/tiddlyweb") are missing from tiddlywiki.info file. Adding 
>these lines to the plugins listed in *tiddlywiki.info 
> *seemed to do the trick, though I've no idea 
>what that did/does.
>2. After that (or perhaps even before?) I was getting an error when 
>running scripts/publish.sh --push saying cd to project root failed. 
>Please check script. The script seemed to be looking for a 
>*package.json* file in root that I… didn't have? I know enough only to 
>know/Google that this is some Node thing, so I created this file in the 
> *My 
>Zettelkasten* folder containing a pair of empty curly braces (per 
>https://nodejs.dev/learn/the-package-json-guide). Seemed to work, and 
>seems to fail if I get rid of it, so *package.json* lives there now 
>permanently.
>3. The next exciting error was scripts/publish.sh: line 27: 
>/Users/tully/Dropbox (Personal)/tid/My 
>Zettelkasten/node_modules/.bin/tiddlywiki: No such file or directory when 
>running scripts/publish.sh --push. Looked like Node looking for 
>something in the wrong place, Googled 
>, poked at the script 
>some and ended up adding the --global flag to the three npm bins at 
>lines 27, 30, and 34. (Find npm bin and replace npm bin --global.)
>4. Finally, I was getting some errors auth'ing git/Github, which I was 
>being prompted to do on the command line – this was because of having 2FA 
>enabled, which meant creating a personal access token 
>
> 
>  
>rather than using my password. I just gave it every scope, probably 
>overkill…
>
> Hope this helps any future semitechnical Sorentiddlers get set up! And if 
> anyone wants to explain what I've done (or done wrong) above, I'm all ears. 
> Thanks again!
>
> On Thursday, 13 May 2021 at 15:05:01 UTC+10 Mohammad wrote:
>
>> Thank you for clarification! I myself use ideas/tasks and then extra tags 
>> like reading!
>> But your suggested categories make things more clear!
>> I think it is very important to get used to this new methodology and 
>> continuously do that!
>>
>>
>> On Thu, May 13, 2021 at 4:39 AM Soren Bjornstad  
>> wrote:
>>
>>> I walked through them in the video, but here's a quick summary of what 
>>> they're for:
>>>
>>>- Stubs – ideas that I haven't written about yet, usually with just 
>>>a title, or a quote, or a sentence or two describing what it will be 
>>> (items 
>>>tagged Stub)
>>>- Missing – same as in stock TW
>>>- Needing attention – some unspecified work needs to be done on the 
>>>tiddler, often I don't agree with the contents anymore, or it needs 
>>>reorganization
>>>- Needing excision – the tiddler turned into a bunch of confused 
>>>ideas put together and I need to think about what those are and split it 
>>> up 
>>>(items tagged NeedsExcision)
>>>- To-do items – anywhere I link to TODO, the tiddler is added to the 
>>>list, along with  the phrase after the link, so I get a nice list of 
>>>specific things that need to be fixed/added to
>>>- Open questions – things I don't know the answer to, but would like 
>>>to review periodically in case I have new experiences that might provide 
>>>answers (links to OpenQuestion)
>>>
>>> Side note: is anyone else experiencing a problem with the new Google 
>>> Groups while editing a post, where sometimes most of the screen will go 
>>> blank after pressing Page Down, leaving only a tiny sliver at the top 

[tw5] Re: Input Prompts to Provide Variables With Button?

2021-06-08 Thread Charlie Veniot
I can't really properly test this, but maybe this does the trick?

<$vars dataTiddler={{{ [addsuffix[ Data]] }}}>


Whatever description needs to be put here:


Label:
 <$edit-text tiddler={{{ [] }}} field="my_label"/> 

Tag:
 <$edit-text tiddler={{{ [] }}} field="my_tag"/> 
Target:
 <$edit-text tiddler={{{ [] }}} field="my_target"/> 

Targetting:
 <$edit-text tiddler={{{ [] }}} field="my_targetting"/> 



<$vars myLabel={{{ [get[my_label]] }}}
  myTag={{{ [get[my_tag]] }}}
  myTarget={{{ [get[my_target]] }}}
  myTargetting={{{ [get[my_targetting]] }}}>
<$button> Create <>
   <$wikify name="out" text="""<$list filter="[tag]"><$text 
text={{!!text}}/>""">
  <$action-setfield $tiddler=<> text=<> 
tags=<> />
   



  



On Tuesday, June 8, 2021 at 10:42:53 PM UTC-3 iamdar...@gmail.com wrote:

> Hello,
>
> I hope I didn't miss a clear answer for this but is there anyway to prompt 
> the user for a variable, with an input field, after a button press?
>
> I found the below code to combine multiple tiddlers into one based on a 
> shared tag, and then modified it to add a tag.
>
> \define join(label,tag,target,targettag)
> <$button> $label$
><$wikify name="out" text="""<$list filter="[tag[$tag$]]"><$text 
> text={{!!text}}/>""">
>   <$action-setfield $tiddler="$target$" text=<> 
> tags=<> />
>
> 
> \end
>
> <>
>
> As of now the variables for the button are set by the < which has to be manually set.
>
> My question/hope is if there is a way to prompt the user to input the 
> variables, one at a time, via an input box/field/prompt, that would allow 
> them to set the variables each time the button is pressed.
>
> 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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/95e94e2c-4ab4-46e2-8469-e5ab5518aecan%40googlegroups.com.


[tw5] Re: Input Prompts to Provide Variables With Button?

2021-06-08 Thread Charlie Veniot
Snippet of alternative code heading over in about 15 minutes !

On Tuesday, June 8, 2021 at 11:26:15 PM UTC-3 iamdar...@gmail.com wrote:

> Nope, not opposed to it. Just trying to simplify/automate the process of 
> combining individual tiddlers instead of manually editing the Tiddler each 
> time.
>
> The flow isn't set in stone!
>
> On Tuesday, June 8, 2021 at 10:15:31 PM UTC-4 cj.v...@gmail.com wrote:
>
>> Instead of press buttons, then prompt user for variable values via 
>> fields, would you be open to a flow change, i.e.:
>>
>>
>>1. Prompt user for values via fields
>>2. Press button?
>>
>>
>> On Tuesday, June 8, 2021 at 10:42:53 PM UTC-3 iamdar...@gmail.com wrote:
>>
>>> Hello,
>>>
>>> I hope I didn't miss a clear answer for this but is there anyway to 
>>> prompt the user for a variable, with an input field, after a button press?
>>>
>>> I found the below code to combine multiple tiddlers into one based on a 
>>> shared tag, and then modified it to add a tag.
>>>
>>> \define join(label,tag,target,targettag)
>>> <$button> $label$
>>><$wikify name="out" text="""<$list filter="[tag[$tag$]]"><$text 
>>> text={{!!text}}/>""">
>>>   <$action-setfield $tiddler="$target$" text=<> 
>>> tags=<> />
>>>
>>> 
>>> \end
>>>
>>> <>
>>>
>>> As of now the variables for the button are set by the <>> which has to be manually set.
>>>
>>> My question/hope is if there is a way to prompt the user to input the 
>>> variables, one at a time, via an input box/field/prompt, that would allow 
>>> them to set the variables each time the button is pressed.
>>>
>>> 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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/db5a5832-41ff-4bc6-9419-50de7682351fn%40googlegroups.com.


[tw5] Re: Input Prompts to Provide Variables With Button?

2021-06-08 Thread Darth Mole
Nope, not opposed to it. Just trying to simplify/automate the process of 
combining individual tiddlers instead of manually editing the Tiddler each 
time.

The flow isn't set in stone!

On Tuesday, June 8, 2021 at 10:15:31 PM UTC-4 cj.v...@gmail.com wrote:

> Instead of press buttons, then prompt user for variable values via fields, 
> would you be open to a flow change, i.e.:
>
>
>1. Prompt user for values via fields
>2. Press button?
>
>
> On Tuesday, June 8, 2021 at 10:42:53 PM UTC-3 iamdar...@gmail.com wrote:
>
>> Hello,
>>
>> I hope I didn't miss a clear answer for this but is there anyway to 
>> prompt the user for a variable, with an input field, after a button press?
>>
>> I found the below code to combine multiple tiddlers into one based on a 
>> shared tag, and then modified it to add a tag.
>>
>> \define join(label,tag,target,targettag)
>> <$button> $label$
>><$wikify name="out" text="""<$list filter="[tag[$tag$]]"><$text 
>> text={{!!text}}/>""">
>>   <$action-setfield $tiddler="$target$" text=<> 
>> tags=<> />
>>
>> 
>> \end
>>
>> <>
>>
>> As of now the variables for the button are set by the <> which has to be manually set.
>>
>> My question/hope is if there is a way to prompt the user to input the 
>> variables, one at a time, via an input box/field/prompt, that would allow 
>> them to set the variables each time the button is pressed.
>>
>> 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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/2bc1c6c7-9b87-449a-9505-9199f014d672n%40googlegroups.com.


[tw5] Re: Input Prompts to Provide Variables With Button?

2021-06-08 Thread Charlie Veniot
Instead of press buttons, then prompt user for variable values via fields, 
would you be open to a flow change, i.e.:


   1. Prompt user for values via fields
   2. Press button?


On Tuesday, June 8, 2021 at 10:42:53 PM UTC-3 iamdar...@gmail.com wrote:

> Hello,
>
> I hope I didn't miss a clear answer for this but is there anyway to prompt 
> the user for a variable, with an input field, after a button press?
>
> I found the below code to combine multiple tiddlers into one based on a 
> shared tag, and then modified it to add a tag.
>
> \define join(label,tag,target,targettag)
> <$button> $label$
><$wikify name="out" text="""<$list filter="[tag[$tag$]]"><$text 
> text={{!!text}}/>""">
>   <$action-setfield $tiddler="$target$" text=<> 
> tags=<> />
>
> 
> \end
>
> <>
>
> As of now the variables for the button are set by the < which has to be manually set.
>
> My question/hope is if there is a way to prompt the user to input the 
> variables, one at a time, via an input box/field/prompt, that would allow 
> them to set the variables each time the button is pressed.
>
> 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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/b2a2b658-573b-482a-9d90-173e1b88e073n%40googlegroups.com.


[tw5] Re: Create Save and close in one click ?

2021-06-08 Thread paulgilbert2000
Thank you Eric,

One more thing if possible , the field part somefield, i need to transclude 
a value there with spaces 

somefield={{!!title}}

and i cant add brackets , because this turns it into a string [[{{!!title}}
]]

Is there any way to insert the value inclosed in brackets ?

On Sunday, June 6, 2021 at 10:18:47 PM UTC+2 Eric Shulman wrote:

> addendum:
>
> If you want to create new tiddlers with automatic numbering if the tiddler 
> already exists, use $action-createtiddler, like this:
>
> <$button> click me
><$action-createtiddler $basetitle="SomethingNew" text="yabba dabba 
> doo!" tags="foo bar baz" caption="this is a caption" somefield="argle 
> bargle" />
> 
>
> -e
>
> On Sunday, June 6, 2021 at 1:14:27 PM UTC-7 Eric Shulman wrote:
>
>> On Sunday, June 6, 2021 at 12:43:25 PM UTC-7 mohamed...@hotmail.com 
>> wrote:
>>
>>> is there a way to have a button  create a new tiddler ,save it  and 
>>> close it all in one click?
>>>
>>
>> You can create a tiddler and set field values without ever opening it by 
>> using $action-setfield, like this:
>>
>> <$button> click me
>><$action-setfield $tiddler="SomethingNew" text="yabba dabba doo!" 
>> tags="foo bar baz" caption="this is a caption" somefield="argle bargle" />
>> 
>>  
>> -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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/69b7b27d-451a-4276-bb13-3f05fcc030f7n%40googlegroups.com.


[tw5] Input Prompts to Provide Variables With Button?

2021-06-08 Thread Darth Mole
Hello,

I hope I didn't miss a clear answer for this but is there anyway to prompt 
the user for a variable, with an input field, after a button press?

I found the below code to combine multiple tiddlers into one based on a 
shared tag, and then modified it to add a tag.

\define join(label,tag,target,targettag)
<$button> $label$
   <$wikify name="out" text="""<$list filter="[tag[$tag$]]"><$text 
text={{!!text}}/>""">
  <$action-setfield $tiddler="$target$" text=<> tags=<> 
/>
   

\end

<>

As of now the variables for the button are set by the 

Re: [tw5] A tour through my Zettelkasten

2021-06-08 Thread Tully Hansen
Hi all, and thanks Soren for so generously sharing your script and workflow 
here! I've got it mostly up and running on my Mac (macOS 10.14.6, Homebrew 
something-or-other), but not without running into a few issues - thought 
I'd note theme here for posterity (and anyone else who tries to get this up 
and running):


   1. After decompiling the flat file to Node version (tiddlywiki --load 
   path/to/single/file.html --savewikifolder path/to/output/folder), I was 
   getting an error message when starting the TiddlyWiki server locally with 
tiddlywiki 
   --listen that read Warning: Plugins required for client-server operation 
   ("tiddlywiki/filesystem" and "tiddlywiki/tiddlyweb") are missing from 
   tiddlywiki.info file. Adding these lines to the plugins listed in 
*tiddlywiki.info 
   *seemed to do the trick, though I've no idea what that did/does.
   2. After that (or perhaps even before?) I was getting an error when 
   running scripts/publish.sh --push saying cd to project root failed. 
   Please check script. The script seemed to be looking for a *package.json* 
   file in root that I… didn't have? I know enough only to know/Google that 
   this is some Node thing, so I created this file in the *My Zettelkasten* 
folder 
   containing a pair of empty curly braces 
   (per https://nodejs.dev/learn/the-package-json-guide). Seemed to work, and 
   seems to fail if I get rid of it, so *package.json* lives there now 
   permanently.
   3. The next exciting error was scripts/publish.sh: line 27: 
   /Users/tully/Dropbox (Personal)/tid/My 
   Zettelkasten/node_modules/.bin/tiddlywiki: No such file or directory when 
   running scripts/publish.sh --push. Looked like Node looking for 
   something in the wrong place, Googled 
   , poked at the script 
   some and ended up adding the --global flag to the three npm bins at 
   lines 27, 30, and 34. (Find npm bin and replace npm bin --global.)
   4. Finally, I was getting some errors auth'ing git/Github, which I was 
   being prompted to do on the command line – this was because of having 2FA 
   enabled, which meant creating a personal access token 
   

 
   rather than using my password. I just gave it every scope, probably 
   overkill…

Hope this helps any future semitechnical Sorentiddlers get set up! And if 
anyone wants to explain what I've done (or done wrong) above, I'm all ears. 
Thanks again!

On Thursday, 13 May 2021 at 15:05:01 UTC+10 Mohammad wrote:

> Thank you for clarification! I myself use ideas/tasks and then extra tags 
> like reading!
> But your suggested categories make things more clear!
> I think it is very important to get used to this new methodology and 
> continuously do that!
>
>
> On Thu, May 13, 2021 at 4:39 AM Soren Bjornstad  
> wrote:
>
>> I walked through them in the video, but here's a quick summary of what 
>> they're for:
>>
>>- Stubs – ideas that I haven't written about yet, usually with just a 
>>title, or a quote, or a sentence or two describing what it will be (items 
>>tagged Stub)
>>- Missing – same as in stock TW
>>- Needing attention – some unspecified work needs to be done on the 
>>tiddler, often I don't agree with the contents anymore, or it needs 
>>reorganization
>>- Needing excision – the tiddler turned into a bunch of confused 
>>ideas put together and I need to think about what those are and split it 
>> up 
>>(items tagged NeedsExcision)
>>- To-do items – anywhere I link to TODO, the tiddler is added to the 
>>list, along with  the phrase after the link, so I get a nice list of 
>>specific things that need to be fixed/added to
>>- Open questions – things I don't know the answer to, but would like 
>>to review periodically in case I have new experiences that might provide 
>>answers (links to OpenQuestion)
>>
>> Side note: is anyone else experiencing a problem with the new Google 
>> Groups while editing a post, where sometimes most of the screen will go 
>> blank after pressing Page Down, leaving only a tiny sliver at the top of 
>> the screen to display the thread? Super annoying.
>> On Monday, May 10, 2021 at 10:45:38 PM UTC-5 Mohammad wrote:
>>
>>> Hi Soren,
>>>
>>> On Tue, May 11, 2021 at 2:45 AM Soren Bjornstad  
>>> wrote:
>>>
 On Monday, May 10, 2021 at 2:43:34 PM UTC-5 Mohammad wrote:

> One question: How do you select the categories in the Write tab? I 
> mean for Ztellkasten point of view?
> I watch the viedo but not quite understand your philosophy here!
>

 I'm not sure I understand the question – are you asking how, 
 technically, the contents of each tab are aggregated, or why I chose that 
 list of "looking for attention" conditions?

>>>
>>> No, I do not mean technical implementation! but I ask about names 

[tw5] Re: [TW5] Highlight text

2021-06-08 Thread TW Tones
Also;

As tobiases Markup reference shows at the bottom 


You can use $$$ or https://tiddlywiki.com/#Typed%20Blocks%20in%20WikiText 
to use extension, or content types.

Tones

On Wednesday, 9 June 2021 at 09:15:52 UTC+10 David Gifford wrote:

> Just change @@highlight@@ to @@.highlight yourtext@@. Note the space 
> before your text.
>
> On Monday, June 30, 2014 at 1:14:41 AM UTC-5 James wrote:
>
>> Hi All,
>>
>> Just a quick simple question.  Can we highlight some of the text in our 
>> tiddler using the classic TW way, for instance @@highlight@@.
>>
>> It doesn't work in TW5 as I tried it.
>>
>> Does any one know how to do that?  
>>
>>
>> Regards
>> Jim
>>
>

-- 
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/866b87a9-11f9-4de1-b1c9-b5b47cbd0d8an%40googlegroups.com.


[tw5] Re: [TW5] Highlight text

2021-06-08 Thread David Gifford
Just change @@highlight@@ to @@.highlight yourtext@@. Note the space before 
your text.

On Monday, June 30, 2014 at 1:14:41 AM UTC-5 James wrote:

> Hi All,
>
> Just a quick simple question.  Can we highlight some of the text in our 
> tiddler using the classic TW way, for instance @@highlight@@.
>
> It doesn't work in TW5 as I tried it.
>
> Does any one know how to do that?  
>
>
> Regards
> Jim
>

-- 
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/0a39b8bd-40e8-4d23-adce-6ba1bd55c74en%40googlegroups.com.


[tw5] Re: Create Save and close in one click ?

2021-06-08 Thread TW Tones
Mohamed - See here perhaps the  EditButtons 
 
plugin 
is what you need?

Tones

On Monday, 7 June 2021 at 05:43:25 UTC+10 mohamed...@hotmail.com wrote:

>
> Hi,
>
> is there a way to have a button  create a new tiddler ,save it  and close 
> it all in one click?
>
>

-- 
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/7e524c71-0b6c-4362-a559-66ba853628c9n%40googlegroups.com.


[tw5] Re: [TW5] Highlight text

2021-06-08 Thread TW Tones
Donald.

No syntax has being dropped especially with css, to my knowledge and the 
ability to customise and extend tiddlywiki only grown. Please detail what 
"syntax" or use case you are having a problem with.

Regards
Tones

On Wednesday, 9 June 2021 at 03:56:55 UTC+10 dbo...@gmail.com wrote:

> Just found this so bear with me please, why did TW5 drop the simple syntax 
> that was in TW4?  Part of the utility of TW in my view was that its markup 
> was simple enough for anyone to use without having to be a css guru.  I 
> mean, I get it, the css provides lots of flexibility; but, unfortunately, 
> the simple accessible syntax was dropped?  That seems like a step backwards.
>
> Thus the question... why?
>
> Thanks,
> Donald.
>
>
> On Monday, June 30, 2014 at 10:28:21 AM UTC-7 Odder wrote:
>
>> Another possibility: you make a class in your stylesheet for example:
>>
>> .hl { background-color:yellow; }
>>
>>
>> and use it in your text like this:
>>
>> @@.hl HighlightedText@@ (space after .hl is important)
>>
>> This is similar to TWC.
>>
>> Regards 
>> Odder
>>
>

-- 
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/7fe17eb2-5c0c-442f-979a-e6b42f966860n%40googlegroups.com.


[tw5] Re: Shiraz list-content (experimental)

2021-06-08 Thread Saq Imtiaz
This is neat. I quite like it.
Is performance an issue if there are too many results?

On Friday, June 4, 2021 at 6:14:28 PM UTC+2 Mohammad wrote:

> Shiraz has a list-search which is very handy and list filtered tiddlers 
> with a search box lets you search in results!
> Shiraz has a lot of features that lets you create new tools with more ease!
>
> I have implemented another list macro called list-content! BUT I'm not 
> sure if it has already been published (introduced) by another 
> user/developer!
>
> The list-content is actually a search box, but instead of displaying 
> titles, it displays the tiddler with its content!
>
> As soon as it find any results it shows
>
> 1. each result as a Card
> 2. The resulting tiddler is displayed with title, subtitle, tags and text
> 3. It is possible to have multi column result or truncate the text and 
> show part of text
>
>
>
> Best wishes
> Mohammad
>

-- 
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/6a5e17bb-88b8-46ad-aa4b-da0bc439da97n%40googlegroups.com.


[tw5] Re: Unable to run TiddlyDesktop on Linux

2021-06-08 Thread strikke...@gmail.com
We had a similar problem earlier, discussed here 
https://groups.google.com/g/tiddlywiki/c/rXzdNBF7Ozg/m/uxNOfqY-AwAJ

I am using linux mint myself and start tiddlydesktop from an icon 
(programstarter) on my desktop. The first time I start it, it takes quite 
some time.


Birthe

On Tuesday, June 8, 2021 at 8:22:35 PM UTC+2 LinuxNoob wrote:

> I've tried following the guide but I'm still having trouble with the 
> installation. I think that the trouble is with the following step I've 
> written below, that makes the nw file executable:
>
> In the TiddlyDesktop folder, update the file permissions of the 
> Linux TiddlyDesktop Linux executable.
> sudo chmod +x nw
>
> When I follow through with the following step, which is:
>
> Finally, start up the TiddlyDesktop executable application up on 
> your Linux PC.
> ./nw 
>
> I get this message in the terminal:
>
>./nw: error while loading shared libraries: libgconf-2.so.5: cannot 
> open shared object file: No such file or directory
>
> Thanks in advance.
>
>
> On Friday, June 4, 2021 at 2:37:43 AM UTC-4 iamdar...@gmail.com wrote:
>
>> Hello and welcome!
>>
>> 2 things:
>>
>> 1) There is a known bug when trying to create a new TiddlyWiki file from 
>> within TiddlyDesktop. 
>> 2) Follow the steps outlined in the below link, including the downloading 
>> and renaming of the HTML file, and you should be good :) You can download 
>> the zip file via the browser initially if you want/it is easier. Still use 
>> the terminal for the other steps though. 
>>
>> https://www.addictivetips.com/ubuntu-linux-tips/get-tiddlywiki-on-linux/
>>
>> On Friday, June 4, 2021 at 2:13:38 AM UTC-4 LinuxNoob wrote:
>>
>>> I've just transitioned to Linux so I'm still a noob at figuring out even 
>>> the basics. If I understood the installation instructions properly, I am to 
>>> unzip the file after downloading it, and then run /nw
>>>
>>> That didn't work, so tried to get it to launch by using the terminal. I 
>>> navigated to the TiddlyDesktop file, and then wrote ./nw and that launched 
>>> the program. Unfortunately the program isn't running as intended. When I 
>>> ran the command in the terminal this error message appeared on the terminal:
>>> https://imgur.com/a/xnHStTf
>>>
>>> Also the program itself isn't working properly. As soon as I click on 
>>> create new wiki I get this page, which I'm unable to close by clicking on 
>>> the exit button on the top right corner
>>> https://imgur.com/a/1wiCj5X
>>>
>>> I have to use the system monitor to manually shut down the nw file in 
>>> order to exit this file.
>>>
>>> If anyone can help me with this I'd be very grateful.
>>>
>>

-- 
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/1fbf802f-980c-48ca-94d7-e1fef20ea5fen%40googlegroups.com.


[tw5] Re: Yet another workflow, adaptation and video to check out

2021-06-08 Thread si
Thanks for taking the time to share this David - it's always great to see 
new workflows.

I will likely steal your "current source" idea!
On Tuesday, 8 June 2021 at 01:27:38 UTC+1 David Gifford wrote:

>
> Hi everyone
>
> I am really into my new (yes, another one!) workflow for notetaking from 
> reading. It is faster than previous versions for what I like to grab from 
> books.
>
> Video:  https://www.youtube.com/watch?v=d9fyIJjfkgo
>
> Try it out yourself: 
> https://giffmex.org/experiments/notelines2.experiment.html
>
> Dave
>
>
>

-- 
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/b1f6ec0a-685a-4a82-b452-502fe8d2b624n%40googlegroups.com.


[tw5] Re: Unable to run TiddlyDesktop on Linux

2021-06-08 Thread LinuxNoob
I've tried following the guide but I'm still having trouble with the 
installation. I think that the trouble is with the following step I've 
written below, that makes the nw file executable:

In the TiddlyDesktop folder, update the file permissions of the 
Linux TiddlyDesktop Linux executable.
sudo chmod +x nw

When I follow through with the following step, which is:

Finally, start up the TiddlyDesktop executable application up on 
your Linux PC.
./nw 

I get this message in the terminal:

   ./nw: error while loading shared libraries: libgconf-2.so.5: cannot 
open shared object file: No such file or directory

Thanks in advance.


On Friday, June 4, 2021 at 2:37:43 AM UTC-4 iamdar...@gmail.com wrote:

> Hello and welcome!
>
> 2 things:
>
> 1) There is a known bug when trying to create a new TiddlyWiki file from 
> within TiddlyDesktop. 
> 2) Follow the steps outlined in the below link, including the downloading 
> and renaming of the HTML file, and you should be good :) You can download 
> the zip file via the browser initially if you want/it is easier. Still use 
> the terminal for the other steps though. 
>
> https://www.addictivetips.com/ubuntu-linux-tips/get-tiddlywiki-on-linux/
>
> On Friday, June 4, 2021 at 2:13:38 AM UTC-4 LinuxNoob wrote:
>
>> I've just transitioned to Linux so I'm still a noob at figuring out even 
>> the basics. If I understood the installation instructions properly, I am to 
>> unzip the file after downloading it, and then run /nw
>>
>> That didn't work, so tried to get it to launch by using the terminal. I 
>> navigated to the TiddlyDesktop file, and then wrote ./nw and that launched 
>> the program. Unfortunately the program isn't running as intended. When I 
>> ran the command in the terminal this error message appeared on the terminal:
>> https://imgur.com/a/xnHStTf
>>
>> Also the program itself isn't working properly. As soon as I click on 
>> create new wiki I get this page, which I'm unable to close by clicking on 
>> the exit button on the top right corner
>> https://imgur.com/a/1wiCj5X
>>
>> I have to use the system monitor to manually shut down the nw file in 
>> order to exit this file.
>>
>> If anyone can help me with this I'd be very grateful.
>>
>

-- 
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/d4df9bc2-ed59-4558-96e0-e3cd871530bfn%40googlegroups.com.


[tw5] Re: [TW5] Highlight text

2021-06-08 Thread Donald Bosart
Just found this so bear with me please, why did TW5 drop the simple syntax 
that was in TW4?  Part of the utility of TW in my view was that its markup 
was simple enough for anyone to use without having to be a css guru.  I 
mean, I get it, the css provides lots of flexibility; but, unfortunately, 
the simple accessible syntax was dropped?  That seems like a step backwards.

Thus the question... why?

Thanks,
Donald.


On Monday, June 30, 2014 at 10:28:21 AM UTC-7 Odder wrote:

> Another possibility: you make a class in your stylesheet for example:
>
> .hl { background-color:yellow; }
>
>
> and use it in your text like this:
>
> @@.hl HighlightedText@@ (space after .hl is important)
>
> This is similar to TWC.
>
> Regards 
> Odder
>

-- 
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/d4e549e0-9190-4b85-9179-a39312fd77fcn%40googlegroups.com.


[tw5] Edit-comptext plugin autocomplete with other fields?

2021-06-08 Thread David Gifford

Hi everyone

I have grown quite accustomed to snowgoon88's autocomplete of the 
Edit-Comptext plugin 
(http://snowgoon88.github.io/TW5-extendedit/#About%20the%20Edit-CompText%20plugin).
 
But I find that it would be very helpful in other fields, such as the list 
field. 

I am wondering if there is a way to tweak it so that one can have the 
autocomplete feature in at least the list field and, if possible, 
user-created custom fields.

Thanks in advance for any help on this!

-- 
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/e6c4d39f-091d-4300-a6de-d6b47e7a6f30n%40googlegroups.com.


[tw5] Re: Issue with PrintRiver plugin

2021-06-08 Thread axelmich...@gmail.com
That would be a hgreat thing, BTC!

I am  looking forward to  see an updated version  of the PrintRiver plugin!

Best regards
Axel

BurningTreeC schrieb am Freitag, 4. Juni 2021 um 16:51:21 UTC+2:

> Hi there, sorry that I've seen this post so late
>
> I'll definitively update the PrintRiver plugin and keep it up to date in 
> the future
>
> I need some time for that, but maybe the next week or the week after it 
> could be ready
>
> Best wishes, BTC
>
> steph@gmail.com schrieb am Freitag, 4. Juni 2021 um 16:38:34 UTC+2:
>
>> I'd like t bump this too -- PrintRiver looked like a great plugin 
>> solution to an important problem! 
>>
>> On Tuesday, May 25, 2021 at 10:34:04 PM UTC-4 R² wrote:
>>
>>> Hi all,
>>>
>>> Bumping this up as I have the same issue as S². Has anyone found a way 
>>> forward or knows how to contact BurningTreeC (as he is still contributing 
>>> to TiddlyWiki according to his Github page). The plugin works fine on 
>>> http://printriver.tiddlyspot.com/, which runs on TW 5.1.17. What could 
>>> have broken it? 
>>>
>>> Best,
>>> R²
>>>
>>

-- 
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/3cdaa965-e701-4f01-90d1-86c5e4b4142bn%40googlegroups.com.


Re: [tw5] Re: Is there a way to automatically save changes on TiddlyWiki?

2021-06-08 Thread PMario
Hi,

Seeing all of this mess, I think the best option would be to start with a 
new and empty wiki and export / import the content from your existing wiki. 

1) The number of tiddlers in a wiki can be found at: 
https://tiddlywiki.com/#%24%3A%2Fcore%2Fui%2FControlPanel%2FBasics .. 
It's the $:/ControlPanel : Info : Basics tab

So if you have a look at: "Number of tiddlers" and "Number of tags" you can 
see the number and the "Search icon". 
If you click the search icon, it will open the *AdvancedSearch : Filter* 
tab. 

There you can say: *Export - As JSON* ... You should do this, 

Then download emtpy.html  from 
tiddlywiki .com

 - Open it in the browser
 - Drag & Drop import the tiddlers.json file from the file explorer

The number of tiddlers should be similar as in 1)

 - Import them
 - Have a look at the ControlPanel : Info : Basics tab again. 
 - The number of tags should be the same as before. 

Tell me how it goes. 

-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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/e4e8dc58-3e2d-4a55-862f-938f8d835b3dn%40googlegroups.com.


[tw5] Re: Is there a way to automatically save changes on TiddlyWiki?

2021-06-08 Thread PMario
On Tuesday, June 8, 2021 at 5:53:33 AM UTC+2 TW Tones wrote:

I believe you already have the skills we need to use the local storage and 
> save changes process I proposed elsewhere.
>

I was also thinking about using local storage, as a second step, but I 
think at the moment, we need to fix the existing problem first. I think the 
setup is to "fragile" atm, to add an other unknown element.

just my thoughts.
-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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/1c5d2009-e885-4c0f-91d5-5dcc18659f23n%40googlegroups.com.


Re: [tw5] Re: Is there a way to automatically save changes on TiddlyWiki?

2021-06-08 Thread PMario
BACKUP FIRST

I don't know if your noteself plugins are active. ... The pouchdb saver is 
designed, to store information in the browser local storage. So if you 
change the PC it may be possible that some content is missing, since it is 
part of a different device. ... 

So if you disable the pouchdb plugins, it may be possible, that you don't 
see all tiddlers. Then you have to activate the plugins again. 

--

Removing a plugin is simple. 

 - Open the ControlPanel Plugins 
 tab 
 - Click a plugin, so it opens the plugin tiddler 
 
 - Click the More button and select "Delete Tiddler" 
 - You will be asked - Click yes

Done

--

On Tuesday, June 8, 2021 at 4:45:15 AM UTC+2 arlandri...@gmail.com wrote:

> Gosh I realized I was using 5 plugins at the same time (I was scared of 
> losing important data at this point!)


Using 5 plugins or more isn't a problem. .. The problem is, that you use 
several plugins, that mess with the "saving mechanism". 

They are usually designed to be used exclusively.

They were:
> 1) Timimi
>

Timimi is a "saver plugin" similar to my "file-backups" AddOn. So you 
should *not* have 2 of them active at the same time!

In 1 of your prior posts, you did mention, that Timimi didn't work for you 
... So I'm confused. 

How does your "save message" and "save dialogue" look like atm?
 

> 2) Tiddlypouch for TiddlyWiki
>

Tiddlypouch is part of https://noteself.org/ So if you don't use it, you 
should remove those elements. 
 

> 3) Plugin containing specific configuration for the Online version of 
> Noteself
>

Belongs to NoteSelf
 

> 4)The Pouchdb library as a TW5 plugin
>

Belongs to NoteSelf
 

> 5)TidllyWiki 5 core
>
> I wasn't able to disable only the last one, and I am trying to follow the 
> steps enlisted in your first advice.
>

You can't delete the TW core, since it would make the wiki useless. 

-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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/8a2634ac-5bd7-4cf1-b8f6-29fbc6b367adn%40googlegroups.com.