[tw5] Re: Rethinking tiddlywiki.com

2020-04-20 Thread Shawn Murdock
Jeremy,
   I agree that a more structured way to get into Tiddlywiki is needed to 
appeal to a greater audience. When I was looking for a solution for keeping 
my notes/records/information in something that was portable (very important 
to me) and easy to maintain, I stumbled into Tiddlywiki and I loved it. The 
basics I got right away. My issue, and I still have some, is how quickly I 
went from creating tids to needed ways to structure and organize them to 
ways to generate collections of lists and custom "reports".
That is where I had issues. As I explored the main Tiddlywiki site I 
quickly got into the programming side of things i.e., widgets, macros, 
filters, and such. Now I am not a programmer, but I have programmed. These 
areas, to me, are written in a programmers - technical way and the concepts 
are hard to visualize. I think if there was a friendlier way to show how 
these things work and explain the concepts - connect the dots if you will - 
I think it would go a long way to making this more of a keeper app.
I tend to use my wikis for a while and then run into a problem or need a 
new solution, or at least have an idea. When I go into the references for 
widgets and lists and such I kind of get lost and its hard to visualize 
what I need.
Now having the forum and other sites helps tons. But I like figuring things 
out and I don't want to bother people with problems that might really be 
dumb. I will post when I hit a wall, but I know most people wont. They just 
want to use it and they don't have time to get there hands dirty.

So I guess after blathering a bit:

   - The bullets above are great
   - Maybe a non-programmers way to teach the programming - ease people 
   into concepts
   - Maybe a front page article, weekly or so, that examines a particular 
   concept and goes from basics and concepts to detailed examples.
   - These deep dive articles could be youtube videos or something
   
Hope this helps in some way. This has been my experience and maybe 
atypical. I have really enjoyed Tiddlywiki.

Shawn

-- 
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/c12c3a6b-5c22-4dd4-83f0-ca1e4ad5f9bd%40googlegroups.com.


[tw5] Re: Help with Pre (code) blocks

2019-10-10 Thread shawn murdock
Thanks a lot Mario and Tony.  These work as needed. I hope the class 
attribute "bug" gets solved, but this will keep me working  :)

Thanks again, Shawn







On Thursday, October 10, 2019 at 8:52:44 AM UTC-4, PMario wrote:
>
> Hi Shawn, 
>
> As a fast work-around you probably can use this structure. 
>
> 
> CACL5::> net port show
>   (network port show)
>
> Node: CACL5-01
>   Speed(Mbps) Health
> Port  IPspace  Broadcast Domain Link MTU  Admin/Oper  Status
> 
>
> A stylesheet tiddler would only need. 
>
> .blue {
>   background: lightblue; 
> }
>
> have fun!
> mario
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/12dabf81-64c3-4794-a199-3b8f1cf7d1f0%40googlegroups.com.


[tw5] Re: Help with Pre (code) blocks

2019-10-09 Thread shawn murdock
Hi PMario,
   Thanks for the help. Actually that would be a wonderful way to implement 
it. I wish I knew more so I could create some kind of solution to 
contribute to this great product.

Again, thanks 
  - Shawn




On Wednesday, October 9, 2019 at 10:26:57 AM UTC-4, PMario wrote:
>
> Hi Shawn, 
>
> I did have a closer look at all the possibilities to render text/plain 
> blocks. ... None of them has a reasonable possibility to add a "class" 
> attribute. ... 
>
> I think, that's an oversight / bug. ... So I will create an issue at 
> github. 
>
> I think it should look similar to default syntax highlighting eg: 
>
> ```.log
> your content
> ``` 
>
> The codeblock parser already knows about this syntax, but it only adds the 
> "language" attribute to the internal parse-tree. The codeblock widget, 
> doesn't use it to create a class. ... I think it should. 
>
> I hope, that I can find a "workaround hack" soon. 
>
> Stay tuned!
>
> -mario
>
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/5f8d1829-ed3f-4d54-9f27-2838b1f0c903%40googlegroups.com.


[tw5] Help with Pre (code) blocks

2019-10-09 Thread shawn murdock
Hi,
  I have a problem and have been trying to find a solution. I have looked 
at the TW docs and searched around, but I cant figure this out. Now I dont 
pretend to be a expert which is why I am posting.

What I am trying to do:
I am creating some documented procedures in a "help" TW, that I have 
created/maintained, about managing fiber SAN switches and the CLI 
commands/output. I am trying to have different colored monospaced blocks 
for different devices to set them apart and to avoid confusion, i.e, green 
block for switch 1 and a blue block for switch 2,
So I want to replicated the monospace block formatting buttons look but 
with different colors. I took this from the documentation and looking at 
the TW code and created a custom stylesheet:

.codeblock2 {
display: block;
word-break: normal;
word-wrap: break-word;
white-space: pre-wrap;
padding: 14px;
margin-top: 1em;
margin-bottom: 1em;
background-color: #e2efe8;
border: 1px solid #92c2a8;
padding: 0 3px 2px;
border-radius: 3px;
font-family: "SFMono-Regular",Consolas,"Liberation Mono",Menlo,Courier,
monospace;
}

