Re: [tw5] Re: HOWTO: Upload files/images to cloud storage automatically

2020-11-10 Thread Carlos Rojas
Awesome! Works perfectly. I might modify it to also handle PDFs.  

> On Nov 6, 2020, at 17:10, Donald Coates  wrote:
> 
> 
> Absolutely.  With the setfield command we are setting the value for the field 
> _canonical_uri, text, and moved.  _canonical_uri is a default field that 
> tiddlywiki looks for that marks the tiddler as a placeholder pointing to a 
> specific address.  text is a default field containing the text of the 
> tiddler. moved is a user created field we use to mark the tiddler as having 
> been run through the script already so that tiddlywiki doesn't overwrite the 
> moved image with the empty file we create with the script.  Ie if we didn't 
> mark the image tiddlywiki would move the empty placeholder and overwrite the 
> actual image on a second pass.
> 
> the setfield command looks for the field to set and then requires a tiddler 
> with the value of the field as it's text.  so
> 
> the tiddler /empty_text is just an empty tiddler.  Therefore the text of 
> the placeholder tiddler is set to empty.  You may have to use a space I can't 
> remember.
> 
> the tiddler /moved_field has the text 'yes'.  therefore a field called 
> move is created on that tiddler and it's value is set to yes.  now on 
> subsequent passes of the script tiddly wiki will ignore this tiddler and only 
> act on those images ( is[image] ) that do not have the value of yes ( 
> !moved[yes] )
> 
> the tiddler /canonical-uri-external-image has the value of the 
> _canonical_uri and generally requires some sort of transclusion of the 
> tiddler title so that it is unique.  In my case is:
> ./images/<$view field="created" format="date" template=""/>/<$view 
> field="created" format="date" template="0MM"/>/<$view field="title"/>
> 
> This points to the directory that I saved to in the first line by adding the 
> images/month/year to the filename of the actual image so that tiddlywiki 
> moves it to that directory.
> 
> Hopefully that makes sense please feel free to ask. 
> 
>> On Wednesday, November 4, 2020 at 11:20:57 PM UTC-5, Carlos R wrote:
>> Sorry still new to tiddly, I ran into trouble running the script. Could you 
>> share what these are? 
>> $:/blog/templates/empty_text
>> $:/blog/templates/moved_field
>> $:/blog/templates/canonical-uri-external-image
>>> On Wednesday, November 4, 2020 at 5:32:13 PM UTC-8 Carlos R wrote:
>>> This is extremely helpful I will give a shot using dropbox.
>>> 
>>>> On Wednesday, November 4, 2020 at 2:58:47 AM UTC-8 digit...@gmail.com 
>>>> wrote:
>>>> With both my nodejs and single file wikis I import images normally and 
>>>> then occasionally run a script that moves them to an external directory 
>>>> and creates a placemarker tiddler with a canonical uri:
>>>> 
>>>> 
>>>> #!/bin/bash
>>>> 
>>>> myyear=$(date +"%Y")
>>>> mymonth=$(date +"%m")
>>>> 
>>>> tiddlywiki --save [is[image]!tag[header-img]!moved[yes]] 
>>>> [addprefix[./images/$myyear/$mymonth/]] \ # moves image to directory based 
>>>> on year/month
>>>>--setfield [is[image]!tag[header-img]!moved[yes]] 
>>>> _canonical_uri $:/blog/templates/canonical-uri-external-image text/plain
>>>> 
>>>> tiddlywiki --setfield [is[image]!moved[yes]] text 
>>>> $:/blog/templates/empty_text text/plain \
>>>>--setfield [is[image]!moved[yes]] moved 
>>>> $:/blog/templates/moved_field text/plain
>>>> 
>>>> Setting a field to 'moved' is crucial because otherwise tiddlywiki will 
>>>> perform this operation on an emptied image and overwrite the original.
>>>> 
>>>> So locally you could move the files to a synced folder or on a server it 
>>>> might be a bit more complicated.
>>>> 
>>>> 
>>>>> On Monday, November 2, 2020 at 9:52:41 PM UTC-5, Carlos R wrote:
>>>>> 
>>>>> I am using nodejs version and I want a way to automatically upload files 
>>>>> to a cloud storage service such as dropbox. Has anyone attempted this? I 
>>>>> like to take screen shots with my notes and it's a bit cumbersome to have 
>>>>> to manually link files/images.
>>>>> 
>>>>> Thanks!
> 
> -- 
> You received this message because you are subscribed to a topic in the Google 
> Groups "TiddlyWiki" group.
> To unsubscribe from this topic, visit 
> https://groups.google.com/d/topic/tiddlywiki/rrG82Dc8Eyw/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to 
> tiddlywiki+unsubscr...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/tiddlywiki/8aff9f68-3cde-493d-aa74-83ebc035108ao%40googlegroups.com.

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


