[tw5] Re: [Tutorial] running your own Node.js TW5 on Microsoft Azure for Free

2021-06-02 Thread Reaktorblue
I'm trying to follow along with this guide and running into a few issues

   - Creating the Azure App Service within VS Code didn't prompt for an OS 
   but did appear to be successful
   - Downloading the latest release of TiddlyWiki on GitHub didn't have any 
   folders named tiddlers or a tiddlywiki.info file however, package.json did 
   exist

Is it possible to start locally with "tiddlywiki mynewwiki --init server" 
and deploying the tiddlers folder and tiddlywiki.info file that way?

I'm also a little confused by the section that details editing the 
package.json however, since I'm trying to get this to work with Azure, 
which I have no experience with, is it possible to keep the app running 
without having to start it via the terminal like I would have to do locally 
with Node.js?

Ideally I'm trying to get more experience using TiddlyWiki with Node.js but 
would rather have it hosted and available to any device I'm working on 
instead of having to expose my entire network to host it locally

On Friday, May 15, 2020 at 7:45:10 AM UTC-4 Tony K wrote:

> Here is a tutorial I wrote for anyone who would like to have his own 
> Nodejs version of TW5 running on Microsoft Azure for *Free* 
>
> https://dynalist.io/d/VA2eH2p8x8-beDiyYJV04YA9
>
> I tried to write it here in the forum but changed my mind, so here is the 
> link 
>
> enjoy 
>
>
>

-- 
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/c8697993-8759-4d9e-b239-84f188b968e3n%40googlegroups.com.


[tw5] TW5 Data Entry Form

2021-04-12 Thread Reaktorblue
I'm trying to learn how to use TW5 as a way to document some things via a 
data entry form

I have these two tiddlers created

   - Basic Form
   - $:/state/basic-form
   
In the Basic Form tiddler, I'm using a button to create a new tiddler based 
on the data in the form

\define newEntry()
<$action-createtiddler $basetitle="entry" $template="$:/state/basic-form"/>
\end

<$button actions=<> >
Create Tiddler


Is there a way to also clear the form once I have clicked the 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 view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/e69ea84e-3cb6-4c71-bb4c-2a362cfaeba1n%40googlegroups.com.


[tw5] Re: Tabs Macro Default Tab

2020-04-22 Thread Reaktorblue
Tony,

I did include a link for TiddlyPack in my OP but in case it didn't work, it 
can be found at http://tw5-suitcase.tiddlyspot.com/

Something told me that the double curly braces was to transclude that 
tiddler but I wasn't sure because I couldn't locate that tiddler anywhere 
however, TiddlyPack's default tab does seem to work. I can select any tab 
and refresh the page and a tab is selected by default on refresh. The first 
time it was the first tab and subsequent times it was the last tab I had 
selected.

Now, when I try to replicate this in an empty TW, it doesn't seem to work. 
I could most certainly get away with hard-coding the default tab for the 
project I'm working on since I won't have any more than 4 or 5 tabs at most 
but, I'd like to still learn how to do it, if possible.

On Thursday, April 23, 2020 at 1:13:20 AM UTC-4, TonyM wrote:
>
> Reaktor Blue,
>
> {{$:/config/TiddlyPack/Default}}
>
> Says to transclude the value in the $:/config/TiddlyPack/Default text 
> field if you create that tiddler and put in the full tiddler title of the 
> tab you want as default, it should work
>
> I am not using TiddlyPack but perhaps you can share a link?
>
> Regards
> Tony
>
> On Thursday, April 23, 2020 at 2:58:49 PM UTC+10, Reaktorblue wrote:
>>
>> I created a task list based on the concepts from TiddlyPack 
>> <http://tw5-suitcase.tiddlyspot.com/> but I'm running into where the 
>> default tab is never selected. In TiddlyPack, I think it's the following 
>> snippet that sets the default tab, via the default parameter, correct?
>>
>> @@.tabsstyle
>> <$macrocall $name="tabs" tabsList=
>> "[all[shadows+tiddlers]tag[$:/tags/TiddlyPack]!has[draft.of]sort[list]]+[nsort[sort]]"
>>  
>> default={{$:/config/TiddlyPack/Default}}/>
>> @@
>>
>> I was not able to find the $:/config/TiddlyPack/Default tiddler in 
>> TiddlyPack but it seems to work there, just not on a brand new TW 5.1.22. I 
>> noticed that TiddlyPack is using 5.1.14, would this be why it's correctly 
>> selecting a default tab but it's not doing it for me on a newer version?
>>
>> Is there a way to fix it so that a tab is selected without explicitly 
>> defining that tab to use as the default? Ideally, I think I'd like to have 
>> it select the first tab by default and then maybe default to the last tab 
>> viewed.
>>
>> Also, what exactly do the double curly brackets indicate for the default 
>> parameter?
>>
>>
>>

-- 
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/10733164-a319-4835-983b-937e56fc968f%40googlegroups.com.


[tw5] Tabs Macro Default Tab

2020-04-22 Thread Reaktorblue
I created a task list based on the concepts from TiddlyPack 
 but I'm running into where the 
default tab is never selected. In TiddlyPack, I think it's the following 
snippet that sets the default tab, via the default parameter, correct?

@@.tabsstyle
<$macrocall $name="tabs" tabsList=
"[all[shadows+tiddlers]tag[$:/tags/TiddlyPack]!has[draft.of]sort[list]]+[nsort[sort]]"
 
default={{$:/config/TiddlyPack/Default}}/>
@@

I was not able to find the $:/config/TiddlyPack/Default tiddler in 
TiddlyPack but it seems to work there, just not on a brand new TW 5.1.22. I 
noticed that TiddlyPack is using 5.1.14, would this be why it's correctly 
selecting a default tab but it's not doing it for me on a newer version?

Is there a way to fix it so that a tab is selected without explicitly 
defining that tab to use as the default? Ideally, I think I'd like to have 
it select the first tab by default and then maybe default to the last tab 
viewed.

Also, what exactly do the double curly brackets indicate for the default 
parameter?


-- 
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/cf87b6f8-1716-405a-a860-bf08f47d18e5%40googlegroups.com.


[tw5] Re: Help using the sum operator

2020-04-21 Thread Reaktorblue
I was able to answer my question using the below code.

$<$text text={{{ [tag{!!title}get[cost]sum[]] }}}/>

I do like the idea of trying that in a macro though. It looks like it could 
clean up some of the code if I did it via a macro. Are macro's available 
throughout the entire tiddlywiki or are they only available to the tiddler 
they're defined in?

Sadly, I still haven't found a nice way to use the draggable method to 
reorder task list items, such that I still have a checkbox and number 
associated with it but I'll keep looking otherwise. Thanks for the 
response, it's given me a bit to think about!

