Init funcs="shtml_init,shtml_send" shlib="/bin/https/bin/ Shtml.dll" NativeThreads="no" fn="load-modules"
Init LateInit = "yes" fn="shtml_init"
parse-html.
The server replaces each command with data determined by the command and its attributes.
The format for a command is:
<!--#command attribute1 attribute2 ... -->The format for each
attribute is a name-value pair such as:
name="value"
Commands and attribute names should be in lower case.
The commands are "hidden" within HTML comments so they are ignored if not parsed by the server.The standard server-side commands are:
config command initializes the format for other commands.
errmsg attribute defines a message sent to the client when an error occurs while parsing the file. This error is also logged in the error log file.timefmt attribute determines the format of the date for the flastmod command. It uses the same format characters as the util_strftime() function. The default time format is: "%A, %d-%b-%y %T".http://developer.netscape.com/docs/manuals/enterprise/4.0/nsapi/index.htm<!--#config timefmt="%r %a %b %e, %Y" sizefmt="abbrev"-->This sets the date format to a value such as 08:23:15 AM Wed Apr 15, 1996, and the file size format to the number of KB or MB of characters used by the file.
include command inserts a file into the parsed file (it can't be a CGI program). You can nest files by including another parsed file, which then includes another file, and so on. The client requesting the parsed document must also have access to the included file if your server uses access control for the directories where they reside.
virtual attribute is the URI of a file on the server.file attribute is a relative path name from the current directory. It may not contain elements such as ../ and it may not be an absolute path.<!--#include file="bottle.gif"-->
echo command inserts the value of an environment variable. The var attribute specifies the environment variable to insert. If the variable is not found, "(none)" is inserted. For a list of environment variables, see the section "Environment Variables in Server-Side HTML Commands."
Example<!--#echo var="DATE_GMT"-->
fsize command sends the size of a file. The attributes are the same as those for the include command (virtual and file). The file size format is determined by the sizefmt attribute in the config command.
Example<!--#fsize file="bottle.gif"-->
flastmod command prints the date a file was last modified. The attributes are the same as those for the include command (virtual and file). The date format is determined by the timefmt attribute in the config command.
Example<!--#flastmod file="bottle.gif"-->
exec command runs a shell command or CGI program.
cmd attribute (Unix only) runs a command using /bin/sh. You may include any special environment variables in the command.cgi attribute runs a CGI program and includes its output in the parsed file.<!--#exec cgi="workit.pl"-->
/shtml/test.shtml)..shtml files in Enterprise Server 4.0 has been substantially improved over previous releases of Enterprise Server. First, the performance of handling server-side tags has been significantly speeded up. Secondly, users can now define their own server-side tags.
For example, you could define the tag <PRICE> to invokes a function that calculates and displays the price of a product. Then in your .shtml file you could have code such as:
<H2>Product Prices</H2>When the browser displays this code, each occurrence of the
<UL>
<LI>Oak Table: <PRICE product="oaktable">
<LI>Pine Bench: <PRICE product="pinebench">
<LI>Patio Chair: <PRICE product="patiochair">
</UL>
<PRICE> tag calls the function that is associated with that tag, and returns the price of the relevant product. The result in the browser might look like:
You must define the tag execution function, and you can optionally also define other functions that are called on tag loading and unloading and on page loading and unloading.
Write an initialization function that registers the tag using the
shtml_add_tag function.
shtml_public.h, which is in the directory install_dir/plugins/include/shtml. shtml shared library. On Windows NT, shtml.dll is in install_dir/bin/https/bin. On Unix platforms, libshtml.so or .sl is in install_dir/bin/https/lib.ShtmlTagExecuteFunc is the actual tag handler. It gets called with the usual NSAPI pblock, Session and Request variables. In addition, it also gets passed the TagUserData created from the result of executing the tag loading and page loading functions (if defined) for that tag.
The signature for the tag execution function is:
typedef int (*ShtmlTagExecuteFunc)(Write the body of the tag execution function to generate the output to replace the tag in the
pblock*, Session*, Request*, TagUserData, TagUserData);
.shtml page. Do this in the usual NSAPI way, using the net_write() NSAPI function, which writes a specified number of bytes to a specified socket from a specified buffer.
For more information about writing NSAPI plugins see Chapter 4, "Writing Custom SAFs" in the NSAPI Programmer's Guide at:
http://developer.netscape.com/docs/manuals/enterprise/nsapi/4.0/index.htmFor more information about
net_write() and other NSAPI functions, see Chapter 5, "NSAPI Function Reference" of the NSAPI Programmer's Guide.
The tag execution function must return an int that indicates whether the server should proceed to the next instruction in obj.conf or not, which is one of:
REQ_PROCEED -- the execution was successful.REQ_NOACTION -- nothing happened.REQ_ABORTED -- an error occurred. REQ_EXIT -- the connection was lost.ShtmlTagExecuteFunc whenever the execution function is called. ShtmlTagInstanceLoad function. It gets passed the result that was originally returned from the ShtmlTagInstanceLoad function.ShtmlTagPageLoadFunc and hence gets passed the result returned from the ShtmlTagPageLoadFunc. #define TagUserData void*
typedef TagUserData (*ShtmlTagInstanceLoad)(
const char* tag, pblock*, const char*, size_t);
typedef void (*ShtmlTagInstanceUnload)(TagUserData);
typedef int (*ShtmlTagExecuteFunc)(
pblock*, Session*, Request*, TagUserData, TagUserData);
typedef TagUserData (*ShtmlTagPageLoadFunc)(
pblock* pb, Session*, Request*);
typedef void (*ShtmlTagPageUnLoadFunc)(TagUserData);
shtml_add_tag(). The signature is:
NSAPI_PUBLIC int shtml_add_tag (Any of these arguments can be
const char* tag,
ShtmlTagInstanceLoad ctor,
ShtmlTagInstanceUnload dtor,
ShtmlTagExecuteFunc execFn,
ShtmlTagPageLoadFunc pageLoadFn,
ShtmlTagPageUnLoadFunc pageUnLoadFn);
NULL except for the tag and execFn.
obj.conf:
Init directive whose fn parameter is load-modules and whose shlib parameter is the shared library to load. This directive must have native threads turned off. You could use a directive similar to this:Init funcs="shtml_init,shtml_send" shlib="<install_dir>/bin/https/bin/Shtml.dll" NativeThreads="no" fn="load-modules"
LateInit for shtml_init:Init LateInit = "yes" fn="shtml_init"
Init directive whose fn parameter is the initialization function in the shared library that uses shtml_add_tag() to register the tag.Last Updated: 08/12/99 12:35:17
Copyright ©1999 Netscape Communications Corp. All rights reserved.