[tw] Re: Just a little starting help

2018-02-22 Thread BurningTreeC
Hi Davide,

Am Dienstag, 20. Februar 2018 21:55:42 UTC+1 schrieb Paperoga:
>
>
> Hi Simon, (from Germany ? )
>
Almost, South Tyrol, Alto Adige - it's almost austria though

>
> thanks for the link, the tutorial are good!
>
> Yes, I mean that control panel, and I download TW just from there, 4.5 Mb 
>
> including documentation. Even the empty.html I've downloaded is with 
>
> ..nothing, in the control panel. I've tried to d (import) 
> $:/ControlPanel from the site to the copy on my pc, and it ends up in an 
> empty tiddler again.
>
> I don't understand.
>
>
> I'd like to move the sidebar from right to up, or left. Is that possible ?
>
> Better, do you know a simple enough way to do that ?
>
> I shall try to learn some CSS, besides WikiText and a little 
>
> Javascript, little by little.
>
> For now I need the basic to use TW to learn TW. Right ?
>

That's right, first I would start with CSS and WikiText, that already 
enables you to do a lot
For the sidebar ... 

You can try this on https://tiddlywiki.com and see if it is what you need:


   - create a new tiddler and tag it with: $:/tags/Stylesheet
   - add this:

.tc-sidebar-scrollable {
position: fixed;
height: 300px;
top: 0px;
left: 42px;
width: 100%;
padding-left: 84px;
padding-top: 22px;
}

<>



   - save the tiddler
   - the sidebar should then be on top and the story river below
   - this overrides some settings you can make in the ControlPanel
   

> Greetings from south ( Venice )
>
> Davide
>
>
> Simon 

>  
>

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


[tw] Re: Wikipedia, Text Slicer Edition & Pandoc

2018-02-22 Thread BurningTreeC
I'm on Linux, now the next 10 minutes I'm doing 
https://wiki.haskell.org/Learn_Haskell_in_10_minutes
Then for those five org-mode users it'll be time :D

No, seriously, I think also if there won't be many users, having it on the 
list could still be good in terms of "showing that there's also tw"

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


Re: [tw] A slider which closes itself when clicking elsewhere or closing tiddler

2018-02-22 Thread passingby
Friends 
I am really sorry i got busy and made no progress on the issue. Maybe this 
weekend. I shall update if i get something done. 
Thank you for your suggestions/

On Wednesday, February 21, 2018 at 4:03:01 AM UTC-7, ste...@gmail.com wrote:
>
> Hi Andreas,
>
> On Wednesday, February 21, 2018 at 11:45:59 AM UTC+1, Andreas Hahn wrote:
>>
>> Hi,
>>
>> just to add onto all the tips you have already gotten: The info tab uses 
>> the button popup mechanism to get the behaviour that you want, so an 
>> example would be this (taken from the documentation at [1]):
>>
>>
>>
> This, of course, makes much more sense than my suggestions (at least in 
> this particular case). For some reason, I hadn't been aware of this feature 
> of the reveal widget.
>
> Cheers,
>
> Stef
>

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


[tw] Re: Wikipedia, Text Slicer Edition & Pandoc

2018-02-22 Thread 'Mark S.' via TiddlyWiki
It kind of looks like you would need to take an existing pandoc writer 
(maybe markdown) and rewrite it as a new TiddlyWiki module. But ... it's 
all written in Haskell. It would be quite a time investment to get up to 
speed with Haskell (unless of course you already know it) enough to make 
the changes. And of course you would then have to compile your own pandoc, 
which would probably be easiest on Linux.

Another approach would be to use "filters". Filters change the AST 
(pandoc's internal markup language). The filters are middlemen -- they 
don't create output. It looks like you might be able to use this to turn 
elements into text-based elements and then output as text. I asked in the 
pandoc forum and at least one respondent thought this might work -- with 
effort. Oh yeah, and in that crazy logic of open source code, the built-in 
filter language is not Haskell, but Lua. But at least you wouldn't have to 
compile the resulting code.

And after all that, how many people would use it? Five?

-- Mark

On Wednesday, February 21, 2018 at 7:27:21 AM UTC-8, BurningTreeC wrote:
>
> Hi Steve,
>
> I recently took a look at the pandoc github repository to see what's 
> needed to maybe include tiddlywiki syntax
> I didn't have that much time to get into it...
>
> I think in a collaborative effort we could gather informations at one 
> place that help make it clear a) if it's possible and if then b) how it can 
> be done
>
> We could then, if possible, see if we can make a pull request there to 
> include tiddlywiki syntax
>
> I think that would be a great thing, like 
> https://www.youtube.com/watch?v=R3O--B-3R3E that great
>
>
>

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


