mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-06 06:30:46 +00:00
Fix documentation version numbering
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@24034 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
22a531f965
commit
688192ff19
12 changed files with 34 additions and 19 deletions
15
ChangeLog
15
ChangeLog
|
@ -1,3 +1,18 @@
|
||||||
|
2006-11-06 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
|
* Source/NSObject.m: Use %p to print address in description.
|
||||||
|
* Documentation/General/OpenStepCompliance.gsdoc:
|
||||||
|
* Documentation/General/Debugging.gsdoc:
|
||||||
|
* Tools/gsdoc.gsdoc:
|
||||||
|
* Tools/gdomap.gsdoc:
|
||||||
|
* Tools/gsdoc-1_0_1.dtd:
|
||||||
|
* Tools/gsdoc-1_0_1.rnc:
|
||||||
|
* Tools/autogsdoc.m:
|
||||||
|
* Tools/AGSOutput.m:
|
||||||
|
* Tools/autogsdoc.1:
|
||||||
|
* Tools/BaseTools.gsdoc:
|
||||||
|
Minor documentation version fixups.
|
||||||
|
|
||||||
2006-11-03 Richard Frith-Macdonald <rfm@gnu.org>
|
2006-11-03 Richard Frith-Macdonald <rfm@gnu.org>
|
||||||
|
|
||||||
* Source/NSString.m: ([stringByAddingPercentEscapesUsingEncoding:])
|
* Source/NSString.m: ([stringByAddingPercentEscapesUsingEncoding:])
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 1.0.1//EN" "http://www.gnustep.org/gsdoc-1_0_1.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 1.0.3//EN" "http://www.gnustep.org/gsdoc-1_0_3.xml">
|
||||||
<!--
|
<!--
|
||||||
Copying and distribution of this file, with or without modification,
|
Copying and distribution of this file, with or without modification,
|
||||||
are permitted in any medium without royalty provided the copyright
|
are permitted in any medium without royalty provided the copyright
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 1.0.1//EN" "http://www.gnustep.org/gsdoc-1_0_1.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 1.0.3//EN" "http://www.gnustep.org/gsdoc-1_0_3.xml">
|
||||||
<!--
|
<!--
|
||||||
Copying and distribution of this file, with or without modification,
|
Copying and distribution of this file, with or without modification,
|
||||||
are permitted in any medium without royalty provided the copyright
|
are permitted in any medium without royalty provided the copyright
|
||||||
|
|
|
@ -1485,8 +1485,8 @@ GSDescriptionForClassMethod(pcl self, SEL aSel)
|
||||||
*/
|
*/
|
||||||
- (NSString*) description
|
- (NSString*) description
|
||||||
{
|
{
|
||||||
return [NSString stringWithFormat: @"<%s: %lx>",
|
return [NSString stringWithFormat: @"<%s: %p>",
|
||||||
GSClassNameFromObject(self), (unsigned long)self];
|
GSClassNameFromObject(self), self];
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -2372,8 +2372,8 @@ GSDescriptionForClassMethod(pcl self, SEL aSel)
|
||||||
}
|
}
|
||||||
- (NSString*) description
|
- (NSString*) description
|
||||||
{
|
{
|
||||||
return [NSString stringWithFormat: @"<%s: %lx>",
|
return [NSString stringWithFormat: @"<%s: %p>",
|
||||||
GSClassNameFromObject(self), (unsigned long)self];
|
GSClassNameFromObject(self), self];
|
||||||
}
|
}
|
||||||
- (BOOL) isProxy
|
- (BOOL) isProxy
|
||||||
{
|
{
|
||||||
|
|
|
@ -2334,7 +2334,7 @@ static BOOL snuggleStart(NSString *t)
|
||||||
|
|
||||||
[str appendString: @"<?xml version=\"1.0\"?>\n"];
|
[str appendString: @"<?xml version=\"1.0\"?>\n"];
|
||||||
[str appendString: @"<!DOCTYPE gsdoc PUBLIC "];
|
[str appendString: @"<!DOCTYPE gsdoc PUBLIC "];
|
||||||
[str appendString: @"\"-//GNUstep//DTD gsdoc 1.0.1//EN\" "];
|
[str appendString: @"\"-//GNUstep//DTD gsdoc 1.0.3//EN\" "];
|
||||||
[str appendString: @"\"http://www.gnustep.org/gsdoc-1_0_3.xml\">\n"];
|
[str appendString: @"\"http://www.gnustep.org/gsdoc-1_0_3.xml\">\n"];
|
||||||
[str appendString: @"<gsdoc base=\""];
|
[str appendString: @"<gsdoc base=\""];
|
||||||
[str appendString: [name lastPathComponent]];
|
[str appendString: [name lastPathComponent]];
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 1.0.1//EN" "http://www.gnustep.org/gsdoc-1_0_1.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 1.0.3//EN" "http://www.gnustep.org/gsdoc-1_0_3.xml">
|
||||||
<!--
|
<!--
|
||||||
Copying and distribution of this file, with or without modification,
|
Copying and distribution of this file, with or without modification,
|
||||||
are permitted in any medium without royalty provided the copyright
|
are permitted in any medium without royalty provided the copyright
|
||||||
|
|
|
@ -542,9 +542,9 @@ default should be a hand-edited GSDoc document which should have a
|
||||||
.P
|
.P
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
.RS 0
|
.RS 0
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 1.0.1//EN"
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 1.0.3//EN"
|
||||||
.RS 0
|
.RS 0
|
||||||
"http://www.gnustep.org/gsdoc-1_0_1.xml">
|
"http://www.gnustep.org/gsdoc-1_0_3.xml">
|
||||||
.RS 0
|
.RS 0
|
||||||
<gsdoc base="index">
|
<gsdoc base="index">
|
||||||
.RS 0
|
.RS 0
|
||||||
|
|
|
@ -546,7 +546,7 @@
|
||||||
</p>
|
</p>
|
||||||
<example>
|
<example>
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 1.0.1//EN"
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 1.0.3//EN"
|
||||||
"http://www.gnustep.org/gsdoc-1_0_3.xml">
|
"http://www.gnustep.org/gsdoc-1_0_3.xml">
|
||||||
<gsdoc base="index">
|
<gsdoc base="index">
|
||||||
<head>
|
<head>
|
||||||
|
@ -1774,7 +1774,7 @@ main(int argc, char **argv, char **env)
|
||||||
|
|
||||||
// skeleton for table of contents files
|
// skeleton for table of contents files
|
||||||
[tocSkel setString: @"<?xml version=\"1.0\"?>\n"
|
[tocSkel setString: @"<?xml version=\"1.0\"?>\n"
|
||||||
@"<!DOCTYPE gsdoc PUBLIC \"-//GNUstep//DTD gsdoc 1.0.1//EN\" \"http://www.gnustep.org/gsdoc-1_0_3.xml\">\n"
|
@"<!DOCTYPE gsdoc PUBLIC \"-//GNUstep//DTD gsdoc 1.0.3//EN\" \"http://www.gnustep.org/gsdoc-1_0_3.xml\">\n"
|
||||||
@"<gsdoc base=\"[typeU]\" stylesheeturl=\"gsdoc_contents\">\n"
|
@"<gsdoc base=\"[typeU]\" stylesheeturl=\"gsdoc_contents\">\n"
|
||||||
@" <head>\n"
|
@" <head>\n"
|
||||||
@" <title>[typeU]</title>\n"
|
@" <title>[typeU]</title>\n"
|
||||||
|
@ -1880,7 +1880,7 @@ main(int argc, char **argv, char **env)
|
||||||
@"named %@ in the documentation output directory.\n"
|
@"named %@ in the documentation output directory.\n"
|
||||||
@"Then include this file in the arguments to autogsdoc.\n\n", prjFile);
|
@"Then include this file in the arguments to autogsdoc.\n\n", prjFile);
|
||||||
[prjFileContents setString: @"<?xml version=\"1.0\"?>\n"
|
[prjFileContents setString: @"<?xml version=\"1.0\"?>\n"
|
||||||
@"<!DOCTYPE gsdoc PUBLIC \"-//GNUstep//DTD gsdoc 1.0.1//EN\" \"http://www.gnustep.org/gsdoc-1_0_3.xml\">\n"
|
@"<!DOCTYPE gsdoc PUBLIC \"-//GNUstep//DTD gsdoc 1.0.3//EN\" \"http://www.gnustep.org/gsdoc-1_0_3.xml\">\n"
|
||||||
@"<gsdoc base=\"[prjName]\">\n"
|
@"<gsdoc base=\"[prjName]\">\n"
|
||||||
@" <head>\n"
|
@" <head>\n"
|
||||||
@" <title>The [prjName] Project</title>\n"
|
@" <title>The [prjName] Project</title>\n"
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 1.0.1//EN" "http://www.gnustep.org/gsdoc-1_0_1.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 1.0.3//EN" "http://www.gnustep.org/gsdoc-1_0_3.xml">
|
||||||
<!--
|
<!--
|
||||||
Copying and distribution of this file, with or without modification,
|
Copying and distribution of this file, with or without modification,
|
||||||
are permitted in any medium without royalty provided the copyright
|
are permitted in any medium without royalty provided the copyright
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
<!--
|
<!--
|
||||||
gsdoc is an XML language - Typical usage:
|
gsdoc is an XML language - Typical usage:
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 1.0.1//EN"
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 1.0.3//EN"
|
||||||
"http://www.gnustep.org/gsdoc.xml">
|
"http://www.gnustep.org/gsdoc.xml">
|
||||||
<gsdoc base="myDocName">
|
<gsdoc base="myDocName">
|
||||||
</gsdoc>
|
</gsdoc>
|
||||||
|
|
|
@ -53,7 +53,7 @@
|
||||||
|
|
||||||
# gsdoc is an XML language - Typical usage:
|
# gsdoc is an XML language - Typical usage:
|
||||||
# <?xml version="1.0"?>
|
# <?xml version="1.0"?>
|
||||||
# <!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 1.0.1//EN"
|
# <!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 1.0.3//EN"
|
||||||
# "http://www.gnustep.org/gsdoc.xml">
|
# "http://www.gnustep.org/gsdoc.xml">
|
||||||
# <gsdoc base="myDocName">
|
# <gsdoc base="myDocName">
|
||||||
# </gsdoc>
|
# </gsdoc>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<?xml version="1.0"?>
|
<?xml version="1.0"?>
|
||||||
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 1.0.1//EN" "http://www.gnustep.org/gsdoc-1_0_1.xml">
|
<!DOCTYPE gsdoc PUBLIC "-//GNUstep//DTD gsdoc 1.0.3//EN" "http://www.gnustep.org/gsdoc-1_0_3.xml">
|
||||||
<!--
|
<!--
|
||||||
Copying and distribution of this file, with or without modification,
|
Copying and distribution of this file, with or without modification,
|
||||||
are permitted in any medium without royalty provided the copyright
|
are permitted in any medium without royalty provided the copyright
|
||||||
|
@ -15,8 +15,8 @@ notice and this notice are preserved.
|
||||||
A person who devotes far too much time to GNUstep development.
|
A person who devotes far too much time to GNUstep development.
|
||||||
</desc>
|
</desc>
|
||||||
</author>
|
</author>
|
||||||
<version>1.0.1</version>
|
<version>1.0.3</version>
|
||||||
<date>8 March, 2004</date>
|
<date>6 Nov, 2006</date>
|
||||||
<abstract>
|
<abstract>
|
||||||
This documents the GNUstep Documentation markup language.
|
This documents the GNUstep Documentation markup language.
|
||||||
</abstract>
|
</abstract>
|
||||||
|
|
Loading…
Reference in a new issue