[tw5] Re: Data Model Changes 5.1.20 Moving BACK TO 5.1.18

2019-09-09 Thread TonyM
Kevin,

Just copy your wiki and suck it and see,

What is this data you speak of?, just tiddlers with content, json or data 
tiddlers?

I doubt there will be a problem.

Tony


On Tuesday, September 10, 2019 at 11:27:04 AM UTC+10, Kevin Kleinfelter 
wrote:
>
> I've got wiki data created/updated with Tiddlywiki 5.1.20.  I'd like to 
> move it to a machine running BobExe, and the latest BobExe looks like 
> Tiddlywiki 5.1.18.
>
> Have there been changes to the data model which would make running a 
> 5.1.18 wiki server with 5.1.20 data a bad idea?
> TIA
>
>

-- 
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/e35aef92-9f83-4215-a591-ea3dfcb1ba2f%40googlegroups.com.


[tw5] Re: Sample (random) filter operation

2019-09-09 Thread TonyM
Devin,

Thanks for sharing. This would be very useful to some. Could you please 
outline how to install it for use so a broader audience can make use of it.?

Regards
Tony

On Tuesday, September 10, 2019 at 6:05:43 AM UTC+10, Devin Weaver wrote:
>
> For anyone curious here is a neat filter option to grab a random tiddler 
> from a list:
>
> <$list filter="[tag[quote]sample[3]]">
> <$transclude/>
> 
>
> will show you three random tiddlers with the quote tag.
>
> /*\
> title: $:/filters/sample.js
> type: application/javascript
> module-type: filteroperator
>
> Filter to return random set from the current list.
>
> \*/
> (function(){
>
> /*jslint node: true, browser: true */
> /*global $tw: false */
> "use strict";
>
> /*
> Export our filter function
> */
> exports.sample = function(source,operator,options) {
>   var sampleIndex;
>   var allTitles = [];
>   var samples = [];
>   var numberOfSamples = parseInt(operator.operand) || 1;
>   source(function(tiddler,title) { allTitles.push(title); });
>   if (numberOfSamples >= allTitles.length) { return allTitles; }
>   for (var i = 0; i < numberOfSamples; i++) {
> sampleIndex = Math.floor(Math.random() * allTitles.length);
> samples = samples.concat(allTitles.splice(sampleIndex, 1));
>   }
>   return samples;
> };
>
> })();
>
>
>

-- 
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/b5a86d89-181e-410e-9ef6-1061b4d1968d%40googlegroups.com.


[tw5] Data Model Changes 5.1.20 Moving BACK TO 5.1.18

2019-09-09 Thread Kevin Kleinfelter
I've got wiki data created/updated with Tiddlywiki 5.1.20.  I'd like to 
move it to a machine running BobExe, and the latest BobExe looks like 
Tiddlywiki 5.1.18.

Have there been changes to the data model which would make running a 5.1.18 
wiki server with 5.1.20 data a bad idea?
TIA

-- 
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/b10d155f-0efd-4dca-8749-e87700220370%40googlegroups.com.


[tw5] Re: What is a good naming scheme for imported images?

2019-09-09 Thread TonyM
Zachary,

For me this would depend on if I need the title of the image to be 
searchable or not, for me usually not. Personally I use a business name and 
projectname as follows
$:/business/project/images/imagename
eg
$:/PSaT/MyMenus/images/Hamburger.jpg

Then when I assign or display images I use this full name, or get tricky 
with the `[prefix[$:/PSaT/MyMenus/images/]]` I often place the image name 
into a icon or other field as well.

In time I hope to automate the addition of such name prefixes into the 
import process.

Regards
Tony

On Tuesday, September 10, 2019 at 2:28:36 AM UTC+10, Zachary Storer wrote:
>
> Hello,
>
> When importing images into a tiddler with _canonical_uri, I'm currently 
> naming the tiddler ImageSkateboard, and then I'm tagging the image with an 
> [Image] tag.
> I'm wondering if there is a better way to name the actual tiddler than 
> ImageTiddlerNameHere, especially since I already have an [Image] tag.
>
> How do you name and tag tiddlers for imported images or other multimedia?
>
> 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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/08a511de-9edf-453b-91ef-47d33114e5d6%40googlegroups.com.


Re: [tw5] Can we prefill known tags?

2019-09-09 Thread TonyM
Devin,

For most tiddler I create I have a template to create them where I can 
pre-populate the tags, such templates have the system prefix $:/ and 
whenever I list of reference such tags I say "[!is[system]" so the template 
source does not appear. 

However in your use case I would assume Pending, InProgress, inReview are 
mutually exclusive, if you have one, you do not have the other. In this 
case I would create a status field and allow only one value at a time 
rather than use tags. Using tags you need to go out of your way to remove 
the last tag.

Regards
Tony

On Tuesday, September 10, 2019 at 1:28:48 AM UTC+10, Devin Weaver wrote:
>
> I thought about that. How do you prevent that tiddler from being included 
> in any lists for said tags?
>
> On Monday, September 9, 2019 at 10:48:13 AM UTC-4, Aidan Grey wrote:
>>
>> Lots of ways...
>>
>> I keep a tag tiddler, just to hold tags like this - that's probably the 
>> easiest thing to do.
>>
>> On Mon, Sep 9, 2019, 8:43 AM Devin Weaver,  wrote:
>>
>>> I noticed a situation in my TiddlyWiki where I will tag a tiddler with 
>>> one of three tags: Pending, InProgress, inReview. But when one of those 
>>> tags has no tiddlers it is removed from the drop down when editing 
>>> tiddlers. Which means that I have to type the tag in when there there are 
>>> no tiddlers currently tagged with it.
>>>
>>> Is there a way to prefill that list? In normal usage I like that tags 
>>> are removed from the drop down but in this one edge case I like to pin some 
>>> tags to always be in the drop down for selecting even when there are no 
>>> tiddlers currently tagged with that tag.
>>>
>>> -- 
>>> You received this message because you are subscribed to the Google 
>>> Groups "TiddlyWiki" group.
>>> To unsubscribe from this group and stop receiving emails from it, send 
>>> an email to tiddl...@googlegroups.com.
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/tiddlywiki/0e8d2198-3aa8-4820-8b43-be4968d6f905%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/94519d2f-b90e-444c-af8b-0bff9c37b1c6%40googlegroups.com.


[tw5] Re: Still looking for an Android browser that allows tiddlywiki saves

2019-09-09 Thread TonyM
Alan,

The apps Tiddliod and Quinoid work well on android with their own built in 
browser interface.


   - What are you looking for as far as functionality?
   - If you have a server or host out there (tiddlyspot, node, php) of 
   course you can use a saving mechanism to save to the server rather than the 
   Android itself and thus use them in any valid browser if that is your 
   specific requirement. There are also methods to use cloud drives as well.
   - Keep in mind once a single file wiki is open in your browser you can 
   go offline with it, and save when back online.
   - Further with 5.1.20 you can even make use of local storage (I have not 
   tested on mobile yet).
   - It is also possible to install a node version on a mobile so you can 
   access it via a local host through your browser using termux.


Regards
Tony



On Tuesday, September 10, 2019 at 10:27:46 AM UTC+10, AlanBCohen wrote:
>
> Still looking for an Android browser that allows Tiddly Wiki saves. All 
> the other workarounds just seem to be added aggravation. I'm still using 
> andtidwiki.

-- 
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/b77c9bae-a520-49a2-9ccb-cb717d553ba5%40googlegroups.com.


[tw5] Still looking for an Android browser that allows tiddlywiki saves

2019-09-09 Thread AlanBCohen
Still looking for an Android browser that allows Tiddly Wiki saves. All the 
other workarounds just seem to be added aggravation. I'm still using andtidwiki.

-- 
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/cbac48d8-632c-4fdf-bfde-62b540fd1d48%40googlegroups.com.


[tw5] Re: [TW5] Introducing TiddlyTables a plugin for creating sortable tables.

2019-09-09 Thread TonyM
Alan,

Thanks so much for sharing this to the community. I have started 
investigating and its looks great. I see you have put in the work to 
publish it. I have being working with tables and field definitions of late 
myself so will provide a feedback if I can. 

It is perhaps not possible for me to incorporate this into some existing 
solutions but I see great value going forward.

Regards
Tony 