Re: [tw] Re: remoteStorage syncadaptor plugin

2018-02-22 Thread Giovanni P
Yeah, Tristan. I'm also the owner of a very old 5apps account, I always
liked remoteStorage, but had never seem any useful apps that supported it.
I wish I could say nowadays the situation is different, but still there
aren't many useful apps on https://wiki.remotestorage.io/Apps (besides the
3 micro apps I've published recently, which are probably useful to me only).

Incredibly enough, there are lots of people using the protocol and working
on the client 10 years after, and everything works quite nicely. I guess
it's just waiting for more cases that match very well with the idea, like
TiddlyWiki, to discover it.

Please let me know what you think of the plugin and whatever.

On Thu, Feb 22, 2018 at 6:25 PM, Giovanni P  wrote:

> BTC: are you talking about (a) different storage providers/accounts or (b)
> different "folders" within the same storage provider?
>
> If (b), yes it could be done quite easily. Currently you can alternate
> between folders by changing $:/plugin/fiatjaf/remoteStorage/namespace (or
> something like that) in the config tiddler. There could be a custom
> configuration that used prefixes (or perhaps a custom function?) to
> determine the folder. I don't know what would be the best UI to implement
> this, but sure it is possible.
>
> If (a), then yes, but implementing it would be cumbersome since the
> remoteStorage JS client currently assumes you only have one remoteStorage
> server. There's an issue open to address this behavior there:
> https://github.com/remotestorage/remotestorage.js/issues/991, but this
> could be implemented with a different client, or just using raw HTTP
> requests to the remoteStorage server.
>
>
> On Wed, Feb 21, 2018 at 6:42 PM, BurningTreeC <
> hypnotizedkanga...@gmail.com> wrote:
>
>> Thank you, Giovanni!
>>
>> Now it's much more clear to me - and it confirms that it does what I
>> wished it would!
>>
>> Could it also handle more storages than one? let's say
>> $:/tiddlers/like/this -> storage1, $:/tiddlers/like/that -> storage2 ?
>> It's just an idea, I think it's already very cool what you've made!
>>
>> BTC
>>
>> --
>> You received this message because you are subscribed to a topic in the
>> Google Groups "TiddlyWiki" group.
>> To unsubscribe from this topic, visit https://groups.google.com/d/to
>> pic/tiddlywiki/e-sUhUYBUOk/unsubscribe.
>> To unsubscribe from this group and all its topics, send an email to
>> tiddlywiki+unsubscr...@googlegroups.com.
>> To post to this group, send email to tiddlywiki@googlegroups.com.
>> Visit this group at https://groups.google.com/group/tiddlywiki.
>> To view this discussion on the web visit https://groups.google.com/d/ms
>> gid/tiddlywiki/ddfc480d-7fc0-42d8-aa04-ee8f45b6019a%40googlegroups.com
>> 
>> .
>>
>> For more options, visit https://groups.google.com/d/optout.
>>
>
>

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


[tw] remoteStorage syncadaptor plugin

2018-02-22 Thread TonyM
Giovanni,

I am not immediatly in a position to test this but the following questions 
arrise;
Can I host remote storage on cpanel accounts?
How will it deal with multiple users both view and edit? Similtaniously or 
serialy.

Have you seen noteself?, It can also use a pouchdb inside the browser session 
so changes can be saved locally to the browser even before the equivalent of 
remoteStorage (couchdb) is connected to. This method may work well with your 
solution.

I hope your solution fits well with tiddlywiki because we still have some gaps 
in hosted tiddlwikis.

Thanks for your contribution.

Regards
Tony

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


[tw] Re: Broken with macro calls

2018-02-22 Thread TonyM
Ian,

In some similar work in the mymenus plugin I simply used two list as follows;

Psuedo code


