cvs: SVNROOT / run-conversion.php

[email protected] ("Gwynne Raskind") Thu, 09 Jul 2009 02:28:19 -0000
Newsgroups svn.migration
Message-ID <cvsgwynne1247106499@cvsserver>
gwynne		Thu Jul  9 02:28:19 2009 UTC

  Modified files:              
    /SVNROOT	run-conversion.php 
  Log:
  per Philip's request, doc-editor now goes under web/
  
http://cvs.php.net/viewvc.cgi/SVNROOT/run-conversion.php?r1=1.72&r2=1.73&diff_format=u
Index: SVNROOT/run-conversion.php
diff -u SVNROOT/run-conversion.php:1.72 SVNROOT/run-conversion.php:1.73
--- SVNROOT/run-conversion.php:1.72	Thu Jul  9 00:56:25 2009
+++ SVNROOT/run-conversion.php	Thu Jul  9 02:28:17 2009
@@ -7,7 +7,7 @@
 
 // -----------------------------------------------------------------------------------------------------------------------------
 // Constants
-$version = substr('$Revision: 1.72 $', strlen('$Revision: '), -2);
+$version = substr('$Revision: 1.73 $', strlen('$Revision: '), -2);
 
 $passes = array(
     'svncreate',        // Create various SVN repositories
@@ -405,7 +405,7 @@
             $converter->addCVSModule("pear/{$cvs_module}", $cvs_module == 'packages');
         // Modules belonging to websites, including the presentation, bugtracker, and pecl4win modules, go into cvs/web/<module>
         //  All modules that end in web are matched, and added with the "-?web" suffix stripped.
-        } else if (substr($cvs_module, -3) == "web" || in_array($cvs_module, array('pres2', 'presentations', 'pecl4win'))) {
+        } else if (substr($cvs_module, -3) == "web" || in_array($cvs_module, array('pres2', 'presentations', 'pecl4win', 'doc-editor'))) {
             if (substr($cvs_module, -4) == '-web') {
                 $dest_cvs_module = substr($cvs_module, 0, -4);
             } else if (substr($cvs_module, -3) == 'web') {
@@ -417,7 +417,7 @@
             $converter->addCVSModule("web/{$dest_cvs_module}");
         // Modules belonging to phpdoc (especially doc-base, see renamings) go into cvs/phpdoc/<module>
         //  All modules matching "phpdoc-(.*)" are matched, and added with the "phpdoc-" prefix stripped.
-        } else if (strncmp($cvs_module, "phpdoc", 6) == 0 || $cvs_module == 'doc-base' || $cvs_module == 'doc-editor') {
+        } else if (strncmp($cvs_module, "phpdoc", 6) == 0 || $cvs_module == 'doc-base') {
             if (substr($cvs_module, 0, 7) == 'phpdoc-') {
                 $dest_cvs_module = substr($cvs_module, 7);
             } else {