Documentation for end users


XML principles

XML is a syntax, but it is mostly a philosophy in writing documents, which consists of describing the meaning in an explicit way as opposed to the presentation. One would write, for instance:

<TITLE>XML</TITLE>

instead of:

<BOLD><ITALIC><CENTER>XML</CENTER></ITALIC></BOLD>

This principle allows both automatic data processing (like the extraction of all the titles to build a table of contents), and the possibility to define several displays for the same content (like a web display and a paper display).

Since the content is well separated from the presentation, XML editors like Jaxe are not WYSIWYG ("What you see is what you get"). People used to word processors like Word have to be careful not to use styles such as bold or italic when it is possible to convey the meaning of the content instead. It is also important to not rely on the preview because there can be several ways of displaying the content. It is better to use elements corresponding to paragraphs or sections rather than line break elements, because the space between paragraphs can depend on the display and be a little less or a little more than a line.


Definition of an XML language

An XML language is defined formally, so that an automatic syntax check is possible. This formal description includes the names of the elements in the language, the allowed element nesting, the order of the elements and their attributes (attributes being optional or required).

Jaxe makes the creation of XML documents easier by using the language rules to suggest elements to insert wherever possible. This makes the creation of valid documents (i.e. conforming to the language rules) much easier than with a simple text editor. This introduction is general for all XML languages, but each end user has to learn one or more specific XML languages which are not detailed here.

On top of the files describing XML languages (the schemas), Jaxe uses configuration files to define the menubar and the way to display elements. These files are located in the config directory, and their names end with _Jaxe_cfg.xml.


Launching Jaxe

Jaxe requires Java 1.5 or later. To know what version of Java is installed, type java -version in the command line.

Jaxe is launched in different ways depending on the OS. On MacOS, it is done with a double-click on the application, which is located in the Jaxe directory. On Windows, Jaxe is launched with the Jaxe.exe executable or with the run.bat script, and on UNIX with the run.sh script. These scripts can be modified to define a default configuration file.

On Windows it is possible to run the script assocXMLJaxe.bat to associate the ".xml" extension to Jaxe. This lets you open XML files directly by double-clicking on them. This script only works if you have the rights to change file associations, so you have to be an administrator.

On MacOS X you can choose Jaxe rather than another program to open an XML file with a double-click by choosing the "Get Info" menu for an XML file, choosing Jaxe in "Open with", and clicking on "Change all" so that all XML files open with it.

It is also possible to launch Jaxe with the scripts jaxe.bat and jaxe.sh, by adding the name of a file to open, for instance by typing ./jaxe.sh test.xml.

Jaxe loads XML files in memory, and it can be difficult when they contain lots of large images. It is possible to increase the memory alloted to Jaxe, depending on the OS:

Jaxe uses by default the OS language, but only French English and German have so far been defined. If the OS is using another language, Jaxe is using French. To change the language used, just add the option -Duser.language=xx after the command java in the scripts, or as the value for the Info.plist key VMOptions on MacOS X. xx is a code corresponding to the language, for instance en for English.


Using Jaxe

Configuration files

At startup, Jaxe opens a new XML document with the default configuration if there is only one configuration file. If there is more than one, a dialog is displayed to choose a configuration file corresponding to an XML language. To check that the XML language in an opened document is the one you want to use, just look at the menus: the elements menubar is located under Jaxe menus (which are on top of the screen on MacOS). If it is not the right language, choose a configuration file with the Open configuration... menu. When an XML file is opened, Jaxe is automatically using the configuration file corresponding to its XML language (when it exists).

Jaxe includes example configuration files for XHTML strict, simplified Docbook, and an XML language for courses (in French). Your administrator has normally prepared another configuration file for the XML language you will use.

Elements display

XML elements are often displayed with a start tag whose name is followed by a >, and an end tag whose name is preceded by a <. For instance, a date can be displayed like that: startdate.gif17/3/2003enddate.gif

Some elements are displayed in another way, for instance tables or elements representing images which can be displayed directly with the image.

Elements insertion

