summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/README2
-rwxr-xr-xscripts/astyle.sh3
-rwxr-xr-xscripts/buildnr.pl4
-rwxr-xr-xscripts/checkperl.sh2
-rwxr-xr-xscripts/config.pl6
-rwxr-xr-xscripts/makedist.sh2
-rwxr-xr-xscripts/screen.sh2
-rwxr-xr-xscripts/setglobvals.pl2
-rwxr-xr-xscripts/stats.pl2
-rwxr-xr-xscripts/version.sh6
10 files changed, 15 insertions, 16 deletions
diff --git a/scripts/README b/scripts/README
index 189b169..4a94391 100644
--- a/scripts/README
+++ b/scripts/README
@@ -1,4 +1,4 @@
-All scripts should be run from the yChat main directory, example:
+All scripts should be run from the yhttpd main directory, example:
./scripts/makeyhttpd.pl
diff --git a/scripts/astyle.sh b/scripts/astyle.sh
index 757364e..8f67195 100755
--- a/scripts/astyle.sh
+++ b/scripts/astyle.sh
@@ -1,6 +1,5 @@
#!/bin/sh
-
-# The yChat Project (2004, 2005)
+# The yhttpd Project (2004)
#
# This uses "astyle" to format C++ code into a specific code style!
diff --git a/scripts/buildnr.pl b/scripts/buildnr.pl
index ee3d3e2..edfffd6 100755
--- a/scripts/buildnr.pl
+++ b/scripts/buildnr.pl
@@ -1,8 +1,8 @@
#!/usr/bin/perl
-# The yChat Project (2003)
+# The yhttpd Project (2003)
#
-# This script increases the BUILNR of msgs,h each time the yChat
+# This script increases the BUILNR of msgs,h each time the yhttpd
# gets recompiled!
use strict;
diff --git a/scripts/checkperl.sh b/scripts/checkperl.sh
index fa5e98f..642938b 100755
--- a/scripts/checkperl.sh
+++ b/scripts/checkperl.sh
@@ -1,5 +1,5 @@
#!/bin/sh
-# The yChat Project (2005)
+# The yhttpd Project (2005)
#
# This scripts checks for a perl installation
diff --git a/scripts/config.pl b/scripts/config.pl
index 79b1c49..af58012 100755
--- a/scripts/config.pl
+++ b/scripts/config.pl
@@ -1,6 +1,6 @@
#!/usr/bin/perl
-# The yChat Project (2004, 2005)
+# The yhttpd Project (2004, 2005)
#
# This script modifues the src/glob.h file.
@@ -8,11 +8,11 @@ use strict;
use scripts::modules::file;
print <<END;
-Welcome to the yChat configurator!
+Welcome to the yhttpd configurator!
You may also edit the src/glob.h file manually instead of using
this configurator option. Please also notice that this are only
before-compile options. All setups which can be made after com-
-iling are placed in the yChat configuration file.
+iling are placed in the yhttpd configuration file.
END
my $sep = "================================================================\n";
diff --git a/scripts/makedist.sh b/scripts/makedist.sh
index 6c51a07..0814611 100755
--- a/scripts/makedist.sh
+++ b/scripts/makedist.sh
@@ -1,5 +1,5 @@
#!/bin/sh
-# The yChat Project (2005)
+# The yhttpd Project (2005)
#
# This script creates a .tar.bz2 ball.
diff --git a/scripts/screen.sh b/scripts/screen.sh
index 6d5b7aa..5c227fc 100755
--- a/scripts/screen.sh
+++ b/scripts/screen.sh
@@ -1,3 +1,3 @@
#!/bin/sh
-screen -S ychat ./bin/ychat
+screen -S yhttpd ./bin/yhttpd
diff --git a/scripts/setglobvals.pl b/scripts/setglobvals.pl
index 13288a5..1ee1de4 100755
--- a/scripts/setglobvals.pl
+++ b/scripts/setglobvals.pl
@@ -1,6 +1,6 @@
#!/usr/bin/perl
-# The yChat Project (2003)
+# The yhttpd Project (2003)
#
# This script sets up some variables in src/glob.h
diff --git a/scripts/stats.pl b/scripts/stats.pl
index b55bc9e..96fbdf1 100755
--- a/scripts/stats.pl
+++ b/scripts/stats.pl
@@ -76,7 +76,7 @@ sub filestats
$stats{"Number of script files"}++;
$stats{"Lines of scripts"} += countlines($shift);
}
- elsif ( $shift =~ /(\.txt|README|INSTALL|COPYING|NEWS|SNAPSHOT|ChangeLog)$/ )
+ elsif ( $shift =~ /(\.txt|[A-Z]+)$/ )
{
$stats{"Number of text files"}++;
$stats{"Lines of text"} += countlines($shift);
diff --git a/scripts/version.sh b/scripts/version.sh
index 46b9fc5..50c189c 100755
--- a/scripts/version.sh
+++ b/scripts/version.sh
@@ -1,11 +1,11 @@
#!/bin/sh
-# The yChat Project (2005)
+# The yhttpd Project (2005)
#
-# This script shows yChat VERSION-BRANCH Build BUILDNUMBER
+# This script shows yhttpd VERSION-BRANCH Build BUILDNUMBER
version=`grep VERSION src/msgs.h | head -n 1 | cut -d'"' -f2`
branch=`grep BRANCH src/msgs.h | head -n 1 | cut -d'"' -f2`
build=`grep BUILD src/msgs.h | tail -n 1 | cut -d' ' -f3`
-echo "yChat $version-$branch Build $build"
+echo "yhttpd $version-$branch Build $build"