public
Description: A lightweight and flexible website management system.
Homepage: http://webby.rubyforge.org/
Clone URL: git://github.com/TwP/webby.git
Search Repo:
Removing un-needed SVN goobers from lots of files

Went through all the files and removed the SVN $Id$ tags from the top of 
the
files (why am I so anal about these things?).

Fixed a small bug with the deploy task when using the scp publisher.
TwP (author)
Wed Apr 30 21:03:11 -0700 2008
commit  c2d0a3b3a51b91c8674e1cda401fc692ab0a13fa
tree    dc0ff367fa2acf82236754e38eee9514b5bef281
parent  d0079e617fafb928a75cf5b6d9132e34e7a92a4b
...
5
6
7
8
 
9
10
11
...
17
18
19
 
20
21
22
...
5
6
7
 
8
9
10
11
...
17
18
19
20
21
22
23
0
@@ -5,7 +5,7 @@
0
 ensure_in_path 'lib'
0
 require 'webby'
0
 
0
-task :default => 'spec:run'
0
+task :default => 'spec:specdoc'
0
 
0
 PROJ.name = 'webby'
0
 PROJ.summary = 'static website creation and management'
0
@@ -17,6 +17,7 @@
0
 PROJ.version = Webby::VERSION
0
 PROJ.release_name = 'Teetering Toddler'
0
 
0
+PROJ.ruby_opts = %w[-W0]
0
 PROJ.exclude << %w(^examples/[^/]+/output ^tasks/archive ^tags$)
0
 
0
 PROJ.rdoc.dir = 'doc/rdoc'
...
1
2
3
4
 
5
6
7
...
1
2
3
 
4
5
6
7
0
@@ -1,7 +1,7 @@
0
 #!/usr/bin/env ruby
0
 
0
 require File.expand_path(
0
- File.join(File.dirname(__FILE__), '..', 'lib', 'webby'))
0
+ File.join(File.dirname(__FILE__), %w[.. lib webby]))
0
 ::Webby::Main.run ARGV
0
 
0
 # EOF
...
1
2
3
4
...
 
1
2
3
0
@@ -1,4 +1,3 @@
0
-# $Id$
0
 
0
 load 'tasks/setup.rb'
0
 
...
13
14
15
16
 
17
18
19
...
13
14
15
 
16
17
18
19
0
@@ -13,7 +13,7 @@
0
   desc 'Deploy to the server using ssh'
0
   task :ssh do
0
     Rake::SshDirPublisher.new(
0
- SITE.host, SITE.remote_dir, SITE.output_dir
0
+ "#{SITE.user}@#{SITE.host}", SITE.remote_dir, SITE.output_dir
0
     ).upload
0
   end
0
 
...
13
14
15
16
 
17
18
19
...
13
14
15
 
16
17
18
19
0
@@ -13,7 +13,7 @@
0
   desc 'Deploy to the server using ssh'
0
   task :ssh do
0
     Rake::SshDirPublisher.new(
0
- SITE.host, SITE.remote_dir, SITE.output_dir
0
+ "#{SITE.user}@#{SITE.host}", SITE.remote_dir, SITE.output_dir
0
     ).upload
0
   end
0
 
...
1
2
3
4
5
...
 
 
1
2
3
0
@@ -1,5 +1,3 @@
0
-# $Id$
0
-
0
 # Equivalent to a header guard in C/C++
0
 # Used to prevent the spec helper from being loaded more than once
0
 unless defined? ::Webby
...
1
2
3
4
5
...
 
 
1
2
3
0
@@ -1,5 +1,3 @@
0
-# $Id$
0
-
0
 require 'directory_watcher'
0
 
0
 module Webby
...
1
2
3
4
5
...
 
 
1
2
3
0
@@ -1,5 +1,3 @@
0
-# $Id$
0
-
0
 require 'find'
0
 require 'fileutils'
0
 require 'erb'
