Re: [tw] Re: TiddlyWiki 2.6.2 release

2011-01-19 Thread Jeremy Ruston
Hi Scott

>  It must be something
> common to all my TiddlyWikis, since it's consistent across each of them --
> although it DOES NOT occur in an empty, unmodified TW downloaded from
> TiddlyWiki.com.
>
> When things slow down later in the week, I'll try disabling plugins and see
> if I can isoloate a conflict.  For now, though, I just wanted to toss it out
> there and see if anyone else has encountered it.

Given that an empty document from tw.com works fine, tracking down
your plugins would be the best approach.

It's worth also bearing in mind that it's been known for antivirus
software to interfere with TiddlyWIki.

Best wishes

Jeremy

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



-- 
Jeremy Ruston
mailto:jer...@osmosoft.com
http://www.tiddlywiki.com

-- 
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] Javascript to hide HTML lines containing an empty cell

2011-01-19 Thread whatever
Hi!
I'd like to hide the rows in an HTML table which contain an empty
cell. This has to do with a plugin which generates various tables, so
the user only lists the data as paramaters. The plugin works nicely,
but I'd like to pimp it up. So, beside hiding the row in which a cell
is empty (because the user didn't enter data), I'd also like to hide
the section in which all rows but the subtitle are empty. Also, if no
data has been entered, then a message should be rendered instead of
the table. This is a simplified example where only the Title,
Subtitle1 and test2 line should be visible. Is it as simple as I think
it is or am I going about it the wrong way?



if((document.getElementTagName('td').innerHTML === '')) { //If a cell
is empty
document.getElementTagName('tr').style.display = 'none'; //Remove the
line
 }
if((document.getElementTagName('tr').length === 1)) { //If only the
subtitle is visible
document.getElementTagName('tbody').style.display = 'none'; //Remove
the section
 }
if((document.getElementTagName('tbody').length === 0)) { //If only the
title is visible
document.getElementTagName('table').style.display = 'none'; //Remove
the table
return "No information"; //Display the message instead
 }


Title

Subtitle1
test1
test2


Subtitle2
test3
test4




Any help would be appreciated.
w

-- 
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] Accessing script variables in html form?

2011-01-19 Thread skye riquelme
Hi All

When inside a html form (..) how do I access the data
in a config.options.txt... variable.

I am looking for something like


Is that possible?

Thanks in Advance
Skye

-- 
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: Accessing script variables in html form?

2011-01-19 Thread Måns
Hi Skye

> When inside a html form (..) how do I access the data
> in a config.options.txt... variable.
>
> I am looking for something like
> 

Doesn't this work?:
Username:
  

If not - you can try Eric's http://www.tiddlytools.com/#HTMLFormattingPlugin
and see if you can use macros inside html markers...

Cheers Måns Mårtensson

-- 
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: Accessing script variables in html form?

2011-01-19 Thread Eric Shulman
> When inside a html form (..) how do I access the data
> in a config.options.txt... variable.
> I am looking for something like
> 
> Is that possible?

Unfortunately, there isn't an 'onInit' syntax for HTML form
elements... as a result, there isn't really a *direct* way to use
javascript code to initialize a field's value.  However, it is still
possible to initialize form controls using javascript, but it has to
be written a bit indirectly.

Here's the basic structure:


   

   var form=place.lastChild.getElementsByTagName('form')[0];
   form.somename.value=config.options.txtUserName;


note: requires http://www.TiddlyTools.com/#InlineJavascriptPlugin

enjoy,
-e
Eric Shulman
TiddlyTools / ELS Design Studios

-- 
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] HTML Table formatting

2011-01-19 Thread skye riquelme
Hi All

I have a simple code for a table like -
{{{LoginUsername: Password: Curso:  <>}}}

It works perfectly when opened in the main viewer. However when opened
in the sidebar the input boxes don´t show up. I am assuming its a
CSS coding .have tried code like -

.rightLogin th, .rightLogin td, .rightLogin tr, .rightLogin
caption, .twtable th, .twtable td, .twtable tr, .twtable caption {
padding-bottom: 3px;
padding-left: 3px;
padding-right: 3px;
padding-top: 3px;}

in the StyleSheet (...the problem is in rightLogin item as defined in
the pageTemplate div ( )

Can someone correct this code or indicate how to get the tables
showing up correctly in this part of the sidebar.

Thanks in Advance
Skye

-- 
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: wikipedia is planning to delete tiddlywiki article?

2011-01-19 Thread TonyM
Anyone an active Wikipedia contributor.

I would jump in except the problems appears to be it is not high quality 
post. Since I see no problem with it, it needs someone with experience

This is important for our profile.

-- 
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: wikipedia is planning to delete tiddlywiki article?

2011-01-19 Thread passingby
The reason for marking for deletion is here
http://en.wikipedia.org/wiki/Wikipedia:Articles_for_deletion/TiddlyWiki
The reason cited is : "Non notable management software. No reliable
sources provided, none found besides download links and promo
material."

I do not know what kind of sources wikipedia needs in software cases,
but I can see a problem with the article structure. There is no
breakup of article into sections like introduction, development and
ending. Here is a list of sections which might be considered.

# Philosophy of TW
# Features
# Special mention of Tags
# Plugins
# Adaptations
# Tiddlyspot and Tiddlyspace
# History
# VariousTranslations
# Technical info like security issues
# Use cases
# Comparison with other similar software solutions?

What do you guys think? All this can be done,but what about the
objection regarding 'sources'. What source can we provide besides
direct knowledge had from first hand experience? Isn't first hand
experience the best form of knowledge source? Can this be somehow
cited in wikipedia articles? Can this google group be cited as a
source?

On Jan 20, 7:25 am, TonyM  wrote:
> Anyone an active Wikipedia contributor.
>
> I would jump in except the problems appears to be it is not high quality
> post. Since I see no problem with it, it needs someone with experience
>
> This is important for our profile.

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