Add th here
<$list filter

<$list filter
<>





Leaving responcibility for table formatting out of a macro allows that macro to 
be used in otherways as a global macro.

And also if you want variables and fields to work inside html tags look at 
evans formula plugin as you can use it to programaticaly alter html tags

Eg



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


Re: [tw] Re: remoteStorage syncadaptor plugin

2018-02-22 Thread Giovanni P
BTC: are you talking about (a) different storage providers/accounts or (b)
different "folders" within the same storage provider?

If (b), yes it could be done quite easily. Currently you can alternate
between folders by changing $:/plugin/fiatjaf/remoteStorage/namespace (or
something like that) in the config tiddler. There could be a custom
configuration that used prefixes (or perhaps a custom function?) to
determine the folder. I don't know what would be the best UI to implement
this, but sure it is possible.

If (a), then yes, but implementing it would be cumbersome since the
remoteStorage JS client currently assumes you only have one remoteStorage
server. There's an issue open to address this behavior there:
https://github.com/remotestorage/remotestorage.js/issues/991, but this
could be implemented with a different client, or just using raw HTTP
requests to the remoteStorage server.


On Wed, Feb 21, 2018 at 6:42 PM, BurningTreeC 
wrote:

> Thank you, Giovanni!
>
> Now it's much more clear to me - and it confirms that it does what I
> wished it would!
>
> Could it also handle more storages than one? let's say
> $:/tiddlers/like/this -> storage1, $:/tiddlers/like/that -> storage2 ?
> It's just an idea, I think it's already very cool what you've made!
>
> BTC
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "TiddlyWiki" group.
> To unsubscribe from this topic, visit https://groups.google.com/d/
> topic/tiddlywiki/e-sUhUYBUOk/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> tiddlywiki+unsubscr...@googlegroups.com.
> To post to this group, send email to tiddlywiki@googlegroups.com.
> Visit this group at https://groups.google.com/group/tiddlywiki.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/tiddlywiki/ddfc480d-7fc0-42d8-aa04-ee8f45b6019a%40googlegroups.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

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


Re: [tw] Re: Online/Offline Sync & Version Control

2018-02-22 Thread Danielo Rodríguez
Hello Darin,

I didn't noticed the date of your post. 
Glad to hear that you are working on a possible PR. Finding free time is hard, 
I know, I wish you the best luck. 

Regards 

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


[tw] Re: How to concatenate < and a tiddler field value for use as a new tiddler title

2018-02-22 Thread markhylton2
Mike,

I tried to use <$wikify> ... and couldn't figure out how to use it 
correctly, so I don't know if it could have worked or not. On the other 
hand, I've gotten my current problem(s) resolved (see later posts in this 
thread), so I won't look further into this, for now anyway.

I much appreciate your suggestion and help, however!

Sincerely,

~Mark

On Thursday, February 22, 2018 at 9:09:26 AM UTC-5, Michael Wiktowy wrote:
>
> Look up <$wikify>. It is like <$set> but it renders/evaluates the value to 
> the variable rather than just storing it for further rendering in another 
> context (or not rendering like in one of your cases). So you get to choose 
> where the value gets set in stone. I had a similar issue recently and that 
> is how I got around it.
>
> /Mike
>

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


[tw] Re: How to concatenate < and a tiddler field value for use as a new tiddler title

2018-02-22 Thread markhylton2
Stephan,

BOTTOM LINE: Things are now working as I need them to be working. Project 
number in the title was dropped. "Inheriting" a field value (the project 
number, in this case) in a new tiddler was added.

I think it is more important to have the date/timestamp in the title (to 
help keep titles unique, and to easily organize them by date), than to have 
the project number in the title. While I would still like the project 
number there, I'm dropping this requirement. Thank you for asking your 
questions, as they forced me to re-evaluate my true needs.

Being able to "inherit" the project number from the host/parent tiddler 
when creating a new tiddler is, however, important for other kinds of 
tiddler organization. You've shown how this can be done; I'll have to 
research why this works because it emphasizes my lack of understanding of 
TW and scope of values.

I've chosen to not explore your auto-incrementing project number, but I 
appreciate the suggestion.

As a result, I've got things working the way I need them to work. At least 
until I come with a new requirement.