On Tuesday, April 21, 2020 at 2:44:05 PM UTC-4, Mark S. wrote:
>
> How are you building your table? It's possible to build it with nested 
> lists, making the entirety automated. But I digress.
>
> You probably want a macro
>
> So at the top of your tiddler you might have this:
>
> \define cost(expense) $<$text text={{{ [tag[$expense$]get[cost]sum[]] }}}/>
>
> which can be invoked like this:
>
> <>
>
> and changed around for other costs by handing it a different parameter:
>
> <>
>
> <
>
> etc.
>
>
> On Tuesday, April 21, 2020 at 10:41:46 AM UTC-7, Reaktorblue wrote:
>>
>> Hello,
>>
>> I'm working on a project and had a few questions. I have several tiddlers 
>> listed as categories and tasks of that category.
>>
>> For example, I may have:
>>
>>
>>- tiddler title: Car Repair
>>- tiddler tag: Category
>>
>>
>>- tiddler title: Oil Change
>>- tiddler tag: Car Repair
>>- tiddler field: cost, value: 30.00
>>
>>
>>- tiddler title: New Tires
>>- tiddler tag: Car Repair
>>- tiddler field: cost, value: 300.00
>>
>>
>>- tiddler title: New Passenger Side Mirror
>>- tiddler tag: Car Repair
>>- tiddler field: cost, value: 60.00
>>
>>
>> 1) I'm using the following to return $390.00 when viewing the "Car 
>> Repair" tab which indicates three tiddlers, "Oil Change", "New Tires", and 
>> "New Passenger Side Mirror"
>>
>> Total Cost: $<$text text={{{ [tagget[cost]sum[]] }}}/>
>>
>> The code works perfectly however, in another tiddler, I made a table to 
>> show me all the categories. Is it possible to change the code so the table 
>> indicates the sum of the cost field of all the tiddlers tagged with the 
>> title of the tiddler listed in that row? For example, my table should have 
>> a row indicating "Car Repair" as the tiddler title the next cell I would 
>> like to have should indicate the total sum of cost, from all the tiddlers 
>> tagged "Car Repair". I believe the following will work however, I was 
>> hoping to not explicitly assign it to "Car Repair" so that it will update 
>> for all rows that the table generates.
>>
>> $<$text text={{{ [tag[Car Repair]get[cost]sum[]] }}}/>
>>
>> 2) Is it possible to use an ordered list when using the 
>> list-links-draggable macro instead of an unordered list or is it possible 
>> to use list-links-draggable with a table so that the table rows are 
>> draggable too?
>>
>

-- 
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/26cad5f5-85c0-4b78-8ca9-9fe59319bb34%40googlegroups.com.


[tw5] Help using the sum operator

2020-04-21 Thread Reaktorblue
Hello,

I'm working on a project and had a few questions. I have several tiddlers 
listed as categories and tasks of that category.

For example, I may have:


   - tiddler title: Car Repair
   - tiddler tag: Category


   - tiddler title: Oil Change
   - tiddler tag: Car Repair
   - tiddler field: cost, value: 30.00


   - tiddler title: New Tires
   - tiddler tag: Car Repair
   - tiddler field: cost, value: 300.00


   - tiddler title: New Passenger Side Mirror
   - tiddler tag: Car Repair
   - tiddler field: cost, value: 60.00
   

1) I'm using the following to return $390.00 when viewing the "Car Repair" 
tab which indicates three tiddlers, "Oil Change", "New Tires", and "New 
Passenger Side Mirror"

Total Cost: $<$text text={{{ [tagget[cost]sum[]] }}}/>

The code works perfectly however, in another tiddler, I made a table to 
show me all the categories. Is it possible to change the code so the table 
indicates the sum of the cost field of all the tiddlers tagged with the 
title of the tiddler listed in that row? For example, my table should have 
a row indicating "Car Repair" as the tiddler title the next cell I would 
like to have should indicate the total sum of cost, from all the tiddlers 
tagged "Car Repair". I believe the following will work however, I was 
hoping to not explicitly assign it to "Car Repair" so that it will update 
for all rows that the table generates.

$<$text text={{{ [tag[Car Repair]get[cost]sum[]] }}}/>

2) Is it possible to use an ordered list when using the 
list-links-draggable macro instead of an unordered list or is it possible 
to use list-links-draggable with a table so that the table rows are 
draggable too?

-- 
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/8a344f2c-be40-44d7-8476-42c1cd3f8165%40googlegroups.com.


[tw5] list-tagged-draggable help

2020-04-20 Thread Reaktorblue
I was looking at the draggable task management example 
 and I was 
curious, is it possible to get the links that are listed to also display as 
an ordered list?

-- 
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/d8159059-69c1-4cd1-9876-f4715827ac70%40googlegroups.com.


[tw5] Re: TiddlyWiki Math Fields with tags

2020-04-08 Thread Reaktorblue
Eric,

Just curious but is there a way to format this as text? It seems to make 
the sum a link to a tiddler but I'd rather just have it display the value 
as text so I can format it with a "$" in front of it if possible

On Wednesday, April 8, 2020 at 5:38:53 PM UTC-4, Eric Shulman wrote:
>
> On Wednesday, April 8, 2020 at 1:35:09 PM UTC-7, Reaktorblue wrote:
>>
>> Is there a way to add up numbers that are in the tiddler fields? For 
>> example, if I wanted to add up all of the numbers in field "cost" for all 
>> tiddlers tagged "incomplete" and "component" would that be possible? I was 
>> thinking maybe the mathematics operators but I haven't been having much 
>> luck getting that to work
>>
>
> This will do exactly what you want:
> {{{ [tag[component]tag[incomplete]get[cost]sum[]] }}}
>
> enjoy,
> -e
>
>  
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/7a7007e3-ff76-461d-a35b-fc1b78b2c005%40googlegroups.com.


[tw5] Re: TiddlyWiki Math Fields with tags

2020-04-08 Thread Reaktorblue
Thanks!

This is exactly what I was looking to do. Thank you so much for all of the 
help!!

On Wednesday, April 8, 2020 at 5:38:53 PM UTC-4, Eric Shulman wrote:
>
> On Wednesday, April 8, 2020 at 1:35:09 PM UTC-7, Reaktorblue wrote:
>>
>> Is there a way to add up numbers that are in the tiddler fields? For 
>> example, if I wanted to add up all of the numbers in field "cost" for all 
>> tiddlers tagged "incomplete" and "component" would that be possible? I was 
>> thinking maybe the mathematics operators but I haven't been having much 
>> luck getting that to work
>>
>
> This will do exactly what you want:
> {{{ [tag[component]tag[incomplete]get[cost]sum[]] }}}
>
> enjoy,
> -e
>
>  
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/8010f4d8-219e-4ecf-94be-99b80d0f9fbe%40googlegroups.com.


[tw5] TiddlyWiki Math Fields with tags

2020-04-08 Thread Reaktorblue
Hello,

Is there a way to add up numbers that are in the tiddler fields? For 
example, if I wanted to add up all of the numbers in field "cost" for all 
tiddlers tagged "incomplete" and "component" would that be possible? I was 
thinking maybe the mathematics operators but I haven't been having much 
luck getting that to work

-- 
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/445bd42b-3ecd-4672-9ea8-536fadeb8767%40googlegroups.com.


[tw5] Re: TW5 Sortable Tables

2019-08-04 Thread Reaktorblue
Neat!

Out of curiosity, how are you hosting the TW file? It it a standard .html 
file or are you perhaps using Node.js?

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/bf4fbec4-c0cf-47b9-b491-3707f9dfe4b0%40googlegroups.com.