On Tuesday, September 10, 2019 at 5:01:41 AM UTC+10, Alan Aldrich wrote:
>
> Greetings All, I am a long time fan of TiddlyWiki but new to the 
> community. First and foremost, I would like to thank Jeremy for creating 
> TiddlyWiki and everyone who supports it. As a way to learn the ins and outs 
> of TiddlyWiki I started a "table builder" plugin that I have been gradually 
> improving in my spare time. I finally got around to finishing it up 
> recently and would like to share it with the community. 
>
> The ability for the entire wiki to import/export to/from a spreadsheet is 
> a fascinating feature of TiddlyWiki, and I wanted to build on that strength 
> by creating a simple way to query data in the wiki and display it in a 
> tabular way. I am calling it TiddlyTables. The following link contains 
> installation instructions and examples:
>
> http://tiddlytables.tiddlyspot.com/
>
> There is also a "task manager" plugin that can be downloaded. Its primary 
> purpose is to demonstrate the features of TiddlyTables. I look forward to 
> hearing from you. I will do my best to answer questions and I appreciate 
> any feedback. 
>
> Thanks,
> Alan Aldrich
>

-- 
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/01cd3438-d63f-418f-9ff8-9fa82de21d12%40googlegroups.com.


[tw5] Re: [TW5] Introducing TiddlyTables a plugin for creating sortable tables.

2019-09-09 Thread Cade Roux
This is very exciting for me.  I'm using a lot of tables of test results 
generated from my data warehouse build/deploy/test process.  Currently they 
are regular TiddlyTables of the form |column|column|column| with checkboxes 
for when individual test case results have been validated against 
requirements but this looks like it could be a good avenue to get more 
functionality.

I look forward to checking it out soon.

Thanks,

Cade

On Monday, September 9, 2019 at 2:01:41 PM UTC-5, Alan Aldrich wrote:
>
> Greetings All, I am a long time fan of TiddlyWiki but new to the 
> community. First and foremost, I would like to thank Jeremy for creating 
> TiddlyWiki and everyone who supports it. As a way to learn the ins and outs 
> of TiddlyWiki I started a "table builder" plugin that I have been gradually 
> improving in my spare time. I finally got around to finishing it up 
> recently and would like to share it with the community. 
>
> The ability for the entire wiki to import/export to/from a spreadsheet is 
> a fascinating feature of TiddlyWiki, and I wanted to build on that strength 
> by creating a simple way to query data in the wiki and display it in a 
> tabular way. I am calling it TiddlyTables. The following link contains 
> installation instructions and examples:
>
> http://tiddlytables.tiddlyspot.com/
>
> There is also a "task manager" plugin that can be downloaded. Its primary 
> purpose is to demonstrate the features of TiddlyTables. I look forward to 
> hearing from you. I will do my best to answer questions and I appreciate 
> any feedback. 
>
> Thanks,
> Alan Aldrich
>

-- 
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/b6c8f3b9-d24d-4d29-ab0f-d19d7d6879b4%40googlegroups.com.


[tw5] Re: [TW5] Introducing TiddlyTables a plugin for creating sortable tables.

