Section | Description, Use |
/FOLDER_HREF_APPEND | Text is appended to folder HREF links (e.g. target="frame2" )
Example: <a href="folder_link" target="frame2">folder_link</a> |
/FILE_HREF_APPEND | Text is appended to file HREF links (e.g. target="_new" )
Example: <a href="file.html" target="_new">file.html</a> Note: %%F will insert the current filename in the append text (for example: title="%%F" would become
<a href="file.html" title="file.html">file.html</a>) |
/PRE_HREF_FILE | Text is added before the opening file <a>
(e.g. Here is the filename: %%F ) |
/POST_HREF_FILE | Text is added after the closing file link HREF </a>, but
before the </td>
(e.g. Here is the filename: %%F ) |
/PRE_FNAME_FILE | Text is added before visible file links, after the href >
Example: given "{inserted} " as /PRE_FNAME_FILE, links will
look like: <a href="file.doc">{inserted} file.doc</a> |
/POST_FNAME_FILE | Text is added after visible file links, before the </a>
Example: given " {inserted}" as /POST_FNAME_FILE, links will
look like: <a href="file.doc">file.doc {inserted}</a> |
/PRE_HREF_FOLDER | Text is added before the opening folder <a> |
/POST_HREF_FOLDER | Text is added after the closing folder link HREF </a>, but before the </td> |
/PRE_FNAME_FOLDER | Text is added before folder links, after the href="..."> |
/POST_FNAME_FOLDER | Text is added after visible folder links, before the </a> |
/FILE_PREFIX | Text is added before file links
(e.g. some_folder/ )
Example: given a script with... /FOLDER_PREFIX
... links will look like this: <a href="ftp://mydomain.com/file.html">file.html</a> Note: Text must end with a trailing slash to be functional (e.g. "mydomain.com/", not "mydomain.com"). Note: If /FILE_PREFIX is defined, any /FOLDER_PREFIX is ignored for file links. |
/FOLDER_PREFIX | Text is added before folder and file links (see /FILE_PREFIX) |