[tw5] Re: Hide the tag display on ToC

2019-08-02 Thread Reaktorblue
@BurningTreeC,

Thank you so much! That worked wonderfully!

-- 
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/23f21b2a-0095-496d-adaa-aab823616de6%40googlegroups.com.


[tw5] Hide the tag display on ToC

2019-08-02 Thread Reaktorblue
When you're looking at the display of the Table of Contents, the tag 
$:/tags/SideBar 
is visible. Is there a way to hide this for only the Table of Contents when 
it's not in edit mode?

-- 
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/658a4e5f-f736-4016-95fe-0a0087e1ad04%40googlegroups.com.


[tw5] Re: TiddlyWiki vs OneNote (comparison on slant.co)

2019-08-01 Thread Reaktorblue
The OneNote that's currently in circulation is being webified, if you can 
call it that. Just like most other Microsoft products. I don't know if it 
would be possible to get those records into TW but if I can ever become 
comfortable with CSS and TW as a whole, I'd probably abandon the whole 
thing.

I'd go so far as to say that the right ToC setup would rival OneNote, right 
out of the box.

-- 
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/fb24e72f-76d6-4d95-b1ec-b94bd0a49af8%40googlegroups.com.


[tw5] Re: TiddlyWiki vs OneNote (comparison on slant.co)

2019-08-01 Thread Reaktorblue
OneNote is now bundled with Windows 10 and that's pretty much the version 
you get. I'm an Office 365 Insiders subscriber and OneNote is no longer 
part of that package. One of the biggest issues I take with OneNote is that 
the UI is not configurable at least not at this current point in time. You 
can't change the size of the different elements and this is also one of the 
things that I love about TW5.




-- 
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/cc1e5382-e8d6-470f-8c93-6a4eacf44c91%40googlegroups.com.


[tw5] Re: TiddlyWiki vs OneNote (comparison on slant.co)

2019-07-22 Thread Reaktorblue
In fairness, I use OneNote to a very basic degree. With that said, it's 
broken down such that OneNote is the application but I have many notebooks 
that can be loaded and unloaded. The notebooks themselves would be like 
having a folder on my PC with many TW files in it. Each notebook within 
OneNote would have sections and pages. So having OneNote open could contain 
1 notebook or 50 notebooks.

I used to store my TiddlyWiki on DropBox, OneDrive, and even Google Drive. 
In fact, I preferred it that way (keeping it just a html file) because I 
had more flexibility keeping it up to date, hard versioning and soft 
versioning with OneDrive and Google drive version control on top of me 
having separate files with the date appended to the file name. It made 
emailing it, putting it on a flash drive, etc very easy.

However, as things have improved with TiddlyWiki, it's become clear to me 
that certain things are better when setting up TiddlyWiki on Node.js. 
Additionally, I was really enjoying the while Node.js process and was using 
TiddlyWiki as an excuse to just dive in deeper. The problem I ran into is 
TiddlyWiki on Node.js felt like a lot more work to get running, organized, 
and then configured to how I wanted it.

Additionally, I wasn't overly fond of starting it via the command line 
manually every time and had to spend quite a bit of time trying batch files 
and such to get it running. I settled on using Cmder and having a 3 batch 
file setup to double click an icon to start it and minimize Cmder to the 
system tray. Now realistically, I could at that point have exported an 
offline TiddlyWiki and tossed that on a flash drive or on one of the cloud 
storage media platforms but again, it just felt like more work when 
initially all I had to do was maybe make a list of say URLs and their 
purpose for something like a video game or another non important piece of 
data. OneNote was pretty much ready to go, so I could do it at home 5 
minutes before work and then keep working on it once I got to the office.

To be clear though, I'm not advocating OneNote over TiddlyWiki and in fact, 
I'd rather use TiddlyWiki than OneNote but I lack the necessary skills to 
be able to configure/customize it in a timely fashion. So for me 
personally, it becomes a great tool for learning and at some point, will 
most likely be a major part of my toolkit. I absolutely love how you don't 
need anything installed to use TiddlyWiki as just about every computer I've 
ever used has a browser.

The biggest problem here isn't TiddlyWiki when compared to OneNote, it's me 
personally. The level of flexibility that TiddlyWiki possesses far exceeds 
my technical capabilities.

-- 
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/9274a1fd-1a5a-4e43-85e9-4932d30c6268%40googlegroups.com.


[tw5] Re: TiddlyWiki vs OneNote (comparison on slant.co)

2019-07-22 Thread Reaktorblue
For me personally, I use OneNote a lot. In fact, I use OneNote much more 
than TiddlyWiki. The two biggest reasons being that changes to the browser 
don't break functionality and that it's ready to go out of the box with no 
need for configuration.

TiddlyWiki on the other hand is so much more robust but the problem I 
personally always run into is that I'm a fledgling coder/web developer. I 
don't already have the knowledge required to customize the CSS or 
JavaScript to enable the functionality with minimal effort. This means that 
every time I want to use TiddlyWiki, I have to take a lot of time to 
configure it the way I want it.

Additionally, I like how my OneNote syncs with OneDrive easily because it's 
behind the OneDrive security. I can't necessarily speak to the security of 
TiddlyWiki because there's so many ways to set it up. Personally, I like 
the old school idea of TiddlyWiki being just a single html file. Sadly 
though, TiddlyWiki has better tools available to it when it's run under 
Node.js but then, you have to figure out your own way to secure it, which 
I'm not quite there yet. The good news is you can just leave it on your LAN 
and the outside world can't see it. I don't use multi user access to my 
OneNote nor TiddlyWiki so multi user access is useless to me at this time.

For me, this makes TiddlyWiki a great learning tool but not so much a great 
tool for actual productivity but this wouldn't be the case with everyone. 
For those with the time and the knowledge, I think TiddlyWiki beats 
OneNote, hands down.

-- 
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/dc33e318-3144-4c60-9a38-924cae445f44%40googlegroups.com.


[tw] [TW5] Concatenate 3 tiddler fields into 1 URL

2016-12-08 Thread reaktorblue
I have a table of tiddlers tagged "HD Ticket" and a tiddler titled, "HD 
Ticket Settings" which holds 2 fields, "url_header" and "url_footer". I'm 
trying to concatenate these fields to make this a clickable URL however, I 
havent been very successful and haven't had much luck interpreting some of 
the other hints for concatenation.

Generally, what I need to see should be something like  For example:

url_header = http://www.website.com/ticket=
title = Ticket123456
url_footer = /view/ticketinfo

Should give me a clickable link to 
http://www.website.com/ticket=Ticket123456/view/ticketinfo

I found a few discussions about concatenation but none of them were working.




-- 
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/09c53d5a-533f-49b4-9c22-a9d7e6298d50%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] [TW5] Sorting Ascending and Descending

2016-12-07 Thread reaktorblue
A while back I made a post about creating tables and sorting the data by 
column header. One of the suggestions was to check out an example by Jed, 
outlined below. This works for the most part but what I'd like to do be 
click the header a second time to reverse the sort order.