Thanks again!

~Mark

P.S. How are these posts marked as "Complete", so other helpful folks don't 
have to go through everything just to find out the problem is resolved?

On Thursday, February 22, 2018 at 12:31:41 PM UTC-5, Stephan Hradek wrote:
>
>
>
> Am Donnerstag, 22. Februar 2018 17:20:55 UTC+1 schrieb Stephan Hradek:
>>
>> Can you test, what you attempted on tiddlywiki.com and post all the 
>> tiddlers here so that I can see and aybe correct?
>>
>> For your previous example, it is an easy fix:
>>
>> Tiddler 1 fields:
>>
>>> Title:hostTiddler
>>> projectnumber:12345
>>> Text:{{||newProjectEntryPB}}
>>>
>>
>> Tiddler 2 fields:
>> Title:newProjectEntryPB
>> Text:\define projecttitle() $(todaynow)$, $(projectnum)$, Project entry:
>>
>> <$set name="todaynow" value=<>>
>> <$set name="projectnum" value={{!!projectnumber}}>
>>
>> Need a new project entry? Click this button and a project tiddler will be 
>> created:
>> <$button>
>>   New project entry
>>   <$action-sendmessage
>>  $message="tm-new-tiddler"
>>  title=<>
>>   />
>> 
>>
>> 
>>
>> Of course this doesn't fix the timestamp, but the projectnumber is in.
>>
>
> Ah! And for an auto-incremented projectnumber you saw my "Quick & Dirty" 
> example above? 
>

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


[tw] Re: How to concatenate < and a tiddler field value for use as a new tiddler title

2018-02-22 Thread Stephan Hradek


Am Donnerstag, 22. Februar 2018 17:20:55 UTC+1 schrieb Stephan Hradek:
>
> Can you test, what you attempted on tiddlywiki.com and post all the 
> tiddlers here so that I can see and aybe correct?
>
> For your previous example, it is an easy fix:
>
> Tiddler 1 fields:
>
>> Title:hostTiddler
>> projectnumber:12345
>> Text:{{||newProjectEntryPB}}
>>
>
> Tiddler 2 fields:
> Title:newProjectEntryPB
> Text:\define projecttitle() $(todaynow)$, $(projectnum)$, Project entry:
>
> <$set name="todaynow" value=<>>
> <$set name="projectnum" value={{!!projectnumber}}>
>
> Need a new project entry? Click this button and a project tiddler will be 
> created:
> <$button>
>   New project entry
>   <$action-sendmessage
>  $message="tm-new-tiddler"
>  title=<>
>   />
> 
>
> 
>
> Of course this doesn't fix the timestamp, but the projectnumber is in.
>

Ah! And for an auto-incremented projectnumber you saw my "Quick & Dirty" 
example above? 

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


[tw] Re: How to concatenate < and a tiddler field value for use as a new tiddler title

2018-02-22 Thread Stephan Hradek
Can you test, what you attempted on tiddlywiki.com and post all the 
tiddlers here so that I can see and aybe correct?

For your previous example, it is an easy fix:

Tiddler 1 fields:

> Title:hostTiddler
> projectnumber:12345
> Text:{{||newProjectEntryPB}}
>

Tiddler 2 fields:
Title:newProjectEntryPB
Text:\define projecttitle() $(todaynow)$, $(projectnum)$, Project entry:

<$set name="todaynow" value=<>>
<$set name="projectnum" value={{!!projectnumber}}>

Need a new project entry? Click this button and a project tiddler will be 
created:
<$button>
  New project entry
  <$action-sendmessage
 $message="tm-new-tiddler"
 title=<>
  />




Of course this doesn't fix the timestamp, but the projectnumber is in

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


[tw] Re: How to concatenate < and a tiddler field value for use as a new tiddler title

2018-02-22 Thread markhylton2
Good morning, Stephan,