[tw5] Re: HOWTO: Upload files/images to cloud storage automatically

2020-11-04 Thread Carlos R
Sorry still new to tiddly, I ran into trouble running the script. Could you 
share what these are? 

   - $:/blog/templates/empty_text
   - $:/blog/templates/moved_field
   - $:/blog/templates/canonical-uri-external-image

On Wednesday, November 4, 2020 at 5:32:13 PM UTC-8 Carlos R wrote:

> This is extremely helpful I will give a shot using dropbox.
>
> On Wednesday, November 4, 2020 at 2:58:47 AM UTC-8 digit...@gmail.com 
> wrote:
>
>> With both my nodejs and single file wikis I import images normally and 
>> then occasionally run a script that moves them to an external directory and 
>> creates a placemarker tiddler with a canonical uri:
>>
>>
>> #!/bin/bash
>>
>> myyear=$(date +"%Y")
>> mymonth=$(date +"%m")
>>
>> tiddlywiki --save [is[image]!tag[header-img]!moved[yes]] 
>> [addprefix[./images/$myyear/$mymonth/]] \ # moves image to directory based 
>> on year/month
>>--setfield [is[image]!tag[header-img]!moved[yes]] 
>> _canonical_uri $:/blog/templates/canonical-uri-external-image text/plain
>>
>> tiddlywiki --setfield [is[image]!moved[yes]] text 
>> $:/blog/templates/empty_text text/plain \
>>--setfield [is[image]!moved[yes]] moved 
>> $:/blog/templates/moved_field text/plain
>>
>> Setting a field to 'moved' is crucial because otherwise tiddlywiki will 
>> perform this operation on an emptied image and overwrite the original.
>>
>> So locally you could move the files to a synced folder or on a server it 
>> might be a bit more complicated.
>>
>>
>> On Monday, November 2, 2020 at 9:52:41 PM UTC-5, Carlos R wrote:
>>>
>>>
>>> I am using nodejs version and I want a way to automatically upload files 
>>> to a cloud storage service such as dropbox. Has anyone attempted this? I 
>>> like to take screen shots with my notes and it's a bit cumbersome to have 
>>> to manually link files/images.
>>>
>>> Thanks!
>>>
>>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/08857dde-5248-4a47-be74-714984fa645en%40googlegroups.com.


[tw5] Re: HOWTO: Upload files/images to cloud storage automatically

2020-11-04 Thread Carlos R
This is extremely helpful I will give a shot using dropbox.

On Wednesday, November 4, 2020 at 2:58:47 AM UTC-8 digit...@gmail.com wrote:

