|
From: <ai...@us...> - 2010-10-27 01:39:33
|
Revision: 11276
http://plplot.svn.sourceforge.net/plplot/?rev=11276&view=rev
Author: airwin
Date: 2010-10-27 01:39:26 +0000 (Wed, 27 Oct 2010)
Log Message:
-----------
Convert from latin1 to utf8. This makes Rafael's last name in the
comments render correctly for the usual utf8 locale.
Modified Paths:
--------------
trunk/doc/docbook/bin/api2man.pl.in
trunk/doc/docbook/bin/api2text.pl
Modified: trunk/doc/docbook/bin/api2man.pl.in
===================================================================
--- trunk/doc/docbook/bin/api2man.pl.in 2010-10-27 01:08:21 UTC (rev 11275)
+++ trunk/doc/docbook/bin/api2man.pl.in 2010-10-27 01:39:26 UTC (rev 11276)
@@ -2,7 +2,7 @@
# File: api2man.pl
# Description: Convert the PLplot API chapter (file api.xml of the DocBook
# manual) into a series of man pages.
-# Author: Rafael Laboissi\xE8re <ra...@ic...>
+# Author: Rafael Laboissière <ra...@ic...>
# Created on: Mon Dec 4 16:35:32 CET 2000
# Last modified on: Fri Sep 16 22:11:15 CEST 2005
# $Id$
Modified: trunk/doc/docbook/bin/api2text.pl
===================================================================
--- trunk/doc/docbook/bin/api2text.pl 2010-10-27 01:08:21 UTC (rev 11275)
+++ trunk/doc/docbook/bin/api2text.pl 2010-10-27 01:39:26 UTC (rev 11276)
@@ -2,7 +2,7 @@
# File: api2man.pl
# Description: Convert the PLplot API chapter (file api.xml of the DocBook
# manual) into a series of man pages.
-# Author: Rafael Laboissi\xE8re <ra...@de...>
+# Author: Rafael Laboissière <ra...@de...>
# Created on: Mon Dec 4 16:35:32 CET 2000
# Last modified on: Thu Mar 20 11:30:25 CET 2003
# $Id$
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <and...@us...> - 2011-09-16 18:02:02
|
Revision: 11928
http://plplot.svn.sourceforge.net/plplot/?rev=11928&view=rev
Author: andrewross
Date: 2011-09-16 18:01:56 +0000 (Fri, 16 Sep 2011)
Log Message:
-----------
Correct spelling mistake in license.
Modified Paths:
--------------
trunk/doc/docbook/bin/get-library-structs.pl
trunk/doc/docbook/bin/get-library-symbols.pl
Modified: trunk/doc/docbook/bin/get-library-structs.pl
===================================================================
--- trunk/doc/docbook/bin/get-library-structs.pl 2011-09-15 14:55:03 UTC (rev 11927)
+++ trunk/doc/docbook/bin/get-library-structs.pl 2011-09-16 18:01:56 UTC (rev 11928)
@@ -4,7 +4,7 @@
# included in the public header file.
#
# Rafael Laboissiere <ra...@us...> on Sun May 23 16:24:02 CEST 2004
-# This file is part of PLplot and release under the terms of the GNU GPL.
+# This file is part of PLplot and released under the terms of the GNU GPL.
# No warranties.
die "Usage:\n $0 header.h\n"
Modified: trunk/doc/docbook/bin/get-library-symbols.pl
===================================================================
--- trunk/doc/docbook/bin/get-library-symbols.pl 2011-09-15 14:55:03 UTC (rev 11927)
+++ trunk/doc/docbook/bin/get-library-symbols.pl 2011-09-16 18:01:56 UTC (rev 11928)
@@ -4,7 +4,7 @@
# included in the public header file.
#
# Rafael Laboissiere <ra...@us...> on Sun May 23 16:24:02 CEST 2004
-# This file is part of PLplot and release under the terms of the GNU GPL.
+# This file is part of PLplot and released under the terms of the GNU GPL.
# No warranties.
my $nargin = scalar @ARGV;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ai...@us...> - 2013-08-13 11:40:23
|
Revision: 12482
http://sourceforge.net/p/plplot/code/12482
Author: airwin
Date: 2013-08-13 11:40:19 +0000 (Tue, 13 Aug 2013)
Log Message:
-----------
Remove fake system identifiers imposed by the perl scripts that parse
our DocBook XML source documentation.
Those identifiers were required before to work around the issue that
our source documentation incorrectly did not have a system identifier.
That has now been rectified with revision 12481 so the fake system
identifiers imposed by the perl scripts are no longer needed, and, in
fact, they must be removed because they conflict with the real system
identifier
"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd"
which is now configured into plplotdoc.xml(.in) so that
xmllint validation produces a good result.
Tested by Alan W. Irwin <ai...@us...> using the
cmake options -DBUILD_TEST=ON -DBUILD_DOC=ON and with the targets
check_swig_documentation, make_documentation, and all.
Revision Links:
--------------
http://sourceforge.net/p/plplot/code/12481
Modified Paths:
--------------
trunk/doc/docbook/bin/api2man.pl.in
trunk/doc/docbook/bin/api2swigdoc.pl
trunk/doc/docbook/bin/api2text.pl
trunk/doc/docbook/bin/info-clean.pl
Modified: trunk/doc/docbook/bin/api2man.pl.in
===================================================================
--- trunk/doc/docbook/bin/api2man.pl.in 2013-08-12 23:11:08 UTC (rev 12481)
+++ trunk/doc/docbook/bin/api2man.pl.in 2013-08-13 11:40:19 UTC (rev 12482)
@@ -62,7 +62,7 @@
open (MASTER, "< $ARGV[0]");
while (<MASTER>) {
if (/^(<!DOCTYPE.*)\[/) {
- $api .= "$1 \"\" [\n";
+ $api .= "$1 [\n";
}
elsif (/^<\?xml/) {
$api .= '<?xml version="1.0" standalone="yes"?>
Modified: trunk/doc/docbook/bin/api2swigdoc.pl
===================================================================
--- trunk/doc/docbook/bin/api2swigdoc.pl 2013-08-12 23:11:08 UTC (rev 12481)
+++ trunk/doc/docbook/bin/api2swigdoc.pl 2013-08-13 11:40:19 UTC (rev 12482)
@@ -70,7 +70,7 @@
open (MASTER, "< $ARGV[0]");
while (<MASTER>) {
if (/^(<!DOCTYPE.*)\[/) {
- $api .= "$1 \"\" [\n";
+ $api .= "$1 [\n";
}
elsif (/^<\?xml/) {
$api .= '<?xml version="1.0" standalone="yes"?>
Modified: trunk/doc/docbook/bin/api2text.pl
===================================================================
--- trunk/doc/docbook/bin/api2text.pl 2013-08-12 23:11:08 UTC (rev 12481)
+++ trunk/doc/docbook/bin/api2text.pl 2013-08-13 11:40:19 UTC (rev 12482)
@@ -66,7 +66,7 @@
open (MASTER, "< $ARGV[0]");
while (<MASTER>) {
if (/^(<!DOCTYPE.*)\[/) {
- $api .= "$1 \"\" [\n";
+ $api .= "$1 [\n";
}
elsif (/^<\?xml/) {
$api .= '<?xml version="1.0" standalone="yes"?>
Modified: trunk/doc/docbook/bin/info-clean.pl
===================================================================
--- trunk/doc/docbook/bin/info-clean.pl 2013-08-12 23:11:08 UTC (rev 12481)
+++ trunk/doc/docbook/bin/info-clean.pl 2013-08-13 11:40:19 UTC (rev 12482)
@@ -4,7 +4,7 @@
$intoc = 0;
while (<>) {
if (/(<!DOCTYPE.*)\[(.*)/) {
- print "$1 \"foobar\" [$2\n" ; next}
+ print "$1 [$2\n" ; next}
if (/(.*)<part(.*)>(.*)/) {
$inpart = 1;
print "$1<!--<part$2>";
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|