Is something like this possible? I've tried using a reveal widget however, 
I was not successful. I'm not sure if this is even possible at the moment, 
let alone if I'm using the right syntax. 




<$button class='tc-btn-invisible' style='width:100%;height:100%'>
Plugin name
<$action-setfield sort_by='name'/>



<$button class='tc-btn-invisible' style='width:100%;height:100%'>
Plugin maintainer
<$action-setfield sort_by='maintainer'/>



<$list filter='[tag[Plugin twCard]has[name]has[maintainer]sort{!!sort_by}]'>


<$view field='name'/>


<$view field='maintainer'/>






-- 
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/11781f85-70cf-412d-a9b7-a0fdb620ca79%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] <$count tiddlers with multiple tags

2016-12-06 Thread reaktorblue
Matthew,

This worked like a charm! I don't know how I missed this but I'll most 
certainly remember this for the next time. Thank you so much for the help, 
it's greatly appreciated!



Warmest Regards,

Raf

On Tuesday, December 6, 2016 at 10:10:41 AM UTC-5, Matthew Lauber wrote:
>
> On both the the one's that don't work, you need a second closing bracket.
>
> <$count filter="[tag[Task]!tag[Done]]"/>
> <$count filter="[tag[Task]tag[Done]]"/>
>
>
>
> On Tuesday, December 6, 2016 at 9:42:45 AM UTC-5, reakt...@gmail.com 
> wrote:
>>
>> Is there a way to count the number of tiddlers based on a filter with 
>> multiple tags?
>>
>> This works currently to tell me how many tiddlers are tagged with "Task"
>>
>> <$count filter="[tag[Task]]"/>
>>
>> What I'm trying to do is:
>>
>> "Pending Tasks"
>> <$count filter="[tag[Task]!tag[Done]"/>
>>
>> "Completed Tasks"
>> <$count filter="[tag[Task]tag[Done]"/>
>>
>> Both of the above don't seem to work. Is there a way to accomplish this?
>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To 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/5c3ed6c7-9dea-4541-b24b-07a489728c79%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] [TW5] <$count tiddlers with multiple tags

2016-12-06 Thread reaktorblue
Is there a way to count the number of tiddlers based on a filter with 
multiple tags?

This works currently to tell me how many tiddlers are tagged with "Task"

<$count filter="[tag[Task]]"/>

What I'm trying to do is:

"Pending Tasks"
<$count filter="[tag[Tasks]!tag[Done]"/>

"Completed Tasks"
<$count filter="[tag[Task]tag[Done]"/>

Both of the above don't seem to work. Is there a way to accomplish this?

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To 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/4beffafc-ac01-4f21-9f47-ad5300332510%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] [TW5] How to add parent tag of tiddler when using a separate tiddler as a data entry form

2016-11-22 Thread reaktorblue
Greetings!

I'm working on a project to create documentation around a Minecraft server 
I'm attempting to set up. I created a button to bring up a tiddler as a 
data entry form to create the tiddlers for each plugin. I'm now trying to 
create buttons to have them added on creation of a plugin tiddler to add 
permissions as well as slash commands.

I'd like to have my tiddlers for slash commands as well as permissions 
include the parent tag (the name of the plugin tiddler). The problem I'm 
running into is that I made the buttons to launch data entry tiddlers and 
if I'm attempting to create a new slash command tiddler, I'm not sure how 
to add the tag of the parent tiddler to the new one.

Using <> doesn't work because technically the current 
tiddler is the data entry form. I've tried using bits and pieces from 
TiddlyPack, CategoryLists, and bottomOfTiddler macro but I can't seem to 
wrap my head around this. My current project can be viewed at 
http://minecraft.tiddlyspot.com/

*Example:*

- Click on Plugins
- Click Add Plugin
- Entry the plugin name
- Click Save and then Close
- Click the title of the newly created plugin tiddler
- Clicking the button for adding a slash command should open a data entry 
form tiddler however, the new tiddler created should also be tagged with 
the name of the plugin

-- 
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/f0f041b8-2ebc-4e5b-98aa-1157520c5914%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Tabs Help

2016-09-01 Thread reaktorblue
I didn't get a chance to update the wiki but I think this might be of some 
help - https://groups.google.com/forum/#!topic/tiddlywiki/xFs6zrFMNlo

The problem I'm running into is that I'm nesting the tabs. Once I create a 
tab, I'm trying to create tabs within that tab. If I use 
tag in my child tab, when I look at it from the parent tab, 
the "current tiddler" is the name of the parent tab's tiddler. If I use 
tag then it works correctly when viewing in the parent tab but 
when viewing the child tiddler, it's incorrect.

What I found works is when I explicitly declare the name of the tag. What I 
think I need to do is define something in the button code that uses the 
name of the current tiddler (parent) as the tag[] for the tabs macro.

On Wednesday, August 31, 2016 at 2:37:34 AM UTC-4, Tobias Beer wrote:
>
> Hi,
>
> Can you perhaps create a more specific example on your demo wiki
> and comment directly in there where you're stuck with it?
>
> Best wishes,
>
> Tobias.
>

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


[tw] [TW5] Tabs Help

2016-08-21 Thread reaktorblue
Hiyas,

I'm having some difficulty understanding tabs, specifically, nested tabs. 
Here is my example TW - http://rbos.tiddlyspot.com/

What I have noticed is that if I already know what tiddler is going to be 
the nested tab, I can explicitly define the tag to filter, like in the 
below snippet, the "tag[Tab 04]" was manually entered. When it this way, 
I'm able to accomplish the nested list.

<$macrocall $name="tabs" tabsList="[all[shadows+tiddlers]tag[tab3]tag[Tab 
04]!has[draft.of]sort[title]]+[nsort[sort]]"/>

My problem is though that I don't know what the tab would be called ahead 
of time and I need a way for the "tag[Tab 04]" to be more like a 
tag. What I have found is that if I use 
"tag" then the tabs only appear in the tiddler and not in 
the main tabs display, as a nested tab.

If I use "tag" then it works as intended in the main display 
but when I view the tiddler directly, it no longer displays. I've tried 
using a few different variants I found all over the web but can't seem to 
find the right answer. Could anyone help me through this?

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To 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/d6e7ae93-b12e-4da4-b035-99580bce478d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


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

2016-08-15 Thread reaktorblue
This is outstanding! I had a question though, is there a way to change from 
an overall "done" tab to having 2 sliders in each of the tabs for pending 
and finished?

I'm trying to come up with a solution that seems like a hybrid of this and 
Jed's category list


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

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


[tw] Re: [TW5] Saved searches and external links in 5.1.12

2016-07-20 Thread reaktorblue
Out of curiosity, does this happen on multiple browsers/devices?

-- 
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/2bd2cc9d-89ba-418f-a95a-4874fee69b8b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: My TiddlyWiki Math Project

2016-07-19 Thread reaktorblue
I actually tried the Dynamic Tables before and although they worked very 
well, what I wasn't able to get working was the sorting. The sorting seemed 
to work in ascending order but clicking the header again didn't allow for 
sorting in descending then again, perhaps I was doing something wrong.

