473,804 Members | 2,946 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Question regarding the inner workings of AurigaDoc

Hi,

I'm currently looking into AurigaDoc (aurigadoc.sour ceforge.net) and it
seems like this documentation software is poorly documented itself :)
The program can create various output formats using XSLT and a CSS if
you write your document in a specific AurigaDoc XML syntax.

As I'm pretty new to XML and the software commonly used to process it I
wondered if somebody could tell me which part of the program actually
does the XML to OUTPUTFORMAT thing.

I googled alot, but so far I haven't found out much. My best guess is
that xerces (http://xerces.apache.org/) is used to do the actual
conversion to html. If other formats like PDF are requested as output,
xerces will convert the AurigaDocXML to FO and FOP will be used to
create a PDF from the FO. Is this right, or am I completely on the wrong
track?
(The xerces website was pretty confusing to me, and wikipedia had little
info about it, too.)

Here's a list of technologies used by AurigaDoc (as stated on their
website): Xerces, Xalan, FOP, JFOR, Java Help 2.0, Java Mail API, Steady
State Software's CSS2 Parser

Thanks for reading. Please be kind, English isn't my primary language :)

(BTW: My first usenet post, hope thunderbird is configured right)
Apr 11 '07 #1
3 1743
As I'm pretty new to XML and the software commonly used to process it I
wondered if somebody could tell me which part of the program actually
does the XML to OUTPUTFORMAT thing.
The simple answer is "Xalan". But let's take a quick look at how it fits
together with some of the other layers:

Xerces is a parser/serializaer package. It's used to read XML into a
format programs can use (DOM, SAX, or Xerces' own
internal-but-documented events), to validate XML against DTDs or
Schemas, and to convert from one of those programmatic forms back to XML
syntax. Xerces implements the JAXP parser APIs as well.

Xalan is the Apache XSLT processor. It generally uses Xerces to handle
input and output and spends its own effort on understanding and
executing the transformation described by the stylesheet. Xalan
implements the JAXP/TRAX transformation APIs.

FOP is the Apache XSL-FO processor. Its job is to take XSL-FO
page-layout markup (typically generated via a stylesheet transformation)
and render that into PDFs and similar exact-image representations .

I haven't used the other modules. Some of them are self-evident
(presumably the CSS2 tool is being used because AurigaDoc wants to
process CSS locally, rather than relying on CSS processing in a
browser). A websearch should quickly find documentation on the others --
for example, Google's first result on JFOR tells us that it is a
"FO-to-RTF converter", which would mean it's similar to FOP but outputs
a different file format.
Thanks for reading. Please be kind, English isn't my primary language :)
There's no need to apologise. Your written English is better than some
of the posts we've seen from native speakers!

--
() ASCII Ribbon Campaign | Joe Kesselman
/\ Stamp out HTML e-mail! | System architexture and kinetic poetry
Apr 11 '07 #2
Thank you very much!

I don't know why, but I completely forgot about looking up information
about Xalan. It would have taken hours to figure this out on my own! :)
I'm still not 100% sure if I understood everything you told me, but
thanks to you I'm not completely stuck anymore and can have a go again
at understanding AurigaDoc and XML technologies in general.

Thanks again and greetings from Germany :)

As I'm pretty new to XML and the software commonly used to process it I
wondered if somebody could tell me which part of the program actually
does the XML to OUTPUTFORMAT thing.

The simple answer is "Xalan". But let's take a quick look at how it fits
together with some of the other layers:

Xerces is a parser/serializaer package. It's used to read XML into a
format programs can use (DOM, SAX, or Xerces' own
internal-but-documented events), to validate XML against DTDs or
Schemas, and to convert from one of those programmatic forms back to XML
syntax. Xerces implements the JAXP parser APIs as well.

Xalan is the Apache XSLT processor. It generally uses Xerces to handle
input and output and spends its own effort on understanding and
executing the transformation described by the stylesheet. Xalan
implements the JAXP/TRAX transformation APIs.

