Re: [tw5] Re: butlast filter operator

2021-06-28 Thread Damon Pritchett
Hey Tony, Yeah that’s what I eventually realized so I changed what happens when I reach zero. I was just wanting to understand the inner workings better. On Mon, Jun 28, 2021 at 7:34 AM TW Tones wrote: > Another way to look at it ; > Butlast purpose discard the last N input title(s) > > So

Re: [tw5] Re: butlast filter operator

2021-06-27 Thread Damon Pritchett
Thanks Eric, I appreciate that. I looked at it, but I really don’t know JavaScript. Makes me want to learn though. On Sun, Jun 27, 2021 at 12:07 PM Eric Shulman wrote: > On Sunday, June 27, 2021 at 11:28:50 AM UTC-7 History Buff wrote: > >> I don't understand why a 0 in the butlast operator

Re: [tw5] Re: Relink Plugin Performance

2021-06-06 Thread Damon Pritchett
Thanks. That explains it. I’m assuming that’s why Relink performs similarly since it’s has to calculate backlinks. Would that be a correct assumption? On Sun, Jun 6, 2021 at 9:22 PM PMario wrote: > On Monday, June 7, 2021 at 1:35:57 AM UTC+2 History Buff wrote: > > >> So my question is now

Re: [tw5] Re: xlsx-utils plugin

2021-05-18 Thread Damon Pritchett
Thanks Saq. I’ll try that as well. On Tue, May 18, 2021 at 9:03 PM Saq Imtiaz wrote: > Try using the prerelease of TW 5.1.24 to do your import. > It has a bug fix for the xlsx plugin: > > https://tiddlywiki.com/prerelease/ > On Wednesday, May 19, 2021 at 12:33:46 AM UTC+2 History Buff wrote:

Re: [tw5] Re: xlsx-utils plugin

2021-05-18 Thread Damon Pritchett
Interesting idea. Thanks. I’ll have to check that out. On Tue, May 18, 2021 at 5:46 PM TW Tones wrote: > History Buff > > The xlsx utils is a fantastic and sophisticated tool. I have not seen it > getting any updates of late. Depending on the content of your spreadsheet > you may want to

Re: [tw5] Re: Browse Widget question

2021-05-14 Thread Damon Pritchett
The photos reside in a folder below my single file TW. Ideally, I would like to use relative links. On Fri, May 14, 2021 at 7:51 PM Charlie Veniot wrote: > Silly question: where are the photos residing? > > On Friday, May 14, 2021 at 2:33:21 PM UTC-3 History Buff wrote: > >> All, >> >> This is

Re: [tw5] Re: Curious behavior

2021-05-10 Thread Damon Pritchett
No harm, no foul. I appreciate the tips as always. Any thoughts on the code? On Mon, May 10, 2021 at 8:48 PM TW Tones wrote: > Concatenate (at the end) is "adding a suffix almost by definition". I call > it a suffix in this case because it clearly only comes at the end. and > using the suffix

Re: [tw5] Re: Curious behavior

2021-05-10 Thread Damon Pritchett
Thanks Tones, I’ve used limit in the past so am familiar with it. However, I’m not understanding how it applies here. I’m not adding the filename as a suffix in a filter (unless I’m really missing something which may be the case). I’m using a small macro to concatenate the path with the filename.

Re: [tw5] Re: Shiraz plugin new release 2.2.0

2021-03-14 Thread Damon Pritchett
Hi Mohammad, The issue turned out to be that the filter I was using had more results than those displayed. I was using fields and the missing entries had no fields but were listed by the filter. Once I updated the filter, the results were correct. As soon as I submitted the original message I

Re: [tw5] Re: Shiraz plugin new release 2.2.0

2021-03-05 Thread Damon Pritchett
Drag and drop because the library wasn’t working. I also have single file TWs but I don’t know if that makes a difference. Damon On Fri, Mar 5, 2021 at 9:23 AM Mohammad Rahmani wrote: > Hi Damon, > Please let me know how you install the new version! is it through Kookma > library or by drag

Re: [tw5] Re: Filter based on integer field values less than or equal to

2020-11-29 Thread Damon Pritchett
Thanks Jeremy, I saw that, but it was my understanding that it only operated on tiddler titles. I need it to operate on a custom field. Cheers, Damon On Sun, Nov 29, 2020 at 12:16 PM Jeremy Ruston wrote: > Hi Damon > > We now have a compare operator in the core that can do "less than" >

[tw5] Re: Family History wiki