BOTTOM LINE: a journal tiddler will work, I just have to drop the project 
number requirement in the title. Consider that done. *I still want* (and 
don't know how) to get a field value from the storyTiddler.

Ever do something because it was the first way you concepted it, only to 
struggle? And then someone comes along and asks, "why that way, why not 
another?"? :)

Well ... there's part of your answer. My first thought was to display, as 
part of the tiddler title, a time/date stamp (keeps titles unique), along 
with the project number the entry was about, and a bit of text for 
additional information.

As I learn more about TW filtered lists, the need for the project number in 
the title diminishes, as long as that project number is available elsewhere 
in a tiddler for filtering use. And, I can easily include text literals 
with the time/datestamp tiddler name.

HOWEVER, I still have use cases for getting a field value from a host 
tiddler (the storyTiddler?) for use in generating a new tiddler. In this 
case, I want to get the value of the projectnumber field from the host 
tiddler and put it in a projectnumber field of a new tiddler. I can already 
do something like this, if 1) the host tiddler's title IS the project 
number (and nothing else), and 2) I use that title as the value for the new 
tiddler's projectnumber field. This works, but feels clunky because a title 
is not the same (conceptually) as a project number, even though they are 
the same (textually) in this particular use case.

While a tag seems to be the best way to provide inclusion of a tiddler into 
a larger set, there might be multiple tags, and how am I to know which one 
is a project number and which ones are not? A projectnumber field seems to 
be a better way to denote inclusion into a project set, in this case. So, I 
want to use a field for a project number, and not rely solely on tags to 
contain the project number. (This opens up the question of best uses for 
tags versus fields.)

In any case, thank you for looking at this and asking your question. A 
second look from a different point of view is frequently valuable, and it 
gets me out of a thinking rut I didn't realize I was in.

Thanks again!

~Mark


On Thursday, February 22, 2018 at 4:44:16 AM UTC-5, Stephan Hradek wrote:
>
> Before taking too many steps and making it overly complicated: Have you 
> thought about utilising a Journal tiddler?
>
> Take a look at "Making a custom journal button 
> "
>  
>
>

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


[tw] Re: How to concatenate < and a tiddler field value for use as a new tiddler title

2018-02-22 Thread Stephan Hradek
A quick & Dirty example.


tiddler: New Button
projecttitle (required field): "Project #1, -0MM-0DD 0hh:0mm:0ss"
text:
\define journalButton()
<$button tooltip={{$:/language/Buttons/NewJournal/Hint}} aria-label={{$:
/language/Buttons/NewJournal/Caption}} class=<>>
<$action-sendmessage $message="tm-new-tiddler" title=<> tags="$(journalTags)$" text="$(journalText)$"/>
<$list filter="[prefix[yes]]">
{{$:/core/images/new-journal-button}}

<$list filter="[prefix[yes]]">
<$text text={{$:/language/Buttons/NewJournal/
Caption}}/>

<$action-increment $reference="New Project!!projecttitle"/>

\end
<$set name="journalTitleTemplate" value={{New Project!!projecttitle}}>
<$set name="journalTags" value={{$:/config/NewJournal/Tags}}>
<$set name="journalText" value={{$:/config/NewJournal/Text}}>
<>


I took the complete code from the $:/core/ui/Buttons/new-journal tiddler 
and just changed

"$:/config/NewJournal/Title" to "New Project!!projecttitle"
and added <$action-increment $reference="New Project!!projecttitle"/>
which requires you  to have my action-increment plugin installed

The Projectnumber will increase with every click and the title will be 
something like "Project #1, 2018-02-022 13:14:15".

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


[tw] How to concatenate < and a tiddler field value for use as a new tiddler title

2018-02-22 Thread Michael Wiktowy
Look up <$wikify>. It is like <$set> but it renders/evaluates the value to the 
variable rather than just storing it for further rendering in another context 
(or not rendering like in one of your cases). So you get to choose where the 
value gets set in stone. I had a similar issue recently and that is how I got 
around it.

/Mike

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


[tw] Re: Broken with macro calls

2018-02-22 Thread Iain


Thanks for the advices. I ended up rewriting and having the macro generate 
the complete . Turned out to be a better solution anyway, making my 
whinging a little hollow :)

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


[tw] Re: [TW5] Implementation ideas for dragging links into textareas

2018-02-22 Thread BurningTreeC
Thanks for the clarification, Mario!
my pulse is stable again :)

