├── .gitignore ├── 3rd ├── .gitignore ├── TMakefile.pro ├── antlr │ ├── 2.7.1 │ │ ├── NMakefile │ │ ├── NMakefile.objs │ │ ├── TMakefile.pro │ │ ├── _patches │ │ │ ├── AST.patch │ │ │ ├── CharScanner_stdio_import.patch │ │ │ ├── Token.patch │ │ │ ├── linux │ │ │ │ └── include.stdlib.h.patch │ │ │ └── ltconfig_verfiy_autoreconf.patch │ │ ├── install.bat │ │ └── install.sh │ ├── TMakefile.pro │ ├── antlr-default.t │ ├── antlr-defaults.pro │ ├── antlr-unix.pro │ └── antlr-win32.pro ├── aspell │ ├── 0.50.5 │ │ ├── GNUmakefile │ │ ├── Makefile.objs │ │ ├── NMakefile │ │ ├── TMakefile.pro │ │ └── _patches │ │ │ ├── fstream.hpp.patch │ │ │ ├── getdata.cpp.patch │ │ │ ├── linux │ │ │ ├── include.stdlib.h.patch │ │ │ └── readonly_ws.cpp.patch │ │ │ ├── phonet.cpp.patch │ │ │ ├── unix │ │ │ └── patch-dirs.h │ │ │ └── win32 │ │ │ └── patch-win32 │ ├── MANIFEST.aspell │ ├── TMakefile.pro │ ├── aspell-default.t │ ├── aspell-defaults.pro │ ├── install.bat │ ├── install.sh │ ├── lib │ │ └── aspell │ │ │ ├── ASPELL-EN-COPYING │ │ │ ├── american-w-accents.alias │ │ │ ├── american.alias │ │ │ ├── british-w-accents.alias │ │ │ ├── british.alias │ │ │ ├── canadian-w-accents.alias │ │ │ ├── canadian.alias │ │ │ ├── en.multi │ │ │ ├── en_CA-w-accents.multi │ │ │ ├── en_CA.multi │ │ │ ├── en_GB-w-accents.multi │ │ │ ├── en_GB.multi │ │ │ ├── en_US-w-accents.multi │ │ │ ├── en_US.multi │ │ │ ├── english.alias │ │ │ ├── i386 │ │ │ ├── .aspell_dictdir │ │ │ ├── en-only.rws │ │ │ ├── en_CA-only.rws │ │ │ ├── en_GB-only.rws │ │ │ └── en_US-only.rws │ │ │ └── ppc │ │ │ ├── .aspell_dictdir │ │ │ ├── en-only.rws │ │ │ ├── en_CA-only.rws │ │ │ ├── en_GB-only.rws │ │ │ └── en_US-only.rws │ └── share │ │ └── aspell │ │ ├── ASCII.dat │ │ ├── dvorak.kbd │ │ ├── en.dat │ │ ├── en_phonet.dat │ │ ├── iso8859-1.dat │ │ ├── iso8859-10.dat │ │ ├── iso8859-13.dat │ │ ├── iso8859-14.dat │ │ ├── iso8859-15.dat │ │ ├── iso8859-2.dat │ │ ├── iso8859-3.dat │ │ ├── iso8859-4.dat │ │ ├── iso8859-5.dat │ │ ├── iso8859-6.dat │ │ ├── iso8859-7.dat │ │ ├── iso8859-8.dat │ │ ├── iso8859-9.dat │ │ ├── koi8-f.dat │ │ ├── koi8-r.dat │ │ ├── koi8-u.dat │ │ ├── standard.kbd │ │ └── viscii.dat ├── bin │ └── .empty-stub ├── build ├── build.bat ├── buildopts ├── buildopts.bat ├── checked_build.bat ├── checked_build.sh ├── configure ├── configure.bat ├── defaults.pro ├── dita-ot │ ├── 1.4 │ │ ├── TMakefile.pro │ │ ├── _patches │ │ │ └── patch-aa │ │ ├── install.bat │ │ └── install.sh │ ├── CatalogManager.properties │ ├── MANIFEST │ ├── TMakefile.pro │ ├── dita-ot-default.t │ ├── dita-ot-defaults.pro │ ├── dita2html.cmd │ └── dita2html.sh ├── docbook │ ├── 1.68.1 │ │ ├── TMakefile.pro │ │ ├── _patches │ │ │ └── patch-docbook.xsl │ │ ├── install.bat │ │ └── install.sh │ ├── MANIFEST.docbook │ ├── TMakefile.pro │ ├── docbook-default.t │ ├── docbook-defaults.pro │ ├── docbook2html.cmd │ └── docbook2html.sh ├── doxygen │ ├── 1.5.1 │ │ ├── TMakefile.pro │ │ └── _patches │ │ │ ├── sunos │ │ │ └── patch-configure │ │ │ └── win32 │ │ │ └── patch-make.pl │ ├── TMakefile.pro │ ├── doxygen-default.t │ ├── doxygen-defaults.pro │ ├── install.bat │ └── install.sh ├── functions ├── iconv │ ├── 1.11 │ │ ├── TMakefile.pro │ │ └── _patches │ │ │ └── win32 │ │ │ └── patch-Makefiles │ ├── MANIFEST.iconv │ ├── TMakefile.pro │ ├── iconv-default.t │ ├── iconv-defaults.pro │ ├── iconv-unix.pro │ ├── iconv-win32.pro │ ├── install.bat │ └── install.sh ├── instwrapper.pl ├── jade │ ├── ALL.pro │ ├── COPYING │ ├── FILES │ ├── MREP │ ├── README │ ├── TMakefile.pro │ ├── VERSION │ ├── all │ │ ├── README │ │ └── all.dsp │ ├── config │ │ ├── aclocal.m4 │ │ ├── config.guess │ │ ├── config.sub │ │ ├── configure.in │ │ ├── install.sh │ │ ├── ltconfig │ │ └── ltmain.sh │ ├── configure │ ├── doc │ │ ├── Makefile │ │ ├── archform.htm │ │ ├── build.htm │ │ ├── catalog │ │ ├── catalog.htm │ │ ├── charset.htm │ │ ├── features.htm │ │ ├── generic.htm │ │ ├── ideas.htm │ │ ├── index.htm │ │ ├── new.htm │ │ ├── nsgmls.htm │ │ ├── sgmldecl.htm │ │ ├── sgmlnorm.htm │ │ ├── sgmlsout.htm │ │ ├── spam.htm │ │ ├── spent.htm │ │ ├── sx.htm │ │ ├── sysdecl.htm │ │ ├── sysid.htm │ │ └── xml.htm │ ├── dsssl │ │ ├── Makefile.jadetex │ │ ├── catalog │ │ ├── demo.dsl │ │ ├── demo.sgm │ │ ├── dsssl.dtd │ │ ├── fot.dtd │ │ ├── jadetex.dtx │ │ ├── jadetex.ini │ │ ├── jadetex.ins │ │ ├── pdfjadetex.ini │ │ └── style-sheet.dtd │ ├── generic │ │ ├── EventGenerator.h │ │ ├── ParserEventGeneratorKit.h │ │ └── SGMLApplication.h │ ├── grove │ │ ├── LocNode.cxx │ │ ├── LocNode.h │ │ ├── MREP │ │ ├── MakeMake │ │ ├── Makefile │ │ ├── Node.cxx │ │ ├── Node.h │ │ ├── TMakefile.pro │ │ └── grove.dsp │ ├── groveoa │ │ ├── CGroveBuilder.cxx │ │ ├── CGroveBuilder.h │ │ ├── GroveBuilder.rgs │ │ ├── GroveNode.cxx │ │ ├── GroveNode.h │ │ ├── StdAfx.cxx │ │ ├── StdAfx.h │ │ ├── groveoa.cxx │ │ ├── groveoa.def │ │ ├── groveoa.dsp │ │ ├── groveoa.idl │ │ ├── groveoa.rc │ │ └── resource.h │ ├── install.bat │ ├── install.sh │ ├── jade-default.t │ ├── jade-defaults.pro │ ├── jade │ │ ├── HtmlFOTBuilder.cxx │ │ ├── HtmlFOTBuilder.h │ │ ├── HtmlFOTBuilder_inst.cxx │ │ ├── HtmlFOTBuilder_inst.m4 │ │ ├── HtmlMessages.h │ │ ├── HtmlMessages.msg │ │ ├── HtmlMessages.rc │ │ ├── JadeMessages.h │ │ ├── JadeMessages.msg │ │ ├── JadeMessages.rc │ │ ├── MREP │ │ ├── MakeMake │ │ ├── MakeMake.bak │ │ ├── Makefile │ │ ├── Makefile.bak │ │ ├── Makefile.dep │ │ ├── Makefile.sub │ │ ├── MifFOTBuilder.cxx │ │ ├── MifFOTBuilder.h │ │ ├── MifFOTBuilder_inst.cxx │ │ ├── MifFOTBuilder_inst.m4 │ │ ├── MifMessages.h │ │ ├── MifMessages.msg │ │ ├── MifMessages.rc │ │ ├── RtfFOTBuilder.cxx │ │ ├── RtfFOTBuilder.h │ │ ├── RtfFOTBuilder_inst.cxx │ │ ├── RtfFOTBuilder_inst.m4 │ │ ├── RtfMessages.h │ │ ├── RtfMessages.msg │ │ ├── RtfMessages.rc │ │ ├── RtfOle.cxx │ │ ├── RtfOle.cxx.bak │ │ ├── RtfOle.h │ │ ├── SgmlFOTBuilder.cxx │ │ ├── SgmlFOTBuilder.h │ │ ├── TMakefile.pro │ │ ├── TeXFOTBuilder.cxx │ │ ├── TeXFOTBuilder.h │ │ ├── TeXFOTBuilder_inst.cxx │ │ ├── TeXFOTBuilder_inst.m4 │ │ ├── TeXMessages.h │ │ ├── TeXMessages.msg │ │ ├── TeXMessages.rc │ │ ├── TmpOutputByteStream.h │ │ ├── TransformFOTBuilder.cxx │ │ ├── TransformFOTBuilder.h │ │ ├── TransformFOTBuilder_inst.cxx │ │ ├── TransformFOTBuilder_inst.m4 │ │ ├── jade.cxx │ │ ├── jade.dsp │ │ ├── jade.pro.bak │ │ └── jade.rc │ ├── jadedist │ │ ├── bin-files.txt │ │ ├── files.txt │ │ ├── jadedist.dsp │ │ └── makedist.bat │ ├── jadedoc │ │ ├── TeX.htm │ │ ├── autoconf.htm │ │ ├── copying.txt │ │ ├── dsssl2.htm │ │ ├── jade.htm │ │ ├── mif.htm │ │ └── transform.htm │ ├── japan.sgmldecl │ ├── lib │ │ └── .empty-stub │ ├── libsp │ │ ├── Allocator.cxx │ │ ├── ArcEngine.cxx │ │ ├── ArcEngineMessages.h │ │ ├── ArcEngineMessages.msg │ │ ├── ArcEngineMessages.rc │ │ ├── ArcProcessor.h │ │ ├── Attribute.cxx │ │ ├── Big5CodingSystem.cxx │ │ ├── CatalogEntry.h │ │ ├── CatalogMessages.h │ │ ├── CatalogMessages.msg │ │ ├── CatalogMessages.rc │ │ ├── CharsetDecl.cxx │ │ ├── CharsetInfo.cxx │ │ ├── CharsetRegistry.cxx │ │ ├── CmdLineApp.cxx │ │ ├── CmdLineAppMessages.h │ │ ├── CmdLineAppMessages.msg │ │ ├── CmdLineAppMessages.rc │ │ ├── CodingSystem.cxx │ │ ├── CodingSystemKit.cxx │ │ ├── ConsoleOutput.cxx │ │ ├── ContentState.cxx │ │ ├── ContentToken.cxx │ │ ├── DescriptorManager.cxx │ │ ├── Dtd.cxx │ │ ├── EUCJPCodingSystem.cxx │ │ ├── ElementType.cxx │ │ ├── Entity.cxx │ │ ├── EntityApp.cxx │ │ ├── EntityCatalog.cxx │ │ ├── EntityDecl.cxx │ │ ├── EntityManager.cxx │ │ ├── EntityManagerMessages.h │ │ ├── EntityManagerMessages.msg │ │ ├── EntityManagerMessages.rc │ │ ├── EquivClass.h │ │ ├── ErrnoMessageArg.cxx │ │ ├── ErrorCountEventHandler.cxx │ │ ├── Event.cxx │ │ ├── EventGenerator.cxx │ │ ├── EventQueue.h │ │ ├── ExtendEntityManager.cxx │ │ ├── ExternalId.cxx │ │ ├── Fixed2CodingSystem.cxx │ │ ├── GMakefile │ │ ├── GenericEventHandler.cxx │ │ ├── Group.cxx │ │ ├── Group.h │ │ ├── Hash.cxx │ │ ├── IListBase.cxx │ │ ├── Id.cxx │ │ ├── Id.h │ │ ├── IdentityCodingSystem.cxx │ │ ├── InputSource.cxx │ │ ├── InternalInputSource.cxx │ │ ├── Link.cxx │ │ ├── LinkProcess.cxx │ │ ├── LiteralStorage.cxx │ │ ├── Location.cxx │ │ ├── Lpd.cxx │ │ ├── LpdEntityRef.h │ │ ├── MakeMake │ │ ├── Makefile │ │ ├── Makefile.lt │ │ ├── Makefile.objs │ │ ├── Makefile.sub │ │ ├── Markup.cxx │ │ ├── MarkupScan.h │ │ ├── Message.cxx │ │ ├── MessageArg.cxx │ │ ├── MessageEventHandler.cxx │ │ ├── MessageFormatter.cxx │ │ ├── MessageFormatterMessages.h │ │ ├── MessageFormatterMessages.msg │ │ ├── MessageFormatterMessages.rc │ │ ├── MessageReporter.cxx │ │ ├── MessageReporterMessages.h │ │ ├── MessageReporterMessages.msg │ │ ├── MessageReporterMessages.rc │ │ ├── MessageTable.cxx │ │ ├── ModeInfo.cxx │ │ ├── ModeInfo.h │ │ ├── Mutex.h │ │ ├── NameToken.h │ │ ├── Notation.cxx │ │ ├── NotationStorage.cxx │ │ ├── NumericCharRefOrigin.cxx │ │ ├── NumericCharRefOrigin.h │ │ ├── OffsetOrderedList.cxx │ │ ├── OffsetOrderedList.h │ │ ├── OpenElement.cxx │ │ ├── OutputByteStream.cxx │ │ ├── OutputCharStream.cxx │ │ ├── OutputState.cxx │ │ ├── OutputState.h │ │ ├── Param.cxx │ │ ├── Param.h │ │ ├── Parser.cxx │ │ ├── Parser.h │ │ ├── ParserApp.cxx │ │ ├── ParserAppMessages.h │ │ ├── ParserAppMessages.msg │ │ ├── ParserAppMessages.rc │ │ ├── ParserEventGeneratorKit.cxx │ │ ├── ParserMessages.cxx │ │ ├── ParserMessages.h │ │ ├── ParserMessages.msg │ │ ├── ParserMessages.rc │ │ ├── ParserOptions.cxx │ │ ├── ParserState.cxx │ │ ├── ParserState.h │ │ ├── Partition.cxx │ │ ├── Partition.h │ │ ├── PosixStorage.cxx │ │ ├── PosixStorageMessages.h │ │ ├── PosixStorageMessages.msg │ │ ├── PosixStorageMessages.rc │ │ ├── Priority.h │ │ ├── Recognizer.cxx │ │ ├── Recognizer.h │ │ ├── RewindStorageObject.cxx │ │ ├── SGMLApplication.cxx │ │ ├── SJISCodingSystem.cxx │ │ ├── SOEntityCatalog.cxx │ │ ├── Sd.cxx │ │ ├── SdFormalError.h │ │ ├── SdText.cxx │ │ ├── SearchResultMessageArg.cxx │ │ ├── SgmlParser.cxx │ │ ├── ShortReferenceMap.cxx │ │ ├── SrInfo.h │ │ ├── StdioStorage.cxx │ │ ├── StdioStorageMessages.h │ │ ├── StdioStorageMessages.msg │ │ ├── StdioStorageMessages.rc │ │ ├── StorageManager.cxx │ │ ├── StorageObjectPosition.h │ │ ├── StringVectorMessageArg.cxx │ │ ├── StringVectorMessageArg.h │ │ ├── Syntax.cxx │ │ ├── TMakefile.pro │ │ ├── Text.cxx │ │ ├── TokenMessageArg.cxx │ │ ├── TokenMessageArg.h │ │ ├── TranslateCodingSystem.cxx │ │ ├── Trie.h │ │ ├── TrieBuilder.cxx │ │ ├── TrieBuilder.h │ │ ├── TypeId.cxx │ │ ├── URLStorage.cxx │ │ ├── URLStorageMessages.h │ │ ├── URLStorageMessages.msg │ │ ├── URLStorageMessages.rc │ │ ├── UTF8CodingSystem.cxx │ │ ├── Undo.cxx │ │ ├── Undo.h │ │ ├── UnicodeCodingSystem.cxx │ │ ├── UnivCharsetDesc.cxx │ │ ├── Win32CodingSystem.cxx │ │ ├── WinApp.cxx │ │ ├── WinInetStorage.cxx │ │ ├── WinInetStorageMessages.h │ │ ├── WinInetStorageMessages.msg │ │ ├── WinInetStorageMessages.rc │ │ ├── XMLCodingSystem.cxx │ │ ├── app_inst.cxx │ │ ├── app_inst.m4 │ │ ├── arc_inst.cxx │ │ ├── arc_inst.m4 │ │ ├── assert.cxx │ │ ├── big5.h │ │ ├── entmgr_inst.cxx │ │ ├── entmgr_inst.m4 │ │ ├── events.h │ │ ├── gb2312.h │ │ ├── instmac.m4 │ │ ├── iso646-jis.h │ │ ├── iso8859-15.h │ │ ├── iso8859-2.h │ │ ├── iso8859-3.h │ │ ├── iso8859-4.h │ │ ├── iso8859-5.h │ │ ├── iso8859-6.h │ │ ├── iso8859-7.h │ │ ├── iso8859-8.h │ │ ├── iso8859-9.h │ │ ├── jis0201.h │ │ ├── jis0208.h │ │ ├── jis0212.h │ │ ├── koi8-r.h │ │ ├── ksc5601.h │ │ ├── lib.dsp │ │ ├── lib.rc │ │ ├── memmove.c │ │ ├── mkversion.pl │ │ ├── parseAttribute.cxx │ │ ├── parseCommon.cxx │ │ ├── parseDecl.cxx │ │ ├── parseInstance.cxx │ │ ├── parseMode.cxx │ │ ├── parseParam.cxx │ │ ├── parseSd.cxx │ │ ├── parser_inst.cxx │ │ ├── parser_inst.m4 │ │ ├── splib.cxx │ │ ├── splib.h │ │ ├── splibpch.h │ │ ├── strerror.c │ │ ├── token.h │ │ ├── version.h │ │ ├── windows-1250.h │ │ ├── windows-1251.h │ │ ├── windows-1252.h │ │ ├── windows-1253.h │ │ ├── windows-1254.h │ │ ├── windows-1255.h │ │ ├── windows-1256.h │ │ ├── windows-1257.h │ │ ├── windows-1258.h │ │ ├── xentmgr_inst.cxx │ │ └── xentmgr_inst.m4 │ ├── msggen.pl │ ├── nsgmls │ │ ├── MREP │ │ ├── Makefile │ │ ├── NsgmlsMessages.h │ │ ├── NsgmlsMessages.msg │ │ ├── NsgmlsMessages.rc │ │ ├── RastEventHandler.cxx │ │ ├── RastEventHandler.h │ │ ├── RastEventHandlerMessages.h │ │ ├── RastEventHandlerMessages.msg │ │ ├── RastEventHandlerMessages.rc │ │ ├── SgmlsEventHandler.cxx │ │ ├── SgmlsEventHandler.h │ │ ├── StringSet.cxx │ │ ├── StringSet.h │ │ ├── TMakefile.pro │ │ ├── nsgmls.cxx │ │ ├── nsgmls.dsp │ │ ├── nsgmls.rc │ │ ├── nsgmls_inst.cxx │ │ └── nsgmls_inst.m4 │ ├── pro │ │ ├── install │ │ ├── install-c │ │ ├── japp.t │ │ ├── jcommon.t │ │ ├── jlib.t │ │ ├── make-apps │ │ └── makeMakefiles │ ├── pubtext │ │ ├── HTML32.dcl │ │ ├── HTML32.dtd │ │ ├── HTML32.soc │ │ ├── HTML4-f.dtd │ │ ├── HTML4-s.dtd │ │ ├── HTML4.dcl │ │ ├── HTML4.dtd │ │ ├── HTML4.soc │ │ ├── HTMLlat1.ent │ │ ├── HTMLspec.ent │ │ ├── HTMLsym.ent │ │ ├── ISOlat1.ent │ │ ├── ISOlat1.sgm │ │ ├── html-1.dtd │ │ ├── html-1s.dtd │ │ ├── html-s.dtd │ │ ├── html.dcl │ │ ├── html.dtd │ │ ├── html.soc │ │ ├── xml.dcl │ │ └── xml.soc │ ├── sgmlnorm │ │ ├── MREP │ │ ├── Makefile │ │ ├── Makefile.dep │ │ ├── Makefile.sub │ │ ├── SGMLGenerator.cxx │ │ ├── SGMLGenerator.h │ │ ├── sgmlnorm.cxx │ │ └── sgmlnorm.dsp │ ├── sp │ │ ├── Allocator.h │ │ ├── ArcEngine.h │ │ ├── Attribute.h │ │ ├── Attributed.h │ │ ├── Big5CodingSystem.h │ │ ├── Boolean.h │ │ ├── CharMap.cxx │ │ ├── CharMap.h │ │ ├── CharsetDecl.h │ │ ├── CharsetInfo.h │ │ ├── CharsetRegistry.h │ │ ├── CmdLineApp.h │ │ ├── CodingSystem.h │ │ ├── CodingSystemKit.h │ │ ├── ConsoleOutput.h │ │ ├── ContentState.h │ │ ├── ContentToken.h │ │ ├── CopyOwner.cxx │ │ ├── CopyOwner.h │ │ ├── DescriptorManager.h │ │ ├── Dtd.h │ │ ├── EUCJPCodingSystem.h │ │ ├── ElementType.h │ │ ├── Entity.h │ │ ├── EntityApp.h │ │ ├── EntityCatalog.h │ │ ├── EntityDecl.h │ │ ├── EntityManager.h │ │ ├── ErrnoMessageArg.h │ │ ├── ErrorCountEventHandler.h │ │ ├── Event.h │ │ ├── EventsWanted.h │ │ ├── ExtendEntityManager.h │ │ ├── ExternalId.h │ │ ├── ExternalIdResolver.h │ │ ├── Fixed2CodingSystem.h │ │ ├── GenericEventHandler.h │ │ ├── Hash.h │ │ ├── HashTable.cxx │ │ ├── HashTable.h │ │ ├── HashTableItemBase.cxx │ │ ├── HashTableItemBase.h │ │ ├── IList.h │ │ ├── IListBase.h │ │ ├── IListIter.h │ │ ├── IListIterBase.h │ │ ├── IQueue.cxx │ │ ├── IQueue.h │ │ ├── ISet.cxx │ │ ├── ISet.h │ │ ├── ISetIter.h │ │ ├── IdentityCodingSystem.h │ │ ├── InputSource.h │ │ ├── InternalInputSource.h │ │ ├── Link.h │ │ ├── LinkProcess.h │ │ ├── List.cxx │ │ ├── List.h │ │ ├── ListIter.h │ │ ├── LiteralStorage.h │ │ ├── Location.h │ │ ├── Lpd.h │ │ ├── Markup.h │ │ ├── Message.h │ │ ├── MessageArg.h │ │ ├── MessageBuilder.h │ │ ├── MessageEventHandler.h │ │ ├── MessageFormatter.h │ │ ├── MessageReporter.h │ │ ├── MessageTable.h │ │ ├── Mode.h │ │ ├── NCVector.h │ │ ├── NCVector.sed │ │ ├── Named.h │ │ ├── NamedResource.h │ │ ├── NamedResourceTable.h │ │ ├── NamedTable.h │ │ ├── Notation.h │ │ ├── NotationStorage.h │ │ ├── OpenElement.h │ │ ├── Options.cxx │ │ ├── Options.h │ │ ├── OutputByteStream.h │ │ ├── OutputCharStream.h │ │ ├── Owner.cxx │ │ ├── Owner.h │ │ ├── OwnerTable.cxx │ │ ├── OwnerTable.h │ │ ├── ParserApp.h │ │ ├── ParserOptions.h │ │ ├── PointerTable.cxx │ │ ├── PointerTable.h │ │ ├── PosixStorage.h │ │ ├── Ptr.cxx │ │ ├── Ptr.h │ │ ├── RangeMap.cxx │ │ ├── RangeMap.h │ │ ├── Resource.h │ │ ├── RewindStorageObject.h │ │ ├── SJISCodingSystem.h │ │ ├── SOEntityCatalog.h │ │ ├── Sd.h │ │ ├── SdText.h │ │ ├── SearchResultMessageArg.h │ │ ├── SgmlParser.h │ │ ├── ShortReferenceMap.h │ │ ├── StdioStorage.h │ │ ├── StorageManager.h │ │ ├── StringC.h │ │ ├── StringOf.cxx │ │ ├── StringOf.h │ │ ├── StringResource.h │ │ ├── SubstTable.cxx │ │ ├── SubstTable.h │ │ ├── Syntax.h │ │ ├── Text.h │ │ ├── TranslateCodingSystem.h │ │ ├── TypeId.h │ │ ├── URLStorage.h │ │ ├── UTF8CodingSystem.h │ │ ├── UnicodeCodingSystem.h │ │ ├── UnivCharsetDesc.h │ │ ├── Vector.cxx │ │ ├── Vector.h │ │ ├── Win32CodingSystem.h │ │ ├── WinApp.h │ │ ├── WinInetStorage.h │ │ ├── XMLCodingSystem.h │ │ ├── XcharMap.cxx │ │ ├── XcharMap.h │ │ ├── config.h │ │ ├── constant.h │ │ ├── macros.h │ │ ├── rtti.h │ │ ├── sptchar.h │ │ ├── types.h │ │ └── xnew.h │ ├── spam │ │ ├── CopyEventHandler.cxx │ │ ├── CopyEventHandler.h │ │ ├── Makefile │ │ ├── Makefile.dep │ │ ├── Makefile.sub │ │ ├── MarkupEventHandler.cxx │ │ ├── MarkupEventHandler.h │ │ ├── SpamMessages.h │ │ ├── SpamMessages.msg │ │ ├── SpamMessages.rc │ │ ├── spam.cxx │ │ ├── spam.dsp │ │ ├── spam.rc │ │ ├── spam_inst.cxx │ │ └── spam_inst.m4 │ ├── spent │ │ ├── Makefile │ │ ├── Makefile.dep │ │ ├── Makefile.sub │ │ ├── spent.cxx │ │ └── spent.dsp │ ├── spgrove │ │ ├── GroveApp.cxx │ │ ├── GroveApp.h │ │ ├── GroveBuilder.cxx │ │ ├── GroveBuilder.h │ │ ├── MREP │ │ ├── MakeMake │ │ ├── MakeMake.bak │ │ ├── Makefile │ │ ├── SdNode.cxx │ │ ├── SdNode.h │ │ ├── TMakefile.pro │ │ ├── grove_inst.cxx │ │ ├── grove_inst.m4 │ │ ├── spgrove.dsp │ │ └── threads.h │ ├── style │ │ ├── Collector.cxx │ │ ├── Collector.h │ │ ├── DssslApp.cxx │ │ ├── DssslApp.h │ │ ├── DssslAppMessages.h │ │ ├── DssslAppMessages.msg │ │ ├── DssslAppMessages.rc │ │ ├── DssslSpecEventHandler.cxx │ │ ├── DssslSpecEventHandler.h │ │ ├── ELObj.cxx │ │ ├── ELObj.h │ │ ├── ELObjMessageArg.cxx │ │ ├── ELObjMessageArg.h │ │ ├── EvalContext.h │ │ ├── Expression.cxx │ │ ├── Expression.h │ │ ├── FOTBuilder.cxx │ │ ├── FOTBuilder.h │ │ ├── FlowObj.cxx │ │ ├── FlowObj_inst.cxx │ │ ├── FlowObj_inst.m4 │ │ ├── GroveManager.cxx │ │ ├── GroveManager.h │ │ ├── InheritedC.cxx │ │ ├── Insn.cxx │ │ ├── Insn.h │ │ ├── Insn2.h │ │ ├── Interpreter.cxx │ │ ├── Interpreter.h │ │ ├── InterpreterMessages.cxx │ │ ├── InterpreterMessages.h │ │ ├── InterpreterMessages.msg │ │ ├── InterpreterMessages.rc │ │ ├── MREP │ │ ├── MacroFlowObj.cxx │ │ ├── MacroFlowObj.h │ │ ├── MakeMake │ │ ├── Makefile │ │ ├── Makefile.dep │ │ ├── Makefile.lt │ │ ├── Makefile.sub │ │ ├── NumberCache.cxx │ │ ├── NumberCache.h │ │ ├── Pattern.cxx │ │ ├── Pattern.h │ │ ├── ProcessContext.cxx │ │ ├── ProcessContext.h │ │ ├── ProcessingMode.cxx │ │ ├── ProcessingMode.h │ │ ├── SchemeParser.cxx │ │ ├── SchemeParser.h │ │ ├── SosofoObj.h │ │ ├── Style.cxx │ │ ├── Style.h │ │ ├── StyleEngine.cxx │ │ ├── StyleEngine.h │ │ ├── TMakefile.pro │ │ ├── VM.h │ │ ├── charNames.h │ │ ├── common_inst.cxx │ │ ├── common_inst.m4 │ │ ├── dsssl_ns.h │ │ ├── jade_version.h │ │ ├── primitive.cxx │ │ ├── primitive.h │ │ ├── primitive_inst.cxx │ │ ├── primitive_inst.m4 │ │ ├── sdata.h │ │ ├── style.dsp │ │ ├── style_inst.cxx │ │ ├── style_inst.m4 │ │ ├── style_pch.h │ │ ├── stylelib.cxx │ │ └── stylelib.h │ ├── sunfix.sh │ ├── sx │ │ ├── Makefile │ │ ├── Makefile.dep │ │ ├── Makefile.sub │ │ ├── SxMessages.h │ │ ├── SxMessages.msg │ │ ├── SxMessages.rc │ │ ├── XmlOutputEventHandler.cxx │ │ ├── XmlOutputEventHandler.h │ │ ├── XmlOutputMessages.h │ │ ├── XmlOutputMessages.msg │ │ ├── XmlOutputMessages.rc │ │ ├── sx.cxx │ │ ├── sx.dsp │ │ ├── sx.rc │ │ ├── sx_inst.cxx │ │ └── sx_inst.m4 │ └── unicode │ │ ├── catalog │ │ ├── demo.sgm │ │ ├── gensyntax.pl │ │ ├── unicode.sd │ │ └── unicode.syn ├── jdk │ ├── 1.6.0 │ │ ├── Makefile.common │ │ ├── TMakefile.pro │ │ ├── jre.excludes.unix │ │ └── jre.excludes.win32 │ ├── TMakefile.pro │ ├── install.bat │ ├── install.sh │ ├── java-included.t │ ├── java-system.t │ ├── jdk-default.t │ └── jdk-defaults.pro ├── lib │ └── .empty-stub ├── libxml-python │ ├── MANIFEST │ ├── ModMakefile │ ├── TMakefile.pro │ ├── install.bat │ └── libxml-python.t ├── libxml │ ├── 2.6.27 │ │ ├── TMakefile.pro │ │ └── _patches │ │ │ ├── nanohttp.c.patch │ │ │ └── win32 │ │ │ ├── Makefile.msvc.patch │ │ │ └── win32config.h.patch │ ├── MANIFEST.xml2 │ ├── TMakefile.pro │ ├── install.bat │ ├── install.sh │ ├── libxml-default.t │ ├── libxml-defaults.pro │ ├── libxml-unix.pro │ └── libxml-win32.pro ├── pyqt │ ├── 4.4.4 │ │ ├── TMakefile.pro │ │ └── _patches │ │ │ ├── darwin │ │ │ └── patch-configure.py │ │ │ ├── patch-ac │ │ │ ├── patch-ad │ │ │ └── win32 │ │ │ ├── patch-configure.py │ │ │ ├── patch-python.pro-in │ │ │ └── patch-qpydesigner.pro │ ├── 4.5.4 │ │ ├── TMakefile.pro │ │ └── _patches │ │ │ ├── darwin │ │ │ └── patch-configure.py │ │ │ ├── patch-ac │ │ │ ├── patch-ad │ │ │ └── win32 │ │ │ ├── patch-configure.py │ │ │ └── patch-python.pro-in │ ├── MANIFEST.PyQt4 │ ├── TMakefile.pro │ ├── install.bat │ ├── install.sh │ ├── pyqt-default.t │ └── pyqt-defaults.pro ├── python │ ├── 2.6.2 │ │ ├── TMakefile.pro │ │ ├── _patches │ │ │ ├── darwin │ │ │ │ ├── patch-Makefile.pre.in │ │ │ │ └── patch-configure.in │ │ │ ├── linux │ │ │ │ └── Makefile.pre.in.patch │ │ │ └── win32 │ │ │ │ ├── logging.patch │ │ │ │ ├── pcbuild.sln.patch │ │ │ │ └── pcbuild71.sln.patch │ │ ├── install.bat │ │ └── install.sh │ ├── MANIFEST.python │ ├── MANIFEST.python.darwin │ ├── MANIFEST.python.sunos │ ├── MANIFEST.python.unix │ ├── MANIFEST.python.win32 │ ├── TMakefile.pro │ ├── python-default.t │ ├── python-defaults.pro │ ├── python-unix.pro │ └── python-win32.pro ├── qscintilla │ ├── 2.3.2 │ │ ├── TMakefile.pro │ │ ├── _patches │ │ │ ├── ScintillaQt.cpp.patch │ │ │ └── qscintilla.pro.patch │ │ ├── install.bat │ │ └── install.sh │ ├── 2.4 │ │ ├── TMakefile.pro │ │ └── _patches │ │ │ ├── ScintillaQt.cpp.patch │ │ │ └── qscintilla.pro.patch │ ├── MANIFEST.qscintilla │ ├── TMakefile.pro │ ├── install.bat │ ├── install.sh │ ├── qscintilla-default.t │ └── qscintilla-defaults.pro ├── qt │ ├── 4.5.1 │ │ ├── TMakefile.pro │ │ └── _patches │ │ │ ├── darwin │ │ │ └── patch-qmake.conf │ │ │ ├── patch-ac │ │ │ ├── patch-qt3support.pro │ │ │ ├── patch-qtassistant │ │ │ ├── sunos │ │ │ ├── StdHeader.h.patch │ │ │ ├── assistant.pro.patch │ │ │ └── repl_tchar.h.patch │ │ │ ├── tools.pro.patch │ │ │ ├── unix │ │ │ └── patch-config.cpp │ │ │ └── win32 │ │ │ └── qmake.conf.patch │ ├── 4.5.2 │ │ ├── TMakefile.pro │ │ └── _patches │ │ │ ├── darwin │ │ │ └── patch-qmake.conf │ │ │ ├── patch-ac │ │ │ ├── patch-qtassistant │ │ │ ├── sunos │ │ │ ├── StdHeader.h.patch │ │ │ ├── assistant.pro.patch │ │ │ └── repl_tchar.h.patch │ │ │ ├── tools.pro.patch │ │ │ ├── unix │ │ │ └── patch-config.cpp │ │ │ └── win32 │ │ │ └── qmake.conf.patch │ ├── 4.5.3 │ │ ├── TMakefile.pro │ │ └── _patches │ │ │ ├── darwin │ │ │ └── patch-qmake.conf │ │ │ ├── patch-ac │ │ │ ├── patch-qtassistant │ │ │ ├── sunos │ │ │ ├── StdHeader.h.patch │ │ │ ├── assistant.pro.patch │ │ │ └── repl_tchar.h.patch │ │ │ ├── tools.pro.patch │ │ │ ├── unix │ │ │ └── patch-config.cpp │ │ │ └── win32 │ │ │ └── qmake.conf.patch │ ├── MANIFEST.qt │ ├── TMakefile.pro │ ├── fixincludes.py │ ├── icons │ │ └── assistant │ │ │ ├── addtab.png │ │ │ ├── appicon.png │ │ │ ├── assistant.png │ │ │ ├── book.png │ │ │ ├── closetab.png │ │ │ ├── d_closetab.png │ │ │ ├── designer.png │ │ │ ├── editcopy.png │ │ │ ├── find.png │ │ │ ├── home.png │ │ │ ├── linguist.png │ │ │ ├── next.png │ │ │ ├── previous.png │ │ │ ├── print.png │ │ │ ├── qt.png │ │ │ ├── splash.png │ │ │ ├── whatsthis.xpm │ │ │ ├── zoomin.png │ │ │ └── zoomout.png │ ├── install.bat │ ├── install.sh │ ├── qconfig.pl │ ├── qt-darwin.pro │ ├── qt-default.t │ ├── qt-defaults.pro │ ├── qt-unix.pro │ ├── qt-win32.pro │ └── qtdir.t ├── qtpropertybrowser │ ├── 2.5 │ │ ├── TMakefile.pro │ │ └── _patches │ │ │ └── patch-qtpropertybrowser.pro │ ├── MANIFEST.qtpropertybrowser │ ├── TMakefile.pro │ ├── install.bat │ ├── install.sh │ ├── qtpropertybrowser-default.t │ └── qtpropertybrowser-defaults.pro ├── qtsingleapplication │ ├── 20130108 │ │ ├── TMakefile.pro │ │ └── _patches │ │ │ └── patch-qtsingleapplication.pro │ ├── MANIFEST.qtsingleapplication │ ├── TMakefile.pro │ ├── install.bat │ ├── install.sh │ ├── qtsingleapplication-default.t │ └── qtsingleapplication-defaults.pro ├── sip │ ├── 4.7.9 │ │ ├── TMakefile.pro │ │ └── _patches │ │ │ ├── darwin │ │ │ └── patch-siputils.py │ │ │ └── win32 │ │ │ └── patch-aa │ ├── 4.8.2 │ │ ├── TMakefile.pro │ │ └── _patches │ │ │ ├── darwin │ │ │ └── patch-siputils.py │ │ │ └── win32 │ │ │ └── patch-aa │ ├── TMakefile.pro │ ├── getsipdir.py │ ├── install.bat │ ├── install.sh │ ├── sip-default.t │ └── sip-defaults.pro ├── tools.pro └── xsltproc │ ├── 1.1.19 │ ├── TMakefile.pro │ └── _patches │ │ ├── linux │ │ └── patch-configure │ │ └── win32 │ │ ├── patch-Makefile.msvc │ │ └── win32config.h.patch │ ├── LIBICONV-COPYING │ ├── MANIFEST.xsltproc │ ├── TMakefile.pro │ ├── XSLTPROC-COPYING │ ├── install.bat │ ├── install.sh │ ├── xsltproc-default.t │ ├── xsltproc-defaults.pro │ ├── xsltproc-unix.pro │ └── xsltproc-win32.pro ├── AUTHORS ├── GPL_EXCEPTION.txt ├── INSTALL ├── LICENSE.GPL ├── Makefile.pro ├── defaults.pro ├── serna ├── Makefile.pro ├── app │ ├── APPVER │ ├── ASPELL-COPYING │ ├── ASPELL-EN-COPYING │ ├── EULA.txt │ ├── FREETYPE.LICENSE │ ├── LIBGCC.LICENSE │ ├── LIBSTDC++.LICENSE │ ├── MANIFEST.all │ ├── MANIFEST.dita │ ├── MANIFEST.dita-faq │ ├── MANIFEST.dita-ot-131 │ ├── MANIFEST.ditahelp │ ├── MANIFEST.doc-dita │ ├── MANIFEST.doc-dita.built │ ├── MANIFEST.docbook │ ├── MANIFEST.idealliance │ ├── MANIFEST.nitf │ ├── MANIFEST.pyapi │ ├── MANIFEST.python │ ├── MANIFEST.sapi │ ├── MANIFEST.sapi-docs │ ├── MANIFEST.sapi_py-docs │ ├── MANIFEST.speller │ ├── MANIFEST.syntext │ ├── MANIFEST.tei │ ├── MANIFEST.xhtml │ ├── Makefile.dynexports │ ├── Makefile.pro │ ├── NEON-COPYING │ ├── README.TXT │ ├── SP-COPYING │ ├── TGZ-INSTALL │ ├── VERSION │ ├── appver.t │ ├── catalog.t │ ├── dbgpack.t │ ├── dist.pro │ ├── dist.t │ ├── dynexports.pro │ ├── dynexports.t │ ├── fix_install_names.py │ ├── get_undef_syms.sh │ ├── lderrors-makefile.t │ ├── mac │ │ ├── Contents │ │ │ ├── Info.plist │ │ │ ├── PkgInfo │ │ │ └── version.plist │ │ ├── Description.plist │ │ ├── Info.plist │ │ └── Resources │ │ │ ├── TokenDefinitions.plist │ │ │ ├── postinstall │ │ │ └── postupgrade │ ├── mac_package_maker.sh │ ├── mac_postpkg.sh │ ├── mac_prepkg.sh │ ├── main.cxx │ ├── make-sun.sh │ ├── make-tgz.sh │ ├── makedist.cmd │ ├── makeexplist.pl │ ├── makeldmap.pl │ ├── makeldscript.pl │ ├── mft │ │ ├── cxxplugins │ │ │ ├── MANIFEST.linkvoyager │ │ │ └── MANIFEST.updateonsave │ │ └── pyplugins │ │ │ ├── MANIFEST.element-help │ │ │ ├── MANIFEST.publishing │ │ │ ├── MANIFEST.pyplugin │ │ │ └── MANIFEST.resume │ ├── pymodules.t │ ├── rpm │ │ ├── Makefile │ │ ├── serna-postin.sh │ │ ├── serna-postun.sh │ │ └── serna.spec │ ├── script2.t │ ├── serna-exe.t │ ├── serna.icns │ ├── serna.ico │ ├── serna.iss │ ├── serna.rc │ ├── serna_postrpmbuild.sh │ ├── spell.t │ ├── sunos │ │ ├── pkginfo │ │ ├── serna-postin.sh │ │ └── serna-postun.sh │ ├── tgz-install.sh │ ├── tgz-uninstall.sh │ └── win32 │ │ └── qax_dllinit.cxx ├── core │ ├── AxSerna.h │ ├── DocBuilders.h │ ├── EmptyDocument.h │ ├── Makefile.pro │ ├── Preferences.h │ ├── Serna.h │ ├── VERSION │ ├── core_defs.h │ ├── debug_core.h │ ├── icons-list │ ├── impl │ │ ├── DocumentCommands.cxx │ │ ├── EmptyDocument.cxx │ │ ├── LicenseChecker.h │ │ ├── Serna.cxx │ │ ├── WindowCommands.cxx │ │ ├── WindowCommands.h │ │ ├── core.def │ │ ├── debug_core.cxx │ │ ├── serna_main.cxx │ │ └── unix │ │ │ └── AxSerna.cxx │ ├── qt │ │ ├── DebugDialog.cxx │ │ ├── DebugDialogBase.ui │ │ ├── DocumentLookWidget.cxx │ │ ├── DocumentLookWidgetBase.ui │ │ ├── ExamplesDialog.cxx │ │ ├── ExamplesDialogBase.ui │ │ ├── FileHandlerDialog.cxx │ │ ├── FileHandlerDialog.h │ │ ├── FileHandlerDialogBase.ui │ │ ├── FileTypeDialog.cxx │ │ ├── FileTypeDialog.h │ │ ├── FileTypeDialogBase.ui │ │ ├── FileTypeWidget.cxx │ │ ├── FileTypeWidgetBase.ui │ │ ├── GeneralPropertiesWidget.cxx │ │ ├── GeneralPropertiesWidgetBase.ui │ │ ├── HelperAppsWidget.cxx │ │ ├── HelperAppsWidgetBase.ui │ │ ├── LargeDocWidget.cxx │ │ ├── LargeDocWidgetBase.ui │ │ ├── NewDocDialog.cxx │ │ ├── NewDocDialogBase.ui │ │ ├── NsColorDialog.cxx │ │ ├── NsColorDialog.h │ │ ├── NsColorDialogBase.ui │ │ ├── PluginsTabWidget.cxx │ │ ├── PluginsTabWidgetBase.ui │ │ ├── PreferencesDialog.cxx │ │ ├── PreferencesDialogBase.ui │ │ ├── QtSerna.cxx │ │ ├── RegistrationDetailsWidgetBase.ui │ │ ├── RegistrationDialog.cxx │ │ ├── RegistrationDialogBase.ui │ │ ├── RegistrationProgressDialog.cxx │ │ ├── RegistrationProgressDialogBase.ui │ │ ├── SearchPathWidget.cxx │ │ ├── SearchPathWidgetBase.ui │ │ ├── TemplateDetailsBase.ui │ │ ├── XmlCatalogsWidget.cxx │ │ ├── XmlCatalogsWidgetBase.ui │ │ └── apple_dochandler.i │ └── serna_main.h ├── dist │ ├── build.ent │ ├── config-template-dist.xml │ ├── config-template.ent │ ├── config-template.xml │ ├── doc-dita │ │ ├── assistant.png │ │ ├── common.ent │ │ ├── developers_guide │ │ │ ├── Makefile │ │ │ ├── adding-dictionaries.xml │ │ │ ├── adding-text-to-elements.xml │ │ │ ├── additional-profiles.xml │ │ │ ├── attribute-help-definition.xml │ │ │ ├── cals-docbook-processing-extensions.xml │ │ │ ├── cm-decoration.xml │ │ │ ├── cm-items-text-generation.xml │ │ │ ├── collecting-text.xml │ │ │ ├── config-template-documentor.xsl │ │ │ ├── config-template-topic.xsl │ │ │ ├── configuration-template-properties.xml │ │ │ ├── configuration-template-update.xml │ │ │ ├── configuration-update-properties.xml │ │ │ ├── content-map-stylesheet-development.xml │ │ │ ├── content-map-stylesheet-quick-start.xml │ │ │ ├── content_map_focus.png │ │ │ ├── create-configuration-template.xml │ │ │ ├── create-ecs-package-with-view-files.xml │ │ │ ├── create-ecs-package.xml │ │ │ ├── creating-element-help.xml │ │ │ ├── creating-simple-stylesheet.xml │ │ │ ├── csl-adding-templates.png │ │ │ ├── csl-adding-text.png │ │ │ ├── csl-decorating-items.png │ │ │ ├── csl-profiles.xml │ │ │ ├── csl-sample.png │ │ │ ├── csl-specification.xml │ │ │ ├── dg.dita │ │ │ ├── dg.ditamap │ │ │ ├── doc-template-development.xml │ │ │ ├── docbook-to-dita.xsl │ │ │ ├── document-template-development-intro.xml │ │ │ ├── document-template-properties.xml │ │ │ ├── dsi-resolution-rules.xml │ │ │ ├── ecs-package-concept.xml │ │ │ ├── ecs-package.xml │ │ │ ├── ecsp.xml │ │ │ ├── element-folding-customization.xml │ │ │ ├── element-help-definition.xml │ │ │ ├── external-metadata-association.xml │ │ │ ├── fo-properties-notes.xml │ │ │ ├── folded-items-view.xml │ │ │ ├── help-file-format.xml │ │ │ ├── i18n.xml │ │ │ ├── linguist.png │ │ │ ├── literal-text.xml │ │ │ ├── manage-ecs-package.xml │ │ │ ├── mathml-rendering.xml │ │ │ ├── mathml-support.xml │ │ │ ├── metadata-association-rules.xml │ │ │ ├── metadata-hints.xml │ │ │ ├── numbering.xml │ │ │ ├── other-ecs-files.xml │ │ │ ├── package-structure.png │ │ │ ├── pi.xml │ │ │ ├── plugin-specific-metadata.xml │ │ │ ├── publishing.xml │ │ │ ├── python-console-dialog.xml │ │ │ ├── pythonConsole.gif │ │ │ ├── redlining-support-extensions.xml │ │ │ ├── serna-config.dita │ │ │ ├── serna-view-customization.xml │ │ │ ├── serna-xsl-extensions.xml │ │ │ ├── simple-form-support-xsl-extensions.xml │ │ │ ├── simple-match-patterns.xml │ │ │ ├── simple-stylesheet.png │ │ │ ├── specifying-xslt-parameters.xml │ │ │ ├── spellcheck-dictionaries.xml │ │ │ ├── standards-support.xml │ │ │ ├── stylesheet-directory-path.xml │ │ │ ├── stylesheet-element.xml │ │ │ ├── supported-formatting-objects.xml │ │ │ ├── template-rules.xml │ │ │ ├── tocSample.gif │ │ │ ├── using-system-aspell.xml │ │ │ ├── value-of.xml │ │ │ ├── views-priority.xml │ │ │ ├── views.xml │ │ │ ├── webdav-support.xml │ │ │ ├── xinclude-support.xml │ │ │ ├── xml-schema-support.xml │ │ │ ├── xpath-support.xml │ │ │ ├── xsl-fo-extensions.xml │ │ │ ├── xsl-fo-support.xml │ │ │ ├── xsl-fo-wysiwyg-stylesheet-development.xml │ │ │ ├── xsl-fo-xslt-extensions.xml │ │ │ ├── xsl-stylesheet-development.xml │ │ │ ├── xslt-efficiency.xml │ │ │ ├── xslt-extensions.xml │ │ │ └── xslt-support.xml │ │ ├── dita-tutorial │ │ │ ├── dita-serna-tutorial.xml │ │ │ └── dita-tut-images │ │ │ │ ├── change-topic-reference-dialog-collection-type-family.png │ │ │ │ ├── change-topic-reference-dialog-concept-type.png │ │ │ │ ├── click-color-temperature-topicref.png │ │ │ │ ├── click-warm-colors-topicref.png │ │ │ │ ├── collection-type-family-displayed.png │ │ │ │ ├── color-temperature-concept.png │ │ │ │ ├── cool-colors-concept.png │ │ │ │ ├── cursor-after-note.png │ │ │ │ ├── cursor-after-p.png │ │ │ │ ├── cursor-after-warm-colors-topicref.png │ │ │ │ ├── cursor-before-r.png │ │ │ │ ├── cursor-in-p.png │ │ │ │ ├── cursor-nest-ref.png │ │ │ │ ├── dita-map-for-publishing.png │ │ │ │ ├── draw-rainbow-task.png │ │ │ │ ├── edit-conrefs-mode.png │ │ │ │ ├── edit-conrefs-set.png │ │ │ │ ├── external-conref-inserted.png │ │ │ │ ├── external-reference-inserted.png │ │ │ │ ├── id-red.png │ │ │ │ ├── insert-external-conref-dialog.png │ │ │ │ ├── insert-external-conref-item.png │ │ │ │ ├── insert-external-reference-dialog.png │ │ │ │ ├── insert-external-reference-item.png │ │ │ │ ├── insert-local-conref-dialog.png │ │ │ │ ├── insert-local-conref-item.png │ │ │ │ ├── insert-local-reference-dialog.png │ │ │ │ ├── insert-local-reference-item.png │ │ │ │ ├── insert-new-dita-document-reference-button.png │ │ │ │ ├── insert-new-dita-document-reference-dialog-cool-colors.png │ │ │ │ ├── insert-new-dita-document-reference-dialog-warm-colors.png │ │ │ │ ├── insert-related-link-dialog.png │ │ │ │ ├── insert-related-link-item.png │ │ │ │ ├── insert-topic-reference-button.png │ │ │ │ ├── insert-topic-reference-dialog-color-temperature.png │ │ │ │ ├── insert-topic-reference-dialog-concept-type-selected.png │ │ │ │ ├── insert-topic-reference-dialog-draw-rainbow.png │ │ │ │ ├── insert-topic-reference-dialog-task-type-selected.png │ │ │ │ ├── inserted-topicrefs.png │ │ │ │ ├── local-conref-edited.png │ │ │ │ ├── local-conref-inserted.png │ │ │ │ ├── local-reference-inserted.png │ │ │ │ ├── map-new.png │ │ │ │ ├── map-title-changed.png │ │ │ │ ├── map-title.png │ │ │ │ ├── nested-cool-colors-topicref.png │ │ │ │ ├── nested-warm-colors-topicref.png │ │ │ │ ├── new-cool-colors-concept-opened.png │ │ │ │ ├── new-document-dialog-color-temperature.png │ │ │ │ ├── new-document-dialog-draw-rainbow.png │ │ │ │ ├── new-document-dialog-map.png │ │ │ │ ├── new-warm-colors-concept-opened.png │ │ │ │ ├── note-id.png │ │ │ │ ├── note-p.png │ │ │ │ ├── note.png │ │ │ │ ├── publish-button.png │ │ │ │ ├── publish-dialog-dita.png │ │ │ │ ├── published-concept.png │ │ │ │ ├── published-map.png │ │ │ │ ├── r-wrapped-in-local-xref.png │ │ │ │ ├── related-links-inserted.png │ │ │ │ ├── resolved-map.png │ │ │ │ ├── show-resolved-set.png │ │ │ │ ├── task-new.png │ │ │ │ ├── typed-note.png │ │ │ │ ├── types-shown.png │ │ │ │ ├── warm-colors-concept.png │ │ │ │ └── warm-colors.png │ │ ├── documentation-best-practice.xml │ │ ├── faq │ │ │ ├── faq-contents.xml │ │ │ ├── faq.ent │ │ │ └── faq.xml │ │ ├── fix-svnprops.sh │ │ ├── genmft.cmd │ │ ├── genmft.sh │ │ ├── gui_items_guide │ │ │ └── gg.xml │ │ ├── installation_guide │ │ │ └── ig.dita │ │ ├── relnotes.xml │ │ ├── relnotes2.xml │ │ ├── sapi_guide │ │ │ ├── checkEmptyPara.gif │ │ │ ├── helloWorldPlugin.gif │ │ │ ├── insertAddress.gif │ │ │ ├── linkNavigator.gif │ │ │ └── sg.dita │ │ ├── serna-help.ditamap │ │ ├── tutorial │ │ │ ├── serna-tutorial.xml │ │ │ └── tut-images │ │ │ │ ├── accept-redlining-button.png │ │ │ │ ├── add-attr-button.png │ │ │ │ ├── added-my-example.png │ │ │ │ ├── after-entry.png │ │ │ │ ├── align-center.png │ │ │ │ ├── antenna-house-button.png │ │ │ │ ├── attr-experiment.png │ │ │ │ ├── automatic-focus-button.png │ │ │ │ ├── between-tags.png │ │ │ │ ├── bicycle-selected.png │ │ │ │ ├── bicycle-typed.png │ │ │ │ ├── bold-emphasis.png │ │ │ │ ├── cals-table-2.png │ │ │ │ ├── cals-table-3.png │ │ │ │ ├── cals-table-4.png │ │ │ │ ├── cals-table-markup.png │ │ │ │ ├── cals-table.png │ │ │ │ ├── car-selected.png │ │ │ │ ├── cc-1-button.png │ │ │ │ ├── cc-1.png │ │ │ │ ├── cc-2-button.png │ │ │ │ ├── cc-2-inserted.png │ │ │ │ ├── cc-2.png │ │ │ │ ├── cc-3-context.png │ │ │ │ ├── cc-3-inserted-2.png │ │ │ │ ├── cc-3-inserted.png │ │ │ │ ├── cc-3.png │ │ │ │ ├── cc-dialog-3.png │ │ │ │ ├── cc-dialog.png │ │ │ │ ├── cc-item.png │ │ │ │ ├── cc-list.png │ │ │ │ ├── cc-sect.png │ │ │ │ ├── cc-subsect.png │ │ │ │ ├── cc1-inserted.png │ │ │ │ ├── cc2-dialog.png │ │ │ │ ├── choose-2.png │ │ │ │ ├── choose-3.png │ │ │ │ ├── choose-element-inserted.png │ │ │ │ ├── choose-image-dialog.png │ │ │ │ ├── choose.png │ │ │ │ ├── christmas-letter-original.png │ │ │ │ ├── clean-modified.png │ │ │ │ ├── clean-original.png │ │ │ │ ├── clean-view.png │ │ │ │ ├── click-listitem.png │ │ │ │ ├── close-customizer.png │ │ │ │ ├── comment-annotation.png │ │ │ │ ├── config-update-file.png │ │ │ │ ├── content-selected-cm.png │ │ │ │ ├── content-selected.png │ │ │ │ ├── context-menu.png │ │ │ │ ├── convert-external-entity-dialog.png │ │ │ │ ├── convert-external-entity-menu.png │ │ │ │ ├── convert-internal-entity-dialog.png │ │ │ │ ├── convert-internal-entity-menu.png │ │ │ │ ├── convert-xinclude-dialog.png │ │ │ │ ├── convert-xinclude-menu.png │ │ │ │ ├── converted-external-entity.png │ │ │ │ ├── converted-internal-entity.png │ │ │ │ ├── converted-xinclude.png │ │ │ │ ├── copy-button.png │ │ │ │ ├── create-cc-button.png │ │ │ │ ├── cross-selection.png │ │ │ │ ├── cursor-beginning.png │ │ │ │ ├── cursor-doc-start.png │ │ │ │ ├── cursor-element-end.png │ │ │ │ ├── cursor-inside-element.png │ │ │ │ ├── cursor-line-end.png │ │ │ │ ├── cursor-line-start.png │ │ │ │ ├── cursor-next-element.png │ │ │ │ ├── cursor-next-line.png │ │ │ │ ├── cursor-next-pos.png │ │ │ │ ├── cursor-section-end-2.png │ │ │ │ ├── cursor-section-end.png │ │ │ │ ├── cursor-word.png │ │ │ │ ├── custom-content-toolbar.png │ │ │ │ ├── customized-toolbar.png │ │ │ │ ├── cut-button.png │ │ │ │ ├── cut-doc-toolbar.png │ │ │ │ ├── cut-listitem.png │ │ │ │ ├── cut-table.png │ │ │ │ ├── deleted-listitem.png │ │ │ │ ├── deleted-row.png │ │ │ │ ├── deletion-annotation-2.png │ │ │ │ ├── deletion-annotation-3.png │ │ │ │ ├── docbook-opened.png │ │ │ │ ├── dock-right.png │ │ │ │ ├── docked-dialog.png │ │ │ │ ├── document-toolbar.png │ │ │ │ ├── draft-area.png │ │ │ │ ├── drop-allowed.png │ │ │ │ ├── drop-not-allowed-cm.png │ │ │ │ ├── drop-not-allowed.png │ │ │ │ ├── droped-el-cm.png │ │ │ │ ├── droped-el.png │ │ │ │ ├── edit-redlining-button.png │ │ │ │ ├── edit-redlining-dialog-2.png │ │ │ │ ├── edit-redlining-dialog.png │ │ │ │ ├── el-attr-button.png │ │ │ │ ├── element-parent-parent-selected.png │ │ │ │ ├── element-parent-selected.png │ │ │ │ ├── element-selected-cm-2.png │ │ │ │ ├── element-selected-cm-3.png │ │ │ │ ├── element-selected-cm.png │ │ │ │ ├── element-selected.png │ │ │ │ ├── emphasis-attr.png │ │ │ │ ├── emphasis-clicked.png │ │ │ │ ├── emphasis-role.png │ │ │ │ ├── end-of-section.png │ │ │ │ ├── entry-inserted.png │ │ │ │ ├── exact-selection.png │ │ │ │ ├── examples-dialog.png │ │ │ │ ├── examples-list.png │ │ │ │ ├── external-entity-from-file.png │ │ │ │ ├── find-next-redlining-button.png │ │ │ │ ├── first-context.png │ │ │ │ ├── first-el-cm.png │ │ │ │ ├── first-occur.png │ │ │ │ ├── first-sect.png │ │ │ │ ├── font-family-edit.png │ │ │ │ ├── font-ok.png │ │ │ │ ├── font-size-edit.png │ │ │ │ ├── german-lang-attr.png │ │ │ │ ├── go-menu.png │ │ │ │ ├── green-tag.png │ │ │ │ ├── gui-parts.png │ │ │ │ ├── hint-at-distance.png │ │ │ │ ├── html-file.png │ │ │ │ ├── html-spiders.png │ │ │ │ ├── iex.png │ │ │ │ ├── image-attributes.png │ │ │ │ ├── insert-after.png │ │ │ │ ├── insert-column-before.png │ │ │ │ ├── insert-element-button.png │ │ │ │ ├── insert-element-dialog.png │ │ │ │ ├── insert-external-entity-button.png │ │ │ │ ├── insert-external-entity-from-file.png │ │ │ │ ├── insert-image-button.png │ │ │ │ ├── insert-image-position.png │ │ │ │ ├── insert-internal-entity-button.png │ │ │ │ ├── insert-internal-entity-dialog.png │ │ │ │ ├── insert-itemizedlist-item-button.png │ │ │ │ ├── insert-itemizedlist.png │ │ │ │ ├── insert-listitem.png │ │ │ │ ├── insert-para.png │ │ │ │ ├── insert-section-button.png │ │ │ │ ├── insert-subsection-button.png │ │ │ │ ├── insert-table-button.png │ │ │ │ ├── insert-table-dialog.png │ │ │ │ ├── insert-title.png │ │ │ │ ├── insert-xinclude-part.png │ │ │ │ ├── inserted-cals-table.png │ │ │ │ ├── inserted-column.png │ │ │ │ ├── inserted-internal-entity.png │ │ │ │ ├── inserted-listitem-cm.png │ │ │ │ ├── inserted-para-2.png │ │ │ │ ├── inserted-title.png │ │ │ │ ├── inserted-xinclude-part.png │ │ │ │ ├── inserted-xinclude.png │ │ │ │ ├── insertion-annotation-2.png │ │ │ │ ├── insertion-annotation-3.png │ │ │ │ ├── insertion-annotation.png │ │ │ │ ├── insertion-brackets-2.png │ │ │ │ ├── insertion-brackets.png │ │ │ │ ├── insertion-redlining.png │ │ │ │ ├── inside-line.png │ │ │ │ ├── inside-para.png │ │ │ │ ├── interface-customizer-dialog.png │ │ │ │ ├── itemized-list-clicked.png │ │ │ │ ├── itemized-list.png │ │ │ │ ├── join-elements-button.png │ │ │ │ ├── last-row.png │ │ │ │ ├── list-to-join.png │ │ │ │ ├── marked-as-commented.png │ │ │ │ ├── marked-as-deleted-2.png │ │ │ │ ├── marked-as-deleted-3.png │ │ │ │ ├── marked-as-deleted.png │ │ │ │ ├── marked-as-inserted-2.png │ │ │ │ ├── marked-as-inserted-3.png │ │ │ │ ├── my-doc.png │ │ │ │ ├── new-doc-10.png │ │ │ │ ├── new-doc-13.png │ │ │ │ ├── new-doc-2.png │ │ │ │ ├── new-doc-3.png │ │ │ │ ├── new-doc-4.png │ │ │ │ ├── new-doc-5.png │ │ │ │ ├── new-doc-6.png │ │ │ │ ├── new-doc-9.png │ │ │ │ ├── new-doc-article.png │ │ │ │ ├── new-doc-sect.png │ │ │ │ ├── new-document-dialog.png │ │ │ │ ├── new-listitem-cm.png │ │ │ │ ├── next-choice.png │ │ │ │ ├── next-element.png │ │ │ │ ├── no-draft-area.png │ │ │ │ ├── ordered-list.png │ │ │ │ ├── para-clicked.png │ │ │ │ ├── para-end.png │ │ │ │ ├── para-inserted-cm.png │ │ │ │ ├── parent-selected-cm-2.png │ │ │ │ ├── parent-selected-cm.png │ │ │ │ ├── paste-button.png │ │ │ │ ├── pasted-content.png │ │ │ │ ├── pasted-element.png │ │ │ │ ├── pasted-listitem.png │ │ │ │ ├── pdf-spiders.png │ │ │ │ ├── persistent-false.png │ │ │ │ ├── persistent-true.png │ │ │ │ ├── persistent.png │ │ │ │ ├── poem.png │ │ │ │ ├── portion-selected-cm.png │ │ │ │ ├── portion-start.png │ │ │ │ ├── position-between-items-cm.png │ │ │ │ ├── publish-button.png │ │ │ │ ├── publish-dialog-html.png │ │ │ │ ├── publish-dialog-xep.png │ │ │ │ ├── publish-dialog.png │ │ │ │ ├── publish-pdf-antenna-dialog.png │ │ │ │ ├── redline-as-commented-button.png │ │ │ │ ├── redline-as-deleted-button.png │ │ │ │ ├── redline-as-inserted-button.png │ │ │ │ ├── redline-over.png │ │ │ │ ├── redlining-1.png │ │ │ │ ├── redlining-2.png │ │ │ │ ├── redlining-3-annotation.png │ │ │ │ ├── redlining-3.png │ │ │ │ ├── redlining-4-annotation.png │ │ │ │ ├── redlining-4.png │ │ │ │ ├── redlining-5-annotation.png │ │ │ │ ├── redlining-5.png │ │ │ │ ├── redlining-6-annotation.png │ │ │ │ ├── redlining-6.png │ │ │ │ ├── redlining-7-annotation.png │ │ │ │ ├── redlining-7.png │ │ │ │ ├── redlining-toolbar.png │ │ │ │ ├── reject-redlining-button.png │ │ │ │ ├── rename-el-dialog-2.png │ │ │ │ ├── rename-el-dialog.png │ │ │ │ ├── rename-element-button.png │ │ │ │ ├── restore-view-box.png │ │ │ │ ├── restored-view.png │ │ │ │ ├── revised-redlining.png │ │ │ │ ├── root-el-cm.png │ │ │ │ ├── row-inserted.png │ │ │ │ ├── save-doc-box.png │ │ │ │ ├── save-view-box.png │ │ │ │ ├── saved-view.png │ │ │ │ ├── script-end.png │ │ │ │ ├── second-context.png │ │ │ │ ├── second-entry.png │ │ │ │ ├── second-occur.png │ │ │ │ ├── section-id.png │ │ │ │ ├── section-selected.png │ │ │ │ ├── section-title-para.png │ │ │ │ ├── section-title.png │ │ │ │ ├── selected-for-comment.png │ │ │ │ ├── selected-listitem-2.png │ │ │ │ ├── selected-listitem-3.png │ │ │ │ ├── selected-listitem.png │ │ │ │ ├── selected-para.png │ │ │ │ ├── selected-portion-for-external-entity.png │ │ │ │ ├── selected-portion.png │ │ │ │ ├── selected-to-join.png │ │ │ │ ├── selection-for-cc.png │ │ │ │ ├── selection-menu.png │ │ │ │ ├── set-list.png │ │ │ │ ├── spiders.png │ │ │ │ ├── split-advanced.png │ │ │ │ ├── split-element-button.png │ │ │ │ ├── split-para.png │ │ │ │ ├── table-toolbar.png │ │ │ │ ├── title-cursor.png │ │ │ │ ├── title-inserted.png │ │ │ │ ├── toc-button.png │ │ │ │ ├── triple-click.png │ │ │ │ ├── two-internal-entities.png │ │ │ │ ├── typed-item.png │ │ │ │ ├── typed-title.png │ │ │ │ ├── ulink-attr.png │ │ │ │ ├── undo-button.png │ │ │ │ ├── wood-selected.png │ │ │ │ ├── wrap-region-1.png │ │ │ │ ├── wrap-region.png │ │ │ │ ├── wrapped-region.png │ │ │ │ ├── xinclude-xml-file-button.png │ │ │ │ ├── xinclude-xml-file-dialog.png │ │ │ │ ├── yellow-close-tag.png │ │ │ │ └── yellow-open-tag.png │ │ ├── users_guide │ │ │ ├── IDREF_attribute_type.png │ │ │ ├── ID_attribute_type.png │ │ │ ├── NewDocumentDialog.gif │ │ │ ├── add-attribute-button.png │ │ │ ├── add-to-favorites-context-menu.png │ │ │ ├── add_attribute.png │ │ │ ├── adding-attributes.xml │ │ │ ├── adding-symbols-to-the-favorites-list.xml │ │ │ ├── advanced-operations.xml │ │ │ ├── apply-ecs-after-install.xml │ │ │ ├── apply-ecs-on-install.xml │ │ │ ├── apply-ecs.xml │ │ │ ├── applying-ecs-after-installation-from-command-line.xml │ │ │ ├── applying-ecs-after-installation-from-gui.xml │ │ │ ├── attribute-hint.png │ │ │ ├── attributes-dialog-dita-id.png │ │ │ ├── attributes-dialog.png │ │ │ ├── authoring-dita-documents.xml │ │ │ ├── authoring-modes.xml │ │ │ ├── authoring.xml │ │ │ ├── balance-selection-mode.xml │ │ │ ├── basic-operations.xml │ │ │ ├── benefits-of-dynamic-xslt-processing.xml │ │ │ ├── block-indents-compared.png │ │ │ ├── bold-emphasis.png │ │ │ ├── bookmap.xml │ │ │ ├── browse-button.png │ │ │ ├── browse-for-folder-dialog.png │ │ │ ├── browse.png │ │ │ ├── case-insensitive-search-icon.png │ │ │ ├── case-sensitive-search-icon.png │ │ │ ├── change-external-conref-dialog-new-target-selected.png │ │ │ ├── change-external-conref-dialog-target-selected.png │ │ │ ├── change-external-conref-dialog.png │ │ │ ├── change-external-entity-dialog-values-changed.png │ │ │ ├── change-external-entity-dialog.png │ │ │ ├── change-external-related-link-dialog-new-target-selected.png │ │ │ ├── change-external-related-link-dialog-target-selected.png │ │ │ ├── change-external-related-link-dialog.png │ │ │ ├── change-external-xref-dialog-new-target-selected.png │ │ │ ├── change-external-xref-dialog-target-selected.png │ │ │ ├── change-external-xref-dialog.png │ │ │ ├── change-external-xreference-dialog.png │ │ │ ├── change-hotkey.xml │ │ │ ├── change-internal-entity-name-dialog-entity-name.png │ │ │ ├── change-internal-entity-name-dialog.png │ │ │ ├── change-local-conref-dialog.png │ │ │ ├── change-local-related-link-dialog.png │ │ │ ├── change-local-xref-dialog-target-selected.png │ │ │ ├── change-local-xref-dialog.png │ │ │ ├── change-topic-reference-dialog-target-selected.png │ │ │ ├── change-topic-reference-dialog.png │ │ │ ├── changeExternalEntityDialog.gif │ │ │ ├── changeInternalEntityDialog.gif │ │ │ ├── changing-attribute-values.xml │ │ │ ├── changing-entity-declaration.xml │ │ │ ├── changing-external-conref-into-external-conref-to-existing-document.xml │ │ │ ├── changing-external-conref-into-external-conref-to-newly-created-document.xml │ │ │ ├── changing-external-conref-into-local-conref.xml │ │ │ ├── changing-external-conref.xml │ │ │ ├── changing-external-entity-declaration.xml │ │ │ ├── changing-external-related-link-into-external-related-link-to-existing-document.xml │ │ │ ├── changing-external-related-link-into-external-related-link-to-newly-created-document.xml │ │ │ ├── changing-external-related-link-into-local-related-link.xml │ │ │ ├── changing-external-related-link.xml │ │ │ ├── changing-external-xref.xml │ │ │ ├── changing-input-focus-between-contentmap-and-editing-window.xml │ │ │ ├── changing-internal-entity-declaration.xml │ │ │ ├── changing-local-conref-into-external-conref-to-existing-document.xml │ │ │ ├── changing-local-conref-into-external-conref-to-newly-created-document.xml │ │ │ ├── changing-local-conref-into-external-conref.xml │ │ │ ├── changing-local-conref.xml │ │ │ ├── changing-local-related-link-into-external-related-link-to-existing-document.xml │ │ │ ├── changing-local-related-link-into-external-related-link-to-newly-created-document.xml │ │ │ ├── changing-local-related-link-into-external-related-link.xml │ │ │ ├── changing-local-related-link.xml │ │ │ ├── changing-local-xref.xml │ │ │ ├── changing-serna-view.xml │ │ │ ├── changing-table-attributes.xml │ │ │ ├── changing-the-attributes-of-external-related-link.xml │ │ │ ├── changing-the-attributes-of-external-xref.xml │ │ │ ├── changing-the-attributes-of-topicref-in-dita-map.xml │ │ │ ├── changing-the-target-of-external-conref.xml │ │ │ ├── changing-the-target-of-external-related-link.xml │ │ │ ├── changing-the-target-of-external-xref-to-another-external-target-in-a-newly-created-document.xml │ │ │ ├── changing-the-target-of-external-xref-to-another-external-target-in-an-existing-document.xml │ │ │ ├── changing-the-target-of-external-xref.xml │ │ │ ├── changing-the-target-of-local-conref.xml │ │ │ ├── changing-the-target-of-local-related-link.xml │ │ │ ├── changing-the-target-of-local-xref.xml │ │ │ ├── changing-the-target-of-topicref-in-dita-map.xml │ │ │ ├── changing-the-target-of-xref-from-external-to-local.xml │ │ │ ├── changing-the-target-of-xref-from-local-to-external-in-a-newly-created-document.xml │ │ │ ├── changing-the-target-of-xref-from-local-to-external-in-an-existing-document.xml │ │ │ ├── changing-the-target-of-xref-from-local-to-external.xml │ │ │ ├── changing-topicref-in-dita-map.xml │ │ │ ├── changing-xref.xml │ │ │ ├── check-spelling-button.png │ │ │ ├── checking-spelling.xml │ │ │ ├── chinese-gui.png │ │ │ ├── choose-document-template-dialog-when-switch-from-text-to-wysiwyg-mode.png │ │ │ ├── choose-document-template-dialog.png │ │ │ ├── choose.png │ │ │ ├── click-orderedlist-in-content-map.png │ │ │ ├── close-button.png │ │ │ ├── close-document-button.png │ │ │ ├── closing-document.xml │ │ │ ├── collapsing-and-expanding-elements.xml │ │ │ ├── collapsing-elements.xml │ │ │ ├── column-attributes-dialog.png │ │ │ ├── composite.xml │ │ │ ├── concept.xml │ │ │ ├── conref.xml │ │ │ ├── content-map.xml │ │ │ ├── content-navigation-in-contentmap.xml │ │ │ ├── content-navigation-in-editing-window.xml │ │ │ ├── content-rendering.xml │ │ │ ├── content_map_focus.png │ │ │ ├── contentmap-and-context-hints.png │ │ │ ├── contentmap-profiled-views.png │ │ │ ├── context-hints.xml │ │ │ ├── context-menu-convert-from-entity.png │ │ │ ├── context-menu-convert-from-external-entity.png │ │ │ ├── context-menu-go-reference.png │ │ │ ├── context-sensitive-custom-content.xml │ │ │ ├── convert-from-entity-xinclude-menu-item.png │ │ │ ├── convert-to-external-entity-dialog-names-specified.png │ │ │ ├── convert-to-external-entity-dialog.png │ │ │ ├── convert-to-external-entity-dialog.xml │ │ │ ├── convert-to-internal-entity-dialog-entity-name.png │ │ │ ├── convert-to-internal-entity-dialog.png │ │ │ ├── convert-to-internal-entity-dialog.xml │ │ │ ├── convert-to-xinclude.xml │ │ │ ├── convertToExternalEntityDialog.gif │ │ │ ├── convertToInternalEntityDialog.gif │ │ │ ├── converting-from-external-entity.xml │ │ │ ├── converting-from-internal-entity.xml │ │ │ ├── converting-to-external-entity.xml │ │ │ ├── converting-to-internal-entity.xml │ │ │ ├── copy-as-text.xml │ │ │ ├── copy-as-xml-structure.xml │ │ │ ├── copy-button.png │ │ │ ├── copy-cut-paste-columns.xml │ │ │ ├── copy-cut-paste.xml │ │ │ ├── copy-paste-by-using-drag-drop.xml │ │ │ ├── copy.png │ │ │ ├── create-custom-content.xml │ │ │ ├── create-new-dita-document-button.png │ │ │ ├── create-new-dita-document-dialog-parameters-specified.png │ │ │ ├── create-new-dita-document-dialog.png │ │ │ ├── create-xslt-parameter-set.xml │ │ │ ├── creating-dita-documents-simultaneously-inserting-references-to-the-newly-created-documents.xml │ │ │ ├── creating-dita-documents.xml │ │ │ ├── creating-new-document-with-default-template.xml │ │ │ ├── creating-new-document-without-template.xml │ │ │ ├── creating-new-document.xml │ │ │ ├── cross-element-selection.png │ │ │ ├── csl-sample.png │ │ │ ├── cursor-after-listitem.png │ │ │ ├── cursor-after.png │ │ │ ├── cursor-before-listitem-2.png │ │ │ ├── cursor-before-listitem.png │ │ │ ├── cursor-before.png │ │ │ ├── cursor-between-words-in-para.png │ │ │ ├── cursor-between.png │ │ │ ├── cursor-choose-2.png │ │ │ ├── cursor-choose.png │ │ │ ├── cursor-in-element-for-selection.png │ │ │ ├── cursor-in-emphasis.png │ │ │ ├── cursor-in-internal-entity.png │ │ │ ├── cursor-in-italic.png │ │ │ ├── cursor-in-parent-hint.png │ │ │ ├── cursor-in-parent.png │ │ │ ├── cursor-in-text.png │ │ │ ├── cursor-inside-listitem.png │ │ │ ├── cursor-inside.png │ │ │ ├── cursor-on-element-in-content-map.png │ │ │ ├── custom-content-customization.xml │ │ │ ├── custom-content-dialog-emphasis.png │ │ │ ├── custom-content-dialog-graphic-section.png │ │ │ ├── custom-content-dialog-graphic-text.png │ │ │ ├── custom-content-dialog-para.png │ │ │ ├── custom-content-dialog.xml │ │ │ ├── custom-content-templates.xml │ │ │ ├── custom-content-toolbar.png │ │ │ ├── custom_attribute_type.png │ │ │ ├── customize-dialog.png │ │ │ ├── customize-gui-layout.xml │ │ │ ├── customizing-serna.xml │ │ │ ├── cut-button.png │ │ │ ├── cut.png │ │ │ ├── cut.xml │ │ │ ├── default-stylesheet.xml │ │ │ ├── default_attribute.png │ │ │ ├── delete-attribute-button.png │ │ │ ├── delete-no-template-view.xml │ │ │ ├── delete-view.xml │ │ │ ├── delete_attribute.png │ │ │ ├── deleted-listitem.png │ │ │ ├── deleting-a-table.xml │ │ │ ├── deleting-attributes.xml │ │ │ ├── deleting-columns-rows-cells-and-cell-content.xml │ │ │ ├── deleting-element.xml │ │ │ ├── deleting-headers-and-footers.xml │ │ │ ├── deprecated-content-in-dita-documents.xml │ │ │ ├── dita-bookmap-opened-in-serna.png │ │ │ ├── dita-composite-opened-in-serna.png │ │ │ ├── dita-concept-opened-in-serna.png │ │ │ ├── dita-custom-content.xml │ │ │ ├── dita-glossary-opened-in-serna.png │ │ │ ├── dita-id-attributes-specifications.xml │ │ │ ├── dita-id-management.xml │ │ │ ├── dita-id-validation-when-opening-a-document-with-a-duplicate-id.xml │ │ │ ├── dita-id-validation-when-setting-a-duplicate-id-value.xml │ │ │ ├── dita-id-validation.xml │ │ │ ├── dita-map-default-xslt-parameter-set.png │ │ │ ├── dita-map-edit-conrefs-xslt-parameter-set.png │ │ │ ├── dita-map-opened-in-serna.png │ │ │ ├── dita-map-show-descriptions-xslt-parameter-set.png │ │ │ ├── dita-map-show-resolved-xslt-parameter-set.png │ │ │ ├── dita-maps-xslt-parameter-sets.xml │ │ │ ├── dita-maps.xml │ │ │ ├── dita-menu.png │ │ │ ├── dita-reference-opened-in-serna.png │ │ │ ├── dita-specialization.xml │ │ │ ├── dita-support-in-serna.xml │ │ │ ├── dita-task-opened-in-serna.png │ │ │ ├── dita-toolbar.png │ │ │ ├── dita-topic-default-view-xslt-parameter-set.png │ │ │ ├── dita-topic-edit-conrefs-xslt-parameter-set.png │ │ │ ├── dita-topic-hide-prolog-xslt-parameter-set.png │ │ │ ├── dita-topic-menus.png │ │ │ ├── dita-topics-xslt-parameter-sets.xml │ │ │ ├── dita-topics.xml │ │ │ ├── dita-xslt-parameter-sets.xml │ │ │ ├── dita10-selected-in-choose-document-template-dialog.png │ │ │ ├── dita10-task-selected-in-choose-document-template-dialog.png │ │ │ ├── dita11-selected-in-new-document-dialog.png │ │ │ ├── doc-tab-context-menu.png │ │ │ ├── docbook-clean-xslt-parameter-set.png │ │ │ ├── docbook-default-xslt-parameter-set.png │ │ │ ├── docbook-stylesheet.xml │ │ │ ├── docbook-xslt-parameter-sets.xml │ │ │ ├── dock-menu.png │ │ │ ├── docked-dialog.png │ │ │ ├── docking.xml │ │ │ ├── document-background-color-changed.png │ │ │ ├── document-cannot-be-printed-in-normal-view-message.png │ │ │ ├── document-in-serna.xml │ │ │ ├── document-opened-collapsed.png │ │ │ ├── document-opened-normally.png │ │ │ ├── document-opened-with-default-stylesheet.png │ │ │ ├── document-opened-with-docbook-stylesheet.png │ │ │ ├── document-portion-converted-from-entity.png │ │ │ ├── document-properties-dialog.png │ │ │ ├── document-tab-tooltip.png │ │ │ ├── document-tabs.xml │ │ │ ├── document-template-details.xml │ │ │ ├── document-toolbar.png │ │ │ ├── document-type.xml │ │ │ ├── documentTemplatesDialog.gif │ │ │ ├── drag-drop-selected-content.xml │ │ │ ├── drag-drop-validation.xml │ │ │ ├── drag-drop-without-selection.xml │ │ │ ├── drag-drop.xml │ │ │ ├── drag-in-content-map.png │ │ │ ├── drop-allowed.png │ │ │ ├── drop-not-allowed-in-content-map.png │ │ │ ├── drop-not-allowed.png │ │ │ ├── dropped-element-in-content-map.png │ │ │ ├── dropped-element.png │ │ │ ├── dtd.xml │ │ │ ├── ecs-concept.xml │ │ │ ├── edit-custom-content-button.png │ │ │ ├── edit-custom-content-dialog-dita.png │ │ │ ├── edit-custom-content-dialog.png │ │ │ ├── edit-custom-content-dialog.xml │ │ │ ├── edit-document-xml-source.xml │ │ │ ├── edit-xslt-parameter-set.xml │ │ │ ├── editCommentDialog.gif │ │ │ ├── editPiDialog.gif │ │ │ ├── editSelectionAsText.gif │ │ │ ├── editXsltParameter.gif │ │ │ ├── editing-attributes.xml │ │ │ ├── editing-window.png │ │ │ ├── editing-window.xml │ │ │ ├── effective-authoring.xml │ │ │ ├── element-attributes-button.png │ │ │ ├── element-attributes-dialog.xml │ │ │ ├── element-content-selected-in-contentmap.png │ │ │ ├── element-content-selected-in-editing-window.png │ │ │ ├── element-help-button.png │ │ │ ├── element-hint.png │ │ │ ├── element-parent-selected-in-contentmap.png │ │ │ ├── element-parent-selected-in-editing-window.png │ │ │ ├── element-selected-in-contentmap.png │ │ │ ├── element-selected-in-editing-window-2.png │ │ │ ├── element-selected-in-editing-window.png │ │ │ ├── element-toolbar.png │ │ │ ├── element_help.png │ │ │ ├── emphasis-role.png │ │ │ ├── enable-auto-spell-checking-button.png │ │ │ ├── enabling-disabling-plugins.xml │ │ │ ├── enter-root-element-dialog-default-template.png │ │ │ ├── enter-root-element-dialog-list.png │ │ │ ├── enter-root-element-dialog-show-all.png │ │ │ ├── entities.xml │ │ │ ├── entity-declaration-dialog.xml │ │ │ ├── entity-declarations.xml │ │ │ ├── entityDeclarationsDialog.gif │ │ │ ├── error-entity-with-this-name-already-exists.png │ │ │ ├── exact-position-custom-content.xml │ │ │ ├── exact-selection.png │ │ │ ├── expanding-elements.xml │ │ │ ├── external-conref-inserted.png │ │ │ ├── external-entity-in-the-editing-window-and-content-map.png │ │ │ ├── external-entity-inserted.png │ │ │ ├── external-entity-selected-for-insertion.png │ │ │ ├── external-entity.xml │ │ │ ├── external-related-link-inserted.png │ │ │ ├── external-xref-inserted.png │ │ │ ├── file-handler-dialog.png │ │ │ ├── file-path-entered-manually-applied.png │ │ │ ├── file-path-entered-manually.png │ │ │ ├── file-type-dialog.png │ │ │ ├── find-button.png │ │ │ ├── find-dialog.xml │ │ │ ├── find-next-redlining-button.png │ │ │ ├── find-previous-redlining-button.png │ │ │ ├── find-replace-dialog-right-docked.png │ │ │ ├── find-replace-dialog-top-docked.png │ │ │ ├── find-replace-tab-search-type.png │ │ │ ├── find-replace-tab-values-specified.png │ │ │ ├── find-replace-tab.png │ │ │ ├── find-replace-with-docked-find-replace-dialog.xml │ │ │ ├── find-replace.xml │ │ │ ├── find-tab-search-type.png │ │ │ ├── find-tab-text-to-find-entered.png │ │ │ ├── find-tab-xslt-match-pattern-entered.png │ │ │ ├── find-tab-xslt-pattern-search-type.png │ │ │ ├── find-tab.png │ │ │ ├── find.xml │ │ │ ├── findTab.gif │ │ │ ├── findTopDockedDialog.gif │ │ │ ├── fixed_attribute.png │ │ │ ├── fop.xml │ │ │ ├── generic-topic.xml │ │ │ ├── getting-antenna-house-xsl-formatter-to-publish-pdf-from-serna.xml │ │ │ ├── getting-started.xml │ │ │ ├── glossary.xml │ │ │ ├── gui-icons.xml │ │ │ ├── gui-layout-concept.xml │ │ │ ├── gui-layout-customization.xml │ │ │ ├── gui-layout.xml │ │ │ ├── hide-replace-options-button.png │ │ │ ├── hotkey-dialog.xml │ │ │ ├── how-to-redline-doc.xml │ │ │ ├── i18n-preferences.png │ │ │ ├── i18n.xml │ │ │ ├── icon-list.png │ │ │ ├── image-break-placement.png │ │ │ ├── image-inline-placement.png │ │ │ ├── images-in-dita-documents.xml │ │ │ ├── insert-after.png │ │ │ ├── insert-before.png │ │ │ ├── insert-comment-dialog.xml │ │ │ ├── insert-element-button.png │ │ │ ├── insert-element-dialog.png │ │ │ ├── insert-element-in-content-map.png │ │ │ ├── insert-external-conref-button.png │ │ │ ├── insert-external-conref-dialog-new-target-selected.png │ │ │ ├── insert-external-conref-dialog-target-selected.png │ │ │ ├── insert-external-conref-dialog.png │ │ │ ├── insert-external-entity-dialog-insert-from-file.png │ │ │ ├── insert-external-entity-dialog.png │ │ │ ├── insert-external-entity-dialog.xml │ │ │ ├── insert-external-related-link-button.png │ │ │ ├── insert-external-related-link-dialog-new-target-selected.png │ │ │ ├── insert-external-related-link-dialog-target-selected.png │ │ │ ├── insert-external-related-link-dialog.png │ │ │ ├── insert-external-xref-dialog-new-target-selected.png │ │ │ ├── insert-external-xref-dialog-target-selected.png │ │ │ ├── insert-external-xref-dialog.png │ │ │ ├── insert-external-xreference-button.png │ │ │ ├── insert-external-xreference-dialog.png │ │ │ ├── insert-internal-entity-dialog.png │ │ │ ├── insert-internal-entity-dialog.xml │ │ │ ├── insert-into.png │ │ │ ├── insert-local-conref-button.png │ │ │ ├── insert-local-conref-dialog.png │ │ │ ├── insert-local-related-link-dialog.png │ │ │ ├── insert-local-xref-dialog-target-selected.png │ │ │ ├── insert-local-xref-dialog.png │ │ │ ├── insert-local-xreference-button.png │ │ │ ├── insert-new-dita-document-reference-button.png │ │ │ ├── insert-new-dita-document-reference-dialog.png │ │ │ ├── insert-pi-dialog.xml │ │ │ ├── insert-symbol-dialog-font-list.png │ │ │ ├── insert-symbol-dialog-symbol-selected.png │ │ │ ├── insert-symbol-dialog.png │ │ │ ├── insert-symbol-dialog.xml │ │ │ ├── insert-table-button.png │ │ │ ├── insert-table-dialog.png │ │ │ ├── insert-toolbar.png │ │ │ ├── insert-topic-reference-dialog-target-selected.png │ │ │ ├── insert-topic-reference-dialog.png │ │ │ ├── insert-topicref-button.png │ │ │ ├── insertElementDockedRight.gif │ │ │ ├── insertElementDockedTop.gif │ │ │ ├── insertElementDocking.gif │ │ │ ├── insertElementUndocked.gif │ │ │ ├── insertExternalEntityDialog.gif │ │ │ ├── insertInternalEntityDialog.gif │ │ │ ├── inserted-listitem.png │ │ │ ├── inserted-para.png │ │ │ ├── inserted-title.png │ │ │ ├── inserting-a-table.xml │ │ │ ├── inserting-columns-rows-and-cells.xml │ │ │ ├── inserting-declared-external-entity.xml │ │ │ ├── inserting-element.xml │ │ │ ├── inserting-elements-with-required-attributes.xml │ │ │ ├── inserting-external-conref-to-existing-document.xml │ │ │ ├── inserting-external-conref-to-newly-created-document.xml │ │ │ ├── inserting-external-conref.xml │ │ │ ├── inserting-external-entity-from-file.xml │ │ │ ├── inserting-external-entity.xml │ │ │ ├── inserting-external-related-link-to-existing-document.xml │ │ │ ├── inserting-external-related-links-to-newly-created-documents.xml │ │ │ ├── inserting-external-related-links.xml │ │ │ ├── inserting-external-xref-to-existing-document.xml │ │ │ ├── inserting-external-xref-to-newly-created-document.xml │ │ │ ├── inserting-external-xref.xml │ │ │ ├── inserting-headers-and-footers.xml │ │ │ ├── inserting-internal-entity.xml │ │ │ ├── inserting-local-conref.xml │ │ │ ├── inserting-local-related-links.xml │ │ │ ├── inserting-local-xref.xml │ │ │ ├── inserting-nbsp-symbols.xml │ │ │ ├── inserting-reference-to-newly-created-document-in-dita-map.xml │ │ │ ├── inserting-required-element.xml │ │ │ ├── inserting-symbol.xml │ │ │ ├── inserting-symbols-from-external-dtd-subset.xml │ │ │ ├── inserting-topicref-to-existing-topic-in-dita-map.xml │ │ │ ├── inserting-xref.xml │ │ │ ├── installing-java-on-linux.xml │ │ │ ├── installing-java-on-windows.xml │ │ │ ├── interface-customizer.xml │ │ │ ├── interlacing-blocks-colors.png │ │ │ ├── internal-entity-in-the-editing-window-and-content-map.png │ │ │ ├── internal-entity-inserted.png │ │ │ ├── internal-entity-selected-for-insertion.png │ │ │ ├── internal-entity.xml │ │ │ ├── internal-subset-entities-dialog-external-entity-selected.png │ │ │ ├── internal-subset-entities-dialog-internal-entity-selected.png │ │ │ ├── internal-subset-entities-dialog.png │ │ │ ├── invalid-path-in-insert-external-xreference-dialog.png │ │ │ ├── itemized-list.png │ │ │ ├── join-elements-button.png │ │ │ ├── joined-list.png │ │ │ ├── joining-elements.xml │ │ │ ├── large-document-support.xml │ │ │ ├── list-in-markup-mode.png │ │ │ ├── list-of-recent-actions-you-can-undo.png │ │ │ ├── list-of-recent-undone-actions-you-can-redo.png │ │ │ ├── list-to-join.png │ │ │ ├── local-conref-inserted.png │ │ │ ├── local-related-link-inserted.png │ │ │ ├── local-xref-inserted.png │ │ │ ├── localization-in-stylesheets.xml │ │ │ ├── maintenance-of-dita-id-uniqueness.xml │ │ │ ├── making-customizations.xml │ │ │ ├── making-dockable-dialogs-close-on-esc.xml │ │ │ ├── managing-ca-certificates.xml │ │ │ ├── map.xml │ │ │ ├── markup-in-editing-window.png │ │ │ ├── markup-in-editing-window.xml │ │ │ ├── menus.xml │ │ │ ├── merging-cells.xml │ │ │ ├── metadata.xml │ │ │ ├── migrate-customizations.xml │ │ │ ├── modified_attribute.png │ │ │ ├── modify-xslt-parameter-set.xml │ │ │ ├── mouse-pointer-over-contentmap.png │ │ │ ├── namespace-uri-color-schema-dialog.png │ │ │ ├── navigation.xml │ │ │ ├── new-doc-dialog.xml │ │ │ ├── new-doc-section.png │ │ │ ├── new-document-button.png │ │ │ ├── new-document-created-with-default-template.png │ │ │ ├── new-document-dialog-default-template-details.png │ │ │ ├── new-document-dialog-details.png │ │ │ ├── new-document-dialog-my-plugin-details.png │ │ │ ├── new-document-dialog.png │ │ │ ├── newXsltParameterSet.gif │ │ │ ├── newdoc.png │ │ │ ├── no-matched-document-template-found.png │ │ │ ├── normal-view.png │ │ │ ├── open-doc-webdav.xml │ │ │ ├── open-doc-with-template-dialog.xml │ │ │ ├── open-document-button.png │ │ │ ├── open-document-dialog.png │ │ │ ├── open-document-with-template-dialog.png │ │ │ ├── open-file-as-plain-text-dialog.png │ │ │ ├── open-recent-list-tooltip.png │ │ │ ├── opening-a-document-as-plain-text.xml │ │ │ ├── opening-a-document-from-the-command-line.xml │ │ │ ├── opening-a-document-in-wysiwyg-mode.xml │ │ │ ├── opening-a-document-when-no-template-was-found.xml │ │ │ ├── opening-dita-1-0-documents.xml │ │ │ ├── opening-dita-documents.xml │ │ │ ├── opening-document-with-manually-specified-parameters.xml │ │ │ ├── opening-existing-document.xml │ │ │ ├── opening-large-document-dialog.png │ │ │ ├── opening-recent-document.xml │ │ │ ├── operation-not-valid-in-context-message.png │ │ │ ├── operations-with-dita-documents.xml │ │ │ ├── operations-with-elements-and-attributes.xml │ │ │ ├── operations-with-references-in-dita-documents.xml │ │ │ ├── ordered-list.png │ │ │ ├── other-metadata.xml │ │ │ ├── override-icon.xml │ │ │ ├── paginated-and-normal-document-views.xml │ │ │ ├── paginated-normal-view-button.png │ │ │ ├── paginated-view.png │ │ │ ├── parts-of-serna-gui.xml │ │ │ ├── paste-as-text.xml │ │ │ ├── paste-button.png │ │ │ ├── paste.png │ │ │ ├── paste.xml │ │ │ ├── path-entered-manually-applied.png │ │ │ ├── path-entered-manually.png │ │ │ ├── pdf-ah-dialog.xml │ │ │ ├── plain-text-mode.png │ │ │ ├── plain-text-mode.xml │ │ │ ├── portion-selected-in-contentmap.png │ │ │ ├── preferences-dialog-applications-tab.png │ │ │ ├── preferences-dialog-file-types-tab.png │ │ │ ├── preferences-dialog-folding-tab-undo-limits.png │ │ │ ├── preferences-dialog-folding-tab.png │ │ │ ├── preferences-dialog-general-tab-autosave.png │ │ │ ├── preferences-dialog-general-tab-configuration-package.png │ │ │ ├── preferences-dialog-general-tab-context-hints.png │ │ │ ├── preferences-dialog-general-tab-default-spelling-dictionary.png │ │ │ ├── preferences-dialog-general-tab-dockable-dialogs.png │ │ │ ├── preferences-dialog-general-tab-documents-location.png │ │ │ ├── preferences-dialog-general-tab-linebreaks.png │ │ │ ├── preferences-dialog-general-tab-reset-to-factory-settings.png │ │ │ ├── preferences-dialog-general-tab-system-font.png │ │ │ ├── preferences-dialog-general-tab-ui-language.png │ │ │ ├── preferences-dialog-general-tab.png │ │ │ ├── preferences-dialog-plugins-tab.png │ │ │ ├── preferences-dialog-search-paths-tab-additional-plugins.png │ │ │ ├── preferences-dialog-search-paths-tab.png │ │ │ ├── preferences-dialog-tabs.xml │ │ │ ├── preferences-dialog-tag-style-tab-block-indent.png │ │ │ ├── preferences-dialog-tag-style-tab-interlacing-block-color-1.png │ │ │ ├── preferences-dialog-tag-style-tab-interlacing-block-color.png │ │ │ ├── preferences-dialog-tag-style-tab-namespace-colors.png │ │ │ ├── preferences-dialog-tag-style-tab-nbsp.png │ │ │ ├── preferences-dialog-tag-style-tab-tag-font.png │ │ │ ├── preferences-dialog-xml-catalogs-tab-dtd-path.png │ │ │ ├── preferences-dialog-xml-catalogs-tab.png │ │ │ ├── preferences-dialog.png │ │ │ ├── preferences-dialog.xml │ │ │ ├── preferencesApplications.gif │ │ │ ├── preferencesFileTypes.gif │ │ │ ├── preferencesFolding.gif │ │ │ ├── preferencesGeneral.gif │ │ │ ├── preferencesSearchPaths.gif │ │ │ ├── preferencesTagStyle.gif │ │ │ ├── preferencesXmlCatalogs.gif │ │ │ ├── print-draft-button.png │ │ │ ├── printing-draft.xml │ │ │ ├── programlisting-element.png │ │ │ ├── publish-dialog-dita-pdf-with-ah.png │ │ │ ├── publish-dialog.png │ │ │ ├── publish-dialog.xml │ │ │ ├── publishPdfWithAntennaHouse.gif │ │ │ ├── publishing-dita-documents-to-pdf-with-ah-xsl-formatter.xml │ │ │ ├── publishing-dita-documents.xml │ │ │ ├── publishing.xml │ │ │ ├── quick-start.xml │ │ │ ├── redlining-navigation.xml │ │ │ ├── redlining-toolbar.png │ │ │ ├── redlining.xml │ │ │ ├── redo-button.png │ │ │ ├── redo-operations.xml │ │ │ ├── reference-navigation-in-dita-documents.xml │ │ │ ├── reference.xml │ │ │ ├── references-in-dita-documents.xml │ │ │ ├── references-validation-in-dita-documents.xml │ │ │ ├── related-link.xml │ │ │ ├── related-links.png │ │ │ ├── remove-from-favorites-context-menu.png │ │ │ ├── removing-entity-declaration.xml │ │ │ ├── removing-external-entity-declaration.xml │ │ │ ├── removing-internal-entity-declaration.xml │ │ │ ├── removing-symbols-from-the-favorites-list.xml │ │ │ ├── rename-element-button.png │ │ │ ├── rename-element-dialog-2.png │ │ │ ├── rename-element-dialog.png │ │ │ ├── renamed-element-in-content-map.png │ │ │ ├── renaming-element.xml │ │ │ ├── replace-completed-message.png │ │ │ ├── replace.xml │ │ │ ├── required_attribute.png │ │ │ ├── reset-to-factory-settings-dialog.png │ │ │ ├── resetting-preferences-to-default-settings.xml │ │ │ ├── resolved-and-unresolved-views-of-conref.png │ │ │ ├── resolved-and-unresolved-views-of-topicref.png │ │ │ ├── restore-view-dialog.png │ │ │ ├── restore-view-message-box.xml │ │ │ ├── restore-view-message.png │ │ │ ├── restore-view.xml │ │ │ ├── restoreInterfaceDialog.gif │ │ │ ├── restoring-original-view.xml │ │ │ ├── revise-redline.xml │ │ │ ├── root-element-dialog.xml │ │ │ ├── rootElementDialog.gif │ │ │ ├── rootElementDialog1.gif │ │ │ ├── sample-document-views.png │ │ │ ├── save-button.png │ │ │ ├── save-changes-dialog.png │ │ │ ├── save-doc-to-webdav.xml │ │ │ ├── save-view-dialog-no-doc.png │ │ │ ├── save-view-dialog.png │ │ │ ├── save-view-message-box.xml │ │ │ ├── save-view-message.png │ │ │ ├── save-view-nodoc-message.png │ │ │ ├── save-view.xml │ │ │ ├── saveInterfaceDialog.gif │ │ │ ├── saveXsltParameterSet.gif │ │ │ ├── saving-document.xml │ │ │ ├── search-by-using-xslt-match-patterns.xml │ │ │ ├── search-direction-icon-backwards.png │ │ │ ├── search-direction-icon-forwards.png │ │ │ ├── search-type-icon-attribute-names.png │ │ │ ├── search-type-icon-attribute-values.png │ │ │ ├── search-type-icon-comments.png │ │ │ ├── search-type-icon-text.png │ │ │ ├── search-type-icon-xslt-pattern.png │ │ │ ├── section-element-collapsed.png │ │ │ ├── section-element-expanded.png │ │ │ ├── security-error-domain-name-mismatch-message.png │ │ │ ├── select-color-dialog.png │ │ │ ├── select-font-dialog.png │ │ │ ├── selected-elements-collapsed.png │ │ │ ├── selecting-a-document-portion-in-contentmap.xml │ │ │ ├── selecting-a-document-portion-in-editing-window.xml │ │ │ ├── selecting-an-element-in-editing-window.xml │ │ │ ├── selecting-an-item-in-contentmap.xml │ │ │ ├── selecting-the-content-of-an-element-in-editing-window.xml │ │ │ ├── selecting-the-content-of-an-item-in-contentmap.xml │ │ │ ├── selecting-the-parent-of-an-element-in-editing-window.xml │ │ │ ├── selecting-the-parent-of-an-item-in-contentmap.xml │ │ │ ├── selection-converted-to-external-entity.png │ │ │ ├── selection-converted-to-internal-entity.png │ │ │ ├── selection-copied-as-text-and-pasted.png │ │ │ ├── selection-in-content-map.xml │ │ │ ├── selection-in-editing-window.xml │ │ │ ├── selection-pasted-as-text.png │ │ │ ├── selection-to-convert-to-internal-entity.png │ │ │ ├── selection.xml │ │ │ ├── serna-document-template-matching-rules.xml │ │ │ ├── serna-document-template.xml │ │ │ ├── serna-gui.png │ │ │ ├── serna-gui.xml │ │ │ ├── server-certificate-expired-message.png │ │ │ ├── server-certified-by-an-unknown-authority-message.png │ │ │ ├── set-default-attribute-value-button.png │ │ │ ├── sharing-customizations.xml │ │ │ ├── show-hide-contentmap-button.png │ │ │ ├── show-hide-markup-button.png │ │ │ ├── show-replace-options-button.png │ │ │ ├── show-types-list-change-external-conref-dialog.png │ │ │ ├── show-types-list-change-local-xref.png │ │ │ ├── show-types-list-external-conref.png │ │ │ ├── show-types-list-external-xref.png │ │ │ ├── show-types-list-local-conref.png │ │ │ ├── show-types-list-local-xref.png │ │ │ ├── spanish-localization-of-figure-element.png │ │ │ ├── specifying-autosave-settings.xml │ │ │ ├── specifying-color-of-tags.xml │ │ │ ├── specifying-colors-of-interlacing-blocks.xml │ │ │ ├── specifying-context-hints-settings.xml │ │ │ ├── specifying-default-document-view.xml │ │ │ ├── specifying-default-location-for-new-documents.xml │ │ │ ├── specifying-default-spelling-dictionary.xml │ │ │ ├── specifying-document-background-color.xml │ │ │ ├── specifying-document-content-rendering-preferences.xml │ │ │ ├── specifying-document-editing-preferences.xml │ │ │ ├── specifying-document-opening-preferences.xml │ │ │ ├── specifying-document-related-preferences.xml │ │ │ ├── specifying-document-saving-preferences.xml │ │ │ ├── specifying-dtds.xml │ │ │ ├── specifying-file-types.xml │ │ │ ├── specifying-font-of-tags.xml │ │ │ ├── specifying-general-serna-preferences.xml │ │ │ ├── specifying-gui-language.xml │ │ │ ├── specifying-indent-size-of-blocks.xml │ │ │ ├── specifying-large-document-folding-rules.xml │ │ │ ├── specifying-line-breaks-style.xml │ │ │ ├── specifying-nbsp-rendering.xml │ │ │ ├── specifying-path-to-additional-plugins-directory.xml │ │ │ ├── specifying-plugin-related-preferences.xml │ │ │ ├── specifying-preferences.xml │ │ │ ├── specifying-root-element-for-new-document.xml │ │ │ ├── specifying-system-font.xml │ │ │ ├── specifying-tag-style.xml │ │ │ ├── specifying-undo-redo-stack-depth.xml │ │ │ ├── specifying-viewers-for-published-documents.xml │ │ │ ├── specifying-xml-catalogs.xml │ │ │ ├── specifying-xml-files-search-path.xml │ │ │ ├── spell-check-context-menu.png │ │ │ ├── spell-check-dialog.png │ │ │ ├── spellcheck-completed-message.png │ │ │ ├── spellcheck.xml │ │ │ ├── split-advanced.png │ │ │ ├── split-element-button.png │ │ │ ├── split-para.png │ │ │ ├── splitting-cells.xml │ │ │ ├── splitting-element.xml │ │ │ ├── ssl-support.xml │ │ │ ├── status-bar-text-mode.png │ │ │ ├── status-bar.png │ │ │ ├── status-bar.xml │ │ │ ├── stylesheet-shows-invalid-path.png │ │ │ ├── switch-xslt-parameter-set.xml │ │ │ ├── symbol-added-to-favorites-list.png │ │ │ ├── symbol-removed-from-favorites-list.png │ │ │ ├── symbol-selected-for-insertion.png │ │ │ ├── symbols.xml │ │ │ ├── table-in-markup-mode.png │ │ │ ├── table-navigation.xml │ │ │ ├── table-toolbar.png │ │ │ ├── tags-colored-prefix-independently.png │ │ │ ├── tags-colored-uri-dependently.png │ │ │ ├── task-template-selected-in-new-document-dialog.png │ │ │ ├── task.xml │ │ │ ├── third-party-copyright-notices.xml │ │ │ ├── toolbars.xml │ │ │ ├── tooltip-in-attributes-dialog.png │ │ │ ├── topic-path-entered-manually-applied.png │ │ │ ├── topic-path-entered-manually.png │ │ │ ├── topicref-inserted.png │ │ │ ├── topicref.xml │ │ │ ├── typed-title-2.png │ │ │ ├── types-of-dita-documents.xml │ │ │ ├── ug.dita │ │ │ ├── ug.ditamap │ │ │ ├── ulink-attribute.png │ │ │ ├── ulink-content.png │ │ │ ├── ulink-inserted.png │ │ │ ├── underline.png │ │ │ ├── undo-button.png │ │ │ ├── undo-operations.xml │ │ │ ├── undo-redo-operations.xml │ │ │ ├── unselection.xml │ │ │ ├── untagged.png │ │ │ ├── untagging-element.xml │ │ │ ├── using-attribute-help.xml │ │ │ ├── using-automatic-spell-checking.xml │ │ │ ├── using-element-help.xml │ │ │ ├── using-relative-paths-in-metadata-values.xml │ │ │ ├── validation-modes.xml │ │ │ ├── validator-message-duplicate-id.png │ │ │ ├── validator-message-required-id-not-found.png │ │ │ ├── view-activation-priority.xml │ │ │ ├── view-persistent.xml │ │ │ ├── viewing-document-properties.xml │ │ │ ├── views.xml │ │ │ ├── webdav-properties.xml │ │ │ ├── webdav.xml │ │ │ ├── whitespace-handling.xml │ │ │ ├── word-selected.png │ │ │ ├── working-with-documents.xml │ │ │ ├── working-with-tables.xml │ │ │ ├── wrap-into-element-dialog.png │ │ │ ├── wrap-region.png │ │ │ ├── wrapping-in-element.xml │ │ │ ├── wysiwyg-mode.png │ │ │ ├── wysiwyg-mode.xml │ │ │ ├── xep.xml │ │ │ ├── xinclude-doc.xml │ │ │ ├── xinclude-failed.xml │ │ │ ├── xinclude-location.xml │ │ │ ├── xinclude.xml │ │ │ ├── xml-catalogs.xml │ │ │ ├── xml-metadata.xml │ │ │ ├── xml-schema.xml │ │ │ ├── xref.png │ │ │ ├── xref.xml │ │ │ ├── xsl-stylesheet.xml │ │ │ ├── xslt-match-pattern-examples.xml │ │ │ ├── xslt-parameter-sets.xml │ │ │ ├── xslt-parameters-toolbar.png │ │ │ ├── xsltParameterSetDialog.gif │ │ │ └── zoom-toolbar.png │ │ └── xslbricks │ │ │ └── xbguide.dita │ ├── doc │ │ ├── CatalogManager.properties │ │ ├── GNUmakefile.deploy │ │ ├── betatesters_guide │ │ │ ├── bg-content.xml │ │ │ └── bg.xml │ │ ├── common.ent │ │ ├── developers_guide │ │ │ ├── config-template-doc.xml │ │ │ ├── config-template-documentor.xsl │ │ │ ├── content_map_focus.png │ │ │ ├── csl-adding-templates.png │ │ │ ├── csl-adding-text.png │ │ │ ├── csl-decorating-items.png │ │ │ ├── csl-sample.png │ │ │ ├── dg-contents.xml │ │ │ ├── dg.ent │ │ │ ├── dg.xml │ │ │ ├── linguist.png │ │ │ ├── package-structure.png │ │ │ ├── simple-stylesheet.png │ │ │ └── tocSample.gif │ │ ├── faq │ │ │ ├── faq-contents.xml │ │ │ ├── faq.ent │ │ │ └── faq.xml │ │ ├── gui_items_guide │ │ │ └── gg.xml │ │ ├── index.xml │ │ ├── installation_guide │ │ │ └── ig.xml │ │ ├── reference_card │ │ │ └── reference_card.xml │ │ ├── relnotes.xml │ │ ├── relnotes2.xml │ │ ├── sapi_guide │ │ │ ├── checkEmptyPara.gif │ │ │ ├── helloWorldPlugin.gif │ │ │ ├── insertAddress.gif │ │ │ ├── linkNavigator.gif │ │ │ └── sg.xml │ │ ├── serna-help-structure.xml │ │ ├── serna.png │ │ ├── users_guide │ │ │ ├── IDREF_attribute_type.png │ │ │ ├── ID_attribute_type.png │ │ │ ├── NewDocumentDialog.gif │ │ │ ├── add_attribute.png │ │ │ ├── attributesDialog.gif │ │ │ ├── browse.png │ │ │ ├── changeExternalEntityDialog.gif │ │ │ ├── changeInternalEntityDialog.gif │ │ │ ├── content_map_focus.png │ │ │ ├── convertToExternalEntityDialog.gif │ │ │ ├── convertToInternalEntityDialog.gif │ │ │ ├── copy.png │ │ │ ├── csl-sample.png │ │ │ ├── custom-content-dialog-emphasis.png │ │ │ ├── custom-content-dialog-graphic-section.png │ │ │ ├── custom-content-dialog-graphic-text.png │ │ │ ├── custom-content-dialog-para.png │ │ │ ├── customContentDialogEmphasis.gif │ │ │ ├── customContentDialogGraphicSection.gif │ │ │ ├── customContentDialogGraphicText.gif │ │ │ ├── customContentDialogPara.gif │ │ │ ├── custom_attribute_type.png │ │ │ ├── customize-dialog.png │ │ │ ├── customizeDialog.gif │ │ │ ├── cut.png │ │ │ ├── default_attribute.png │ │ │ ├── delete_attribute.png │ │ │ ├── documentTemplatesDialog.gif │ │ │ ├── edit-custom-content-dialog.png │ │ │ ├── editCommentDialog.gif │ │ │ ├── editCustomContentDialog.gif │ │ │ ├── editPiDialog.gif │ │ │ ├── editSelectionAsText.gif │ │ │ ├── editXsltParameter.gif │ │ │ ├── element_help.png │ │ │ ├── entityDeclarationsDialog.gif │ │ │ ├── findTab.gif │ │ │ ├── findTopDockedDialog.gif │ │ │ ├── fixed_attribute.png │ │ │ ├── i18n-preferences.png │ │ │ ├── icon-list.png │ │ │ ├── insert-after.png │ │ │ ├── insert-before.png │ │ │ ├── insert-into.png │ │ │ ├── insertElementDialog.gif │ │ │ ├── insertElementDockedRight.gif │ │ │ ├── insertElementDockedTop.gif │ │ │ ├── insertElementDocking.gif │ │ │ ├── insertElementUndocked.gif │ │ │ ├── insertExternalEntityDialog.gif │ │ │ ├── insertInternalEntityDialog.gif │ │ │ ├── insertSymbolDialog.gif │ │ │ ├── modified_attribute.png │ │ │ ├── newXsltParameterSet.gif │ │ │ ├── newdoc.gif │ │ │ ├── newdoc.png │ │ │ ├── paste.png │ │ │ ├── preferencesApplications.gif │ │ │ ├── preferencesFileTypes.gif │ │ │ ├── preferencesFolding.gif │ │ │ ├── preferencesGeneral.gif │ │ │ ├── preferencesSearchPaths.gif │ │ │ ├── preferencesTagStyle.gif │ │ │ ├── preferencesXmlCatalogs.gif │ │ │ ├── publishDialog.gif │ │ │ ├── publishPdfWithAntennaHouse.gif │ │ │ ├── pythonConsole.gif │ │ │ ├── required_attribute.png │ │ │ ├── restore-view-dialog.png │ │ │ ├── restore-view-message.png │ │ │ ├── restoreInterfaceDialog.gif │ │ │ ├── rootElementDialog.gif │ │ │ ├── rootElementDialog1.gif │ │ │ ├── save-view-dialog-no-doc.png │ │ │ ├── save-view-dialog.png │ │ │ ├── save-view-message.png │ │ │ ├── save-view-nodoc-message.png │ │ │ ├── saveInterfaceDialog.gif │ │ │ ├── saveXsltParameterSet.gif │ │ │ ├── ug-contents.xml │ │ │ ├── ug.ent │ │ │ ├── ug.xml │ │ │ ├── view-activation-priority.xml │ │ │ └── xsltParameterSetDialog.gif │ │ ├── views.ent │ │ └── xslbricks │ │ │ ├── xb.ent │ │ │ ├── xbguide-contents.xml │ │ │ └── xbguide.xml │ ├── examples │ │ ├── dita │ │ │ └── elementref │ │ │ │ ├── commonLRdefs.xml │ │ │ │ ├── elementref-xs.mod │ │ │ │ ├── elementref.mod │ │ │ │ ├── elementref2fo.xsl │ │ │ │ ├── elementref2fo_shell.xsl │ │ │ │ ├── elementref_shell.dtd │ │ │ │ ├── elementref_shell.xsd │ │ │ │ ├── elementref_strings.xml │ │ │ │ ├── map.xml │ │ │ │ └── topicref.xml │ │ ├── docbook │ │ │ ├── docbook_intro.xml │ │ │ ├── serna_cycle.png │ │ │ └── syntext_logo.png │ │ ├── gca │ │ │ ├── gca_example.xml │ │ │ └── serna_cycle.png │ │ ├── ideadb │ │ │ ├── ideadb_example.xml │ │ │ └── serna_cycle.png │ │ ├── interactive_example │ │ │ ├── iex.dtd │ │ │ ├── iex.xml │ │ │ ├── iex.xsd │ │ │ ├── iex_nl.xml │ │ │ ├── table_spans.fo │ │ │ └── xsl │ │ │ │ ├── elems.xsl │ │ │ │ ├── examples.xsl │ │ │ │ ├── iex.xsl │ │ │ │ ├── lists.xsl │ │ │ │ ├── page-setup.xsl │ │ │ │ ├── syntext_logo.png │ │ │ │ ├── tables.xsl │ │ │ │ └── toc.xsl │ │ ├── johnb-timesheet-102003.xml │ │ ├── nitf │ │ │ ├── high-tide.jpg │ │ │ └── nitf-fishing.xml │ │ ├── sapi │ │ │ └── sapi_example.xml │ │ ├── tei │ │ │ ├── TeiExample.xml │ │ │ ├── TeiExample2.xml │ │ │ └── serna_cycle.png │ │ ├── xinclude │ │ │ ├── syntext_logo.png │ │ │ ├── xinclude-1.xml │ │ │ ├── xinclude-2.xml │ │ │ ├── xinclude-3.xml │ │ │ ├── xinclude-4.xml │ │ │ └── xinclude-example.xml │ │ └── xslbricks │ │ │ ├── decorationfo.xsl │ │ │ ├── decorationhtml.xsl │ │ │ ├── decorationmain.xsl │ │ │ ├── decorationtest.xml │ │ │ ├── example.dtd │ │ │ ├── example.xsd │ │ │ ├── myfoexample.xsl │ │ │ ├── myhtmlexample.xsl │ │ │ ├── myspecs.xsl │ │ │ ├── syntext_logo.png │ │ │ └── xslbricks_intro.xml │ ├── icons │ │ ├── SernaIcon16.png │ │ ├── SernaIcon32.png │ │ ├── SernaIcon48.png │ │ └── other_template++.png │ ├── plugins │ │ ├── contentmap │ │ │ └── contentmap.spd │ │ ├── customcontent │ │ │ └── customcontent.spd │ │ ├── dita-examples │ │ │ ├── README │ │ │ ├── __init__.py │ │ │ ├── ditadw-ditamap-script.ahpp │ │ │ ├── ditadw-ditamap-script.sdtx │ │ │ ├── ditadw-ditamap-script.xsltp │ │ │ ├── ditadw-topic-script.ahpp │ │ │ ├── ditadw-topic-script.sdtx │ │ │ ├── ditatopicref.mk.linux │ │ │ ├── ditatopicref.mk.win32 │ │ │ ├── ditatopicref.py │ │ │ ├── ditatopicref_cxx.spd │ │ │ ├── ditatopicref_py.spd │ │ │ ├── dw_fig2.png │ │ │ ├── empty_topic.py │ │ │ ├── empty_topic.spd │ │ │ ├── make-examples.sh │ │ │ ├── map.xml │ │ │ ├── new_topic.py │ │ │ ├── new_topic.spd │ │ │ ├── open_topicref.py │ │ │ ├── open_topicref.spd │ │ │ ├── topic1.xml │ │ │ └── topic2.xml │ │ ├── dita-faq │ │ │ ├── catalog-faq.xml │ │ │ ├── dita-faq.csl │ │ │ ├── dita-faq.scc │ │ │ ├── dita-faq.sdt │ │ │ ├── dita-faq.xsltp │ │ │ ├── dtd │ │ │ │ ├── faq.mod │ │ │ │ └── faq_shell.dtd │ │ │ ├── element-help │ │ │ │ └── faqhelp.sehelp │ │ │ ├── examples │ │ │ │ ├── DITA-faq.xml │ │ │ │ └── ditafaq.xml │ │ │ ├── faq2pdf.bat │ │ │ ├── faq2pdf.sh │ │ │ ├── faq2pdf_ah.bat │ │ │ ├── faq2pdf_ah.sh │ │ │ ├── faq2xhtml.bat │ │ │ ├── faq2xhtml.sh │ │ │ ├── xsd │ │ │ │ ├── faq-xs.mod │ │ │ │ └── faq_shell.xsd │ │ │ └── xsl │ │ │ │ ├── faq2fo.xsl │ │ │ │ ├── faq2fo_shell.xsl │ │ │ │ ├── faq2fo_toc.xsl │ │ │ │ ├── faq2html.xsl │ │ │ │ ├── faq2html_shell.xsl │ │ │ │ ├── faq2html_toc.xsl │ │ │ │ ├── faq2pdf_shell.xsl │ │ │ │ ├── faq2pdf_toc.xsl │ │ │ │ └── i18n │ │ │ │ └── faq_strings.xml │ │ ├── dita │ │ │ ├── DITA-OT1.2-src │ │ │ │ ├── CommonPublicLicense-v10.html │ │ │ │ ├── catalog-ant.xml │ │ │ │ ├── catalog-dita.txt │ │ │ │ ├── catalog-dita.xml │ │ │ │ ├── dtd │ │ │ │ │ ├── concept.dtd │ │ │ │ │ ├── concept.mod │ │ │ │ │ ├── dita132 │ │ │ │ │ │ ├── concept.dtd │ │ │ │ │ │ ├── concept.mod │ │ │ │ │ │ ├── ditabase.dtd │ │ │ │ │ │ ├── highlight-domain.ent │ │ │ │ │ │ ├── highlight-domain.mod │ │ │ │ │ │ ├── map.dtd │ │ │ │ │ │ ├── map.mod │ │ │ │ │ │ ├── mapgroup.ent │ │ │ │ │ │ ├── mapgroup.mod │ │ │ │ │ │ ├── meta_xml.mod │ │ │ │ │ │ ├── programming-domain.ent │ │ │ │ │ │ ├── programming-domain.mod │ │ │ │ │ │ ├── reference.dtd │ │ │ │ │ │ ├── reference.mod │ │ │ │ │ │ ├── software-domain.ent │ │ │ │ │ │ ├── software-domain.mod │ │ │ │ │ │ ├── task.dtd │ │ │ │ │ │ ├── task.mod │ │ │ │ │ │ ├── tbl_xml.mod │ │ │ │ │ │ ├── topic.dtd │ │ │ │ │ │ ├── topic.mod │ │ │ │ │ │ ├── topic_class.ent │ │ │ │ │ │ ├── topic_defn.ent │ │ │ │ │ │ ├── ui-domain.ent │ │ │ │ │ │ ├── ui-domain.mod │ │ │ │ │ │ ├── utilities-domain.ent │ │ │ │ │ │ └── utilities-domain.mod │ │ │ │ │ ├── ditabase.dtd │ │ │ │ │ ├── highlightDomain.ent │ │ │ │ │ ├── highlightDomain.mod │ │ │ │ │ ├── map.dtd │ │ │ │ │ ├── map.mod │ │ │ │ │ ├── mapGroup.ent │ │ │ │ │ ├── mapGroup.mod │ │ │ │ │ ├── metaDecl.mod │ │ │ │ │ ├── programmingDomain.ent │ │ │ │ │ ├── programmingDomain.mod │ │ │ │ │ ├── reference.dtd │ │ │ │ │ ├── reference.mod │ │ │ │ │ ├── softwareDomain.ent │ │ │ │ │ ├── softwareDomain.mod │ │ │ │ │ ├── task.dtd │ │ │ │ │ ├── task.mod │ │ │ │ │ ├── tblDecl.mod │ │ │ │ │ ├── topic.dtd │ │ │ │ │ ├── topic.mod │ │ │ │ │ ├── topicAttr.mod │ │ │ │ │ ├── topicDefn.ent │ │ │ │ │ ├── uiDomain.ent │ │ │ │ │ ├── uiDomain.mod │ │ │ │ │ ├── utilitiesDomain.ent │ │ │ │ │ └── utilitiesDomain.mod │ │ │ │ ├── relnotes.txt │ │ │ │ ├── resource │ │ │ │ │ ├── common.css │ │ │ │ │ ├── commonltr.css │ │ │ │ │ ├── commonrtl.css │ │ │ │ │ ├── delta.gif │ │ │ │ │ ├── deltaend.gif │ │ │ │ │ ├── index.html │ │ │ │ │ ├── messages.dtd │ │ │ │ │ ├── messages.xml │ │ │ │ │ └── plugin.xml │ │ │ │ ├── samples │ │ │ │ │ ├── concepts │ │ │ │ │ │ ├── garageconceptsoverview.xml │ │ │ │ │ │ ├── lawnmower.xml │ │ │ │ │ │ ├── oil.xml │ │ │ │ │ │ ├── paint.xml │ │ │ │ │ │ ├── shelving.xml │ │ │ │ │ │ ├── snowshovel.xml │ │ │ │ │ │ ├── toolbox.xml │ │ │ │ │ │ ├── tools.xml │ │ │ │ │ │ ├── waterhose.xml │ │ │ │ │ │ ├── wheelbarrow.xml │ │ │ │ │ │ ├── workbench.xml │ │ │ │ │ │ └── wwfluid.xml │ │ │ │ │ ├── hierarchy.ditamap │ │ │ │ │ ├── image │ │ │ │ │ │ ├── carwash.eps │ │ │ │ │ │ ├── carwash.gif │ │ │ │ │ │ └── carwash.jpg │ │ │ │ │ ├── sequence.ditamap │ │ │ │ │ └── tasks │ │ │ │ │ │ ├── changingtheoil.xml │ │ │ │ │ │ ├── garagetaskoverview.xml │ │ │ │ │ │ ├── organizing.xml │ │ │ │ │ │ ├── shovellingsnow.xml │ │ │ │ │ │ ├── spraypainting.xml │ │ │ │ │ │ ├── takinggarbage.xml │ │ │ │ │ │ └── washingthecar.xml │ │ │ │ ├── schema │ │ │ │ │ ├── concept.xsd │ │ │ │ │ ├── conceptGrp.xsd │ │ │ │ │ ├── conceptMod.xsd │ │ │ │ │ ├── dita132 │ │ │ │ │ │ ├── concept.grp │ │ │ │ │ │ ├── concept.mod │ │ │ │ │ │ ├── concept.xsd │ │ │ │ │ │ ├── ditabase.xsd │ │ │ │ │ │ ├── highlight-domain.mod │ │ │ │ │ │ ├── map.grp │ │ │ │ │ │ ├── map.mod │ │ │ │ │ │ ├── map.xsd │ │ │ │ │ │ ├── mapgroup.mod │ │ │ │ │ │ ├── meta_xml.grp │ │ │ │ │ │ ├── meta_xml.mod │ │ │ │ │ │ ├── programming-domain.mod │ │ │ │ │ │ ├── reference.grp │ │ │ │ │ │ ├── reference.mod │ │ │ │ │ │ ├── reference.xsd │ │ │ │ │ │ ├── relnotes_schema.txt │ │ │ │ │ │ ├── software-domain.mod │ │ │ │ │ │ ├── task.grp │ │ │ │ │ │ ├── task.mod │ │ │ │ │ │ ├── task.xsd │ │ │ │ │ │ ├── tbl_xml.grp │ │ │ │ │ │ ├── tbl_xml.mod │ │ │ │ │ │ ├── topic.grp │ │ │ │ │ │ ├── topic.mod │ │ │ │ │ │ ├── topic.xsd │ │ │ │ │ │ ├── topic_domains.mod │ │ │ │ │ │ ├── ui-domain.mod │ │ │ │ │ │ ├── utilities-domain.mod │ │ │ │ │ │ └── xml.xsd │ │ │ │ │ ├── ditaarch.xsd │ │ │ │ │ ├── ditabase.xsd │ │ │ │ │ ├── highlightDomain.xsd │ │ │ │ │ ├── map.xsd │ │ │ │ │ ├── mapGroupMod.xsd │ │ │ │ │ ├── mapGrp.xsd │ │ │ │ │ ├── mapMod.xsd │ │ │ │ │ ├── metaDeclGrp.xsd │ │ │ │ │ ├── metaDeclMod.xsd │ │ │ │ │ ├── programmingDomain.xsd │ │ │ │ │ ├── reference.xsd │ │ │ │ │ ├── referenceGrp.xsd │ │ │ │ │ ├── referenceMod.xsd │ │ │ │ │ ├── softwareDomain.xsd │ │ │ │ │ ├── task.xsd │ │ │ │ │ ├── taskGrp.xsd │ │ │ │ │ ├── taskMod.xsd │ │ │ │ │ ├── tblDeclGrp.xsd │ │ │ │ │ ├── tblDeclMod.xsd │ │ │ │ │ ├── topic.xsd │ │ │ │ │ ├── topicGrp.xsd │ │ │ │ │ ├── topicMod.xsd │ │ │ │ │ ├── uiDomain.xsd │ │ │ │ │ ├── utilitiesDomain.xsd │ │ │ │ │ └── xml.xsd │ │ │ │ └── xsl │ │ │ │ │ ├── common │ │ │ │ │ ├── dita-utilities.xsl │ │ │ │ │ ├── output-message.xsl │ │ │ │ │ ├── strings-ar-eg.xml │ │ │ │ │ ├── strings-be-by.xml │ │ │ │ │ ├── strings-bg-bg.xml │ │ │ │ │ ├── strings-ca-es.xml │ │ │ │ │ ├── strings-cs-cz.xml │ │ │ │ │ ├── strings-da-dk.xml │ │ │ │ │ ├── strings-de-ch.xml │ │ │ │ │ ├── strings-de-de.xml │ │ │ │ │ ├── strings-el-gr.xml │ │ │ │ │ ├── strings-en-ca.xml │ │ │ │ │ ├── strings-en-gb.xml │ │ │ │ │ ├── strings-en-us.xml │ │ │ │ │ ├── strings-es-es.xml │ │ │ │ │ ├── strings-et-ee.xml │ │ │ │ │ ├── strings-fi-fi.xml │ │ │ │ │ ├── strings-fr-be.xml │ │ │ │ │ ├── strings-fr-ca.xml │ │ │ │ │ ├── strings-fr-ch.xml │ │ │ │ │ ├── strings-fr-fr.xml │ │ │ │ │ ├── strings-he-il.xml │ │ │ │ │ ├── strings-hr-hr.xml │ │ │ │ │ ├── strings-hu-hu.xml │ │ │ │ │ ├── strings-is-is.xml │ │ │ │ │ ├── strings-it-ch.xml │ │ │ │ │ ├── strings-it-it.xml │ │ │ │ │ ├── strings-ja-jp.xml │ │ │ │ │ ├── strings-ko-kr.xml │ │ │ │ │ ├── strings-lt-lt.xml │ │ │ │ │ ├── strings-lv-lv.xml │ │ │ │ │ ├── strings-mk-mk.xml │ │ │ │ │ ├── strings-nl-be.xml │ │ │ │ │ ├── strings-nl-nl.xml │ │ │ │ │ ├── strings-no-no.xml │ │ │ │ │ ├── strings-pl-pl.xml │ │ │ │ │ ├── strings-pt-br.xml │ │ │ │ │ ├── strings-pt-pt.xml │ │ │ │ │ ├── strings-ro-ro.xml │ │ │ │ │ ├── strings-ru-ru.xml │ │ │ │ │ ├── strings-sk-sk.xml │ │ │ │ │ ├── strings-sl-si.xml │ │ │ │ │ ├── strings-sr-sp.xml │ │ │ │ │ ├── strings-sv-se.xml │ │ │ │ │ ├── strings-th-th.xml │ │ │ │ │ ├── strings-tr-tr.xml │ │ │ │ │ ├── strings-uk-ua.xml │ │ │ │ │ ├── strings-zh-cn.xml │ │ │ │ │ ├── strings-zh-tw.xml │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── dita2docbook.xsl │ │ │ │ │ ├── dita2docbook_template.xsl │ │ │ │ │ ├── dita2fo-shell.xsl │ │ │ │ │ ├── dita2fo-shell_template.xsl │ │ │ │ │ ├── dita2html.xsl │ │ │ │ │ ├── dita2rtf.xsl │ │ │ │ │ ├── dita2rtf_template.xsl │ │ │ │ │ ├── dita2troff-step1-shell.xsl │ │ │ │ │ ├── dita2troff-step2-shell.xsl │ │ │ │ │ ├── dita2xhtml.xsl │ │ │ │ │ ├── dita2xhtml_template.xsl │ │ │ │ │ ├── docbook │ │ │ │ │ ├── highlight2db.xsl │ │ │ │ │ ├── programming2db.xsl │ │ │ │ │ ├── software2db.xsl │ │ │ │ │ ├── topic2db.xsl │ │ │ │ │ ├── ui2db.xsl │ │ │ │ │ └── util.xsl │ │ │ │ │ ├── generalize.xsl │ │ │ │ │ ├── map2docbook.xsl │ │ │ │ │ ├── map2eclipse.xsl │ │ │ │ │ ├── map2hhc.xsl │ │ │ │ │ ├── map2hhp.xsl │ │ │ │ │ ├── map2htmtoc.xsl │ │ │ │ │ ├── map2javahelpmap.xsl │ │ │ │ │ ├── map2javahelpset.xsl │ │ │ │ │ ├── map2javahelptoc.xsl │ │ │ │ │ ├── map2plugin-cp.xsl │ │ │ │ │ ├── map2plugin.xsl │ │ │ │ │ ├── normalize.xsl │ │ │ │ │ ├── preprocess │ │ │ │ │ ├── conref.xsl │ │ │ │ │ ├── maplink.xsl │ │ │ │ │ ├── mappull.xsl │ │ │ │ │ └── topicpull.xsl │ │ │ │ │ ├── pretty.xsl │ │ │ │ │ ├── specialize.xsl │ │ │ │ │ ├── topic2fo-shell.xsl │ │ │ │ │ ├── topicmerge.xsl │ │ │ │ │ ├── troff │ │ │ │ │ ├── step1-hi-d.xsl │ │ │ │ │ ├── step1.xsl │ │ │ │ │ └── step2.xsl │ │ │ │ │ ├── xslfo │ │ │ │ │ ├── dita-page-setup.xsl │ │ │ │ │ ├── dita2fo-calstable.xsl │ │ │ │ │ ├── dita2fo-elems.xsl │ │ │ │ │ ├── dita2fo-links.xsl │ │ │ │ │ ├── dita2fo-lists.xsl │ │ │ │ │ ├── dita2fo-parms.xsl │ │ │ │ │ ├── dita2fo-prolog.xsl │ │ │ │ │ ├── dita2fo-simpletable.xsl │ │ │ │ │ ├── dita2fo-stubs.xsl │ │ │ │ │ ├── dita2fo-subroutines.xsl │ │ │ │ │ ├── dita2fo-titles.xsl │ │ │ │ │ ├── domains2fo.xsl │ │ │ │ │ ├── toc2fo.xsl │ │ │ │ │ └── topic2foImpl.xsl │ │ │ │ │ ├── xslhtml │ │ │ │ │ ├── dita2htmlImpl.xsl │ │ │ │ │ ├── get-meta.xsl │ │ │ │ │ ├── hi-d.xsl │ │ │ │ │ ├── map2TOC.xsl │ │ │ │ │ ├── mapwalker.xsl │ │ │ │ │ ├── pr-d.xsl │ │ │ │ │ ├── refdisplay.xsl │ │ │ │ │ ├── rel-links.xsl │ │ │ │ │ ├── sw-d.xsl │ │ │ │ │ ├── syntax-braces.xsl │ │ │ │ │ ├── syntax-svg.xsl │ │ │ │ │ ├── taskdisplay.xsl │ │ │ │ │ ├── ui-d.xsl │ │ │ │ │ └── ut-d.xsl │ │ │ │ │ └── xslrtf │ │ │ │ │ ├── dita2rtf-img.xsl │ │ │ │ │ ├── dita2rtf-parms.xsl │ │ │ │ │ ├── dita2rtf-table.xsl │ │ │ │ │ ├── dita2rtfImpl.xsl │ │ │ │ │ ├── hi-d.xsl │ │ │ │ │ ├── pr-d.xsl │ │ │ │ │ ├── sw-d.xsl │ │ │ │ │ └── ui-d.xsl │ │ │ ├── DITA-OT1.3.1 │ │ │ │ ├── dtd │ │ │ │ │ ├── bookmap.dtd │ │ │ │ │ ├── bookmap.mod │ │ │ │ │ ├── commonElements.ent │ │ │ │ │ ├── commonElements.mod │ │ │ │ │ ├── concept.dtd │ │ │ │ │ ├── concept.mod │ │ │ │ │ ├── dita132 │ │ │ │ │ │ ├── concept.dtd │ │ │ │ │ │ ├── concept.mod │ │ │ │ │ │ ├── ditabase.dtd │ │ │ │ │ │ ├── highlight-domain.ent │ │ │ │ │ │ ├── highlight-domain.mod │ │ │ │ │ │ ├── map.dtd │ │ │ │ │ │ ├── map.mod │ │ │ │ │ │ ├── mapgroup.ent │ │ │ │ │ │ ├── mapgroup.mod │ │ │ │ │ │ ├── meta_xml.mod │ │ │ │ │ │ ├── programming-domain.ent │ │ │ │ │ │ ├── programming-domain.mod │ │ │ │ │ │ ├── reference.dtd │ │ │ │ │ │ ├── reference.mod │ │ │ │ │ │ ├── software-domain.ent │ │ │ │ │ │ ├── software-domain.mod │ │ │ │ │ │ ├── task.dtd │ │ │ │ │ │ ├── task.mod │ │ │ │ │ │ ├── tbl_xml.mod │ │ │ │ │ │ ├── topic.dtd │ │ │ │ │ │ ├── topic.mod │ │ │ │ │ │ ├── topic_class.ent │ │ │ │ │ │ ├── topic_defn.ent │ │ │ │ │ │ ├── ui-domain.ent │ │ │ │ │ │ ├── ui-domain.mod │ │ │ │ │ │ ├── utilities-domain.ent │ │ │ │ │ │ └── utilities-domain.mod │ │ │ │ │ ├── ditabase.dtd │ │ │ │ │ ├── glossary.dtd │ │ │ │ │ ├── glossary.mod │ │ │ │ │ ├── highlightDomain.ent │ │ │ │ │ ├── highlightDomain.mod │ │ │ │ │ ├── indexingDomain.ent │ │ │ │ │ ├── indexingDomain.mod │ │ │ │ │ ├── map.dtd │ │ │ │ │ ├── map.mod │ │ │ │ │ ├── mapGroup.ent │ │ │ │ │ ├── mapGroup.mod │ │ │ │ │ ├── metaDecl.mod │ │ │ │ │ ├── programmingDomain.ent │ │ │ │ │ ├── programmingDomain.mod │ │ │ │ │ ├── reference.dtd │ │ │ │ │ ├── reference.mod │ │ │ │ │ ├── softwareDomain.ent │ │ │ │ │ ├── softwareDomain.mod │ │ │ │ │ ├── task.dtd │ │ │ │ │ ├── task.mod │ │ │ │ │ ├── tblDecl.mod │ │ │ │ │ ├── topic.dtd │ │ │ │ │ ├── topic.mod │ │ │ │ │ ├── topicAttr.mod │ │ │ │ │ ├── topicDefn.ent │ │ │ │ │ ├── uiDomain.ent │ │ │ │ │ ├── uiDomain.mod │ │ │ │ │ ├── utilitiesDomain.ent │ │ │ │ │ ├── utilitiesDomain.mod │ │ │ │ │ ├── xnalDomain.ent │ │ │ │ │ └── xnalDomain.mod │ │ │ │ └── schema │ │ │ │ │ ├── bookmap.xsd │ │ │ │ │ ├── bookmapGrp.xsd │ │ │ │ │ ├── bookmapMod.xsd │ │ │ │ │ ├── commonElementGrp.xsd │ │ │ │ │ ├── commonElementMod.xsd │ │ │ │ │ ├── concept.xsd │ │ │ │ │ ├── conceptGrp.xsd │ │ │ │ │ ├── conceptMod.xsd │ │ │ │ │ ├── dita132 │ │ │ │ │ ├── concept.grp │ │ │ │ │ ├── concept.mod │ │ │ │ │ ├── concept.xsd │ │ │ │ │ ├── ditabase.xsd │ │ │ │ │ ├── highlight-domain.mod │ │ │ │ │ ├── map.grp │ │ │ │ │ ├── map.mod │ │ │ │ │ ├── map.xsd │ │ │ │ │ ├── mapgroup.mod │ │ │ │ │ ├── meta_xml.grp │ │ │ │ │ ├── meta_xml.mod │ │ │ │ │ ├── programming-domain.mod │ │ │ │ │ ├── reference.grp │ │ │ │ │ ├── reference.mod │ │ │ │ │ ├── reference.xsd │ │ │ │ │ ├── relnotes_schema.txt │ │ │ │ │ ├── software-domain.mod │ │ │ │ │ ├── task.grp │ │ │ │ │ ├── task.mod │ │ │ │ │ ├── task.xsd │ │ │ │ │ ├── tbl_xml.grp │ │ │ │ │ ├── tbl_xml.mod │ │ │ │ │ ├── topic.grp │ │ │ │ │ ├── topic.mod │ │ │ │ │ ├── topic.xsd │ │ │ │ │ ├── topic_domains.mod │ │ │ │ │ ├── ui-domain.mod │ │ │ │ │ ├── utilities-domain.mod │ │ │ │ │ └── xml.xsd │ │ │ │ │ ├── ditaarch.xsd │ │ │ │ │ ├── ditabase.xsd │ │ │ │ │ ├── glossary.xsd │ │ │ │ │ ├── glossaryGrp.xsd │ │ │ │ │ ├── glossaryMod.xsd │ │ │ │ │ ├── highlightDomain.xsd │ │ │ │ │ ├── indexingDomain.xsd │ │ │ │ │ ├── map.xsd │ │ │ │ │ ├── mapGroupMod.xsd │ │ │ │ │ ├── mapGrp.xsd │ │ │ │ │ ├── mapMod.xsd │ │ │ │ │ ├── metaDeclGrp.xsd │ │ │ │ │ ├── metaDeclMod.xsd │ │ │ │ │ ├── programmingDomain.xsd │ │ │ │ │ ├── reference.xsd │ │ │ │ │ ├── referenceGrp.xsd │ │ │ │ │ ├── referenceMod.xsd │ │ │ │ │ ├── softwareDomain.xsd │ │ │ │ │ ├── task.xsd │ │ │ │ │ ├── taskGrp.xsd │ │ │ │ │ ├── taskMod.xsd │ │ │ │ │ ├── tblDeclGrp.xsd │ │ │ │ │ ├── tblDeclMod.xsd │ │ │ │ │ ├── topic.xsd │ │ │ │ │ ├── topicGrp.xsd │ │ │ │ │ ├── topicMod.xsd │ │ │ │ │ ├── uiDomain.xsd │ │ │ │ │ ├── utilitiesDomain.xsd │ │ │ │ │ ├── xml.xsd │ │ │ │ │ └── xnalDomain.xsd │ │ │ ├── README_DITA-OT1.2 │ │ │ ├── __init__.py │ │ │ ├── catalog-10.xml │ │ │ ├── catalog-11-common.ent │ │ │ ├── catalog-11-dist.xml │ │ │ ├── catalog-11.xml │ │ │ ├── catalog-dita-11.xml │ │ │ ├── catalog-dita-common.ent │ │ │ ├── common_dita_actions.ent │ │ │ ├── common_dita_buttons.ent │ │ │ ├── common_dita_menu_items.ent │ │ │ ├── dialogs │ │ │ │ ├── ExternalReferenceDialog.py │ │ │ │ ├── ExternalReferenceDialogBase.ui │ │ │ │ ├── InsertReferenceDialog.py │ │ │ │ ├── InsertReferenceDialog.ui │ │ │ │ ├── InsertReferenceDialogImpl.py │ │ │ │ ├── LocalReferenceDialogBase.ui │ │ │ │ ├── ReferenceDialogBase.ui │ │ │ │ ├── TopicReferenceDialogBase.ui │ │ │ │ ├── __init__.py │ │ │ │ ├── groveutil.py │ │ │ │ ├── icons.py │ │ │ │ └── linknavigator.py │ │ │ ├── dita-map.csl │ │ │ ├── dita-ot-settings-dist.ent │ │ │ ├── dita-ot-settings.ent │ │ │ ├── dita-scc.ent │ │ │ ├── dita-scope-defs.ent │ │ │ ├── dita-topic.csl │ │ │ ├── dita-xsl-serna │ │ │ │ ├── bookmap2fo.xsl │ │ │ │ ├── common │ │ │ │ │ ├── dita-utilities.xsl │ │ │ │ │ ├── output-message.xsl │ │ │ │ │ ├── strings-ar-eg.xml │ │ │ │ │ ├── strings-be-by.xml │ │ │ │ │ ├── strings-bg-bg.xml │ │ │ │ │ ├── strings-ca-es.xml │ │ │ │ │ ├── strings-cs-cz.xml │ │ │ │ │ ├── strings-da-dk.xml │ │ │ │ │ ├── strings-de-ch.xml │ │ │ │ │ ├── strings-de-de.xml │ │ │ │ │ ├── strings-el-gr.xml │ │ │ │ │ ├── strings-en-ca.xml │ │ │ │ │ ├── strings-en-gb.xml │ │ │ │ │ ├── strings-en-us.xml │ │ │ │ │ ├── strings-es-es.xml │ │ │ │ │ ├── strings-et-ee.xml │ │ │ │ │ ├── strings-fi-fi.xml │ │ │ │ │ ├── strings-fr-be.xml │ │ │ │ │ ├── strings-fr-ca.xml │ │ │ │ │ ├── strings-fr-ch.xml │ │ │ │ │ ├── strings-fr-fr.xml │ │ │ │ │ ├── strings-he-il.xml │ │ │ │ │ ├── strings-hr-hr.xml │ │ │ │ │ ├── strings-hu-hu.xml │ │ │ │ │ ├── strings-is-is.xml │ │ │ │ │ ├── strings-it-ch.xml │ │ │ │ │ ├── strings-it-it.xml │ │ │ │ │ ├── strings-ja-jp.xml │ │ │ │ │ ├── strings-ko-kr.xml │ │ │ │ │ ├── strings-lt-lt.xml │ │ │ │ │ ├── strings-lv-lv.xml │ │ │ │ │ ├── strings-mk-mk.xml │ │ │ │ │ ├── strings-nl-be.xml │ │ │ │ │ ├── strings-nl-nl.xml │ │ │ │ │ ├── strings-no-no.xml │ │ │ │ │ ├── strings-pl-pl.xml │ │ │ │ │ ├── strings-pt-br.xml │ │ │ │ │ ├── strings-pt-pt.xml │ │ │ │ │ ├── strings-ro-ro.xml │ │ │ │ │ ├── strings-ru-ru.xml │ │ │ │ │ ├── strings-sk-sk.xml │ │ │ │ │ ├── strings-sl-si.xml │ │ │ │ │ ├── strings-sr-sp.xml │ │ │ │ │ ├── strings-sv-se.xml │ │ │ │ │ ├── strings-th-th.xml │ │ │ │ │ ├── strings-tr-tr.xml │ │ │ │ │ ├── strings-uk-ua.xml │ │ │ │ │ ├── strings-zh-cn.xml │ │ │ │ │ ├── strings-zh-tw.xml │ │ │ │ │ └── strings.xml │ │ │ │ ├── demo │ │ │ │ │ ├── elementref │ │ │ │ │ │ ├── elementref2fo.xsl │ │ │ │ │ │ ├── elementref2fo_shell.xsl │ │ │ │ │ │ └── elementref_strings.xml │ │ │ │ │ ├── enote │ │ │ │ │ │ ├── enote2fo.xsl │ │ │ │ │ │ ├── enote2fo_shell.xsl │ │ │ │ │ │ └── enote_strings.xml │ │ │ │ │ └── faq │ │ │ │ │ │ ├── faq2fo.xsl │ │ │ │ │ │ ├── faq2fo_shell.xsl │ │ │ │ │ │ └── faq_strings.xml │ │ │ │ ├── dita-I18N.xsl │ │ │ │ ├── dita-conref.xsl │ │ │ │ ├── dita-elems.xsl │ │ │ │ ├── dita-links.xsl │ │ │ │ ├── dita-lists.xsl │ │ │ │ ├── dita-page-setup.xsl │ │ │ │ ├── dita-parms.xsl │ │ │ │ ├── dita-prolog.xsl │ │ │ │ ├── dita-simpletable.xsl │ │ │ │ ├── dita-subroutines.xsl │ │ │ │ ├── dita-table.xsl │ │ │ │ ├── dita-titles.xsl │ │ │ │ ├── dita2fo_shell.xsl │ │ │ │ ├── domains2fo.xsl │ │ │ │ ├── map2fo.xsl │ │ │ │ ├── map2fo_shell.xsl │ │ │ │ ├── strings.xml │ │ │ │ └── topic2fo.xsl │ │ │ ├── dita.ahpp │ │ │ ├── dita.xsltp │ │ │ ├── dita2pdf.bat │ │ │ ├── dita2pdf.sh │ │ │ ├── dita2xhtml.bat │ │ │ ├── dita2xhtml.sh │ │ │ ├── ditahelp │ │ │ │ ├── alt.html │ │ │ │ ├── anchor.html │ │ │ │ ├── apiname.html │ │ │ │ ├── area.html │ │ │ │ ├── assistant.png │ │ │ │ ├── audience.html │ │ │ │ ├── author.html │ │ │ │ ├── b.html │ │ │ │ ├── body.html │ │ │ │ ├── boolean.html │ │ │ │ ├── brand.html │ │ │ │ ├── category.html │ │ │ │ ├── chdesc.html │ │ │ │ ├── chdeschd.html │ │ │ │ ├── chhead.html │ │ │ │ ├── choice.html │ │ │ │ ├── choices.html │ │ │ │ ├── choicetable.html │ │ │ │ ├── choption.html │ │ │ │ ├── choptionhd.html │ │ │ │ ├── chrow.html │ │ │ │ ├── cite.html │ │ │ │ ├── cmd.html │ │ │ │ ├── cmdname.html │ │ │ │ ├── codeblock.html │ │ │ │ ├── codeph.html │ │ │ │ ├── colspec.html │ │ │ │ ├── commonltr.css │ │ │ │ ├── component.html │ │ │ │ ├── conbody.html │ │ │ │ ├── concept.html │ │ │ │ ├── context.html │ │ │ │ ├── coords.html │ │ │ │ ├── copyrholder.html │ │ │ │ ├── copyright.html │ │ │ │ ├── copyryear.html │ │ │ │ ├── created.html │ │ │ │ ├── critdates.html │ │ │ │ ├── dd.html │ │ │ │ ├── ddhd.html │ │ │ │ ├── delim.html │ │ │ │ ├── desc.html │ │ │ │ ├── display-atts.html │ │ │ │ ├── dita.html │ │ │ │ ├── ditahelp.adp │ │ │ │ ├── ditahelp.qhcp │ │ │ │ ├── ditahelp.qhp │ │ │ │ ├── ditahelp.sehelp │ │ │ │ ├── dl.html │ │ │ │ ├── dlentry.html │ │ │ │ ├── dlhead.html │ │ │ │ ├── draft-comment.html │ │ │ │ ├── dt.html │ │ │ │ ├── dthd.html │ │ │ │ ├── entry.html │ │ │ │ ├── example.html │ │ │ │ ├── featnum.html │ │ │ │ ├── fig.html │ │ │ │ ├── figgroup.html │ │ │ │ ├── filepath.html │ │ │ │ ├── fn.html │ │ │ │ ├── fragment.html │ │ │ │ ├── fragref.html │ │ │ │ ├── global-atts.html │ │ │ │ ├── groupchoice.html │ │ │ │ ├── groupcomp.html │ │ │ │ ├── groupseq.html │ │ │ │ ├── i.html │ │ │ │ ├── id-atts.html │ │ │ │ ├── image.html │ │ │ │ ├── imagemap.html │ │ │ │ ├── images │ │ │ │ │ ├── imagemapworld.gif │ │ │ │ │ ├── imagemapworld.jpg │ │ │ │ │ ├── tip-ing.eps │ │ │ │ │ └── tip-ing.jpg │ │ │ │ ├── index.html │ │ │ │ ├── indexterm.html │ │ │ │ ├── indextermref.html │ │ │ │ ├── info.html │ │ │ │ ├── itemgroup.html │ │ │ │ ├── keyword.html │ │ │ │ ├── keywords.html │ │ │ │ ├── kwd.html │ │ │ │ ├── li.html │ │ │ │ ├── lines.html │ │ │ │ ├── link.html │ │ │ │ ├── linkinfo.html │ │ │ │ ├── linklist.html │ │ │ │ ├── linkpool.html │ │ │ │ ├── linktext.html │ │ │ │ ├── lq.html │ │ │ │ ├── map.html │ │ │ │ ├── menucascade.html │ │ │ │ ├── metadata.html │ │ │ │ ├── msgblock.html │ │ │ │ ├── msgnum.html │ │ │ │ ├── msgph.html │ │ │ │ ├── navref.html │ │ │ │ ├── navtitle.html │ │ │ │ ├── no-topic-nesting.html │ │ │ │ ├── note.html │ │ │ │ ├── object.html │ │ │ │ ├── ol.html │ │ │ │ ├── oper.html │ │ │ │ ├── option.html │ │ │ │ ├── othercommon.html │ │ │ │ ├── othermeta.html │ │ │ │ ├── p.html │ │ │ │ ├── param.html │ │ │ │ ├── parml.html │ │ │ │ ├── parmname.html │ │ │ │ ├── pd.html │ │ │ │ ├── permissions.html │ │ │ │ ├── ph.html │ │ │ │ ├── platform.html │ │ │ │ ├── plentry.html │ │ │ │ ├── postreq.html │ │ │ │ ├── pre.html │ │ │ │ ├── prereq.html │ │ │ │ ├── prodinfo.html │ │ │ │ ├── prodname.html │ │ │ │ ├── prognum.html │ │ │ │ ├── prolog.html │ │ │ │ ├── propdesc.html │ │ │ │ ├── propdeschd.html │ │ │ │ ├── properties.html │ │ │ │ ├── property.html │ │ │ │ ├── prophead.html │ │ │ │ ├── proptype.html │ │ │ │ ├── proptypehd.html │ │ │ │ ├── propvalue.html │ │ │ │ ├── propvaluehd.html │ │ │ │ ├── pt.html │ │ │ │ ├── publisher.html │ │ │ │ ├── q.html │ │ │ │ ├── refbody.html │ │ │ │ ├── reference.html │ │ │ │ ├── refsyn.html │ │ │ │ ├── rel-atts.html │ │ │ │ ├── related-links.html │ │ │ │ ├── relcell.html │ │ │ │ ├── relcolspec.html │ │ │ │ ├── relheader.html │ │ │ │ ├── relrow.html │ │ │ │ ├── reltable.html │ │ │ │ ├── repsep.html │ │ │ │ ├── required-cleanup.html │ │ │ │ ├── resourceid.html │ │ │ │ ├── result.html │ │ │ │ ├── revised.html │ │ │ │ ├── row.html │ │ │ │ ├── screen.html │ │ │ │ ├── searchtitle.html │ │ │ │ ├── section.html │ │ │ │ ├── select-atts.html │ │ │ │ ├── sep.html │ │ │ │ ├── series.html │ │ │ │ ├── shape.html │ │ │ │ ├── shortcut.html │ │ │ │ ├── shortdesc.html │ │ │ │ ├── simpletable.html │ │ │ │ ├── sl.html │ │ │ │ ├── sli.html │ │ │ │ ├── source.html │ │ │ │ ├── state.html │ │ │ │ ├── stentry.html │ │ │ │ ├── step.html │ │ │ │ ├── stepresult.html │ │ │ │ ├── steps-unordered.html │ │ │ │ ├── steps.html │ │ │ │ ├── stepxmp.html │ │ │ │ ├── sthead.html │ │ │ │ ├── strow.html │ │ │ │ ├── sub.html │ │ │ │ ├── substep.html │ │ │ │ ├── substeps.html │ │ │ │ ├── sup.html │ │ │ │ ├── synblk.html │ │ │ │ ├── synnote.html │ │ │ │ ├── synnoteref.html │ │ │ │ ├── synph.html │ │ │ │ ├── syntaxdiagram.html │ │ │ │ ├── systemoutput.html │ │ │ │ ├── table.html │ │ │ │ ├── task.html │ │ │ │ ├── taskbody.html │ │ │ │ ├── tbody.html │ │ │ │ ├── term.html │ │ │ │ ├── tgroup.html │ │ │ │ ├── thead.html │ │ │ │ ├── title.html │ │ │ │ ├── titlealts.html │ │ │ │ ├── tm.html │ │ │ │ ├── topic.html │ │ │ │ ├── topicgroup.html │ │ │ │ ├── topichead.html │ │ │ │ ├── topicmeta.html │ │ │ │ ├── topicref-atts-no-toc.html │ │ │ │ ├── topicref-atts.html │ │ │ │ ├── topicref.html │ │ │ │ ├── tt.html │ │ │ │ ├── tutorialinfo.html │ │ │ │ ├── u.html │ │ │ │ ├── uicontrol.html │ │ │ │ ├── ul.html │ │ │ │ ├── univ-atts.html │ │ │ │ ├── userinput.html │ │ │ │ ├── var.html │ │ │ │ ├── varname.html │ │ │ │ ├── vrm.html │ │ │ │ ├── vrmlist.html │ │ │ │ ├── wintitle.html │ │ │ │ └── xref.html │ │ │ ├── ditamap2xhtml.bat │ │ │ ├── ditamap2xhtml.sh │ │ │ ├── ditatopic2xhtml.bat │ │ │ ├── ditatopic2xhtml.sh │ │ │ ├── icons │ │ │ │ └── .empty-stub │ │ │ ├── make-ref.sh │ │ │ ├── map2htm.bat │ │ │ ├── map2htm.sh │ │ │ ├── map2htm_merged.bat │ │ │ ├── map2htm_merged.sh │ │ │ ├── map2pdf_fop.bat │ │ │ ├── map2pdf_fop.sh │ │ │ ├── map2pdf_xep.bat │ │ │ ├── map2pdf_xep.sh │ │ │ ├── oasis-dita-10-common.ent │ │ │ ├── oasis-dita-11-common.ent │ │ │ ├── oasis-dita-bookmap-11.ahpp │ │ │ ├── oasis-dita-bookmap-11.sdt │ │ │ ├── oasis-dita-bookmap-11.spd │ │ │ ├── oasis-dita-bookmap-11.xsltp │ │ │ ├── oasis-dita-composite-10.ahpp │ │ │ ├── oasis-dita-composite-10.scc │ │ │ ├── oasis-dita-composite-10.sdt │ │ │ ├── oasis-dita-composite-10.xsltp │ │ │ ├── oasis-dita-composite-11.scc │ │ │ ├── oasis-dita-composite-11.sdt │ │ │ ├── oasis-dita-composite-11.xsltp │ │ │ ├── oasis-dita-composite.spd │ │ │ ├── oasis-dita-concept-10.ahpp │ │ │ ├── oasis-dita-concept-10.scc │ │ │ ├── oasis-dita-concept-10.sdt │ │ │ ├── oasis-dita-concept-10.xsltp │ │ │ ├── oasis-dita-concept-11.scc │ │ │ ├── oasis-dita-concept-11.sdt │ │ │ ├── oasis-dita-concept-11.xsltp │ │ │ ├── oasis-dita-concept.spd │ │ │ ├── oasis-dita-ditamap-10.ahpp │ │ │ ├── oasis-dita-ditamap-10.sdt │ │ │ ├── oasis-dita-ditamap-10.xsltp │ │ │ ├── oasis-dita-ditamap-11.sdt │ │ │ ├── oasis-dita-ditamap-11.xsltp │ │ │ ├── oasis-dita-ditamap.spd │ │ │ ├── oasis-dita-glossary-11.ahpp │ │ │ ├── oasis-dita-glossary-11.sdt │ │ │ ├── oasis-dita-glossary-11.xsltp │ │ │ ├── oasis-dita-reference-10.ahpp │ │ │ ├── oasis-dita-reference-10.scc │ │ │ ├── oasis-dita-reference-10.sdt │ │ │ ├── oasis-dita-reference-10.xsltp │ │ │ ├── oasis-dita-reference-11.scc │ │ │ ├── oasis-dita-reference-11.sdt │ │ │ ├── oasis-dita-reference-11.xsltp │ │ │ ├── oasis-dita-reference.spd │ │ │ ├── oasis-dita-task-10.ahpp │ │ │ ├── oasis-dita-task-10.scc │ │ │ ├── oasis-dita-task-10.sdt │ │ │ ├── oasis-dita-task-10.xsltp │ │ │ ├── oasis-dita-task-11.scc │ │ │ ├── oasis-dita-task-11.sdt │ │ │ ├── oasis-dita-task-11.xsltp │ │ │ ├── oasis-dita-task.spd │ │ │ ├── oasis-dita-topic-10.ahpp │ │ │ ├── oasis-dita-topic-10.scc │ │ │ ├── oasis-dita-topic-10.sdt │ │ │ ├── oasis-dita-topic-10.xsltp │ │ │ ├── oasis-dita-topic-11.scc │ │ │ ├── oasis-dita-topic-11.sdt │ │ │ ├── oasis-dita-topic-11.xsltp │ │ │ ├── oasis-dita-topic.spd │ │ │ ├── publishing.spd │ │ │ ├── publishing │ │ │ │ ├── Dita.py │ │ │ │ ├── DitaPublisher.py │ │ │ │ ├── __init__.py │ │ │ │ ├── build_dita2fo.xml │ │ │ │ ├── build_with_fo.xml │ │ │ │ └── dialogs │ │ │ │ │ ├── DitaOtOptionsDialog.py │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── ui.py │ │ │ │ │ └── ui │ │ │ │ │ └── DitaOtOptionsDialog.ui │ │ │ └── schema-11 │ │ │ │ ├── bookmap.xsd │ │ │ │ ├── bookmapGrp.xsd │ │ │ │ ├── bookmapMod.xsd │ │ │ │ ├── catalog.xml │ │ │ │ ├── commonElementGrp.xsd │ │ │ │ ├── commonElementMod.xsd │ │ │ │ ├── concept.xsd │ │ │ │ ├── conceptGrp.xsd │ │ │ │ ├── conceptMod.xsd │ │ │ │ ├── ditaarch.xsd │ │ │ │ ├── ditabase.xsd │ │ │ │ ├── glossary.xsd │ │ │ │ ├── glossaryGrp.xsd │ │ │ │ ├── glossaryMod.xsd │ │ │ │ ├── highlightDomain.xsd │ │ │ │ ├── indexingDomain.xsd │ │ │ │ ├── map.xsd │ │ │ │ ├── mapGroupMod.xsd │ │ │ │ ├── mapGrp.xsd │ │ │ │ ├── mapMod.xsd │ │ │ │ ├── metaDeclGrp.xsd │ │ │ │ ├── metaDeclMod.xsd │ │ │ │ ├── programmingDomain.xsd │ │ │ │ ├── reference.xsd │ │ │ │ ├── referenceGrp.xsd │ │ │ │ ├── referenceMod.xsd │ │ │ │ ├── softwareDomain.xsd │ │ │ │ ├── task.xsd │ │ │ │ ├── taskGrp.xsd │ │ │ │ ├── taskMod.xsd │ │ │ │ ├── tblDeclGrp.xsd │ │ │ │ ├── tblDeclMod.xsd │ │ │ │ ├── topic.xsd │ │ │ │ ├── topicGrp.xsd │ │ │ │ ├── topicMod.xsd │ │ │ │ ├── uiDomain.xsd │ │ │ │ ├── utilitiesDomain.xsd │ │ │ │ ├── xml.xsd │ │ │ │ └── xnalDomain.xsd │ │ ├── docbook │ │ │ ├── __init__.py │ │ │ ├── catalog_dblite.xml │ │ │ ├── dbk42.ahpp │ │ │ ├── dbk42.scc │ │ │ ├── dbk42.sdt │ │ │ ├── dbk42.xsltp │ │ │ ├── dbk42 │ │ │ │ ├── dtd │ │ │ │ │ ├── ChangeLog │ │ │ │ │ ├── README │ │ │ │ │ ├── calstblx.dtd │ │ │ │ │ ├── catalog │ │ │ │ │ ├── catalog.xml │ │ │ │ │ ├── dbcentx.mod │ │ │ │ │ ├── dbgenent.mod │ │ │ │ │ ├── dbhierx.mod │ │ │ │ │ ├── dbnotnx.mod │ │ │ │ │ ├── dbpoolx.mod │ │ │ │ │ ├── docbook.cat │ │ │ │ │ ├── docbookx.dtd │ │ │ │ │ ├── ent │ │ │ │ │ │ ├── iso-amsa.ent │ │ │ │ │ │ ├── iso-amsb.ent │ │ │ │ │ │ ├── iso-amsc.ent │ │ │ │ │ │ ├── iso-amsn.ent │ │ │ │ │ │ ├── iso-amso.ent │ │ │ │ │ │ ├── iso-amsr.ent │ │ │ │ │ │ ├── iso-box.ent │ │ │ │ │ │ ├── iso-cyr1.ent │ │ │ │ │ │ ├── iso-cyr2.ent │ │ │ │ │ │ ├── iso-dia.ent │ │ │ │ │ │ ├── iso-grk1.ent │ │ │ │ │ │ ├── iso-grk2.ent │ │ │ │ │ │ ├── iso-grk3.ent │ │ │ │ │ │ ├── iso-grk4.ent │ │ │ │ │ │ ├── iso-lat1.ent │ │ │ │ │ │ ├── iso-lat2.ent │ │ │ │ │ │ ├── iso-num.ent │ │ │ │ │ │ ├── iso-pub.ent │ │ │ │ │ │ └── iso-tech.ent │ │ │ │ │ └── soextblx.dtd │ │ │ │ └── xsd │ │ │ │ │ ├── docbookc.xsd │ │ │ │ │ └── docbookx.xsd │ │ │ ├── dbk43.ahpp │ │ │ ├── dbk43.scc │ │ │ ├── dbk43.sdt │ │ │ ├── dbk43.xsltp │ │ │ ├── dbk43 │ │ │ │ ├── dtd │ │ │ │ │ ├── ChangeLog │ │ │ │ │ ├── README │ │ │ │ │ ├── calstblx.dtd │ │ │ │ │ ├── catalog.xml │ │ │ │ │ ├── dbcentx.mod │ │ │ │ │ ├── dbgenent.mod │ │ │ │ │ ├── dbhierx.mod │ │ │ │ │ ├── dbnotnx.mod │ │ │ │ │ ├── dbpoolx.mod │ │ │ │ │ ├── docbook.cat │ │ │ │ │ ├── docbookx.dtd │ │ │ │ │ ├── ent │ │ │ │ │ │ ├── iso-amsa.ent │ │ │ │ │ │ ├── iso-amsb.ent │ │ │ │ │ │ ├── iso-amsc.ent │ │ │ │ │ │ ├── iso-amsn.ent │ │ │ │ │ │ ├── iso-amso.ent │ │ │ │ │ │ ├── iso-amsr.ent │ │ │ │ │ │ ├── iso-box.ent │ │ │ │ │ │ ├── iso-cyr1.ent │ │ │ │ │ │ ├── iso-cyr2.ent │ │ │ │ │ │ ├── iso-dia.ent │ │ │ │ │ │ ├── iso-grk1.ent │ │ │ │ │ │ ├── iso-grk2.ent │ │ │ │ │ │ ├── iso-grk3.ent │ │ │ │ │ │ ├── iso-grk4.ent │ │ │ │ │ │ ├── iso-lat1.ent │ │ │ │ │ │ ├── iso-lat2.ent │ │ │ │ │ │ ├── iso-num.ent │ │ │ │ │ │ ├── iso-pub.ent │ │ │ │ │ │ └── iso-tech.ent │ │ │ │ │ ├── htmltblx.mod │ │ │ │ │ └── soextblx.dtd │ │ │ │ └── xsd │ │ │ │ │ ├── calstblx.xsd │ │ │ │ │ ├── dbhierx.mod.xsd │ │ │ │ │ ├── dbnotnx.mod.xsd │ │ │ │ │ ├── dbpoolx.mod.xsd │ │ │ │ │ ├── docbook.xsd │ │ │ │ │ ├── htmltblx.mod.xsd │ │ │ │ │ └── xml.xsd │ │ │ ├── dbk44.ahpp │ │ │ ├── dbk44.scc │ │ │ ├── dbk44.sdt │ │ │ ├── dbk44.xsltp │ │ │ ├── dbk44 │ │ │ │ ├── dtd │ │ │ │ │ ├── ChangeLog │ │ │ │ │ ├── README │ │ │ │ │ ├── calstblx.dtd │ │ │ │ │ ├── catalog.xml │ │ │ │ │ ├── dbcentx.mod │ │ │ │ │ ├── dbgenent.mod │ │ │ │ │ ├── dbhierx.mod │ │ │ │ │ ├── dbnotnx.mod │ │ │ │ │ ├── dbpoolx.mod │ │ │ │ │ ├── docbook.cat │ │ │ │ │ ├── docbookx.dtd │ │ │ │ │ ├── ent │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── isoamsa.ent │ │ │ │ │ │ ├── isoamsb.ent │ │ │ │ │ │ ├── isoamsc.ent │ │ │ │ │ │ ├── isoamsn.ent │ │ │ │ │ │ ├── isoamso.ent │ │ │ │ │ │ ├── isoamsr.ent │ │ │ │ │ │ ├── isobox.ent │ │ │ │ │ │ ├── isocyr1.ent │ │ │ │ │ │ ├── isocyr2.ent │ │ │ │ │ │ ├── isodia.ent │ │ │ │ │ │ ├── isogrk1.ent │ │ │ │ │ │ ├── isogrk2.ent │ │ │ │ │ │ ├── isogrk3.ent │ │ │ │ │ │ ├── isogrk4.ent │ │ │ │ │ │ ├── isolat1.ent │ │ │ │ │ │ ├── isolat2.ent │ │ │ │ │ │ ├── isonum.ent │ │ │ │ │ │ ├── isopub.ent │ │ │ │ │ │ └── isotech.ent │ │ │ │ │ ├── htmltblx.mod │ │ │ │ │ └── soextblx.dtd │ │ │ │ └── xsd │ │ │ │ │ ├── calstblx.xsd │ │ │ │ │ ├── dbhierx.mod.xsd │ │ │ │ │ ├── dbnotnx.mod.xsd │ │ │ │ │ ├── dbpoolx.mod.xsd │ │ │ │ │ ├── docbook.xsd │ │ │ │ │ ├── htmltblx.mod.xsd │ │ │ │ │ └── xml.xsd │ │ │ ├── dbk45.ahpp │ │ │ ├── dbk45.scc │ │ │ ├── dbk45.sdt │ │ │ ├── dbk45.xsltp │ │ │ ├── dbk45 │ │ │ │ ├── dtd │ │ │ │ │ ├── ChangeLog │ │ │ │ │ ├── README │ │ │ │ │ ├── calstblx.dtd │ │ │ │ │ ├── catalog.xml │ │ │ │ │ ├── dbcentx.mod │ │ │ │ │ ├── dbgenent.mod │ │ │ │ │ ├── dbhierx.mod │ │ │ │ │ ├── dbnotnx.mod │ │ │ │ │ ├── dbpoolx.mod │ │ │ │ │ ├── docbook.cat │ │ │ │ │ ├── docbookx.dtd │ │ │ │ │ ├── ent │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── isoamsa.ent │ │ │ │ │ │ ├── isoamsb.ent │ │ │ │ │ │ ├── isoamsc.ent │ │ │ │ │ │ ├── isoamsn.ent │ │ │ │ │ │ ├── isoamso.ent │ │ │ │ │ │ ├── isoamsr.ent │ │ │ │ │ │ ├── isobox.ent │ │ │ │ │ │ ├── isocyr1.ent │ │ │ │ │ │ ├── isocyr2.ent │ │ │ │ │ │ ├── isodia.ent │ │ │ │ │ │ ├── isogrk1.ent │ │ │ │ │ │ ├── isogrk2.ent │ │ │ │ │ │ ├── isogrk3.ent │ │ │ │ │ │ ├── isogrk4.ent │ │ │ │ │ │ ├── isolat1.ent │ │ │ │ │ │ ├── isolat2.ent │ │ │ │ │ │ ├── isonum.ent │ │ │ │ │ │ ├── isopub.ent │ │ │ │ │ │ └── isotech.ent │ │ │ │ │ ├── htmltblx.mod │ │ │ │ │ └── soextblx.dtd │ │ │ │ └── xsd │ │ │ │ │ ├── calstblx.xsd │ │ │ │ │ ├── dbhierx.mod.xsd │ │ │ │ │ ├── dbnotnx.mod.xsd │ │ │ │ │ ├── dbpoolx.mod.xsd │ │ │ │ │ ├── docbook.xsd │ │ │ │ │ ├── htmltblx.mod.xsd │ │ │ │ │ └── xml.xsd │ │ │ ├── dblite.xsd │ │ │ ├── dblite05.ahpp │ │ │ ├── dblite05.scc │ │ │ ├── dblite05.sdt │ │ │ ├── dblite05.xsltp │ │ │ ├── dblite05htmlents.ahpp │ │ │ ├── dblite05htmlents.scc │ │ │ ├── dblite05htmlents.sdt │ │ │ ├── dblite05htmlents.xsltp │ │ │ ├── dblite05noents.ahpp │ │ │ ├── dblite05noents.scc │ │ │ ├── dblite05noents.sdt │ │ │ ├── dblite05noents.xsltp │ │ │ ├── dblite_0.5 │ │ │ │ ├── catalog │ │ │ │ ├── dblite.dtd │ │ │ │ ├── dblite_htmlents.dtd │ │ │ │ ├── dblite_noents.dtd │ │ │ │ ├── dblite_safari.dtd │ │ │ │ ├── doc │ │ │ │ │ ├── FAQ.html │ │ │ │ │ ├── db.dict │ │ │ │ │ ├── dblite.html │ │ │ │ │ └── index.html │ │ │ │ ├── docbook41 │ │ │ │ │ ├── calstblx.dtd │ │ │ │ │ ├── dbcentx.mod │ │ │ │ │ ├── dbgenent.ent │ │ │ │ │ ├── dbhierx.mod │ │ │ │ │ ├── dbnotnx.mod │ │ │ │ │ ├── dbpoolx.mod │ │ │ │ │ ├── docbook.cat │ │ │ │ │ ├── docbookx.dtd │ │ │ │ │ ├── ent │ │ │ │ │ │ ├── iso-amsa.ent │ │ │ │ │ │ ├── iso-amsb.ent │ │ │ │ │ │ ├── iso-amsc.ent │ │ │ │ │ │ ├── iso-amsn.ent │ │ │ │ │ │ ├── iso-amso.ent │ │ │ │ │ │ ├── iso-amsr.ent │ │ │ │ │ │ ├── iso-box.ent │ │ │ │ │ │ ├── iso-cyr1.ent │ │ │ │ │ │ ├── iso-cyr2.ent │ │ │ │ │ │ ├── iso-dia.ent │ │ │ │ │ │ ├── iso-grk1.ent │ │ │ │ │ │ ├── iso-grk2.ent │ │ │ │ │ │ ├── iso-grk3.ent │ │ │ │ │ │ ├── iso-grk4.ent │ │ │ │ │ │ ├── iso-lat1.ent │ │ │ │ │ │ ├── iso-lat2.ent │ │ │ │ │ │ ├── iso-num.ent │ │ │ │ │ │ ├── iso-pub.ent │ │ │ │ │ │ └── iso-tech.ent │ │ │ │ │ └── soextblx.dtd │ │ │ │ ├── html.ent │ │ │ │ ├── safari_future.dtd │ │ │ │ └── sdblite.dtd │ │ │ ├── dblite_catalog.xml │ │ │ ├── docbook-scc.ent │ │ │ ├── docbook-xsl-serna │ │ │ │ ├── NW-COPYING │ │ │ │ ├── biblio.xsl │ │ │ │ ├── blocks.xsl │ │ │ │ ├── common-table.xsl │ │ │ │ ├── common.xsl │ │ │ │ ├── compounds.xsl │ │ │ │ ├── divisions.xsl │ │ │ │ ├── docbook.xsl │ │ │ │ ├── formal.xsl │ │ │ │ ├── gentext.xsl │ │ │ │ ├── glossary.xsl │ │ │ │ ├── graphics.xsl │ │ │ │ ├── inlines.xsl │ │ │ │ ├── l10n.xsl │ │ │ │ ├── l10n │ │ │ │ │ ├── af.xml │ │ │ │ │ ├── bg.xml │ │ │ │ │ ├── ca.xml │ │ │ │ │ ├── cs.xml │ │ │ │ │ ├── da.xml │ │ │ │ │ ├── de.xml │ │ │ │ │ ├── el.xml │ │ │ │ │ ├── en.xml │ │ │ │ │ ├── es.xml │ │ │ │ │ ├── et.xml │ │ │ │ │ ├── eu.xml │ │ │ │ │ ├── fi.xml │ │ │ │ │ ├── fr.xml │ │ │ │ │ ├── he.xml │ │ │ │ │ ├── hu.xml │ │ │ │ │ ├── id.xml │ │ │ │ │ ├── it.xml │ │ │ │ │ ├── ja.xml │ │ │ │ │ ├── ko.xml │ │ │ │ │ ├── l10n.dtd │ │ │ │ │ ├── l10n.xml │ │ │ │ │ ├── lt.xml │ │ │ │ │ ├── nl.xml │ │ │ │ │ ├── nn.xml │ │ │ │ │ ├── no.xml │ │ │ │ │ ├── pl.xml │ │ │ │ │ ├── pt.xml │ │ │ │ │ ├── pt_br.xml │ │ │ │ │ ├── ro.xml │ │ │ │ │ ├── ru.xml │ │ │ │ │ ├── sk.xml │ │ │ │ │ ├── sl.xml │ │ │ │ │ ├── sr.xml │ │ │ │ │ ├── sv.xml │ │ │ │ │ ├── th.xml │ │ │ │ │ ├── tr.xml │ │ │ │ │ ├── uk.xml │ │ │ │ │ ├── vi.xml │ │ │ │ │ ├── xh.xml │ │ │ │ │ ├── zh_cn.xml │ │ │ │ │ └── zh_tw.xml │ │ │ │ ├── lists.xsl │ │ │ │ ├── parameters.xsl │ │ │ │ ├── qandaset.xsl │ │ │ │ ├── refentry.xsl │ │ │ │ ├── serna-table.xsl │ │ │ │ ├── synopsis.xsl │ │ │ │ ├── table.xsl │ │ │ │ ├── titlepage.generator.xsl │ │ │ │ ├── titlepage.templates.xml │ │ │ │ ├── titlepage.templates.xsl │ │ │ │ ├── titlepage.xsl │ │ │ │ ├── titles.xsl │ │ │ │ ├── toc.labels.xsl │ │ │ │ ├── toc.titles.xsl │ │ │ │ ├── toc.xsl │ │ │ │ └── xref.xsl │ │ │ ├── docbook.ahpp │ │ │ ├── docbook.csl │ │ │ ├── mkhelp.sh │ │ │ ├── publishing.spd │ │ │ └── publishing │ │ │ │ ├── Docbook.py │ │ │ │ ├── DocbookPublisher.py │ │ │ │ └── __init__.py │ │ ├── docinfo │ │ │ └── docinfo.spd │ │ ├── hotkeys │ │ │ └── hotkeys.spd │ │ ├── idealliance │ │ │ ├── __init__.py │ │ │ ├── conference-paper-1-3.ahpp │ │ │ ├── conference-paper-1-3.scc │ │ │ ├── conference-paper-1-3.sdt │ │ │ ├── conference-paper-1-3.tpp │ │ │ ├── conference-paper-1-3.xsltp │ │ │ ├── conference-paper.ahpp │ │ │ ├── conference-paper.scc │ │ │ ├── conference-paper.sdt │ │ │ ├── conference-paper.xsltp │ │ │ ├── gca-proceedings.ahpp │ │ │ ├── gca-proceedings.sdt │ │ │ ├── gca │ │ │ │ ├── dtd │ │ │ │ │ ├── catalog.xml │ │ │ │ │ ├── gcapaper.dtd │ │ │ │ │ ├── isoamsa.ent │ │ │ │ │ ├── isoamsb.ent │ │ │ │ │ ├── isoamsc.ent │ │ │ │ │ ├── isoamsn.ent │ │ │ │ │ ├── isoamso.ent │ │ │ │ │ ├── isoamsr.ent │ │ │ │ │ ├── isobox.ent │ │ │ │ │ ├── isocyr1.ent │ │ │ │ │ ├── isocyr2.ent │ │ │ │ │ ├── isodia.ent │ │ │ │ │ ├── isogrk1.ent │ │ │ │ │ ├── isogrk2.ent │ │ │ │ │ ├── isogrk3.ent │ │ │ │ │ ├── isogrk4.ent │ │ │ │ │ ├── isolat1.ent │ │ │ │ │ ├── isolat2.ent │ │ │ │ │ ├── isonum.ent │ │ │ │ │ ├── isopub.ent │ │ │ │ │ ├── isotech.ent │ │ │ │ │ ├── xhtml-inlpres-1.mod │ │ │ │ │ └── xhtml-table-1.mod │ │ │ │ ├── gca-xsl-serna │ │ │ │ │ ├── gca-body.xsl │ │ │ │ │ ├── gca-front.xsl │ │ │ │ │ ├── gca-inlines.xsl │ │ │ │ │ ├── gca-param.xsl │ │ │ │ │ ├── gca-rear.xsl │ │ │ │ │ └── gca.xsl │ │ │ │ └── gca.xsd │ │ │ ├── ide-alliance.ahpp │ │ │ ├── ideadb-1.1 │ │ │ │ ├── catalog.xml │ │ │ │ ├── dtd │ │ │ │ │ └── ideadb.dtd │ │ │ │ ├── rng │ │ │ │ │ ├── ideadb.rnc │ │ │ │ │ └── ideadb.rng │ │ │ │ ├── samples │ │ │ │ │ ├── schema_documentation.html │ │ │ │ │ └── schema_documentation.xml │ │ │ │ └── xsd │ │ │ │ │ ├── ideadb.xsd │ │ │ │ │ └── xml.xsd │ │ │ ├── ideadb-1.3-syntext-dtd2xs.xsd │ │ │ ├── ideadb-1.3 │ │ │ │ ├── catalog.xml │ │ │ │ ├── dtd │ │ │ │ │ └── ideadb.dtd │ │ │ │ ├── rng │ │ │ │ │ ├── ideadb.rnc │ │ │ │ │ └── ideadb.rng │ │ │ │ ├── samples │ │ │ │ │ ├── ideadb.css │ │ │ │ │ ├── schema_documentation.html │ │ │ │ │ ├── schema_documentation.xml │ │ │ │ │ └── xml05.jpg │ │ │ │ ├── stylesheet │ │ │ │ │ └── idealliance.xsl │ │ │ │ └── xsd │ │ │ │ │ ├── ideadb.xsd │ │ │ │ │ └── xml.xsd │ │ │ ├── ideadb-syntext-dtd2xs.xsd │ │ │ ├── publishing.spd │ │ │ └── publishing │ │ │ │ ├── IDEAlliance.py │ │ │ │ ├── IDEAlliancePublisher.py │ │ │ │ └── __init__.py │ │ ├── linkvoyager │ │ │ ├── __init__.py │ │ │ └── linkvoyager.spd │ │ ├── nitf │ │ │ ├── __init__.py │ │ │ ├── dtd │ │ │ │ ├── catalog.xml │ │ │ │ ├── nitf-3-2-ruby-include.dtd │ │ │ │ ├── nitf-3-2.dtd │ │ │ │ └── xhtml-ruby-1.mod │ │ │ ├── nitf-3-2.xsd │ │ │ ├── nitf-xsl-serna │ │ │ │ ├── nitf-blocks.xsl │ │ │ │ ├── nitf-common.xsl │ │ │ │ ├── nitf-images.xsl │ │ │ │ ├── nitf-inlines.xsl │ │ │ │ ├── nitf-lists.xsl │ │ │ │ ├── nitf-meta.xsl │ │ │ │ ├── nitf-param.xsl │ │ │ │ ├── nitf-struct.xsl │ │ │ │ ├── nitf-tables.xsl │ │ │ │ └── nitf.xsl │ │ │ ├── nitf.ahpp │ │ │ ├── nitf.sdt │ │ │ ├── publishing.spd │ │ │ └── publishing │ │ │ │ ├── Nitf.py │ │ │ │ ├── NitfPublisher.py │ │ │ │ └── __init__.py │ │ ├── publishing │ │ │ ├── BuiltinTransformers.py │ │ │ ├── Publisher.py │ │ │ ├── PublisherUtils.py │ │ │ ├── PublishersFactory.py │ │ │ ├── PublishingPlugin.py │ │ │ ├── SimplePublisher.py │ │ │ ├── Transformer.py │ │ │ ├── XSernaApi │ │ │ │ ├── DocumentPlugin.py │ │ │ │ ├── PropertyNode.py │ │ │ │ ├── SernaConfig.py │ │ │ │ ├── SernaDoc.py │ │ │ │ └── __init__.py │ │ │ ├── __init__.py │ │ │ ├── dialogs │ │ │ │ ├── BuiltinPublishOptionsDialogs.py │ │ │ │ ├── ProgressDialog.py │ │ │ │ ├── PublishDialog.py │ │ │ │ ├── __init__.py │ │ │ │ ├── ui.py │ │ │ │ └── ui │ │ │ │ │ ├── ProgressDialog.ui │ │ │ │ │ ├── PublishDialog.ui │ │ │ │ │ └── SimplePublishOptionsDialog.ui │ │ │ ├── publish.py │ │ │ ├── publishing.py │ │ │ ├── publishing.spd │ │ │ └── utils.py │ │ ├── pyplugin-tutorial │ │ │ ├── InsertAddressDialog.ui │ │ │ ├── InsertAddressDialog2.ui │ │ │ ├── __init__.py │ │ │ ├── checkEmptyPara.py │ │ │ ├── check_empty_para.spd │ │ │ ├── helloWorld.py │ │ │ ├── hello_world.spd │ │ │ ├── insertAddress.py │ │ │ ├── insertAddress2.py │ │ │ ├── insert_address.spd │ │ │ ├── insert_address2.spd │ │ │ ├── linkNavigationSample.xml │ │ │ ├── linkNavigator.py │ │ │ └── link_navigator.spd │ │ ├── pyplugin │ │ │ ├── SernaApi.py │ │ │ ├── pyconsole.spd │ │ │ └── python_startup.spd │ │ ├── resume │ │ │ ├── COPYING-RESUME │ │ │ ├── Readme │ │ │ ├── __init__.py │ │ │ ├── dtd │ │ │ │ ├── catalog │ │ │ │ ├── catalog.xml │ │ │ │ ├── iso-lat1.ent │ │ │ │ ├── resume.dcl │ │ │ │ └── resume.dtd │ │ │ ├── element-help │ │ │ │ ├── adp.py │ │ │ │ ├── adp.xsl │ │ │ │ ├── element-help.py │ │ │ │ ├── element-help.xsl │ │ │ │ ├── element.academics.html │ │ │ │ ├── element.achievement.html │ │ │ │ ├── element.achievements.html │ │ │ │ ├── element.address.html │ │ │ │ ├── element.annotation.html │ │ │ │ ├── element.artTitle.html │ │ │ │ ├── element.author.html │ │ │ │ ├── element.award.html │ │ │ │ ├── element.awards.html │ │ │ │ ├── element.birth.html │ │ │ │ ├── element.bookTitle.html │ │ │ │ ├── element.break.html │ │ │ │ ├── element.citation.html │ │ │ │ ├── element.city.html │ │ │ │ ├── element.clearance.html │ │ │ │ ├── element.clearances.html │ │ │ │ ├── element.company.html │ │ │ │ ├── element.contact.html │ │ │ │ ├── element.copyright.html │ │ │ │ ├── element.country.html │ │ │ │ ├── element.county.html │ │ │ │ ├── element.date.html │ │ │ │ ├── element.dayOfMonth.html │ │ │ │ ├── element.degree.html │ │ │ │ ├── element.degrees.html │ │ │ │ ├── element.description.html │ │ │ │ ├── element.docpath.html │ │ │ │ ├── element.email.html │ │ │ │ ├── element.emphasis.html │ │ │ │ ├── element.employer.html │ │ │ │ ├── element.fax.html │ │ │ │ ├── element.firstname.html │ │ │ │ ├── element.from.html │ │ │ │ ├── element.gpa.html │ │ │ │ ├── element.head.html │ │ │ │ ├── element.header.html │ │ │ │ ├── element.history.html │ │ │ │ ├── element.instantMessage.html │ │ │ │ ├── element.institution.html │ │ │ │ ├── element.interest.html │ │ │ │ ├── element.interests.html │ │ │ │ ├── element.job.html │ │ │ │ ├── element.jobtitle.html │ │ │ │ ├── element.keyword.html │ │ │ │ ├── element.keywords.html │ │ │ │ ├── element.label.html │ │ │ │ ├── element.lastModified.html │ │ │ │ ├── element.legalnotice.html │ │ │ │ ├── element.level.html │ │ │ │ ├── element.link.html │ │ │ │ ├── element.location.html │ │ │ │ ├── element.major.html │ │ │ │ ├── element.membership.html │ │ │ │ ├── element.memberships.html │ │ │ │ ├── element.middlenames.html │ │ │ │ ├── element.minor.html │ │ │ │ ├── element.misc.html │ │ │ │ ├── element.month.html │ │ │ │ ├── element.name.html │ │ │ │ ├── element.node.html │ │ │ │ ├── element.note.html │ │ │ │ ├── element.objective.html │ │ │ │ ├── element.organization.html │ │ │ │ ├── element.pageNums.html │ │ │ │ ├── element.pager.html │ │ │ │ ├── element.para.html │ │ │ │ ├── element.period.html │ │ │ │ ├── element.phone.html │ │ │ │ ├── element.possible.html │ │ │ │ ├── element.postalCode.html │ │ │ │ ├── element.prefecture.html │ │ │ │ ├── element.present.html │ │ │ │ ├── element.project.html │ │ │ │ ├── element.projects.html │ │ │ │ ├── element.province.html │ │ │ │ ├── element.pub.html │ │ │ │ ├── element.pubDate.html │ │ │ │ ├── element.publisher.html │ │ │ │ ├── element.pubs.html │ │ │ │ ├── element.referee.html │ │ │ │ ├── element.referees.html │ │ │ │ ├── element.result.html │ │ │ │ ├── element.resume.html │ │ │ │ ├── element.resumes.html │ │ │ │ ├── element.score.html │ │ │ │ ├── element.skill.html │ │ │ │ ├── element.skillarea.html │ │ │ │ ├── element.skillareas.html │ │ │ │ ├── element.skills.html │ │ │ │ ├── element.skillset.html │ │ │ │ ├── element.state.html │ │ │ │ ├── element.street.html │ │ │ │ ├── element.street2.html │ │ │ │ ├── element.subject.html │ │ │ │ ├── element.subjects.html │ │ │ │ ├── element.suburb.html │ │ │ │ ├── element.suffix.html │ │ │ │ ├── element.surname.html │ │ │ │ ├── element.tail.html │ │ │ │ ├── element.title.html │ │ │ │ ├── element.to.html │ │ │ │ ├── element.uri.html │ │ │ │ ├── element.url.html │ │ │ │ ├── element.ward.html │ │ │ │ ├── element.year.html │ │ │ │ ├── element.zip.html │ │ │ │ ├── html2xml.py │ │ │ │ ├── ref.html │ │ │ │ ├── resume.adp │ │ │ │ └── resume.sehelp │ │ │ ├── examples │ │ │ │ ├── example1.xml │ │ │ │ └── example2.xml │ │ │ ├── publishing.spd │ │ │ ├── publishing │ │ │ │ ├── Resume.py │ │ │ │ ├── ResumePublisher.py │ │ │ │ └── __init__.py │ │ │ ├── resume-scc.ent │ │ │ ├── resume.ahpp │ │ │ ├── resume.scc │ │ │ ├── resume.sdt │ │ │ ├── xsd │ │ │ │ ├── resumex.xsd │ │ │ │ └── xsi.xsd │ │ │ └── xsl │ │ │ │ ├── address.xsl │ │ │ │ ├── common.xsl │ │ │ │ ├── contact.xsl │ │ │ │ ├── i18n.xsl │ │ │ │ ├── i18n_en.xml │ │ │ │ ├── marg.xsl │ │ │ │ ├── params.xsl │ │ │ │ ├── pdf │ │ │ │ ├── country │ │ │ │ │ ├── br.xsl │ │ │ │ │ ├── de.xsl │ │ │ │ │ ├── es.xsl │ │ │ │ │ ├── fr.xsl │ │ │ │ │ ├── it.xsl │ │ │ │ │ ├── nl.xsl │ │ │ │ │ ├── propogate-params.sh │ │ │ │ │ ├── ru.xsl │ │ │ │ │ ├── uk.xsl │ │ │ │ │ └── us.xsl │ │ │ │ ├── format │ │ │ │ │ ├── fo.xsl │ │ │ │ │ ├── html.xsl │ │ │ │ │ └── text.xsl │ │ │ │ ├── lib │ │ │ │ │ ├── address.xsl │ │ │ │ │ ├── common.xsl │ │ │ │ │ ├── deprecated.xsl │ │ │ │ │ ├── pub.xsl │ │ │ │ │ ├── string.xsl │ │ │ │ │ └── textlayout.xsl │ │ │ │ ├── misc │ │ │ │ │ ├── 124-130.xsl │ │ │ │ │ ├── 13x-140.xsl │ │ │ │ │ ├── default.xsl │ │ │ │ │ ├── html_contemporary.xsl │ │ │ │ │ ├── html_professional.xsl │ │ │ │ │ └── normalize-whitespace.xsl │ │ │ │ ├── output │ │ │ │ │ ├── br-a4.xsl │ │ │ │ │ ├── br-html.xsl │ │ │ │ │ ├── br-text.xsl │ │ │ │ │ ├── de-a4.xsl │ │ │ │ │ ├── de-html.xsl │ │ │ │ │ ├── de-text.xsl │ │ │ │ │ ├── fr-a4.xsl │ │ │ │ │ ├── fr-html.xsl │ │ │ │ │ ├── fr-text.xsl │ │ │ │ │ ├── it-a4.xsl │ │ │ │ │ ├── it-html.xsl │ │ │ │ │ ├── it-text.xsl │ │ │ │ │ ├── nl-a4.xsl │ │ │ │ │ ├── nl-html.xsl │ │ │ │ │ ├── nl-text.xsl │ │ │ │ │ ├── ru-a4.xsl │ │ │ │ │ ├── uk-a4.xsl │ │ │ │ │ ├── uk-html.xsl │ │ │ │ │ ├── uk-text.xsl │ │ │ │ │ ├── us-html.xsl │ │ │ │ │ ├── us-letter.xsl │ │ │ │ │ └── us-text.xsl │ │ │ │ ├── paper │ │ │ │ │ ├── a4.xsl │ │ │ │ │ └── letter.xsl │ │ │ │ └── params.xsl │ │ │ │ ├── pub.xsl │ │ │ │ ├── resume.xsl │ │ │ │ └── string.xsl │ │ ├── speller │ │ │ ├── readme.txt │ │ │ ├── speller.spd │ │ │ └── speller_startup.spd │ │ ├── syntext │ │ │ ├── __init__.py │ │ │ ├── default.ahpp │ │ │ ├── default.sdt │ │ │ ├── default.xsltp │ │ │ ├── default │ │ │ │ ├── default-content-map.csl │ │ │ │ └── default.xsl │ │ │ ├── doctemplate2.ahpp │ │ │ ├── doctemplate2.sdt │ │ │ ├── doctemplate2 │ │ │ │ ├── doctemplate.xsl │ │ │ │ ├── doctemplate2.dtd │ │ │ │ ├── doctemplate2.xsd │ │ │ │ └── simple_master_set.xsl │ │ │ ├── element-help.scc │ │ │ ├── element-help.sdt │ │ │ ├── element-help.spd │ │ │ ├── element-help │ │ │ │ ├── __init__.py │ │ │ │ ├── element-help.sehelp │ │ │ │ ├── element-help.xsd │ │ │ │ ├── element-help.xsl │ │ │ │ └── py │ │ │ │ │ ├── SetAdpFileDialog.py │ │ │ │ │ ├── SetAdpFileDialogBase.py │ │ │ │ │ ├── SetAdpFileDialogBase.ui │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── element-help.py │ │ │ ├── publishing.spd │ │ │ ├── publishing │ │ │ │ ├── Syntext.py │ │ │ │ ├── SyntextPublisher.py │ │ │ │ └── __init__.py │ │ │ ├── serna-config.ahpp │ │ │ ├── serna-config.sdt │ │ │ ├── serna-config │ │ │ │ ├── serna-config.xsd │ │ │ │ └── serna-config.xsl │ │ │ ├── simple_letter.ahpp │ │ │ ├── simple_letter.sdt │ │ │ ├── simple_letter │ │ │ │ ├── letter.dtd │ │ │ │ ├── letter.sehelp │ │ │ │ ├── letter.xsd │ │ │ │ └── letter.xsl │ │ │ ├── spd.ahpp │ │ │ ├── spd.sdt │ │ │ ├── spd │ │ │ │ ├── common.ent │ │ │ │ ├── gui-items-documentor.xsl │ │ │ │ ├── guiItems.xsd │ │ │ │ ├── qt.xsd │ │ │ │ └── spd.xsd │ │ │ ├── timesheet.ahpp │ │ │ ├── timesheet.scc │ │ │ ├── timesheet.sdt │ │ │ └── timesheet │ │ │ │ ├── timesheet-xsl-serna │ │ │ │ ├── simple_master_set.xsl │ │ │ │ ├── timesheet.xsl │ │ │ │ └── timesheet2text.xsl │ │ │ │ ├── timesheet.dtd │ │ │ │ └── timesheet.xsd │ │ ├── tableplugin │ │ │ ├── tableplugin.spd │ │ │ └── tables.xml │ │ ├── tei │ │ │ ├── __init__.py │ │ │ ├── dtd │ │ │ │ ├── catalog.local │ │ │ │ ├── catalog.tei │ │ │ │ ├── catalog.xml │ │ │ │ ├── dummy.dtd │ │ │ │ ├── index.html │ │ │ │ ├── index.xml │ │ │ │ ├── iso-dia.ent │ │ │ │ ├── iso-lat1.ent │ │ │ │ ├── iso-lat2.ent │ │ │ │ ├── iso-num.ent │ │ │ │ ├── iso-pub.ent │ │ │ │ ├── tei2.dtd │ │ │ │ ├── teiana2.dtd │ │ │ │ ├── teiana2.ent │ │ │ │ ├── teiback2.dtd │ │ │ │ ├── teicatalog.xml │ │ │ │ ├── teicert2.dtd │ │ │ │ ├── teiclas2.ent │ │ │ │ ├── teicore2.dtd │ │ │ │ ├── teicorp2.dtd │ │ │ │ ├── teidict2.dtd │ │ │ │ ├── teidict2.ent │ │ │ │ ├── teidram2.dtd │ │ │ │ ├── teidram2.ent │ │ │ │ ├── teifig2.dtd │ │ │ │ ├── teifig2.ent │ │ │ │ ├── teifron2.dtd │ │ │ │ ├── teifs2.dtd │ │ │ │ ├── teifsd2.dtd │ │ │ │ ├── teigen2.dtd │ │ │ │ ├── teigis2.ent │ │ │ │ ├── teihdr2.dtd │ │ │ │ ├── teikey2.ent │ │ │ │ ├── teilink2.dtd │ │ │ │ ├── teilink2.ent │ │ │ │ ├── teilite.dec │ │ │ │ ├── teilitex.dec │ │ │ │ ├── teilitex.dtd │ │ │ │ ├── teilitex.ent │ │ │ │ ├── teimix2.dtd │ │ │ │ ├── teind2.dtd │ │ │ │ ├── teind2.ent │ │ │ │ ├── teinet2.dtd │ │ │ │ ├── teipl2.dtd │ │ │ │ ├── teipros2.dtd │ │ │ │ ├── teisgml.dec │ │ │ │ ├── teishd2.dtd │ │ │ │ ├── teispok2.dtd │ │ │ │ ├── teispok2.ent │ │ │ │ ├── teistr2.dtd │ │ │ │ ├── teitc2.dtd │ │ │ │ ├── teitc2.ent │ │ │ │ ├── teite2f.dtd │ │ │ │ ├── teite2n.dtd │ │ │ │ ├── teiterm2.dtd │ │ │ │ ├── teiterm2.ent │ │ │ │ ├── teitran2.dtd │ │ │ │ ├── teitran2.ent │ │ │ │ ├── teitsd2.dtd │ │ │ │ ├── teivers2.dtd │ │ │ │ ├── teivers2.ent │ │ │ │ ├── teiwsd2.dtd │ │ │ │ ├── teixfull.dtd │ │ │ │ ├── teixlite.dec │ │ │ │ └── teixlite.dtd │ │ │ ├── publishing.spd │ │ │ ├── publishing │ │ │ │ ├── Tei.py │ │ │ │ ├── TeiPublisher.py │ │ │ │ └── __init__.py │ │ │ ├── tei-common.ahpp │ │ │ ├── tei-xsl-1.3 │ │ │ │ ├── fo │ │ │ │ │ ├── ChangeLog │ │ │ │ │ ├── tei-bib.xsl │ │ │ │ │ ├── tei-drama.xsl │ │ │ │ │ ├── tei-figure.xsl │ │ │ │ │ ├── tei-front.xsl │ │ │ │ │ ├── tei-lib.xsl │ │ │ │ │ ├── tei-lists.xsl │ │ │ │ │ ├── tei-makecolspec.xsl │ │ │ │ │ ├── tei-markers.xsl │ │ │ │ │ ├── tei-math.xsl │ │ │ │ │ ├── tei-notes.xsl │ │ │ │ │ ├── tei-oddlib.xsl │ │ │ │ │ ├── tei-odds.xsl │ │ │ │ │ ├── tei-oucs.xsl │ │ │ │ │ ├── tei-oucsdoc.xsl │ │ │ │ │ ├── tei-oucsheader.xsl │ │ │ │ │ ├── tei-para.xsl │ │ │ │ │ ├── tei-param.xsl │ │ │ │ │ ├── tei-poetry.xsl │ │ │ │ │ ├── tei-special.xsl │ │ │ │ │ ├── tei-struct.xsl │ │ │ │ │ ├── tei-table.xsl │ │ │ │ │ ├── tei-teic.xsl │ │ │ │ │ ├── tei-xref.xsl │ │ │ │ │ ├── tei.xsl │ │ │ │ │ ├── teicommon.xsl │ │ │ │ │ ├── teixsl.html │ │ │ │ │ └── teixsl.xml │ │ │ │ └── html │ │ │ │ │ ├── ChangeLog │ │ │ │ │ ├── publishMultipleHtml.xsl │ │ │ │ │ ├── publishSingleHtml.xsl │ │ │ │ │ ├── teicommon.xsl │ │ │ │ │ ├── teihtml-acdt-css.xsl │ │ │ │ │ ├── teihtml-acdt-printable.xsl │ │ │ │ │ ├── teihtml-acdt-text.xsl │ │ │ │ │ ├── teihtml-acdt.xsl │ │ │ │ │ ├── teihtml-bibl.xsl │ │ │ │ │ ├── teihtml-chunk.xsl │ │ │ │ │ ├── teihtml-corpus.xsl │ │ │ │ │ ├── teihtml-drama.xsl │ │ │ │ │ ├── teihtml-figures.xsl │ │ │ │ │ ├── teihtml-frames.xsl │ │ │ │ │ ├── teihtml-front.xsl │ │ │ │ │ ├── teihtml-lists.xsl │ │ │ │ │ ├── teihtml-main.xsl │ │ │ │ │ ├── teihtml-master.xsl │ │ │ │ │ ├── teihtml-math.xsl │ │ │ │ │ ├── teihtml-misc.xsl │ │ │ │ │ ├── teihtml-notes.xsl │ │ │ │ │ ├── teihtml-odds.xsl │ │ │ │ │ ├── teihtml-oucs-css.xsl │ │ │ │ │ ├── teihtml-oucs-msxml.xsl │ │ │ │ │ ├── teihtml-oucs-printable.xsl │ │ │ │ │ ├── teihtml-oucs-raw.xsl │ │ │ │ │ ├── teihtml-oucs-text.xsl │ │ │ │ │ ├── teihtml-oucs.xsl │ │ │ │ │ ├── teihtml-oucsdoc.xsl │ │ │ │ │ ├── teihtml-pagetable.xsl │ │ │ │ │ ├── teihtml-param.xsl │ │ │ │ │ ├── teihtml-poetry.xsl │ │ │ │ │ ├── teihtml-slides-oucs.xsl │ │ │ │ │ ├── teihtml-slides.xsl │ │ │ │ │ ├── teihtml-struct.xsl │ │ │ │ │ ├── teihtml-tables.xsl │ │ │ │ │ ├── teihtml-teic-css.xsl │ │ │ │ │ ├── teihtml-teic-msxml.xsl │ │ │ │ │ ├── teihtml-teic-printable.xsl │ │ │ │ │ ├── teihtml-teic-raw.xsl │ │ │ │ │ ├── teihtml-teic-text.xsl │ │ │ │ │ ├── teihtml-teic.xsl │ │ │ │ │ ├── teihtml-xref.xsl │ │ │ │ │ ├── teihtml.xsl │ │ │ │ │ ├── teixsl.html │ │ │ │ │ └── teixsl.xml │ │ │ ├── tei-xsl-serna │ │ │ │ ├── SR-COPYING │ │ │ │ ├── tei-bib.xsl │ │ │ │ ├── tei-drama.xsl │ │ │ │ ├── tei-figure.xsl │ │ │ │ ├── tei-front.xsl │ │ │ │ ├── tei-lib.xsl │ │ │ │ ├── tei-lists.xsl │ │ │ │ ├── tei-markers.xsl │ │ │ │ ├── tei-notes.xsl │ │ │ │ ├── tei-para.xsl │ │ │ │ ├── tei-param.xsl │ │ │ │ ├── tei-poetry.xsl │ │ │ │ ├── tei-special.xsl │ │ │ │ ├── tei-struct.xsl │ │ │ │ ├── tei-table.xsl │ │ │ │ ├── tei-toc.xsl │ │ │ │ ├── tei-xref.xsl │ │ │ │ └── tei.xsl │ │ │ ├── tei.ahpp │ │ │ ├── tei.ent │ │ │ ├── tei.scc │ │ │ ├── tei.sdt │ │ │ ├── tei.xsltp │ │ │ ├── teifull.ahpp │ │ │ ├── teifull.scc │ │ │ ├── teifull.sdt │ │ │ ├── teifull.xsltp │ │ │ └── xsd │ │ │ │ ├── tei2.xsd │ │ │ │ ├── teiana2.ent.xsd │ │ │ │ ├── teiana2.xsd │ │ │ │ ├── teiback2.xsd │ │ │ │ ├── teicert2.xsd │ │ │ │ ├── teiclas2.ent.xsd │ │ │ │ ├── teicore2.xsd │ │ │ │ ├── teicorp2.xsd │ │ │ │ ├── teidict2.ent.xsd │ │ │ │ ├── teidict2.xsd │ │ │ │ ├── teidram2.ent.xsd │ │ │ │ ├── teidram2.xsd │ │ │ │ ├── teifig2.ent.xsd │ │ │ │ ├── teifig2.xsd │ │ │ │ ├── teifron2.xsd │ │ │ │ ├── teifs2.xsd │ │ │ │ ├── teihdr2.xsd │ │ │ │ ├── teikey2.ent.xsd │ │ │ │ ├── teilink2.ent.xsd │ │ │ │ ├── teilink2.xsd │ │ │ │ ├── teimix2.xsd │ │ │ │ ├── teind2.ent.xsd │ │ │ │ ├── teind2.xsd │ │ │ │ ├── teinet2.xsd │ │ │ │ ├── teispok2.ent.xsd │ │ │ │ ├── teispok2.xsd │ │ │ │ ├── teistr2.xsd │ │ │ │ ├── teitc2.ent.xsd │ │ │ │ ├── teitc2.xsd │ │ │ │ ├── teite2n.xsd │ │ │ │ ├── teiterm2.ent.xsd │ │ │ │ ├── teiterm2.xsd │ │ │ │ ├── teitran2.xsd │ │ │ │ ├── teivers2.ent.xsd │ │ │ │ ├── teivers2.xsd │ │ │ │ ├── teixfull.xsd │ │ │ │ └── teixlite.xsd │ │ ├── updateonsave │ │ │ ├── __init__.py │ │ │ ├── updateonsave.spd │ │ │ ├── updateonsavepy.py │ │ │ └── updateonsavepy.spd │ │ ├── xhtml │ │ │ ├── __init__.py │ │ │ ├── dtd │ │ │ │ ├── catalog.xml │ │ │ │ ├── xhtml-lat1.ent │ │ │ │ ├── xhtml-special.ent │ │ │ │ ├── xhtml-symbol.ent │ │ │ │ ├── xhtml.soc │ │ │ │ ├── xhtml1-frameset.dtd │ │ │ │ ├── xhtml1-strict.dtd │ │ │ │ ├── xhtml1-transitional.dtd │ │ │ │ └── xhtml1.dcl │ │ │ ├── publishing.spd │ │ │ ├── publishing │ │ │ │ ├── Xhtml.py │ │ │ │ ├── XhtmlPublisher.py │ │ │ │ └── __init__.py │ │ │ ├── xhtml-common.ahpp │ │ │ ├── xhtml-noschema.ahpp │ │ │ ├── xhtml-noschema.sdt │ │ │ ├── xhtml-noschema.tpp │ │ │ ├── xhtml-xsl-serna │ │ │ │ ├── xhtml-blocks.xsl │ │ │ │ ├── xhtml-common.xsl │ │ │ │ ├── xhtml-images.xsl │ │ │ │ ├── xhtml-inlines.xsl │ │ │ │ ├── xhtml-lists.xsl │ │ │ │ ├── xhtml-param.xsl │ │ │ │ ├── xhtml-struct.xsl │ │ │ │ └── xhtml.xsl │ │ │ ├── xhtml.ahpp │ │ │ ├── xhtml.csl │ │ │ ├── xhtml.sdt │ │ │ ├── xhtml.tpp │ │ │ └── xsd │ │ │ │ ├── xhtml.xsd │ │ │ │ └── xml.xsd │ │ └── xsltparam │ │ │ └── xsltparam.spd │ ├── ui │ │ ├── CommonActions.ent │ │ ├── ElementContextMenu.ent │ │ ├── EmptyDocument.sui │ │ ├── LiquidItems.ent │ │ ├── PlainDocument.sui │ │ ├── SelectionContextMenu.ent │ │ ├── StructDocument.sui │ │ └── ToggleMessages.ent │ ├── utils │ │ ├── plugindoc-xsl │ │ │ ├── chunk-common.xsl │ │ │ ├── chunk.xsl │ │ │ ├── dbhtml-utils.xsl │ │ │ └── mkprofile.xsl │ │ └── publishing │ │ │ ├── runFop.bat │ │ │ ├── runFop.sh │ │ │ ├── runSaxon.bat │ │ │ ├── runSaxon.sh │ │ │ ├── runXep.bat │ │ │ ├── runXep.sh │ │ │ ├── runXslt.bat │ │ │ ├── runXslt.sh │ │ │ └── runXsltMac.sh │ └── xml │ │ ├── catalog.xml │ │ ├── dtds │ │ └── .empty-stub │ │ ├── schemas │ │ ├── xsl-fo │ │ │ └── fo.xsd │ │ └── xslt │ │ │ ├── xslt-fo.xsd │ │ │ ├── xslt-xml.xsd │ │ │ └── xslt.xsd │ │ ├── stylesheets │ │ ├── docbook-simple │ │ │ ├── blocks.xsl │ │ │ ├── common.xsl │ │ │ ├── compounds.xsl │ │ │ ├── docbook-fo.xsl │ │ │ ├── docbook.xsl │ │ │ ├── glossary.xsl │ │ │ ├── index.xsl │ │ │ ├── inlines.xsl │ │ │ ├── lists.xsl │ │ │ └── parameters.xsl │ │ ├── docbook-xsl-1.68.1.tar.bz2 │ │ ├── gca-extremetools │ │ │ ├── dirlist2paperlist.xsl │ │ │ ├── extreme.fo.xsl │ │ │ ├── extreme.html.xsl │ │ │ ├── extreme2003.fo.xsl │ │ │ ├── extremeauthorindex.xsl │ │ │ ├── extremekeywordindex.xsl │ │ │ ├── extremetitleindex.xsl │ │ │ ├── extremetoc.html.xsl │ │ │ ├── htmlparams.xsl │ │ │ ├── index.core.xsl │ │ │ ├── table.db-fo.xsl │ │ │ ├── table.xsl │ │ │ └── wrapmath.xsl │ │ ├── xsl-fo │ │ │ └── xsl-fo.xsl │ │ ├── xslbricks │ │ │ ├── Makefile │ │ │ ├── backend-generator.xsl │ │ │ ├── blocks_template.xsl │ │ │ ├── fo │ │ │ │ ├── blocks.xsl │ │ │ │ ├── common.xsl │ │ │ │ ├── default-elements.xsl │ │ │ │ ├── fo.xsl │ │ │ │ ├── fonts-linux.xsl │ │ │ │ ├── fonts-mac.xsl │ │ │ │ ├── fonts-win.xsl │ │ │ │ ├── fonts.xsl │ │ │ │ ├── inlines.xsl │ │ │ │ ├── layoutsetup.xsl │ │ │ │ ├── lists.xsl │ │ │ │ ├── page-sizes.xsl │ │ │ │ ├── parameters.xsl │ │ │ │ ├── simple-tables.xsl │ │ │ │ └── xhtml-tables.xsl │ │ │ ├── html │ │ │ │ ├── blocks.xsl │ │ │ │ ├── default-elements.xsl │ │ │ │ ├── html.xsl │ │ │ │ ├── inlines.xsl │ │ │ │ ├── layoutsetup.xsl │ │ │ │ ├── lists.xsl │ │ │ │ ├── parameters.xsl │ │ │ │ ├── simple-tables.xsl │ │ │ │ └── xhtml-tables.xsl │ │ │ ├── inlines_template.xsl │ │ │ ├── lists_template.xsl │ │ │ └── simple-tables_template.xsl │ │ └── xslt │ │ │ ├── page-sizes.xsl │ │ │ ├── serna-xslt-toc.xsl │ │ │ ├── simple-master-set.xsl │ │ │ ├── xslt-elements.xsl │ │ │ └── xslt.xsl │ │ └── templates │ │ ├── ata │ │ └── cmm-template.xml │ │ └── xml-dev │ │ ├── xsl-fo.xml │ │ └── xslt-template.xml ├── dll │ ├── Makefile.pro │ ├── bigdll.def │ └── bigdll.t ├── docutils │ ├── Makefile.pro │ ├── VERSION │ ├── adp2qhp.xsl │ ├── check_mft.py │ ├── check_tags.py │ ├── db-pics.t │ ├── db-pics.xsl │ ├── dita-sources.t │ ├── dita.t │ ├── doc.t │ ├── doc_defs.h │ ├── docbook.t │ ├── doctags.h │ ├── impl │ │ ├── DocTag.h │ │ └── get_tag.cxx │ ├── index.html │ ├── make_tags_cpp.py │ ├── migration │ │ ├── check-adp-links.xsl │ │ ├── check-adp.py │ │ ├── check-text.py │ │ ├── check-text.xsl │ │ ├── check-topic-elems.xsl │ │ ├── count-text.xsl │ │ ├── db2dita.pro │ │ ├── db2dita.t │ │ ├── dbhtml-utils.xsl │ │ ├── docbook-to-dita-impl.xsl │ │ ├── docbook-to-dita-param.xsl │ │ ├── docbook-to-dita.xsl │ │ ├── docdirs.t │ │ ├── gen-element.xsl │ │ └── gen-topicrefs.xsl │ ├── mk │ │ ├── GNUmakefile │ │ └── Makefile │ ├── qhc_list.py │ ├── replace.py │ ├── sapi.dxg │ ├── serna.qhcp │ ├── topicrefs.xsl │ └── xsl │ │ ├── db-modified │ │ ├── chunk-common.xsl │ │ └── chunk.xsl │ │ ├── dbhtml-utils.xsl │ │ ├── dita │ │ ├── dita2html.xsl │ │ ├── ditamap-to-adp.xsl │ │ └── map2indexhtml.xsl │ │ ├── mkdoctags.xsl │ │ ├── mkdoctags2.xsl │ │ └── mkprofile.xsl ├── docview │ ├── BuiltinUiCommands.h │ ├── Clipboard.h │ ├── DocBuilder.h │ ├── DocumentPlugin.h │ ├── DocumentStateEventData.h │ ├── DocumentStateFactory.h │ ├── EventTranslator.h │ ├── Finder.h │ ├── GoToOriginEventData.h │ ├── InsertSymbolItem.h │ ├── Makefile.pro │ ├── MessageTree.h │ ├── MessageTreeHolder.h │ ├── MessageView.h │ ├── MessageViewHolder.h │ ├── PluginLoader.h │ ├── SernaDoc.h │ ├── VERSION │ ├── dv_defs.h │ ├── dv_utils.h │ ├── impl │ │ ├── Clipboard.cxx │ │ ├── DocBuilder.cxx │ │ ├── DocumentPlugin.cxx │ │ ├── DocumentStateFactory.cxx │ │ ├── EventTranslator.cxx │ │ ├── Finder.cxx │ │ ├── InsertSymbolItem.cxx │ │ ├── MessageTree.cxx │ │ ├── MessageView.cxx │ │ ├── RecentFileList.cxx │ │ ├── SernaDoc.cxx │ │ ├── ToolbarsList.cxx │ │ ├── debug_dv.cxx │ │ ├── debug_dv.h │ │ ├── dv_utils.cxx │ │ └── gui_update.cxx │ └── qt │ │ ├── AboutBase.ui │ │ ├── AboutSerna.cxx │ │ ├── AboutSerna.h │ │ ├── AboutSernaBase.ui │ │ ├── BrowseButtonMenu.cxx │ │ ├── BrowseButtonMenu.h │ │ ├── BrowserLauncher.cxx │ │ ├── ClipboardImpl.h │ │ ├── FindAndReplace.cxx │ │ ├── FindAndReplace.h │ │ ├── FindDialogTabBase.ui │ │ ├── FindMiniToolBase.ui │ │ ├── FindToolTabBase.ui │ │ ├── InsertSymbolDialogBase.ui │ │ ├── InsertSymbolWidget.cxx │ │ ├── InsertSymbolWidget.h │ │ ├── MessageBoxDialogBase.ui │ │ ├── PluginLoader.cxx │ │ ├── QtMessageList.cxx │ │ ├── QtMessageList.h │ │ ├── QtSernaDoc.cxx │ │ ├── QtSyntaxHighlighter.cxx │ │ ├── QtSyntaxHighlighter.h │ │ ├── SaveAsDocDialog.cxx │ │ ├── SymbolGrid.cxx │ │ ├── SymbolGrid.h │ │ ├── UrlBrowseDialog.cxx │ │ ├── UrlBrowseDialogBase.ui │ │ └── unicode_ranges.h ├── genui │ ├── Makefile.pro │ ├── genui.t │ ├── make-event-decls2.xsl │ ├── make-ui-headers2.xsl │ ├── make-ui-init2.xsl │ └── param.xsl ├── i18n │ ├── Makefile.pro │ ├── check_literals.py │ ├── check_ts.py │ ├── check_ts.xsl │ ├── compare-accels.xsl │ ├── gentr.t │ ├── i18n.t │ ├── make-tr-csl.xsl │ ├── make-tr-msg.xsl │ ├── make-tr-scc.xsl │ ├── make-tr-ui.xsl │ ├── make-ts-finished.xsl │ ├── msg2cpp.py │ ├── remove_obsolete_ts.xsl │ └── ts │ │ ├── qscintilla_de.ts │ │ ├── qscintilla_fr.ts │ │ ├── qscintilla_ig.ts │ │ ├── qscintilla_it.ts │ │ ├── qscintilla_nb-no.ts │ │ ├── qscintilla_nl.ts │ │ ├── qscintilla_ru.ts │ │ ├── qscintilla_se.ts │ │ ├── qscintilla_untranslated.ts │ │ ├── qscintilla_zh-cn.ts │ │ ├── qt_cs.ts │ │ ├── serna_cs.ts │ │ ├── serna_de.ts │ │ ├── serna_fr.ts │ │ ├── serna_ig.ts │ │ ├── serna_it.ts │ │ ├── serna_nb-no.ts │ │ ├── serna_nl.ts │ │ ├── serna_ru.ts │ │ ├── serna_se.ts │ │ └── serna_zh-cn.ts ├── icons │ ├── CollapseMenu.png │ ├── CollapseMenu_small.png │ ├── ComboBox.png │ ├── ComboBox_small.png │ ├── ContentMap.png │ ├── ContentMap_small.png │ ├── ContextMenu.png │ ├── ContextMenu_small.png │ ├── Customizer_small.png │ ├── DocumentEditor.png │ ├── DocumentEditor_small.png │ ├── ElementAttributesDialog.png │ ├── ElementAttributesDialog_small.png │ ├── FindAndReplaceDialog.png │ ├── FindAndReplaceDialog_small.xpm │ ├── IDREF_attribute_type.png │ ├── ID_attribute_type.png │ ├── InsertElementDialog.png │ ├── InsertElementDialog_small.png │ ├── Label.png │ ├── Label_small.png │ ├── MainMenu.png │ ├── MainMenu_small.png │ ├── MenuButton.png │ ├── MenuButton_small.png │ ├── MenuItem.png │ ├── MenuItem_small.png │ ├── MenuSeparator.png │ ├── MenuSeparator_small.png │ ├── MessageWindow.png │ ├── MessageWindow_small.png │ ├── PopupMenu.png │ ├── PopupMenu_small.png │ ├── README.txt │ ├── RecentFilesMenu.png │ ├── RecentFilesMenu_small.png │ ├── RedoMenu.png │ ├── RedoMenu_small.png │ ├── SernaAbout.png │ ├── SernaSplash.png │ ├── Spacer.png │ ├── Spacer_small.png │ ├── Splitter.png │ ├── Splitter_small.png │ ├── StatusBar.png │ ├── StatusBar_small.png │ ├── TOC.png │ ├── TOC_small.png │ ├── TabWidget.png │ ├── TabWidget_small.png │ ├── ToolBar.png │ ├── ToolBarSeparator.png │ ├── ToolBarSeparator_small.png │ ├── ToolBar_small.png │ ├── ToolBox.png │ ├── ToolBox_small.png │ ├── ToolButton.png │ ├── ToolButton_small.png │ ├── ToolComboBox.png │ ├── ToolComboBox_small.png │ ├── ToolbarsMenu.png │ ├── ToolbarsMenu_small.png │ ├── UndoMenu.png │ ├── UndoMenu_small.png │ ├── Widget.png │ ├── Widget_small.png │ ├── XMLNS_attribute_type.png │ ├── add_attribute.png │ ├── append_child_item.png │ ├── append_child_item_disabled.png │ ├── assistant │ │ ├── addtab.png │ │ ├── appicon.png │ │ ├── assistant.png │ │ ├── book.png │ │ ├── closetab.png │ │ ├── d_closetab.png │ │ ├── designer.png │ │ ├── editcopy.png │ │ ├── find.png │ │ ├── home.png │ │ ├── linguist.png │ │ ├── next.png │ │ ├── previous.png │ │ ├── print.png │ │ ├── qt.png │ │ ├── splash.png │ │ ├── whatsthis.xpm │ │ ├── zoomin.png │ │ └── zoomout.png │ ├── assistant_up.png │ ├── balance_selection.png │ ├── balance_selection_disabled.png │ ├── bold.xpm │ ├── broken_image.png │ ├── broken_image_disabled.png │ ├── browse.png │ ├── browse_dav.png │ ├── browse_disabled.png │ ├── close_document.png │ ├── collapse.png │ ├── collapse_disabled.png │ ├── comment.png │ ├── comment_disabled.png │ ├── content.png │ ├── content_map_focus.png │ ├── convert_to_external_entity.png │ ├── convert_to_internal_entity.png │ ├── copy.png │ ├── copy_disabled.png │ ├── create_custom_content.png │ ├── custom_attribute_type.png │ ├── custom_content_1.xpm │ ├── custom_content_2.xpm │ ├── custom_content_3.xpm │ ├── customize_interface.png │ ├── cut.png │ ├── cut_disabled.png │ ├── default_attribute.png │ ├── default_attribute_disabled.png │ ├── default_category.png │ ├── default_template.png │ ├── delete_attribute.png │ ├── delete_attribute_disabled.png │ ├── dita_template.png │ ├── docbook_4_2_template.png │ ├── docbook_4_3_template.png │ ├── docbook_4_4_template.png │ ├── docbook_4_5_template.png │ ├── docbook_lite_template.png │ ├── dock_bottom.png │ ├── dock_bottom_disabled.png │ ├── dock_left.png │ ├── dock_left_disabled.png │ ├── dock_right.png │ ├── dock_right_disabled.png │ ├── dock_top.png │ ├── dock_top_disabled.png │ ├── document.png │ ├── edit_custom_content.png │ ├── element_attributes.png │ ├── element_attributes_disabled.png │ ├── element_help.png │ ├── enumerated_list.xpm │ ├── error.png │ ├── example_read.png │ ├── expand.png │ ├── expand_disabled.png │ ├── external_entity.png │ ├── external_entity_disabled.png │ ├── external_entity_external_subset.png │ ├── external_entity_internal_subset.png │ ├── figure.xpm │ ├── find.png │ ├── find_and_replace.png │ ├── find_attribute_name.png │ ├── find_attribute_name_16.png │ ├── find_attribute_value_16.png │ ├── find_attributes.png │ ├── find_backwars.png │ ├── find_comments.png │ ├── find_disabled.png │ ├── find_forward.png │ ├── find_match_case.png │ ├── find_no_match_case.png │ ├── find_no_replace.png │ ├── find_pattern.png │ ├── find_pattern_16.png │ ├── find_text.png │ ├── find_text_16.png │ ├── fixed_attribute.png │ ├── formal_para.xpm │ ├── help.png │ ├── info.png │ ├── info_disabled.png │ ├── insert_element.png │ ├── insert_element_disabled.png │ ├── insert_item_after.png │ ├── insert_item_after_disabled.png │ ├── insert_item_before.png │ ├── insert_item_before_disabled.png │ ├── insert_symbol.png │ ├── internal_entity.png │ ├── internal_entity_disabled.png │ ├── internal_entity_external_subset.png │ ├── internal_entity_internal_subset.png │ ├── italic.xpm │ ├── itemized_list.xpm │ ├── join_elements.png │ ├── join_elements_disabled.png │ ├── modified_attribute.png │ ├── new_document.png │ ├── nitf_template.png │ ├── none.xpm │ ├── null.xpm │ ├── open_document.png │ ├── open_document_disabled.png │ ├── other_template.png │ ├── page_actual_size.png │ ├── page_height.png │ ├── page_mode.png │ ├── page_width.png │ ├── para.xpm │ ├── paste.png │ ├── paste_disabled.png │ ├── pi.png │ ├── pi_disabled.png │ ├── print_document.png │ ├── print_document_disabled.png │ ├── publish.png │ ├── publish_ah.png │ ├── publish_ah_disabled.png │ ├── python.png │ ├── recently_used_files.png │ ├── recently_used_files_disabled.png │ ├── redline_accept.png │ ├── redline_accept_disabled.png │ ├── redline_commenting.png │ ├── redline_deletion.png │ ├── redline_deletion_disabled.png │ ├── redline_edit.png │ ├── redline_edit_disabled.png │ ├── redline_insertion.png │ ├── redline_next.png │ ├── redline_prev.png │ ├── redline_reject.png │ ├── redline_reject_disabled.png │ ├── redo.png │ ├── redo_disabled.png │ ├── reload_document.png │ ├── rename_element.png │ ├── rename_element_disabled.png │ ├── required_attribute.png │ ├── reset_interface.png │ ├── revalidate.png │ ├── revalidate_disabled.png │ ├── save_document.png │ ├── save_document_disabled.png │ ├── section.xpm │ ├── serna_app.png │ ├── set_default_attribute_value.xpm │ ├── set_default_attribute_value_disabled.xpm │ ├── spell.png │ ├── spell_disabled.png │ ├── split_element.png │ ├── split_element_disabled.png │ ├── sub_section.xpm │ ├── switch_tagmode.png │ ├── symbol_arrow_left.png │ ├── symbol_arrow_right.png │ ├── syntext_template.png │ ├── table_delete.png │ ├── table_delete_cell.png │ ├── table_delete_cell_content.png │ ├── table_delete_cell_content_disabled.png │ ├── table_delete_cell_disabled.png │ ├── table_delete_col.png │ ├── table_delete_col_disabled.png │ ├── table_delete_disabled.png │ ├── table_delete_foot.png │ ├── table_delete_foot_disabled.png │ ├── table_delete_head.png │ ├── table_delete_head_disabled.png │ ├── table_delete_row.png │ ├── table_delete_row_disabled.png │ ├── table_insert.png │ ├── table_insert_cell.png │ ├── table_insert_cell_after.png │ ├── table_insert_cell_after_disabled.png │ ├── table_insert_cell_disabled.png │ ├── table_insert_col.png │ ├── table_insert_col_after.png │ ├── table_insert_col_after_disabled.png │ ├── table_insert_col_disabled.png │ ├── table_insert_disabled.png │ ├── table_insert_foot.png │ ├── table_insert_foot_disabled.png │ ├── table_insert_head.png │ ├── table_insert_head_disabled.png │ ├── table_insert_row.png │ ├── table_insert_row_after.png │ ├── table_insert_row_after_disabled.png │ ├── table_insert_row_disabled.png │ ├── table_merge_above.png │ ├── table_merge_above_disabled.png │ ├── table_merge_below.png │ ├── table_merge_below_disabled.png │ ├── table_merge_sel.png │ ├── table_merge_sel_disabled.png │ ├── table_split_above.png │ ├── table_split_above_disabled.png │ ├── table_split_after.png │ ├── table_split_after_disabled.png │ ├── table_split_before.png │ ├── table_split_before_disabled.png │ ├── table_split_below.png │ ├── table_split_below_disabled.png │ ├── tei_template.png │ ├── toc_icon.png │ ├── underline.xpm │ ├── undo.png │ ├── undo_disabled.png │ ├── undock.png │ ├── undock_disabled.png │ ├── url.xpm │ ├── warning.png │ ├── xhtml_template.png │ ├── xinclude.png │ ├── xinclude_disabled.png │ ├── zoom_in.png │ ├── zoom_in_disabled.png │ ├── zoom_out.png │ └── zoom_out_disabled.png ├── plaineditor │ ├── Makefile.pro │ ├── PlainDocument.h │ ├── PlainEditor.h │ ├── VERSION │ ├── impl │ │ ├── PlainDocument.cxx │ │ ├── PlainEditor.cxx │ │ ├── PlainFinder.cxx │ │ ├── PlainInsertSymbol.cxx │ │ ├── debug_pe.cxx │ │ └── debug_pe.h │ ├── pe_defs.h │ └── qt │ │ ├── QtPlainEditor.cxx │ │ └── QtPlainEditor.h ├── plugins │ ├── Makefile.pro │ ├── contentmap │ │ ├── ContentMap.cxx │ │ ├── ContentMap.h │ │ ├── Makefile.pro │ │ ├── VERSION │ │ ├── cm_debug.cxx │ │ ├── cm_debug.h │ │ ├── cm_defs.h │ │ ├── csl │ │ │ ├── Engine.cxx │ │ │ ├── Engine.h │ │ │ ├── Exception.cxx │ │ │ ├── Exception.h │ │ │ ├── Instance.cxx │ │ │ ├── Instance.h │ │ │ ├── Instructions.h │ │ │ ├── RootInstance.h │ │ │ ├── Stylesheet.h │ │ │ ├── SubInstance.h │ │ │ ├── Template.h │ │ │ ├── csl_debug.cxx │ │ │ ├── csl_debug.h │ │ │ ├── csl_defs.h │ │ │ ├── instructions.cxx │ │ │ └── subinstances.cxx │ │ └── qt │ │ │ ├── QtContentMap.cxx │ │ │ └── QtContentMap.h │ ├── customcontent │ │ ├── CustomContentDialog.cxx │ │ ├── CustomContentDialog.h │ │ ├── CustomContentDialogBase.ui │ │ ├── CustomContentListDialog.cxx │ │ ├── CustomContentListDialog.h │ │ ├── CustomContentListDialogBase.ui │ │ ├── InsertCustomContent.cxx │ │ ├── Makefile.pro │ │ ├── VERSION │ │ ├── cc_defs.h │ │ ├── customcontent.cxx │ │ ├── customcontent.h │ │ ├── debug_cc.cxx │ │ ├── debug_cc.h │ │ └── xpathutils.h │ ├── docinfo │ │ ├── DocInfo.cxx │ │ ├── DocInfo.h │ │ ├── DocInfoDialog.cxx │ │ ├── DocInfoDialog.h │ │ ├── DocInfoDialogBase.ui │ │ ├── Makefile.pro │ │ └── VERSION │ ├── exports.darwin │ ├── exports.map │ ├── hotkeys │ │ ├── HotkeysDialogBase.ui │ │ ├── Makefile.pro │ │ ├── VERSION │ │ └── hotkeys.cxx │ ├── linkvoyager │ │ ├── GNUmakefile │ │ ├── GNUmakefile.mac │ │ ├── Makefile │ │ ├── Makefile.common │ │ ├── Makefile.pro │ │ ├── VERSION │ │ ├── linkvoyager.cxx │ │ └── readme.txt │ ├── makedist_mac.sh │ ├── makedist_tgz.sh │ ├── makedist_win.cmd │ ├── plugins_common.pro │ ├── plugins_common.t │ ├── pyconsole │ │ ├── Makefile.pro │ │ ├── QtPyDialog.cxx │ │ ├── QtPyDialog.h │ │ ├── QtPyDialogBase.ui │ │ ├── VERSION │ │ └── pyconsole.cxx │ ├── pyplugin │ │ ├── Makefile.pro │ │ ├── VERSION │ │ └── pyplugin.cxx │ ├── speller │ │ ├── DocSpeller.cxx │ │ ├── DocSpeller.h │ │ ├── DynFunctor.h │ │ ├── FotTokenizer.cxx │ │ ├── FotTokenizer.h │ │ ├── FunTraits.h │ │ ├── Makefile.pro │ │ ├── OnlineSpeller.cxx │ │ ├── OnlineSpeller.h │ │ ├── SpellChecker.cxx │ │ ├── SpellChecker.h │ │ ├── SpellerAgent.cxx │ │ ├── SpellerAgent.h │ │ ├── SpellerLibrary.cxx │ │ ├── SpellerLibrary.h │ │ ├── SpellerPlugin.cxx │ │ ├── SpellerReactor.h │ │ ├── StructSpeller.cxx │ │ ├── VERSION │ │ ├── aspell │ │ │ ├── AspellChecker.cxx │ │ │ ├── AspellLibrary.cxx │ │ │ ├── AspellLibrary.h │ │ │ ├── aspell.cxx │ │ │ ├── aspell.h │ │ │ └── aspell.hpp │ │ ├── hunspell │ │ │ ├── HunspellChecker.cxx │ │ │ ├── HunspellLibrary.cxx │ │ │ ├── HunspellLibrary.h │ │ │ └── hunspelldll.h │ │ ├── qt │ │ │ ├── AddWordsDialogBase.ui │ │ │ ├── SpellCheckDialog.cxx │ │ │ ├── SpellCheckDialog.h │ │ │ ├── SpellCheckPlainDialog.cxx │ │ │ ├── SpellCheckPlainDialogBase.ui │ │ │ ├── SpellCheckerSettingsDialog.cxx │ │ │ └── SpellCheckerSettingsDialogBase.ui │ │ ├── speller_debug.cxx │ │ ├── speller_debug.h │ │ ├── utils.cxx │ │ └── utils.h │ ├── tableplugin │ │ ├── Attributes.cxx │ │ ├── InsertColumn.cxx │ │ ├── InsertHeaderFooter.cxx │ │ ├── InsertRow.cxx │ │ ├── InsertTable.cxx │ │ ├── Makefile.pro │ │ ├── MergeCells.cxx │ │ ├── SplitCells.cxx │ │ ├── TableBatchCommand.cxx │ │ ├── TableBatchCommand.h │ │ ├── TablePlugin.cxx │ │ ├── TablePlugin.h │ │ ├── TableUtils.cxx │ │ ├── TableUtils.h │ │ ├── VERSION │ │ └── qt │ │ │ ├── ColumnAttributesDialogBase.ui │ │ │ ├── InsertTableDialog.cxx │ │ │ ├── InsertTableDialogBase.ui │ │ │ ├── TableButton.cxx │ │ │ ├── TableButton.h │ │ │ ├── TableGridView.cxx │ │ │ └── TableGridView.h │ ├── updateonsave │ │ ├── Makefile.pro │ │ ├── VERSION │ │ └── updateonsave.cxx │ └── xsltparam │ │ ├── Makefile.pro │ │ ├── VERSION │ │ ├── qt │ │ ├── EditParamDialog.cxx │ │ ├── EditParamDialog.h │ │ ├── EditParamDialogBase.ui │ │ ├── NewParamSetDialog.cxx │ │ ├── NewParamSetDialog.h │ │ ├── NewParamSetDialogBase.ui │ │ ├── XsltParamsDialog.cxx │ │ ├── XsltParamsDialog.h │ │ └── XsltParamsDialogBase.ui │ │ ├── xsltparam.cxx │ │ └── xsltparam.h ├── pyapi │ ├── Makefile.pro │ ├── SernaApiCore.sip │ ├── VERSION │ ├── app │ │ ├── DocTemplateHolder.sip │ │ ├── DocumentPlugin.sip │ │ ├── IconProvider.sip │ │ ├── MessageView.sip │ │ ├── MimeHandler.sip │ │ ├── PluginLoader.sip │ │ ├── SernaClipboard.sip │ │ ├── SernaConfig.sip │ │ ├── SernaDoc.sip │ │ ├── StructEditor.sip │ │ ├── UiCommand.sip │ │ ├── UiDocument.sip │ │ ├── UiItem.sip │ │ └── XsltEngine.sip │ ├── common │ │ ├── Command.sip │ │ ├── DavManager.sip │ │ ├── DavProtocol.sip │ │ ├── PropertyNode.sip │ │ ├── SString.sip │ │ ├── SimpleWatcher.sip │ │ ├── Url.sip │ │ └── WrappedObject.sip │ ├── grove │ │ ├── Grove.sip │ │ ├── GroveCommand.sip │ │ ├── GroveEditor.sip │ │ ├── GroveEntity.sip │ │ ├── GroveIdManager.sip │ │ ├── GroveNodes.sip │ │ ├── GrovePos.sip │ │ ├── GroveStripInfo.sip │ │ ├── GroveWatcher.sip │ │ ├── XmlValidator.sip │ │ └── XpathUtils.sip │ └── sip.t ├── sapi │ ├── Makefile.pro │ ├── SernaApiBase.h │ ├── VERSION │ ├── app │ │ ├── Clipboard.h │ │ ├── Config.h │ │ ├── DocTemplateHolder.h │ │ ├── DocumentPlugin.h │ │ ├── IconProvider.h │ │ ├── MessageView.h │ │ ├── MimeHandler.h │ │ ├── PluginLoader.h │ │ ├── SernaConfig.h │ │ ├── SernaDoc.h │ │ ├── StructEditor.h │ │ ├── UiAction.h │ │ ├── UiDocument.h │ │ ├── UiItem.h │ │ ├── XsltEngine.h │ │ ├── guitest_utils.h │ │ └── impl │ │ │ ├── Clipboard.cxx │ │ │ ├── Config.cxx │ │ │ ├── DocTemplateHolder.cxx │ │ │ ├── DocumentPlugin.cxx │ │ │ ├── IconProvider.cxx │ │ │ ├── MessageView.cxx │ │ │ ├── MimeHandler.cxx │ │ │ ├── PluginLoader.cxx │ │ │ ├── SernaDoc.cxx │ │ │ ├── StructEditor.cxx │ │ │ ├── StructEditorData.h │ │ │ ├── UiCommand.cxx │ │ │ ├── UiDocument.cxx │ │ │ ├── UiItem.cxx │ │ │ ├── guitest_utils.cxx │ │ │ ├── unix │ │ │ └── sys_guitest_utils.cxx │ │ │ └── win32 │ │ │ └── sys_guitest_utils.cxx │ ├── common │ │ ├── Char.h │ │ ├── Command.h │ │ ├── DavManager.h │ │ ├── DavProtocol.h │ │ ├── OwnerPtr.h │ │ ├── PropertyNode.h │ │ ├── PtrBase.h │ │ ├── RefCntPtr.h │ │ ├── RefCounted.h │ │ ├── SString.h │ │ ├── SimpleWatcher.h │ │ ├── Url.h │ │ ├── Vector.h │ │ ├── WrappedObject.h │ │ ├── doctags.h │ │ ├── impl │ │ │ ├── Command.cxx │ │ │ ├── DavManager.cxx │ │ │ ├── DavProtocol.cxx │ │ │ ├── PropertyNode.cxx │ │ │ ├── RefCounted.cxx │ │ │ ├── SString.cxx │ │ │ ├── Url.cxx │ │ │ ├── WrappedObject.cxx │ │ │ └── xtn_wrap_impl.h │ │ └── xtn_wrap.h │ ├── grove │ │ ├── CatalogManager.h │ │ ├── Grove.h │ │ ├── GroveCommand.h │ │ ├── GroveDecls.h │ │ ├── GroveEditor.h │ │ ├── GroveEntity.h │ │ ├── GroveIdManager.h │ │ ├── GroveNodes.h │ │ ├── GrovePos.h │ │ ├── GroveStripInfo.h │ │ ├── GroveWatcher.h │ │ ├── XmlValidator.h │ │ ├── XpathUtils.h │ │ └── impl │ │ │ ├── GroveCommand.cxx │ │ │ ├── GroveEditor.cxx │ │ │ ├── GroveEntity.cxx │ │ │ ├── GroveIdManager.cxx │ │ │ ├── GroveNodes.cxx │ │ │ ├── GrovePos.cxx │ │ │ ├── GroveStripInfo.cxx │ │ │ ├── GroveWatcher.cxx │ │ │ ├── XmlValidator.cxx │ │ │ └── XpathUtils.cxx │ ├── sapi_defs.h │ ├── sapi_version.t │ └── shlib_undef.t ├── structeditor │ ├── AttrPropertyModel.h │ ├── AttributesItem.h │ ├── ElementList.h │ ├── GroveCommandEventData.h │ ├── InsertElementItem.h │ ├── InsertTextEventData.h │ ├── LiveNodeLocator.h │ ├── Makefile.pro │ ├── SE_Pos.h │ ├── SernaDragData.h │ ├── SetCursorEventData.h │ ├── StructDocument.h │ ├── StructEditor.h │ ├── StructFinder.h │ ├── VERSION │ ├── impl │ │ ├── AttrPropertyModel.cxx │ │ ├── AttributesItem.cxx │ │ ├── CommandLink.cxx │ │ ├── CommandLink.h │ │ ├── EditPolicyImpl.cxx │ │ ├── EditPolicyImpl.h │ │ ├── EditingCommands.cxx │ │ ├── ElementCommands.cxx │ │ ├── ElementList.cxx │ │ ├── EntityCommands.cxx │ │ ├── FoldingCommands.cxx │ │ ├── InputMethod.cxx │ │ ├── InputMethod.h │ │ ├── InsertElementItem.cxx │ │ ├── MiscCommands.cxx │ │ ├── NavigationCommands.cxx │ │ ├── PositionWatcher.h │ │ ├── RecentElementsCache.h │ │ ├── SE_OpenDoc.cxx │ │ ├── SE_Pos.cxx │ │ ├── SE_Update.cxx │ │ ├── SchemaCommandMaker.cxx │ │ ├── SchemaCommandMaker.h │ │ ├── SelectionCommands.cxx │ │ ├── SelectionHistory.h │ │ ├── SernaDragData.cxx │ │ ├── SourceDocument.cxx │ │ ├── StructAutoSave.cxx │ │ ├── StructAutoSave.h │ │ ├── StructDocCommands.cxx │ │ ├── StructDocument.cxx │ │ ├── StructEditor.cxx │ │ ├── StructFinder.cxx │ │ ├── StructInsertSymbol.cxx │ │ ├── UndoRedoList.cxx │ │ ├── ViewParamImpl.cxx │ │ ├── ViewParamImpl.h │ │ ├── XincludeCommands.cxx │ │ ├── XsUtils.cxx │ │ ├── XsUtils.h │ │ ├── debug_se.cxx │ │ ├── debug_se.h │ │ ├── entity_utils.cxx │ │ └── entity_utils.h │ ├── qt │ │ ├── AttributeItemDelegate.cxx │ │ ├── AttributeItemDelegate.h │ │ ├── AttributesDialogBase.ui │ │ ├── AttributesModalDialogBase.ui │ │ ├── AttributesToolBase.ui │ │ ├── AttributesWidget.cxx │ │ ├── AttributesWidget.h │ │ ├── ConvertToExtEntityDialog.cxx │ │ ├── ConvertToExtEntityDialogBase.ui │ │ ├── ConvertToIntEntityDialog.cxx │ │ ├── ConvertToIntEntityDialogBase.ui │ │ ├── DumpFoDialog.cxx │ │ ├── EditCommentPIDialog.cxx │ │ ├── EditCommentPIDialogBase.ui │ │ ├── EntitiesDialog.cxx │ │ ├── EntitiesDialogBase.ui │ │ ├── GenInfoDialogBase.ui │ │ ├── InsertElementDialogBase.ui │ │ ├── InsertElementMiniToolBase.ui │ │ ├── InsertElementToolBase.ui │ │ ├── InsertElementWidget.cxx │ │ ├── InsertExtEntityDialog.cxx │ │ ├── InsertExtEntityDialogBase.ui │ │ ├── InsertIntEntityDialog.cxx │ │ ├── InsertIntEntityDialogBase.ui │ │ ├── InsertXincludeDialog.cxx │ │ ├── InsertXincludeDialogBase.ui │ │ ├── PublishDialog.cxx │ │ ├── PublishDialogBase.ui │ │ ├── RenameElementDialogBase.ui │ │ ├── RootElementDialog.cxx │ │ ├── RootElementDialogBase.ui │ │ ├── SimpleFormDialog.cxx │ │ ├── SimpleFormDialog.h │ │ ├── XincludeStatusDialog.cxx │ │ ├── XincludeStatusDialogBase.ui │ │ └── ZoomCommands.cxx │ └── se_defs.h └── utils │ ├── AutoSaveMgr.h │ ├── Config.h │ ├── DocSrcInfo.h │ ├── DocTemplate.h │ ├── ElementHelp.h │ ├── GrovePosEventData.h │ ├── GroveProperty.h │ ├── HelpAssistant.h │ ├── IdleHandler.h │ ├── Makefile.pro │ ├── MessageListProperty.h │ ├── MsgBoxStream.h │ ├── NameChecker.cxx │ ├── NameChecker.h │ ├── Properties.h │ ├── SernaCatMgr.h │ ├── SernaMessages.msg │ ├── SernaUiItems.h │ ├── TimedEventGenerator.h │ ├── VERSION │ ├── Version.h │ ├── appver.t │ ├── config_defaults.h │ ├── config_package.h │ ├── env_utils.h │ ├── file_utils.h │ ├── i18n_utils.h │ ├── impl │ ├── AutoSaveMgr.cxx │ ├── ConfigImpl.cxx │ ├── DocSrcInfo.cxx │ ├── DocTemplatePiReader.cxx │ ├── DocTemplateXmlReader.cxx │ ├── ElementHelp.cxx │ ├── HelpAssistant.cxx │ ├── HelpAssistantImpl.h │ ├── IdleHandlerImpl.cxx │ ├── IdleHandlerImpl.h │ ├── MsgBoxStream.cxx │ ├── Properties.cxx │ ├── SernaCatMgr.cxx │ ├── SernaUiItems.cxx │ ├── TimedEventGenerator.cxx │ ├── Version.cxx │ ├── config_defaults.cxx │ ├── config_utils.cxx │ ├── config_utils.h │ ├── darwin │ │ └── sys_deps.cxx │ ├── file_utils.cxx │ ├── file_utils_pvt.h │ ├── i18n_utils.cxx │ ├── message_utils.cxx │ ├── registration_utils.cxx │ ├── struct_autosave_utils.cxx │ ├── sys_deps.h │ ├── unix │ │ └── sys_deps.cxx │ ├── utils_debug.cxx │ └── win32 │ │ ├── config_win32.cxx │ │ ├── config_win32.h │ │ ├── reg_utils.cxx │ │ ├── reg_utils.h │ │ └── sys_deps.cxx │ ├── message_utils.h │ ├── registration_utils.h │ ├── spell │ └── .empty-stub │ ├── struct_autosave_utils.h │ ├── tr.h │ ├── utils_debug.h │ └── utils_defs.h ├── sfworks ├── Makefile.pro ├── README ├── catmgr │ ├── CatalogManager.h │ ├── Makefile.pro │ ├── VERSION │ ├── catmgr_defs.h │ └── impl │ │ ├── CatMgrMessageUtils.cxx │ │ ├── CatMgrMessageUtils.h │ │ ├── CatMgrMessages.msg │ │ ├── Catalog.cxx │ │ ├── Catalog.h │ │ ├── CatalogBuilder.cxx │ │ ├── CatalogBuilder.h │ │ ├── CatalogEntries.cxx │ │ ├── CatalogEntries.h │ │ ├── CatalogEntry.cxx │ │ ├── CatalogEntry.h │ │ ├── CatalogHolder.cxx │ │ ├── CatalogHolder.h │ │ ├── CatalogImpl.h │ │ ├── CatalogManager.cxx │ │ ├── CatalogVisitor.h │ │ ├── ExternalIdResolver.cxx │ │ ├── ExternalIdResolver.h │ │ ├── Resolver.cxx │ │ ├── Resolver.h │ │ ├── ResolverOptions.cxx │ │ ├── ResolverOptions.h │ │ ├── UriPtrCmp.h │ │ ├── UriResolver.cxx │ │ ├── UriResolver.h │ │ ├── XMLCatalogManager.cxx │ │ ├── XMLCatalogManager.h │ │ ├── catmgr_debug.cxx │ │ ├── catmgr_debug.h │ │ ├── catmgr_utils.cxx │ │ └── catmgr_utils.h ├── common.rc ├── common │ ├── AssocVector.h │ ├── CDList.h │ ├── CharTraits.h │ ├── Command.h │ ├── CommandEvent.h │ ├── CommandExecutor.h │ ├── CommonMessages.msg │ ├── CompiledInStrings.h │ ├── CompiledResourceReader.h │ ├── Debug.h │ ├── DefaultSmallObject.h │ ├── DefaultSmallObject.i │ ├── DiffuseSearch.h │ ├── DynamicLibrary.h │ ├── Encodings.h │ ├── Exception.h │ ├── ExternalRefCnt.h │ ├── Factory.h │ ├── FlexString.h │ ├── FlexString.i │ ├── FreeStorage.h │ ├── IterTraits.h │ ├── Locked.h │ ├── MacroCommand.h │ ├── Makefile.pro │ ├── Message.h │ ├── MessageException.h │ ├── MessageUtils.h │ ├── ModRegistry.h │ ├── OsEnv.h │ ├── OwnerPtr.h │ ├── PackedPtrSet.h │ ├── PathName.h │ ├── ProfileGuard.h │ ├── PropertyTree.h │ ├── PropertyTreeEventData.h │ ├── PropertyTreeEventFactory.h │ ├── PtrBase.h │ ├── PtrSet.h │ ├── RadixTree.h │ ├── RangeIterator.h │ ├── RangeString.h │ ├── RbTree.h │ ├── RefCntPtr.h │ ├── RefCntStorage.h │ ├── RefCounted.h │ ├── RefCountedDelegator.h │ ├── SList.h │ ├── STQueue.h │ ├── ScopeGuard.h │ ├── SernaApiBase.h │ ├── SernaApiRefCounted.h │ ├── Singleton.h │ ├── SmallObject.h │ ├── SmallStlAllocator.h │ ├── StrdupNew.h │ ├── String.h │ ├── StringCmp.h │ ├── StringCvt.h │ ├── StringDecl.h │ ├── StringFactory.h │ ├── StringStorage.h │ ├── StringTokenizer.h │ ├── StringUtils.h │ ├── SubAllocator.h │ ├── SubscriberPtr.h │ ├── ThreadMutex.h │ ├── ThreadingPolicies.h │ ├── TimeGuard.h │ ├── TreelocRep.h │ ├── Url.h │ ├── VERSION │ ├── Vector.h │ ├── Visitor.h │ ├── WordTokenizer.h │ ├── XList.h │ ├── XTreeIterator.h │ ├── XTreeNode.h │ ├── XTreePolicies.h │ ├── align_of_type.h │ ├── asserts.h │ ├── base_by_member_ptr.h │ ├── common_defs.h │ ├── common_limits.h │ ├── common_opt.h │ ├── common_types.h │ ├── doc │ │ ├── Doxyfile │ │ ├── Doxyfile.full │ │ ├── common-nonvc6.dxf │ │ └── common.dxf │ ├── file_utils.h │ ├── hex2c.h │ ├── i18n_translate.h │ ├── impl │ │ ├── Command.cxx │ │ ├── CommandEvent.cxx │ │ ├── CommandExecutor.cxx │ │ ├── CompiledInStrings.cxx │ │ ├── Debug.cxx │ │ ├── DynamicLibrary.cxx │ │ ├── Encodings.cxx │ │ ├── Exception.cxx │ │ ├── FlexString.cxx │ │ ├── MacroCommand.cxx │ │ ├── Message.cxx │ │ ├── MessageUtils.cxx │ │ ├── OsEnv.cxx │ │ ├── PackedPtrSet.cxx │ │ ├── PathName.cxx │ │ ├── ProfileGuard.cxx │ │ ├── PropertyTree.cxx │ │ ├── PropertyTreeEventFactory.cxx │ │ ├── Qt-required-hdrs │ │ ├── README │ │ ├── RefCntStorage.cxx │ │ ├── Singleton.cxx │ │ ├── SmallObjStats.cxx │ │ ├── SmallObjStats.h │ │ ├── SmallObject.cxx │ │ ├── String.cxx │ │ ├── StringCvt.cxx │ │ ├── StringStorages.cxx │ │ ├── StringUtils.cxx │ │ ├── SubAllocator.cxx │ │ ├── ThreadMutex.cxx │ │ ├── TreelocRep.cxx │ │ ├── Url.cxx │ │ ├── VERSION │ │ ├── asserts.cxx │ │ ├── common.pro │ │ ├── common_debug.cxx │ │ ├── common_debug.h │ │ ├── common_inst.cxx │ │ ├── common_opt.cxx │ │ ├── common_opt_pvt.h │ │ ├── file_utils_common.cxx │ │ ├── file_utils_common.h │ │ ├── i18n_translate.cxx │ │ ├── oalloc.cxx │ │ ├── pure.h │ │ ├── pure_api.c │ │ ├── qurl_old.cxx │ │ ├── qurl_old.h │ │ ├── sparc_atomic.s │ │ ├── sparc_atomic64.s │ │ ├── timing_profiler.cxx │ │ ├── unix │ │ │ ├── DynamicLibraryPrivate.cxx │ │ │ ├── DynamicLibraryPrivate.h │ │ │ ├── TimeGuard.cxx │ │ │ └── file_utils.cxx │ │ └── win32 │ │ │ ├── DynamicLibraryPrivate.cxx │ │ │ ├── DynamicLibraryPrivate.h │ │ │ ├── TimeGuard.cxx │ │ │ └── file_utils.cxx │ ├── machdep │ │ ├── README │ │ ├── i386-darwin-g++ │ │ │ └── machdep │ │ │ │ ├── ThreadMutexAtomics.i │ │ │ │ ├── math_defs.h │ │ │ │ └── types.h │ │ ├── i386-g++ │ │ │ ├── math_defs.h │ │ │ └── types.h │ │ ├── i386-win32-ic │ │ │ ├── math_defs.h │ │ │ └── types.h │ │ └── sparc-sunos-forte │ │ │ ├── machdep.h │ │ │ ├── math_defs.h │ │ │ ├── sparc_atomic.il │ │ │ └── types.h │ ├── math_defs.h │ ├── oalloc.h │ ├── printf_fmt.h │ ├── prtti.h │ ├── safecast.h │ ├── serna_edition.h │ ├── stack_buffer.h │ ├── sysdep │ │ ├── i386-darwin-g++ │ │ │ └── machdep │ │ │ │ ├── ThreadMutexAtomics.i │ │ │ │ ├── math_defs.h │ │ │ │ └── types.h │ │ ├── i386-freebsd-g++ │ │ │ └── machdep │ │ │ │ ├── ThreadMutexAtomics.i │ │ │ │ ├── math_defs.h │ │ │ │ └── types.h │ │ ├── i386-linux-g++ │ │ │ └── machdep │ │ │ │ ├── ThreadMutexAtomics.i │ │ │ │ ├── math_defs.h │ │ │ │ └── types.h │ │ ├── i386-win32-msvc │ │ │ └── machdep │ │ │ │ ├── ThreadMutexAtomics.i │ │ │ │ ├── math_defs.h │ │ │ │ └── types.h │ │ ├── ix86_gcc_threadmutex.i │ │ ├── powerpc-darwin-g++ │ │ │ └── machdep │ │ │ │ ├── ThreadMutexAtomics.i │ │ │ │ ├── math_defs.h │ │ │ │ └── types.h │ │ ├── sparc-sunos-forte │ │ │ └── machdep │ │ │ │ ├── ThreadMutexAtomics.i │ │ │ │ ├── machdep.h │ │ │ │ ├── math_defs.h │ │ │ │ ├── sparc_atomic.il │ │ │ │ └── types.h │ │ └── universal-darwin │ │ │ └── machdep │ │ │ ├── ThreadMutexAtomics.i │ │ │ ├── math_defs.h │ │ │ └── types.h │ ├── tests │ │ ├── Makefile │ │ ├── Makefile.pro │ │ ├── TestMessages.msg │ │ ├── ccc │ │ ├── fixed_test.cpp │ │ ├── fixed_test.data │ │ ├── fixed_test2.cpp │ │ ├── ipaddr_test.cxx │ │ ├── main │ │ │ ├── Makefile.pro │ │ │ ├── VERSION │ │ │ ├── common_test.cpp │ │ │ ├── common_test.h │ │ │ ├── fixed_test.cxx │ │ │ ├── fixed_test.data │ │ │ ├── fixed_test2.cxx │ │ │ ├── ipaddr_test.cxx │ │ │ ├── msg_test.cxx │ │ │ ├── qint_test.cxx │ │ │ ├── qint_test.data │ │ │ ├── radix_test.cxx │ │ │ ├── radix_test.data │ │ │ ├── tests.def │ │ │ └── tz_test.cxx │ │ ├── make_testmsg.sh │ │ ├── messages │ │ │ ├── Makefile.pro │ │ │ ├── TestMessages.cpp │ │ │ ├── TestMessages.h │ │ │ ├── TestMessages.msg │ │ │ └── VERSION │ │ ├── msg_test.cxx │ │ ├── nst.cxx │ │ ├── qint_test.cpp │ │ ├── qint_test.data │ │ ├── radix_test.cpp │ │ ├── radix_test.data │ │ ├── refcnt_mt.cpp │ │ ├── refcnt_test.cpp │ │ ├── run_common_test.sh │ │ ├── run_common_test_long.sh │ │ ├── str_mt_test.cxx │ │ ├── trace_test.cpp │ │ ├── trace_test.data │ │ └── tz_test.cpp │ ├── timing_profiler.h │ ├── ver_mgmt.h │ └── winlean.h ├── dav │ ├── DavManager.h │ ├── DavQIODevice.h │ ├── IoStream.h │ ├── Makefile.pro │ ├── Protocol.h │ ├── Session.h │ ├── VERSION │ ├── dav_defs.h │ ├── impl │ │ ├── DavManager.cxx │ │ ├── DavQIODevice.cxx │ │ ├── FileProtocol.h │ │ ├── IoStream.cxx │ │ ├── Protocol.cxx │ │ ├── dav_debug.cxx │ │ └── dav_debug.h │ └── types.h ├── editableview │ ├── EditPolicy.h │ ├── EditableView.h │ ├── Makefile.pro │ ├── ToolTipEventData.h │ ├── TooltipView.h │ ├── VERSION │ ├── add_files │ ├── editableview_defs.h │ └── impl │ │ ├── EditableView.cxx │ │ ├── EditableViewMessages.msg │ │ ├── QtFont.cxx │ │ ├── debug.cxx │ │ └── debug.h ├── formatter │ ├── Area.h │ ├── AreaPos.h │ ├── AreaView.h │ ├── Exception.h │ ├── Font.h │ ├── FontMgr.h │ ├── Formatter.h │ ├── Image.h │ ├── InlineObject.h │ ├── Makefile.pro │ ├── MediaInfo.h │ ├── TagMetrixTable.h │ ├── VERSION │ ├── XslFoExt.h │ ├── add_files │ ├── area_pos_utils.h │ ├── decls.h │ ├── formatter_defs.h │ ├── formatter_exports.h │ ├── impl │ │ ├── Area.cxx │ │ ├── AreaPos.cxx │ │ ├── AreaView.cxx │ │ ├── Areas.cxx │ │ ├── Areas.h │ │ ├── BlockLevelFo.cxx │ │ ├── BorderProperties.cxx │ │ ├── BorderProperties.h │ │ ├── Branch.cxx │ │ ├── Branch.h │ │ ├── Fo.cxx │ │ ├── Fo.h │ │ ├── FoController.cxx │ │ ├── FoController.h │ │ ├── FoFactory.cxx │ │ ├── FoFactory.h │ │ ├── FoImpl.cxx │ │ ├── FoImpl.h │ │ ├── FormatterImpl.cxx │ │ ├── FormatterImpl.h │ │ ├── InlineFo.cxx │ │ ├── Layout.cxx │ │ ├── LineFo.cxx │ │ ├── ListFo.cxx │ │ ├── PageMaster.cxx │ │ ├── PageMaster.h │ │ ├── PageMasters.cxx │ │ ├── PageMasters.h │ │ ├── ParserContext.cxx │ │ ├── ParserContext.h │ │ ├── Properties.cxx │ │ ├── Properties.h │ │ ├── Property.cxx │ │ ├── Property.h │ │ ├── PropertyParser.cxx │ │ ├── PropertyParser.h │ │ ├── PropertySet.cxx │ │ ├── PropertySet.h │ │ ├── ReferencedFo.cxx │ │ ├── ReferencedFo.h │ │ ├── SimpleFormFos.cxx │ │ ├── SimpleFormFos.h │ │ ├── TableFo.cxx │ │ ├── TableFo.h │ │ ├── TerminalFos.cxx │ │ ├── TerminalFos.h │ │ ├── XslFoExt.cxx │ │ ├── XslMessages.msg │ │ ├── area_pos_utils.cxx │ │ ├── debug.cxx │ │ ├── debug.h │ │ ├── formatter_utils.cxx │ │ ├── formatter_utils.h │ │ └── types.cxx │ ├── lcount │ └── types.h ├── grove │ ├── ChoiceNode.h │ ├── DebugGroveVisitor.h │ ├── Decls.h │ ├── ElementIdTable.h │ ├── ElementMatcher.h │ ├── EntityDecl.h │ ├── EntityDeclSet.h │ ├── EntityReferenceTable.h │ ├── ExternalId.h │ ├── Grove.h │ ├── GroveBuilder.h │ ├── GroveSection.h │ ├── GroveSectionRoot.h │ ├── GroveUtils.h │ ├── GroveVisitor.h │ ├── GroveVisitorMux.h │ ├── IdManager.h │ ├── Makefile.pro │ ├── MatchPattern.h │ ├── Named.h │ ├── Node.h │ ├── NodeExt.h │ ├── NodeVisitor.h │ ├── NodeVisitorLink.h │ ├── NodeWithNamespace.h │ ├── Nodes.h │ ├── Origin.h │ ├── OutputProperties.h │ ├── PrologNodes.h │ ├── RedlineUtils.h │ ├── SectionNodes.h │ ├── SectionSyncher.h │ ├── StripInfo.h │ ├── VERSION │ ├── ValidationCommandsMaker.h │ ├── XNodePtr.h │ ├── XmlName.h │ ├── XmlNs.h │ ├── XmlPredefNs.h │ ├── XmlValidator.h │ ├── grove.dox │ ├── grove_defs.h │ ├── grove_exports.h │ ├── grove_trace.h │ ├── impl │ │ ├── DebugGroveVisitor.cxx │ │ ├── ElementIdTable.cxx │ │ ├── ElementMatcher.cxx │ │ ├── EntityDecl.cxx │ │ ├── EntityDeclSet.cxx │ │ ├── EntityReferenceTable.cxx │ │ ├── ExternalId.cxx │ │ ├── Grove.cxx │ │ ├── GroveBuilder.cxx │ │ ├── GroveMessages.msg │ │ ├── GroveSection.cxx │ │ ├── GroveSectionRoot.cxx │ │ ├── GroveUtils.cxx │ │ ├── GroveVisitor.cxx │ │ ├── GroveVisitorMux.cxx │ │ ├── IdManager.cxx │ │ ├── Node.cxx │ │ ├── NodeExt.cxx │ │ ├── NodeVisitor.cxx │ │ ├── NodeWithNamespace.cxx │ │ ├── Nodes.cxx │ │ ├── PrologNodes.cxx │ │ ├── RedlineUtils.cxx │ │ ├── SectionSyncher.cxx │ │ ├── XmlName.cxx │ │ ├── XmlNs.cxx │ │ ├── grove-notes.txt │ │ ├── grove_trace.cxx │ │ ├── gsutils.cxx │ │ ├── gsutils.h │ │ ├── xinclude.cxx │ │ └── xml.dcl │ ├── udata.h │ └── xinclude.h ├── groveeditor │ ├── EntityCommands.h │ ├── Exception.h │ ├── GroveCommand.h │ ├── GroveCommands.h │ ├── GroveEditor.h │ ├── GrovePos.h │ ├── Makefile.pro │ ├── RedlineCommands.h │ ├── SelectionCommand.h │ ├── VERSION │ ├── groveeditor_debug.h │ ├── groveeditor_defs.h │ └── impl │ │ ├── EntityCommands.cxx │ │ ├── GroveCommands.cxx │ │ ├── GroveEditor.cxx │ │ ├── GroveEditorMessages.msg │ │ ├── GrovePos.cxx │ │ ├── RedlineCommands.cxx │ │ └── groveeditor_debug.cxx ├── proputils │ ├── EnvPropertyReader.cxx │ ├── EnvPropertyReader.h │ ├── Makefile.pro │ ├── PropertyAccessor.cxx │ ├── PropertyAccessor.h │ ├── PropertyTreeSaver.cxx │ ├── PropertyTreeSaver.h │ ├── VERSION │ ├── VariableResolver.cxx │ ├── VariableResolver.h │ └── proputils_exports.h ├── sceneareaset │ ├── Cursor.cxx │ ├── Cursor.h │ ├── GraphicAreaView.cxx │ ├── GraphicAreaView.h │ ├── InlineObject.cxx │ ├── InlineObject.h │ ├── Makefile.pro │ ├── PageAreaView.cxx │ ├── PageAreaView.h │ ├── PixmapImage.cxx │ ├── PixmapImage.h │ ├── SceneAreaFactory.cxx │ ├── SceneAreaFactory.h │ ├── SceneAreaView.cxx │ ├── SceneAreaView.h │ ├── SceneView.cxx │ ├── SceneView.h │ ├── Tag.cxx │ ├── Tag.h │ ├── TagMetrixTable.cxx │ ├── TagMetrixTable.h │ ├── TextAreaView.cxx │ ├── TextAreaView.h │ ├── VERSION │ ├── debug.cxx │ ├── debug.h │ ├── defs.h │ ├── mml2 │ │ ├── mml_doc.cxx │ │ ├── mml_tables.cxx │ │ ├── mml_utils.h │ │ ├── mmlwidget.cxx │ │ ├── qtmmlwidget.cxx │ │ └── qtmmlwidget.h │ ├── utils.cxx │ └── utils.h ├── spgrovebuilder │ ├── Makefile.pro │ ├── SpGroveBuilder.h │ ├── VERSION │ ├── impl │ │ ├── SpCatalogDtd.cxx │ │ ├── SpCatalogDtd.h │ │ ├── SpEntityManager.cxx │ │ ├── SpExtIdResolver.cxx │ │ ├── SpExtIdResolver.h │ │ ├── SpGroveBuilder.cxx │ │ ├── SpMemoryStorage.cxx │ │ ├── SpUtils.cxx │ │ ├── SpUtils.h │ │ ├── SpXmlDecl.cxx │ │ ├── URLStorageMessages.h │ │ ├── sp_debug.cxx │ │ └── sp_debug.h │ ├── spgrove.pro │ └── spgrovebuilder_defs.h ├── ui │ ├── ActionSet.h │ ├── IconProvider.h │ ├── LiquidItem.h │ ├── MainWindow.h │ ├── Makefile.pro │ ├── MimeHandler.h │ ├── PixmapCache.h │ ├── PropertyEditor.h │ ├── QtGridView.h │ ├── QtObjectTracker.h │ ├── TreeModel.h │ ├── UiAction.h │ ├── UiActionGroup.h │ ├── UiDocument.h │ ├── UiException.h │ ├── UiItem.h │ ├── UiItemSearch.h │ ├── UiItemWatcher.h │ ├── UiItems.h │ ├── UiPropSyncher.h │ ├── UiPropTreeHolder.h │ ├── UiPropertySyncher.h │ ├── UiProps.h │ ├── UiStackItem.h │ ├── VERSION │ ├── add_files │ ├── common_xpms.i │ ├── impl │ │ ├── ActionSet.cxx │ │ ├── LiquidItem.cxx │ │ ├── MainWindow.cxx │ │ ├── MimeHandler.cxx │ │ ├── ShortcutAction.h │ │ ├── TreeModel.cxx │ │ ├── UiAction.cxx │ │ ├── UiActionGroup.cxx │ │ ├── UiDocument.cxx │ │ ├── UiItem.cxx │ │ ├── UiItemWatcher.cxx │ │ ├── UiItems.cxx │ │ ├── UiMultiItem.cxx │ │ ├── UiMultiItem.h │ │ ├── UiPropertyTreeHolder.cxx │ │ ├── UiProps.cxx │ │ ├── UiStackItem.cxx │ │ ├── qt │ │ │ ├── PixmapCache.cxx │ │ │ ├── PropertyEditor.cxx │ │ │ ├── QtActionSyncher.cxx │ │ │ ├── QtActionSyncher.h │ │ │ ├── QtButtonGroup.cxx │ │ │ ├── QtButtonGroup.h │ │ │ ├── QtComboBox.cxx │ │ │ ├── QtDialog.cxx │ │ │ ├── QtDocument.cxx │ │ │ ├── QtDocument.h │ │ │ ├── QtGridView.cxx │ │ │ ├── QtIconProvider.cxx │ │ │ ├── QtLabel.cxx │ │ │ ├── QtLabel.h │ │ │ ├── QtLayout.cxx │ │ │ ├── QtLayout.h │ │ │ ├── QtLineEdit.cxx │ │ │ ├── QtLineEdit.h │ │ │ ├── QtListView.cxx │ │ │ ├── QtListView.h │ │ │ ├── QtMainWindow.cxx │ │ │ ├── QtMainWindow.h │ │ │ ├── QtMenu.cxx │ │ │ ├── QtObjectTracker.cxx │ │ │ ├── QtPropertySyncher.cxx │ │ │ ├── QtRadioButton.cxx │ │ │ ├── QtRadioButton.h │ │ │ ├── QtSplitter.cxx │ │ │ ├── QtStatusBar.cxx │ │ │ ├── QtStatusBar.h │ │ │ ├── QtTabWidget.cxx │ │ │ ├── QtTabWidget.h │ │ │ ├── QtToolButton.cxx │ │ │ ├── QtToolbar.cxx │ │ │ └── QtWidget.cxx │ │ ├── ui_debug.cxx │ │ └── ui_debug.h │ ├── lcount │ ├── prop_locker.h │ ├── ui.dxg │ └── ui_defs.h ├── urimgr │ ├── GroveResource.h │ ├── Makefile.pro │ ├── Resource.h │ ├── ResourceBuilder.h │ ├── UrlResource.h │ ├── VERSION │ ├── impl │ │ ├── GroveResource.cxx │ │ ├── Resource.cxx │ │ ├── ResourceBuilder.cxx │ │ ├── UrlResource.cxx │ │ ├── uri_debug.cxx │ │ └── uri_debug.h │ └── uri_defs.h ├── xpath │ ├── ConstValueHolder.h │ ├── Engine.h │ ├── Exception.h │ ├── Expr.h │ ├── ExprContext.h │ ├── ExternalFunction.h │ ├── FunctionFactory.h │ ├── Makefile.pro │ ├── NodeSet.h │ ├── VERSION │ ├── Value.h │ ├── ValueHolder.h │ ├── VarBindings.h │ ├── XpathFunctionFactory.h │ ├── impl3 │ │ ├── BooleanValue.h │ │ ├── ExprImpl.h │ │ ├── ExprInst.cxx │ │ ├── ExprInst.h │ │ ├── ExprSubinst.h │ │ ├── FpMake.cxx │ │ ├── FpMake.h │ │ ├── Makefile.pro │ │ ├── NodeSet.cxx │ │ ├── NodeSetValue.h │ │ ├── NumericValue.h │ │ ├── StringValue.h │ │ ├── TODO │ │ ├── Tokenizer.cxx │ │ ├── Tokenizer.h │ │ ├── VERSION │ │ ├── ValueImpl.cxx │ │ ├── ValueImpl.h │ │ ├── XpathMessages.msg │ │ ├── debug.cxx │ │ ├── debug.h │ │ ├── expressions │ │ │ ├── AxisExpr.h │ │ │ ├── BinaryExpr.h │ │ │ ├── ConstExpr.h │ │ │ ├── FunctionExpr.h │ │ │ ├── NodeTestExpr.h │ │ │ ├── PredicateExpr.h │ │ │ ├── SlashExpr.h │ │ │ ├── UnaryExpr.h │ │ │ ├── VarExpr.h │ │ │ ├── axis_eval.cxx │ │ │ ├── binary_eval.cxx │ │ │ ├── expressions.cxx │ │ │ ├── functions.cxx │ │ │ └── sp_eval.cxx │ │ ├── values.cxx │ │ └── xpathParser.y │ ├── xpath_defs.h │ └── xpath_exports.h ├── xs │ ├── Appinfo.h │ ├── Component.cxx │ ├── Component.h │ ├── ComponentCred.h │ ├── ComponentRef.cxx │ ├── ComponentRef.h │ ├── ComponentSpace.cxx │ ├── ComponentSpace.h │ ├── EnumFetcher.h │ ├── ExtEnumCache.cxx │ ├── ExtEnumCache.h │ ├── ExtPythonScript.cxx │ ├── ExtPythonScript.h │ ├── ImportMap.cxx │ ├── ImportMap.h │ ├── Makefile.pro │ ├── NcnCred.cxx │ ├── NcnCred.h │ ├── Origin.h │ ├── OriginAndAppinfo.cxx │ ├── Piece.cxx │ ├── Piece.h │ ├── README │ ├── Schema.cxx │ ├── Schema.h │ ├── SchemaDefaultMessenger.cxx │ ├── SchemaDefaultMessenger.h │ ├── SchemaNamespaces.h │ ├── SchemaResource.cxx │ ├── SchemaResource.h │ ├── SplitPoint.cxx │ ├── VERSION │ ├── XsAttribute.h │ ├── XsAttributeGroup.h │ ├── XsData.cxx │ ├── XsData.h │ ├── XsDataImpl.cxx │ ├── XsDataImpl.h │ ├── XsElement.h │ ├── XsEnumList.h │ ├── XsGroup.h │ ├── XsId.h │ ├── XsIdTable.h │ ├── XsIdentityConstraint.h │ ├── XsMessages.msg │ ├── XsNodeExt.cxx │ ├── XsNodeExt.h │ ├── XsNotation.h │ ├── XsSchema.h │ ├── XsType.h │ ├── XsValidatorProvider.cxx │ ├── XsValidatorProvider.h │ ├── antlr.t │ ├── complex │ │ ├── AllMatcher.h │ │ ├── ChoiceParticle.h │ │ ├── ComplexContent.cxx │ │ ├── ComplexContent.h │ │ ├── Connector.cxx │ │ ├── Connector.h │ │ ├── Connectors.cxx │ │ ├── Connectors.h │ │ ├── ContentToken.cxx │ │ ├── ContentToken.h │ │ ├── ElementParticle.h │ │ ├── FixupSet.cxx │ │ ├── FixupSet.h │ │ ├── FsmMatcher.cxx │ │ ├── FsmMatcher.h │ │ ├── GeneratedParticle.h │ │ ├── InputTokenSequence.cxx │ │ ├── InputTokenSequence.h │ │ ├── Matcher.cxx │ │ ├── Matcher.h │ │ ├── Particle.h │ │ ├── Particles.cxx │ │ ├── SimpleContent.cxx │ │ ├── SimpleContent.h │ │ ├── Wildcard.cxx │ │ ├── Wildcard.h │ │ ├── WildcardParticle.h │ │ ├── XsComplexTypeImpl.cxx │ │ ├── XsComplexTypeImpl.h │ │ ├── XsContent.cxx │ │ └── XsContent.h │ ├── components │ │ ├── AttributeSet.cxx │ │ ├── AttributeSet.h │ │ ├── XsAnyAttribute.cxx │ │ ├── XsAnyAttribute.h │ │ ├── XsAttribute.cxx │ │ ├── XsAttributeGroup.cxx │ │ ├── XsAttributeGroupImpl.cxx │ │ ├── XsAttributeGroupImpl.h │ │ ├── XsAttributeImpl.cxx │ │ ├── XsAttributeImpl.h │ │ ├── XsElement.cxx │ │ ├── XsElementImpl.cxx │ │ ├── XsElementImpl.h │ │ ├── XsGroup.cxx │ │ ├── XsGroupImpl.cxx │ │ ├── XsGroupImpl.h │ │ ├── XsIdentityConstraint.cxx │ │ ├── XsKeyImpl.cxx │ │ ├── XsKeyImpl.h │ │ ├── XsKeyRefImpl.cxx │ │ ├── XsKeyRefImpl.h │ │ ├── XsNotation.cxx │ │ ├── XsNotationImpl.cxx │ │ ├── XsNotationImpl.h │ │ ├── XsSchema.cxx │ │ ├── XsType.cxx │ │ ├── XsUniqueImpl.cxx │ │ └── XsUniqueImpl.h │ ├── datatypes │ │ ├── AtomicType.cxx │ │ ├── AtomicType.h │ │ ├── DataTypes.cxx │ │ ├── DataTypes.h │ │ ├── DerivationTypes.cxx │ │ ├── DerivationTypes.h │ │ ├── Facets.cxx │ │ ├── Facets.h │ │ ├── FacetsContainer.h │ │ ├── InitAtomicTypes.cxx │ │ ├── SchemaDateTime.cxx │ │ ├── SchemaDateTime.h │ │ ├── SimpleDerivedType.cxx │ │ ├── SimpleDerivedType.h │ │ ├── XsSimpleTypeImpl.cxx │ │ └── XsSimpleTypeImpl.h │ ├── debug.cxx │ ├── debug.h │ ├── genmsg │ ├── node.pro │ ├── parser │ │ ├── AttributeParser.cxx │ │ ├── AttributeParser.h │ │ ├── GroveAst.cxx │ │ ├── GroveAst.h │ │ ├── SchemaParser.cxx │ │ ├── SchemaParser.h │ │ ├── TokenTable.cxx │ │ ├── TokenTable.h │ │ └── XmlSchema.g │ ├── testgrove │ ├── version.h │ └── xs_defs.h └── xslt │ ├── DocumentCache.h │ ├── Engine.h │ ├── Exception.h │ ├── ExternalFunction.h │ ├── GroveMatchPattern.h │ ├── Makefile.pro │ ├── NumberClient.h │ ├── PatternExpr.h │ ├── Result.h │ ├── ResultOrigin.h │ ├── TemplateSelectorBase.h │ ├── TopParamValueHolder.h │ ├── VERSION │ ├── XsltResource.h │ ├── impl │ ├── AttrSetMap.h │ ├── AttributeValueTemplate.cxx │ ├── AttributeValueTemplate.h │ ├── DocumentFunc3.cxx │ ├── DocumentHolder.cxx │ ├── DocumentHolder.h │ ├── EngineImpl.cxx │ ├── EngineImpl.h │ ├── FormatMap.h │ ├── FunctionExprImpl.h │ ├── FunctionExprImpl3.h │ ├── FunctionRegistry.cxx │ ├── FunctionRegistry.h │ ├── GroveMatchPattern.cxx │ ├── Instance.cxx │ ├── Instance.h │ ├── InstanceInit.h │ ├── InstanceResult.cxx │ ├── InstanceResult.h │ ├── Instruction.cxx │ ├── Instruction.h │ ├── InstructionFactory.cxx │ ├── InstructionFactory.h │ ├── KeyGenerator.h │ ├── KeyProvider.cxx │ ├── KeyProvider.h │ ├── Makefile.pro │ ├── NsAliasMap.h │ ├── PatternExprImpl.h │ ├── PatternInst.h │ ├── PatternInst3.h │ ├── ResultContext.h │ ├── ResultTreeFragment.cxx │ ├── ResultTreeFragment.h │ ├── SortableNodeSet.cxx │ ├── SortableNodeSet.h │ ├── TemplateProvider.cxx │ ├── TemplateProvider.h │ ├── TemplateSelector.cxx │ ├── TemplateSelector.h │ ├── Tokenizer.cxx │ ├── Tokenizer.h │ ├── VERSION │ ├── WhitespaceStripper.cxx │ ├── WhitespaceStripper.h │ ├── XsltFunctionFactory.h │ ├── XsltMessages.msg │ ├── XsltResource.cxx │ ├── debug.cxx │ ├── debug.h │ ├── functions3.cxx │ ├── instances │ │ ├── ApplicatingInstance.cxx │ │ ├── ApplicatingInstance.h │ │ ├── AttributeInst.cxx │ │ ├── AttributeInst.h │ │ ├── CalsTableInst.h │ │ ├── CalsTableInst3.cxx │ │ ├── CopyOfInst.cxx │ │ ├── CopyOfInst.h │ │ ├── DocbookFunc3.cxx │ │ ├── NumberInst.cxx │ │ ├── NumberInst.h │ │ ├── ResultMakingInstance.h │ │ ├── SharedData.cxx │ │ ├── SharedData.h │ │ ├── SimpleNumber.cxx │ │ ├── TemplateInst.h │ │ ├── TopStylesheetInst.cxx │ │ ├── TopStylesheetInst.h │ │ ├── VariableInst.h │ │ ├── instances.cxx │ │ └── instances.h │ ├── instructions │ │ ├── ApplicatingInstruction.h │ │ ├── Attribute.h │ │ ├── BuiltInTemplate.h │ │ ├── CalsTable.cxx │ │ ├── CalsTable.h │ │ ├── CopyOf.h │ │ ├── Number.cxx │ │ ├── Number.h │ │ ├── Sort.h │ │ ├── Stylesheet.cxx │ │ ├── Stylesheet.h │ │ ├── Template.cxx │ │ ├── Template.h │ │ ├── TopStylesheet.cxx │ │ ├── TopStylesheet.h │ │ ├── instructions.cxx │ │ └── instructions.h │ ├── patterns.cxx │ ├── patterns.h │ ├── patterns3.cxx │ ├── patterns3.h │ ├── results.cxx │ ├── utils.cxx │ ├── utils.h │ ├── xpath_exprinst.h │ ├── xpath_exprs.h │ ├── xpath_values.h │ ├── xslt2.doc │ └── xsltParser.y │ ├── todo-optimize.txt │ ├── xslt_defs.h │ └── xslt_exports.h ├── tools ├── boostbook │ ├── admon.xsl │ ├── annotation.xsl │ ├── caramel │ │ ├── LICENSE │ │ ├── concept2docbook.xsl │ │ ├── cpp-operators.xml │ │ └── unparser.xsl │ ├── chunk-common.xsl │ ├── docbook-layout.xsl │ ├── docbook.xsl │ ├── doxygen │ │ ├── collect.xsl │ │ └── doxygen2boostbook.xsl │ ├── dtd │ │ └── dtd2boostbook.xsl │ ├── error.xsl │ ├── fo.xsl │ ├── function.xsl │ ├── html-single.xsl │ ├── html.xsl │ ├── index.xsl │ ├── library.xsl │ ├── lookup.xsl │ ├── macro.xsl │ ├── manpages.xsl │ ├── navbar.xsl │ ├── reference.xsl │ ├── relative-href.xsl │ ├── source-highlight.xsl │ ├── template.xsl │ ├── testing │ │ ├── Jamfile.xsl │ │ └── testsuite.xsl │ ├── type.xsl │ ├── utility.xsl │ └── xref.xsl ├── buildsys │ ├── 3rd.t │ ├── 3rd │ │ ├── archive.t │ │ ├── buildlog.t │ │ ├── clean.t │ │ ├── configure-project.t │ │ ├── configure-subdirs.t │ │ ├── configure.t │ │ ├── emit_makefile_targets.t │ │ ├── findsubdir.t │ │ ├── install-unix-rules.t │ │ ├── install-unix.t │ │ ├── install-win32.t │ │ ├── install.t │ │ ├── install2.t │ │ ├── make-project.t │ │ ├── make-subdirs.t │ │ ├── make.t │ │ ├── make_vars.t │ │ ├── patch2.t │ │ ├── pkg-utils.t │ │ ├── pkg_dirs.t │ │ ├── target.t │ │ ├── tmake-cleanfiles.t │ │ ├── tmake-leaf.t │ │ ├── tmake-mtargets.t │ │ ├── tmake-project.t │ │ ├── tmake-subdirs.t │ │ ├── tmake-targets.t │ │ └── tmake.t │ ├── appver.py │ ├── autoconf.t │ ├── autosubdirs.t │ ├── buildinfo.t │ ├── buildno.py │ ├── buildver.py │ ├── clean.t │ ├── config.t │ ├── dep_libs.t │ ├── destdir.t │ ├── dirs.t │ ├── dist.t │ ├── dist │ │ ├── darwin.t │ │ ├── dist.t │ │ ├── functions │ │ ├── linux.t │ │ ├── make-binlist.py │ │ ├── make-rpm.sh │ │ ├── make-rpmspec.py │ │ ├── packages.t │ │ ├── unix.t │ │ └── win32.t │ ├── extra │ │ ├── bison.t │ │ ├── export_parser.py │ │ ├── maketargetlists.t │ │ └── newantlr.t │ ├── filetools.t │ ├── findjava.py │ ├── fix_init_config.t │ ├── genlist.t │ ├── incpath.t │ ├── install-common.t │ ├── install-data.t │ ├── install-unix.t │ ├── install-win32.t │ ├── install.t │ ├── install2.t │ ├── java.t │ ├── main.t │ ├── makedepend.t │ ├── misc_vars.t │ ├── options.t │ ├── pkg-info.t │ ├── platform.t │ ├── qrc.t │ ├── read_locals.t │ ├── resource2cxx.py │ ├── resource2cxx.t │ ├── rpmsupport │ │ └── Makefile │ ├── serna.t │ ├── superdir.t │ ├── target.t │ ├── test.t │ ├── tmake │ │ ├── CHANGES │ │ ├── LICENSE │ │ ├── README │ │ ├── bin │ │ │ ├── progen │ │ │ ├── tmake │ │ │ └── tmake_win │ │ ├── doc │ │ │ ├── m-linux-gcc.html │ │ │ ├── m-win32-msvc.html │ │ │ ├── tmake.html │ │ │ └── tmake_ref.html │ │ ├── example │ │ │ ├── hello.cpp │ │ │ ├── hello.h │ │ │ ├── hello.pro │ │ │ ├── main.cpp │ │ │ └── wc.t │ │ └── lib │ │ │ ├── aix-g++ │ │ │ ├── app.t │ │ │ ├── lib.t │ │ │ ├── subdirs.t │ │ │ └── tmake.conf │ │ │ ├── aix-xlc │ │ │ ├── app.t │ │ │ ├── lib.t │ │ │ ├── subdirs.t │ │ │ └── tmake.conf │ │ │ ├── bsdi-g++ │ │ │ ├── app.t │ │ │ ├── lib.t │ │ │ ├── subdirs.t │ │ │ └── tmake.conf │ │ │ ├── darwin-g++ │ │ │ ├── app.t │ │ │ ├── generic.t │ │ │ ├── lib.t │ │ │ ├── subdirs.t │ │ │ └── tmake.conf │ │ │ ├── dgux-g++ │ │ │ ├── app.t │ │ │ ├── lib.t │ │ │ ├── subdirs.t │ │ │ └── tmake.conf │ │ │ ├── freebsd-g++ │ │ │ ├── app.t │ │ │ ├── lib.t │ │ │ ├── subdirs.t │ │ │ └── tmake.conf │ │ │ ├── hpux-acc │ │ │ ├── app.t │ │ │ ├── lib.t │ │ │ ├── subdirs.t │ │ │ └── tmake.conf │ │ │ ├── hpux-cc │ │ │ ├── app.t │ │ │ ├── lib.t │ │ │ ├── subdirs.t │ │ │ └── tmake.conf │ │ │ ├── hpux-g++ │ │ │ ├── app.t │ │ │ ├── lib.t │ │ │ ├── subdirs.t │ │ │ └── tmake.conf │ │ │ ├── hpux-n64 │ │ │ ├── app.t │ │ │ ├── lib.t │ │ │ ├── subdirs.t │ │ │ └── tmake.conf │ │ │ ├── hpux-o64 │ │ │ ├── app.t │ │ │ ├── lib.t │ │ │ ├── subdirs.t │ │ │ └── tmake.conf │ │ │ ├── hurd-g++ │ │ │ ├── app.t │ │ │ ├── lib.t │ │ │ ├── subdirs.t │ │ │ └── tmake.conf │ │ │ ├── irix-64 │ │ │ ├── app.t │ │ │ ├── lib.t │ │ │ ├── subdirs.t │ │ │ └── tmake.conf │ │ │ ├── irix-g++ │ │ │ ├── app.t │ │ │ ├── lib.t │ │ │ ├── subdirs.t │ │ │ └── tmake.conf │ │ │ ├── irix-n32 │ │ │ ├── app.t │ │ │ ├── lib.t │ │ │ ├── subdirs.t │ │ │ └── tmake.conf │ │ │ ├── irix-o32 │ │ │ ├── app.t │ │ │ ├── lib.t │ │ │ ├── subdirs.t │ │ │ └── tmake.conf │ │ │ ├── linux-cxx │ │ │ ├── app.t │ │ │ ├── lib.t │ │ │ ├── subdirs.t │ │ │ └── tmake.conf │ │ │ ├── linux-g++ │ │ │ ├── app.t │ │ │ ├── lib.t │ │ │ ├── subdirs.t │ │ │ └── tmake.conf │ │ │ ├── linux-kcc │ │ │ ├── app.t │ │ │ ├── lib.t │ │ │ ├── subdirs.t │ │ │ └── tmake.conf │ │ │ ├── netbsd-g++ │ │ │ ├── app.t │ │ │ ├── lib.t │ │ │ ├── subdirs.t │ │ │ └── tmake.conf │ │ │ ├── openbsd-g++ │ │ │ ├── app.t │ │ │ ├── lib.t │ │ │ ├── subdirs.t │ │ │ └── tmake.conf │ │ │ ├── osf1-cxx │ │ │ ├── app.t │ │ │ ├── lib.t │ │ │ ├── subdirs.t │ │ │ └── tmake.conf │ │ │ ├── osf1-g++ │ │ │ ├── app.t │ │ │ ├── lib.t │ │ │ ├── subdirs.t │ │ │ └── tmake.conf │ │ │ ├── qnx-rtp-g++ │ │ │ ├── app.t │ │ │ ├── lib.t │ │ │ ├── subdirs.t │ │ │ └── tmake.conf │ │ │ ├── qws │ │ │ ├── linux-arm-g++ │ │ │ │ ├── app.t │ │ │ │ ├── lib.t │ │ │ │ ├── subdirs.t │ │ │ │ └── tmake.conf │ │ │ ├── linux-cassiopeia-g++ │ │ │ │ ├── app.t │ │ │ │ ├── lib.t │ │ │ │ ├── subdirs.t │ │ │ │ └── tmake.conf │ │ │ ├── linux-generic-g++ │ │ │ │ ├── app.t │ │ │ │ ├── lib.t │ │ │ │ ├── subdirs.t │ │ │ │ └── tmake.conf │ │ │ ├── linux-ipaq-g++ │ │ │ │ ├── app.t │ │ │ │ ├── lib.t │ │ │ │ ├── subdirs.t │ │ │ │ └── tmake.conf │ │ │ ├── linux-mips-g++ │ │ │ │ ├── app.t │ │ │ │ ├── lib.t │ │ │ │ ├── subdirs.t │ │ │ │ └── tmake.conf │ │ │ └── linux-x86-g++ │ │ │ │ ├── app.t │ │ │ │ ├── lib.t │ │ │ │ ├── subdirs.t │ │ │ │ └── tmake.conf │ │ │ ├── reliant-cds │ │ │ ├── app.t │ │ │ ├── lib.t │ │ │ ├── subdirs.t │ │ │ └── tmake.conf │ │ │ ├── sco-g++ │ │ │ ├── app.t │ │ │ ├── lib.t │ │ │ ├── subdirs.t │ │ │ └── tmake.conf │ │ │ ├── solaris-64 │ │ │ ├── app.t │ │ │ ├── lib.t │ │ │ ├── subdirs.t │ │ │ └── tmake.conf │ │ │ ├── solaris-cc-gcc │ │ │ ├── app.t │ │ │ ├── lib.t │ │ │ ├── subdirs.t │ │ │ └── tmake.conf │ │ │ ├── solaris-cc │ │ │ ├── app.t │ │ │ ├── lib.t │ │ │ ├── subdirs.t │ │ │ └── tmake.conf │ │ │ ├── solaris-g++ │ │ │ ├── app.t │ │ │ ├── lib.t │ │ │ ├── subdirs.t │ │ │ └── tmake.conf │ │ │ ├── sunos-g++ │ │ │ ├── app.t │ │ │ ├── lib.t │ │ │ ├── subdirs.t │ │ │ └── tmake.conf │ │ │ ├── ultrix-g++ │ │ │ ├── app.t │ │ │ ├── lib.t │ │ │ ├── subdirs.t │ │ │ └── tmake.conf │ │ │ ├── unix │ │ │ ├── app.t │ │ │ ├── generic.t │ │ │ ├── lib.t │ │ │ └── subdirs.t │ │ │ ├── unixware-g++ │ │ │ ├── app.t │ │ │ ├── lib.t │ │ │ ├── subdirs.t │ │ │ └── tmake.conf │ │ │ ├── unixware7-cc │ │ │ ├── app.t │ │ │ ├── lib.t │ │ │ ├── subdirs.t │ │ │ └── tmake.conf │ │ │ ├── unixware7-g++ │ │ │ ├── app.t │ │ │ ├── lib.t │ │ │ ├── subdirs.t │ │ │ └── tmake.conf │ │ │ ├── win32-borland │ │ │ ├── app.t │ │ │ ├── generic.t │ │ │ ├── lib.t │ │ │ ├── subdirs.t │ │ │ └── tmake.conf │ │ │ ├── win32-g++ │ │ │ ├── app.t │ │ │ ├── generic.t │ │ │ ├── lib.t │ │ │ ├── subdirs.t │ │ │ └── tmake.conf │ │ │ ├── win32-msvc │ │ │ ├── app.t │ │ │ ├── generic.t │ │ │ ├── lib.t │ │ │ ├── subdirs.t │ │ │ ├── tmake.conf │ │ │ ├── vcapp.t │ │ │ ├── vcgeneric.t │ │ │ ├── vclib.t │ │ │ ├── win32app.dsp │ │ │ ├── win32dll.dsp │ │ │ └── win32lib.dsp │ │ │ ├── win32-symantec │ │ │ ├── app.t │ │ │ ├── generic.t │ │ │ ├── lib.t │ │ │ ├── subdirs.t │ │ │ └── tmake.conf │ │ │ ├── win32-visage │ │ │ ├── app.t │ │ │ ├── generic.t │ │ │ ├── lib.t │ │ │ ├── subdirs.t │ │ │ └── tmake.conf │ │ │ ├── win32-watcom │ │ │ ├── app.t │ │ │ ├── generic.t │ │ │ ├── lib.t │ │ │ ├── subdirs.t │ │ │ └── tmake.conf │ │ │ └── win32 │ │ │ └── subdirs.t │ ├── unix-dist.t │ ├── unix-subdirs.t │ ├── unix.t │ ├── utils-darwin.t │ ├── utils-freebsd.t │ ├── utils-linux.t │ ├── utils-sunos.t │ ├── utils-unix.t │ ├── utils-win32.t │ ├── utils.t │ ├── version.t │ ├── win32-dist.t │ ├── win32-project.t │ ├── win32-rc.t │ ├── win32-subdirs.t │ └── win32.t ├── manifest │ ├── check_manifest.py │ ├── lst2mft.py │ ├── manifest.py │ ├── manifest2all.py │ └── packager2.py ├── msggen │ ├── MessageGen.py │ ├── MessageGen2.py │ ├── SSXMLParser.py │ ├── msg2xml.py │ └── msggen.py ├── packager │ ├── AppRunner.py │ ├── ArgParser.py │ ├── Packager.py │ ├── manifest │ └── pack.py ├── scripts │ ├── get_prev_svn_versions.py │ ├── make_manifest.py │ └── makeobjlist.pl └── timesheet │ └── xml │ ├── dtds │ └── timesheet │ │ └── timesheet.dtd │ ├── schemas │ └── timesheet │ │ └── timesheet.xsd │ ├── stylesheets │ └── timesheet │ │ ├── simple_master_set.xsl │ │ ├── timesheet.xsl │ │ └── timesheet2text.xsl │ └── templates │ ├── timesheet.scc │ └── timesheet.xml └── win32env.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/.gitignore -------------------------------------------------------------------------------- /3rd/.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /lib 3 | /packages 4 | -------------------------------------------------------------------------------- /3rd/TMakefile.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/TMakefile.pro -------------------------------------------------------------------------------- /3rd/antlr/2.7.1/NMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/antlr/2.7.1/NMakefile -------------------------------------------------------------------------------- /3rd/antlr/2.7.1/TMakefile.pro: -------------------------------------------------------------------------------- 1 | # 2 | # 3 | 4 | TEMPLATE = 3rd 5 | -------------------------------------------------------------------------------- /3rd/antlr/2.7.1/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/antlr/2.7.1/install.bat -------------------------------------------------------------------------------- /3rd/antlr/2.7.1/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/antlr/2.7.1/install.sh -------------------------------------------------------------------------------- /3rd/antlr/TMakefile.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/antlr/TMakefile.pro -------------------------------------------------------------------------------- /3rd/antlr/antlr-default.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/antlr/antlr-default.t -------------------------------------------------------------------------------- /3rd/antlr/antlr-unix.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/antlr/antlr-unix.pro -------------------------------------------------------------------------------- /3rd/antlr/antlr-win32.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/antlr/antlr-win32.pro -------------------------------------------------------------------------------- /3rd/aspell/0.50.5/NMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/aspell/0.50.5/NMakefile -------------------------------------------------------------------------------- /3rd/aspell/MANIFEST.aspell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/aspell/MANIFEST.aspell -------------------------------------------------------------------------------- /3rd/aspell/TMakefile.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/aspell/TMakefile.pro -------------------------------------------------------------------------------- /3rd/aspell/aspell-default.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/aspell/aspell-default.t -------------------------------------------------------------------------------- /3rd/aspell/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/aspell/install.bat -------------------------------------------------------------------------------- /3rd/aspell/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/aspell/install.sh -------------------------------------------------------------------------------- /3rd/aspell/lib/aspell/i386/.aspell_dictdir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rd/aspell/lib/aspell/ppc/.aspell_dictdir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rd/bin/.empty-stub: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rd/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | . ./configure $* 4 | 5 | make install 6 | -------------------------------------------------------------------------------- /3rd/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/build.bat -------------------------------------------------------------------------------- /3rd/buildopts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/buildopts -------------------------------------------------------------------------------- /3rd/buildopts.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/buildopts.bat -------------------------------------------------------------------------------- /3rd/checked_build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/checked_build.bat -------------------------------------------------------------------------------- /3rd/checked_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/checked_build.sh -------------------------------------------------------------------------------- /3rd/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/configure -------------------------------------------------------------------------------- /3rd/configure.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/configure.bat -------------------------------------------------------------------------------- /3rd/defaults.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/defaults.pro -------------------------------------------------------------------------------- /3rd/dita-ot/1.4/TMakefile.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = 3rd 2 | -------------------------------------------------------------------------------- /3rd/dita-ot/1.4/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/dita-ot/1.4/install.bat -------------------------------------------------------------------------------- /3rd/dita-ot/1.4/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/dita-ot/1.4/install.sh -------------------------------------------------------------------------------- /3rd/dita-ot/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/dita-ot/MANIFEST -------------------------------------------------------------------------------- /3rd/dita-ot/TMakefile.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/dita-ot/TMakefile.pro -------------------------------------------------------------------------------- /3rd/dita-ot/dita2html.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/dita-ot/dita2html.cmd -------------------------------------------------------------------------------- /3rd/dita-ot/dita2html.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/dita-ot/dita2html.sh -------------------------------------------------------------------------------- /3rd/docbook/1.68.1/TMakefile.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = 3rd 2 | -------------------------------------------------------------------------------- /3rd/docbook/TMakefile.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/docbook/TMakefile.pro -------------------------------------------------------------------------------- /3rd/docbook/docbook2html.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/docbook/docbook2html.sh -------------------------------------------------------------------------------- /3rd/doxygen/1.5.1/TMakefile.pro: -------------------------------------------------------------------------------- 1 | 2 | TEMPLATE = 3rd 3 | -------------------------------------------------------------------------------- /3rd/doxygen/TMakefile.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/doxygen/TMakefile.pro -------------------------------------------------------------------------------- /3rd/doxygen/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/doxygen/install.bat -------------------------------------------------------------------------------- /3rd/doxygen/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/doxygen/install.sh -------------------------------------------------------------------------------- /3rd/functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/functions -------------------------------------------------------------------------------- /3rd/iconv/1.11/TMakefile.pro: -------------------------------------------------------------------------------- 1 | 2 | TEMPLATE = 3rd 3 | -------------------------------------------------------------------------------- /3rd/iconv/MANIFEST.iconv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/iconv/MANIFEST.iconv -------------------------------------------------------------------------------- /3rd/iconv/TMakefile.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/iconv/TMakefile.pro -------------------------------------------------------------------------------- /3rd/iconv/iconv-default.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/iconv/iconv-default.t -------------------------------------------------------------------------------- /3rd/iconv/iconv-unix.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/iconv/iconv-unix.pro -------------------------------------------------------------------------------- /3rd/iconv/iconv-win32.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/iconv/iconv-win32.pro -------------------------------------------------------------------------------- /3rd/iconv/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/iconv/install.bat -------------------------------------------------------------------------------- /3rd/iconv/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/iconv/install.sh -------------------------------------------------------------------------------- /3rd/instwrapper.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/instwrapper.pl -------------------------------------------------------------------------------- /3rd/jade/ALL.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/ALL.pro -------------------------------------------------------------------------------- /3rd/jade/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/COPYING -------------------------------------------------------------------------------- /3rd/jade/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/FILES -------------------------------------------------------------------------------- /3rd/jade/MREP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/MREP -------------------------------------------------------------------------------- /3rd/jade/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/README -------------------------------------------------------------------------------- /3rd/jade/TMakefile.pro: -------------------------------------------------------------------------------- 1 | # 2 | # 3 | 4 | TEMPLATE = 3rd 5 | options = package=jade,buildtype=make 6 | 7 | -------------------------------------------------------------------------------- /3rd/jade/VERSION: -------------------------------------------------------------------------------- 1 | 1.3.3 2 | -------------------------------------------------------------------------------- /3rd/jade/all/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/all/README -------------------------------------------------------------------------------- /3rd/jade/all/all.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/all/all.dsp -------------------------------------------------------------------------------- /3rd/jade/config/aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/config/aclocal.m4 -------------------------------------------------------------------------------- /3rd/jade/config/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/config/config.sub -------------------------------------------------------------------------------- /3rd/jade/config/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/config/install.sh -------------------------------------------------------------------------------- /3rd/jade/config/ltconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/config/ltconfig -------------------------------------------------------------------------------- /3rd/jade/config/ltmain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/config/ltmain.sh -------------------------------------------------------------------------------- /3rd/jade/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/configure -------------------------------------------------------------------------------- /3rd/jade/doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/doc/Makefile -------------------------------------------------------------------------------- /3rd/jade/doc/archform.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/doc/archform.htm -------------------------------------------------------------------------------- /3rd/jade/doc/build.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/doc/build.htm -------------------------------------------------------------------------------- /3rd/jade/doc/catalog: -------------------------------------------------------------------------------- 1 | CATALOG ../pubtext/html.soc 2 | -------------------------------------------------------------------------------- /3rd/jade/doc/catalog.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/doc/catalog.htm -------------------------------------------------------------------------------- /3rd/jade/doc/charset.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/doc/charset.htm -------------------------------------------------------------------------------- /3rd/jade/doc/features.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/doc/features.htm -------------------------------------------------------------------------------- /3rd/jade/doc/generic.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/doc/generic.htm -------------------------------------------------------------------------------- /3rd/jade/doc/ideas.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/doc/ideas.htm -------------------------------------------------------------------------------- /3rd/jade/doc/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/doc/index.htm -------------------------------------------------------------------------------- /3rd/jade/doc/new.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/doc/new.htm -------------------------------------------------------------------------------- /3rd/jade/doc/nsgmls.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/doc/nsgmls.htm -------------------------------------------------------------------------------- /3rd/jade/doc/sgmldecl.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/doc/sgmldecl.htm -------------------------------------------------------------------------------- /3rd/jade/doc/sgmlnorm.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/doc/sgmlnorm.htm -------------------------------------------------------------------------------- /3rd/jade/doc/sgmlsout.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/doc/sgmlsout.htm -------------------------------------------------------------------------------- /3rd/jade/doc/spam.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/doc/spam.htm -------------------------------------------------------------------------------- /3rd/jade/doc/spent.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/doc/spent.htm -------------------------------------------------------------------------------- /3rd/jade/doc/sx.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/doc/sx.htm -------------------------------------------------------------------------------- /3rd/jade/doc/sysdecl.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/doc/sysdecl.htm -------------------------------------------------------------------------------- /3rd/jade/doc/sysid.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/doc/sysid.htm -------------------------------------------------------------------------------- /3rd/jade/doc/xml.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/doc/xml.htm -------------------------------------------------------------------------------- /3rd/jade/dsssl/catalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/dsssl/catalog -------------------------------------------------------------------------------- /3rd/jade/dsssl/demo.dsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/dsssl/demo.dsl -------------------------------------------------------------------------------- /3rd/jade/dsssl/demo.sgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/dsssl/demo.sgm -------------------------------------------------------------------------------- /3rd/jade/dsssl/dsssl.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/dsssl/dsssl.dtd -------------------------------------------------------------------------------- /3rd/jade/dsssl/fot.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/dsssl/fot.dtd -------------------------------------------------------------------------------- /3rd/jade/dsssl/jadetex.dtx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/dsssl/jadetex.dtx -------------------------------------------------------------------------------- /3rd/jade/dsssl/jadetex.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/dsssl/jadetex.ini -------------------------------------------------------------------------------- /3rd/jade/dsssl/jadetex.ins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/dsssl/jadetex.ins -------------------------------------------------------------------------------- /3rd/jade/grove/LocNode.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/grove/LocNode.cxx -------------------------------------------------------------------------------- /3rd/jade/grove/LocNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/grove/LocNode.h -------------------------------------------------------------------------------- /3rd/jade/grove/MREP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/grove/MREP -------------------------------------------------------------------------------- /3rd/jade/grove/MakeMake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/grove/MakeMake -------------------------------------------------------------------------------- /3rd/jade/grove/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/grove/Makefile -------------------------------------------------------------------------------- /3rd/jade/grove/Node.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/grove/Node.cxx -------------------------------------------------------------------------------- /3rd/jade/grove/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/grove/Node.h -------------------------------------------------------------------------------- /3rd/jade/grove/grove.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/grove/grove.dsp -------------------------------------------------------------------------------- /3rd/jade/groveoa/StdAfx.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/groveoa/StdAfx.cxx -------------------------------------------------------------------------------- /3rd/jade/groveoa/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/groveoa/StdAfx.h -------------------------------------------------------------------------------- /3rd/jade/groveoa/groveoa.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/groveoa/groveoa.rc -------------------------------------------------------------------------------- /3rd/jade/groveoa/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/groveoa/resource.h -------------------------------------------------------------------------------- /3rd/jade/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/install.bat -------------------------------------------------------------------------------- /3rd/jade/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/install.sh -------------------------------------------------------------------------------- /3rd/jade/jade-default.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/jade-default.t -------------------------------------------------------------------------------- /3rd/jade/jade-defaults.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/jade-defaults.pro -------------------------------------------------------------------------------- /3rd/jade/jade/MREP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/jade/MREP -------------------------------------------------------------------------------- /3rd/jade/jade/MakeMake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/jade/MakeMake -------------------------------------------------------------------------------- /3rd/jade/jade/MakeMake.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/jade/MakeMake.bak -------------------------------------------------------------------------------- /3rd/jade/jade/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/jade/Makefile -------------------------------------------------------------------------------- /3rd/jade/jade/Makefile.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/jade/Makefile.bak -------------------------------------------------------------------------------- /3rd/jade/jade/Makefile.dep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rd/jade/jade/Makefile.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/jade/Makefile.sub -------------------------------------------------------------------------------- /3rd/jade/jade/MifMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/jade/MifMessages.h -------------------------------------------------------------------------------- /3rd/jade/jade/RtfMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/jade/RtfMessages.h -------------------------------------------------------------------------------- /3rd/jade/jade/RtfOle.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/jade/RtfOle.cxx -------------------------------------------------------------------------------- /3rd/jade/jade/RtfOle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/jade/RtfOle.h -------------------------------------------------------------------------------- /3rd/jade/jade/TMakefile.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/jade/TMakefile.pro -------------------------------------------------------------------------------- /3rd/jade/jade/TeXMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/jade/TeXMessages.h -------------------------------------------------------------------------------- /3rd/jade/jade/jade.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/jade/jade.cxx -------------------------------------------------------------------------------- /3rd/jade/jade/jade.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/jade/jade.dsp -------------------------------------------------------------------------------- /3rd/jade/jade/jade.pro.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/jade/jade.pro.bak -------------------------------------------------------------------------------- /3rd/jade/jade/jade.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/jade/jade.rc -------------------------------------------------------------------------------- /3rd/jade/jadedist/files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/jadedist/files.txt -------------------------------------------------------------------------------- /3rd/jade/jadedoc/TeX.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/jadedoc/TeX.htm -------------------------------------------------------------------------------- /3rd/jade/jadedoc/dsssl2.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/jadedoc/dsssl2.htm -------------------------------------------------------------------------------- /3rd/jade/jadedoc/jade.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/jadedoc/jade.htm -------------------------------------------------------------------------------- /3rd/jade/jadedoc/mif.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/jadedoc/mif.htm -------------------------------------------------------------------------------- /3rd/jade/japan.sgmldecl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/japan.sgmldecl -------------------------------------------------------------------------------- /3rd/jade/lib/.empty-stub: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rd/jade/libsp/Dtd.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/Dtd.cxx -------------------------------------------------------------------------------- /3rd/jade/libsp/Entity.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/Entity.cxx -------------------------------------------------------------------------------- /3rd/jade/libsp/EquivClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/EquivClass.h -------------------------------------------------------------------------------- /3rd/jade/libsp/Event.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/Event.cxx -------------------------------------------------------------------------------- /3rd/jade/libsp/EventQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/EventQueue.h -------------------------------------------------------------------------------- /3rd/jade/libsp/GMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/GMakefile -------------------------------------------------------------------------------- /3rd/jade/libsp/Group.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/Group.cxx -------------------------------------------------------------------------------- /3rd/jade/libsp/Group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/Group.h -------------------------------------------------------------------------------- /3rd/jade/libsp/Hash.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/Hash.cxx -------------------------------------------------------------------------------- /3rd/jade/libsp/Id.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/Id.cxx -------------------------------------------------------------------------------- /3rd/jade/libsp/Id.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/Id.h -------------------------------------------------------------------------------- /3rd/jade/libsp/Link.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/Link.cxx -------------------------------------------------------------------------------- /3rd/jade/libsp/Location.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/Location.cxx -------------------------------------------------------------------------------- /3rd/jade/libsp/Lpd.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/Lpd.cxx -------------------------------------------------------------------------------- /3rd/jade/libsp/MakeMake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/MakeMake -------------------------------------------------------------------------------- /3rd/jade/libsp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/Makefile -------------------------------------------------------------------------------- /3rd/jade/libsp/Makefile.lt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/Makefile.lt -------------------------------------------------------------------------------- /3rd/jade/libsp/Makefile.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/Makefile.sub -------------------------------------------------------------------------------- /3rd/jade/libsp/Markup.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/Markup.cxx -------------------------------------------------------------------------------- /3rd/jade/libsp/MarkupScan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/MarkupScan.h -------------------------------------------------------------------------------- /3rd/jade/libsp/Message.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/Message.cxx -------------------------------------------------------------------------------- /3rd/jade/libsp/ModeInfo.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/ModeInfo.cxx -------------------------------------------------------------------------------- /3rd/jade/libsp/ModeInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/ModeInfo.h -------------------------------------------------------------------------------- /3rd/jade/libsp/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/Mutex.h -------------------------------------------------------------------------------- /3rd/jade/libsp/NameToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/NameToken.h -------------------------------------------------------------------------------- /3rd/jade/libsp/Notation.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/Notation.cxx -------------------------------------------------------------------------------- /3rd/jade/libsp/Param.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/Param.cxx -------------------------------------------------------------------------------- /3rd/jade/libsp/Param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/Param.h -------------------------------------------------------------------------------- /3rd/jade/libsp/Parser.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/Parser.cxx -------------------------------------------------------------------------------- /3rd/jade/libsp/Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/Parser.h -------------------------------------------------------------------------------- /3rd/jade/libsp/Partition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/Partition.h -------------------------------------------------------------------------------- /3rd/jade/libsp/Priority.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/Priority.h -------------------------------------------------------------------------------- /3rd/jade/libsp/Recognizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/Recognizer.h -------------------------------------------------------------------------------- /3rd/jade/libsp/Sd.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/Sd.cxx -------------------------------------------------------------------------------- /3rd/jade/libsp/SdText.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/SdText.cxx -------------------------------------------------------------------------------- /3rd/jade/libsp/SrInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/SrInfo.h -------------------------------------------------------------------------------- /3rd/jade/libsp/Syntax.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/Syntax.cxx -------------------------------------------------------------------------------- /3rd/jade/libsp/Text.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/Text.cxx -------------------------------------------------------------------------------- /3rd/jade/libsp/Trie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/Trie.h -------------------------------------------------------------------------------- /3rd/jade/libsp/TypeId.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/TypeId.cxx -------------------------------------------------------------------------------- /3rd/jade/libsp/Undo.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/Undo.cxx -------------------------------------------------------------------------------- /3rd/jade/libsp/Undo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/Undo.h -------------------------------------------------------------------------------- /3rd/jade/libsp/WinApp.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/WinApp.cxx -------------------------------------------------------------------------------- /3rd/jade/libsp/app_inst.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/app_inst.cxx -------------------------------------------------------------------------------- /3rd/jade/libsp/app_inst.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/app_inst.m4 -------------------------------------------------------------------------------- /3rd/jade/libsp/arc_inst.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/arc_inst.cxx -------------------------------------------------------------------------------- /3rd/jade/libsp/arc_inst.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/arc_inst.m4 -------------------------------------------------------------------------------- /3rd/jade/libsp/assert.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/assert.cxx -------------------------------------------------------------------------------- /3rd/jade/libsp/big5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/big5.h -------------------------------------------------------------------------------- /3rd/jade/libsp/events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/events.h -------------------------------------------------------------------------------- /3rd/jade/libsp/gb2312.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/gb2312.h -------------------------------------------------------------------------------- /3rd/jade/libsp/instmac.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/instmac.m4 -------------------------------------------------------------------------------- /3rd/jade/libsp/iso646-jis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/iso646-jis.h -------------------------------------------------------------------------------- /3rd/jade/libsp/iso8859-15.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/iso8859-15.h -------------------------------------------------------------------------------- /3rd/jade/libsp/iso8859-2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/iso8859-2.h -------------------------------------------------------------------------------- /3rd/jade/libsp/iso8859-3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/iso8859-3.h -------------------------------------------------------------------------------- /3rd/jade/libsp/iso8859-4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/iso8859-4.h -------------------------------------------------------------------------------- /3rd/jade/libsp/iso8859-5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/iso8859-5.h -------------------------------------------------------------------------------- /3rd/jade/libsp/iso8859-6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/iso8859-6.h -------------------------------------------------------------------------------- /3rd/jade/libsp/iso8859-7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/iso8859-7.h -------------------------------------------------------------------------------- /3rd/jade/libsp/iso8859-8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/iso8859-8.h -------------------------------------------------------------------------------- /3rd/jade/libsp/iso8859-9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/iso8859-9.h -------------------------------------------------------------------------------- /3rd/jade/libsp/jis0201.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/jis0201.h -------------------------------------------------------------------------------- /3rd/jade/libsp/jis0208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/jis0208.h -------------------------------------------------------------------------------- /3rd/jade/libsp/jis0212.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/jis0212.h -------------------------------------------------------------------------------- /3rd/jade/libsp/koi8-r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/koi8-r.h -------------------------------------------------------------------------------- /3rd/jade/libsp/ksc5601.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/ksc5601.h -------------------------------------------------------------------------------- /3rd/jade/libsp/lib.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/lib.dsp -------------------------------------------------------------------------------- /3rd/jade/libsp/lib.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/lib.rc -------------------------------------------------------------------------------- /3rd/jade/libsp/memmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/memmove.c -------------------------------------------------------------------------------- /3rd/jade/libsp/mkversion.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/mkversion.pl -------------------------------------------------------------------------------- /3rd/jade/libsp/parseSd.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/parseSd.cxx -------------------------------------------------------------------------------- /3rd/jade/libsp/splib.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/splib.cxx -------------------------------------------------------------------------------- /3rd/jade/libsp/splib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/splib.h -------------------------------------------------------------------------------- /3rd/jade/libsp/splibpch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/splibpch.h -------------------------------------------------------------------------------- /3rd/jade/libsp/strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/strerror.c -------------------------------------------------------------------------------- /3rd/jade/libsp/token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/token.h -------------------------------------------------------------------------------- /3rd/jade/libsp/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/libsp/version.h -------------------------------------------------------------------------------- /3rd/jade/msggen.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/msggen.pl -------------------------------------------------------------------------------- /3rd/jade/nsgmls/MREP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/nsgmls/MREP -------------------------------------------------------------------------------- /3rd/jade/nsgmls/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/nsgmls/Makefile -------------------------------------------------------------------------------- /3rd/jade/nsgmls/NsgmlsMessages.rc: -------------------------------------------------------------------------------- 1 | STRINGTABLE 2 | BEGIN 3 | 0, "unknown output option %1" 4 | END 5 | -------------------------------------------------------------------------------- /3rd/jade/nsgmls/StringSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/nsgmls/StringSet.h -------------------------------------------------------------------------------- /3rd/jade/nsgmls/nsgmls.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/nsgmls/nsgmls.cxx -------------------------------------------------------------------------------- /3rd/jade/nsgmls/nsgmls.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/nsgmls/nsgmls.dsp -------------------------------------------------------------------------------- /3rd/jade/nsgmls/nsgmls.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/nsgmls/nsgmls.rc -------------------------------------------------------------------------------- /3rd/jade/pro/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/pro/install -------------------------------------------------------------------------------- /3rd/jade/pro/install-c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/pro/install-c -------------------------------------------------------------------------------- /3rd/jade/pro/japp.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/pro/japp.t -------------------------------------------------------------------------------- /3rd/jade/pro/jcommon.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/pro/jcommon.t -------------------------------------------------------------------------------- /3rd/jade/pro/jlib.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/pro/jlib.t -------------------------------------------------------------------------------- /3rd/jade/pro/make-apps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/pro/make-apps -------------------------------------------------------------------------------- /3rd/jade/pro/makeMakefiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/pro/makeMakefiles -------------------------------------------------------------------------------- /3rd/jade/pubtext/HTML32.dcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/pubtext/HTML32.dcl -------------------------------------------------------------------------------- /3rd/jade/pubtext/HTML32.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/pubtext/HTML32.dtd -------------------------------------------------------------------------------- /3rd/jade/pubtext/HTML32.soc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/pubtext/HTML32.soc -------------------------------------------------------------------------------- /3rd/jade/pubtext/HTML4.dcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/pubtext/HTML4.dcl -------------------------------------------------------------------------------- /3rd/jade/pubtext/HTML4.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/pubtext/HTML4.dtd -------------------------------------------------------------------------------- /3rd/jade/pubtext/HTML4.soc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/pubtext/HTML4.soc -------------------------------------------------------------------------------- /3rd/jade/pubtext/html-1.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/pubtext/html-1.dtd -------------------------------------------------------------------------------- /3rd/jade/pubtext/html-s.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/pubtext/html-s.dtd -------------------------------------------------------------------------------- /3rd/jade/pubtext/html.dcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/pubtext/html.dcl -------------------------------------------------------------------------------- /3rd/jade/pubtext/html.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/pubtext/html.dtd -------------------------------------------------------------------------------- /3rd/jade/pubtext/html.soc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/pubtext/html.soc -------------------------------------------------------------------------------- /3rd/jade/pubtext/xml.dcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/pubtext/xml.dcl -------------------------------------------------------------------------------- /3rd/jade/pubtext/xml.soc: -------------------------------------------------------------------------------- 1 | SGMLDECL "xml.dcl" 2 | -------------------------------------------------------------------------------- /3rd/jade/sgmlnorm/MREP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sgmlnorm/MREP -------------------------------------------------------------------------------- /3rd/jade/sgmlnorm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sgmlnorm/Makefile -------------------------------------------------------------------------------- /3rd/jade/sgmlnorm/Makefile.dep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rd/jade/sp/Allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/Allocator.h -------------------------------------------------------------------------------- /3rd/jade/sp/ArcEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/ArcEngine.h -------------------------------------------------------------------------------- /3rd/jade/sp/Attribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/Attribute.h -------------------------------------------------------------------------------- /3rd/jade/sp/Attributed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/Attributed.h -------------------------------------------------------------------------------- /3rd/jade/sp/Boolean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/Boolean.h -------------------------------------------------------------------------------- /3rd/jade/sp/CharMap.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/CharMap.cxx -------------------------------------------------------------------------------- /3rd/jade/sp/CharMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/CharMap.h -------------------------------------------------------------------------------- /3rd/jade/sp/CharsetDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/CharsetDecl.h -------------------------------------------------------------------------------- /3rd/jade/sp/CharsetInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/CharsetInfo.h -------------------------------------------------------------------------------- /3rd/jade/sp/CmdLineApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/CmdLineApp.h -------------------------------------------------------------------------------- /3rd/jade/sp/CodingSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/CodingSystem.h -------------------------------------------------------------------------------- /3rd/jade/sp/ConsoleOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/ConsoleOutput.h -------------------------------------------------------------------------------- /3rd/jade/sp/ContentState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/ContentState.h -------------------------------------------------------------------------------- /3rd/jade/sp/ContentToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/ContentToken.h -------------------------------------------------------------------------------- /3rd/jade/sp/CopyOwner.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/CopyOwner.cxx -------------------------------------------------------------------------------- /3rd/jade/sp/CopyOwner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/CopyOwner.h -------------------------------------------------------------------------------- /3rd/jade/sp/Dtd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/Dtd.h -------------------------------------------------------------------------------- /3rd/jade/sp/ElementType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/ElementType.h -------------------------------------------------------------------------------- /3rd/jade/sp/Entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/Entity.h -------------------------------------------------------------------------------- /3rd/jade/sp/EntityApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/EntityApp.h -------------------------------------------------------------------------------- /3rd/jade/sp/EntityCatalog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/EntityCatalog.h -------------------------------------------------------------------------------- /3rd/jade/sp/EntityDecl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/EntityDecl.h -------------------------------------------------------------------------------- /3rd/jade/sp/EntityManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/EntityManager.h -------------------------------------------------------------------------------- /3rd/jade/sp/Event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/Event.h -------------------------------------------------------------------------------- /3rd/jade/sp/EventsWanted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/EventsWanted.h -------------------------------------------------------------------------------- /3rd/jade/sp/ExternalId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/ExternalId.h -------------------------------------------------------------------------------- /3rd/jade/sp/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/Hash.h -------------------------------------------------------------------------------- /3rd/jade/sp/HashTable.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/HashTable.cxx -------------------------------------------------------------------------------- /3rd/jade/sp/HashTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/HashTable.h -------------------------------------------------------------------------------- /3rd/jade/sp/IList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/IList.h -------------------------------------------------------------------------------- /3rd/jade/sp/IListBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/IListBase.h -------------------------------------------------------------------------------- /3rd/jade/sp/IListIter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/IListIter.h -------------------------------------------------------------------------------- /3rd/jade/sp/IListIterBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/IListIterBase.h -------------------------------------------------------------------------------- /3rd/jade/sp/IQueue.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/IQueue.cxx -------------------------------------------------------------------------------- /3rd/jade/sp/IQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/IQueue.h -------------------------------------------------------------------------------- /3rd/jade/sp/ISet.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/ISet.cxx -------------------------------------------------------------------------------- /3rd/jade/sp/ISet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/ISet.h -------------------------------------------------------------------------------- /3rd/jade/sp/ISetIter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/ISetIter.h -------------------------------------------------------------------------------- /3rd/jade/sp/InputSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/InputSource.h -------------------------------------------------------------------------------- /3rd/jade/sp/Link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/Link.h -------------------------------------------------------------------------------- /3rd/jade/sp/LinkProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/LinkProcess.h -------------------------------------------------------------------------------- /3rd/jade/sp/List.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/List.cxx -------------------------------------------------------------------------------- /3rd/jade/sp/List.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/List.h -------------------------------------------------------------------------------- /3rd/jade/sp/ListIter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/ListIter.h -------------------------------------------------------------------------------- /3rd/jade/sp/Location.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/Location.h -------------------------------------------------------------------------------- /3rd/jade/sp/Lpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/Lpd.h -------------------------------------------------------------------------------- /3rd/jade/sp/Markup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/Markup.h -------------------------------------------------------------------------------- /3rd/jade/sp/Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/Message.h -------------------------------------------------------------------------------- /3rd/jade/sp/MessageArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/MessageArg.h -------------------------------------------------------------------------------- /3rd/jade/sp/MessageTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/MessageTable.h -------------------------------------------------------------------------------- /3rd/jade/sp/Mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/Mode.h -------------------------------------------------------------------------------- /3rd/jade/sp/NCVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/NCVector.h -------------------------------------------------------------------------------- /3rd/jade/sp/NCVector.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/NCVector.sed -------------------------------------------------------------------------------- /3rd/jade/sp/Named.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/Named.h -------------------------------------------------------------------------------- /3rd/jade/sp/NamedResource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/NamedResource.h -------------------------------------------------------------------------------- /3rd/jade/sp/NamedTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/NamedTable.h -------------------------------------------------------------------------------- /3rd/jade/sp/Notation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/Notation.h -------------------------------------------------------------------------------- /3rd/jade/sp/OpenElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/OpenElement.h -------------------------------------------------------------------------------- /3rd/jade/sp/Options.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/Options.cxx -------------------------------------------------------------------------------- /3rd/jade/sp/Options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/Options.h -------------------------------------------------------------------------------- /3rd/jade/sp/Owner.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/Owner.cxx -------------------------------------------------------------------------------- /3rd/jade/sp/Owner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/Owner.h -------------------------------------------------------------------------------- /3rd/jade/sp/OwnerTable.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/OwnerTable.cxx -------------------------------------------------------------------------------- /3rd/jade/sp/OwnerTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/OwnerTable.h -------------------------------------------------------------------------------- /3rd/jade/sp/ParserApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/ParserApp.h -------------------------------------------------------------------------------- /3rd/jade/sp/ParserOptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/ParserOptions.h -------------------------------------------------------------------------------- /3rd/jade/sp/PointerTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/PointerTable.h -------------------------------------------------------------------------------- /3rd/jade/sp/PosixStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/PosixStorage.h -------------------------------------------------------------------------------- /3rd/jade/sp/Ptr.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/Ptr.cxx -------------------------------------------------------------------------------- /3rd/jade/sp/Ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/Ptr.h -------------------------------------------------------------------------------- /3rd/jade/sp/RangeMap.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/RangeMap.cxx -------------------------------------------------------------------------------- /3rd/jade/sp/RangeMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/RangeMap.h -------------------------------------------------------------------------------- /3rd/jade/sp/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/Resource.h -------------------------------------------------------------------------------- /3rd/jade/sp/Sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/Sd.h -------------------------------------------------------------------------------- /3rd/jade/sp/SdText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/SdText.h -------------------------------------------------------------------------------- /3rd/jade/sp/SgmlParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/SgmlParser.h -------------------------------------------------------------------------------- /3rd/jade/sp/StdioStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/StdioStorage.h -------------------------------------------------------------------------------- /3rd/jade/sp/StringC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/StringC.h -------------------------------------------------------------------------------- /3rd/jade/sp/StringOf.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/StringOf.cxx -------------------------------------------------------------------------------- /3rd/jade/sp/StringOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/StringOf.h -------------------------------------------------------------------------------- /3rd/jade/sp/SubstTable.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/SubstTable.cxx -------------------------------------------------------------------------------- /3rd/jade/sp/SubstTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/SubstTable.h -------------------------------------------------------------------------------- /3rd/jade/sp/Syntax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/Syntax.h -------------------------------------------------------------------------------- /3rd/jade/sp/Text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/Text.h -------------------------------------------------------------------------------- /3rd/jade/sp/TypeId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/TypeId.h -------------------------------------------------------------------------------- /3rd/jade/sp/URLStorage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/URLStorage.h -------------------------------------------------------------------------------- /3rd/jade/sp/Vector.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/Vector.cxx -------------------------------------------------------------------------------- /3rd/jade/sp/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/Vector.h -------------------------------------------------------------------------------- /3rd/jade/sp/WinApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/WinApp.h -------------------------------------------------------------------------------- /3rd/jade/sp/XcharMap.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/XcharMap.cxx -------------------------------------------------------------------------------- /3rd/jade/sp/XcharMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/XcharMap.h -------------------------------------------------------------------------------- /3rd/jade/sp/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/config.h -------------------------------------------------------------------------------- /3rd/jade/sp/constant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/constant.h -------------------------------------------------------------------------------- /3rd/jade/sp/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/macros.h -------------------------------------------------------------------------------- /3rd/jade/sp/rtti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/rtti.h -------------------------------------------------------------------------------- /3rd/jade/sp/sptchar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/sptchar.h -------------------------------------------------------------------------------- /3rd/jade/sp/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/types.h -------------------------------------------------------------------------------- /3rd/jade/sp/xnew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sp/xnew.h -------------------------------------------------------------------------------- /3rd/jade/spam/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/spam/Makefile -------------------------------------------------------------------------------- /3rd/jade/spam/Makefile.dep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rd/jade/spam/Makefile.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/spam/Makefile.sub -------------------------------------------------------------------------------- /3rd/jade/spam/spam.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/spam/spam.cxx -------------------------------------------------------------------------------- /3rd/jade/spam/spam.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/spam/spam.dsp -------------------------------------------------------------------------------- /3rd/jade/spam/spam.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/spam/spam.rc -------------------------------------------------------------------------------- /3rd/jade/spam/spam_inst.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/spam/spam_inst.cxx -------------------------------------------------------------------------------- /3rd/jade/spam/spam_inst.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/spam/spam_inst.m4 -------------------------------------------------------------------------------- /3rd/jade/spent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/spent/Makefile -------------------------------------------------------------------------------- /3rd/jade/spent/Makefile.dep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rd/jade/spent/Makefile.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/spent/Makefile.sub -------------------------------------------------------------------------------- /3rd/jade/spent/spent.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/spent/spent.cxx -------------------------------------------------------------------------------- /3rd/jade/spent/spent.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/spent/spent.dsp -------------------------------------------------------------------------------- /3rd/jade/spgrove/GroveApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/spgrove/GroveApp.h -------------------------------------------------------------------------------- /3rd/jade/spgrove/MREP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/spgrove/MREP -------------------------------------------------------------------------------- /3rd/jade/spgrove/MakeMake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/spgrove/MakeMake -------------------------------------------------------------------------------- /3rd/jade/spgrove/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/spgrove/Makefile -------------------------------------------------------------------------------- /3rd/jade/spgrove/SdNode.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/spgrove/SdNode.cxx -------------------------------------------------------------------------------- /3rd/jade/spgrove/SdNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/spgrove/SdNode.h -------------------------------------------------------------------------------- /3rd/jade/spgrove/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/spgrove/threads.h -------------------------------------------------------------------------------- /3rd/jade/style/Collector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/style/Collector.h -------------------------------------------------------------------------------- /3rd/jade/style/DssslApp.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/style/DssslApp.cxx -------------------------------------------------------------------------------- /3rd/jade/style/DssslApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/style/DssslApp.h -------------------------------------------------------------------------------- /3rd/jade/style/ELObj.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/style/ELObj.cxx -------------------------------------------------------------------------------- /3rd/jade/style/ELObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/style/ELObj.h -------------------------------------------------------------------------------- /3rd/jade/style/Expression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/style/Expression.h -------------------------------------------------------------------------------- /3rd/jade/style/FOTBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/style/FOTBuilder.h -------------------------------------------------------------------------------- /3rd/jade/style/FlowObj.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/style/FlowObj.cxx -------------------------------------------------------------------------------- /3rd/jade/style/Insn.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/style/Insn.cxx -------------------------------------------------------------------------------- /3rd/jade/style/Insn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/style/Insn.h -------------------------------------------------------------------------------- /3rd/jade/style/Insn2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/style/Insn2.h -------------------------------------------------------------------------------- /3rd/jade/style/MREP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/style/MREP -------------------------------------------------------------------------------- /3rd/jade/style/MakeMake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/style/MakeMake -------------------------------------------------------------------------------- /3rd/jade/style/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/style/Makefile -------------------------------------------------------------------------------- /3rd/jade/style/Makefile.dep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rd/jade/style/Makefile.lt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/style/Makefile.lt -------------------------------------------------------------------------------- /3rd/jade/style/Makefile.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/style/Makefile.sub -------------------------------------------------------------------------------- /3rd/jade/style/Pattern.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/style/Pattern.cxx -------------------------------------------------------------------------------- /3rd/jade/style/Pattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/style/Pattern.h -------------------------------------------------------------------------------- /3rd/jade/style/SosofoObj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/style/SosofoObj.h -------------------------------------------------------------------------------- /3rd/jade/style/Style.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/style/Style.cxx -------------------------------------------------------------------------------- /3rd/jade/style/Style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/style/Style.h -------------------------------------------------------------------------------- /3rd/jade/style/VM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/style/VM.h -------------------------------------------------------------------------------- /3rd/jade/style/charNames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/style/charNames.h -------------------------------------------------------------------------------- /3rd/jade/style/dsssl_ns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/style/dsssl_ns.h -------------------------------------------------------------------------------- /3rd/jade/style/jade_version.h: -------------------------------------------------------------------------------- 1 | #define JADE_VERSION SP_T("1.2.1") 2 | -------------------------------------------------------------------------------- /3rd/jade/style/primitive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/style/primitive.h -------------------------------------------------------------------------------- /3rd/jade/style/sdata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/style/sdata.h -------------------------------------------------------------------------------- /3rd/jade/style/style.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/style/style.dsp -------------------------------------------------------------------------------- /3rd/jade/style/style_pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/style/style_pch.h -------------------------------------------------------------------------------- /3rd/jade/style/stylelib.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/style/stylelib.cxx -------------------------------------------------------------------------------- /3rd/jade/style/stylelib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/style/stylelib.h -------------------------------------------------------------------------------- /3rd/jade/sunfix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sunfix.sh -------------------------------------------------------------------------------- /3rd/jade/sx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sx/Makefile -------------------------------------------------------------------------------- /3rd/jade/sx/Makefile.dep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rd/jade/sx/Makefile.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sx/Makefile.sub -------------------------------------------------------------------------------- /3rd/jade/sx/SxMessages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sx/SxMessages.h -------------------------------------------------------------------------------- /3rd/jade/sx/SxMessages.msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sx/SxMessages.msg -------------------------------------------------------------------------------- /3rd/jade/sx/SxMessages.rc: -------------------------------------------------------------------------------- 1 | STRINGTABLE 2 | BEGIN 3 | 0, "unknown output option %1" 4 | END 5 | -------------------------------------------------------------------------------- /3rd/jade/sx/sx.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sx/sx.cxx -------------------------------------------------------------------------------- /3rd/jade/sx/sx.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sx/sx.dsp -------------------------------------------------------------------------------- /3rd/jade/sx/sx.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sx/sx.rc -------------------------------------------------------------------------------- /3rd/jade/sx/sx_inst.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sx/sx_inst.cxx -------------------------------------------------------------------------------- /3rd/jade/sx/sx_inst.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/sx/sx_inst.m4 -------------------------------------------------------------------------------- /3rd/jade/unicode/catalog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/unicode/catalog -------------------------------------------------------------------------------- /3rd/jade/unicode/demo.sgm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/unicode/demo.sgm -------------------------------------------------------------------------------- /3rd/jade/unicode/unicode.sd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jade/unicode/unicode.sd -------------------------------------------------------------------------------- /3rd/jdk/1.6.0/TMakefile.pro: -------------------------------------------------------------------------------- 1 | # 2 | 3 | TEMPLATE = 3rd 4 | -------------------------------------------------------------------------------- /3rd/jdk/1.6.0/jre.excludes.win32: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rd/jdk/TMakefile.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jdk/TMakefile.pro -------------------------------------------------------------------------------- /3rd/jdk/install.bat: -------------------------------------------------------------------------------- 1 | @echo off -------------------------------------------------------------------------------- /3rd/jdk/install.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /3rd/jdk/java-included.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jdk/java-included.t -------------------------------------------------------------------------------- /3rd/jdk/java-system.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jdk/java-system.t -------------------------------------------------------------------------------- /3rd/jdk/jdk-default.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jdk/jdk-default.t -------------------------------------------------------------------------------- /3rd/jdk/jdk-defaults.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/jdk/jdk-defaults.pro -------------------------------------------------------------------------------- /3rd/lib/.empty-stub: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /3rd/libxml-python/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/libxml-python/MANIFEST -------------------------------------------------------------------------------- /3rd/libxml/2.6.27/TMakefile.pro: -------------------------------------------------------------------------------- 1 | 2 | TEMPLATE = 3rd 3 | -------------------------------------------------------------------------------- /3rd/libxml/MANIFEST.xml2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/libxml/MANIFEST.xml2 -------------------------------------------------------------------------------- /3rd/libxml/TMakefile.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/libxml/TMakefile.pro -------------------------------------------------------------------------------- /3rd/libxml/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/libxml/install.bat -------------------------------------------------------------------------------- /3rd/libxml/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/libxml/install.sh -------------------------------------------------------------------------------- /3rd/libxml/libxml-default.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/libxml/libxml-default.t -------------------------------------------------------------------------------- /3rd/libxml/libxml-unix.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/libxml/libxml-unix.pro -------------------------------------------------------------------------------- /3rd/libxml/libxml-win32.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/libxml/libxml-win32.pro -------------------------------------------------------------------------------- /3rd/pyqt/4.4.4/TMakefile.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = 3rd 2 | -------------------------------------------------------------------------------- /3rd/pyqt/4.5.4/TMakefile.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = 3rd 2 | -------------------------------------------------------------------------------- /3rd/pyqt/MANIFEST.PyQt4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/pyqt/MANIFEST.PyQt4 -------------------------------------------------------------------------------- /3rd/pyqt/TMakefile.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/pyqt/TMakefile.pro -------------------------------------------------------------------------------- /3rd/pyqt/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/pyqt/install.bat -------------------------------------------------------------------------------- /3rd/pyqt/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/pyqt/install.sh -------------------------------------------------------------------------------- /3rd/pyqt/pyqt-default.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/pyqt/pyqt-default.t -------------------------------------------------------------------------------- /3rd/pyqt/pyqt-defaults.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/pyqt/pyqt-defaults.pro -------------------------------------------------------------------------------- /3rd/python/2.6.2/TMakefile.pro: -------------------------------------------------------------------------------- 1 | 2 | TEMPLATE = 3rd 3 | -------------------------------------------------------------------------------- /3rd/python/2.6.2/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/python/2.6.2/install.sh -------------------------------------------------------------------------------- /3rd/python/MANIFEST.python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/python/MANIFEST.python -------------------------------------------------------------------------------- /3rd/python/TMakefile.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/python/TMakefile.pro -------------------------------------------------------------------------------- /3rd/python/python-default.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/python/python-default.t -------------------------------------------------------------------------------- /3rd/python/python-unix.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/python/python-unix.pro -------------------------------------------------------------------------------- /3rd/python/python-win32.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/python/python-win32.pro -------------------------------------------------------------------------------- /3rd/qscintilla/2.3.2/TMakefile.pro: -------------------------------------------------------------------------------- 1 | # 2 | # 3 | 4 | TEMPLATE = 3rd 5 | -------------------------------------------------------------------------------- /3rd/qscintilla/2.3.2/install.bat: -------------------------------------------------------------------------------- 1 | @exit 0 -------------------------------------------------------------------------------- /3rd/qscintilla/2.4/TMakefile.pro: -------------------------------------------------------------------------------- 1 | # 2 | # 3 | 4 | TEMPLATE = 3rd 5 | -------------------------------------------------------------------------------- /3rd/qscintilla/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/qscintilla/install.bat -------------------------------------------------------------------------------- /3rd/qscintilla/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/qscintilla/install.sh -------------------------------------------------------------------------------- /3rd/qt/4.5.1/TMakefile.pro: -------------------------------------------------------------------------------- 1 | 2 | TEMPLATE = 3rd 3 | -------------------------------------------------------------------------------- /3rd/qt/4.5.2/TMakefile.pro: -------------------------------------------------------------------------------- 1 | 2 | TEMPLATE = 3rd 3 | -------------------------------------------------------------------------------- /3rd/qt/4.5.3/TMakefile.pro: -------------------------------------------------------------------------------- 1 | 2 | TEMPLATE = 3rd 3 | -------------------------------------------------------------------------------- /3rd/qt/MANIFEST.qt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/qt/MANIFEST.qt -------------------------------------------------------------------------------- /3rd/qt/TMakefile.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/qt/TMakefile.pro -------------------------------------------------------------------------------- /3rd/qt/fixincludes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/qt/fixincludes.py -------------------------------------------------------------------------------- /3rd/qt/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/qt/install.bat -------------------------------------------------------------------------------- /3rd/qt/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/qt/install.sh -------------------------------------------------------------------------------- /3rd/qt/qconfig.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/qt/qconfig.pl -------------------------------------------------------------------------------- /3rd/qt/qt-darwin.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/qt/qt-darwin.pro -------------------------------------------------------------------------------- /3rd/qt/qt-default.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/qt/qt-default.t -------------------------------------------------------------------------------- /3rd/qt/qt-defaults.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/qt/qt-defaults.pro -------------------------------------------------------------------------------- /3rd/qt/qt-unix.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/qt/qt-unix.pro -------------------------------------------------------------------------------- /3rd/qt/qt-win32.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/qt/qt-win32.pro -------------------------------------------------------------------------------- /3rd/qt/qtdir.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/qt/qtdir.t -------------------------------------------------------------------------------- /3rd/qtpropertybrowser/2.5/TMakefile.pro: -------------------------------------------------------------------------------- 1 | # 2 | # 3 | 4 | TEMPLATE = 3rd 5 | -------------------------------------------------------------------------------- /3rd/qtsingleapplication/20130108/TMakefile.pro: -------------------------------------------------------------------------------- 1 | # 2 | # 3 | 4 | TEMPLATE = 3rd 5 | -------------------------------------------------------------------------------- /3rd/sip/4.7.9/TMakefile.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = 3rd 2 | -------------------------------------------------------------------------------- /3rd/sip/4.8.2/TMakefile.pro: -------------------------------------------------------------------------------- 1 | TEMPLATE = 3rd 2 | -------------------------------------------------------------------------------- /3rd/sip/TMakefile.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/sip/TMakefile.pro -------------------------------------------------------------------------------- /3rd/sip/getsipdir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/sip/getsipdir.py -------------------------------------------------------------------------------- /3rd/sip/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/sip/install.bat -------------------------------------------------------------------------------- /3rd/sip/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/sip/install.sh -------------------------------------------------------------------------------- /3rd/sip/sip-default.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/sip/sip-default.t -------------------------------------------------------------------------------- /3rd/sip/sip-defaults.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/sip/sip-defaults.pro -------------------------------------------------------------------------------- /3rd/tools.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/tools.pro -------------------------------------------------------------------------------- /3rd/xsltproc/1.1.19/TMakefile.pro: -------------------------------------------------------------------------------- 1 | 2 | TEMPLATE = 3rd 3 | -------------------------------------------------------------------------------- /3rd/xsltproc/TMakefile.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/xsltproc/TMakefile.pro -------------------------------------------------------------------------------- /3rd/xsltproc/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/xsltproc/install.bat -------------------------------------------------------------------------------- /3rd/xsltproc/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/3rd/xsltproc/install.sh -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/AUTHORS -------------------------------------------------------------------------------- /GPL_EXCEPTION.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/GPL_EXCEPTION.txt -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/LICENSE.GPL -------------------------------------------------------------------------------- /Makefile.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/Makefile.pro -------------------------------------------------------------------------------- /defaults.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/defaults.pro -------------------------------------------------------------------------------- /serna/Makefile.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/Makefile.pro -------------------------------------------------------------------------------- /serna/app/APPVER: -------------------------------------------------------------------------------- 1 | 4.4.0 2 | -------------------------------------------------------------------------------- /serna/app/ASPELL-COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/ASPELL-COPYING -------------------------------------------------------------------------------- /serna/app/ASPELL-EN-COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/ASPELL-EN-COPYING -------------------------------------------------------------------------------- /serna/app/EULA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/EULA.txt -------------------------------------------------------------------------------- /serna/app/FREETYPE.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/FREETYPE.LICENSE -------------------------------------------------------------------------------- /serna/app/LIBGCC.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/LIBGCC.LICENSE -------------------------------------------------------------------------------- /serna/app/LIBSTDC++.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/LIBSTDC++.LICENSE -------------------------------------------------------------------------------- /serna/app/MANIFEST.all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/MANIFEST.all -------------------------------------------------------------------------------- /serna/app/MANIFEST.dita: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/MANIFEST.dita -------------------------------------------------------------------------------- /serna/app/MANIFEST.dita-faq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/MANIFEST.dita-faq -------------------------------------------------------------------------------- /serna/app/MANIFEST.ditahelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/MANIFEST.ditahelp -------------------------------------------------------------------------------- /serna/app/MANIFEST.doc-dita: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/MANIFEST.doc-dita -------------------------------------------------------------------------------- /serna/app/MANIFEST.docbook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/MANIFEST.docbook -------------------------------------------------------------------------------- /serna/app/MANIFEST.nitf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/MANIFEST.nitf -------------------------------------------------------------------------------- /serna/app/MANIFEST.pyapi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/MANIFEST.pyapi -------------------------------------------------------------------------------- /serna/app/MANIFEST.python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/MANIFEST.python -------------------------------------------------------------------------------- /serna/app/MANIFEST.sapi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/MANIFEST.sapi -------------------------------------------------------------------------------- /serna/app/MANIFEST.speller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/MANIFEST.speller -------------------------------------------------------------------------------- /serna/app/MANIFEST.syntext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/MANIFEST.syntext -------------------------------------------------------------------------------- /serna/app/MANIFEST.tei: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/MANIFEST.tei -------------------------------------------------------------------------------- /serna/app/MANIFEST.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/MANIFEST.xhtml -------------------------------------------------------------------------------- /serna/app/Makefile.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/Makefile.pro -------------------------------------------------------------------------------- /serna/app/NEON-COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/NEON-COPYING -------------------------------------------------------------------------------- /serna/app/README.TXT: -------------------------------------------------------------------------------- 1 | A template for README 2 | -------------------------------------------------------------------------------- /serna/app/SP-COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/SP-COPYING -------------------------------------------------------------------------------- /serna/app/TGZ-INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/TGZ-INSTALL -------------------------------------------------------------------------------- /serna/app/VERSION: -------------------------------------------------------------------------------- 1 | 2.0.0 2 | -------------------------------------------------------------------------------- /serna/app/appver.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/appver.t -------------------------------------------------------------------------------- /serna/app/catalog.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/catalog.t -------------------------------------------------------------------------------- /serna/app/dbgpack.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/dbgpack.t -------------------------------------------------------------------------------- /serna/app/dist.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/dist.pro -------------------------------------------------------------------------------- /serna/app/dist.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/dist.t -------------------------------------------------------------------------------- /serna/app/dynexports.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/dynexports.pro -------------------------------------------------------------------------------- /serna/app/dynexports.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/dynexports.t -------------------------------------------------------------------------------- /serna/app/get_undef_syms.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/get_undef_syms.sh -------------------------------------------------------------------------------- /serna/app/mac/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /serna/app/mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/mac/Info.plist -------------------------------------------------------------------------------- /serna/app/mac/Resources/postupgrade: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | `dirname $0`/postinstall $* 3 | -------------------------------------------------------------------------------- /serna/app/mac_postpkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/mac_postpkg.sh -------------------------------------------------------------------------------- /serna/app/mac_prepkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/mac_prepkg.sh -------------------------------------------------------------------------------- /serna/app/main.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/main.cxx -------------------------------------------------------------------------------- /serna/app/make-sun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/make-sun.sh -------------------------------------------------------------------------------- /serna/app/make-tgz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/make-tgz.sh -------------------------------------------------------------------------------- /serna/app/makedist.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/makedist.cmd -------------------------------------------------------------------------------- /serna/app/makeexplist.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/makeexplist.pl -------------------------------------------------------------------------------- /serna/app/makeldmap.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/makeldmap.pl -------------------------------------------------------------------------------- /serna/app/makeldscript.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/makeldscript.pl -------------------------------------------------------------------------------- /serna/app/pymodules.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/pymodules.t -------------------------------------------------------------------------------- /serna/app/rpm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/rpm/Makefile -------------------------------------------------------------------------------- /serna/app/rpm/serna.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/rpm/serna.spec -------------------------------------------------------------------------------- /serna/app/script2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/script2.t -------------------------------------------------------------------------------- /serna/app/serna-exe.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/serna-exe.t -------------------------------------------------------------------------------- /serna/app/serna.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/serna.icns -------------------------------------------------------------------------------- /serna/app/serna.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/serna.ico -------------------------------------------------------------------------------- /serna/app/serna.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/serna.iss -------------------------------------------------------------------------------- /serna/app/serna.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/serna.rc -------------------------------------------------------------------------------- /serna/app/serna_postrpmbuild.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh -xe 2 | 3 | -------------------------------------------------------------------------------- /serna/app/spell.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/spell.t -------------------------------------------------------------------------------- /serna/app/sunos/pkginfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/sunos/pkginfo -------------------------------------------------------------------------------- /serna/app/tgz-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/tgz-install.sh -------------------------------------------------------------------------------- /serna/app/tgz-uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/app/tgz-uninstall.sh -------------------------------------------------------------------------------- /serna/core/AxSerna.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/core/AxSerna.h -------------------------------------------------------------------------------- /serna/core/DocBuilders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/core/DocBuilders.h -------------------------------------------------------------------------------- /serna/core/EmptyDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/core/EmptyDocument.h -------------------------------------------------------------------------------- /serna/core/Makefile.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/core/Makefile.pro -------------------------------------------------------------------------------- /serna/core/Preferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/core/Preferences.h -------------------------------------------------------------------------------- /serna/core/Serna.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/core/Serna.h -------------------------------------------------------------------------------- /serna/core/VERSION: -------------------------------------------------------------------------------- 1 | 2.0.0 2 | -------------------------------------------------------------------------------- /serna/core/core_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/core/core_defs.h -------------------------------------------------------------------------------- /serna/core/debug_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/core/debug_core.h -------------------------------------------------------------------------------- /serna/core/icons-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/core/icons-list -------------------------------------------------------------------------------- /serna/core/impl/Serna.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/core/impl/Serna.cxx -------------------------------------------------------------------------------- /serna/core/impl/core.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/core/impl/core.def -------------------------------------------------------------------------------- /serna/core/qt/QtSerna.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/core/qt/QtSerna.cxx -------------------------------------------------------------------------------- /serna/core/serna_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/core/serna_main.h -------------------------------------------------------------------------------- /serna/dist/build.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/dist/build.ent -------------------------------------------------------------------------------- /serna/dist/doc-dita/faq/faq.ent: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /serna/dist/doc/common.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/dist/doc/common.ent -------------------------------------------------------------------------------- /serna/dist/doc/faq/faq.ent: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /serna/dist/doc/faq/faq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/dist/doc/faq/faq.xml -------------------------------------------------------------------------------- /serna/dist/doc/index.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/dist/doc/index.xml -------------------------------------------------------------------------------- /serna/dist/doc/relnotes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/dist/doc/relnotes.xml -------------------------------------------------------------------------------- /serna/dist/doc/serna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/dist/doc/serna.png -------------------------------------------------------------------------------- /serna/dist/doc/views.ent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/dist/doc/views.ent -------------------------------------------------------------------------------- /serna/dist/plugins/dita-examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /serna/dist/plugins/dita/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /serna/dist/plugins/dita/dialogs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /serna/dist/plugins/dita/dita-ot-settings-dist.ent: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /serna/dist/plugins/dita/ditamap2xhtml.bat: -------------------------------------------------------------------------------- 1 | "%~dp0dita2xhtml.bat" %* 2 | -------------------------------------------------------------------------------- /serna/dist/plugins/dita/ditamap2xhtml.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec `dirname $0`/dita2xhtml.sh "$@" 4 | -------------------------------------------------------------------------------- /serna/dist/plugins/dita/ditatopic2xhtml.bat: -------------------------------------------------------------------------------- 1 | "%~dp0dita2xhtml.bat" %* 2 | -------------------------------------------------------------------------------- /serna/dist/plugins/dita/ditatopic2xhtml.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec `dirname $0`/dita2xhtml.sh "$@" 4 | -------------------------------------------------------------------------------- /serna/dist/plugins/dita/icons/.empty-stub: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /serna/dist/plugins/dita/publishing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /serna/dist/plugins/dita/publishing/dialogs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /serna/dist/plugins/docbook/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /serna/dist/plugins/docbook/publishing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /serna/dist/plugins/idealliance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /serna/dist/plugins/idealliance/publishing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /serna/dist/plugins/linkvoyager/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /serna/dist/plugins/nitf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /serna/dist/plugins/nitf/publishing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /serna/dist/plugins/publishing/dialogs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /serna/dist/plugins/pyplugin-tutorial/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /serna/dist/plugins/resume/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /serna/dist/plugins/resume/publishing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /serna/dist/plugins/syntext/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /serna/dist/plugins/syntext/element-help/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /serna/dist/plugins/syntext/element-help/py/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /serna/dist/plugins/syntext/publishing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /serna/dist/plugins/tei/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /serna/dist/plugins/tei/publishing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /serna/dist/plugins/updateonsave/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /serna/dist/plugins/xhtml/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /serna/dist/plugins/xhtml/publishing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /serna/dist/xml/catalog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/dist/xml/catalog.xml -------------------------------------------------------------------------------- /serna/dist/xml/dtds/.empty-stub: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /serna/dll/Makefile.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/dll/Makefile.pro -------------------------------------------------------------------------------- /serna/dll/bigdll.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/dll/bigdll.def -------------------------------------------------------------------------------- /serna/dll/bigdll.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/dll/bigdll.t -------------------------------------------------------------------------------- /serna/docutils/Makefile.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/docutils/Makefile.pro -------------------------------------------------------------------------------- /serna/docutils/VERSION: -------------------------------------------------------------------------------- 1 | 2.0.0 -------------------------------------------------------------------------------- /serna/docutils/adp2qhp.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/docutils/adp2qhp.xsl -------------------------------------------------------------------------------- /serna/docutils/check_mft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/docutils/check_mft.py -------------------------------------------------------------------------------- /serna/docutils/db-pics.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/docutils/db-pics.t -------------------------------------------------------------------------------- /serna/docutils/db-pics.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/docutils/db-pics.xsl -------------------------------------------------------------------------------- /serna/docutils/dita.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/docutils/dita.t -------------------------------------------------------------------------------- /serna/docutils/doc.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/docutils/doc.t -------------------------------------------------------------------------------- /serna/docutils/doc_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/docutils/doc_defs.h -------------------------------------------------------------------------------- /serna/docutils/docbook.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/docutils/docbook.t -------------------------------------------------------------------------------- /serna/docutils/doctags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/docutils/doctags.h -------------------------------------------------------------------------------- /serna/docutils/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/docutils/index.html -------------------------------------------------------------------------------- /serna/docutils/mk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/docutils/mk/Makefile -------------------------------------------------------------------------------- /serna/docutils/qhc_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/docutils/qhc_list.py -------------------------------------------------------------------------------- /serna/docutils/replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/docutils/replace.py -------------------------------------------------------------------------------- /serna/docutils/sapi.dxg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/docutils/sapi.dxg -------------------------------------------------------------------------------- /serna/docutils/serna.qhcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/docutils/serna.qhcp -------------------------------------------------------------------------------- /serna/docview/Clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/docview/Clipboard.h -------------------------------------------------------------------------------- /serna/docview/DocBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/docview/DocBuilder.h -------------------------------------------------------------------------------- /serna/docview/Finder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/docview/Finder.h -------------------------------------------------------------------------------- /serna/docview/Makefile.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/docview/Makefile.pro -------------------------------------------------------------------------------- /serna/docview/MessageTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/docview/MessageTree.h -------------------------------------------------------------------------------- /serna/docview/MessageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/docview/MessageView.h -------------------------------------------------------------------------------- /serna/docview/SernaDoc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/docview/SernaDoc.h -------------------------------------------------------------------------------- /serna/docview/VERSION: -------------------------------------------------------------------------------- 1 | 2.0.0 2 | -------------------------------------------------------------------------------- /serna/docview/dv_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/docview/dv_defs.h -------------------------------------------------------------------------------- /serna/docview/dv_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/docview/dv_utils.h -------------------------------------------------------------------------------- /serna/genui/Makefile.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/genui/Makefile.pro -------------------------------------------------------------------------------- /serna/genui/genui.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/genui/genui.t -------------------------------------------------------------------------------- /serna/genui/param.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/genui/param.xsl -------------------------------------------------------------------------------- /serna/i18n/Makefile.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/i18n/Makefile.pro -------------------------------------------------------------------------------- /serna/i18n/check_ts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/i18n/check_ts.py -------------------------------------------------------------------------------- /serna/i18n/check_ts.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/i18n/check_ts.xsl -------------------------------------------------------------------------------- /serna/i18n/gentr.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/i18n/gentr.t -------------------------------------------------------------------------------- /serna/i18n/i18n.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/i18n/i18n.t -------------------------------------------------------------------------------- /serna/i18n/make-tr-csl.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/i18n/make-tr-csl.xsl -------------------------------------------------------------------------------- /serna/i18n/make-tr-msg.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/i18n/make-tr-msg.xsl -------------------------------------------------------------------------------- /serna/i18n/make-tr-scc.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/i18n/make-tr-scc.xsl -------------------------------------------------------------------------------- /serna/i18n/make-tr-ui.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/i18n/make-tr-ui.xsl -------------------------------------------------------------------------------- /serna/i18n/msg2cpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/i18n/msg2cpp.py -------------------------------------------------------------------------------- /serna/i18n/ts/qt_cs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/i18n/ts/qt_cs.ts -------------------------------------------------------------------------------- /serna/i18n/ts/serna_cs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/i18n/ts/serna_cs.ts -------------------------------------------------------------------------------- /serna/i18n/ts/serna_de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/i18n/ts/serna_de.ts -------------------------------------------------------------------------------- /serna/i18n/ts/serna_fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/i18n/ts/serna_fr.ts -------------------------------------------------------------------------------- /serna/i18n/ts/serna_ig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/i18n/ts/serna_ig.ts -------------------------------------------------------------------------------- /serna/i18n/ts/serna_it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/i18n/ts/serna_it.ts -------------------------------------------------------------------------------- /serna/i18n/ts/serna_nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/i18n/ts/serna_nl.ts -------------------------------------------------------------------------------- /serna/i18n/ts/serna_ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/i18n/ts/serna_ru.ts -------------------------------------------------------------------------------- /serna/i18n/ts/serna_se.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/i18n/ts/serna_se.ts -------------------------------------------------------------------------------- /serna/icons/ComboBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/ComboBox.png -------------------------------------------------------------------------------- /serna/icons/ContentMap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/ContentMap.png -------------------------------------------------------------------------------- /serna/icons/ContextMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/ContextMenu.png -------------------------------------------------------------------------------- /serna/icons/Label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/Label.png -------------------------------------------------------------------------------- /serna/icons/Label_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/Label_small.png -------------------------------------------------------------------------------- /serna/icons/MainMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/MainMenu.png -------------------------------------------------------------------------------- /serna/icons/MenuButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/MenuButton.png -------------------------------------------------------------------------------- /serna/icons/MenuItem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/MenuItem.png -------------------------------------------------------------------------------- /serna/icons/PopupMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/PopupMenu.png -------------------------------------------------------------------------------- /serna/icons/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/README.txt -------------------------------------------------------------------------------- /serna/icons/RedoMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/RedoMenu.png -------------------------------------------------------------------------------- /serna/icons/SernaAbout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/SernaAbout.png -------------------------------------------------------------------------------- /serna/icons/SernaSplash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/SernaSplash.png -------------------------------------------------------------------------------- /serna/icons/Spacer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/Spacer.png -------------------------------------------------------------------------------- /serna/icons/Splitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/Splitter.png -------------------------------------------------------------------------------- /serna/icons/StatusBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/StatusBar.png -------------------------------------------------------------------------------- /serna/icons/TOC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/TOC.png -------------------------------------------------------------------------------- /serna/icons/TOC_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/TOC_small.png -------------------------------------------------------------------------------- /serna/icons/TabWidget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/TabWidget.png -------------------------------------------------------------------------------- /serna/icons/ToolBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/ToolBar.png -------------------------------------------------------------------------------- /serna/icons/ToolBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/ToolBox.png -------------------------------------------------------------------------------- /serna/icons/ToolButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/ToolButton.png -------------------------------------------------------------------------------- /serna/icons/UndoMenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/UndoMenu.png -------------------------------------------------------------------------------- /serna/icons/Widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/Widget.png -------------------------------------------------------------------------------- /serna/icons/bold.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/bold.xpm -------------------------------------------------------------------------------- /serna/icons/browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/browse.png -------------------------------------------------------------------------------- /serna/icons/browse_dav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/browse_dav.png -------------------------------------------------------------------------------- /serna/icons/collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/collapse.png -------------------------------------------------------------------------------- /serna/icons/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/comment.png -------------------------------------------------------------------------------- /serna/icons/content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/content.png -------------------------------------------------------------------------------- /serna/icons/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/copy.png -------------------------------------------------------------------------------- /serna/icons/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/cut.png -------------------------------------------------------------------------------- /serna/icons/dock_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/dock_bottom.png -------------------------------------------------------------------------------- /serna/icons/dock_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/dock_left.png -------------------------------------------------------------------------------- /serna/icons/dock_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/dock_right.png -------------------------------------------------------------------------------- /serna/icons/dock_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/dock_top.png -------------------------------------------------------------------------------- /serna/icons/document.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/document.png -------------------------------------------------------------------------------- /serna/icons/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/error.png -------------------------------------------------------------------------------- /serna/icons/expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/expand.png -------------------------------------------------------------------------------- /serna/icons/figure.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/figure.xpm -------------------------------------------------------------------------------- /serna/icons/find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/find.png -------------------------------------------------------------------------------- /serna/icons/find_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/find_text.png -------------------------------------------------------------------------------- /serna/icons/formal_para.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/formal_para.xpm -------------------------------------------------------------------------------- /serna/icons/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/help.png -------------------------------------------------------------------------------- /serna/icons/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/info.png -------------------------------------------------------------------------------- /serna/icons/italic.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/italic.xpm -------------------------------------------------------------------------------- /serna/icons/none.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/none.xpm -------------------------------------------------------------------------------- /serna/icons/null.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/null.xpm -------------------------------------------------------------------------------- /serna/icons/page_height.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/page_height.png -------------------------------------------------------------------------------- /serna/icons/page_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/page_mode.png -------------------------------------------------------------------------------- /serna/icons/page_width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/page_width.png -------------------------------------------------------------------------------- /serna/icons/para.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/para.xpm -------------------------------------------------------------------------------- /serna/icons/paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/paste.png -------------------------------------------------------------------------------- /serna/icons/pi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/pi.png -------------------------------------------------------------------------------- /serna/icons/pi_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/pi_disabled.png -------------------------------------------------------------------------------- /serna/icons/publish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/publish.png -------------------------------------------------------------------------------- /serna/icons/publish_ah.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/publish_ah.png -------------------------------------------------------------------------------- /serna/icons/python.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/python.png -------------------------------------------------------------------------------- /serna/icons/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/redo.png -------------------------------------------------------------------------------- /serna/icons/revalidate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/revalidate.png -------------------------------------------------------------------------------- /serna/icons/section.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/section.xpm -------------------------------------------------------------------------------- /serna/icons/serna_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/serna_app.png -------------------------------------------------------------------------------- /serna/icons/spell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/spell.png -------------------------------------------------------------------------------- /serna/icons/sub_section.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/sub_section.xpm -------------------------------------------------------------------------------- /serna/icons/toc_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/toc_icon.png -------------------------------------------------------------------------------- /serna/icons/underline.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/underline.xpm -------------------------------------------------------------------------------- /serna/icons/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/undo.png -------------------------------------------------------------------------------- /serna/icons/undock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/undock.png -------------------------------------------------------------------------------- /serna/icons/url.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/url.xpm -------------------------------------------------------------------------------- /serna/icons/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/warning.png -------------------------------------------------------------------------------- /serna/icons/xinclude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/xinclude.png -------------------------------------------------------------------------------- /serna/icons/zoom_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/zoom_in.png -------------------------------------------------------------------------------- /serna/icons/zoom_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/icons/zoom_out.png -------------------------------------------------------------------------------- /serna/plaineditor/VERSION: -------------------------------------------------------------------------------- 1 | 2.0.0 2 | -------------------------------------------------------------------------------- /serna/plugins/contentmap/VERSION: -------------------------------------------------------------------------------- 1 | 3.0.0 -------------------------------------------------------------------------------- /serna/plugins/customcontent/VERSION: -------------------------------------------------------------------------------- 1 | 3.0.0 -------------------------------------------------------------------------------- /serna/plugins/docinfo/VERSION: -------------------------------------------------------------------------------- 1 | 3.0.0 -------------------------------------------------------------------------------- /serna/plugins/exports.darwin: -------------------------------------------------------------------------------- 1 | _init_serna_plugin 2 | -------------------------------------------------------------------------------- /serna/plugins/hotkeys/VERSION: -------------------------------------------------------------------------------- 1 | 3.0.0 -------------------------------------------------------------------------------- /serna/plugins/linkvoyager/VERSION: -------------------------------------------------------------------------------- 1 | 3.0.0 -------------------------------------------------------------------------------- /serna/plugins/pyconsole/VERSION: -------------------------------------------------------------------------------- 1 | 2.1.0 -------------------------------------------------------------------------------- /serna/plugins/pyplugin/VERSION: -------------------------------------------------------------------------------- 1 | 2.1.0 -------------------------------------------------------------------------------- /serna/plugins/speller/VERSION: -------------------------------------------------------------------------------- 1 | 3.0.0 -------------------------------------------------------------------------------- /serna/plugins/tableplugin/VERSION: -------------------------------------------------------------------------------- 1 | 3.0.0 -------------------------------------------------------------------------------- /serna/plugins/updateonsave/VERSION: -------------------------------------------------------------------------------- 1 | 3.0.0 -------------------------------------------------------------------------------- /serna/plugins/xsltparam/VERSION: -------------------------------------------------------------------------------- 1 | 3.0.0 -------------------------------------------------------------------------------- /serna/pyapi/Makefile.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/pyapi/Makefile.pro -------------------------------------------------------------------------------- /serna/pyapi/VERSION: -------------------------------------------------------------------------------- 1 | 3.0.0 2 | -------------------------------------------------------------------------------- /serna/pyapi/sip.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/pyapi/sip.t -------------------------------------------------------------------------------- /serna/sapi/Makefile.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/sapi/Makefile.pro -------------------------------------------------------------------------------- /serna/sapi/VERSION: -------------------------------------------------------------------------------- 1 | 2.1.0 -------------------------------------------------------------------------------- /serna/sapi/app/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/sapi/app/Config.h -------------------------------------------------------------------------------- /serna/sapi/app/UiItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/sapi/app/UiItem.h -------------------------------------------------------------------------------- /serna/sapi/common/Char.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/sapi/common/Char.h -------------------------------------------------------------------------------- /serna/sapi/common/Url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/sapi/common/Url.h -------------------------------------------------------------------------------- /serna/sapi/grove/Grove.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/sapi/grove/Grove.h -------------------------------------------------------------------------------- /serna/sapi/sapi_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/sapi/sapi_defs.h -------------------------------------------------------------------------------- /serna/sapi/shlib_undef.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/sapi/shlib_undef.t -------------------------------------------------------------------------------- /serna/structeditor/VERSION: -------------------------------------------------------------------------------- 1 | 2.0.0 2 | -------------------------------------------------------------------------------- /serna/utils/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/utils/Config.h -------------------------------------------------------------------------------- /serna/utils/DocSrcInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/utils/DocSrcInfo.h -------------------------------------------------------------------------------- /serna/utils/Makefile.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/utils/Makefile.pro -------------------------------------------------------------------------------- /serna/utils/Properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/utils/Properties.h -------------------------------------------------------------------------------- /serna/utils/VERSION: -------------------------------------------------------------------------------- 1 | 2.0.0 2 | -------------------------------------------------------------------------------- /serna/utils/Version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/utils/Version.h -------------------------------------------------------------------------------- /serna/utils/appver.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/utils/appver.t -------------------------------------------------------------------------------- /serna/utils/env_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/utils/env_utils.h -------------------------------------------------------------------------------- /serna/utils/file_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/utils/file_utils.h -------------------------------------------------------------------------------- /serna/utils/i18n_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/utils/i18n_utils.h -------------------------------------------------------------------------------- /serna/utils/spell/.empty-stub: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /serna/utils/tr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/utils/tr.h -------------------------------------------------------------------------------- /serna/utils/utils_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/serna/utils/utils_defs.h -------------------------------------------------------------------------------- /sfworks/Makefile.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/Makefile.pro -------------------------------------------------------------------------------- /sfworks/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/README -------------------------------------------------------------------------------- /sfworks/catmgr/VERSION: -------------------------------------------------------------------------------- 1 | 1.0.0 2 | 3 | -------------------------------------------------------------------------------- /sfworks/common.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/common.rc -------------------------------------------------------------------------------- /sfworks/common/CDList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/common/CDList.h -------------------------------------------------------------------------------- /sfworks/common/Command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/common/Command.h -------------------------------------------------------------------------------- /sfworks/common/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/common/Debug.h -------------------------------------------------------------------------------- /sfworks/common/Factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/common/Factory.h -------------------------------------------------------------------------------- /sfworks/common/Locked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/common/Locked.h -------------------------------------------------------------------------------- /sfworks/common/Message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/common/Message.h -------------------------------------------------------------------------------- /sfworks/common/OsEnv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/common/OsEnv.h -------------------------------------------------------------------------------- /sfworks/common/PtrBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/common/PtrBase.h -------------------------------------------------------------------------------- /sfworks/common/PtrSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/common/PtrSet.h -------------------------------------------------------------------------------- /sfworks/common/RbTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/common/RbTree.h -------------------------------------------------------------------------------- /sfworks/common/SList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/common/SList.h -------------------------------------------------------------------------------- /sfworks/common/STQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/common/STQueue.h -------------------------------------------------------------------------------- /sfworks/common/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/common/String.h -------------------------------------------------------------------------------- /sfworks/common/Url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/common/Url.h -------------------------------------------------------------------------------- /sfworks/common/VERSION: -------------------------------------------------------------------------------- 1 | # 2 | 1.0.0 3 | -------------------------------------------------------------------------------- /sfworks/common/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/common/Vector.h -------------------------------------------------------------------------------- /sfworks/common/Visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/common/Visitor.h -------------------------------------------------------------------------------- /sfworks/common/XList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/common/XList.h -------------------------------------------------------------------------------- /sfworks/common/asserts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/common/asserts.h -------------------------------------------------------------------------------- /sfworks/common/hex2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/common/hex2c.h -------------------------------------------------------------------------------- /sfworks/common/impl/VERSION: -------------------------------------------------------------------------------- 1 | # 2 | 1.0.0 3 | -------------------------------------------------------------------------------- /sfworks/common/oalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/common/oalloc.h -------------------------------------------------------------------------------- /sfworks/common/prtti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/common/prtti.h -------------------------------------------------------------------------------- /sfworks/common/tests/ccc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/common/tests/ccc -------------------------------------------------------------------------------- /sfworks/common/tests/main/VERSION: -------------------------------------------------------------------------------- 1 | 1.0.0 2 | -------------------------------------------------------------------------------- /sfworks/common/tests/messages/VERSION: -------------------------------------------------------------------------------- 1 | 1.0.0 2 | -------------------------------------------------------------------------------- /sfworks/common/winlean.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/common/winlean.h -------------------------------------------------------------------------------- /sfworks/dav/DavManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/dav/DavManager.h -------------------------------------------------------------------------------- /sfworks/dav/IoStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/dav/IoStream.h -------------------------------------------------------------------------------- /sfworks/dav/Makefile.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/dav/Makefile.pro -------------------------------------------------------------------------------- /sfworks/dav/Protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/dav/Protocol.h -------------------------------------------------------------------------------- /sfworks/dav/Session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/dav/Session.h -------------------------------------------------------------------------------- /sfworks/dav/VERSION: -------------------------------------------------------------------------------- 1 | # 2 | 1.0.0 3 | -------------------------------------------------------------------------------- /sfworks/dav/dav_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/dav/dav_defs.h -------------------------------------------------------------------------------- /sfworks/dav/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/dav/types.h -------------------------------------------------------------------------------- /sfworks/editableview/VERSION: -------------------------------------------------------------------------------- 1 | 1.0.0 -------------------------------------------------------------------------------- /sfworks/formatter/Area.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/formatter/Area.h -------------------------------------------------------------------------------- /sfworks/formatter/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/formatter/Font.h -------------------------------------------------------------------------------- /sfworks/formatter/VERSION: -------------------------------------------------------------------------------- 1 | 1.0.0 -------------------------------------------------------------------------------- /sfworks/formatter/lcount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/formatter/lcount -------------------------------------------------------------------------------- /sfworks/grove/Decls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/grove/Decls.h -------------------------------------------------------------------------------- /sfworks/grove/Grove.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/grove/Grove.h -------------------------------------------------------------------------------- /sfworks/grove/Named.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/grove/Named.h -------------------------------------------------------------------------------- /sfworks/grove/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/grove/Node.h -------------------------------------------------------------------------------- /sfworks/grove/NodeExt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/grove/NodeExt.h -------------------------------------------------------------------------------- /sfworks/grove/Nodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/grove/Nodes.h -------------------------------------------------------------------------------- /sfworks/grove/Origin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/grove/Origin.h -------------------------------------------------------------------------------- /sfworks/grove/VERSION: -------------------------------------------------------------------------------- 1 | # 2 | 1.0.0 3 | -------------------------------------------------------------------------------- /sfworks/grove/XNodePtr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/grove/XNodePtr.h -------------------------------------------------------------------------------- /sfworks/grove/XmlName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/grove/XmlName.h -------------------------------------------------------------------------------- /sfworks/grove/XmlNs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/grove/XmlNs.h -------------------------------------------------------------------------------- /sfworks/grove/grove.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/grove/grove.dox -------------------------------------------------------------------------------- /sfworks/grove/udata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/grove/udata.h -------------------------------------------------------------------------------- /sfworks/grove/xinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/grove/xinclude.h -------------------------------------------------------------------------------- /sfworks/groveeditor/VERSION: -------------------------------------------------------------------------------- 1 | 1.0.1 2 | -------------------------------------------------------------------------------- /sfworks/proputils/VERSION: -------------------------------------------------------------------------------- 1 | # 2 | 1.0.0 -------------------------------------------------------------------------------- /sfworks/sceneareaset/VERSION: -------------------------------------------------------------------------------- 1 | 1.0.0 -------------------------------------------------------------------------------- /sfworks/spgrovebuilder/VERSION: -------------------------------------------------------------------------------- 1 | 1.0.0 2 | -------------------------------------------------------------------------------- /sfworks/ui/ActionSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/ui/ActionSet.h -------------------------------------------------------------------------------- /sfworks/ui/LiquidItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/ui/LiquidItem.h -------------------------------------------------------------------------------- /sfworks/ui/MainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/ui/MainWindow.h -------------------------------------------------------------------------------- /sfworks/ui/Makefile.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/ui/Makefile.pro -------------------------------------------------------------------------------- /sfworks/ui/MimeHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/ui/MimeHandler.h -------------------------------------------------------------------------------- /sfworks/ui/PixmapCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/ui/PixmapCache.h -------------------------------------------------------------------------------- /sfworks/ui/QtGridView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/ui/QtGridView.h -------------------------------------------------------------------------------- /sfworks/ui/TreeModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/ui/TreeModel.h -------------------------------------------------------------------------------- /sfworks/ui/UiAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/ui/UiAction.h -------------------------------------------------------------------------------- /sfworks/ui/UiDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/ui/UiDocument.h -------------------------------------------------------------------------------- /sfworks/ui/UiException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/ui/UiException.h -------------------------------------------------------------------------------- /sfworks/ui/UiItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/ui/UiItem.h -------------------------------------------------------------------------------- /sfworks/ui/UiItems.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/ui/UiItems.h -------------------------------------------------------------------------------- /sfworks/ui/UiProps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/ui/UiProps.h -------------------------------------------------------------------------------- /sfworks/ui/UiStackItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/ui/UiStackItem.h -------------------------------------------------------------------------------- /sfworks/ui/VERSION: -------------------------------------------------------------------------------- 1 | # 2 | 1.0.0 3 | -------------------------------------------------------------------------------- /sfworks/ui/add_files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/ui/add_files -------------------------------------------------------------------------------- /sfworks/ui/common_xpms.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/ui/common_xpms.i -------------------------------------------------------------------------------- /sfworks/ui/lcount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/ui/lcount -------------------------------------------------------------------------------- /sfworks/ui/prop_locker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/ui/prop_locker.h -------------------------------------------------------------------------------- /sfworks/ui/ui.dxg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/ui/ui.dxg -------------------------------------------------------------------------------- /sfworks/ui/ui_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/ui/ui_defs.h -------------------------------------------------------------------------------- /sfworks/urimgr/VERSION: -------------------------------------------------------------------------------- 1 | # 2 | 1.0.0 3 | -------------------------------------------------------------------------------- /sfworks/xpath/Engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xpath/Engine.h -------------------------------------------------------------------------------- /sfworks/xpath/Expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xpath/Expr.h -------------------------------------------------------------------------------- /sfworks/xpath/NodeSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xpath/NodeSet.h -------------------------------------------------------------------------------- /sfworks/xpath/VERSION: -------------------------------------------------------------------------------- 1 | 1.0.0 -------------------------------------------------------------------------------- /sfworks/xpath/Value.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xpath/Value.h -------------------------------------------------------------------------------- /sfworks/xpath/impl3/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xpath/impl3/TODO -------------------------------------------------------------------------------- /sfworks/xpath/impl3/VERSION: -------------------------------------------------------------------------------- 1 | 1.0.0 -------------------------------------------------------------------------------- /sfworks/xs/Appinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xs/Appinfo.h -------------------------------------------------------------------------------- /sfworks/xs/Component.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xs/Component.cxx -------------------------------------------------------------------------------- /sfworks/xs/Component.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xs/Component.h -------------------------------------------------------------------------------- /sfworks/xs/EnumFetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xs/EnumFetcher.h -------------------------------------------------------------------------------- /sfworks/xs/ImportMap.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xs/ImportMap.cxx -------------------------------------------------------------------------------- /sfworks/xs/ImportMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xs/ImportMap.h -------------------------------------------------------------------------------- /sfworks/xs/Makefile.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xs/Makefile.pro -------------------------------------------------------------------------------- /sfworks/xs/NcnCred.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xs/NcnCred.cxx -------------------------------------------------------------------------------- /sfworks/xs/NcnCred.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xs/NcnCred.h -------------------------------------------------------------------------------- /sfworks/xs/Origin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xs/Origin.h -------------------------------------------------------------------------------- /sfworks/xs/Piece.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xs/Piece.cxx -------------------------------------------------------------------------------- /sfworks/xs/Piece.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xs/Piece.h -------------------------------------------------------------------------------- /sfworks/xs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xs/README -------------------------------------------------------------------------------- /sfworks/xs/Schema.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xs/Schema.cxx -------------------------------------------------------------------------------- /sfworks/xs/Schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xs/Schema.h -------------------------------------------------------------------------------- /sfworks/xs/VERSION: -------------------------------------------------------------------------------- 1 | # 2 | 1.0.1 3 | -------------------------------------------------------------------------------- /sfworks/xs/XsAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xs/XsAttribute.h -------------------------------------------------------------------------------- /sfworks/xs/XsData.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xs/XsData.cxx -------------------------------------------------------------------------------- /sfworks/xs/XsData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xs/XsData.h -------------------------------------------------------------------------------- /sfworks/xs/XsDataImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xs/XsDataImpl.h -------------------------------------------------------------------------------- /sfworks/xs/XsElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xs/XsElement.h -------------------------------------------------------------------------------- /sfworks/xs/XsEnumList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xs/XsEnumList.h -------------------------------------------------------------------------------- /sfworks/xs/XsGroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xs/XsGroup.h -------------------------------------------------------------------------------- /sfworks/xs/XsId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xs/XsId.h -------------------------------------------------------------------------------- /sfworks/xs/XsIdTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xs/XsIdTable.h -------------------------------------------------------------------------------- /sfworks/xs/XsNodeExt.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xs/XsNodeExt.cxx -------------------------------------------------------------------------------- /sfworks/xs/XsNodeExt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xs/XsNodeExt.h -------------------------------------------------------------------------------- /sfworks/xs/XsNotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xs/XsNotation.h -------------------------------------------------------------------------------- /sfworks/xs/XsSchema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xs/XsSchema.h -------------------------------------------------------------------------------- /sfworks/xs/XsType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xs/XsType.h -------------------------------------------------------------------------------- /sfworks/xs/antlr.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xs/antlr.t -------------------------------------------------------------------------------- /sfworks/xs/debug.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xs/debug.cxx -------------------------------------------------------------------------------- /sfworks/xs/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xs/debug.h -------------------------------------------------------------------------------- /sfworks/xs/genmsg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xs/genmsg -------------------------------------------------------------------------------- /sfworks/xs/node.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xs/node.pro -------------------------------------------------------------------------------- /sfworks/xs/testgrove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xs/testgrove -------------------------------------------------------------------------------- /sfworks/xs/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xs/version.h -------------------------------------------------------------------------------- /sfworks/xs/xs_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xs/xs_defs.h -------------------------------------------------------------------------------- /sfworks/xslt/Engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xslt/Engine.h -------------------------------------------------------------------------------- /sfworks/xslt/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xslt/Exception.h -------------------------------------------------------------------------------- /sfworks/xslt/Result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xslt/Result.h -------------------------------------------------------------------------------- /sfworks/xslt/VERSION: -------------------------------------------------------------------------------- 1 | 1.0.0 -------------------------------------------------------------------------------- /sfworks/xslt/impl/VERSION: -------------------------------------------------------------------------------- 1 | 1.0.0 -------------------------------------------------------------------------------- /sfworks/xslt/xslt_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/sfworks/xslt/xslt_defs.h -------------------------------------------------------------------------------- /tools/boostbook/fo.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/tools/boostbook/fo.xsl -------------------------------------------------------------------------------- /tools/boostbook/html.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/tools/boostbook/html.xsl -------------------------------------------------------------------------------- /tools/boostbook/type.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/tools/boostbook/type.xsl -------------------------------------------------------------------------------- /tools/boostbook/xref.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/tools/boostbook/xref.xsl -------------------------------------------------------------------------------- /tools/buildsys/3rd.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/tools/buildsys/3rd.t -------------------------------------------------------------------------------- /tools/buildsys/3rd/configure-subdirs.t: -------------------------------------------------------------------------------- 1 | #${ 2 | #$} 3 | -------------------------------------------------------------------------------- /tools/buildsys/3rd/make-subdirs.t: -------------------------------------------------------------------------------- 1 | #${ 2 | #$} 3 | -------------------------------------------------------------------------------- /tools/buildsys/appver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/tools/buildsys/appver.py -------------------------------------------------------------------------------- /tools/buildsys/clean.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/tools/buildsys/clean.t -------------------------------------------------------------------------------- /tools/buildsys/config.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/tools/buildsys/config.t -------------------------------------------------------------------------------- /tools/buildsys/destdir.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/tools/buildsys/destdir.t -------------------------------------------------------------------------------- /tools/buildsys/dirs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/tools/buildsys/dirs.t -------------------------------------------------------------------------------- /tools/buildsys/dist.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/tools/buildsys/dist.t -------------------------------------------------------------------------------- /tools/buildsys/genlist.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/tools/buildsys/genlist.t -------------------------------------------------------------------------------- /tools/buildsys/incpath.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/tools/buildsys/incpath.t -------------------------------------------------------------------------------- /tools/buildsys/install.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/tools/buildsys/install.t -------------------------------------------------------------------------------- /tools/buildsys/java.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/tools/buildsys/java.t -------------------------------------------------------------------------------- /tools/buildsys/main.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/tools/buildsys/main.t -------------------------------------------------------------------------------- /tools/buildsys/options.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/tools/buildsys/options.t -------------------------------------------------------------------------------- /tools/buildsys/qrc.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/tools/buildsys/qrc.t -------------------------------------------------------------------------------- /tools/buildsys/serna.t: -------------------------------------------------------------------------------- 1 | #$ IncludeTemplate( "main"); 2 | -------------------------------------------------------------------------------- /tools/buildsys/target.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/tools/buildsys/target.t -------------------------------------------------------------------------------- /tools/buildsys/test.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/tools/buildsys/test.t -------------------------------------------------------------------------------- /tools/buildsys/unix.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/tools/buildsys/unix.t -------------------------------------------------------------------------------- /tools/buildsys/utils-darwin.t: -------------------------------------------------------------------------------- 1 | #$ IncludeTemplate("utils-unix.t"); 2 | 3 | -------------------------------------------------------------------------------- /tools/buildsys/utils-freebsd.t: -------------------------------------------------------------------------------- 1 | #$ IncludeTemplate("utils-unix.t"); 2 | 3 | -------------------------------------------------------------------------------- /tools/buildsys/utils-linux.t: -------------------------------------------------------------------------------- 1 | #$ IncludeTemplate("utils-unix.t"); 2 | -------------------------------------------------------------------------------- /tools/buildsys/utils-sunos.t: -------------------------------------------------------------------------------- 1 | #$ IncludeTemplate("utils-unix.t"); 2 | 3 | -------------------------------------------------------------------------------- /tools/buildsys/utils.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/tools/buildsys/utils.t -------------------------------------------------------------------------------- /tools/buildsys/version.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/tools/buildsys/version.t -------------------------------------------------------------------------------- /tools/buildsys/win32.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/tools/buildsys/win32.t -------------------------------------------------------------------------------- /tools/msggen/msg2xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/tools/msggen/msg2xml.py -------------------------------------------------------------------------------- /tools/msggen/msggen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/tools/msggen/msggen.py -------------------------------------------------------------------------------- /tools/packager/manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/tools/packager/manifest -------------------------------------------------------------------------------- /tools/packager/pack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/tools/packager/pack.py -------------------------------------------------------------------------------- /win32env.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ydirson/serna-free/HEAD/win32env.bat --------------------------------------------------------------------------------