Documentation for de.enache.AutoDoc.Plugin.SAS_EG plugin, Version 1.1
(c) 2019 by Daniel Enache

Description:

This plugin implements processing of SAS Enterprise Guide Project files
with file extension "egp".

The plugin first extracts all SAS code found in the EGP file into a
temporary directory with the same name as the file but without the
extension ".egp".

For example, if the file is located in "C:\Temp\Test.egp", the temporary
directory for the processing is "C:\Temp\Test". If this directory already 
exists and is not empty, AutoDoc is ended with an error message.

After all of the code in the EGP file has been processed by AutoDoc, the
temporary directory is deleted again.



Installation:

If not already installed, copy the whole plugin directory to the folder
"plugins" in the AutoDoc installation directory. The resulting structure
should look like this:

{AutoDoc-Dir}/
    plugins/
        de.enache.AutoDoc.Plugin.SAS_EG/
            de.enache.AutoDoc.Plugin.SAS_EG.jar        (The plugin itself)
            de.enache.AutoDoc.Plugin.SAS_EG.plug_ini   (The plugin's parameter file)
            Dokumentation.txt                          (The plugin's documentation)
            LICENCE_GPL_V_3_0.txt                      (The plugin's licence)


Parameters:

The output generated can be customized with two parameters. The parameters can be set
in the text file "de.enache.AutoDoc.Plugin.SAS_EG.plug_ini" found the plugin's directory.

NameFormat  Sets the output format for Names. Currently only "Last, First", "Last First", "First Last",
            "Last", "First" are supported. The current default is "First Last".

DateFormat  Sets the output format of dates using format entities described below. The current default 
            is "dd.MM.yyyy".
            
The date format consists of letters, representing date parts and delimiters. The available
letters for the date parts are as follows:

 Letter  Component              Examples
 -----------------------------------------------------------------------
 G       Era designator         AD  
 y       Year                   1996; 96  
 M       Month in year          July; Jul; 07  
 w       Week in year           27  
 W       Week in month          2  
 D       Day in year            189  
 d       Day in month           10  
 F       Day of week in month   2  
 E       Day in week            Tuesday; Tue  
 a       Am/pm marker           PM  
 H       Hour in day (0-23)     0  
 k       Hour in day (1-24)     24  
 K       Hour in am/pm (0-11)   0  
 h       Hour in am/pm (1-12)   12  
 m       Minute in hour         30  
 s       Second in minute       55  
 S       Millisecond            978  
 z       Time zone general      Pacific Standard Time; PST; GMT-08:00  
 Z       Time zone RFC 822      -0800  

For example for January 31st 1999 the format "EEE yyyy-MM-dd" gives the result "Sun 1999-01-31".


If you encounter problems, contact AutoDoc@Enache.de.