> With both my nodejs and single file wikis I import images normally and 
> then occasionally run a script that moves them to an external directory and 
> creates a placemarker tiddler with a canonical uri:
>
>
> #!/bin/bash
>
> myyear=$(date +"%Y")
> mymonth=$(date +"%m")
>
> tiddlywiki --save [is[image]!tag[header-img]!moved[yes]] 
> [addprefix[./images/$myyear/$mymonth/]] \ # moves image to directory based 
> on year/month
>--setfield [is[image]!tag[header-img]!moved[yes]] 
> _canonical_uri $:/blog/templates/canonical-uri-external-image text/plain
>
> tiddlywiki --setfield [is[image]!moved[yes]] text 
> $:/blog/templates/empty_text text/plain \
>--setfield [is[image]!moved[yes]] moved 
> $:/blog/templates/moved_field text/plain
>
> Setting a field to 'moved' is crucial because otherwise tiddlywiki will 
> perform this operation on an emptied image and overwrite the original.
>
> So locally you could move the files to a synced folder or on a server it 
> might be a bit more complicated.
>
>
> On Monday, November 2, 2020 at 9:52:41 PM UTC-5, Carlos R wrote:
>>
>>
>> I am using nodejs version and I want a way to automatically upload files 
>> to a cloud storage service such as dropbox. Has anyone attempted this? I 
>> like to take screen shots with my notes and it's a bit cumbersome to have 
>> to manually link files/images.
>>
>> Thanks!
>>
>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/96edbbc3-70e4-4489-b270-bb3edb57c6c4n%40googlegroups.com.


[tw5] HOWTO: Upload files/images to cloud storage automatically

2020-11-02 Thread Carlos R

I am using nodejs version and I want a way to automatically upload files to 
a cloud storage service such as dropbox. Has anyone attempted this? I like 
to take screen shots with my notes and it's a bit cumbersome to have to 
manually link files/images.

Thanks!

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/1fd9169f-6c1c-48f3-9df1-59a5a4d3c8c3n%40googlegroups.com.


[tw5] Unable to save new tiddlywiki (5.1.17) in tiddlyspot

2018-05-30 Thread Carlos Pita
Hi All,

well my problem is just what the subject states. Since I know this could be 
an issue with firefox I tested the same using:

* Chromium in linux
* Chrome in android
* Firefox in linux
* Chrome in android with tiddlywiki 5.0.0-alpha.10

Every option above failed except for the last, so I think it's a problem 
with the new version.

The procedure I followed in the first three cases is:

1. Go to the control panel
2. Open the saving tab
3. Open the TiddlySpot saver tab
4. Set the wiki name (memeplex2)
5. Set the wiki password (which I know for sure is the right one)
6. Click the save icon (the one with the check mark)

Then a box with the text "Starting to save wiki" pops up and after a few 
seconds disappears and that's all. When I open memeplex2.tiddlyspot.com the 
same (5.0.0-alpha.10) version is always there.

Am I missing something?

Thanks in advance
--
Carlos

-- 
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/3b81b339-8e19-418c-8262-3e6e4eb1cb9d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Too slow on Android+Termux

2017-02-28 Thread Carlos Pita
Hi Xavier, I understand, it's an interesting (!!!) approach I haven't
think of before. I don't have a phone, I just use a tablet and I like
to turn wifi off when it's dozing. How hard is the battery drain of
constantly running the tiddlywiki server?

Cheers
--
Carlos

-- 
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/CAELgYhcq2PkmwAzVOeo27Qy4ouFwOCr_s%2BsK8zN-GMM%3DEN8BQg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


Re: [tw] Too slow on Android+Termux

2017-02-28 Thread Carlos Pita
Hi Xavier, thank you for you prompt answer. I've no problem with the
slow startup per se, but when syncing from my pc I will have to
restart tiddlywiki for the changes to have any effect, so syncing
would become a > 1 minute operation. How are you doing that? Is anyone
really using node on android to mirror their pc tiddlywiki? Or the
thing to do is to export/import single file tiddlywikis from/to the
node server running at the pc?

Cheers
--
Carlos

-- 
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/CAELgYhcuED-FQeUg8p6oULnorPmjwj3M3uYuMCnY7Xaes8Nf7Q%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Too slow on Android+Termux

2017-02-28 Thread Carlos Pita
Hi all, I'm trying to use tiddlywiki 5.1.13 with node 6.10.0 on android 
marshmallow, running inside a very up-to-date termux (yesterday update). But 
even the --help and --version options make tiddlywiki freeze for about 1 minute 
before printing anything to stdout. Is this a known issue, is anyone else 
experiencing it? It's typical of commands running on termux to run a bit slower 
than in my laptop, but not that slow.