When a configuration file is opened, Jaxe prepares a new document, and automatically inserts the root element (when XML documents have only one root element). The menubar corresponds to the elements in the XML language, and can be used to insert elements. Another way to insert elements is the insertion panel, which appears on the left of the text area. It gives a list of the elements that can be inserted in the text where the cursor is. This list can also be obtained with the contextual menu, which is opened on the Mac with a control-click, or with a right click with a multi-button mouse. It can also be displayed by typing cmd-D (on a Mac) or ctrl-D (Linux/Windows), in order to avoid moving the hands off the keyboard.

It is also possible to insert an element around a text or a set of elements already entered. This is done by selecting this set, and inserting the element as would be done normally.

tabs.png

Elements removing

To remove an element, place the cursor after one of the tags (or another graphic object if the element is not displayed with start and end tags) and press the delete key. Be careful, this deletes the whole element, with everything inside ! In case of catastrophe, do not forget the cancel menu.

Attributes

Some elements have attributes (i.e. a set of name/value strings). When a new element with attributes is inserted, a dialogue is displayed to choose the attribute values. To change them later, just click on one of the tags, or place the cursor within the element and look at the Attributes panel. Optional attributes have a name in green, while required attributes are in red.

attributes.png

Images

Many XML languages have elements corresponding to images. With these XML languages, it is possible to paste an image in Jaxe, which creates automatically the image file in the same directory as the XML file, and creates an XML element with the reference to the new image file. The attributes dialogue for image elements has two more buttons, Select a file... and Copy a file.... These buttons are used to select a file and (with the copy button) to copy the image file near the XML file. It is better in general to avoid absolute references to files, such as /Users/toto/x.gif, and to use paths relative to the directory containing the XML file instead. It is good to create a directory for each XML file, and to create a directory inside to contain the image files referenced by the XML file. The reference to the image file then becomes images/x.gif.

file.png

Equations

Jaxe features a simple equation editor, to easily insert and modify equations. It opens with elements corresponding to equations. The editor has two areas: one at the bottom, where the equation is written as simple text, and one at the top, where the the graphic representation is displayed bit by bit. For instance, when sqrt(2)/3 is typed, the equation equation1.png is displayed. The editor syntax is described in a document.

editeureq.png

Spell checking

Jaxe includes the Jazzy spell checker. Before using it, make sure you have downloaded a dictionary and moved it in the dicos directory. The British English dictionary is made up of two files, British.dico and British.phon. Then, select a dictionary with the preferences by choosing the .dico file. You can then use the Spelling... menu in the Edition menu.

spelling.png

Displaying source code

It is possible to display the XML file source code, as it will be saved, with the XML source menu. The XML source window is not editable so as to avoid update problems.

Validation

Jaxe creates valid XML files, but it is possible to prepare an XML file that is not yet valid (because a required element has not yet been added, in which case the parent element is displayed in orange), or to open an invalid file. In this case, it is possible to start a validation, which is done based on the XML schema (the validation is not useful when the simplified syntax has been used to define the language). This can be done with the Validation menu. When there are errors, they are displayed in a list, and a click on an error shows the location in the XML source code.

HTML preview

An HTML preview can be created if a stylesheet has been created for the XML language. The preview is generated with the HTML Window menu. It is displayed within Jaxe, but not necessarily well if CSS is used (Java Swing is only able to display HTML 3 so far !). So, it may be necessary to open the HTML file with a web browser, which is done easily with a button on the HTML window after the web browser has been selected in the preferences.


Preferences

preferences.png

Default panels

It is possible to choose which panel will be visible on the left of the XML window.

Web browser

It is the browser launched when the "Browser" button is clicked on in the HTML preview window. When the Select button is clicked, or when the "Browser" button is clicked for the first time, a dialog opens to ask for the location of the browser program on the hard disk. It is for instance usually in the "Applications" folder on MacOS X, or in the "Program Files" folder on Windows.

Perserve indentations

This option can be used to preserve all spaces in the XML document, and in particular indentations for XML elements. By default, Jaxe automatically deletes all the spaces used for indentation, which is not a problem when a document is always edited with Jaxe (because indentations are displayed in the XML window), but can be a problem when a document can also be edited with a different XML editor.

Validation icon

This option displays an icon on tags to show if an element is valid or not. An element can be invalid when it requires for instance several sub-elements and not all of them have been inserted.

Dictionary

A certain number of dictionaries can be downloaded for Jaxe. They should be placed in the dicos directory in Jaxe's directory. The file with the .dico extension corresponding to the dictionary to use can then be selected.