FOP is the Apache XSL-FO processor. Its job is to take XSL-FO
page-layout markup (typically generated via a stylesheet transformation)
and render that into PDFs and similar exact-image representations .

I haven't used the other modules. Some of them are self-evident
(presumably the CSS2 tool is being used because AurigaDoc wants to
process CSS locally, rather than relying on CSS processing in a
browser). A websearch should quickly find documentation on the others --
for example, Google's first result on JFOR tells us that it is a
"FO-to-RTF converter", which would mean it's similar to FOP but outputs
a different file format.
>Thanks for reading. Please be kind, English isn't my primary language :)

There's no need to apologise. Your written English is better than some
of the posts we've seen from native speakers!
Apr 11 '07 #3
My turn to apologise:
Xerces is a parser/serializaer package.
Of course that should have been "serializer ".
--
Joe Kesselman / CAUTION: engage mind before putting fingers in gear
Apr 11 '07 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
4497
by: Tom Jones | last post by:
I need to use php's native mssql api in order to read the meta data from an entire DBMS ... I have sql server 2000 up and running and using the provided browsing tools poked around and found that the databases in the system were listed under a database named "master" in a table named "sysdatabases" ... there is a "syscolumns" table there too but it looks like i need specific info about the architecture of sql server's inner workings to use...
34
2648
by: Michael Foord | last post by:
I'd like to formalise slightly the license I release my projects under. At the moment it's 'free to use, modify, distribute and relicense'. This is basically fine as I don't want t oprevent people using my work in commercial settings - but I would like to retain the right to be identified as the author. I'd also like to prevent people selling derivative works where my stuff forms the substantial part of the poduct. I'd prefer to use an...
1
1242
by: rodchar | last post by:
hey all, i was reading an article on Testing.Net Application Blocks and I came across a phrase in the article: White box testing and i think i missed the class on this terminology. and this is not the only place i see this type of phrase. the term black box seems to come up too. what does this mean?
13
1980
by: Vincezo Ciaschini | last post by:
Supposing you have the following declaration in a header file: -- head.h -- struct s { int c; char v; #if defined(__cplusplus) s(); s(double); method1(int);
6
2340
by: Mortrek | last post by:
Hi. We have a .NET programmer using our SQL server. The database is roughly 8GB at this point, full of all of our inventory, payroll data, etc. for running reports. This is on a dual-xeon 3.2Ghz, 4GB DDR, 3x15k RPM SCSI RAID-5, gigabit ethernet, etc server. Yet, every once in a while it slows to an absolute crawl. IIS6 is the front-end, and its limited to a web garden with 4 threads. However, sometimes only 1 processor does any real...
1
300
by: Henry | last post by:
Hi. I've posted this at another discussion board(WebControls) and I was wondering if anyone knows or could help me in the right path to solving my problem. Thanks. Henry (Here is the original post) ------------------------------------- I have a question regarding freeze header on datagrid when scrolling. I've found this site
7
1258
by: Crirus | last post by:
I have this game application: A top clas called Game A class called Player. Game class have lots of instances of Player Player have lots of instances of Unit, wich is base clas for every unit a player create. The same for Building.. etc At a certain point, I have to run ... say a battle calculation and take in account all this objects...
2
2986
by: Gary Paris | last post by:
I have two datasets. The first dataset is a selection of Contact information with a field from a Codes table and a field from a Staff table. When I run the Query, everything is OK. Dataset gets filled and I display data in the Datagrid. Life is good. I then want to fill another dataset with Events records. Regarding the Contact and Events tables, the Contact key is "sysid". The foreign key in the Events table is "con_id".
9
1664
by: Silas Justiniano | last post by:
Hello guys. I know just the basics of C... I want to learn it more. Friends told me: you need your own project, and I think the same. Everything I was thinking to do, already exists, memory reading, compression algorithms, etc... so I was think a simple .dll/.so reader. For example, the user wants to know what functions that .dll or .so provides... So I "read" the file and show this. Is it possible? Do you have better recommendation?
0
9571
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10561
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10302
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
10069
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9132
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7608
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5505
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5639
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
3
2976
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.