On Tue, Mar 23, 2010 at 3:42 PM, Markus Weimar <[email protected]> wrote: > 1) <br /> around table. Just to make sure, this is what you want: > > text > > [t] > [r][c]cell > [t] > > text > > ––> > > <p>text</p> > > <br /> > > <table > > <tr ><td >cell</td></tr> > </table> > > <br /> > > <p>text</p>
This is what we want. If you put border=1 in the table you'll see space between the text and the table. Do it like this and you won't: text [t] [r][c]cell [t] text > 2) No validation yet: > http://validator.w3.org/check?uri=http%3A%2F%2Fwww.markusweimar.de%2Ftest%2Fissue%2Ffavicon-umlauts-äöü&charset=%28detect+automatically%29&doctype=Inline&group=0&user-agent=W3C_Validator%2F1.767 Looks like minor things related to the & again... Try changing line 334 in commands.php to use & like this: if ((isset($BOLTarray[$ff])) && ($BOLTarray[$ff] != '')) $passdata .= "&$ff=" . urlencode($BOLTarray[$ff]); to if ((isset($BOLTarray[$ff])) && ($BOLTarray[$ff] != '')) $passdata .= "&$ff=" . urlencode($BOLTarray[$ff]); And see if it doesn't change your validation. If it does, we'll add it to the core. > 3) Not sure if you decided against fixing this: > > [form] > [text txt '{?txt}' size=30] [submit Search] > [session search "text='{=txt}' order=reverse fmt='[r][c][[{+p}|+]]'"] > [session passdata txt] > [session msg] > [form][if set {?txt}] > [t] > [results] > [t][if] > > –> > > <p><table > > <tr ><td ><a href="..." >...</a> > <tr ></p> > <br /> This can't be fixed because of how the order of processing goes. You have to use template with first and last to set the table. Basically the [results] has to have the whole table to work. Cheers, Dan -- You received this message because you are subscribed to the Google Groups "BoltWire" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/boltwire?hl=en.