On Tuesday, July 19, 2016 at 6:03:21 AM UTC-4, Jed Carty wrote:
>
> I made suitable tables using only wikitext but I am not sure if it can be 
> adapted to this situation. The demo site for what I made is here if you 
> want to look http://ooktech.com/jed/ExampleWikis/DynamicTables/

-- 
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/1f3de2a2-6516-4a41-a077-140513b5ead7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Tags quandary - how do I merge tag that have different case

2016-07-18 Thread reaktorblue
You may also want to check out the Search and Replace Tag wizard from Tobi 
Beer - http://tobibeer.github.io/tb5/#Search%20And%20Replace%20Tag

-- 
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/f0468e3b-d6ed-4f41-a5f8-99fffa782097%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: My TiddlyWiki Math Project

2016-07-17 Thread reaktorblue
This is outstanding! I've been looking for something like this for quite 
some time, thank you so very much!

Only thing left for me to do is find a way to sort the tables in ascending 
or descending order by clicking column headers. I haven't had much success 
with that yet.

-- 
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/3a840d4a-f110-4dfb-bf2c-3a8b5221e77e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Scrollable Popout Menu Macro without tc-popup-keep

2016-07-13 Thread reaktorblue
I simply removed the tc-popup-keep references from the macro so that it 
looks like like the below snippet. Was this the right thing to do to make 
the scrollable popup a non-sticky popup?

\define PopoutMenu(Icon Name Tiddler Tooltip PopupClass:
"tc-popup-menu-default" ButtonClass:"tc-btn-invisible")





-- 
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/b0336151-14ab-4b1f-8624-bb090b9ea00d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Scrollable Popout Menu Macro without tc-popup-keep

2016-07-13 Thread reaktorblue
I think I found how to add the border. Still not sure on how to make the 
popup non-sticky though.

-- 
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/979802e2-55c4-44b0-befe-23b6f14a91e4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] [TW5] Scrollable Popout Menu Macro without tc-popup-keep

2016-07-13 Thread reaktorblue
I'm experimenting with the scrollable popout menu macro from 
http://ooktech.com/jed/ExampleWikis/Text%20Menus/upgrade.html and was 
hoping someone could help me with 2 questions. My apology if these are dumb 
questions, I'm still learning.

1) Is there a way to disable the tc-popup-keep class? I'm using this as a 
mobile phone menu and would like the menu to disappear either if you click 
out of the menu or select an option.

2) Is there a way to enable a complete border around the popup window?

I think both of these are handled with the default styles tiddler but I'm 
not entirely sure how exactly to accomplish this.

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To 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/ba03af11-acac-441b-98c0-05ca1911ae10%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] [TW5] Calculating Tiddler Fields with Calc macro

2016-07-06 Thread reaktorblue
I have an issue I have to resolve several times a day. Originally, I was 
able to put together a formula in excel but wanted to incorporate this into 
TW5. I thought this wouldn't be too hard using the calc macro here
http://tobibeer.github.io/tb5/#calc however, I'm having some problems.

What is the desired value? [*$200.00*]
What is the reduced value? [*$100.00*]

This is a reduction of: [*50%*]
Adjust value to: [*$400.00*] to achieve the desired value

Can this be accomplished with tiddler fields? Is there a simple way of 
accomplishing this?

Tiddler "ValueCalc" is used to enter in the values
Tiddler "ValueCalc Settings" stores the values in the following fields

   1. desired_value
   2. reduced_value
   3. reduction_value
   4. adjustment_value

-- 
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/daf8b41d-5219-4f51-89e9-3dd3da6d07a4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] [TW5] Calculating Tiddler Fields

2016-06-25 Thread reaktorblue
I have a bit of a problem and as a complete beginner trying to hack 
something together, I'm not sure what I'm doing wrong. I found a plugin, 
calc, from http://tobibeer.github.io/tb5/#calc and after importing and 
creating, I was able to get some basic math working.

I created the following fields in a tiddler:

Needed_Value
Reduced_Value
Reduction
Set_to_Value

Two of these are text fields I created with the following:

Needed Value: <$edit-text tiddler='$:/plugins/RB/GameCalc/GameCalcSettings' 
field='needed_value'/>
Reduced_Value: <$edit-text 
tiddler='$:/plugins/RB/GameCalc/GameCalcSettings' field='reduced_value'/>

I'm able to do <> and I receive 
2. The other two are fields in the tiddler but I didnt add anything. I'm 
trying to run the two calculations below, "reduction" and "set to value"

Needed_Value = 200.00 (User entered text, the goal is to reach 200.00)
Reduced_Value = 100.00 (User entered text, the value is 100.00)
Reduction = 50% (Calculation, meaning the value 100.00 is 50% of the needed 
value)
Set_to_Value = 400.00 (Calculation, meaning the value would need to be 
reset to 400.00, because 50% is the needed value of 200.00)

Could someone point me in the right direction?



Warmest 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/2b326a41-18be-4e08-af47-4ec9e2eb453d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Top Toolbar Plugin Question

2016-06-22 Thread reaktorblue
toplefttoolbar seems to work in similar fashion to top menu toolbar. The 
functionality I was hoping to either find or try to implement is something 
along the same lines of the backstage button in TW classic.

When clicked, it displays it's toolbar, then if clicked again, it collapses 
the toolbar.

On Wednesday, June 22, 2016 at 2:50:25 PM UTC-4, Andrew wrote:
>
> You might have a look at 
> http://toplefttoolbar.tiddlyspot.com
>
> Happy Connecting. Sent from my Sprint Samsung Galaxy S® 5
>
>
>  Original message 
> From: reakt...@gmail.com  
> Date: 6/22/16 11:33 AM (GMT-07:00) 
> To: TiddlyWiki > 
> Subject: [tw] Top Toolbar Plugin Question 
>
> Hiyas everyone!
>
> I'm still in the process of trying to convert from a customized MPTW 
> themed TWC to TW5 and currently, I'm playing around with the Top Menu 
> Toolbar from TonGerner - http://tw5toolbar.tiddlyspot.com/. Is there a 
> way to toggle the toolbar on/off just like the way the backstage used to 
> work on TWC?
>
> -- 
> 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+...@googlegroups.com .
> To post to this group, send email to tiddl...@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/a4e0d353-9a9a-4071-8597-df27672865b2%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/4c2743d5-8139-4104-b559-05d83aac2c7d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Top Toolbar Plugin Question

2016-06-22 Thread reaktorblue
Hiyas everyone!

I'm still in the process of trying to convert from a customized MPTW themed 
TWC to TW5 and currently, I'm playing around with the Top Menu Toolbar from 
TonGerner - http://tw5toolbar.tiddlyspot.com/. Is there a way to toggle the 
toolbar on/off just like the way the backstage used to work on TWC?

-- 
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/a4e0d353-9a9a-4071-8597-df27672865b2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 Sortable Tables

2015-12-14 Thread reaktorblue
I haven't had much luck with the examples here 

 
but that's very much attributed to me being a TW noob. I caught on late to 
TW at the end of classic when I had something working but TW5 has been 
fairly frustrating for me to get learning. The only real issue that keeps 
me from using this and progressively learning really are tables that I can 
sort. I'm not sure if I'm just a complete and utter noob at this or I miss 
the true value/function of what TW5 should be used for.