2020-07-02 Thread Damon Pritchett
there have been several discussions of possible ways to code > genealogical charts in this group. Let me know if you'd like me to find > them for you. > That said, basically, in terms of outcome, you are hitting the nail on the > head elegantly! > > I would love to see your finis

[tw5] Re: Family History wiki

2020-07-01 Thread Damon Pritchett
ter you could > list the children of a mother where the father equals the person who's > children you wish to list you are after. > > Regards > Tony > > On Thursday, July 2, 2020 at 3:04:53 AM UTC+10, Damon Pritchett wrote: >> >> After some more playing around, I d

[tw5] Re: Family History wiki

2020-07-01 Thread Damon Pritchett
to do what I'm looking to do or use Tony's suggestion of a CSS approach. On Saturday, June 27, 2020 at 4:27:54 PM UTC-7, Damon Pritchett wrote: > > All, > > I've spent the last few days working on a new wiki for use with my family > history. I'm going to use it, not as a substitute f

[tw5] Re: Family History wiki

2020-07-01 Thread Damon Pritchett
\end \define descendants() ''Descendants of <$view field='caption'><$view field='title'/>'' <> \end Assuming I don't find any bugs in this one, then it's off to investigate using fields instead of tags as Tony has suggested On Saturday, J

[tw5] Re: Family History wiki

2020-06-30 Thread Damon Pritchett
<$list filter="[titlekin:tags:to:1[]sortan[birth]!title]"> <$link><$view field='caption'><$view field='title'/> -> born: <$macrocall $name="date-str" date={{!!birth}}/> <>

Re: [tw5] Re: Family History wiki

2020-06-30 Thread Damon Pritchett
Hmm. Possibly. I'll have to think about how to do that. Is there something fundamentally wrong with my macro the way it is? Damon On Tuesday, June 30, 2020 at 12:06:59 PM UTC-7, Mat wrote: > > Maybe a workaround; could you introduce a "ghost" that is one level above > and that is not shown and

Re: [tw5] Re: Family History wiki

2020-06-30 Thread Damon Pritchett
In an attempt to show all descendants of a person instead of just the children, I've written a macro to do the recursive listing. It works great except for one thing; on the very first pass or top level, the spouses aren't listed (the code is below the examples). It lists the descendants of

Re: [tw5] Re: Family History wiki

2020-06-29 Thread Damon Pritchett
ing. It depends on how one values ones genetic tree, I > suspect racists value it more than others ;) > > Regards > Tony > > On Tuesday, June 30, 2020 at 1:40:59 AM UTC+10, Damon Pritchett wrote: >> >> Not sure how that began being used in genealogy, but they have been a

Re: [tw5] Re: Family History wiki

2020-06-29 Thread Damon Pritchett
Not sure how that began being used in genealogy, but they have been as long as I’ve been researching my family which is over 30 years. They are very convenient for visualizing ancestors. Wikipedia has an article about them here: https://en.m.wikipedia.org/wiki/Pedigree_chart. Don’t know if

Re: [tw5] Re: Family History wiki

2020-06-28 Thread Damon Pritchett
Thanks Tony. Interesting thoughts. By pedigree I mean the first figure that Tidgraph generated. It’s a chart that shows the ancestors of a person graphically. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and

Re: [tw5] Re: Family History wiki

2020-06-28 Thread Damon Pritchett
o represent any list like tiddgraph. > After all a nested button list is basically the same thing without the > lines. Not that I know CSS enough, others do. > > Regards > Tony > > > > > On Monday, June 29, 2020 at 12:55:15 PM UTC+10, Damon Pritchett wrote: >>

Re: [tw5] Re: Family History wiki

2020-06-28 Thread Damon Pritchett
orks and hierarchies as > well. > > Needless to say it will use tocp, Kin, and recursion and possible GenTags. > > Regards > Tony > > > On Monday, June 29, 2020 at 10:48:04 AM UTC+10, Damon Pritchett wrote: >> >> Hey Tony, >> >> I have done quite

[tw5] Re: Family History wiki

2020-06-28 Thread Damon Pritchett
e toc and macros discussed a few times > that could help you build a full system that iterates trees. > > Regards > Tony > > On Monday, June 29, 2020 at 6:14:02 AM UTC+10, Damon Pritchett wrote: >> >> I've played around with the kin filter today and it is a fine repla

[tw5] Re: Family History wiki

