Skip to content

NEXSTEP/delphi-xmldoc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

delphi-xmldoc

Generate html documentation from Delphi xml documentation

Credits

Requirements

Requires installed third-party XSLT2 processor: AltovaXML Community Edition http://www.altova.com/download/altovaxml/xml-processor-community.html

USAGE

  • Make flat copy of all files generated by delphi into one directory

  • Create xml file containing list of projects and place it into dir with xml's.

  • Run script :)

      cscript.exe start.js PROJECTS_FILE DESTHTMLPATH
    
  • PROJECTS_FILE - path to xmlfile containing list of projects.

  • DESTHTMLPATH - path where will be placed generated html's

Examples

XML with projects

<projects>
    <project name="Project1" />
    <project name="Project2" />
</projects>

cmd file for launch processing

@echo off

rem make flat copy of files
for /r "%WORKSPACE%\Sources" %%f in (*.xml) do @copy "%%f" ".\xml\"

rem Launch html generation...
cscript.exe start.js .\xml\projects.xml .\html

About

Generate html documentation from Delphi xml documentation

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published