[docs] xmldocs - docelic modified 57 files

docs at icdevgroup.org docs at icdevgroup.org
Wed Dec 15 09:24:02 EST 2004


User:      docelic
Date:      2004-12-15 14:24:02 GMT
Modified:  bin      generic-autogen
Modified:  glossary ActionMap CATROOT CSS CyberCash DOCROOT
Modified:           DocumentRoot GET HTML ICROOT ITL MIME OS SKU SMTP
Modified:           SQL UserDB ad anchor array balloon catalog cgi-var
Modified:           configuration deref epoch false filter form-action
Modified:           hash hello-world ic-run-mode img interpolate
Modified:           interval jobs js link link-program locale mode
Modified:           namespace pragma reparse rotated-banner salt
Modified:           scratch session static tab-delimited tarball
Modified:           tracking true umask value weighted
Removed:   glossary WWWROOT
Log:
I am wonderful! ;-)

Switch to extremely lightweight syntax for glossary elements, which
(besides cutting down the ammount of repeating XML text we'd have to
maintain), also allows us to include those glossary elements in-place
in other elements. (since they are now disassociated from the glossary context).

Changes made include very simple support for this in bin/generic-autogen,
and appropriate reduction in size on all glossary/* elements.

Minor fixes are done to some of the glossary elements as well, and WWWROOT
entry is deleted (it's windows-ism and I don't want that).

This might have as a consequence that *some* of glossary links temporarily
produce warnings (because the glossary filename was different than the
glossary id="" which we now auto-generate), but this doesn't break the
build process and will be fixed as less primary objective.

Revision  Changes    Path
1.9       +37 -1     xmldocs/bin/generic-autogen


rev 1.9, prev_rev 1.8
Index: generic-autogen
===================================================================
RCS file: /var/cvs/xmldocs/bin/generic-autogen,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- generic-autogen	22 Nov 2004 22:26:11 -0000	1.8
+++ generic-autogen	15 Dec 2004 14:24:00 -0000	1.9
@@ -23,6 +23,17 @@
 	howtos => "HOW-TO",
 );
 
+my %header = ( # item head
+	glossary => "<glossentry id=\"\$file\">
+<glossterm>\$file</glossterm>
+
+<glossdef><para>
+",
+);
+my %footer = ( # item tail
+	glossary => "\n</para>\n</glossdef>\n</glossentry>",
+);
+
 # HEAD
 my $glossary = <<__ENDP__;
 <?xml version="1.0" standalone="no"?>
@@ -84,10 +95,11 @@
 opendir DIR, $cat or die "Can't open $cat/ ($!)\n";
 readdir DIR; readdir DIR;
 
+# Read all elements from a directory
 while ( my $file = readdir DIR ) {
 	next if $file =~ /^\.|^CVS|\.xml$/;
 	open IN, "< $cat/$file" or die "Can't read-open $cat/$file ($!)\n";
-	$items{$file} = [ <IN> ];
+	$items{$file} = [ prefix($cat, $file), <IN>, suffix($cat, $file) ];
 	$alphabet{ lc(substr($file, 0, 1)) }++;
 	push @loaded, $file;
 
@@ -140,3 +152,27 @@
 print OUT $document;
 close OUT or warn "Cant close $cat/$cat.xml ($!)\n";
 
+exit 0;
+
+################################################################
+# Helpers below
+
+sub prefix {
+	my ($cat, $file) = @_;
+	if ( $header{$cat} ) {
+		my $tmp = $header{$cat};
+		$tmp =~ s/(\$\w+)/$1/gee;
+		return $tmp;
+	}
+	""
+}
+
+sub suffix {
+	my ($cat, $file) = @_;
+	if ( $footer{$cat} ) {
+		my $tmp = $footer{$cat};
+		$tmp =~ s/(\$\w+)/$1/gee;
+		return $tmp;
+	}
+	""
+}



1.3       +0 -13     xmldocs/glossary/ActionMap


rev 1.3, prev_rev 1.2
Index: ActionMap
===================================================================
RCS file: /var/cvs/xmldocs/glossary/ActionMap,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ActionMap	8 Dec 2004 12:39:58 -0000	1.2
+++ ActionMap	15 Dec 2004 14:24:00 -0000	1.3
@@ -1,14 +1 @@
-
-<glossentry id="ActionMap">
-<glossterm>ActionMap</glossterm>
-
-<glossdef>
-<para>
 The standard process action has a number of associated FormAction settings. Besides using Perl, Interchange tags may be used in an action, though they are not nearly as efficient.
-
-</para>
-
-</glossdef>
-
-</glossentry>
-



1.2       +0 -13     xmldocs/glossary/CATROOT


<<CATROOT: empty>>


1.3       +0 -11     xmldocs/glossary/CSS


rev 1.3, prev_rev 1.2
Index: CSS
===================================================================
RCS file: /var/cvs/xmldocs/glossary/CSS,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- CSS	25 Nov 2004 15:30:03 -0000	1.2
+++ CSS	15 Dec 2004 14:24:00 -0000	1.3
@@ -1,13 +1,2 @@
-
-<glossentry id="CSS">
-<glossterm>CSS</glossterm>
-<glossterm>Cascading Style Sheets</glossterm>
-
-<glossdef>
-<para>
 <ulink url='http://www.w3.org/Style/CSS/'>CSS</ulink> resource
 at &W3C;.
-</para>
-</glossdef>
-
-</glossentry>



1.2       +0 -12     xmldocs/glossary/CyberCash


<<CyberCash: empty>>


1.2       +0 -13     xmldocs/glossary/DOCROOT


<<DOCROOT: empty>>


1.2       +0 -13     xmldocs/glossary/DocumentRoot


<<DocumentRoot: empty>>


1.2       +0 -12     xmldocs/glossary/GET


rev 1.2, prev_rev 1.1
Index: GET
===================================================================
RCS file: /var/cvs/xmldocs/glossary/GET,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- GET	9 Nov 2004 22:02:01 -0000	1.1
+++ GET	15 Dec 2004 14:24:00 -0000	1.2
@@ -1,18 +1,6 @@
-
-<glossentry id="GET">
-<glossterm>GET</glossterm>
-<glossterm>GET Form Method</glossterm>
-
-<glossdef>
-<para>
 "GET" resource at 
 <ulink url="http://www.cs.tut.fi/~jkorpela/forms/methods.html">Yukka
 Korpela's</ulink> website and
 <ulink url="http://www.faqs.org/docs/htmltut/forms/_FORM_METHOD_GET.html">
 faqs.org</ulink>.
-</para>
-
-</glossdef>
-
-</glossentry>
 



1.3       +0 -11     xmldocs/glossary/HTML


rev 1.3, prev_rev 1.2
Index: HTML
===================================================================
RCS file: /var/cvs/xmldocs/glossary/HTML,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- HTML	28 Nov 2004 23:04:07 -0000	1.2
+++ HTML	15 Dec 2004 14:24:00 -0000	1.3
@@ -1,12 +1 @@
-
-<glossentry id="HTML">
-<glossterm>HTML</glossterm>
-<glossterm>HyperText Markup Language</glossterm>
-
-<glossdef>
-<para>
 <ulink url='http://www.w3.org/MarkUp/'>HTML</ulink> resource at &W3C;.
-</para>
-</glossdef>
-
-</glossentry>



1.2       +0 -13     xmldocs/glossary/ICROOT


<<ICROOT: empty>>


1.3       +0 -13     xmldocs/glossary/ITL


rev 1.3, prev_rev 1.2
Index: ITL
===================================================================
RCS file: /var/cvs/xmldocs/glossary/ITL,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ITL	15 Dec 2004 13:34:34 -0000	1.2
+++ ITL	15 Dec 2004 14:24:00 -0000	1.3
@@ -1,10 +1,3 @@
-
-<glossentry id="ITL">
-<glossterm>ITL</glossterm>
-<glossterm>Interchange Tag Language</glossterm>
-
-<glossdef>
-<para>
 &IC; functions can be accessed via the Interchange Tag Language (&glos-ITL;).
 The pages in a catalog may be mostly &glos-HTML;, but they will use ITL tags
 to provide dynamic content and access Interchange functions in general.
@@ -654,12 +647,6 @@
     { foo => 'fooN', bar => 'barN' },
 ]
 </programlisting>
-
-</para>
-
-</glossdef>
-
-</glossentry>
 
 <!-- TODO put somewhere
 PREFIX-field"]PREFIX-field (Optimization note- one query per field if you use this; we optimize around this if only one products table) 



1.2       +0 -12     xmldocs/glossary/MIME


rev 1.2, prev_rev 1.1
Index: MIME
===================================================================
RCS file: /var/cvs/xmldocs/glossary/MIME,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- MIME	9 Nov 2004 22:02:01 -0000	1.1
+++ MIME	15 Dec 2004 14:24:00 -0000	1.2
@@ -1,13 +1 @@
-
-<glossentry id="MIME">
-<acronym>MIME</acronym>
-<glossterm>Multipurpose Internet Mail Extensions</glossterm>
-
-<glossdef>
-<para>
 <ulink url='http://www.mhonarc.org/~ehood/MIME/'>MIME</ulink> resource.
-</para>
-</glossdef>
-
-</glossentry>
-



1.2       +0 -13     xmldocs/glossary/OS


<<OS: empty>>


1.2       +0 -13     xmldocs/glossary/SKU


<<SKU: empty>>


1.2       +0 -12     xmldocs/glossary/SMTP


rev 1.2, prev_rev 1.1
Index: SMTP
===================================================================
RCS file: /var/cvs/xmldocs/glossary/SMTP,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- SMTP	9 Nov 2004 22:02:01 -0000	1.1
+++ SMTP	15 Dec 2004 14:24:00 -0000	1.2
@@ -1,16 +1,4 @@
-
-<glossentry id="SMTP">
-<acronym>SMTP</acronym>
-<glossterm>Simple Mail Transfer Protocol</glossterm>
-
-<glossdef>
-<para>
 <ulink url='http://cr.yp.to/smtp.html'>SMTP</ulink> resource.
 </para>
 <para>
 <classname>Net::SMTP</classname> <ulink url="http://search.cpan.org/~gbarr/">Perl module</ulink> (follow the "libnet" link).
-</para>
-</glossdef>
-
-</glossentry>
-



1.2       +0 -13     xmldocs/glossary/SQL


<<SQL: empty>>


1.2       +0 -12     xmldocs/glossary/UserDB


<<UserDB: empty>>


1.4       +0 -13     xmldocs/glossary/ad


rev 1.4, prev_rev 1.3
Index: ad
===================================================================
RCS file: /var/cvs/xmldocs/glossary/ad,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ad	9 Nov 2004 23:16:16 -0000	1.3
+++ ad	15 Dec 2004 14:24:00 -0000	1.4
@@ -1,10 +1,3 @@
-
-<glossentry id="ad">
-<glossterm>Ad</glossterm>
-<glossterm>Banner Ad</glossterm>
-
-<glossdef>
-<para>
 A rectangular graphic image which is included on a content page for
 advertising and promotional purposes.
 </para><para>
@@ -72,9 +65,3 @@
 You can see the above dimensions in practice at 
 <ulink url="http://www.motive.co.nz/glossary/bannerads.html">
 MOTIVE Resources</ulink>.
-</para>
-
-</glossdef>
-
-</glossentry>
-



1.4       +0 -11     xmldocs/glossary/anchor


rev 1.4, prev_rev 1.3
Index: anchor
===================================================================
RCS file: /var/cvs/xmldocs/glossary/anchor,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- anchor	28 Nov 2004 23:04:07 -0000	1.3
+++ anchor	15 Dec 2004 14:24:00 -0000	1.4
@@ -1,13 +1,2 @@
-
-<glossentry id="anchor">
-<glossterm>anchor</glossterm>
-<glossterm>HyperText Anchor</glossterm>
-
-<glossdef>
-<para>
 <ulink url='http://www.w3.org/TR/REC-html40/struct/links.html'>Anchor</ulink>
 resource at &W3;.
-</para>
-</glossdef>
-
-</glossentry>



1.2       +0 -13     xmldocs/glossary/array


<<array: empty>>


1.3       +0 -11     xmldocs/glossary/balloon


<<balloon: empty>>


1.2       +0 -13     xmldocs/glossary/catalog


<<catalog: empty>>


1.4       +0 -11     xmldocs/glossary/cgi-var


rev 1.4, prev_rev 1.3
Index: cgi-var
===================================================================
RCS file: /var/cvs/xmldocs/glossary/cgi-var,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- cgi-var	9 Nov 2004 23:16:16 -0000	1.3
+++ cgi-var	15 Dec 2004 14:24:00 -0000	1.4
@@ -1,9 +1,3 @@
-
-<glossentry id="cgi-var">
-<glossterm>CGI Variable</glossterm>
-
-<glossdef>
-<para>
 Interchange server runs as a daemon on an Unix system, and is typically
 accessed over a communication socket by a web server daemon. In turn,
 the web server is accessed by a client using a web browser.
@@ -33,8 +27,3 @@
 As CGI variables contain user-supplied data, they are obviously of
 great concern from a security standpoint.
 <!-- TODO: IC functionality to deal with CGI data security .. filters etc. -->
-</para>
-</glossdef>
-
-</glossentry>
-



1.2       +0 -12     xmldocs/glossary/configuration


rev 1.2, prev_rev 1.1
Index: configuration
===================================================================
RCS file: /var/cvs/xmldocs/glossary/configuration,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- configuration	30 Nov 2004 22:46:22 -0000	1.1
+++ configuration	15 Dec 2004 14:24:00 -0000	1.2
@@ -1,9 +1,3 @@
-
-<glossentry id="configuration">
-<glossterm>configuration</glossterm>
-
-<glossdef>
-<para>
 &IC; supports multiple catalogs, and therefore splits its configuration
 into two pieces. One is global, &gcf;, and affects every catalog running
 under that &IC; server.
@@ -105,9 +99,3 @@
   MailOrderTo  webmaster@&def-domain;
   endif
 </programlisting>
-
-</para>
-</glossdef>
-
-</glossentry>
-



1.2       +0 -12     xmldocs/glossary/deref


rev 1.2, prev_rev 1.1
Index: deref
===================================================================
RCS file: /var/cvs/xmldocs/glossary/deref,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- deref	9 Nov 2004 22:02:01 -0000	1.1
+++ deref	15 Dec 2004 14:24:00 -0000	1.2
@@ -1,9 +1,3 @@
-
-<glossentry id="deref">
-<glossterm>Dereferencing</glossterm>
-
-<glossdef>
-<para>
 <emphasis>Dereferencing</emphasis> is strictly a computer-programming
 issue, but we will try to explain it in very brief and comprehensible terms,
 so that you understand the idea of <firstterm>dereferencing</firstterm> and
@@ -56,9 +50,3 @@
 So, when a data structure (or its element) is said to be copied
 <emphasis>without dereferencing</emphasis>, then in case it was a reference,
 it is still copied in itself, but all copies point to the same location.
-</para>
-
-</glossdef>
-
-</glossentry>
-



1.2       +0 -12     xmldocs/glossary/epoch


<<epoch: empty>>


1.4       +0 -12     xmldocs/glossary/false


rev 1.4, prev_rev 1.3
Index: false
===================================================================
RCS file: /var/cvs/xmldocs/glossary/false,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- false	14 Dec 2004 22:24:42 -0000	1.3
+++ false	15 Dec 2004 14:24:00 -0000	1.4
@@ -1,18 +1,6 @@
-
-<glossentry id="false">
-<glossterm>false</glossterm>
-<glossterm>false value</glossterm>
-
-<glossdef>
-<para>
 In general programming terms, a <emphasis>false</emphasis> value is one
 that is either <literal>0</literal> (zero) or <literal>""</literal>
 (an empty string).
 </para><para>
 Since the Perl programming language has a notion of undefined values, they
 too are considered false.
-</para>
-</glossdef>
-
-</glossentry>
-



1.4       +0 -11     xmldocs/glossary/filter


rev 1.4, prev_rev 1.3
Index: filter
===================================================================
RCS file: /var/cvs/xmldocs/glossary/filter,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- filter	9 Nov 2004 23:16:16 -0000	1.3
+++ filter	15 Dec 2004 14:24:00 -0000	1.4
@@ -1,9 +1,3 @@
-
-<glossentry id="filter">
-<glossterm>Filter</glossterm>
-
-<glossdef>
-<para>
 &IC; filters are usually small routines that perform various 
 (arbitrary) transformations of user input.
 </para><para>
@@ -13,8 +7,3 @@
 </para><para>
 Using existing filters and creating new ones is very simple.
 <!-- TODO: Pointer to filters.html -->
-</para>
-</glossdef>
-
-</glossentry>
-



1.2       +2 -14     xmldocs/glossary/form-action


rev 1.2, prev_rev 1.1
Index: form-action
===================================================================
RCS file: /var/cvs/xmldocs/glossary/form-action,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- form-action	8 Dec 2004 12:39:58 -0000	1.1
+++ form-action	15 Dec 2004 14:24:00 -0000	1.2
@@ -1,10 +1,4 @@
-
-<glossentry id="form-action">
-<glossterm>form action</glossterm>
-
-<glossdef>
-<para>
-<![CDATA[
+<!--
 TODO format
 Interchange form processing is based on an C<action> and a C<todo>. The 
 predefined actions at the first level are:
@@ -139,10 +133,4 @@
 will be routed to mv_failpage or mv_nextpage in that order.
 
 =back
-]]>
-</para>
-
-</glossdef>
-
-</glossentry>
-
+-->



1.2       +0 -13     xmldocs/glossary/hash


<<hash: empty>>


1.2       +0 -12     xmldocs/glossary/hello-world


rev 1.2, prev_rev 1.1
Index: hello-world
===================================================================
RCS file: /var/cvs/xmldocs/glossary/hello-world,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- hello-world	23 Nov 2004 00:29:44 -0000	1.1
+++ hello-world	15 Dec 2004 14:24:00 -0000	1.2
@@ -1,14 +1,2 @@
-
-<glossentry id="hello-world">
-<glossterm>Hello, World!</glossterm>
-
-<glossdef>
-<para>
 <emphasis>Hello, World!</emphasis> resource at
 <ulink url="http://en.wikipedia.org/wiki/Hello_world">Wikipedia</ulink>.
-</para>
-
-</glossdef>
-
-</glossentry>
-



1.3       +0 -11     xmldocs/glossary/ic-run-mode


rev 1.3, prev_rev 1.2
Index: ic-run-mode
===================================================================
RCS file: /var/cvs/xmldocs/glossary/ic-run-mode,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- ic-run-mode	6 Dec 2004 18:27:48 -0000	1.2
+++ ic-run-mode	15 Dec 2004 14:24:00 -0000	1.3
@@ -1,12 +1 @@
-
-<glossentry id="ic-run-mode">
-<glossterm>run mode</glossterm>
-
-<glossdef>
-<para>
 low, high, rpc, prefork
-</para>
-</glossdef>
-
-</glossentry>
-



1.4       +0 -11     xmldocs/glossary/img


rev 1.4, prev_rev 1.3
Index: img
===================================================================
RCS file: /var/cvs/xmldocs/glossary/img,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- img	4 Dec 2004 22:47:23 -0000	1.3
+++ img	15 Dec 2004 14:24:00 -0000	1.4
@@ -1,13 +1,2 @@
-
-<glossentry id="img">
-<glossterm>&lt;img&gt;</glossterm>
-<glossterm>Hypertext image</glossterm>
-
-<glossdef>
-<para>
 <ulink url='http://www.w3.org/MarkUp/html3/img.html'>&lt;img&gt;</ulink>
 resource at &W3C;.
-</para>
-</glossdef>
-
-</glossentry>



1.2       +0 -12     xmldocs/glossary/interpolate


rev 1.2, prev_rev 1.1
Index: interpolate
===================================================================
RCS file: /var/cvs/xmldocs/glossary/interpolate,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- interpolate	4 Dec 2004 22:47:23 -0000	1.1
+++ interpolate	15 Dec 2004 14:24:00 -0000	1.2
@@ -1,14 +1,2 @@
-
-<glossentry id="interpolate">
-<glossterm>interpolate</glossterm>
-
-<glossdef>
-<para>
-meek.
 Default is off
-</para>
-
-</glossdef>
-
-</glossentry>
 



1.2       +0 -11     xmldocs/glossary/interval


<<interval: empty>>


1.3       +0 -11     xmldocs/glossary/jobs


<<jobs: empty>>


1.2       +0 -11     xmldocs/glossary/js


<<js: empty>>


1.3       +0 -11     xmldocs/glossary/link


rev 1.3, prev_rev 1.2
Index: link
===================================================================
RCS file: /var/cvs/xmldocs/glossary/link,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- link	20 Oct 2004 15:44:35 -0000	1.2
+++ link	15 Dec 2004 14:24:00 -0000	1.3
@@ -1,13 +1,2 @@
-
-<glossentry id="link">
-<glossterm>Hypertext link</glossterm>
-
-<glossdef>
-<para>
 <ulink url='http://www.w3.org/TR/REC-html40/struct/links.html'>link</ulink>
 resource at &W3C;.
-</para>
-</glossdef>
-
-</glossentry>
-



1.2       +0 -12     xmldocs/glossary/link-program


<<link-program: empty>>


1.2       +0 -12     xmldocs/glossary/locale


<<locale: empty>>


1.3       +0 -12     xmldocs/glossary/mode


rev 1.3, prev_rev 1.2
Index: mode
===================================================================
RCS file: /var/cvs/xmldocs/glossary/mode,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- mode	20 Oct 2004 15:44:35 -0000	1.2
+++ mode	15 Dec 2004 14:24:00 -0000	1.3
@@ -1,16 +1,4 @@
-
-<glossentry id="mode">
-<glossterm>Mode</glossterm>
-<glossterm>File Mode</glossterm>
-
-<glossdef>
-<para>
 Resources at
 <ulink url="http://www.debian.org/doc/manuals/debian-tutorial/ch-files.html#s-files-permissions">Debian Tutorial - Permissions</ulink>, 
 <ulink url="http://www.debian.org/doc/manuals/debian-tutorial/ch-advanced.html">Debian Tutorial - Advanced Topics</ulink> and
 <ulink url="http://www.kastlfamily.com/class-docs/unix-file-modes.html">O'Reilly &amp; Associates' Essential System Administration</ulink> book.
-</para>
-</glossdef>
-
-</glossentry>
-



1.3       +0 -11     xmldocs/glossary/namespace


rev 1.3, prev_rev 1.2
Index: namespace
===================================================================
RCS file: /var/cvs/xmldocs/glossary/namespace,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- namespace	20 Oct 2004 15:44:35 -0000	1.2
+++ namespace	15 Dec 2004 14:24:00 -0000	1.3
@@ -1,9 +1,3 @@
-
-<glossentry id="namespace">
-<glossterm>Namespace</glossterm>
-
-<glossdef>
-<para>
 Name-space is an abstract group of elements. Within the group, element names
 must be unique, but elements of the same name can appear in different 
 namespaces (so, in different groups). They are completely separate and in
@@ -14,8 +8,3 @@
 <literal>xsl:stylesheet</literal>), given as a separate parameter
 (such as <literal>name="stylesheet" space="xsl"</literal>), or set
 in a separate call and later considered implicit.
-</para>
-</glossdef>
-
-</glossentry>
-



1.4       +0 -11     xmldocs/glossary/pragma


rev 1.4, prev_rev 1.3
Index: pragma
===================================================================
RCS file: /var/cvs/xmldocs/glossary/pragma,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- pragma	20 Oct 2004 15:44:35 -0000	1.3
+++ pragma	15 Dec 2004 14:24:00 -0000	1.4
@@ -1,9 +1,3 @@
-
-<glossentry id="pragma">
-<glossterm>Pragma</glossterm>
-
-<glossdef>
-<para>
 Pragmas are used to control various aspects of page and data parsing and display. They are processed before an Interchange page goes to the normal processing
 routine.
 </para><para>
@@ -18,11 +12,6 @@
 To define a pragma for a small ITL block inside the page, enclose the block in <code>[tag pragma NAME]1[/tag]...[tag pragma NAME]0[/tag]</code>.
 </para><para>
 Starting with Interchange 5.0, the <code>$::Pragma->{name}</code> syntax is used in the Interchange source instead of the old <code>$Vend::Cfg->{Pragma}{name}</code>.
-</para>
 
 <!-- <glosssee otherterm="sgml"/>
 <glossseealso otherterm="globvar">Global variable</glossseealso> -->
-</glossdef>
-
-</glossentry>
-



1.3       +0 -13     xmldocs/glossary/reparse


rev 1.3, prev_rev 1.2
Index: reparse
===================================================================
RCS file: /var/cvs/xmldocs/glossary/reparse,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- reparse	15 Dec 2004 13:34:34 -0000	1.2
+++ reparse	15 Dec 2004 14:24:00 -0000	1.3
@@ -1,14 +1 @@
-
-<glossentry id="reparse">
-<glossterm>reparse</glossterm>
-
-<glossdef>
-<para>
-meek.
 Default is on.
-</para>
-
-</glossdef>
-
-</glossentry>
-



1.4       +0 -12     xmldocs/glossary/rotated-banner


rev 1.4, prev_rev 1.3
Index: rotated-banner
===================================================================
RCS file: /var/cvs/xmldocs/glossary/rotated-banner,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- rotated-banner	9 Nov 2004 22:02:01 -0000	1.3
+++ rotated-banner	15 Dec 2004 14:24:00 -0000	1.4
@@ -1,9 +1,3 @@
-
-<glossentry id="rotated-banner">
-<glossterm>Rotated banner</glossterm>
-
-<glossdef>
-<para>
 In &IC;, the term "Rotated Banner" refers to the process of selecting
 or displaying one of the banners from the
 <database class='field'>banner</database> field in the banner database, 
@@ -13,9 +7,3 @@
 </para><para>
 The available banners are displayed <emphasis>in sequential order</emphasis>,
 with an independent pointer for each client.
-</para>
-
-</glossdef>
-
-</glossentry>
-



1.3       +0 -11     xmldocs/glossary/salt


rev 1.3, prev_rev 1.2
Index: salt
===================================================================
RCS file: /var/cvs/xmldocs/glossary/salt,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- salt	20 Oct 2004 15:44:35 -0000	1.2
+++ salt	15 Dec 2004 14:24:00 -0000	1.3
@@ -1,9 +1,3 @@
-
-<glossentry id="salt">
-<glossterm>Salt</glossterm>
-
-<glossdef>
-<para>
 In password protection, salt is a random string of data (two
 characters, in traditional crypt implementations) used to modify a
 password hash.
@@ -28,8 +22,3 @@
 to <literal>tinuviel</literal>, which created a total of 3 pairs of 
 identical passwords used at the same time.
 -->
-</para>
-</glossdef>
-
-</glossentry>
-



1.2       +0 -17     xmldocs/glossary/scratch


rev 1.2, prev_rev 1.1
Index: scratch
===================================================================
RCS file: /var/cvs/xmldocs/glossary/scratch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- scratch	9 Nov 2004 22:02:01 -0000	1.1
+++ scratch	15 Dec 2004 14:24:00 -0000	1.2
@@ -1,14 +1,3 @@
-
-<glossentry id="scratch">
-<glossterm>Scratch variables</glossterm>
-<glossterm>Scratch space</glossterm>
-<glossterm>Scratchpad</glossterm>
-
-<!--<acronym></acronym>-->
-<!--<abbrev></abbrev>-->
-
-<glossdef>
-<para>
 To each new visitor, Interchange assigns an unique
 <firstterm>session ID</firstterm> and (among other things) creates a
 <firstterm>scratch space</firstterm> (also referred to as 
@@ -32,9 +21,3 @@
 <para>
 Scratch variables are also used in form processing. See the 
 <tag>button</tag> tag for examples.
-</para>
-
-</glossdef>
-
-</glossentry>
-



1.2       +0 -17     xmldocs/glossary/session


<<session: empty>>


1.2       +0 -15     xmldocs/glossary/static


<<static: empty>>


1.3       +0 -12     xmldocs/glossary/tab-delimited


<<tab-delimited: empty>>


1.2       +0 -13     xmldocs/glossary/tarball


<<tarball: empty>>


1.2       +0 -13     xmldocs/glossary/tracking


rev 1.2, prev_rev 1.1
Index: tracking
===================================================================
RCS file: /var/cvs/xmldocs/glossary/tracking,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- tracking	14 Dec 2004 22:24:43 -0000	1.1
+++ tracking	15 Dec 2004 14:24:00 -0000	1.2
@@ -1,10 +1,3 @@
-
-<glossentry id="tracking">
-<glossterm>tracking</glossterm>
-<glossterm>user tracking</glossterm>
-
-<glossdef>
-<para>
 Several actions performed by users are recorded by &IC;'s usertracking 
 facility, if one is enabled. Usertrack data can actually be obtained from two
 different locations.
@@ -22,9 +15,3 @@
 			%T %v \"%{X-Track}o\"" track
 CustomLog /var/log/apache/track.log track
 ]]></programlisting>
-</para>
-
-</glossdef>
-
-</glossentry>
-



1.4       +0 -12     xmldocs/glossary/true


rev 1.4, prev_rev 1.3
Index: true
===================================================================
RCS file: /var/cvs/xmldocs/glossary/true,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- true	14 Dec 2004 22:24:43 -0000	1.3
+++ true	15 Dec 2004 14:24:00 -0000	1.4
@@ -1,18 +1,6 @@
-
-<glossentry id="true">
-<glossterm>true</glossterm>
-<glossterm>true value</glossterm>
-
-<glossdef>
-<para>
 In general programming terms, a <emphasis>true</emphasis> value is 
 anything, except <literal>0</literal> (zero), <literal>""</literal>
 (an empty string) and undefined value.
 </para><para>
 Note that a value of a string containing only whitespace
 (say, one TAB or space) is also considered 'true'.
-</para>
-</glossdef>
-
-</glossentry>
-



1.2       +0 -11     xmldocs/glossary/umask


<<umask: empty>>


1.2       +0 -16     xmldocs/glossary/value


<<value: empty>>


1.2       +0 -16     xmldocs/glossary/weighted


<<weighted: empty>>







More information about the docs mailing list