2020-06-28 Thread Damon Pritchett
to do it). Damon On Saturday, June 27, 2020 at 9:47:48 PM UTC-7, Damon Pritchett wrote: > > Saq, > > I have used it before and it just never occurred to me to use it in this > aspect. Thanks for the reminder. I will look into that tomorrow. What I did > was a great learning

[tw5] Re: Family History wiki

2020-06-27 Thread Damon Pritchett
Saq, I have used it before and it just never occurred to me to use it in this aspect. Thanks for the reminder. I will look into that tomorrow. What I did was a great learning experience for me but kin filter will likely work better. Thanks -- You received this message because you are

[tw5] Family History wiki

2020-06-27 Thread Damon Pritchett
All, I've spent the last few days working on a new wiki for use with my family history. I'm going to use it, not as a substitute for my genealogy program, but as a supplement to keep track of documentation and such. In so doing, I've managed to figure out a nice way of using tidgraph to

[tw5] Re: Links within fields

2020-06-21 Thread Damon Pritchett
Eric / Tony, As always, thank you so much. Everything you both said makes perfect sense. I appreciate the input very much. Thanks to both of you, I'm learning a great deal about Tiddlywiki. Damon On Sunday, June 21, 2020 at 5:48:59 PM UTC-7, Damon Pritchett wrote: > > All, > >

[tw5] Links within fields

2020-06-21 Thread Damon Pritchett
All, Pretty quick question from someone who knows just enough to do something stupid. I'm starting down the road of having tiddler titles in custom fields with the square brackets around the title so the field turns into a link when displayed. Before I go too far down this path, I'd like to