Thank you in advance
--
Carlos 

-- 
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/19370061-f6b8-46cc-8c4c-6220cc45aa6b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: Simple avaliation form

2016-07-21 Thread Carlos Caimi
\o/

tks Eric, 
for correcting my code 
...and my english :)
now, it works perfectly.

Em quinta-feira, 21 de julho de 2016 13:48:03 UTC-3, Eric Shulman escreveu:
>
> On Thursday, July 21, 2016 at 6:58:39 AM UTC-7, Carlos Caimi wrote:
>>
>> I'm try to make a simple avaliation ("evaluation" ???) form using a macro 
>> to create radios for awnser ("ANSWER") and <$reveal> to show the correct 
>> awnser for the student. But dont work.
>>
>
> In your code, you write: 
> <$radio field="$:/state/q/$quest$" value="a">A
>
> However, to specify the target of a radio button, you must specify the 
> *tiddler* and *field* separately.  Something like this will work:
> <$radio tiddler="$:/state/q/$quest$" field="text" value="a">A
> (note: the *field* name will default to "text" if not provided)
>
> You will also need to change your debugging output from
> {{!!$:/state/q/$quest$}}
> to
> {{$:/state/q/$quest$}}
>
> Then, the rest of your script will work as you intend:
>  
> \define q(quest: "q1" answer: "b")
> """
> <$radio tiddler="$:/state/q/$quest$" value="a">A
> <$radio tiddler="$:/state/q/$quest$" value="b">B
> <$radio tiddler="$:/state/q/$quest$" value="c">C
> <$radio tiddler="$:/state/q/$quest$" value="d">D
> <$radio tiddler="$:/state/q/$quest$" value="e">E
> """
> debug: quest: ''$quest$''; correctAnswer: ''$answer$''; answer: ''{{$:
> /state/q/$quest$}}''
> <$reveal type="match" state="$:/state/q/$quest$" text="$answer$">
>CORRECT!!
> 
> <$reveal type="nomatch" state="$:/state/q/$quest$" text="$answer$">
>WRONG!!
> 
> \end
>
> <> 
> (note: I corrected your spelling of "answer")
>
> enjoy,
> -e
> Eric Shulman
> TiddlyTools / ELS Design Studios
> InsideTiddlyWiki: The Missing Manuals
>

-- 
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/3923e3be-b03b-47d4-9462-ea29b0c9c3ad%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Simple avaliation form

2016-07-21 Thread Carlos Caimi
simple avaliation form

Hello! I'm try to make a simple avaliation form using a macro to create 
radios for awnser and <$reveal> to show the correct awnser for the student. 
But dont work.

My code:

\define q(quest: "q1" awnser: "b")
"""
<$radio field="$:/state/q/$quest$" value="a">A
<$radio field="$:/state/q/$quest$" value="b">B
<$radio field="$:/state/q/$quest$" value="c">C
<$radio field="$:/state/q/$quest$" value="d">D
<$radio field="$:/state/q/$quest$" value="e">E
"""

debug: quest: ''$quest$''; correctAwnser: ''$awnser$''; awnser: ''{{!!$:
/state/q/$quest$}}''

<$reveal type="match" state="$:/state/q/$quest$" text=$awnser$>
CORRECT!!

<$reveal type="nomatch" state="$:/state/q/$quest$" text=$awnser$>
WRONG!!

\end




I call my m
<>

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


[tw] Simple avaliation form

2016-07-21 Thread Carlos Caimi
Hello! 
I'm try to make a simple avaliation form using a macro to create radios for 
awnser and <$reveal> to show the correct awnser for the student. 
But dont work.

My code:

\define q(quest: "q1" awnser: "b")
"""
<$radio field="$:/state/q/$quest$" value="a">A
<$radio field="$:/state/q/$quest$" value="b">B
<$radio field="$:/state/q/$quest$" value="c">C
<$radio field="$:/state/q/$quest$" value="d">D
<$radio field="$:/state/q/$quest$" value="e">E
"""

