[wim] r51019 - buildout/silva/branch/Silva-3.0

[email protected]
Newsgroups gmane.comp.web.zope.silva.cvs
Message-ID <[email protected]>
Author: wim
Date: Tue Aug 13 08:28:52 2013
New Revision: 51019

Modified:
   buildout/silva/branch/Silva-3.0/test-results.txt
Log:
updated table testing

Modified: buildout/silva/branch/Silva-3.0/test-results.txt
==============================================================================
--- buildout/silva/branch/Silva-3.0/test-results.txt	(original)
+++ buildout/silva/branch/Silva-3.0/test-results.txt	Tue Aug 13 08:28:52 2013
@@ -4,13 +4,18 @@
 Language settings
 -----------------
 
-When in English mode there is a language preference option: "Occitan (post 1500); Provençal" in other language there is just "Occtitan (post 1500)"
-Appearantly this name is correct, but it might nice to have a service where you can set which languages or shown or add fovorite languages on top as the languege list is getting really big and is full of languages that most people don't care about. Or at least we should order them alphabetically.
+When in English mode there is a language preference option: "Occitan
+(post 1500); Provençal" in other language there is just "Occtitan (post
+1500)" Appearantly this name is correct, but it might nice to have a
+service where you can set which languages or shown or add favorite
+languages on top as the languege list is getting really big and is full
+of languages that most people don't care about. Or at least we should
+order them alphabetically.
 
 Dutch
 -----
 
-Has some weird spanish or portugese translations.
+Has some weird spanish or Portuguese translations.
 
 Code sources
 ============
@@ -637,18 +642,24 @@
 Tables
 ======
 
-Firefox 23
-----------
+General
+-------
 
-Merging cells
-~~~~~~~~~~~~~
+Most table options are lost, except the number of rows, number of
+columns and the caption.
 
-Starting point 3 x 5 table
+Splitting cells
+---------------
+
+Splitting vertically a cell merges merges vertically the two cells right
+next to it. If we merge down cell 2.2 you get this table layout:
 
 +---+---+---+
 |1.1|1.2|1.3|
 +---+---+---+
 |2.1|2.2|2.3|
++   +---+   +
+|   |   |   |
 +---+---+---+
 |3.1|3.2|3.3|
 +---+---+---+
@@ -657,36 +668,110 @@
 |5.1|5.2|5.3|
 +---+---+---+
 
-Merging down cell makes two extra columns. If we merge down cell 2.2 it
-should get merged with 3.2, which it does but instead you get this table
-layout:
+Splitting the cells itself works correct, you get a rowspan of 2 on the
+td aside of the cell 2.2 that gets split.
+
+The problem that does occur:
+
+You split cell 2.2 vertically: ok (rowspan gets removed, new td created)
+You split cell 2.1 vertically: ok (rowspan gets removed, new td created)
+You split cell 2.3 vertically: ok: rowspan gets removed, new td
+created; not ok: the content of the newly created cell of 2.2 becomes the
+content of the newly created 2.3. The effect you get is that the newly
+created cells in 2.1 and 2.3 get switched
+
+Merging cells
+-------------
+
+Starting point a 3 x 5 table:
 
 +---+---+---+
 |1.1|1.2|1.3|
-+--+----+---+---+---+
-|2.1|2.2|2.3|3.1|3.3|
-+---+   +---+---+---+
-|4.1|3.2|4.2|4.3|
-+---+---+---+---+
++---+---+---+
+|2.1|2.2|2.3|
++---+---+---+
+|3.1|3.2|3.3|
++---+---+---+
+|4.1|4.2|4.3|
++---+---+---+
 |5.1|5.2|5.3|
 +---+---+---+
 
-Splitting cells
-~~~~~~~~~~~~~~~
+Merging down cells
+~~~~~~~~~~~~~~~~~~
 
-Splitting vertically a cell merges merges vertically the two cells right
-next to it. If we merge down cell 2.2 you get this table layout:
+Merging down cell 2.1 makes it look like you have merged three cells and not two.
+If you then do a merge down you get the wrong visual result:
 
 +---+---+---+
 |1.1|1.2|1.3|
++   +   +   +
+|   |2.2|   |
++---+   +---+
+|2.1|2.3|   |
++---+---+---+
+|3.1|3.2|3.3|
++---+---+---+
+|4.1|4.2|4.3|
++---+---+---+
+|5.1|5.2|5.3|
++---+---+---+
+
+The expected visual result would be:
+
++---+---+---+
+|1.1|1.2|1.3|
++   +   +   +
+|   |2.2|   |
++---+   +---+
+|2.1|   |2.3|
 +---+---+---+
-|2.1|2.2|2.3|
-+   +---+   +
-|   |   |   |
-+---+---+   +
 |3.1|3.2|3.3|
 +---+---+---+
 |4.1|4.2|4.3|
 +---+---+---+
 |5.1|5.2|5.3|
 +---+---+---+
+
+Merging down split cells
+~~~~~~~~~~~~~~~~~~~~~~~~
+
+Merging down split cells makes it look like you have extra columns.
+If you then do a merge down on the newly split cell you get a wrong visual result:
+
++---+---+---+
+|1.1|1.2|1.3|
++--+----+---+---+---+---+
+|2.1|2.2|2.3|3.1|3.2|3.3|
++---+---+---+---+---+---+
+|4.1|4.2|4.3|
++---+---+---+
+|5.1|5.2|5.3|
++---+---+---+
+
+I would expect, that content of the new split cell in 2.2 would get
+merged with cell 3.2 and the row spans would get removed. What happens
+is that some unexpected row and column spans get added:
+
+<td rowspan="2">
+  <p>2.1</p>
+</td>
+<td colspan="1" rowspan="2">
+  <p>2.2</p>
+</td>
+<td rowspan="2">
+  <p>2.3</p>
+</td>
+
+Selecting text
+--------------
+
+Selecting all text in a table cell with the cursor doesn't work. You can
+never select the first line or last line.
+
+Table caption
+-------------
+
+The table caption is below the table head, it makes more sense that it
+would be at the top in the table. This is probably caused by the option
+to have table headers in the first row.
_______________________________________________
silva-cvs mailing list
[email protected]
https://lists.infrae.com/mailman/listinfo/silva-cvs
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.