What I was hoping to accomplish were sortable tables like the ones here - 
http://www.kryogenix.org/code/browser/sorttable/. Notice how the table in 
the 2nd example has sortable headers that when clicked or clicked a second 
time will sort ascending or descending and display an arrow? Is something 
like this even possible?

Maybe I'm going about this wrong however, allow me to explain my usage for 
such a thing and perhaps it may help to understand what I'm trying to 
accomplish. I currently have to manage roughly 50 users who I need to keep 
track of what level of access, training, and development they have. These 
are such small tables I've made in Excel and generally don't require math 
however, I'm looking to be able to use TW5 to do this since I think I can 
keep notes on each incident/training/coaching in a bit more intuitive way 
with TW5.

Any thoughts?


-- 
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/db8c0176-5118-4038-869f-65c4b98d705b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 Sortable Tables

2015-06-26 Thread reaktorblue
I'd be interested in finding this. I'll see what I can dig up, in the 
meantime if you happen to come across the plugin again and you remember 
this post, see if you can include it. That sounds quite interesting!

On Friday, June 26, 2015 at 5:36:25 AM UTC-4, Danielo Rodríguez wrote:
>
> There is a plugin that creates some kind of Excel sheet within the 
> tiddler. I don't remember the name but it is quite impressive. 

-- 
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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/d2390764-3b04-47d5-bd4e-b0e3954fab40%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 Sortable Tables

2015-06-26 Thread reaktorblue
Jed,

That would work great! Creating and maintaining them easily (creating them 
and editing in-line in your example) is excellent. Adding a sorting by 
clicking column header is a welcome addition as it allows for interpreting 
the data much easier. The sorting and filtering options you provided would 
also be a welcome addition I think.

On Friday, June 26, 2015 at 2:10:57 AM UTC-4, Jed Carty wrote:
>
> Would something like this 
>  work if I made it so 
> that clicking on a column header sorted the table using that column? I am 
> not really sure what people are looking for with these tables.
>
> I should probably add sorting and some filtering operations like I use 
> here  to those macros 
> anyway.
>

-- 
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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/a8825491-018d-4f51-a22f-ee55df7fa6e2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 Sortable Tables

2015-06-25 Thread reaktorblue
I agree, I just have not found anything yet that works. Having the 
explanations of the data in TW and having to link to an outside excel file 
is not quite what I am looking to continue doing because it defeats the 
purpose of everything in one file.

I'll have to keep poking around and see what I can find.

-- 
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 http://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/5e488577-33d0-41d7-aa85-aebb94f959ef%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: TW5 Sortable Tables

2015-06-24 Thread reaktorblue
I keep checking for this particular functionality as it's the only thing 
that ever keeps me from using TW full time. Has anyone happened to find a 
plugin or method to make tables sortable?

On Monday, March 2, 2015 at 7:34:51 AM UTC-5, Tobias Beer wrote:
>
> Hi Jed,
>  
>
>> Otherwise you can do it without too much trouble using html:
>>
>
> While that works, the table data need not necessarily come from individual 
> tiddlers, so a more generic approach to table sorting as well as filtering 
> seems desireable. Sure, the sorting and filtering state(s) could be 
> persisted in some state tiddler.
>
> Best wishes, Tobias.
>

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


[tw] TW5 Sortable Tables

2015-02-25 Thread reaktorblue
I have been searching for a way to create tables in TW5 in such a way that 
when clicking on the table header, it will sort the table by that column. 
There was a plugin to do this in TWC but I have not been able to find any 
way to do this in the current TW5. Has anyone seen a plugin or does anyone 
know how to accomplish this?

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Using data stored in tiddlers to create tables

2013-05-31 Thread reaktorblue
I'm currently trying to use my TW to manage a group of direct reports. What 
I currently have going is a tiddler with a list of direct reports. This 
currently is used to manage tasks assigned to them. I'd like to be able to 
create tiddlers for this group of individuals for training. What I would 
like to have happen is the training tiddler would have a title (the name of 
the training) and in the body of the tiddler, I'd like to have a table with 
each of the direct reports listed (hopefully pulling from the list of 
direct reports tiddler) and next to that, a simple indicator that the 
direct report received the training for that topic.
 
Initially I was thinking this would be easy but it's proven to be quite the 
challenge. Does anyone have any insight as to how I might be able to 
accomplish this?

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [tw] Re: TW Logo

2013-05-27 Thread reaktorblue
As a big fan of ASCII art, I have to say I really enjoy the pixelated 
images. This is some really cool work!

-- 
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 http://groups.google.com/group/tiddlywiki?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




[tw] Re: ToggleSliders - possible bugreport...

2013-05-25 Thread reaktorblue
Hi Måns,

I'm experiencing this same issue. When I leave it as "here" (without the 
quotes) it properly says "view all" and "close all" respectively however, 
when clicked it does not actually expand or collapse anything. When I 
change the syntax to "" it seems to work correctly however, displays $2 and 
$3 as you have mentioned.

Did you happen to find a way to fix this?



Warmest Regards,

RB

-- 
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 http://groups.google.com/group/tiddlywiki?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




[tw] ToggleSliders works but doesn't display properly

2013-05-25 Thread reaktorblue
I'm trying to get the task package from tiddlytools working in my tw and 
have been pretty successful so far however, when clicking "view all" for 
the task notes, it only changes to "close all". Nothing actually expands or 
collapses.

Trying to follow the syntax, if I change the syntax in the TaskViewTemplate 
from <> to 
<> it does seem to 
work.

The problem I run into then though is instead of it saying "view all" and 
"close all" it says "$2" and "$3". Any idea what I might be doing wrong?

-- 
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 http://groups.google.com/group/tiddlywiki?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




[tw] Re: Modified TeamTasks TiddlyWiki

2013-05-24 Thread reaktorblue
Occasionally when trying to select a defect type, for example, Scope: 
Issue, the drop down menu's appear to refresh and revert back to "Please 
select". I noticed that despite this, it does seem to remember what option 
was chosen, if I view the open tasks.

Any idea what might be causing this?

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at http://groups.google.com/group/tiddlywiki?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




[tw] Re: Modified TeamTasks TiddlyWiki

2013-05-22 Thread reaktorblue
I think I found part of my problem. I was using build, 2.7.2 and something 
appears to be broken with ValueSwitcherPlugin.

- The base CFlowTeamTasks uses build 2.5.0 beta 1 and works great
- This version appears to suffer from IE10 / FF20 import from local file 
issues.
- This was fixed in build 2.7.1 beta 2

- Upgrading CFlowTeamTasks using method found 
here
.
- Upgraded to 2.7.2 successfully
- ValueSwitcherPlugin now appears to have issues allowing the user to 
select any list definitions
- Upgraded to 2.8.0 beta 1 successfully
- ValueSwitcherPlugin issue persists

Do you think that may be the issue?