2019-09-09 Thread David Gifford
Great, Alan! I added it to the TiddlyWiki toolmap under Tables 
(https://dynalist.io/d/zUP-nIWu2FFoXH-oM7L7d9DM)

On Monday, September 9, 2019 at 2:01:41 PM UTC-5, Alan Aldrich wrote:
>
> Greetings All, I am a long time fan of TiddlyWiki but new to the 
> community. First and foremost, I would like to thank Jeremy for creating 
> TiddlyWiki and everyone who supports it. As a way to learn the ins and outs 
> of TiddlyWiki I started a "table builder" plugin that I have been gradually 
> improving in my spare time. I finally got around to finishing it up 
> recently and would like to share it with the community. 
>
> The ability for the entire wiki to import/export to/from a spreadsheet is 
> a fascinating feature of TiddlyWiki, and I wanted to build on that strength 
> by creating a simple way to query data in the wiki and display it in a 
> tabular way. I am calling it TiddlyTables. The following link contains 
> installation instructions and examples:
>
> http://tiddlytables.tiddlyspot.com/
>
> There is also a "task manager" plugin that can be downloaded. Its primary 
> purpose is to demonstrate the features of TiddlyTables. I look forward to 
> hearing from you. I will do my best to answer questions and I appreciate 
> any feedback. 
>
> Thanks,
> Alan Aldrich
>

-- 
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/5c1bbb60-d189-492b-8c09-3649329a5a4f%40googlegroups.com.


[tw5] Re: [TW5] Introducing TiddlyTables a plugin for creating sortable tables.

2019-09-09 Thread PMario
Hi Alan,

Very interesting project. ... Didn't look at the code, but the shown 
use-cases are really great!!
Thx for sharing!

-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/a6d96ee8-d051-48f9-a861-6b782a33f073%40googlegroups.com.


[tw5] Re: Popup images?

2019-09-09 Thread Anjar
Hi Leon,

It is also possible to do enlarge the image inside the tiddler. Something 
like this should work:


.thumb{
width: 25%
}
.full{
width: 100%
}


<$button class="tc-btn-invisible" set="temp" setTo="full">




where you have to input the image path where I have written ***imgsrc***. In 
addition you have to create a tiddler with title "temp" and text "thumb"

Best,
Anders

mandag 9. september 2019 20.55.23 UTC+2 skrev Jon følgende:
>
> Hi Leon,
>
> This will open up the image in the browser. 
>
> Put the following in a tiddler and tag it with  $:/tags/Macro
>
>
> \define imageit(image:"image.jpg" path:"FolderName/")
>
>  height="45%" />
> \end
>
>
> Then in the tiddler you want the image, include the following:
>
> <>
>
>
> https://groups.google.com/forum/#!topic/tiddlywiki/P2olY8Vpv94
>
> Regards
> Jon
>
> On Monday, 9 September 2019 05:07:22 UTC+1, Leon Gomez wrote:
>>
>> Is there any way to pop up, open or enlarge images to their natural size 
>> (ideally within the 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/f0eb5ee8-6291-40f2-8d8b-88c214b9c5e0%40googlegroups.com.


[tw5] Sample (random) filter operation

2019-09-09 Thread Devin Weaver
For anyone curious here is a neat filter option to grab a random tiddler 
from a list:

<$list filter="[tag[quote]sample[3]]">
<$transclude/>


will show you three random tiddlers with the quote tag.

/*\
title: $:/filters/sample.js
type: application/javascript
module-type: filteroperator

Filter to return random set from the current list.

\*/
(function(){

/*jslint node: true, browser: true */
/*global $tw: false */
"use strict";

/*
Export our filter function
*/
exports.sample = function(source,operator,options) {
  var sampleIndex;
  var allTitles = [];
  var samples = [];
  var numberOfSamples = parseInt(operator.operand) || 1;
  source(function(tiddler,title) { allTitles.push(title); });
  if (numberOfSamples >= allTitles.length) { return allTitles; }
  for (var i = 0; i < numberOfSamples; i++) {
sampleIndex = Math.floor(Math.random() * allTitles.length);
samples = samples.concat(allTitles.splice(sampleIndex, 1));
  }
  return samples;
};

})();


-- 
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/7ad1fb46-382e-417c-a5a4-6e412274a2e8%40googlegroups.com.


Re: [tw5] Re: Turning off codeinline parser rule corrupts TW5

2019-09-09 Thread PMario
Hi,
It's at: https://github.com/Jermolene/TiddlyWiki5/issues/4254
-m

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/aa227d39-becd-4e37-93c5-63c09ac68a08%40googlegroups.com.


[tw5] [TW5] Introducing TiddlyTables a plugin for creating sortable tables.

2019-09-09 Thread Alan Aldrich
Greetings All, I am a long time fan of TiddlyWiki but new to the community. 
First and foremost, I would like to thank Jeremy for creating TiddlyWiki 
and everyone who supports it. As a way to learn the ins and outs of 
TiddlyWiki I started a "table builder" plugin that I have been gradually 
improving in my spare time. I finally got around to finishing it up 
recently and would like to share it with the community. 

The ability for the entire wiki to import/export to/from a spreadsheet is a 
fascinating feature of TiddlyWiki, and I wanted to build on that strength 
by creating a simple way to query data in the wiki and display it in a 
tabular way. I am calling it TiddlyTables. The following link contains 
installation instructions and examples:

http://tiddlytables.tiddlyspot.com/

There is also a "task manager" plugin that can be downloaded. Its primary 
purpose is to demonstrate the features of TiddlyTables. I look forward to 
hearing from you. I will do my best to answer questions and I appreciate 
any feedback. 

Thanks,
Alan Aldrich

-- 
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/ac15bee4-dd10-4ef4-8118-7cbcadfc9bcf%40googlegroups.com.


[tw5] Re: Popup images?

2019-09-09 Thread Jon
Hi Leon,

This will open up the image in the browser. 

Put the following in a tiddler and tag it with  $:/tags/Macro


\define imageit(image:"image.jpg" path:"FolderName/")


\end


Then in the tiddler you want the image include:

<>


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

Regards
Jon

On Monday, 9 September 2019 05:07:22 UTC+1, Leon Gomez wrote:
>
> Is there any way to pop up, open or enlarge images to their natural size 
> (ideally within the 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/72375877-cb3e-49f3-a5a1-94870b676b57%40googlegroups.com.


Re: [tw5] Re: Re-installing TiddlyWiki

2019-09-09 Thread Mohammad Rahmani
Thanks Arlen for your clarification!
I recommend to add this into your documentation site also!


Best wishes
Mohammad


On Mon, Sep 9, 2019 at 10:06 PM Arlen Beiler  wrote:

> You can put anything you want inside the webroot folder. Then set the tree
> property to the folder path. Relative paths are relative to the
> settings.json file, so "tree": "../webroot", would expect it one folder
> up.
>
> On Sat, Sep 7, 2019 at 9:24 AM Mohammad Rahmani <
> mohammad.rahm...@gmail.com> wrote:
>
>> Hi Arlen,
>>  Very clear explanation!
>> As a newbie in using Tiddlyserver what should go in webroot folder?
>> I followed your instruction step by step and I was successful to setup
>> Tiddlyserver, but then
>> I had nothing inside webroot!
>>
>> Furthermore, how about other wiki if I want to load them through
>> TiddlyServer?
>>
>> I am sure you have already given answer to all these questions, but as a
>> newbie I wish to follow up the instruction and be able to setup
>> TiddlyServer  + working Wikis.
>>
>>
>>
>>
>> Best wishes
>> Mohammad
>>
>>
>> On Sat, Sep 7, 2019 at 8:57 AM Arlen Beiler  wrote:
>>
>>> Just thought I'd take a minute to chime in here. I apologize that
>>> TiddlyServer appears so complex to get started with. I'm quite sure it is
>>> much simpler than the other options you've mentioned above, especially IIS
>>> and WebDAV. So here's how to get started.
>>>
>>> https://github.com/Arlen22/TiddlyServer/releases/tag/2.1.3
>>>
>>> Open that page, and scroll down to the bottom. Download your source
>>> archive zip or tar.gz, whichever you prefer. Here's a screenshot of what
>>> I'm referring to.
>>>
>>> [image: Screenshot 2019-09-07 00.23.07.png]
>>>
>>> Extract it to an empty folder so you don't risk merging with an existing
>>> folder. Once you extract it you can move it wherever you want it to be.
>>>
>>> https://nodejs.org/en/
>>>
>>> Go to NodeJS.org and download the LTS version of Node, which currently
>>> is 10.x, and install it on the computer you will be running TiddlyServer
>>> on. It's pretty straightforward, and the default options should work fine.
>>>
>>> You don't actually need to install the whole thing, you can also just
>>> download a zip file and extract node.exe into the TiddlyServer folder to
>>> make a portable install. Since you're working with IIS I'm sure you have
>>> enough computer experience know what I'm talking about, but if I'm not
>>> making myself clear, just install NodeJS like I described above.
>>>
>>> Now, here's the part that most people find tricky. Copy
>>> example-settings.json and name it settings.json. Then open it in your
>>> favorite editor and read the comments in it. You can leave the comments
>>> there, just uncomment one of the lines inside the bindInfo object according
>>> to your particular use case. I'm guessing it would probably be the first or
>>> second of the three options. Here's what it looks like.
>>>
>>>   "bindInfo": {
>>> // V V V V Uncomment one of the following V V V V
>>>
>>> //bind to localhost only (you can specify any other ip address in
>>> this array, and it will bind to all available addresses)
>>> // "bindAddress": ["127.0.0.1"],
>>>
>>> //bind to 0.0.0.0
>>> // "bindWildcard": true
>>>
>>> //workaround for android devices (bind to all available private ip
>>> addresses on startup)
>>> // "bindWildcard": false, "bindAddress": ["192.168.0.0/16", "
>>> 10.0.0.0/8", "172.31.0.0/16"], "filterBindAddress": true,
>>>   },
>>>
>>> The entire documentation for the settings.json file is at
>>> https://arlen22.github.io/tiddlyserver/docs/serverconfig.html and the
>>> tree property is the first item on the page. Here's a really simple example
>>> to get you started.
>>>
>>> "tree": {
>>> "myfolder": "../personal",
>>> "workstuff": "../work",
>>> "user": "~/Desktop/random",
>>> "projects_group": {
>>> "tiddlyserver": "~/Desktop/Github/TiddlyServer",
>>> "material-theme": "~/Dropbox/Material Theme"
>>> }
>>> }
>>>
>>>
>>> And that's all there is to it. Once you have your settings.json file
>>> setup, just run "node server.js" to start the server.
>>>
>>> I made TiddlyServer simple because I want it to be simple for me to use
>>> every day :) I'm just really bad at communicating that sometimes.
>>>
>>> Hope that helps
>>> Arlen
>>>
>>> On Mon, Jun 24, 2019 at 3:55 AM Adrian Holbrook <
>>> adrian.holbr...@gmail.com> wrote:
>>>
 I thought I had sorted out my problems with saving TWs but I have had a
 few PC problems and after a complete reinstall I am back into trying to
 sort out the problem again. I cannot seem to get TWCloud to work now and I
 am thinking of trying out IIS and WebDAV. Can I still keep my TW files in
 my Dropbox folder on the PC or do I have to locate them on the C: Drive? My
 dropbox folder is located on a separate Hard Drive - not C:

 On Sunday, April 14, 2019 at 7:09:45 AM UTC+1, PMario wrote:
>
> Hi,
>
> since you use win10, WebDav could be an option. I 

Re: [tw5] Re: plugins folder : TW + Node.JS

2019-09-09 Thread Mohammad Rahmani
Hi Jeremy!
 Thanks for clarification! It seems there is an exception!
If plugins are installed in Tiddlywiki/plugins (the root for tw under
node.js) we can have

-plugins
---tiddlywiki
--- -- plugin1
--- -- plugin2
---kookma
--- -- slider

Best wishes
Mohammad


On Mon, Sep 9, 2019 at 5:46 PM Jeremy Ruston 
wrote:

> Hi Mohammad
>
> Plugin folders must be immediate children of the wiki “plugins” folder. In
> other words, you’ll have to move the “slider” plugin folder to be a sibling
> of “relink”, “kookma” and “chooser”.
>
> Best wishes
>
> Jeremy.
>
> On 9 Sep 2019, at 09:42, Mohammad  wrote:
>
> resend for who read emails
>
> In brief HOW plugins stored in subfolders under plugins folder can be
> loaded into mywiki?
>
> - mywiki
> -- plugins
> -- -- subfolder1
> -- -- -- plugin1
> -- -- -- plugin2
> -- -- pluginx
> -- -- pluginy
>
> The problem is with plugin1 and plugin2.
>
> --Mohammad
>
>
> On Monday, September 9, 2019 at 1:07:43 PM UTC+4:30, Mohammad wrote:
>>
>> On Node.JS Tiddlywiki I have a wiki working fine!
>>
>> The folder structure is like this:
>> mywiki
>> -- tiddlers
>> -- plugins
>> -- tiddlywiki.info
>>
>> In the plugins folder I have plugins like below
>>
>> -- plugins
>> relink
>> kookma
>> --slider
>> chooser
>>
>> relink, slider, and chooser are my plugins which have a correct TW
>> structure and tested separately!
>>
>> The plugins are directly under plugins folder all work fine. but those
>> are in subfolder are not loaded and warning message is shown when I start
>> the wiki as below
>>
>> tiddlywiki mywiki --listen
>>
>> In brief HOW plugins stored in subfolders under plugins folder can be
>> loaded into mywiki?
>>
>> 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/d382deca-9c14-4c10-a5be-25c801ec9f1b%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/C7A980FE-E80E-4947-8376-C097C1B60B16%40gmail.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/CAAV1gMD%2BZuitF_naH-jLhEdJkCQ0wCv7H9ZeK4g49VNXt9Es4A%40mail.gmail.com.


[tw5] Re: Sorting or restricting a list filter by index

