r96940 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r96939‎ | r96940 | r96941 >
Date:02:43, 13 September 2011
Author:inez
Status:deferred
Tags:
Comment:
Definition of example table for synth demo
Modified paths:
  • /trunk/parsers/wikidom/demos/synth/es.js (modified) (history)

Diff [purge]

Index: trunk/parsers/wikidom/demos/synth/es.js
@@ -40,25 +40,28 @@
4141 },
4242 {
4343 'type': 'table',
 44+ 'attributes': { 'style': 'width: 600px; border: solid 1px;' },
4445 'rows': [
4546 {
4647 'cells': [
4748 {
 49+ 'attributes': { 'style': 'border: solid 1px;' },
4850 'document': {
4951 'blocks': [
5052 {
5153 'type': 'paragraph',
52 - 'content': { 'text': 'test 1' }
 54+ 'content': { 'text': 'row 1 & cell 1' }
5355 }
5456 ]
5557 }
5658 },
5759 {
 60+ 'attributes': { 'style': 'border: solid 1px;' },
5861 'document': {
5962 'blocks': [
6063 {
6164 'type': 'paragraph',
62 - 'content': { 'text': 'test 2' }
 65+ 'content': { 'text': 'row 1 & cell 2' }
6366 }
6467 ]
6568 }
@@ -68,26 +71,89 @@
6972 {
7073 'cells': [
7174 {
 75+ 'attributes': { 'style': 'border: solid 1px;' },
7276 'document': {
7377 'blocks': [
7478 {
7579 'type': 'paragraph',
76 - 'content': { 'text': 'test 3' }
 80+ 'content': { 'text': 'row 2 & cell 1' }
7781 }
7882 ]
7983 }
8084 },
8185 {
 86+ 'attributes': { 'style': 'border: solid 1px;' },
8287 'document': {
8388 'blocks': [
8489 {
8590 'type': 'paragraph',
86 - 'content': { 'text': 'test 4' }
87 - }
 91+ 'content': { 'text': 'row 2 & cell 2' }
 92+ },
 93+ {
 94+ 'type': 'list',
 95+ 'style': 'number',
 96+ 'items': [
 97+ {
 98+ 'content': { 'text': 'First item' },
 99+ 'lists': [
 100+ {
 101+ 'style': 'bullet',
 102+ 'items': [
 103+ { 'content': { 'text': 'First subitem' } },
 104+ { 'content': { 'text': 'Second subitem' } }
 105+ ]
 106+ }
 107+ ]
 108+ },
 109+ {
 110+ 'content': {
 111+ 'text': 'Second item',
 112+ 'annotations': [
 113+ {
 114+ 'type': 'italic',
 115+ 'range': {
 116+ 'start': 0,
 117+ 'end': 6
 118+ }
 119+ }
 120+ ]
 121+ }
 122+ },
 123+ {
 124+ 'content': {
 125+ 'text': 'Third item',
 126+ 'annotations': [
 127+ {
 128+ 'type': 'bold',
 129+ 'range': {
 130+ 'start': 0,
 131+ 'end': 5
 132+ }
 133+ }
 134+ ]
 135+ }
 136+ },
 137+ {
 138+ 'content': {
 139+ 'text': 'Fourth item',
 140+ 'annotations': [
 141+ {
 142+ 'type': 'ilink',
 143+ 'range': {
 144+ 'start': 7,
 145+ 'end': 11
 146+ },
 147+ 'data': { 'title': 'User:JohnDoe' }
 148+ }
 149+ ]
 150+ }
 151+ }
 152+ ]
 153+ }
88154 ]
89155 }
90156 }
91 - ]
 157+ ]
92158 }
93159 ]
94160 },

Status & tagging log