[webkit-changes] cvs commit: WebKitTools ChangeLog checkout

Eric eseidel at opensource.apple.com
Mon Dec 5 18:16:57 PST 2005


eseidel     05/12/05 18:16:56

  Modified:    .        ChangeLog checkout
  Log:
  Bug #: none
  Submitted by: eseidel
  Reviewed by: mjs
          * checkout: remove --svg support, SVG is now checked out by default
  
  Revision  Changes    Path
  1.125     +6 -0      WebKitTools/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /cvs/root/WebKitTools/ChangeLog,v
  retrieving revision 1.124
  retrieving revision 1.125
  diff -u -r1.124 -r1.125
  --- ChangeLog	30 Nov 2005 00:03:20 -0000	1.124
  +++ ChangeLog	6 Dec 2005 02:16:56 -0000	1.125
  @@ -1,3 +1,9 @@
  +2005-12-05  Eric Seidel  <eseidel at apple.com>
  +
  +        Reviewed mjs.
  +
  +        * checkout: remove --svg support, SVG is now checked out by default
  +
   2005-11-29  Eric Seidel  <eseidel at apple.com>
   
           Reviewed by darin.
  
  
  
  1.6       +3 -18     WebKitTools/checkout
  
  Index: checkout
  ===================================================================
  RCS file: /cvs/root/WebKitTools/checkout,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- checkout	21 Nov 2005 09:36:51 -0000	1.5
  +++ checkout	6 Dec 2005 02:16:56 -0000	1.6
  @@ -31,10 +31,8 @@
   use strict;
   use Getopt::Long;
   
  -my $includeSVG = 0;
   my $includeTests = 1;
  -GetOptions('svg' => \$includeSVG,
  -           'tests!' => \$includeTests);
  +GetOptions('tests!' => \$includeTests);
   
   # Check that we're in the right directory.
   if (! -d "WebKitTools") {
  @@ -56,29 +54,16 @@
   print "CVS root is $root\n";
   print "Checking out WebKitTools (again), JavaScriptCore, WebCore, WebKitLibraries";
   print ", LayoutTests" if $includeTests;
  -if ($includeSVG) {
  -    print ", WebKit and SVGSupport\n";
  -} else {
  -    print " and WebKit\n";
  -}
  +print " and WebKit\n";
  +
   my $directories = "WebKitTools JavaScriptCore WebCore WebKitLibraries WebKit";
   $directories .= " LayoutTests" if $includeTests;
  -$directories .= " SVGSupport" if $includeSVG;
   open CVS, "cvs -d '$root' co -P $directories |" or die;
   while (<CVS>) {
       print;
   }
   close CVS;
   
  -if ($includeSVG) {
  -    # Make the necessary symlinks
  -    print "\nCreating symlinks (kdom, kcanvas, ksvg2, WebCore+SVG, svg-tests) from WebCore into SVGSupport\n";
  -    symlink("../SVGSupport/kcanvas", "WebCore/kcanvas");
  -    symlink("../SVGSupport/ksvg2", "WebCore/ksvg2");
  -    symlink("../SVGSupport/WebCore+SVG", "WebCore/WebCore+SVG");
  -    symlink("../SVGSupport/layout-tests", "WebCore/svg-tests");
  -}
  -
   # Ready to build.
   print "\n";
   print "===============================================================\n";
  
  
  



More information about the webkit-changes mailing list