Which gives me basically everything I want except the line breaks are not 
preserved. So here is a comparison of the normal and mine:

```
CACL1::> net port show
  (network port show)

Node: CACL1-01
  Speed(Mbps) Health
Port  IPspace  Broadcast Domain Link MTU  Admin/Oper  Status
```

@@.codeblock2
CACL5::> net port show
  (network port show)

Node: CACL5-01
  Speed(Mbps) Health
Port  IPspace  Broadcast Domain Link MTU  Admin/Oper  Status
@@

Which looks like this:

[image: cap1.png]
So you see the green blocks line break breaks the "container". I am not 
sure how to remidy this. Any suggestions would greatly be appreciated.

Also, if there is an easier or more efficient solution, please elaborate. I 
would like to create several variations on the color scheme.

Thanks for any help.















-- 
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/3abd4e2b-d241-41c1-9360-f76ee43eb38f%40googlegroups.com.


[tw5] Re: Multi Tiddler Export

2018-04-24 Thread Shawn Murdock
PMario,
  Thanks a lot. I am going to check it out now.



On Tuesday, April 24, 2018 at 9:40:15 AM UTC-4, PMario wrote:
>
> Hi, 
>
> The Bundler-plugin, that I created may be an option.
>
> See: Intro thread 
> and The 
> plugin 
> 
> !
>
> have fun!
> mario
>

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


[tw5] Re: Multi Tiddler Export

2018-04-24 Thread Shawn Murdock
Wow that was quick; this community Rocks.
Thank you. I had a feeling there was something in there that would allow 
this. Sorry I missed it. 
Again Thank you.



On Tuesday, April 24, 2018 at 9:05:18 AM UTC-4, Jed Carty wrote:
>
> The answer is quick but unfortunately not obvious.
>
> Go to the $:/AdvancedSearch tiddler (click on the magnifying glass icon 
> next to the search in the side bar) and in that tiddler open the Filter 
> tab. In the text box there enter a filter that list all the tiddlers you 
> want to export (in your example the filter would be [tag[How To's]] ), 
> below the text box you should see a list of all the tiddlers. Then click on 
> the export icon to the right of the text box (it has an arrow pointing up) 
> and select JSON File from the list that pops up. It should download a json 
> file that contains all the tiddlers listed.
>

-- 
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/6fdcf907-6d8f-4b35-9f90-cb1d04cfe346%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw5] Multi Tiddler Export

2018-04-24 Thread Shawn Murdock
Hello,
  First of all I would like to say how much I like Tiddlywiki. I really 
enjoy using it to store all kinds of information. Someday, hopefully, I 
will understand it enough that I can contribute to the community.

For now I want to know if there is a way to export multiple tiddlers to a 
single json file. Say I have a bunch of individual tiddlers all tagged "How 
To's" and I want to export them into a single json file, is this possible? 
Basically I want to export a bunch of tiddlers that I use for inventory of 
a bunch of servers. Each tiddler has custom fields I use for OS, CPU, and 
such. I would like to export it all out to a json file, or even a csv I 
suppose, so I can bring the data into another application, excel or a sqldb 
for example. 
I am trying to avoid having to go through and export each one individually 
and then try using JQ to try to combine them into one file, (have not had 
luck doing that).
Thanks for any help. I hope there is not an obvious answer that I somehow 
missed.


-- 
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/c0be9064-4873-4c77-8bff-c0d927a4adad%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Modifiying multiple tiddler fields

2018-02-05 Thread Shawn Murdock
Thanks Mark, Thanks a lot. I figure there had to be a way without opening 
in something like notepad++. Now that I see it, it seems very simple. I 
guess I have a hard time with the docs.
Again, thank you.


On Monday, February 5, 2018 at 2:44:45 PM UTC-5, Mark S. wrote:
>
> I believe something like this will do the trick:
>
> <$button>Genus Swap
> <$list filter="[field:genus[someA]]">
> <$action-setfield $field="genus" $value="someB"/>
> 
> 
>
> Absolutely make a backup of your TW file before trying this. There's 
> always the possibility of something going off the rails when doing bulk 
> changes like this.
>
> -- Mark
>
> On Monday, February 5, 2018 at 11:28:49 AM UTC-8, Shawn Murdock wrote:
>>
>> First off, I would like to thank all the devs that work on this project. 
>> Tiddlywiki is the best thing I have come across in a while. Hopefully 
>> someday I will understand the mechanics enough to help with it.
>>
>> But, at this point I have a question. I have one tiddywiki which I am 
>> using as notes / database (of sorts) for my plant collection. All of my 
>> individual plant tiddlers have several fields. I would like to modify the 
>> same field on all of the plant tiddlers; is there an easy way to do it 
>> without having to edit each one by hand?
>>
>> To clarify: say I have 200 plant tiddlers each with a field for the genus 
>> of the plant. I want to change all of them from "somegenusA" to 
>> "somegenusB". How can I bulk change a number of tiddlers easily? Is there a 
>> way in tiddlywiki or do I have to edit the actual file?
>>
>> Thanks for the help. 
>>
>

-- 
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/27aee5da-fec9-4579-8640-de8b73a07466%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.