Thanks!
Just a short comment on usage. If you have a table with let's say 6
columns and 20 rows then it is a lot easier to work in the rendered view
(no matter how well you know the markup) than editing directly in the
source, especially if the table structure is irregular (has some cells
spanning multiple rows or columns), see an example below, open it in
both text and Author mode:
<TEI xmlns:xi="http://www.w3.org/2001/XInclude"
xmlns="http://www.tei-c.org/ns/1.0">
<teiHeader>
<fileDesc>
<titleStmt>
<title>Sample for table editing</title>
</titleStmt>
<publicationStmt>
<p>Sample</p>
</publicationStmt>
<sourceDesc>
<p>Sample</p>
</sourceDesc>
</fileDesc>
</teiHeader>
<text>
<body>
<p>Table:
<table rows="20" cols="6">
<head>Sample table</head>
<row role="label">
<cell>Number</cell>
<cell>Header 2</cell>
<cell>Header 3</cell>
<cell>Header 4</cell>
<cell>Header 5</cell>
<cell>Header 6</cell>
</row>
<row>
<cell>1</cell>
<cell rows="3">Some rows are joined</cell>
<cell>0</cell>
<cell>0</cell>
<cell>0</cell>
<cell>0</cell>
</row>
<row>
<cell>2</cell>
<cell>0</cell>
<cell>0</cell>
<cell>0</cell>
<cell>0</cell>
</row>
<row>
<cell>3</cell>
<cell>0</cell>
<cell>0</cell>
<cell>0</cell>
<cell>0</cell>
</row>
<row>
<cell>4</cell>
<cell cols="5">Some columns are joined</cell>
</row>
<row>
<cell>5</cell>
<cell>0</cell>
<cell>0</cell>
<cell>0</cell>
<cell>0</cell>
<cell>0</cell>
</row>
<row>
<cell>6</cell>
<cell>0</cell>
<cell>0</cell>
<cell>0</cell>
<cell>0</cell>
<cell>0</cell>
</row>
<row>
<cell>7</cell>
<cell>0</cell>
<cell>0</cell>
<cell>0</cell>
<cell>0</cell>
<cell>0</cell>
</row>
<row>
<cell>8</cell>
<cell>0</cell>
<cell>0</cell>
<cell>0</cell>
<cell>0</cell>
<cell>0</cell>
</row>
<row>
<cell>9</cell>
<cell cols="5"/>
</row>
<row>
<cell>10</cell>
<cell cols="2">Some columns are joined</cell>
<cell cols="3">Some columns are joined</cell>
</row>
<row>
<cell>11</cell>
<cell cols="2">Some columns are joined</cell>
<cell cols="3">Some columns are joined</cell>
</row>
<row>
<cell>12</cell>
<cell cols="2">Some columns are joined</cell>
<cell cols="3">Some columns are joined</cell>
</row>
<row>
<cell>13</cell>
<cell cols="2">Some columns are joined</cell>
<cell/>
<cell/>
<cell/>
</row>
<row>
<cell>14</cell>
<cell>0</cell>
<cell/>
<cell/>
<cell/>
<cell/>
</row>
<row>
<cell>15</cell>
<cell>0</cell>
<cell/>
<cell/>
<cell/>
<cell/>
</row>
<row>
<cell>16</cell>
<cell>0</cell>
<cell/>
<cell/>
<cell rows="4" cols="2">Both rows and columns joined</cell>
</row>
<row>
<cell>17</cell>
<cell>0</cell>
<cell/>
<cell/>
</row>
<row>
<cell>18</cell>
<cell>0</cell>
<cell/>
<cell/>
</row>
<row>
<cell>19</cell>
<cell>0</cell>
<cell/>
<cell/>
</row>
<row>
<cell cols="6">All columns joined</cell>
</row>
</table>
</p>
</body>
</text>
</TEI>
Best Regards,
George
---------------------------------------------------------------------
George Cristian Bina - http://aboutxml.blogspot.com/
<oXygen/> XML Editor, Schema Editor and XSLT Editor/Debugger
http://www.oxygenxml.com
Elena Pierazzo wrote:
> I've just tested it and I am really pleased.
> I do not use this kind of facilities myself (I do prefer to manage the
> code), but at CCH we had used this kind of features in the past for
> project partners and, in my experience, is really helpful, especially at
> the beginning.
> I dare say this seems to work better than any other editor with WYSIWYG
> I ever tested, both because of the path given at the top of the main
> window (so you don't get lost) and because the element tab is able to
> assist in insert new element not only at the cursor, but also before and
> after the current element that, in WYSIWYG-like environment, is helping
> in avoiding to insert tags in the wrong position. I love the insertion
> of images!
>
> I know that many of us will not use this, but I agree that having a
> quick glance to the possible output is really useful, especially when
> dealing with complex markup, not only because it helps in detecting
> possible semantic errors in a quick visual way but also, from a
> psychological point of view ("ah! that's why I am struggling so much
> with such an XML!").
>
> Thank again to you folks, great job!
>
> Elena
>
> George Cristian Bina ha scritto:
>> Dear friends,
>>
>> We made available a beta version of oXygen 9, please help us testing it
>> http://www.oxygenxml.com/download-beta.html
>>
>> The new version adds tagless editing support based on CSS and it
>> includes ready to use support for TEI (P4 and P5). That support
>> includes also built in custom actions similar with what you find in a
>> word processor
>> - make bold, italic, underlined
>> - insert section, paragraph, image
>> - insert lists and list items
>> - insert tables, rows, columns and cells
>>
>> To switch in tagless editing mode just click on the Author tab in the
>> editor (next to the Text and Grid tabs). Then you can navigate/move
>> inside the document and you will see a position tooltip that indicates
>> where you are in the markup. Just type to edit the content and press
>> Enter if you want to enter markup. A content completion like popup
>> will appear and you will be able to type to select a proposal.
>> Attributes are edited in the attributes view on the side.
>>
>> There were also improvements in the error reporting when validating
>> against a Relax NG schema, so this is important if you work with P5.
>> Incomplete error messages like:
>> - required attributes missing
>> - required elements missing
>> - unfinished element
>> were improved to actually specify what are the missing attributes or
>> elements that are expected.
>>
>> Best Regards,
>> George
>> ---------------------------------------------------------------------
>> George Cristian Bina - http://aboutxml.blogspot.com/
>> <oXygen/> XML Editor, Schema Editor and XSLT Editor/Debugger
>> http://www.oxygenxml.com
>
|