Go to main content

Textpattern CMS support forum

You are not logged in. Register | Login | Help

#13 2013-05-18 18:36:29

skewray
Member
From: Sunny Southern California
Registered: 2013-04-25
Posts: 141
Website

Re: Bug Collection

About passwords: I did the install with SimpleScripts. Perhaps SimpleScripts asked for the password and the limitation is there.

Offline

#14 2013-05-18 18:58:48

Bloke
Developer
From: Leeds, UK
Registered: 2006-01-29
Posts: 11,269
Website GitHub

Re: Bug Collection

Gocom wrote:

128 makes me think you are somehow referring to the field length

My bad. I just looked at the field size in the database.


The smd plugin menagerie — for when you need one more gribble of power from Textpattern. Bleeding-edge code available on GitHub.

Txp Builders – finely-crafted code, design and Txp

Offline

#15 2013-05-19 21:02:56

skewray
Member
From: Sunny Southern California
Registered: 2013-04-25
Posts: 141
Website

Re: Bug Collection

I upgraded to 4.5.4 today and re-tried the W3 validator on www.skewray.com/about, a page with a simple textile page containing a <ul> surrounded by blank lines. The result fails validation because the <ul> contract is surrounded by <p></p>.

Offline

#16 2013-05-19 21:13:18

philwareham
Core designer
From: Haslemere, Surrey, UK
Registered: 2009-06-11
Posts: 3,564
Website GitHub Mastodon

Re: Bug Collection

@skewray

Please post your textile here, so we can see how it’s been formatted.

Offline

#17 2013-05-20 03:25:47

colak
Admin
From: Cyprus
Registered: 2004-11-20
Posts: 9,011
Website GitHub Mastodon Twitter

Re: Bug Collection

skewray wrote:

I upgraded to 4.5.4 today and re-tried the W3 validator on www.skewray.com/about, a page with a simple textile page containing a <ul> surrounded by blank lines. The result fails validation because the <ul> contract is surrounded by <p></p>.

Can you also please post the url of the page with the error?

>Edit: I just checked the source of http://www.skewray.com/articles/1976-alfa-romeo-spider-veloce-ev-conversion

You have part of the code commented out resulting on an unopened closed p

here is the code:

<!--  <p><strong>Author</strong> <span itemprop="author"><a rel="author" href="http://www.skewray.com/articles/?author=Brian+Sutin">Brian Sutin</a></span> -->

<!-- only display categories if they are actually set for an article, otherwise omit -->

    <br><strong>Categories</strong> <span itemprop="keywords"><a rel="tag" href="http://www.skewray.com/category/electric-vehicles/">Electric Vehicles</a></span>


  </p>

I think that it can be corrected on presentation>forms>default

Last edited by colak (2013-05-20 03:32:58)


Yiannis
——————————
NeMe | hblack.art | EMAP | A Sea change | Toolkit of Care
I do my best editing after I click on the submit button.

Offline

#18 2013-05-20 15:19:19

skewray
Member
From: Sunny Southern California
Registered: 2013-04-25
Posts: 141
Website

Re: Bug Collection

The error colak pointed out does cause a problem on that page (thanks!), but even after I fixed that error, the problem persists on the original page, http://www.skewray.com/about . The original Textile is:

Skewray Research LLC was founded in 2003 to provide consulting in optical systems.  Brian M. Sutin, Ph.D. is the sole proprietor.

!http://www.skewray.com/images/13.png (View My LinkenIn Profile)!:http://www.linkedin.com/in/briansutin

"List of Publications":/about/publications

