summaryrefslogtreecommitdiff
path: root/www/neowebscript/files/patch-init
diff options
context:
space:
mode:
authorMikhail Teterin <mi@FreeBSD.org>2001-10-28 08:37:27 +0000
committerMikhail Teterin <mi@FreeBSD.org>2001-10-28 08:37:27 +0000
commit40df45352156d24ae7ab2105eaf4b894900455f0 (patch)
tree5f9afb850e66875f994e795c1cb436bef20eb4b3 /www/neowebscript/files/patch-init
parentPrevent build from breaking when the user has incompatible version of (diff)
NeoWebScript[tm] is a module for the Apache webserver that allows you to
embed the Tcl/Tk programming language in your webpages as a scripting tool. It was invented by Karl Lehenbauer, NeoSoft's Chief Technical Officer, and documented, enhanced and extended by NeoSoft's programmers and technical writers. WWW: http://www.sourceforge.net/projects/nws/ The changes: . don't build the Apache, TclX, gd, db, neo-tcl bundled in the tarball, but use those that are installed by their ports . don't generate GIFs -- use PNGs . look in /var/log for Apache's log file . use /var/db/neowebscript for caches and per-user databases . expose some configuration knobs into the neowebscript.conf -- there should be no need to edit init.tcl itself anymore All of the bundled demos work, except for the gd-based banner generator. The demo code uses Gdtclft commands that don't exist in the modern Gdtclft.
Notes
Notes: svn path=/head/; revision=49283
Diffstat (limited to 'www/neowebscript/files/patch-init')
-rw-r--r--www/neowebscript/files/patch-init62
1 files changed, 62 insertions, 0 deletions
diff --git a/www/neowebscript/files/patch-init b/www/neowebscript/files/patch-init
new file mode 100644
index 000000000000..6858adf950a3
--- /dev/null
+++ b/www/neowebscript/files/patch-init
@@ -0,0 +1,62 @@
+--- ../neowebscript/init.tcl Wed Nov 24 19:47:41 1999
++++ ../neowebscript/init.tcl Sun Oct 28 03:07:00 2001
+@@ -18,5 +18,10 @@
+ #
+
+-set debugging 1
++package require Tclx
++if {[info exists NeoWebDirConf(debugging)]} {
++ set debugging $NeoWebDirConf(debugging)
++} else {
++ set debugging 0
++}
+ catch {rename copyfile ""}
+ catch {rename unsupported0 copyfile}
+@@ -25,9 +30,17 @@
+ set binPath [file join $server(SERVER_ROOT) bin]
+ set libPath [file join $server(SERVER_ROOT) lib]
+-set nwsPath [file join $server(SERVER_ROOT) neowebscript]
+-set logPath [file join $server(SERVER_ROOT) logs]
++set nwsPath [file dirname [info script]]
++set logPath /var/log
+
+-set parallelUserBase [file join $server(SERVER_ROOT) neowebscript neoscript-data users]
+-set parallelSystemBase [file join $server(SERVER_ROOT) neowebscript neoscript-data system]
++if {[info exists NeoWebDirConf(parallelUserBase)]} {
++ set parallelUserBase $NeoWebDirConf(parallelUserBase)
++} else {
++ set parallelUserBase /var/db/neowebscript/users
++}
++if {[info exists NeoWebDirConf(parallelSystemBase)]} {
++ set parallelSystemBase $NeoWebDirConf(parallelSystemBase)
++} else {
++ set parallelSystemBase /var/db/neowebscript/system
++}
+
+ set nwsLocalPath [file join $nwsPath nwslocal]
+@@ -299,5 +312,5 @@
+ set bytesPerLogEntry 131
+
+- set fp [open [file join $logPath access_log]]
++ set fp [open [file join $logPath httpd-access.log]]
+ set size [fstat $fp size]
+ set offset [expr $size - $hitsInInterval * $bytesPerLogEntry]
+@@ -313,5 +326,10 @@
+ if {$result < 0} {return 0}
+
+- set ET [expr [clock seconds] - [lindex $line 0]]
++ if {![regexp {\[([[:digit:]]{1,2})/(...)/([[:digit:]]{4}):([[:digit:]]{2}:[[:digit:]]{2}:[[:digit:]]{2})} \
++ [lindex $line 3] j day month year time]} {
++ return "unable to parse the log entry"
++ }
++
++ set ET [expr [clock seconds] - [clock scan "$time $month $day $year"]]
+ return [expr ($hitsInInterval * 3600) / $ET]
+ }
+@@ -404,4 +422,6 @@
+ $safeInterp alias remote_hostname remote_hostname
+ $safeInterp alias gm_timestr_822 gm_timestr_822
++
++ $safeInterp alias emit_full_header emit_full_header
+
+ if [interp issafe $safeInterp] {