auroraeosrose Mon, 05 Oct 2009 16:45:52 +0000
Revision:
http://svn.php.net/viewvc?view=revision&revision=289222Log:
A few cvs -> svn fixes - doesnt' begin to get all of them but it's a start
Changed paths:
U gtk/php-gtk-doc/trunk/manual/en/tutorials/doccing.xml
U gtk/php-gtk-doc/trunk/manual/global.ent
U gtk/php-gtk-doc/trunk/scripts/copy_images.php
U gtk/php-gtk-doc/trunk/scripts/gen_chapterents.php
U gtk/php-gtk-doc/trunk/scripts/genchapterents.php.in
Modified: gtk/php-gtk-doc/trunk/manual/en/tutorials/doccing.xml
===================================================================
--- gtk/php-gtk-doc/trunk/manual/en/tutorials/doccing.xml 2009-10-05 16:42:00 UTC (rev 289221)
+++ gtk/php-gtk-doc/trunk/manual/en/tutorials/doccing.xml 2009-10-05 16:45:52 UTC (rev 289222)
@@ -17,8 +17,8 @@
<para>
The source for this documentation, along with the PHP-GTK 2 source and
everything else that comes under the PHP project umbrella, resides on the
- PHP project's CVS server at
- <ulink url="
http://cvs.php.net">cvs.php.net</ulink>. It is loosely
+ PHP project's SVN server at
+ <ulink url="
http://svn.php.net">svn.php.net</ulink>. It is loosely
based on an XML dialect called <emphasis>DocBook</emphasis>, which was
designed to be used for books and other forms of technical documentation.
The reason the PHP-GTK documentation project can't adhere to strict DocBook
@@ -97,14 +97,14 @@
<title>Checking out</title>
<para>
Before we can start changing or even compiling the manual, we need to get
- a copy from CVS. To accomplish this, you will need a CVS client. On nearly
- every Linux system, the command line <literal>cvs</literal> tool is
+ a copy from SVN. To accomplish this, you will need an SVN client. On nearly
+ every Linux system, the command line <literal>svn</literal> tool is
installed. This is also available via cygwin. Under Windows, there are
- native point-and-click CVS clients available, such as
- <ulink url="
http://www.tortoisecvs.org/">Tortoise CVS</ulink>.
+ native point-and-click SVN clients available, such as
+ <ulink url="
http://www.tortoisesvn.org/">Tortoise SVN</ulink>.
</para>
<para>
- To get a copy of the docs using the <literal>cvs</literal> command line
+ To get a copy of the docs using the <literal>svn</literal> command line
tool, type:
<command>cvs -d :pserver:
cvsread@...:/repository co -P php-gtk-doc</command>
</para>
Modified: gtk/php-gtk-doc/trunk/manual/global.ent
===================================================================
--- gtk/php-gtk-doc/trunk/manual/global.ent 2009-10-05 16:42:00 UTC (rev 289221)
+++ gtk/php-gtk-doc/trunk/manual/global.ent 2009-10-05 16:45:52 UTC (rev 289222)
@@ -23,7 +23,7 @@
<!ENTITY url.pear "
http://pear.php.net/">
<!ENTITY url.pear.gtk2 "
http://pear.php.net/packages.php?catpid=53&catname=Gtk2+Components">
<!ENTITY url.php "
http://www.php.net/">
-<!ENTITY url.php.anoncvs "
http://www.php.net/anoncvs.php">
+<!ENTITY url.php.anoncvs "
http://www.php.net/svn.php">
<!ENTITY url.php.download "
http://www.php.net/downloads.php">
<!ENTITY url.php.snapshots "
http://snaps.php.net/">
<!ENTITY url.phpgtk "
http://gtk.php.net/">
Modified: gtk/php-gtk-doc/trunk/scripts/copy_images.php
===================================================================
--- gtk/php-gtk-doc/trunk/scripts/copy_images.php 2009-10-05 16:42:00 UTC (rev 289221)
+++ gtk/php-gtk-doc/trunk/scripts/copy_images.php 2009-10-05 16:45:52 UTC (rev 289222)
@@ -16,7 +16,7 @@
if ($handle = opendir($src)) {
chdir($src);
while (false !== ($file = readdir($handle))) {
- if ($file != "." && $file != ".." && $file != "CVS") {
+ if ($file != "." && $file != ".." && $file != "CVS" && $file != '.svn') {
$fulldest = $dest.substr(getcwd(), strpos(getcwd(), 'images')-1)."/$file";
if (is_dir($file)) {
if (!file_exists($fulldest))
Modified: gtk/php-gtk-doc/trunk/scripts/gen_chapterents.php
===================================================================
--- gtk/php-gtk-doc/trunk/scripts/gen_chapterents.php 2009-10-05 16:42:00 UTC (rev 289221)
+++ gtk/php-gtk-doc/trunk/scripts/gen_chapterents.php 2009-10-05 16:45:52 UTC (rev 289222)
@@ -23,7 +23,7 @@
global $entities, $lang;
$dir_handle = opendir($path);
while ($file = readdir($dir_handle)) {
- if (($file != "CVS") && ($file != ".cvsignore") && ($file != ".") && ($file != "..")) {
+ if (($file != "CVS") && ($file != ".cvsignore") && ($file != ".svn") && ($file != ".") && ($file != "..")) {
if (is_dir($path."/".$file)) {
gen_dir_ents($path."/".$file);
} else {
Modified: gtk/php-gtk-doc/trunk/scripts/genchapterents.php.in
===================================================================
--- gtk/php-gtk-doc/trunk/scripts/genchapterents.php.in 2009-10-05 16:42:00 UTC (rev 289221)
+++ gtk/php-gtk-doc/trunk/scripts/genchapterents.php.in 2009-10-05 16:45:52 UTC (rev 289222)
@@ -27,7 +27,7 @@
$dir_handle = opendir($langdir);
while($file = readdir($dir_handle))
{
- if (($file != "CVS") && ($file != ".cvsignore") && ($file != ".") && ($file != ".."))
+ if (($file != "CVS") && ($file != ".cvsignore") && ($file != ".svn") && ($file != ".") && ($file != ".."))
{
if(is_dir($langdir."/".$file))
{
--
PHP-GTK Documentation Mailing List (
http://gtk.php.net/)
To unsubscribe, visit:
http://www.php.net/unsub.php