On Wednesday, May 22, 2013 12:09:15 AM UTC-4, cflow wrote:
>
> I don't think its the theme/skin, the tasks features don't work at all as 
> you haven't got fields displaying on the tasks, therefore no selections can 
> be made, therefore broken macro!
>
> The reason the macro is failing is due to the values for DisplayFields, 
> OrderBy and Status not being available at all in the task records. It looks 
> like you just imported some of my tiddlers (and some of the other ideas) 
> into a base TiddlyWiki without the javascript work done by Phil 
> Hawksworth (which is how the teamtasks things all work), but I haven't 
> checked the back-end of your file to see if that's true. 
>
> In your file you have the following macro call in the Open tasks tiddler:
>
> < OrderBy:"Title,asc" Scope:"Issue" Status:"!Complete">>
>
>
> If you modify it to just <> you will see that the report 
> performs and gathers all items with the "task" tag into a viewable table. 
> It doesn't look the same as the standard teamtasks due to differences in 
> the CSS.
>
> This is how we all learn though, by breaking it a couple of times :)
>
>
>

-- 
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 http://groups.google.com/group/tiddlywiki?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




[tw] Re: Modified TeamTasks TiddlyWiki

2013-05-22 Thread reaktorblue
I actually butchered it so bad I reset it before attaching however, you 
guessed it correctly. I started with a fresh TW and went from there. What 
you explained though does make some sense so I'll see if I can work from 
there. It's a new experience for me so I do appreciate the guidance. Thanks 
again for a great tasks implementation!



Warmest Regards,

RB

On Wednesday, May 22, 2013 12:09:15 AM UTC-4, cflow wrote:
>
> I don't think its the theme/skin, the tasks features don't work at all as 
> you haven't got fields displaying on the tasks, therefore no selections can 
> be made, therefore broken macro!
>
> The reason the macro is failing is due to the values for DisplayFields, 
> OrderBy and Status not being available at all in the task records. It looks 
> like you just imported some of my tiddlers (and some of the other ideas) 
> into a base TiddlyWiki without the javascript work done by Phil 
> Hawksworth (which is how the teamtasks things all work), but I haven't 
> checked the back-end of your file to see if that's true. 
>
> In your file you have the following macro call in the Open tasks tiddler:
>
> < OrderBy:"Title,asc" Scope:"Issue" Status:"!Complete">>
>
>
> If you modify it to just <> you will see that the report 
> performs and gathers all items with the "task" tag into a viewable table. 
> It doesn't look the same as the standard teamtasks due to differences in 
> the CSS.
>
> This is how we all learn though, by breaking it a couple of times :)
>
>
>

-- 
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 http://groups.google.com/group/tiddlywiki?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




[tw] Re: Modified TeamTasks TiddlyWiki

2013-05-21 Thread reaktorblue
I love the way this TW works. I'm not crazy about the layout, especially 
since I use it on android quite a bit. I really like how cleanly it makes 
the tasks seem.

I'm attempting to port it's functionality over to my TW, which is running 
of MPTW but, it's not really working out so well. I think it has to do with 
the theme, view templates, etc. I've tried slicing it up a few times and 
I've almost had it working but the value switcher options wouldn't save any 
of the options. I also get the TTReportView error. I was able to get rid of 
that at one point, I'm not sure how though.

Think you could give me a hand merging this with mine?



Warmest Regards,

RB

On Wednesday, May 15, 2013 3:21:31 AM UTC-4, cflow wrote:
>
> Hi All,
>  
> I have been playing/tweaking with TiddlyWiki in the form of the TeamTass 
> implementation for a number of years and I have attached a "blank slate" 
> version for all to use.
>  
> Key differences between the Base version I started from and mine are:
>
>- the Menu structures;
>   - I added a plugin to address refresh which I use all the time, 
>   then added it to both menus.
>   - Changed the menus and content to follow an intuitive (for me) 
>   navigation
>   - Added hotlinks to create new tiddlers of certain types
>- The tiddler types:
>   - I required fairly conventional tiddler types, however I wanted 
>   them to be quickly accessable and look a little professional so I have 
>   ended up with:
>  - standard tiddlers
>  - tasks
> - Follows the standard TeamTasks model
>  - notes
> - Standard tidder with an automatic "notes" tag that gets it 
> filtered into the "Notes" list in "All notes" Base tiddler for 
> startup.
>  - meeting notes
> - Standard tidder with an automatic "meeting" tag that gets 
> it filtered into the "Meeting Notes" list in "All notes" Base 
> tiddler for 
> startup.
> - Sometimes its worthwhile capturing the meeting notes for 
> circulation amongst peers. Keeping these separate from the 
> conventional 
> notes just allows for easy tracking.
> - Essentially you just add "meeting" as a tag.
>  - people
> - Everyone has contacts they want to capture. Using the 
> "people" tag just gave me that easily and gets filtered into the 
> "People" 
> list in "All notes" Base tiddler for startup.
> - *If someone could advise how to create two TeamTask types 
> in the same tiddler I would be the happiest guy in the world and 
> would make 
> a "contacts" TeamTask list that would work alongside the standard 
> with its 
> own values from drop downs etc.*
>  - Base
> - Added a filter in the DefaultTiddlers to allow just items 
> with a tag of "Base" to show up. This means if I am working 
> consistently on 
> an item I can just tag it as "Base" and it's always there at 
> start-up. 
> Conversely I can remove items from the default view by just 
> removing the 
> tag.
>  - the CSS colours
>   - I have modified the way the colours are described throughout the 
>   code so that they rely just on one input zone that you can modify the 
> same 
>   as any other tiddler. 
>   - I did this so it was easy to "re-brand" depending on the brand 
>   colours required.
>   - I am a visual guy so there is also a table to show colour 
>   relationships to the code etc. See the TeamTasksColors tiddler in the 
> file 
>   attached.
>
> Any feedback or suggestions would be appreciated. 
>  
> So far I haven't hacked any of the Java, just CSS, HTML and plugins. I 
> have kept the plugins to a minimum (I think) but I would love to update the 
> overall wiki to reflect the current build. If someone could help me out 
> there it woul be awesome.
>  
> Regards
> cflow
>

-- 
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 http://groups.google.com/group/tiddlywiki?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




[tw] Re: Modified TeamTasks TiddlyWiki

2013-05-20 Thread reaktorblue
As a newcomer to TW, I have to say, this is impressive work! I'm actively 
trying to use this now, I will let you know how this works for me. Thanks 
again for all of the effort put into this!



Warmest Regards,

RB

On Friday, May 17, 2013 1:21:58 AM UTC-4, cflow wrote:
>
> After viewing a few of the posts in the group I realised my "meeting" 
> tiddler was using the wrong base and have modified it to use the newjournal 
> macro :)
>
> Also modified the top menu to use "+" instead of "new" conserving a bit of 
> space and added "+journal" to the tiddlers.
> Might be beneficial to make it a drop down list from a "+" that you can 
> click, then select from the list, but thats all for today, must get some 
> work done ;)
>

-- 
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 http://groups.google.com/group/tiddlywiki?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




[tw] Re: Announcing TiddlyWiki version 2.7.2 BETA 1

2013-05-13 Thread reaktorblue
Tests successful for me.
- fresh TW272b2
- IE10 compatibility view disabled
- no longer receiving "Unable to get property '1' of undefined or null 
reference"

