Logtalk 2.15.0 release files.

git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@757 b08c6af1-5177-4d33-ba66-4b1c6b8b522a
This commit is contained in:
pmoura
2003-02-05 00:15:28 +00:00
parent c060e91cfc
commit 75392e54c7
266 changed files with 1479 additions and 617 deletions

View File

@@ -1,6 +1,6 @@
=================================================================
Logtalk - Object oriented extension to Prolog
Release 2.14.7
Release 2.15.0
Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
=================================================================

View File

@@ -8,7 +8,7 @@
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Logtalk - Object oriented extension to Prolog
% Release 2.14.7
% Release 2.15.0
%
% Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
%
@@ -42,9 +42,9 @@
<blockquote><xsl:value-of select="comment" /></blockquote>
</xsl:if>
<dl>
<xsl:if test="authors">
<dt>authors:</dt>
<dd><code><xsl:value-of select="authors" /></code></dd>
<xsl:if test="author">
<dt>author:</dt>
<dd><code><xsl:value-of select="author" /></code></dd>
</xsl:if>
<xsl:if test="version">
<dt>version:</dt>

View File

@@ -14,7 +14,7 @@
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Logtalk - Object oriented extension to Prolog
% Release 2.14.7
% Release 2.15.0
%
% Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
%
@@ -48,9 +48,9 @@
<blockquote><p class="blockquote"><xsl:value-of select="comment" /></p></blockquote>
</xsl:if>
<dl>
<xsl:if test="authors">
<dt>authors:</dt>
<dd><code><xsl:value-of select="authors" /></code></dd>
<xsl:if test="author">
<dt>author:</dt>
<dd><code><xsl:value-of select="author" /></code></dd>
</xsl:if>
<xsl:if test="version">
<dt>version:</dt>

View File

@@ -9,7 +9,7 @@
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Logtalk - Object oriented extension to Prolog
% Release 2.14.7
% Release 2.15.0
%
% Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
%
@@ -101,18 +101,18 @@
</fo:block>
</xsl:if>
<xsl:if test="authors">
<xsl:if test="author">
<fo:block
font-size="10pt"
font-family="serif"
keep-with-next="always">
authors:
author:
</fo:block>
<fo:block
font-size="9pt"
font-family="monospace"
margin-left="10mm">
<xsl:value-of select="authors"/>
<xsl:value-of select="author"/>
</fo:block>
</xsl:if>

View File

@@ -9,7 +9,7 @@
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Logtalk - Object oriented extension to Prolog
% Release 2.14.7
% Release 2.15.0
%
% Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
%
@@ -101,18 +101,18 @@
</fo:block>
</xsl:if>
<xsl:if test="authors">
<xsl:if test="author">
<fo:block
font-size="10pt"
font-family="serif"
keep-with-next="always">
authors:
author:
</fo:block>
<fo:block
font-size="9pt"
font-family="monospace"
margin-left="10mm">
<xsl:value-of select="authors"/>
<xsl:value-of select="author"/>
</fo:block>
</xsl:if>

View File

@@ -14,7 +14,7 @@
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Logtalk - Object oriented extension to Prolog
% Release 2.14.7
% Release 2.15.0
%
% Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
%
@@ -48,9 +48,9 @@
<blockquote><p class="blockquote"><xsl:value-of select="comment" /></p></blockquote>
</xsl:if>
<dl>
<xsl:if test="authors">
<dt>authors:</dt>
<dd><code><xsl:value-of select="authors" /></code></dd>
<xsl:if test="author">
<dt>author:</dt>
<dd><code><xsl:value-of select="author" /></code></dd>
</xsl:if>
<xsl:if test="version">
<dt>version:</dt>

View File

@@ -3,7 +3,7 @@
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Logtalk - Object oriented extension to Prolog
% Release 2.14.7
% Release 2.15.0
%
% Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
%
@@ -14,7 +14,7 @@
<!ELEMENT logtalk (entity, relations, predicates)>
<!ELEMENT entity (name, type, compilation, comment?, authors?, version?, date?, info*)>
<!ELEMENT entity (name, type, compilation, comment?, author?, version?, date?, info*)>
<!ELEMENT name (#PCDATA)>
@@ -24,7 +24,7 @@
<!ELEMENT comment (#PCDATA)>
<!ELEMENT authors (#PCDATA)>
<!ELEMENT author (#PCDATA)>
<!ELEMENT version (#PCDATA)>

View File

@@ -15,7 +15,7 @@
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Logtalk - Object oriented extension to Prolog
% Release 2.14.7
% Release 2.15.0
%
% Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
%
@@ -41,7 +41,7 @@
<xsd:element name="type" type="type"/>
<xsd:element name="compilation" type="compilation"/>
<xsd:element name="comment" type="xsd:string" minOccurs="0"/>
<xsd:element name="authors" type="xsd:string" minOccurs="0"/>
<xsd:element name="author" type="xsd:string" minOccurs="0"/>
<xsd:element name="version" type="xsd:string" minOccurs="0"/>
<xsd:element name="date" type="xsd:string" minOccurs="0"/>
<xsd:element name="info" type="info" minOccurs="0" maxOccurs="unbounded"/>

View File

@@ -12,7 +12,7 @@
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Logtalk - Object oriented extension to Prolog
% Release 2.14.7
% Release 2.15.0
%
% Copyright (c) 1998-2003 Paulo Moura. All Rights Reserved.
%
@@ -44,12 +44,12 @@
<xsl:if test="comment">
<env name="quote"><xsl:value-of select="comment" /></env>
</xsl:if>
<xsl:if test="authors">
<xsl:if test="author">
<cmd name="medskip"/>
<cmd name="noindent"/>
authors:
author:
<cmd name="par"/>
<cmd name="texttt"><parm><xsl:value-of select="authors" /></parm></cmd>
<cmd name="texttt"><parm><xsl:value-of select="author" /></parm></cmd>
<cmd name="par"/>
</xsl:if>
<xsl:if test="version">