debug: quest: ''$quest$''; correctAwnser: ''$awnser$''; awnser: ''{{!!$:
/state/q/$quest$}}''

<$reveal type="match" state="$:/state/q/$quest$" text=$awnser$>
   CORRECT!!


<$reveal type="nomatch" state="$:/state/q/$quest$" text=$awnser$>
   WRONG!!

\end

I call my macro:

<>

The <$reveal> dont match anything. Always WRONG

plz helpme

p.s: exists a better form to do this?

tks a lot

-- 
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/55e03567-50b0-44df-87f0-15a69cf1a9dc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Saving from tiddlyspot to local fs in android

2016-07-13 Thread Carlos Pita
I found out that when I open the tw from a dropbox cloud folder in es file 
explorer, then esfx creates a local copy, open it in the browser and autosync 
the changes. After going offline and returning online it's necessary to save 
the file again though, since esfx doesn't seem to detect the change in the 
connection state. This is a nice workaround because I don't depend on a 
dedicated dropbox sync tool (I never had pleasant experiences with them on 
android).

-- 
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/8547fb5c-1421-47aa-951b-9431d49f559a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] Saving from tiddlyspot to local fs in android

2016-07-13 Thread Carlos Pita
Hi all,

I'm new to tw and I'm having some hard time trying to figure out how to do the 
following:

1. I've download an empty tw5 to my local fs in an android device.
2. I've saved this tw to tiddlyspot.
3. Once in tiddlyspot I've configured the tw to save to the server, which it 
does fine.
4. Now I would like to work offline for some hours so I want to download a 
copy, edit it and finally upload it to tiddlyspot.
5. The problem is: there is no download button, save now means save to 
tiddlyspot (I guess I could delete the user/pass in the panel control to force 
local saving). Chrome in android doesn't offer a save-as function AFAICS.

Is there a workaround? Should I use ff?

Thank you in advance
--
Carlos

-- 
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/fbe93314-9aea-4ec6-b0e7-485539ab%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] [TW5] Suggestion?

2016-01-28 Thread Carlos Wang
Hi All,

I've just decided to try TiddlyWiki as a personal wiki because I wanted to 
setup a wiki/html file for each individual project I have. I looked at the 
capabilities and plugins for it and it looks very impressive! My intent is 
to put any project wiki on the cloud (via dropbox) so I can sync it with 
android.

So far all of the comments I've read about it have been that it is fairly 
good to use, except it is not compatible with collaborative projects, so 
hence some people sort of shy away from it and try dokuwiki/mediawiki 
instead for work related activities. I really do like the self-contained 
modular design of TiddlyWiki on the other hand, but I can foresee a 
scenario where one or two projects can go from a solo to collaborative, and 
was wondering if TiddlyWiki would (or have already?) have the capacity to 
allow for that to happen? So far the current path would be to: 1) make a 
change, 2) upload to cloud/server, 3) notify collaborators about the 
change, 4) collaborators take turn making changes. I do not know how will 
Tiddly works with github/svn.

It was really after reading up on the plugin TiddlyMap that really drew me 
in - and it got me thinking, what if more than one user can draw on a given 
mindmap at the same time? Imagine starting up a meeting, creating a new 
tiddlywiki given a specific meeting date or topic, and then everyone are 
adding tiddlers as they discuss their project during a meeting while 
someone arranges the tiddlers in the form of a mind map for the others to 
see. Each of them can add tiddlers either by copying tiddlers from their 
personal wiki or creating a new one on the fly. And then in the end 
everyone has that version of the meeting minutes.

Right now I think most visualization tiddler plugins requires a moderate 
amount of programming to show decent visuals, but TiddlyMap seems to bypass 
all of that through a neat little GUI, which I believe helps a lot for 
notetaking and jotting down thoughts.

Any thoughts (I am quite certain you guys have already looked into this, if 
so, please forgive the text)? I think the idea itself can be extremely 
difficult to do depending on whether the collab is done in real-time or 
perhaps in "time-chunks".

Cheers,