Re: [tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-06-13 Thread Damon Pritchett
I have four dynamic tables because I have a lot of information that I want displayed and I want to keep it all in the tiddler width without the columns being too narrow. If anyone sees something that I could have done better, I'm all ears (or eyes in this case). Damon On Saturday, June 13, 2020 at 3:32:27

Re: [tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-06-13 Thread Damon Pritchett
On Friday, June 12, 2020 at 1:01:21 PM UTC-7, Mohammad wrote: > > Hi Damon, > Good luck for new development! You are on the right track! > > > Best wishes > Mohammad > > > On Fri, Jun 12, 2020 at 9:47 PM Damon Pritchett > wrote: > >> Thanks Mohammad, >> &g

Re: [tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-06-12 Thread Damon Pritchett
ate. That's all. > > For start you can clone Shiraz template and rename them. > > > Best wishes > Mohammad > > > On Fri, Jun 12, 2020 at 1:52 AM Damon Pritchett > wrote: > >> Mohammad, >> >> I was able to figure out what modifications to the tags

Re: [tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-06-11 Thread Damon Pritchett
, 2020 at 6:36:49 AM UTC-7, Mohammad wrote: > > If you mean to NOT display certain tags, with the current code it is not > possible! BUT you can hack the tags template in Shiraz > to meet your requirements. > > > Best wishes > Mohammad > > > On Thu, Jun 11, 2020 at

Re: [tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-06-11 Thread Damon Pritchett
UTC-7, Mohammad wrote: > > If you mean to NOT display certain tags, with the current code it is not > possible! BUT you can hack the tags template in Shiraz > to meet your requirements. > > > Best wishes > Mohammad > > > On Thu, Jun 11, 2020 at 6:34 AM Damon Pritch

[tw5] Re: Shiraz Plugin 2.0.15: Dynamic Tables with Task Manager Example and Numerical Summary

2020-06-10 Thread Damon Pritchett
Hello Mohammad, I have a dynamic tables question. I have my dynamic tables call from within a list widget so that only tiddlers with a certain tag will populate the table. One of my columns is tags because I want to see what other tags are being used for each of the tiddlers. Is it possible to

[tw5] Re: Monowikis vs. Microwikis

2020-06-10 Thread Damon Pritchett
I use what you call a monowiki that is approximately 10MB in size with thousands of tiddlers. As TiddlyTweeter mentioned, extensive use of tags can slow things down. I use tags only as little as possible. I use fields for everything else. I also don't embed any images (or very, very few) in my

[tw5] Re: My TW Performance

2020-06-07 Thread Damon Pritchett
UTC-7, Damon Pritchett wrote: >> >> I like the idea of the submit button, but am unsure as to how to >> implement that. I know I need to couple a button with an action widget, but >> the documentation at Tiddlywiki.com is confusing to me. Could you point me >> to a

[tw5] Re: My TW Performance

2020-06-06 Thread Damon Pritchett
s > Tony > > > On Saturday, June 6, 2020 at 9:01:31 AM UTC+10, Damon Pritchett wrote: >> >> Haven't tried a splash screen yet, but am loving the conversation. >> >> One performance note that I forgot to mention: I have a couple of custom >> searches setup;

[tw5] Re: My TW Performance

2020-06-05 Thread Damon Pritchett
Haven't tried a splash screen yet, but am loving the conversation. One performance note that I forgot to mention: I have a couple of custom searches setup; one the name of the tiddler and one for the prefix of the tiddler name. Both search show a bit of a delay when entering text in them which

[tw5] Re: My TW Performance

2020-06-03 Thread Damon Pritchett
Ah, ok. I misunderstood. Thanks for the clarification. It makes perfect sense. -- 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

[tw5] Re: My TW Performance

2020-06-03 Thread Damon Pritchett
Thanks Tony. I will say that even as large as my wiki is, it loads fairly quickly. I currently have a single tiddler open on startup. It’s a very small amount text along with a couple of external images. Sort of a “title page” of sorts. I’m going to investigate the splash screen to see if

[tw5] Re: My TW Performance

2020-06-03 Thread Damon Pritchett
Shulman wrote: > > On Wednesday, June 3, 2020 at 2:48:00 PM UTC-7, Damon Pritchett wrote: >> >> ...The only delay that I notice is in the backlinks widget of a footer >> that is part of probably half of my tiddlers. The very first time I open >> this widget (it's in a

[tw5] My TW Performance

2020-06-03 Thread Damon Pritchett
Hey all, There have many discussions in the past about how big a TW can get before there are any performance issues so I figured I'd post this as a point of reference for folks wondering about that. I will note that I am not experiencing any performance issues at this time. The only delay that

Re: [tw5] Re: Sidebar button coloring

2020-05-31 Thread Damon Pritchett
lement. > Honestly many times it just ad to my confusion. It gets a little better > with time, so keep doing it. > > Birthe > > søndag den 31. maj 2020 kl. 19.04.38 UTC+2 skrev Damon Pritchett: >> >> Thanks Birthe, >> >> That last css statement is what I was

Re: [tw5] Re: Sidebar button coloring

2020-05-31 Thread Damon Pritchett
Thanks Birthe, That last css statement is what I was missing. If I may ask, is that something you just picked up with experience or were you able to figure that out? If you figured it out, where did you find it? Damon On Sunday, May 31, 2020 at 9:41:06 AM UTC-7, Birthe C wrote: > > Damon, >

Re: [tw5] Re: Sidebar button coloring

2020-05-31 Thread Damon Pritchett
Some but mostly through stylesheets. On Sun, May 31, 2020 at 4:05 AM Reet Pandher wrote: > Are you customizing via the color palette? > > On Sunday, May 31, 2020 at 10:50:07 AM UTC+5:30, Damon Pritchett wrote: >> >> All, >> >> I’ve been playing around wit

[tw5] Sidebar button coloring

2020-05-30 Thread Damon Pritchett
All, I’ve been playing around with customizing my TW and am trying to change the color of the icons in the page controls buttons. I haven’t figured out a way to do it without breaking the save button changing colors when changes have occurred. I’m trying to get a color that’s different than

[tw5] How to solve the online and offline use of TiddlyWiki?

2020-05-29 Thread Damon Pritchett
I have my TW in Microsoft OneDrive which works similarly to Dropbox. I’ve been doing this for a couple of years now without any issues. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails

[tw5] Re: Tag drag and drop

2020-05-27 Thread Damon Pritchett
On Wednesday, May 27, 2020 at 11:34:27 AM UTC-7, Damon Pritchett wrote: > > Hello folks, > > Somehow I've managed to break the drag and drop behavior of ordering tags. > The file I saved 4 days ago behaves normally and I've looked at all the > differences I made between then a

[tw5] Tag drag and drop

2020-05-27 Thread Damon Pritchett
Hello folks, Somehow I've managed to break the drag and drop behavior of ordering tags. The file I saved 4 days ago behaves normally and I've looked at all the differences I made between then and now. Other than content, I made some styling changes, but backing those out didn't fix it. What

[tw5] Re: Using kin filter with multiple tags

2020-05-11 Thread Damon Pritchett
Alrighty then. After a bit of trial and error and realizing that there were other considerations when a tiddler has a succession of two tags, but then those two tags have a common single tag and also having to make sure that I didn't break the normal case where only one tag was involved

[tw5] Re: Using kin filter with multiple tags

2020-05-11 Thread Damon Pritchett
that would be. I'm sure that there is a better way to do it given that I'm pretty much a noob at this. Thanks, Damon On Saturday, May 9, 2020 at 11:09:13 AM UTC-7, Damon Pritchett wrote: > > Here's an example I created to illustrate. > > I have a series of tiddlers named RR#1 through RR

[tw5] Using kin filter with multiple tags

2020-05-08 Thread Damon Pritchett
All, I've been using the following code which encompasses the kin filter to trace tiddler tags. More specifically, I'm using it trace the line of mergers for certain railroads (each railroad is a separate tiddler) such that for any given company I can see the line of successive railroads

[tw5] Re: XML plugin for Tiddlywiki??

2020-05-02 Thread Damon Pritchett
I really like the prospects of this. I have an excel spreadsheet that I would like to import into my TW as a single tiddler with a table that represents the worksheet. This seems like an ideal solution for that. Do you think it's ready for me to experiment with that? Thanks, Damon On Monday,

[tw5] Re: Sharing Drift

2020-05-02 Thread Damon Pritchett
Hey Tony, The tabs macro is built into Tiddlywiki so I just used it as is. I just took advantage of it. I borrowed a few things from HCHaase and created some other tiddlers to be used in the tabs macro. Their function is similar to what you've accomplished, just in a different fashion. I don't

[tw5] Re: Sharing Drift

2020-05-01 Thread Damon Pritchett
Hello Tony K, Nice work. I did nearly exactly the same thing except I used the tabs macro. I like your method as well. With the tabs macro, I had to deal with the state tiddlers and the default tab, but solved that. Your method doesn't need to worry about that. I do like the keywords feature.

Re: [tw5] Default Sidebar Tab

2020-05-01 Thread Damon Pritchett
Hello all, Just wanted to let you know that I've solved the default sidebar tab problem i was having. I had a startup action that I had forgotten about that was overriding my wishes. Once I fixed that, everything was fine. Damon On Wednesday, April 15, 2020 at 6:08:07 PM UTC-7, Damon

[tw5] Re: Using tab macro in viewTemplate

2020-04-30 Thread Damon Pritchett
> tiddler title and has quotes around it. The macro was trying to match the > tab [[Railroad Footnotes]] which isn't a part of the macro, so the default > was not working. > > On Thursday, April 30, 2020 at 11:26:09 PM UTC+2, Damon Pritchett wrote: >> >> Here's t

[tw5] Re: Using tab macro in viewTemplate

2020-04-30 Thread Damon Pritchett
d. There may be a syntax error that you are not catching. > > > On Thursday, April 30, 2020 at 11:15:04 PM UTC+2, Damon Pritchett wrote: >> >> All, >> >> Thanks for the suggestions. I did find that using the publishFilter idea >> works great for not having to wo

[tw5] Re: Using tab macro in viewTemplate

2020-04-30 Thread Damon Pritchett
a field in the tiddler to set the default state of the tabs? That way, each tiddler could have its own default defined like Mat's idea, but there would be so many state tiddlers. Thanks, Damon On Wednesday, April 29, 2020 at 2:59:36 PM UTC-7, Damon Pritchett wrote: > > Hello all, &g

[tw5] Using tab macro in viewTemplate

2020-04-29 Thread Damon Pritchett
Hello all, I've been playing around for the last couple of days experimenting with adding a viewTemplate with a tabbed interface as a footer to tiddlers tagged with a certain tag. I've been able to make this sort of work with the tab macro and I've also used the tabber macro of Mat's, but both

[tw5] Re: 5.1.22 MenuBar colors

2020-04-18 Thread Damon Pritchett
size */ nav.tc-menubar .tc-btn-rounded { font-size: 0.7em; } /* Page control styling for menubar */ nav.tc-menubar .tc-page-controls { margin-top: 0; font-size: 1.0em; } On Saturday, April 18, 2020 at 6:40:55 PM UTC-7, Damon Pritchett wrote: > > Well, after some fiddling furthe

[tw5] Re: 5.1.22 MenuBar colors

2020-04-18 Thread Damon Pritchett
gt; While this achieved what I desired, I don't like modifying the tiddlers that come with a plugin. I'd rather do this by adding my own stylesheets. In this case, I was at a loss as to how to do this. There's probably something obvious that I'm missing and I'm hoping someone can enlighten me

[tw5] Re: 5.1.22 MenuBar colors

2020-04-18 Thread Damon Pritchett
on this? Thanks again, Damon On Friday, April 17, 2020 at 3:37:09 PM UTC-7, Damon Pritchett wrote: > > Thanks so much (or should I say merci)! I was trying background not > background-color. > > Damon > > On Friday, April 17, 2020 at 3:28:28 PM UTC-7, Sylvain Naudin wrote: >&

[tw5] Re: 5.1.22 MenuBar colors

2020-04-17 Thread Damon Pritchett
Thanks so much (or should I say merci)! I was trying background not background-color. Damon On Friday, April 17, 2020 at 3:28:28 PM UTC-7, Sylvain Naudin wrote: > > > > Le vendredi 17 avril 2020 23:28:47 UTC+2, Damon Pritchett a écrit : >> >> Well, that CSS helped

[tw5] Re: 5.1.22 MenuBar colors

2020-04-17 Thread Damon Pritchett
primary color in the palette. This works great for link text, but not for a background. Damon On Friday, April 17, 2020 at 1:33:04 PM UTC-7, Damon Pritchett wrote: > > Thanks. That's exactly what I was looking for. > > Damon > > On Friday, April 17, 2020 at 4:12:30 AM UTC-7, Mat

[tw5] Re: 5.1.22 MenuBar colors

2020-04-17 Thread Damon Pritchett
Thanks. That's exactly what I was looking for. Damon On Friday, April 17, 2020 at 4:12:30 AM UTC-7, Mat wrote: > > https://github.com/Jermolene/TiddlyWiki5/issues/4568 > > <:-) > -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe

[tw5] Re: Commander

2020-04-17 Thread Damon Pritchett
sed. > This is because it lets user to filter their tiddlers in two stage. First > one can search a bunch of tiddlers for operation > and then select among them where writing filter may be cumbersome. > > --Mohammad > > > On Friday, April 17, 2020 at 2:39:23 AM UTC+4:30, Damon

[tw5] 5.1.22 MenuBar colors

2020-04-16 Thread Damon Pritchett
Hey all, I don't know if many people have played with the menubar yet, but I'm wondering how I can change the colors of the menu items. For example, I have the sidebar selected as being part of the sidebar. When I select that and move down the sidebar menu items, the item I'm hovering over has

[tw5] Commander

2020-04-16 Thread Damon Pritchett
Mohammad, I've noticed that any tiddlers that I've done a search and replace in with Commander had the tage $:/tags/Commander/Working added to them. Is there anyway that this can be avoided? At present, I'm having to manually go in a delete that tag from all of the tiddlers that I just

Re: [tw5] Default Sidebar Tab

2020-04-15 Thread Damon Pritchett
All, Just for grins today, I decided to use the methods previously discussed to set the default sidebar tab in an empty 5.1.22 TW. Alas, I was unable to get the sidebar tab to start up with anything other than the last saved tab. The tiddler tagged with $:/tags/StartupAction seemed to have no

[tw5] Re: Multi-value fields

2020-04-12 Thread Damon Pritchett
Thanks Mat, That worked beautifully. I was on the right track, but was using double quotes around the parameters which was not needed. I still haven't grasped completely when they're required and when they're not. Damon On Sunday, April 12, 2020 at 11:39:02 AM UTC-7, Mat wrote: > > @Damon - I

[tw5] Re: Multi-value fields

2020-04-12 Thread Damon Pritchett
Mat, I tried your toggle-in-field macro yesterday. My initial looks are positive, but I'm having trouble getting it to work in what I want to do. What I'm trying to do is use the macro in a ViewTemplate so that I can set a field in certain tiddlers. I've tried various ways to have this work so

Re: [tw5] Default Sidebar Tab

2020-04-04 Thread Damon Pritchett
Tony, That's an excellent approach. When I decide to tackle this problem again, I will try to follow this while I'm looking into it. Damon On Thursday, April 2, 2020 at 3:00:39 PM UTC-7, TonyM wrote: > > Damon, > > >> Tony, I tried the empty tiddler approach and, at first blush, nothing >>

Re: [tw5] Default Sidebar Tab

2020-04-02 Thread Damon Pritchett
>> problem) available to all or a trusted community member and let them have a >> look for you. >> >> There is also the procrastinators approach, let go of that issue for now >> and continue with other items. Procrastinators sometimes suddenly discover >> what the

Re: [tw5] Default Sidebar Tab

2020-04-01 Thread Damon Pritchett
it what I want. It's making my brain hurt. Damon On Tuesday, March 31, 2020 at 11:20:52 AM UTC-7, Damon Pritchett wrote: > > Did that and edited all of them to add the tab I wanted as default just > like we did last fall. That did not change the behavior at all. Still come > up

Re: [tw5] Default Sidebar Tab

2020-03-31 Thread Damon Pritchett
Did that and edited all of them to add the tab I wanted as default just like we did last fall. That did not change the behavior at all. Still come up to Contents if it exists or no tab selected if it doesn't. Damon On Tuesday, March 31, 2020 at 11:08:08 AM UTC-7, Birthe C wrote: > > Hi Damon,

[tw5] Re: Reverse tag trace

2020-03-31 Thread Damon Pritchett
Ok so here's what I did and it does exactly what I was looking for. <$list filter="[titlekin:tags:from[]!is[system]!title[Railroads]!title]"> -> <$link><$view field="title"/> Thanks to everyone! Damon On Monday, March 30, 2020 a

Re: [tw5] Default Sidebar Tab

2020-03-31 Thread Damon Pritchett
e problem. > > So often when someone prepares an example case like this, they solve the > problem themself, anyway, if not, we can definitely help with less > time/effort on our part as well. > > Regards > Tony > > > > On Tuesday, March 31, 2020 at 11:25:03 AM UTC+

[tw5] Re: Default Sidebar Tab

2020-03-30 Thread Damon Pritchett
Tony, The particular tiddler I want to use as the default sidebar does not have a caption. It's just a single word title. As far as your other comments go, I'm afraid that I did not understand where you were leading me. I guess it's the lack of detailed TW knowledge. Damon On Monday, March

[tw5] Re: Default Sidebar Tab

2020-03-30 Thread Damon Pritchett
which I modified previously (see other post in this topic) did not work. Damon On Sunday, March 29, 2020 at 4:41:54 PM UTC-7, Damon Pritchett wrote: > > No, that is not working. > > Damon > > > On Sunday, March 29, 2020 at 4:36:49 PM UTC-7, TonyM wrote: >> >>

[tw5] Re: Reverse tag trace

2020-03-30 Thread Damon Pritchett
Thanks Bimlas, That did the trick. Damon On Sunday, March 29, 2020 at 10:44:45 PM UTC-7, bimlas wrote: > > Damon, > > The kin operators lists the tiddlers just like I'm looking for except that >> they're in alphabetical order >> > > You can use "[[Tiddler E]kin::from[]]" instead of

[tw5] Re: Reverse tag trace

2020-03-29 Thread Damon Pritchett
Thanks Tony, The kin operators lists the tiddlers just like I'm looking for except that they're in alphabetical order (or reverse with the reverse operator). Now I've just got to figure out another sorting method using a field (existing or new) which is easy enough. Damon On Sunday, March

[tw5] Re: Default Sidebar Tab

2020-03-29 Thread Damon Pritchett
No, that is not working. Damon On Sunday, March 29, 2020 at 4:36:49 PM UTC-7, TonyM wrote: > > Daemon > > The default side bar tab is set in control panel settings or directly > $:/core/ui/ControlPanel/Settings/DefaultSidebarTab > > Is that what you need? > > Tony > > -- You received this

[tw5] Re: Reverse tag trace

2020-03-29 Thread Damon Pritchett
through over time is why I asked the question. Damon On Saturday, March 28, 2020 at 6:07:55 PM UTC-7, Damon Pritchett wrote: > > Hey all, > > Hope everyone is having a safe and healthy weekend. > > I would like to use the list widget and/or macro to do a tag trace on a > spe

[tw5] Re: Default Sidebar Tab

2020-03-29 Thread Damon Pritchett
able to do anything to change that. Any ideas? Thanks, Damon On Monday, October 7, 2019 at 9:35:27 PM UTC-7, Damon Pritchett wrote: > > Hello once again, > > I would like to have my TW open with my Contents tab in the Sidebar always > selected regardless of what the state

[tw5] Reverse tag trace

2020-03-28 Thread Damon Pritchett
Hey all, Hope everyone is having a safe and healthy weekend. I would like to use the list widget and/or macro to do a tag trace on a specific set of tiddlers. In essence, it would be kind of a like a reverse table of contents. I've tried to do this myself, but am really not sure where to

[tw5] Re: (re-)Presenting: LeftBar - a menu type sidebar, on the left

2020-03-08 Thread Damon Pritchett
Hey Mat, I love this plugin! So far it works very well with all of my custom TOCs, etc. I also love the way it can appear and hide from the left side. I was thinking that this same behavior would be extremely handy for the sidebar as well. I have no idea how to make that happen. I looked

[tw5] Re: Announcing new "Menu Bar" plugin

2020-03-01 Thread Damon Pritchett
is based on the parent field or you're using the tree widget, then you must reopen the drop-down every time an item is clicked. I hope that this is a simple thing to improve (certainly beyond my current knowledge). Damon On Sunday, March 1, 2020 at 12:06:36 PM UTC-7, Damon Pritchett wrote

[tw5] Re: Announcing new "Menu Bar" plugin

2020-03-01 Thread Damon Pritchett
Sorry for all of the posts. I just wanted to mention that I figured out the size of the page control buttons this morning. Amazing what a clearer head will do. I just created a stylesheet that had this in it: nav.tc-menubar .tc-btn-rounded { font-size: 0.6em; } Now I'm good to go from a

[tw5] Re: Announcing new "Menu Bar" plugin

2020-03-01 Thread Damon Pritchett
I forgot to mention that when the page controls are turned on and the TW has been edited, the save button is not red. Damon On Sunday, March 1, 2020 at 11:08:12 AM UTC-7, Damon Pritchett wrote: > > I've also noticed that if the table of contents has a tabbed interface, > vertical or h

[tw5] Re: Announcing new "Menu Bar" plugin

2020-03-01 Thread Damon Pritchett
this way. It stays open until you've clicked the desired tiddler. It doesn't close when clicking a tab. What might it take to keep the drop-down from the MenuBar open when clicking tabs? Damon On Saturday, February 29, 2020 at 3:00:23 PM UTC-7, Damon Pritchett wrote: > > I very much like this

[tw5] Re: Announcing new "Menu Bar" plugin

2020-02-29 Thread Damon Pritchett
I very much like this plugin! I tried using it in the current release and it works great (haven't tried the prerelease yet). One thing I noticed when I enabled the page controls is that the buttons for the page controls were terribly small. It's probably got something to do with my custom

[tw5] Re: Drag & drop of plugins not working quite right

2020-02-28 Thread Damon Pritchett
Thanks for the reminder, Eric. I had completely blanked on that. Damon -- 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.

[tw5] Drag & drop of plugins not working quite right

2020-02-28 Thread Damon Pritchett
Hey TiddlyWiki gurus, I've noticed a problem lately where, when I drag and drop a plugin from someone, only the top level summary tiddler is being imported and not the contents of the plugin. I'm not exactly sure when this started, but it is quite annoying. It's not too bad when a plugin has a

[tw5] Re: RefNotes plugin questions

2020-02-05 Thread Damon Pritchett
as soon as I added this > feature! > See: https://github.com/kookma/Refnotes/issues/3 > > Please let me know if there is other issues or feature request. > > --Mohammad > > On Wednesday, February 5, 2020 at 7:06:30 AM UTC+3:30, Damon Pritchett > wrote: >> >> Hey Mo

[tw5] RefNotes plugin questions

2020-02-04 Thread Damon Pritchett
Hey Mohammad, I love your RefNotes plugin and am wondering about a couple of things. I would like to have "Footnotes:" appear at the beginning of the footnotes list when I use showfnotes. But I don't want that to show if there are no footnotes. For example, if there are 3 footnotes then the

[tw5] Re: Slider Plugin: Create trails, guided help, linear sequence of tiddlers for tutorial, lesson, step by step instructions

2020-02-02 Thread Damon Pritchett
gned for slide show and presentation > > --Mohammad > > > On Sunday, February 2, 2020 at 8:06:36 AM UTC+3:30, Damon Pritchett wrote: >> >> Hey Mohammad, >> >> Thanks for another great plugin. I definitely have plans for this one. >> May I make a suggestion? Coul

[tw5] Re: Slider Plugin: Create trails, guided help, linear sequence of tiddlers for tutorial, lesson, step by step instructions

2020-02-01 Thread Damon Pritchett
Hey Mohammad, Thanks for another great plugin. I definitely have plans for this one. May I make a suggestion? Could you modify it such that clicking the arrows in the lower left of each slide would be like your simple navigation in that it closes one tiddler and opens the next one? That would

[tw5] Re: [plugin] TOC generic - shows toc,backlinks,list and listed up front

2020-01-30 Thread Damon Pritchett
:52 PM UTC-7, Damon Pritchett wrote: > > Hello, > > I love your plugin. I think it's going to be very useful. I have a couple > of questions. I noticed that when I close the lists at the bottom, the TW > actually gets modified and the save button in the sidebar turns red. Might

  1   2   3   >