...
1
2
3
4
5
...
 
 
1
2
3
0
@@ -1,5 +1,3 @@
0
-# $Id$
0
-
0
 module Webby
0
 module Filters
0
    
...
1
2
3
4
5
...
 
 
1
2
3
0
@@ -1,5 +1,3 @@
0
-# $Id$
0
-
0
 require 'hpricot'
0
 
0
 module Webby
...
1
2
3
4
5
...
 
 
1
2
3
0
@@ -1,5 +1,3 @@
0
-# $Id$
0
-
0
 require 'erb'
0
 
0
 # Render text via ERB using the built in ERB library.
...
1
2
3
4
5
...
 
 
1
2
3
0
@@ -1,5 +1,3 @@
0
-# $Id$
0
-
0
 try_require 'haml'
0
 
0
 # Render text via the Haml library
...
1
2
3
4
5
...
 
 
1
2
3
0
@@ -1,5 +1,3 @@
0
-# $Id$
0
-
0
 try_require 'bluecloth'
0
 
0
 # Render text via markdown using the BlueCloth library.
...
1
2
3
4
5
...
 
 
1
2
3
0
@@ -1,5 +1,3 @@
0
-# $Id$
0
-
0
 require 'hpricot'
0
 
0
 module Webby
...
1
2
3
4
5
...
 
 
1
2
3
0
@@ -1,5 +1,3 @@
0
-# $Id$
0
-
0
 try_require 'sass'
0
 
0
 # Render text via the Sass library (part of Haml)
...
1
2
3
4
5
...
 
 
1
2
3
0
@@ -1,5 +1,3 @@
0
-# $Id$
0
-
0
 try_require 'redcloth'
0
 
0
 # Render text via textile using the RedCloth library.
...
1
2
3
4
5
...
 
 
1
2
3
0
@@ -1,5 +1,3 @@
0
-# $Id$
0
-
0
 require 'fileutils'
0
 require 'tempfile'
0
 
...
1
2
3
4
5
...
 
 
1
2
3
0
@@ -1,5 +1,3 @@
0
-# $Id$
0
-
0
 require Webby.libpath(*%w[webby renderer])
0
 
0
 module Webby
...
1
2
3
4
5
...
 
 
1
2
3
0
@@ -1,5 +1,3 @@
0
-# $Id$
0
-
0
 if try_require 'coderay'
0
 require 'enumerator'
0
 
...
1
2
3
4
5
...
 
 
1
2
3
0
@@ -1,5 +1,3 @@
0
-# $Id$
0
-
0
 require 'fileutils'
0
 require 'tempfile'
0
 
...
1
2
3
4
5
...
 
 
1
2
3
0
@@ -1,5 +1,3 @@
0
-# $Id$
0
-
0
 require 'erb'
0
 require 'set'
0
 
...
1
2
3
4
5
...
 
 
1
2
3
0
@@ -1,5 +1,3 @@
0
-# $Id$
0
-
0
 require Webby.libpath(*%w[webby stelan mktemp])
0
 require 'fileutils'
0
 
...
1
2
3
4
5
...
 
 
1
2
3
0
@@ -1,5 +1,3 @@
0
-# $Id$
0
-
0
 # This code was provided by Guillaume Carbonneau -- http://radr.ca/
0
 # Many thanks for his support of Webby!
0
 
...
1
2
3
4
5
...
 
 
1
2
3
0
@@ -1,5 +1,3 @@
0
-# $Id$
0
-
0
 module Webby::Helpers
0
 
0
 #
...
1
2
3
4
5
...
 
 
1
2
3
0
@@ -1,5 +1,3 @@
0
-# $Id$
0
-
0
 require 'hpricot'
0
 require 'open-uri'
0
 
...
1
2
3
4
5
...
 
 
1
2
3
0
@@ -1,5 +1,3 @@
0
-# $Id$
0
-
0
 require 'fileutils'