-- 
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/06b38d94-2f3a-406b-8b11-2b12b4068814%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[tw] TW5 Exporting Tiddles to PDF or HTML or Online on TiddleSpace

2014-08-09 Thread Carlos Andrade
Hi,

I am new to TiddlyWiki and currently I have a TW5 which has the highlight 
plugin and the mathjax plugin. I was wondering if it is possible to export 
tiddles to HTML or PDF or Online to TiddleSpace, and if so how. In case of 
TiddleSpace I would need some sort of login and pass to offer to someone 
for view access only. I know there is an export plugin for the old wiki and 
same for uploading online (I tried the default one on the TW5 but I got 
errors from TiddleSpace when I created it). I am mentioning the plugins 
because I would like the coloring of highlight and the formulas of latex to 
be generated (if possible) on the export.

Thank you for your 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 http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/d/optout.


[tw] Re: [TW5] Changing background color for table cells

2014-04-03 Thread Carlos
Thank you.  will have a look at David's Mall.

On Thursday, 3 April 2014 00:20:45 UTC+1, David Gifford wrote:
>
> My mall does offer some tips, Carlos, for example hacking the th in your 
> stylesheet and using it to style an individual cell, but no, you can't 
> style individual cells freely in TW5 as you can in TWC.
>
> On Wednesday, April 2, 2014 8:45:08 AM UTC-4, Carlos wrote:
>>
>> Anybody knows how can this be achieve in TW5?  The old 
>> "bgcolor(#00):" doesn't seem to work anymore
>>
>> Thanks!
>> Carlos
>>
>

-- 
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] [TW5] Changing background color for table cells

2014-04-02 Thread Carlos
Anybody knows how can this be achieve in TW5?  The old "bgcolor(#00):" 
doesn't seem to work anymore

Thanks!
Carlos

-- 
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.


Re: [tw] Re: [TW2] "external files" / "external tiddles" plugin needs development/upgrade/patching

2013-11-15 Thread carlos duarte
wow, mario.

sorry i haven't replied sooner. i have been going through a lot of
very heavy personal ordeals of all kinds. i'll spare you the details.

anyway. i have just finished trying out the plugin, and i'm happy to
report that it works beautifully. fantastic. thanks!

i just wish the "none" log level worked, as i'm not too keen on seeing
those lines of text in the corner popup, now that i know that it
works.

thanks a million. i'll buy you another beer/coffee as soon as i'm able to.

saludos & abrazos from méxico

-carlos

On Sun, Nov 3, 2013 at 3:35 AM, PMario  wrote:
> uups,
> I forgot: you have to disable loadExternalFile.js if you use the ajax
> version. The new version handles both: online - offline file handling.
> -m
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "TiddlyWiki" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/tiddlywiki/QknrXN4FqB0/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> tiddlywiki+unsubscr...@googlegroups.com.
> To post to this group, send email to tiddlywiki@googlegroups.com.
> Visit this group at http://groups.google.com/group/tiddlywiki.
> For more options, visit https://groups.google.com/groups/opt_out.

-- 
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/groups/opt_out.


[tw] [TW2] "external files" / "external tiddles" plugin needs development/upgrade/patching

2013-09-18 Thread carlos duarte
i'm looking to get a tiddlywiki2 plugin developed/upgraded/patched.

i have tried getting the original developers to help me out. but, in once 
case the guy helped me out *a lot*, but eventually lost interest. in the 
other case i just couldn't reach him via email.

thanks in advance. before i lay my case, i'd like to ask you not to asume 
that my relative lack of javascript skills represents an ignorance of 
options. the advocacy of a *favorite* solution without adequate 
consideration to the way my circumstances shape my methods and workflow is 
very non-productive. said circumstances are way beyond the scope of this 
request, but i'll elaborate on them at length if you feel it will help you 
help me. i'm not too interested in this request becoming a starting point 
for inbred bikeshedding discourses.

**here's the scenario:

