Jaxe Config File Editor

Author: Soufiane Ayadi

Jaxe Config File Editor

This editor is used to create a Jaxe's config file to define an environment to edit XML elements. Using its simplified GUI, the user can easily create or edit config files.

Required configuration

An OS (Mac, UNIX, Windows or other) with a recent Java version (at least 1.5). To test your OS Java version, you can type "java -version" in the command line.

Application launch

This usually just requires double-clicking on it on MacOS X and Windows, or right-clicking on it and choosing "Open with Sun Java Runtime" on Linux.

How to use Jaxe Config File Editor

Licence

GPL


Create/Edit a Config file

ecrans/menu_initial.png
Initial menu
ecrans/ouvrir_fichierXML.png
Open a config file

New: create a new config file

Open: open and edit an existing config file. Go to main menu .

Exit: exit the application


Languages choice

ecrans/definir_langues1.png
Set one or several languages
ecrans/definir_langues2.png
Add a language
ecrans/definir_langues3.png
Language list

You must add at least one language !


Schema choice

ecrans/choix_schema.png
Schema choice
ecrans/ouvrir_schema.png
Selection of a xml schema in the config directory

Choose a W3C schema, select the schema file in your config directory.


Choice of roots

ecrans/choix_racines1.png
Choice of one or several root elements

The list on the left represents the elements which may be root elements. Select one and add it to the list of roots. Don't forget to commit the changes by clicking the OK button.

When opening an existing configuration file, you will see the existing roots in the list of roots.

It is necessary to give Jaxe one or several possible root elements to use for new documents.


Main menu

ecrans/menu_principal.png
Main menu

The main menu provides access to different parts of the editor:


Other configuration

ecrans/autre_config.png
Choice of another configuration file

Another Jaxe configuration, to include another one in this config.


File saving options

ecrans/editeur_enregistrement.png
File saving options

Element definition


Menus

ecrans/editeur_menus/menu1.png
Create a new menu
ecrans/editeur_menus/menu2.png
Create a new menu
ecrans/editeur_menus/menu3.png
Add an insertion menu
ecrans/editeur_menus/menu4.png
Create a new function menu
ecrans/editeur_menus/menu5.png
Create a new function menu
ecrans/editeur_menus/menu6.png
Edit the menu strings
ecrans/editeur_menus/menu7.png
Edit the insertion menu strings

Menus defined in config files are displayed above Jaxe's text area. They are not mixed with Jaxe's menubar, which is above (on top of the screen on Macs).

The interface

The list on the right displays xml elements from the XML schema. These elements can be filtered through the text field. When opening an existing config file, the list shows only the remaining elements

Element definition


Node display

ecrans/editeur_elements/element1.png
Edit of selected element
ecrans/editeur_elements/element2.png
Edit the element strings
ecrans/editeur_elements/element3.png
Filter the list of elements
ecrans/editeur_elements/element4.png
Suggest attribute values
ecrans/editeur_elements/element5.png
Display parameter
ecrans/editeur_elements/element6.png
Edit the attribute strings

An essential feature in Jaxe is the possibility to display and edit XML elements in different ways, whatever their types in the XML schema. For instance, a table element can be displayed as a table, and an element linking to an image can be displayed as an image. The goal is to ease document editing, without losing of sight the semantics : elements will not be displayed as they will be seen in web pages or PDF documents, but simply with a user interface making edition easier and highlighting the meaning of the elements.

Element definition


Display types