0
 require 'find'
0
 require 'optparse'
...
1
2
3
4
5
...
 
 
1
2
3
0
@@ -1,5 +1,3 @@
0
-# $Id$
0
-
0
 # Equivalent to a header guard in C/C++
0
 # Used to prevent the spec helper from being loaded more than once
0
 unless defined? ::Webby::Renderer
...
1
2
3
4
5
...
 
 
1
2
3
0
@@ -1,5 +1,3 @@
0
-# $Id$
0
-
0
 module Webby::Resources
0
 
0
   class << self
...
1
2
3
4
5
...
 
 
1
2
3
0
@@ -1,5 +1,3 @@
0
-# $Id$
0
-
0
 module Webby::Resources
0
 
0
 # A rudimentary "database" for holding resource objects and finding them.
...
1
2
3
4
5
...
 
 
1
2
3
0
@@ -1,5 +1,3 @@
0
-# $Id$
0
-
0
 require 'yaml'
0
 
0
 module Webby::Resources
...
1
2
3
4
5
...
 
 
1
2
3
0
@@ -1,5 +1,3 @@
0
-# $Id$
0
-
0
 require Webby.libpath(*%w[webby resources resource])
0
 
0
 module Webby::Resources
...
1
2
3
4
5
...
 
 
1
2
3
0
@@ -1,5 +1,3 @@
0
-# $Id$
0
-
0
 require Webby.libpath(*%w[webby resources resource])
0
 
0
 module Webby::Resources
...
1
2
3
4
5
...
 
 
1
2
3
0
@@ -1,5 +1,3 @@
0
-# $Id$
0
-
0
 require Webby.libpath(*%w[webby resources resource])
0
 
0
 module Webby::Resources
...
1
2
3
4
5
...
 
 
1
2
3
0
@@ -1,5 +1,3 @@
0
-# $Id$
0
-
0
 unless defined? Webby::Resources::Resource
0
 
0
 module Webby::Resources
...
1
2
3
4
5
...
 
 
1
2
3
0
@@ -1,5 +1,3 @@
0
-# $Id$
0
-
0
 require Webby.libpath(*%w[webby resources resource])
0
 
0
 module Webby::Resources
...
1
2
3
4
5
...
 
 
1
2
3
0
@@ -1,5 +1,3 @@
0
-# $Id$
0
-
0
 # :stopdoc:
0
 # Skeleton module for the 'mktemp' routine.
0
 #
...
1
2
3
4
5
...
 
 
1
2
3
0
@@ -1,5 +1,3 @@
0
-# $Id$
0
-
0
 require 'rbconfig'
0
 require 'thread'
0
 require 'tempfile'
...
1
2
3
4
5
...
 
 
1
2
3
0
@@ -1,5 +1,3 @@
0
-# $Id$
0
-
0
 # :stopdoc:
0
 module Enumerable
0
   def injecting( initial )
...
1
2
3
4
5
...
9
10
11
12
13
 
14
15
16
...
 
 
1
2
3
...
7
8
9
 
 
10
11
12
13
0
@@ -1,5 +1,3 @@
0
-# $Id$
0
-
0
 # Equivalent to a header guard in C/C++
0
 # Used to prevent the spec helper from being loaded more than once
0
 unless defined? WEBBY_SPEC_HELPER
0
@@ -9,8 +7,7 @@
0
 require 'fileutils'
0
 
0
 require File.expand_path(
0
- File.join(File.dirname(__FILE__), '..', 'lib', 'webby'))
0
-
0
+ File.join(File.dirname(__FILE__), %w[.. lib webby]))
0
 
0
 end # unless defined?
0
 
...
1
2
3
4
...
 
1
2
3
0
@@ -1,4 +1,3 @@
0
-# $Id$
0
 
0
 require ::File.join(::File.dirname(__FILE__), %w[.. .. spec_helper])
0
 

Comments

    No one has commented yet.