-i need to get some external files into tiddlywiki.
-the external files in question are source files, so i need them syntax 
highlighted.
-i need the external files to display both locally and when hosted on a 
website.
-i'm uploading the website (tiddlywiki and external files) using lftp and 
it's rsync-like "mirror" option. i *do not* plan on using tiddlywiki itself 
to edit/upload/refresh/upkeep the external files. the original source files 
will be edited using emacs/vim/gedit, and then automatically copied with a 
cron job to the tiddlywiki directory, and then finally pushed through ftp 
each time i get a chance to refresh the website (i will be working in 
remote, no-connectivity locations for months on end).

**what works:

syntax highlighting is working excellently thanks to mario pietsch's 
"SyntaxHighlighterPlugin3" 
http://syntaxhighlighter.tiddlyspace.com/#SyntaxHighlighterPlugin3

**what semi-works:

1.-eric shulman's "external tiddlers" plugin 
http://www.tiddlytools.com/#ExternalTiddlersPlugin
2.-mario pietsch's "load external files" plugin 
https://github.com/pmario/tw2.plugin-dev-template-node/tree/master/tests

eric shulman's "external tiddlers" plugin loads the external files on 
demand, so it doesn't work with mario pietsch's "SyntaxHighlighterPlugin3", 
which ignores highlight-able content that isn't loaded from the start.

mario pietsch's "load external files" plugin works well, because it loads 
the files as shadow tiddlers straight from the get-go.

**the problem:

as far as i understand, mario pietsch's "load external files" plugin uses 
the "local file api", or something to that effect. this prevents it from 
working when tiddlywiki (and the related external files) are hosted 
remotely in a web server.

**the probable solution(s):
a)make a hybrid plugin that loads external files as shadow tiddlers
using local file api when tiddlywiki is "running" locally, and
using erich shulman's method when tiddlywiki is being hosted/served
b)modify "SyntaxHighlighterPlugin3" to work with external files loaded "on 
demand" (such as with eric shulman's "external tiddlers" plugin)

again, much thanks in advance.

-carlos

-- 
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/groups/opt_out.


Re: [tw] Re: TW and (Alex Gorbatchev's) SyntaxHighlighter

2013-05-06 Thread carlos duarte
by any chance do you know how to "wrap" a transcluded tiddler in code?
let's say i have a tiddler that contains a bash script (non-syntax
highlighted), and then i want to transclude it somewhere else, but i want
the transclusion to be syntax highlighted... how do i do that?

thanks!

-carlos


On Sat, May 4, 2013 at 4:54 AM, PMario  wrote:

> Hi Carlos,
> Nice you found the issue.
>
> If you need syntax highlighting in edit mode too. codemirror may be an
> option. http://codemirror.tiddlyspace.com/
> There is also a video, how to activate the stuff:
> https://www.youtube.com/watch?v=J5tq5xv0FHU
>
> have fun!
> mario
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "TiddlyWiki" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/tiddlywiki/PhwQzroWz4Q/unsubscribe?hl=en
> .
> To unsubscribe from this group and all its topics, send an email to
> tiddlywiki+unsubscr...@googlegroups.com.
> To post to this group, send email to tiddlywiki@googlegroups.com.
> Visit this group at http://groups.google.com/group/tiddlywiki?hl=en.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>