On Thursday, February 22, 2018 at 11:18:39 AM UTC+1, BurningTreeC wrote:
>>
>> It is still the original implementation, I'm just looking for ideas, if 
>> something very useful comes up
>> Don't understand why now it should be a plugin, just because I'm asking 
>> for ideas?
>>
>
> IMO your initial PR is generic enough for the core. And there are some 
> combinations left for future development. ... 
>
> But if the core contains hard-coded functions for too many possible 
> combination with Shift, Ctrl and Alt, it may be against users preferred 
> settings. 
> But if we implement something, we have to be sure, to keep it. ... 
>
> You know, Jeremy is very restrictive about backwards compatibility. So if 
> something is core, we have to live with it for a really long time!
>

I understand, that's a good thing in the whole picture 

>
>
> These things will only have effect while dragging - how can one set this 
>> from the keyboard shortcuts panel?
>>
>
> I don't know. I did just point to an option, that I personally would 
> prefer configuration over hard-coded functionality. 
>
> And if a new config UI will bloat the core even more, I'll always vote for 
> a plugin as an alternative. 
>  
>
>> If it's possible then the feature is very well under-documented
>>
>
> Probably.
>

I once tried making a shortcut and gave up. But I'd like to understand how 
to do it and I would then add some words to the docs to document it better

>  
>
>> I think transclusion is such a central topic in tw that the ctrl+drag = 
>> transclusion is very justified to be in the core.
>> The prefix and suffix, too, because that's a central way how the whole 
>> html and wikitext syntax work
>>
>
> Right, that's why I would support it for the core. 
>  
>
>> For anything else I'm just looking for Ideas
>>
>
> OK ... as plugins or configurable.
>

configurable if it comes out that there are very good things that could be 
done, no configurable implementation in the core if not, and a beer next 
time in Innsbruck
deal?

>
> have fun!
> mario
>

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


[tw] Re: [TW5] Implementation ideas for dragging links into textareas

2018-02-22 Thread PMario
On Thursday, February 22, 2018 at 11:18:39 AM UTC+1, BurningTreeC wrote:
>
> It is still the original implementation, I'm just looking for ideas, if 
> something very useful comes up
> Don't understand why now it should be a plugin, just because I'm asking 
> for ideas?
>

IMO your initial PR is generic enough for the core. And there are some 
combinations left for future development. ... 

But if the core contains hard-coded functions for too many possible 
combination with Shift, Ctrl and Alt, it may be against users preferred 
settings. 
But if we implement something, we have to be sure, to keep it. ... 

You know, Jeremy is very restrictive about backwards compatibility. So if 
something is core, we have to live with it for a really long time!


These things will only have effect while dragging - how can one set this 
> from the keyboard shortcuts panel?
>

I don't know. I did just point to an option, that I personally would prefer 
configuration over hard-coded functionality. 

And if a new config UI will bloat the core even more, I'll always vote for 
a plugin as an alternative. 
 

> If it's possible then the feature is very well under-documented
>

Probably.
 

> I think transclusion is such a central topic in tw that the ctrl+drag = 
> transclusion is very justified to be in the core.
> The prefix and suffix, too, because that's a central way how the whole 
> html and wikitext syntax work
>

Right, that's why I would support it for the core. 
 

> For anything else I'm just looking for Ideas
>

OK ... as plugins or configurable. 

have fun!
mario

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


[tw] Re: remoteStorage syncadaptor plugin

2018-02-22 Thread BurningTreeC


> When opening your files from your hard drive via the file:// protocol this 
> might be an issue since Firefox does not allow http requests than. I would 
> just use an always on static server to host single file wikis via 
> caddyserver and store everything to remoteStorage.
>
> I am trying to setup this myself right now so no guarantees.
>
> Thank you tristan, I'll give it a try

If this means that it works on chromium or TD I'm totally happy

I'll test, I'll report


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


[tw] Re: [TW5] Implementation ideas for dragging links into textareas

2018-02-22 Thread BurningTreeC
@PMario,

It is still the original implementation, I'm just looking for ideas, if 
something very useful comes up
Don't understand why now it should be a plugin, just because I'm asking for 
ideas?

These things will only have effect while dragging - how can one set this 
from the keyboard shortcuts panel?

If it's possible then the feature is very well under-documented



I think transclusion is such a central topic in tw that the ctrl+drag = 
transclusion is very justified to be in the core.
The prefix and suffix, too, because that's a central way how the whole html 
and wikitext syntax work