2019-09-09 Thread 'Mark S.' via TiddlyWiki
It depends on the form of your data to be imported. For instance, if it's a 
spreadsheet, there is the Exel importer edition.

Good luck!

On Monday, September 9, 2019 at 9:02:30 AM UTC-7, Christian Macedo wrote:
>
> Hi Mark, 
>
> Yep it was data dictionary tiddler I meant. My mistake. 
>
> By the looks of it, as you say, this won't be a working solution. And, 
> I'll need to use the fields instead. The issue is that filling in fields is 
> to my mind requires a little more effort. Unless of course there's some 
> import mechanism. 
>
> Either way, many thanks. I'll have a look at importing. 
>
> Christian. 
>
> On Monday, 9 September 2019 16:52:35 UTC+1, Mark S. wrote:
>>
>> By "data tiddlers", do you mean "data dictionary tiddlers" ?
>>
>> If so, I don't think your "sort" here is actually doing anything. Sort 
>> only works on fields.
>>
>> Data dictionaries are useful when you have long lists of information that 
>> don't benefit from the
>> overhead of a normal tiddler. Or when you have a lot of simple 
>> information you copy and paste 
>> into a single tiddler. But if you have a data tiddler for each person, 
>> then there is no
>> benefit from the dictionary, and things like this will be more 
>> complicated, partially because
>> there is little core functionality for dictionaries.
>>
>> If you're using regular tiddlers, then you're filter becomes
>>
>>   <$list filter='[tag[person]field:team[Android]]'>
>>
>> Note that it doesn't sort on team -- they'll all have same entry!
>>
>> Mark
>>
>> On Monday, September 9, 2019 at 6:02:40 AM UTC-7, Christian Macedo wrote:
>>>
>>> I've got a set of data tiddlers each of which are structured as below
>>>
>>> name:James Brown
>>> team:Android
>>> location:Norway
>>> ...
>>>
>>> And a list filter that looks like this. 
>>>
>>> 
>>>   NAME
>>>   TEAM
>>>   LOCATION
>>>   <$list filter='[tag[person]sort[team]]'>
>>> 
>>>   <$link to=<>><$view index='name'/>
>>>   {{##team}}
>>>   {{##location}}
>>> 
>>>   
>>> 
>>>
>>> A table is produced with all the tiddlers that match the filter 
>>> criteria. What I would like to do however is to modify the filter such that 
>>> it shows a table row for for each tiddler whose *team *value is 
>>> 'Android'.
>>>
>>> btw, data tiddlers are my new favourite thing. Congrats to the whole 
>>> team. Again!
>>>
>>

-- 
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/1a754c0b-ddab-4c10-8b4a-a8b5b801fd8c%40googlegroups.com.


Re: [tw5] Re: Re-installing TiddlyWiki

2019-09-09 Thread Arlen Beiler
You can put anything you want inside the webroot folder. Then set the tree
property to the folder path. Relative paths are relative to the
settings.json file, so "tree": "../webroot", would expect it one folder up.

On Sat, Sep 7, 2019 at 9:24 AM Mohammad Rahmani 
wrote:

> Hi Arlen,
>  Very clear explanation!
> As a newbie in using Tiddlyserver what should go in webroot folder?
> I followed your instruction step by step and I was successful to setup
> Tiddlyserver, but then
> I had nothing inside webroot!
>
> Furthermore, how about other wiki if I want to load them through
> TiddlyServer?
>
> I am sure you have already given answer to all these questions, but as a
> newbie I wish to follow up the instruction and be able to setup
> TiddlyServer  + working Wikis.
>
>
>
>
> Best wishes
> Mohammad
>
>
> On Sat, Sep 7, 2019 at 8:57 AM Arlen Beiler  wrote:
>
>> Just thought I'd take a minute to chime in here. I apologize that
>> TiddlyServer appears so complex to get started with. I'm quite sure it is
>> much simpler than the other options you've mentioned above, especially IIS
>> and WebDAV. So here's how to get started.
>>
>> https://github.com/Arlen22/TiddlyServer/releases/tag/2.1.3
>>
>> Open that page, and scroll down to the bottom. Download your source
>> archive zip or tar.gz, whichever you prefer. Here's a screenshot of what
>> I'm referring to.
>>
>> [image: Screenshot 2019-09-07 00.23.07.png]
>>
>> Extract it to an empty folder so you don't risk merging with an existing
>> folder. Once you extract it you can move it wherever you want it to be.
>>
>> https://nodejs.org/en/
>>
>> Go to NodeJS.org and download the LTS version of Node, which currently is
>> 10.x, and install it on the computer you will be running TiddlyServer on.
>> It's pretty straightforward, and the default options should work fine.
>>
>> You don't actually need to install the whole thing, you can also just
>> download a zip file and extract node.exe into the TiddlyServer folder to
>> make a portable install. Since you're working with IIS I'm sure you have
>> enough computer experience know what I'm talking about, but if I'm not
>> making myself clear, just install NodeJS like I described above.
>>
>> Now, here's the part that most people find tricky. Copy
>> example-settings.json and name it settings.json. Then open it in your
>> favorite editor and read the comments in it. You can leave the comments
>> there, just uncomment one of the lines inside the bindInfo object according
>> to your particular use case. I'm guessing it would probably be the first or
>> second of the three options. Here's what it looks like.
>>
>>   "bindInfo": {
>> // V V V V Uncomment one of the following V V V V
>>
>> //bind to localhost only (you can specify any other ip address in
>> this array, and it will bind to all available addresses)
>> // "bindAddress": ["127.0.0.1"],
>>
>> //bind to 0.0.0.0
>> // "bindWildcard": true
>>
>> //workaround for android devices (bind to all available private ip
>> addresses on startup)
>> // "bindWildcard": false, "bindAddress": ["192.168.0.0/16", "
>> 10.0.0.0/8", "172.31.0.0/16"], "filterBindAddress": true,
>>   },
>>
>> The entire documentation for the settings.json file is at
>> https://arlen22.github.io/tiddlyserver/docs/serverconfig.html and the
>> tree property is the first item on the page. Here's a really simple example
>> to get you started.
>>
>> "tree": {
>> "myfolder": "../personal",
>> "workstuff": "../work",
>> "user": "~/Desktop/random",
>> "projects_group": {
>> "tiddlyserver": "~/Desktop/Github/TiddlyServer",
>> "material-theme": "~/Dropbox/Material Theme"
>> }
>> }
>>
>>
>> And that's all there is to it. Once you have your settings.json file
>> setup, just run "node server.js" to start the server.
>>
>> I made TiddlyServer simple because I want it to be simple for me to use
>> every day :) I'm just really bad at communicating that sometimes.
>>
>> Hope that helps
>> Arlen
>>
>> On Mon, Jun 24, 2019 at 3:55 AM Adrian Holbrook <
>> adrian.holbr...@gmail.com> wrote:
>>
>>> I thought I had sorted out my problems with saving TWs but I have had a
>>> few PC problems and after a complete reinstall I am back into trying to
>>> sort out the problem again. I cannot seem to get TWCloud to work now and I
>>> am thinking of trying out IIS and WebDAV. Can I still keep my TW files in
>>> my Dropbox folder on the PC or do I have to locate them on the C: Drive? My
>>> dropbox folder is located on a separate Hard Drive - not C:
>>>
>>> On Sunday, April 14, 2019 at 7:09:45 AM UTC+1, PMario wrote:

 Hi,

 since you use win10, WebDav could be an option. I did create 3 short
 videos, how to activate it.
 How to use TiddlyWiki with IIS and WebDAV
 

 have fun!
 mario

 --
>>> You received this message because you are subscribed to the Google
>>> Groups "TiddlyWiki" group.
>>> To 

Re: [tw5] Re: Losing Multiple Versions On Server Restart - node.js

2019-09-09 Thread Arlen Beiler
Nothing happens on server shutdown. You should be able to kill it without
losing anything as long as the Node process has finished writing to disk,
which is normally instantaneous.

On Mon, Sep 9, 2019 at 1:29 PM Arlen Beiler  wrote:

> A few questions.
>
> In your wiki, open control panel, then go to the plugins tab. Please tells
> us which plugins are enabled. Several of us work with the TiddlyWiki core
> code so we know which plugins should be enabled in this situation and which
> might cause conflicts.
>
> Enable logging like Jeremy said.
>
> While we're trying to figure this out, make sure that you are not
> listening on address 0.0.0.0. While you are trying to figure this out, you
> should specify either localhost (127.0.0.1) or a specific IP address, and
> then type that specific address into your address bar every time you access
> the wiki, even if you're doing it on the same computer. If this fixes the
> problem, it means there is a second NodeJS process running that is somehow
> listening on certain addresses on the server or receiving some requests
> that are meant to go somewhere else.
>
> It seems like you're doing everything as usual, and since the Node process
> being killed also causes this problem, that should rule out an OS problem.
>
> On Tue, Sep 3, 2019 at 11:31 PM Donald Coates 
> wrote:
>
>>
>>
>>
>>
>>>
>>> Clearly I broke my permissions recently.
>>>
>>
>> Man I feel like this is the problem 80% of the time but I still always
>> come around to it later rather than sooner.
>>
>> --
>> 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/7df5cad7-9d73-43a4-9233-5b6f9083889b%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/CAJ1vdSRBPmgH6n7JoYctz%2BM%2Btzmb2M6XxMOm9v6QimE9Dn2Myg%40mail.gmail.com.


Re: [tw5] Re: Losing Multiple Versions On Server Restart - node.js

2019-09-09 Thread Arlen Beiler
A few questions.

In your wiki, open control panel, then go to the plugins tab. Please tells
us which plugins are enabled. Several of us work with the TiddlyWiki core
code so we know which plugins should be enabled in this situation and which
might cause conflicts.

Enable logging like Jeremy said.

While we're trying to figure this out, make sure that you are not listening
on address 0.0.0.0. While you are trying to figure this out, you should
specify either localhost (127.0.0.1) or a specific IP address, and then
type that specific address into your address bar every time you access the
wiki, even if you're doing it on the same computer. If this fixes the
problem, it means there is a second NodeJS process running that is somehow
listening on certain addresses on the server or receiving some requests
that are meant to go somewhere else.

It seems like you're doing everything as usual, and since the Node process
being killed also causes this problem, that should rule out an OS problem.

On Tue, Sep 3, 2019 at 11:31 PM Donald Coates  wrote:

>
>
>
>
>>
>> Clearly I broke my permissions recently.
>>
>
> Man I feel like this is the problem 80% of the time but I still always
> come around to it later rather than sooner.
>
> --
> 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/7df5cad7-9d73-43a4-9233-5b6f9083889b%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/CAJ1vdSTni4VRZuH-mVnb2SRzbmtnfF%2BZFmmGnAFDZTCi0rsEug%40mail.gmail.com.


Re: [tw5] Re: Turning off codeinline parser rule corrupts TW5

2019-09-09 Thread Riz
Cool. Now that the issue is in github, I guess it can be followed up there. 
 

Sincerely,
Riz

On Monday, 9 September 2019 19:21:59 UTC+5:30, PMario wrote:
>
> On Monday, September 9, 2019 at 3:28:12 PM UTC+2, Jeremy Ruston wrote:
>>
>> Indeed, it emphasises that we really need better localised control of the 
>> parser rule vocabulary.
>>
>
> @Jeremy, 
>
> I did some tests with a node build. It seems 
>
> \rules only filteredtranscludeinline transcludeinline codeinline html 
> macrodef macrocallblock
>
> should be enough to save a proper TW file. ... BUT once the control-panel 
> setting is disabled, the parser rule is physically "deleted" instead of 
> "deactivated" from the core. ... So even if the "\rule only" is active, the 
> functionality is already gone. 
>
> -m
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/26a40080-734e-4841-9f35-fe456a231a46%40googlegroups.com.


[tw5] Re: Can we prefill known tags?

2019-09-09 Thread PMario
Hi Devin, 

The easiest way to get started is: 

 - Create your tag tiddlers
 - Go to AdvancedSearch: Filters tab
 - Enter the names of your tags, so they are listed 
 - Select the "Export" menu (3rd icon from the left)
 - Export as JSON
 - Give it a good name

 - Drag and drop this JSON file into your new wikis. 

Done!

Have fun!
mario

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/76787fcb-b464-4370-92f2-a730e319ac29%40googlegroups.com.


[tw5] What is a good naming scheme for imported images?

2019-09-09 Thread Zachary Storer
Hello,

When importing images into a tiddler with _canonical_uri, I'm currently 
naming the tiddler ImageSkateboard, and then I'm tagging the image with an 
[Image] tag.
I'm wondering if there is a better way to name the actual tiddler than 
ImageTiddlerNameHere, especially since I already have an [Image] tag.

How do you name and tag tiddlers for imported images or other multimedia?

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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/d0e47569-ec02-4018-b639-332bb69d5cbd%40googlegroups.com.


[tw5] Re: Sorting or restricting a list filter by index

2019-09-09 Thread Christian Macedo
Hi Mark, 

Yep it was data dictionary tiddler I meant. My mistake. 

By the looks of it, as you say, this won't be a working solution. And, I'll 
need to use the fields instead. The issue is that filling in fields is to 
my mind requires a little more effort. Unless of course there's some import 
mechanism. 

Either way, many thanks. I'll have a look at importing. 

Christian. 

On Monday, 9 September 2019 16:52:35 UTC+1, Mark S. wrote:
>
> By "data tiddlers", do you mean "data dictionary tiddlers" ?
>
> If so, I don't think your "sort" here is actually doing anything. Sort 
> only works on fields.
>
> Data dictionaries are useful when you have long lists of information that 
> don't benefit from the
> overhead of a normal tiddler. Or when you have a lot of simple information 
> you copy and paste 
> into a single tiddler. But if you have a data tiddler for each person, 
> then there is no
> benefit from the dictionary, and things like this will be more 
> complicated, partially because
> there is little core functionality for dictionaries.
>
> If you're using regular tiddlers, then you're filter becomes
>
>   <$list filter='[tag[person]field:team[Android]]'>
>
> Note that it doesn't sort on team -- they'll all have same entry!
>
> Mark
>
> On Monday, September 9, 2019 at 6:02:40 AM UTC-7, Christian Macedo wrote:
>>
>> I've got a set of data tiddlers each of which are structured as below
>>
>> name:James Brown
>> team:Android
>> location:Norway
>> ...
>>
>> And a list filter that looks like this. 
>>
>> 
>>   NAME
>>   TEAM
>>   LOCATION
>>   <$list filter='[tag[person]sort[team]]'>
>> 
>>   <$link to=<>><$view index='name'/>
>>   {{##team}}
>>   {{##location}}
>> 
>>   
>> 
>>
>> A table is produced with all the tiddlers that match the filter criteria. 
>> What I would like to do however is to modify the filter such that it shows 
>> a table row for for each tiddler whose *team *value is 'Android'.
>>
>> btw, data tiddlers are my new favourite thing. Congrats to the whole 
>> team. Again!
>>
>

-- 
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/febad00e-b76d-4e9d-bcb8-4a99245c0a30%40googlegroups.com.


[tw5] Re: Sorting or restricting a list filter by index

2019-09-09 Thread 'Mark S.' via TiddlyWiki
By "data tiddlers", do you mean "data dictionary tiddlers" ?

If so, I don't think your "sort" here is actually doing anything. Sort only 
works on fields.

Data dictionaries are useful when you have long lists of information that 
don't benefit from the
overhead of a normal tiddler. Or when you have a lot of simple information 
you copy and paste 
into a single tiddler. But if you have a data tiddler for each person, then 
there is no
benefit from the dictionary, and things like this will be more complicated, 
partially because
there is little core functionality for dictionaries.

If you're using regular tiddlers, then you're filter becomes

  <$list filter='[tag[person]field:team[Android]]'>

Note that it doesn't sort on team -- they'll all have same entry!

Mark

On Monday, September 9, 2019 at 6:02:40 AM UTC-7, Christian Macedo wrote:
>
> I've got a set of data tiddlers each of which are structured as below
>
> name:James Brown
> team:Android
> location:Norway
> ...
>
> And a list filter that looks like this. 
>
> 
>   NAME
>   TEAM
>   LOCATION
>   <$list filter='[tag[person]sort[team]]'>
> 
>   <$link to=<>><$view index='name'/>
>   {{##team}}
>   {{##location}}
> 
>   
> 
>
> A table is produced with all the tiddlers that match the filter criteria. 
> What I would like to do however is to modify the filter such that it shows 
> a table row for for each tiddler whose *team *value is 'Android'.
>
> btw, data tiddlers are my new favourite thing. Congrats to the whole team. 
> Again!
>

-- 
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/26187341-d1cb-41c9-b510-b8e57edb2830%40googlegroups.com.


[tw5] Re: Sorting or restricting a list filter by index

2019-09-09 Thread Christian Macedo


On Monday, 9 September 2019 14:02:40 UTC+1, Christian Macedo wrote:
>
> I've got a set of data tiddlers each of which are structured as below
>
> name:James Brown
> team:Android
> location:Norway
> ...
>
> And a list filter that looks like this. 
>
> 
>   NAME
>   TEAM
>   LOCATION
>   <$list filter='[tag[person]sort[team]]'>
> 
>   <$link to=<>><$view index='name'/>
>   {{##team}}
>   {{##location}}
> 
>   
> 
>
> A table is produced with all the tiddlers that match the filter criteria. 
> What I would like to do however is to modify the filter such that it shows 
> a table row for for each tiddler whose *team *value is 'Android'.
>
> btw, data tiddlers are my new favourite thing. Congrats to the whole team. 
> Again!
>

-- 
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/de48d65c-c047-45d5-830d-d6cbc2e1d4ae%40googlegroups.com.


Re: [tw5] Can we prefill known tags?

2019-09-09 Thread Aidan Grey
Couple ways...

For some, i just explicitly exclude in the filter :

[tag[groups]!title[grouptags]]

I also use "noshow" tags excluded as above, for the more frequent occuring
bits.

And then i also have an ignore tiddler containing tags that i never want to
see anywhere (mostly for admin/meta type tags). I have set up the filters
to always exclude these, and have one place where i filter for them
explicitly to see for editing etc.

On Mon, Sep 9, 2019, 9:28 AM Devin Weaver,  wrote:

> I thought about that. How do you prevent that tiddler from being included
> in any lists for said tags?
>
> On Monday, September 9, 2019 at 10:48:13 AM UTC-4, Aidan Grey wrote:
>>
>> Lots of ways...
>>
>> I keep a tag tiddler, just to hold tags like this - that's probably the
>> easiest thing to do.
>>
>> On Mon, Sep 9, 2019, 8:43 AM Devin Weaver,  wrote:
>>
>>> I noticed a situation in my TiddlyWiki where I will tag a tiddler with
>>> one of three tags: Pending, InProgress, inReview. But when one of those
>>> tags has no tiddlers it is removed from the drop down when editing
>>> tiddlers. Which means that I have to type the tag in when there there are
>>> no tiddlers currently tagged with it.
>>>
>>> Is there a way to prefill that list? In normal usage I like that tags
>>> are removed from the drop down but in this one edge case I like to pin some
>>> tags to always be in the drop down for selecting even when there are no
>>> tiddlers currently tagged with that tag.
>>>
>>> --
>>> You received this message because you are subscribed to the Google
>>> Groups "TiddlyWiki" group.
>>> To unsubscribe from this group and stop receiving emails from it, send
>>> an email to tiddl...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/tiddlywiki/0e8d2198-3aa8-4820-8b43-be4968d6f905%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/79ec50ea-9467-4e0e-ab4a-b62abe3a1e0b%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/CAJu7H0a%2BxcQe2Kp1AYBQWFDxcTEcLPn7MuS053xOPHo_GLKn%3Dg%40mail.gmail.com.


Re: [tw5] Can we prefill known tags?

2019-09-09 Thread coda coder
With a tiddler open for *viewing*, click on the tag of interest. Choose the 
top entry. This opens a tiddler with the tag-name as its title. Edit it and 
add some text. Repeat for each tag.

-- 
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/c18ffb55-61ec-4fd0-b46c-7d470bfffe18%40googlegroups.com.


Re: [tw5] Can we prefill known tags?

2019-09-09 Thread Devin Weaver
I thought about that. How do you prevent that tiddler from being included 
in any lists for said tags?

On Monday, September 9, 2019 at 10:48:13 AM UTC-4, Aidan Grey wrote:
>
> Lots of ways...
>
> I keep a tag tiddler, just to hold tags like this - that's probably the 
> easiest thing to do.
>
> On Mon, Sep 9, 2019, 8:43 AM Devin Weaver,  > wrote:
>
>> I noticed a situation in my TiddlyWiki where I will tag a tiddler with 
>> one of three tags: Pending, InProgress, inReview. But when one of those 
>> tags has no tiddlers it is removed from the drop down when editing 
>> tiddlers. Which means that I have to type the tag in when there there are 
>> no tiddlers currently tagged with it.
>>
>> Is there a way to prefill that list? In normal usage I like that tags are 
>> removed from the drop down but in this one edge case I like to pin some 
>> tags to always be in the drop down for selecting even when there are no 
>> tiddlers currently tagged with that tag.
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "TiddlyWiki" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to tiddl...@googlegroups.com .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/tiddlywiki/0e8d2198-3aa8-4820-8b43-be4968d6f905%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/79ec50ea-9467-4e0e-ab4a-b62abe3a1e0b%40googlegroups.com.


Re: [tw5] Sorting or restricting a list filter by index

2019-09-09 Thread Christian Macedo
This seems to have worked:

"""[tag[person]sort[team]search:text[location: India]]"""



On Monday, 9 September 2019 16:12:04 UTC+1, Christian Macedo wrote:
>
> That doesn't seem to work. I just receive an empty list where I'm 
> expecting quite a few rows. 
>
> Does the list filter really accept a data index as a variable similar to 
> `tag`?
>
> On Monday, 9 September 2019 15:45:15 UTC+1, Aidan Grey wrote:
>>
>> Just change this
>>
>> filter='[tag[person]sort[team]]'>
>>
>> To this
>>
>> filter='[tag[person]team[android]sort[team]]'>
>>
>>
>>
>> On Mon, Sep 9, 2019, 7:02 AM Christian Macedo,  
>> wrote:
>>
>>> I've got a set of data tiddlers each of which are structured as below
>>>
>>> name:James Brown
>>> team:Android
>>> location:Norway
>>> ...
>>>
>>> And a list filter that looks like this. 
>>>
>>> 
>>>   NAME
>>>   TEAM
>>>   LOCATION
>>>   <$list filter='[tag[person]sort[team]]'>
>>> 
>>>   <$link to=<>><$view index='name'/>
>>>   {{##team}}
>>>   {{##location}}
>>> 
>>>   
>>> 
>>>
>>> A table is produced with all the tiddlers that match the filter 
>>> criteria. What I would like to do however is to modify the filter such that 
>>> it shows a table row for for each tiddler whose *team *field is 
>>> 'Android'.
>>>
>>> btw, data tiddlers are my new favourite thing. Congrats to the whole 
>>> team. Again!
>>>
>>> -- 
>>> You received this message because you are subscribed to the Google 
>>> Groups "TiddlyWiki" group.
>>> To unsubscribe from this group and stop receiving emails from it, send 
>>> an email to tiddl...@googlegroups.com.
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/tiddlywiki/fcc58c9f-d71d-4e01-8351-4f11a5802394%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/80af572e-6893-49ac-b4c4-4b5da2d88c69%40googlegroups.com.


Re: [tw5] Sorting or restricting a list filter by index

2019-09-09 Thread Christian Macedo
That doesn't seem to work. I just receive an empty list where I'm expecting 
quite a few rows. 

Does the list filter really accept a data index as a variable similar to 
`tag`?

On Monday, 9 September 2019 15:45:15 UTC+1, Aidan Grey wrote:
>
> Just change this
>
> filter='[tag[person]sort[team]]'>
>
> To this
>
> filter='[tag[person]team[android]sort[team]]'>
>
>
>
> On Mon, Sep 9, 2019, 7:02 AM Christian Macedo,  > wrote:
>
>> I've got a set of data tiddlers each of which are structured as below
>>
>> name:James Brown
>> team:Android
>> location:Norway
>> ...
>>
>> And a list filter that looks like this. 
>>
>> 
>>   NAME
>>   TEAM
>>   LOCATION
>>   <$list filter='[tag[person]sort[team]]'>
>> 
>>   <$link to=<>><$view index='name'/>
>>   {{##team}}
>>   {{##location}}
>> 
>>   
>> 
>>
>> A table is produced with all the tiddlers that match the filter criteria. 
>> What I would like to do however is to modify the filter such that it shows 
>> a table row for for each tiddler whose *team *field is 'Android'.
>>
>> btw, data tiddlers are my new favourite thing. Congrats to the whole 
>> team. Again!
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "TiddlyWiki" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to tiddl...@googlegroups.com .
>> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/tiddlywiki/fcc58c9f-d71d-4e01-8351-4f11a5802394%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/9ed06621-9373-4425-aafb-ffeacf12f3b7%40googlegroups.com.


Re: [tw5] Can we prefill known tags?

2019-09-09 Thread Aidan Grey
Lots of ways...

I keep a tag tiddler, just to hold tags like this - that's probably the
easiest thing to do.

On Mon, Sep 9, 2019, 8:43 AM Devin Weaver,  wrote:

> I noticed a situation in my TiddlyWiki where I will tag a tiddler with one
> of three tags: Pending, InProgress, inReview. But when one of those tags
> has no tiddlers it is removed from the drop down when editing tiddlers.
> Which means that I have to type the tag in when there there are no tiddlers
> currently tagged with it.
>
> Is there a way to prefill that list? In normal usage I like that tags are
> removed from the drop down but in this one edge case I like to pin some
> tags to always be in the drop down for selecting even when there are no
> tiddlers currently tagged with that tag.
>
> --
> 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/0e8d2198-3aa8-4820-8b43-be4968d6f905%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/CAJu7H0bYf1yV1%3DnBeMyee3GTC-z6i75-o4Uctc8j_Pt3GSn3_w%40mail.gmail.com.


Re: [tw5] Sorting or restricting a list filter by index

2019-09-09 Thread Aidan Grey
Just change this

filter='[tag[person]sort[team]]'>

To this

filter='[tag[person]team[android]sort[team]]'>



On Mon, Sep 9, 2019, 7:02 AM Christian Macedo, 
wrote:

> I've got a set of data tiddlers each of which are structured as below
>
> name:James Brown
> team:Android
> location:Norway
> ...
>
> And a list filter that looks like this.
>
> 
>   NAME
>   TEAM
>   LOCATION
>   <$list filter='[tag[person]sort[team]]'>
> 
>   <$link to=<>><$view index='name'/>
>   {{##team}}
>   {{##location}}
> 
>   
> 
>
> A table is produced with all the tiddlers that match the filter criteria.
> What I would like to do however is to modify the filter such that it shows
> a table row for for each tiddler whose *team *field is 'Android'.
>
> btw, data tiddlers are my new favourite thing. Congrats to the whole team.
> Again!
>
> --
> 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/fcc58c9f-d71d-4e01-8351-4f11a5802394%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/CAJu7H0a7iQWKfsr3SqDG%3DnV%3D7Vj5K2s6ZCJkoPNarZv834NmAw%40mail.gmail.com.


[tw5] Can we prefill known tags?

2019-09-09 Thread Devin Weaver
I noticed a situation in my TiddlyWiki where I will tag a tiddler with one 
of three tags: Pending, InProgress, inReview. But when one of those tags 
has no tiddlers it is removed from the drop down when editing tiddlers. 
Which means that I have to type the tag in when there there are no tiddlers 
currently tagged with it.

Is there a way to prefill that list? In normal usage I like that tags are 
removed from the drop down but in this one edge case I like to pin some 
tags to always be in the drop down for selecting even when there are no 
tiddlers currently tagged with that tag.

-- 
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/0e8d2198-3aa8-4820-8b43-be4968d6f905%40googlegroups.com.


Re: [tw5] Re: Turning off codeinline parser rule corrupts TW5

2019-09-09 Thread PMario
On Monday, September 9, 2019 at 3:28:12 PM UTC+2, Jeremy Ruston wrote:
>
> Indeed, it emphasises that we really need better localised control of the 
> parser rule vocabulary.
>

@Jeremy, 

I did some tests with a node build. It seems 

\rules only filteredtranscludeinline transcludeinline codeinline html 
macrodef macrocallblock

should be enough to save a proper TW file. ... BUT once the control-panel 
setting is disabled, the parser rule is physically "deleted" instead of 
"deactivated" from the core. ... So even if the "\rule only" is active, the 
functionality is already gone. 

-m

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/8ae0d75b-1936-42db-9761-3d2deaae9c10%40googlegroups.com.


Re: [tw5] Re: Turning off codeinline parser rule corrupts TW5

2019-09-09 Thread Jeremy Ruston
Hi Mario, Riz,

Indeed, it emphasises that we really need better localised control of the 
parser rule vocabulary.

Best wishes

Jeremy.

> On 9 Sep 2019, at 14:25, PMario  wrote:
> 
> Hi Riz, 
> 
> You are right. ... It seems to disable the TW "save rendering" mechanism. So 
> it really corrupts TW in an unfixable way. ... 
> 
> I'll create a github issue. 
> 
> -m
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "TiddlyWiki" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to tiddlywiki+unsubscr...@googlegroups.com 
> .
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/tiddlywiki/34ba9062-a2c2-413c-8dbd-6bd46f43f089%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/C82772CD-91D5-45F3-BB9D-F0D74A3528EE%40gmail.com.


Re: [tw5] FEATURE REQUEST: instruction text for Tiddler Manager

2019-09-09 Thread Jeremy Ruston
Hi TT

> That does not resolve?

No, that tiddler doesn’t exist because it was part of a proposal I was making 
for the implementation of the instruction text. It’s a suggestion.

Best wishes

Jeremy

> 
> TT
> 
> -- 
> 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/073135cf-422a-40a9-b5d8-31344e835f36%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/9A0515C6-7690-4779-AB29-C66C0AC7D828%40gmail.com.


[tw5] Re: Turning off codeinline parser rule corrupts TW5

2019-09-09 Thread PMario
Hi Riz, 

You are right. ... It seems to disable the TW "save rendering" mechanism. 
So it really corrupts TW in an unfixable way. ... 

I'll create a github issue. 

-m

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/34ba9062-a2c2-413c-8dbd-6bd46f43f089%40googlegroups.com.


Re: [tw5] Re: Save directly Tiddlywiki 5 file to GitHub

2019-09-09 Thread Jeremy Ruston
Hi Richard

> Jeremy - if this is useful, feel free to copy and host it from tiddlywiki.com 
> directly.

Thanks, that might be cool. In the meantime, please feel free to send a PR for 
the tiddlywiki-com branch with a “Resources” tiddler announcing the link.

> I was wondering the same thing about per-tiddler github saving, but wonder 
> about the performance as github isn't really designed as a full database 
> (e.g. file lookups are always a two request process). Something like firebase 
> might be better, and firebase perhaps could help enable collaborative/shared 
> tiddlers.

Indeed, I can’t imagine it working well for a wiki like tw5.com, but it might 
be reasonable for smaller wikis.

Best wishes

Jeremy

> 
> Cheers,
> 
> .ric
> 
> 
> On Saturday, September 7, 2019 at 4:35:02 AM UTC-4, Jeremy Ruston wrote:
> Hi Richard
> 
> Good stuff, thanks for sharing. I’ve wondered about using a similar approach 
> to load at startup individual tiddler files from a tiddler folder stored on 
> GitHub.
> 
> Best wishes
> 
> Jeremy
> 
>> On 7 Sep 2019, at 01:29, Richard Campbell > wrote:
>> 
>> I'm late to this conversation, but have a small github pages site which can 
>> be used to download a (normal) github repo index.html file using their GET 
>> blob api. You can enter your username, repo, and a PAT (currently it assumes 
>> the tiddlywiki file is "index.html".)   The location and PAT are stored in 
>> local storage, nothing stored in github or on any other site. 
>> 
>> https://netrc.github.io/tiddlyGithub/ 
>> 
>> Once you've entered the username/repo/PAT, the download just takes a second 
>> or so (on good connection!).  Then of course the GitHub saver works nicely 
>> in the background to save all changes.
>> 
>> Richard
>> 
>> 
>> 
>> On Friday, May 3, 2019 at 5:05:20 AM UTC-4, Jeremy Ruston wrote:
>> Hi Cameron
>> 
>> Can you show a screenshot of the control panel settings prior to clicking 
>> “save changes”?
>> 
>> It may also be worth precisely listing the steps you took so that I can try 
>> to duplicate your result.
>> 
>> Best wishes
>> 
>> Jeremy.
>> 
>>> On 3 May 2019, at 00:36, camero...@gmail.com <> wrote:
>>> 
>>> Hi Jeremy,
>>>   Thanks for reading my comment. I am actually using Chrome, and when I 
>>> follow along with the intended workflow it removes my github auth token and 
>>> also the save feature just downloads index.html in-browser. If you follow 
>>> my link or look at the attached image you can also see that all the styling 
>>> and formatting is messed up, I'm using empty.html downloaded from 
>>> prerelease as the basis and no nonstandard tiddlers are added. I understand 
>>> this is prerelease so I am not depending on it I was just excited to use 
>>> tiddlywiki in a  new way. I'm willing to provide more debugging 
>>> information, but I am a bit of a novice so I don't know where to start.
>>> 
>>> 
>>> 
>>> 
>>> 
>>> On Thursday, May 2, 2019 at 4:10:30 PM UTC-4, Jeremy Ruston wrote:
>>> Hi Cameron
>>> 
>>> Firstly, are you using Firefox? I think it doesn’t support XMLHttpRequests 
>>> from files loaded from a file:// URI. I used Chrome in most of my testing.
>>> 
>>> The intended workflow is to load the wiki via the 
>>> https://username.github.io/index.html 
>>>  URI, and then save changes directly 
>>> back to GitHub. The challenge is that GitHub pages doesn’t update 
>>> instantly, it takes a few minutes for a pushed HTML file to be accessible. 
>>> So, care has to be taken not to reload the wiki from GitHub pages before 
>>> the changes have been processed. To be cautious, one might want to check 
>>> the wiki in a separate tab to see when it has refreshed.
>>> 
>>> Best wishes
>>> 
>>> Jeremy.
>>> 
 On 2 May 2019, at 20:54, camero...@gmail.com <> wrote:
 
 Hi, 
 
 I've been trying to get this working but I feel that I am missing 
 something. i can get my repository to host to github pages but when I use 
 my local browser to open the tiddlywiki (index.html) I've got in the git 
 repo I then cannot save it. Is the workflow (once it works) to navigate to 
 the file on your hard drive, make edits, save it then git commit, push, 
 etc? Every time I try to make modifications they are either not saved 
 because I used the hosted tiddlywiki at github.io  to 
 try to make changes or I get a n XHMLHttpRequest error code: 409 if I try 
 to edit the on-disk index.html in my browser and use the tiddlywiki save 
 function. I note that I do have an earlier version of this index.html file 
 being served in my github pages. What could I be missing?
 
 On Thursday, April 4, 2019 at 7:20:36 AM UTC-4, Mohammad wrote:
 Referring to: https://github.com/Jermolene/TiddlyWiki5/issues/3890 
 
 
 And the nice https://github.com/38911BytesFree/TiddlyWiki 
 

Re: [tw5] Re: plugins folder : TW + Node.JS

2019-09-09 Thread Jeremy Ruston
Hi Mohammad

Plugin folders must be immediate children of the wiki “plugins” folder. In 
other words, you’ll have to move the “slider” plugin folder to be a sibling of 
“relink”, “kookma” and “chooser”.

Best wishes

Jeremy.

> On 9 Sep 2019, at 09:42, Mohammad  wrote:
> 
> resend for who read emails
> 
> In brief HOW plugins stored in subfolders under plugins folder can be loaded 
> into mywiki?
> 
> - mywiki
> -- plugins
> -- -- subfolder1
> -- -- -- plugin1
> -- -- -- plugin2
> -- -- pluginx
> -- -- pluginy
> 
> The problem is with plugin1 and plugin2.
> 
> --Mohammad
> 
> 
> On Monday, September 9, 2019 at 1:07:43 PM UTC+4:30, Mohammad wrote:
> On Node.JS Tiddlywiki I have a wiki working fine!
> 
> The folder structure is like this:
> mywiki
> -- tiddlers
> -- plugins
> -- tiddlywiki.info 
> 
> In the plugins folder I have plugins like below
> 
> -- plugins
> relink
> kookma
> --slider
> chooser
> 
> relink, slider, and chooser are my plugins which have a correct TW structure 
> and tested separately!
> 
> The plugins are directly under plugins folder all work fine. but those are in 
> subfolder are not loaded and warning message is shown when I start the wiki 
> as below
> 
> tiddlywiki mywiki --listen
> 
> In brief HOW plugins stored in subfolders under plugins folder can be loaded 
> into mywiki?
> 
> 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/d382deca-9c14-4c10-a5be-25c801ec9f1b%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/C7A980FE-E80E-4947-8376-C097C1B60B16%40gmail.com.


[tw5] Sorting or restricting a list filter by index

2019-09-09 Thread Christian Macedo
I've got a set of data tiddlers each of which are structured as below

name:James Brown
team:Android
location:Norway
...

And a list filter that looks like this. 


  NAME
  TEAM
  LOCATION
  <$list filter='[tag[person]sort[team]]'>

  <$link to=<>><$view index='name'/>
  {{##team}}
  {{##location}}

  


A table is produced with all the tiddlers that match the filter criteria. 
What I would like to do however is to modify the filter such that it shows 
a table row for for each tiddler whose *team *field is 'Android'.

btw, data tiddlers are my new favourite thing. Congrats to the whole team. 
Again!

-- 
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/fcc58c9f-d71d-4e01-8351-4f11a5802394%40googlegroups.com.


[tw5] Changing tags based on <>, perhaps on startUp?

2019-09-09 Thread TonyM
Jed

Actualy yours is much better because the core one is mostly limited to device 
size and theme settings. Your can run a lot more.

It would be nice if we could get your version in there.

Thanks
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/97fc8e7b-25aa-402c-a557-c1e8529dc114%40googlegroups.com.


[tw5] Re: plugins folder : TW + Node.JS

2019-09-09 Thread Mohammad
resend for who read emails

In brief HOW plugins stored in subfolders under plugins folder can be 
loaded into mywiki?

- mywiki
-- plugins
-- -- subfolder1
-- -- -- plugin1
-- -- -- plugin2
-- -- pluginx
-- -- pluginy

The problem is with plugin1 and plugin2.

--Mohammad


On Monday, September 9, 2019 at 1:07:43 PM UTC+4:30, Mohammad wrote:
>
> On Node.JS Tiddlywiki I have a wiki working fine!
>
> The folder structure is like this:
> mywiki
> -- tiddlers
> -- plugins
> -- tiddlywiki.info
>
> In the plugins folder I have plugins like below
>
> -- plugins
> relink
> kookma
> --slider
> chooser
>
> relink, slider, and chooser are my plugins which have a correct TW 
> structure and tested separately!
>
> The plugins are directly under plugins folder all work fine. but those are 
> in subfolder are not loaded and warning message is shown when I start the 
> wiki as below
>
> tiddlywiki mywiki --listen
>
> In brief HOW plugins stored in subfolders under plugins folder can be 
> loaded into mywiki?
>
> 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/d382deca-9c14-4c10-a5be-25c801ec9f1b%40googlegroups.com.


[tw5] plugins folder : TW + Node.JS

2019-09-09 Thread Mohammad Rahmani
On Node.JS Tiddlywiki I have a wiki working fine!

The folder structure is like this:
mywiki
-- tiddlers
-- plugins
-- tiddlywiki.info

In the plugins folder I have plugins like below

-- plugins
relink
kookma
--slider
chooser

relink, slider, and chooser are my plugins which have a correct TW
structure and tested separately!

The plugins are directly under plugins folder all work fine. but those are
in subfolder are not loaded and warning message is shown when I start the
wiki as below

tiddlywiki mywiki --listen

In brief who plugins stored in subfolders under plugins folder can be
loaded into mywiki?

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/CAAV1gMBPq5QecLzkMYAYj4Xhju5j2TUMgTAgRC0_QeDW4T2j-Q%40mail.gmail.com.


[tw5] Changing tags based on <>, perhaps on startUp?

2019-09-09 Thread Watt
Nice one. Couldn't find it in docs, should have taken more than a minute 
(agenda joke!)
https://tiddlywiki.com/#StartupActions

-- 
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/be87bf3b-1cf7-42b2-910e-b7740d0f1477%40googlegroups.com.


[tw5] Changing tags based on <>, perhaps on startUp?

2019-09-09 Thread Jed Carty
If you want to use startup actions I suggest you use the core version, it will 
have much better support than my old version.

-- 
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/2682b339-7b3a-406d-b2d4-e463ae7197f3%40googlegroups.com.


[tw5] Changing tags based on <>, perhaps on startUp?

2019-09-09 Thread Watt
Thanks for this Steve, this script by Jed might help with the startup actions 
if it still works with the latest release, I haven't tried it;
https://ooktech.com/jed/ExampleWikis/StartupActions/

I hope you keep going with Agendas, I've bolted Mohammad's todolist on to it as 
an Agenda template and they seem to work well together on a mobile without drag 
and drop. Still working out the Topics mechanism though.
Good luck.

-- 
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/e82fe049-e95e-401f-94bd-48fc56c885a7%40googlegroups.com.