-- 
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: TW and (Alex Gorbatchev's) SyntaxHighlighter

2013-05-03 Thread carlos duarte
nevermind, i had deleted the "RequiresShCore.js" from ShBrushCSS.js, which 
caused this problem. reestablishing that snippet fixed everything!

thanks!

-carlos

On Friday, May 3, 2013 3:55:20 AM UTC-7, carlos duarte wrote:
>
> thanks for your work,
>
> but i got "Error: ReferenceError: SyntaxHighlighter is not defined" in:
>
> ShBrushCSS.js
> ShBrushJScript.js
> ShBrushPlain.js
> ShBrushXml.js
>
> in the plugin manager
>
> how can i fix this? thanks!
>
> -carlos
>
>
> On Monday, July 2, 2012 6:58:18 AM UTC-7, PMario wrote:
>>
>> On Jul 2, 12:07 pm, Bertrand Goetzmann  
>> wrote: 
>> > Thank you! I need it just for documentation purpose in my own TW file. 
>> > As I'm relatively new to TW, I didn't understand how to use your 
>> plugin; 
>> > finally it worked by adding all the tiddlers tagged syntax in my TW 
>> file, 
>> > and by adding the tag systemConfig to those that have this tag in your 
>> > TiddlySpace. 
>> > Can you confirm this? 
>> yes, 
>> If you have a look at the SyntaxHighlighterPlugin3Info [1] tiddler, 
>> there is a  "Needed: list tagged syntax" heading, which lists the 
>> dependencies. If you need an other language to be highlighted, there 
>> is some info about this just above the "Needed ... " section. 
>>
>> It would be nice, to get some feedback (from you), what would have 
>> been needed, to get you started faster. So I can add this info and 
>> improve the stuff. 
>>
>> have fun! 
>> mario 
>>
>> [1] 
>> http://syntaxhighlighter.tiddlyspace.com/#SyntaxHighlighterPlugin3Info
>
>

-- 
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: TW and (Alex Gorbatchev's) SyntaxHighlighter

2013-05-03 Thread carlos duarte
thanks for your work,

but i got "Error: ReferenceError: SyntaxHighlighter is not defined" in:

ShBrushCSS.js
ShBrushJScript.js
ShBrushPlain.js
ShBrushXml.js

in the plugin manager

how can i fix this? thanks!

-carlos


On Monday, July 2, 2012 6:58:18 AM UTC-7, PMario wrote:
>
> On Jul 2, 12:07 pm, Bertrand Goetzmann  
> wrote: 
> > Thank you! I need it just for documentation purpose in my own TW file. 
> > As I'm relatively new to TW, I didn't understand how to use your plugin; 
> > finally it worked by adding all the tiddlers tagged syntax in my TW 
> file, 
> > and by adding the tag systemConfig to those that have this tag in your 
> > TiddlySpace. 
> > Can you confirm this? 
> yes, 
> If you have a look at the SyntaxHighlighterPlugin3Info [1] tiddler, 
> there is a  "Needed: list tagged syntax" heading, which lists the 
> dependencies. If you need an other language to be highlighted, there 
> is some info about this just above the "Needed ... " section. 
>
> It would be nice, to get some feedback (from you), what would have 
> been needed, to get you started faster. So I can add this info and 
> improve the stuff. 
>
> have fun! 
> mario 
>
> [1] http://syntaxhighlighter.tiddlyspace.com/#SyntaxHighlighterPlugin3Info

-- 
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: Conditional formatting for tables

2009-01-08 Thread Carlos

Good idea... done!

http://followuplist.tiddlyspot.com/


On Jan 8, 8:43 pm, Ken Girard  wrote:
> As a suggetion, what about setting up a copy at TiddlySpot.com?
> That way people can import the tiddlers, as well as take a look at it
> without having to fully download.
>
> Ken Girard

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



[tw] Re: Conditional formatting for tables

2009-01-08 Thread Carlos

Here is a link to a file that I have shared on box.net.  It is not
server as html, you have to download it in order to view it.  I have
also updated the blog with this link.  Any questions feel free to
contact me.

http://www.box.net/shared/i1timuianq

On Jan 8, 12:21 am, Carlos  wrote:
> I don't, I'll put one together and post it tomorrow.
>

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



[tw] Re: Conditional formatting for tables

2009-01-07 Thread Carlos

I don't, I'll put one together and post it tomorrow.

On Jan 7, 11:42 pm, query  wrote:
> Pensamiento,
>
> Thanks for showing how you use the coding for the conditional format.
>
> Do you have a link to a Tiddly where we could see it in action?
>

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



[tw] Conditional formatting for tables

2009-01-07 Thread Carlos

Hello,

  I am posting a link to this as some people might find it useful.
Using the forEachTiddler and the DataTiddler plugins, I have come up
with a quick and dirty way to add conditional formatting to a table.

  Comments are welcomed.

http://pensamientoaleatorio.blogspot.com/2009/01/coditional-formating-for-tables-in.html


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