Type Description Display
division Two bars extending to the window's right side, clearly separating large areas in the document. ecrans/images_types/division.png
area Two tags and carriage returns, to separate areas smaller than with division. ecrans/images_types/zone.png
string Two tags to identify a small string, without any carriage return. ecrans/images_types/string.png
empty A single tag, typically for an empty element. ecrans/images_types/vide.png
table Spreadsheet style table display (with the Swing component JTable). Handy for tables of numbers, but does not allow the use of XML elements inside the cells (use text table to do that). ecrans/images_types/tableau.png
text table Table display allowing the use of XML elements inside the cells. Also handles the rowspan and colspan attributes to gather cells vertically and horizontally. ecrans/images_types/tabletexte.png
style For use in the case (very rare if the XML language encodes the meaning as opposed to the presentation) where an XML element only conveys a style information. Displays the characters in the chosen style (bold, italic, ...), without any tag. An alternative is to use the string type, which can also use a style, but displays the tags. ecrans/images_types/style.png
file Displays an image based on its path on the disk coming from an attribute of the XML element (to be defined). It is possible to copy/paste images and Jaxe will automatically create the XML element and the image file on the disk, using the first element of type file. ecrans/images_types/fichier.png
symbol Displays an image chosen within a set of images in an image folder. ecrans/images_types/symbole.png
list For an element representing a bulleted or ordered list. The sub-element must use the item type. The tags are displayed as for area, with a '+' button to create new items. ecrans/images_types/liste.png
item List item in a list displayed with the list type. Displayed with bullets or numbers, depending on the list type. ecrans/images_types/item.png
simple type Displays an element having a simple value, in a small panel. Usable only for the elements with a simple type in the XML schema. The precise display (text field, menu or checkbox) and the validation are done based on the XML schema constraints. ecrans/images_types/typesimple.png
equation Displays the image of an equation. The equation can be edited by a simple click on the image, with a dialog showing at the same time the text of the equation (using a very simple syntax specific to Jaxe) and the corresponding image. ecrans/images_types/equation.png
form Displays an element and all its sub-elements as a form, with a field for each sub-element. Beware not to use this type with elements that could have an infinitely deep subtree ! ecrans/images_types/formulaire.png
plugin If you want to define your own Jaxe element, it is possible ! See the section "Creation of new Jaxe elements" in the developer guide for more information.

Parameters can be specified for some display types, with the Parameter element under Element display.

Display types division and area can have a parameter specifying the name of the attribute to use as a title for the element display.

Display types file and symbol must have a parameter specifying the attribute with the file name.

Display types table and text table must have parameters specifying the elements for the rows and the cells.

Display types style must have a parameter specifying the style.

Display types area and string can have a parameter specifying the style, a parameter with the font family, and a parameter with the font size.

Display types equation must have parameters specifying the attributes to use for the equation text and the image filename.

Here is a list of all the parameters:

type parameter name description
division and area titreAtt attribute for the title
division, area, string and empty attributsVisibles displays all the attributes on the start tag (true|false)
table and text table trTag element for a line
table and text table tdTag element for a cell
table and text table thTag element for a header cell
text table colspanAttr attribute to merge columns
text table rowspanAttr attribute to merge rows
text table alignAttr attribute to align text
list typeListe type of list (POINTS|NUMEROS) (bulleted/ordered)
style, area and string style GRAS (bold) | ITALIQUE (italic) | EXPOSANT (superscript) | INDICE (subscript) | SOULIGNE (underlined) | BARRE (strikethrough)
area and string police font family
area and string taille font size
file and symbol srcAtt attribute with the file name
plugin classe Java class derived from JaxeElement
item image1 first bullet image
item image2 second bullet image
equation srcAtt attribute with the image filename
equation texteAtt attribute with the equation text

Exports

ecrans/editeur_exports/export1.png
ecrans/editeur_exports/export2.png
Add an export
ecrans/editeur_exports/export_parcourir_xsl.png
Choice XSL file for export

Element definition


Strings

ecrans/editeur_textes/textes1.png
Edit a menu strings
ecrans/editeur_textes/textes2.png
Edit an element strings
ecrans/editeur_textes/textes3.png
Editer an export strings
ecrans/editeur_textes/textes4.png
Add language
ecrans/editeur_textes/textes5.png
Edit the strings for a set of languages

All the texts (also called strings) may have to be changed in the interface created with the configuration. Either to improve readability without having to change the schema, or to provide an interface in another natural language for the same schema. Texts may also have to be provided for a set of languages, so that users can edit the same documents, with the same Jaxe configuration, but with an interface entirely in their native language.

Element definition


Save the config file

ecrans/enregistrement_fichier/enregistrer_fichierXML.png
Save the XML file
ecrans/enregistrement_fichier/enregistrer_chemin_schema1.png
Save the schema path
ecrans/enregistrement_fichier/enregistrer_chemin_schema2.png
Schema path saving

Click on Save and choose your config directory path. Enter the file name (without _config, or .xml extension)

A dialog asks you to save the schema path. The config file and the W3C schema must be in the same directory.

If you exit without saving your XML file, a dialog will suggest to do it.