Past Projects:
* <a href="https://jacks.jpeocbd.army.mil/Jacks/Public/FactSheetProvider.aspx?productId=396">Chemical Biological Mass Spectrometer</a>
* <a href="http://www.skewray.com/cgi-bin/spec2">Grating Spectrograph Designer Spreadsheet</a> -- A Cool Online Toy
* <a href="http://www.nasa.gov/mission_pages/constellation/orion/index.html">Orion Crew Exploration Vehicle</a> -- Smoke Detector for the NASA Shuttle Replacement
* <a href="http://oco.jpl.nasa.gov">Orbiting Carbon Observatory</a> -- NASA Satellite to Map CO<sub>2</sub> from Space
* <a href="pubs/spie4841b.pdf"> MOE </a> -- Multi-Object Echellette Module for IMACS
* <a href="http://www.astro.umd.edu/~veilleux/mmtf/"> MMTF </a> -- Maryland-Magellan Tuneable Filter for IMACS
* <a href="http://www.obs.carnegiescience.edu/instrumentation/imacs/index.html"> IMACS@OCIW</a>, <a href="http://www.lco.cl/telescopes-information/magellan/instruments/imacs/imacs-project-home/imacs-project/"> IMACS@LCO </a> -- Wide-Field Imaging Spectrometer for the Magellan Telescopes
* <a href="http://loen.ucolick.org/engineering/ESI/"> ESI@Lick</a>, <a href="http://www2.keck.hawaii.edu/inst/esi/"> ESI@Keck </a> -- Imaging Spectrometer for the Keck Telescopes
* <a href="http://loen.ucolick.org/Deimos/deimos.html"> DEIMOS@Lick</a>, <a href="http://www2.keck.hawaii.edu/inst/deimos/"> DEIMOS@Keck </a> -- Wide-Field Imaging Spectrometer for the Keck Telescopes
* <a href="http://bima.astro.umd.edu/"> BIMA</a>, <a href="http://bima.astro.umd.edu/miriad/"> MIRIAD </a> -- Berkeley-Illinois-Maryland Interferometer Millimeter Array

Offline

#19 2013-05-20 15:31:18

philwareham
Core designer
From: Haslemere, Surrey, UK
Registered: 2009-06-11
Posts: 3,564
Website GitHub Mastodon

Re: Bug Collection

skewray wrote:

Past Projects:
* <a href="https://jacks.jpeocbd.army.mil/Jacks/Public/FactSheetProvider.aspx?productId=396">Chemical Biological Mass Spectrometer</a>

You need double line break after ‘Past Projects:’, otherwise Textile interprets it as…

<p>Past projects:<br>
<ul>
<li>stuff here</li>
</ul>
</p>

Offline

#20 2013-05-20 15:31:22

Gocom
Developer Emeritus
From: Helsinki, Finland
Registered: 2006-07-14
Posts: 4,533
Website

Re: Bug Collection

skewray wrote:

The original Textile is

You are telling it to put the list inside a paragraph. Textile doesn’t have other options for Past Projects: line. Textile always wants to wrap everything to some block element, either to paragraph, table, list or something else.

You can either add empty line before the list, or exclude the line from formatting. E.g.

Foobar

* item 1
* item 2

Which generates;

<p>Foobar</p>
<ul>
	<li>item 1</li>
	<li>item 2</li>
</ul>

Or:

 Foobar
* item 1
* item 2

Which generates:

Foobar
<ul>
	<li>item 1</li>
	<li>item 2</li>
</ul>

Last edited by Gocom (2013-05-20 15:32:15)

Offline

#21 2013-05-20 18:07:05

skewray
Member
From: Sunny Southern California
Registered: 2013-04-25
Posts: 141
Website

Re: Bug Collection

I see. I’ve notices a sililar problem with tables. If I put a line just before a table, Textile inserts a <br /> after </thead> but before </table>, generating a validation error.

Offline

#22 2013-05-20 18:33:05

ax
Plugin Author
From: Germany
Registered: 2009-08-19
Posts: 165

Re: Bug Collection

skewray wrote:

I see. I’ve notices a sililar problem with tables. If I put a line just before a table, Textile inserts a <br /> after </thead> but before </table>, generating a validation error.

If everything else fails, read the instructions:

|^.
|_. First Header |_. Second Header |
|-.
| Content Cell | Content Cell |
| Content Cell | Content Cell |

yields:

<table>
	<thead>
		<tr>
			<th>First Header </th>
			<th>Second Header </th>
		</tr>
	</thead>
	<tbody>
		<tr>
			<td> Content Cell </td>
			<td> Content Cell </td>
		</tr>
		<tr>
			<td> Content Cell </td>
			<td> Content Cell </td>
		</tr>
	</tbody>
</table>

Offline

#23 2013-05-20 20:27:50

skewray
Member
From: Sunny Southern California
Registered: 2013-04-25
Posts: 141
Website

Re: Bug Collection

I wasn’t using Textile tables when I noticed the table issue. I was hand-converting LibreOffice’s (hideous) HTML output to HTML5. Just like with the <ul> above, I didn’t leave a blank line between the <table> and the line before.

Offline

Board footer

Powered by FluxBB