For anything else I'm just looking for Ideas

Simon

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


[tw] Re: Broken with macro calls

2018-02-22 Thread Stephan Hradek
Why not let the macro return the full row?

\define makerow(i)

<>

\end

\define XXX() 1


  <$list filter="[tag[ActionWidgets]]">
<$macrocall $name="makerow" i=<>/>
  



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


[tw] Re: remoteStorage syncadaptor plugin

2018-02-22 Thread Tristan Kohl
When opening your files from your hard drive via the file:// protocol this 
might be an issue since Firefox does not allow http requests than. I would 
just use an always on static server to host single file wikis via 
caddyserver and store everything to remoteStorage.

I am trying to setup this myself right now so no guarantees.

Cheers,
Tristan

On Thursday, February 22, 2018 at 10:16:25 AM UTC+1, BurningTreeC wrote:
>
> Hi Giovanni,
>
> can this be set up with local files, too?
>
> forgive me, I'm not aware if there are limitations in local file-access
>
> BTC
>

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


[tw] Re: [TW5] Implementation ideas for dragging links into textareas

2018-02-22 Thread PMario
Hi, 

Nice stuff - at the beginning. ... But IMHO, you may not hard-code and 
block all possible combinations, just because you can. 

I first supported your PR for the core, but if you over-engineer it, I 
think it should be a plugin. So users have the choice.

TW has a possibility to configure edit shortcuts: 
https://tiddlywiki.com/#KeyboardShortcuts:KeyboardShortcuts%20%24%3A%2FControlPanel

I personally would prefer a possibility to choose shortcuts by myself!

have fun
mario


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


[tw] Re: self-made macro is inconsistent... why?

2018-02-22 Thread PMario
On Thursday, February 22, 2018 at 5:13:10 AM UTC+1, Darin Wick wrote:
>
> Am I doing something wrong?  I'm using NoteSelf rather than plain TW5 - 
> could that be the cause, since $:/macros/tasklist is stored in PouchDB 
> rather than the file?  
>

I don't know NoteSelf, so it's just a guess. But as you describe it, it 
seems to be an initialization problem. So the $:/macros/tasklist is not 
available, when the macro is rendered. ... 

You may put a "NoteSelf" prefix to your topic title, to better catch 
Danielo's (author of NoteSelf) attention. 

Or file an issue at https://github.com/NoteSelf/NoteSelf.github.io/issues, 
where he will see it for sure ;)

-m

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


[tw] [TW5] Implementation ideas for dragging links into textareas

2018-02-22 Thread BurningTreeC
Hi community,

I'd like to gather some ideas for dragging links into text areas

The current status is, that dragging a link - from the Recent tab for 
example - into a text area or an input field - creates a link to the 
dragged tiddler like [[tiddler title]]

I've made a pull request so that holding the Ctrl key while dragging 
results in {{tiddler title}}

... and : holding Shift adds a user-defined prefix and a user-defined 
suffix like: 

userdefined prefix: <>

dragging-result: <>

... or whatever you want to add as prefix and suffix


Now it would still be possible to add something different when holding Ctrl 
AND Shift while dragging, and therefor I'd like to ask you for ideas
The prefix + suffix implementation is already there, what could be others?

BurningTreeC

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/0cac11e7-7cc5-403e-9eb8-db1115d41461%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: How to concatenate < and a tiddler field value for use as a new tiddler title

2018-02-22 Thread Stephan Hradek
Before taking too many steps and making it overly complicated: Have you 
thought about utiolising a Journal 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 post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/ce924dfe-345a-4274-aa0e-5bc9c9788754%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: remoteStorage syncadaptor plugin

2018-02-22 Thread BurningTreeC
Hi Giovanni,

can this be set up with local files, too?

forgive me, I'm not aware if there are limitations in local file-access

BTC

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


[tw] Re: [TW5] presenting TWRocketDock

2018-02-22 Thread BurningTreeC

>
>
> Don't try this at home: https://www.youtube.com/watch?v=0g9ssQSV6UA
>

wait a moment - this comes from a parallel universe, right? Because I've 
never seen it and I've seen everything, so I wonder 

>
>
> @TiddlyTweeter :-)
>

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