On Friday, May 3, 2013 8:51:30 PM UTC-4, Eric Shulman wrote:
>
> Greetings All! 
>
> I'm pleased to announce that TiddlyWiki Classic, version 2.7.2 BETA 1, 
> is now available for viewing/download, here: 
> http://www.tiddlywiki.com/beta 
>
> IMPORTANT: This revision is on an shortened release schedule and, 
> barring any reports of critical "show stopper" errors, will be 
> promoted to full release within the next week. 
>
> This revision includes the following changes: 
>
> * Backstage>import: 
>   See https://github.com/TiddlyWiki/tiddlywiki/issues/116 
>
> Importing tiddlers now uses "FileReader" API whenever available 
> (currently supported by Chrome, Firefox 20+, etc.).  This new HTML5- 
> standard browser-based file I/O handling does not require any special 
> privileges or security permissions to read contents of files that you 
> interactively select from your local filesystem, and you can now 
> successfully import tiddler from files that are outside of the current 
> folder. 
>
> Note: this change only applies when you use the "browse" (or "select 
> file") button to interactively choose a document from your local 
> filesystem.   If you manually enter (or paste) a local "file://" URL 
> into the import form (or if FileReader handling is not supported by 
> your browser version), the existing browser-specific file I/O 
> functions are used, which still requires security permissions and/or 
> other add-ons to permit reading of file contents; e.g. TiddlyFox 
> (FireFox), TiddlySaver java applet (Chrome, Safari, Opera, etc.), or 
> ActiveX (Internet Explorer). 
>
> * Internet Explorer: 
>   See https://github.com/TiddlyWiki/tiddlywiki/issues/118 
>
> When using IE10 (the current version of IE), special-case handling of 
> embedded newlines in PRE-formatted blocks is no longer applied.  This 
> corrects a formatting/display error introduced by changes in IE10. 
> Note: this change only applies to IE10 and above; special handling is 
> still applied to embedded newlines in IE9 and earlier so there should 
> be no change to existing content when viewed on IE9 or earlier. 
>
> enjoy, 
> -e 
> Eric Shulman 
> Lead Developer - TiddlyWiki Classic 
>

-- 
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 http://groups.google.com/group/tiddlywiki?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




[tw] Cleaning up tags

2013-05-11 Thread reaktorblue
I'm sure that this has to have been discussed at length at some time 
however all of my searches seem to return irrelevant information. What I 
would like to do is clean up the tags in my TW. After testing and trying 
out a myriad of plugins (I'm new to TW so I'm eager to learn and try new 
plugins) I'm left with a long list of tags that looks rather ugly.

Some plugins may be part of a package, for example, the NestedSlidersPlugin 
is tagged with DiscoveryPackage, TaskPackage, TidIDEPackage, and 
systemConfig. I realize I will need the systemConfig tag to tell TW to load 
the plugin on startup, but would I need the rest of the tags? I'm 
completely happy with, for my learning experience, retagging all packages 
from TiddlyTools with TiddlyToolsPackages - just to keep this tidy.

Is this possible or would this result in plugin problems? It's not just 
NestedSlidersPlugin either, I'm only using that for an example. There are a 
plethora of tag entries I would like to clean up if possible.

-- 
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 http://groups.google.com/group/tiddlywiki?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




[tw] Re: Announcing TiddlyWiki version 2.7.2 BETA 1

2013-05-11 Thread reaktorblue
I was having the same problem, receiving the error message you describe 
about "Unable to get property '1' of undefined or null reference". I found 
out that this problem is not in Firefox 20+ but it is in IE 10. What fixed 
this for me was to go to tools -> compatibility view settings -> check the 
option to display all websites in compatibility view

The only reason I'm cool with making that change is because I only use IE 
on my personal computer to edit my TW. This is so it's a similar experience 
as I use the same TW at work where they use IE and my access is limited by 
group policy.

HTH



Warmest Regards,

RB

On Saturday, May 4, 2013 9:42:45 PM UTC-4, Scott Simmons wrote:
>
> For what it's worth, this is what happens for me:
>
> The display URI is built from the path of the TiddlyWiki itself *and* the 
> path of the TiddlyWiki I'm importing from.
>
> file:///F:/installers/TiddlyWiki/
> W:/XAMPP/htdocs/sites/TiddlyWikis/secret-hq/add-ons.tw
>
> (I never noticed this before, likely because I was always importing from 
> the same directory once I knew that cross-directory imports would fail.)
>
> Just like you say, though, the import works fine — even though the 
> displayed URI appears mangled.
>
> —
>
> Likely unrelated/irrelevant, but — with some TiddlyWikis as the target, I 
> do get this error:
>
> Unable to get property '1' of undefined or null reference.
>
>
> After clicking "OK," I get the list of tiddlers and import proceeds fine.
>

-- 
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 http://groups.google.com/group/tiddlywiki?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




[tw] Re: TiddlerBar Plugin and the new MPTW

2013-05-10 Thread reaktorblue
@Mario

Thank you very much for the help. I wanted to respond back to at least 
thank you. I asked prematurely and was able to figure this out on my own 
with a bit more research. I really appreciate the help and wanted to get 
back to you to thank you for the effort you put in to welcome a newcomer.

This solution is spot on, in fact, if running the MPTW theme you'll have to 
customize most of the other plugins to utilize the viewTemplate, 
editTemplate, and viewTemplateToolbar there, instead of the default 
locations. Now to get a few more things working. I sure wish I hopped on 
this awesome project years ago at the height of everyone's interest. Most 
of the themes and other sites are now out of commission it seems. Thanks 
again!



Warmest Regards,

RB

On Friday, March 14, 2008 3:01:50 AM UTC-4, koyut wrote:
>
> I just tried the new mptw and wanted to start fresh so I downloaded an 
> empty one then added the tiddlerbar plugin. I don't exactly know what 
> is happening but it is in relation to select theme of the new MPTW 
>
> A few observations: 
> Downloaded a fresh copy of MPTW. 
> Loaded the plugin and added the needed macros on page template, save 
> and close. 
>
> When opening the file again you can see that when opening multiple 
> tiddlers only one shows up and the TABS CANNOT BE SEEN but the 
> tiddlers are there just in the background. Closing the tiddler being 
> shown it shows the tiddler previously opened before it. Because the 
> default is MPTW theme. 
>
> When changing the theme to MPTW Rounded, still the same effect as of 
> the above 
>
> When changing to MPTW Standard normal behavior of MPTW and 
> TiddlerBarPlugin but CANNOT SWITCH THEMES anymore.

-- 
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 http://groups.google.com/group/tiddlywiki?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




[tw] Re: TiddlerBar Plugin and the new MPTW

2013-05-07 Thread reaktorblue
I know this is a 5 year old post so I may not get the answer I'm hoping for 
however, what did you do to fix this? I'm just getting into TW now and 
found that I like the layout of MPTW but with the TiddlyBars. Any help 
would be appreciated.

On Sunday, March 16, 2008 12:43:52 PM UTC-4, koyut wrote:
>
> Solved it. Just changed the MptwTheme tiddler because that tiddler is 
> being used for all the themes page template?

-- 
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 http://groups.google.com/group/tiddlywiki?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.