Skip to content

Commit

Permalink
* comments
Browse files Browse the repository at this point in the history
  • Loading branch information
hipe committed Mar 22, 2010
1 parent 0a5d27d commit ce5241f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
12 changes: 4 additions & 8 deletions README.md 100644 → 100755
Expand Up @@ -7,14 +7,10 @@ realized it was kind of ridiculous needing a config file to manage a config file
in a perfect world, adding a new vhost *should* take only a few seconds. if you've done it many times it *does* take you a few minutes. writing this *did* take me many hours

you can:
- see a list of your vhosts in your httpd.conf whose doc root paths
are missing.
- see a list of your vhosts in your httpd.conf who don't have entries in
your /etc/hosts.
- see a list of entries in your /etc/hosts that don't have
corresponding vhosts.
- see a list of directories in your default vhost doc root directory that
don't have /etc/hosts entries. etc.
- see a list of your vhosts in your httpd.conf whose doc root paths are missing.
- see a list of your vhosts in your httpd.conf who don't have entries in your /etc/hosts.
- see a list of entries in your /etc/hosts that don't have corresponding vhosts.
- see a list of directories in your default vhost doc root directory that don't have /etc/hosts entries. etc.

Output pretty ascii tables for all of this.

Expand Down
10 changes: 9 additions & 1 deletion bin/vhost
Expand Up @@ -23,7 +23,7 @@ module Hipe
# So note that an exception caught from another library and 'enhanced'
# by this one will not be a kind of Hipe::Fail, only a kind of Hipe::Failey.

# So to have your bases covered, resuce Hipe::Failey or the subset of
# So to have your bases covered, rescue Hipe::Failey or the subset of
# Hipe::Failies that you care about rescuing.

module Failey; end
Expand All @@ -38,6 +38,8 @@ module Hipe

# AsciiFormattey last seen in f2fa2

# this guy was moved into ack-lite-parse and modified. if you
# want any more features, start with that one and note it there
module CliLitey
# if this thing exceeds 30 lines of code use hipe-core/interfacey
def cli_run(argv)
Expand Down Expand Up @@ -179,6 +181,12 @@ module Hipe
end

class AsciiTableLite
#
# For now this is the official home of this here in vhost.
# This is a simplified version of hipe-core/struct/table
# Note any other projects that copy paste this here:
# [none]
#

def initialize(*cols)
@cols = cols
Expand Down

0 comments on commit ce5241f

Please sign in to comment.