From: Will Budicm Date: Fri, 22 May 2020 00:25:12 +0000 (+1000) Subject: Autocompletion wor length limit, implemented. X-Git-Url: https://lifelog.hopto.org/gitweb/?a=commitdiff_plain;h=0fefbb896fe42027f8476ade63ac6eb36577f965;p=LifeLog.git Autocompletion wor length limit, implemented. --- diff --git a/Current Development Check List.md b/Current Development Check List.md index 71d1b48..ff3ea4f 100644 --- a/Current Development Check List.md +++ b/Current Development Check List.md @@ -8,8 +8,8 @@ This version is not compatible in data structure to prior versions. Data migrati ### v.2.0 SUN STABLE Encountered -* Autocompletion picks up long false words, in html and code type messages. * Multiple search views and their settings, should be preserved as last preset. Maybe even have name multiple ones in a dropdown. +* ✔ Autocompletion picks up long false words, in html and code type messages. ### v.1.8 SUN STABLE Encountered diff --git a/htdocs/cgi-bin/main.cgi b/htdocs/cgi-bin/main.cgi index 728dc2d..ba61121 100755 --- a/htdocs/cgi-bin/main.cgi +++ b/htdocs/cgi-bin/main.cgi @@ -1058,17 +1058,6 @@ undef($sss); exit; -# http://localhost:8080/cgi-bin/main.cgi? -# date=2020-02-27+11%3A05%3A28& -# log=new -# &am= -# &amf=0 -# &ec=92 - - -# &submit_is_edit=0&submit_is_view=0&rs_all=0&rs_cur=0&rs_prev=332 - - sub processSubmit { my $date = $cgi->param('date'); @@ -1328,7 +1317,7 @@ sub authenticate { sub fetchAutocomplete { my $st = traceDBExe('SELECT LOG from LOG' . $stmE ); while ( my @row = $st->fetchrow_array() ) { - my $log = $row[0]; + my ($wl,$log) = ("",$row[0]); #Decode escaped \\n $log =~ s/\\n/\n/gs; @@ -1348,7 +1337,8 @@ sub fetchAutocomplete { #remove all non alphanumerics $word =~ s/[^a-zA-Z]//gs; - if ( length($word) > 2 ) { + $wl = length($word); + if ( $wl > 2 && $wl < Settings::autoWordLength()) { $word = lc $word; #parse for already placed words, instead of using an hash. my $idx = index( $autowords, $word, 0 ); diff --git a/htdocs/cgi-bin/system/modules/Settings.pm b/htdocs/cgi-bin/system/modules/Settings.pm index d1898bd..4531f9f 100644 --- a/htdocs/cgi-bin/system/modules/Settings.pm +++ b/htdocs/cgi-bin/system/modules/Settings.pm @@ -28,6 +28,7 @@ our $AUTHORITY = ''; our $IMG_W_H = '210x120'; our $REC_LIMIT = 25; our $AUTO_WRD_LMT = 1000; +our $AUTO_WRD_LEN = 17; #Autocompletion word length limit. Internal. our $VIEW_ALL_LMT = 1000; our $FRAME_SIZE = 0; our $RTF_SIZE = 0; @@ -35,6 +36,7 @@ our $THEME = 'Standard'; our $TRACK_LOGINS = 1; our $KEEP_EXCS = 0; + #Annons here, variables that could be overiden in code or database, per need. my %anons = (); @@ -65,6 +67,7 @@ sub frameSize {return $FRAME_SIZE} sub universalDate {return $DATE_UNI;} sub recordLimit {return $REC_LIMIT} sub autoWordLimit {return $AUTO_WRD_LMT} +sub autoWordLength {return $AUTO_WRD_LEN} sub viewAllLimit {return $VIEW_ALL_LMT} sub trackLogins {return $TRACK_LOGINS} sub windowRTFSize {return $RTF_SIZE} diff --git a/log/thttpd.log b/log/thttpd.log index 07ebf60..d769447 100644 --- a/log/thttpd.log +++ b/log/thttpd.log @@ -15598,3 +15598,117 @@ 127.0.0.1 - - [08/May/2020:17:23:00 +1000] "GET /cgi-bin/wsrc/quill/quill.min.js.map HTTP/1.1" 304 0 "" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" 127.0.0.1 - - [08/May/2020:17:23:10 +1000] "GET /cgi-bin/data.cgi?chk=135&datediff=0 HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/main.cgi?date=2020-03-03+09%3A40%3A50&log=cooking+for+you&am=0.00&amf=0&ec=45&submit_is_edit=140&submit_is_view=0&rs_all=0&rs_cur=0&rs_prev=138&rs_page=&CGISESSID=27771ec" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" 127.0.0.1 - - [08/May/2020:17:23:16 +1000] "UNKNOWN UNKNOWN" 400 0 "" "" +127.0.0.1 - - [22/May/2020:09:46:11 +1000] "GET /favicon.ico HTTP/1.1" 404 0 "" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:09:46:16 +1000] "UNKNOWN UNKNOWN" 400 0 "" "" +127.0.0.1 - - [22/May/2020:09:46:16 +1000] "POST /cgi-bin/login_ctr.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?CGISESSID=08b27c84c643a1d33afcf0548131cd7a" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:09:46:17 +1000] "GET /cgi-bin/main.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/login_ctr.cgi?CGISESSID=08b27c84c643a1d33afcf0548131cd7a" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:09:46:17 +1000] "GET /cgi-bin/wsrc/main.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:09:46:17 +1000] "GET /cgi-bin/wsrc/main_sun.css HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:09:46:17 +1000] "GET /cgi-bin/wsrc/jquery-ui.css HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:09:46:17 +1000] "GET /cgi-bin/wsrc/jquery-ui.theme.css HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:09:46:17 +1000] "GET /cgi-bin/wsrc/jquery-ui-timepicker-addon.css HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:09:46:17 +1000] "GET /cgi-bin/wsrc/tip-yellowsimple/tip-yellowsimple.css HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:09:46:17 +1000] "GET /cgi-bin/wsrc/tip-skyblue/tip-skyblue.css HTTP/1.1" 404 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:09:46:17 +1000] "GET /cgi-bin/wsrc/quill/katex.min.css HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:09:46:17 +1000] "GET /cgi-bin/wsrc/quill/quill.snow.css HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:09:46:17 +1000] "GET /cgi-bin/wsrc/quill/monokai-sublime.min.css HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:09:46:17 +1000] "GET /cgi-bin/wsrc/jquery.sweet-dropdown.css HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:09:46:17 +1000] "GET /cgi-bin/wsrc/jquery.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:09:46:17 +1000] "GET /cgi-bin/wsrc/quill/katex.min.js HTTP/1.1" 200 126576 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:09:46:17 +1000] "GET /cgi-bin/wsrc/jquery-ui.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:09:46:17 +1000] "GET /cgi-bin/wsrc/jquery-ui-timepicker-addon.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:09:46:17 +1000] "GET /cgi-bin/wsrc/quill/highlight.min.js HTTP/1.1" 200 46003 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:09:46:17 +1000] "GET /cgi-bin/wsrc/quill/quill.min.js HTTP/1.1" 200 215348 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:09:46:17 +1000] "GET /cgi-bin/wsrc/jquery-ui-sliderAccess.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:09:46:17 +1000] "GET /cgi-bin/wsrc/jquery.poshytip.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:09:46:17 +1000] "GET /cgi-bin/wsrc/jscolor.js HTTP/1.1" 200 54093 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:09:46:17 +1000] "GET /cgi-bin/wsrc/moment.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:09:46:17 +1000] "GET /cgi-bin/wsrc/moment-timezone-with-data.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:09:46:17 +1000] "GET /cgi-bin/wsrc/jquery.sweet-dropdown.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:09:46:17 +1000] "GET /cgi-bin/wsrc/images/ui-icons_72a7cf_256x240.png HTTP/1.1" 200 4549 "http://localhost:8080/cgi-bin/wsrc/jquery-ui.theme.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:09:46:17 +1000] "GET /cgi-bin/wsrc/images/ui-bg_glass_80_d7ebf9_1x400.png HTTP/1.1" 200 164 "http://localhost:8080/cgi-bin/wsrc/jquery-ui.theme.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:09:46:17 +1000] "GET /cgi-bin/wsrc/images/ui-bg_highlight-hard_100_f2f5f7_1x100.png HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/wsrc/jquery-ui.theme.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:09:46:17 +1000] "GET /cgi-bin/wsrc/images/ui-icons_3d80b3_256x240.png HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/wsrc/jquery-ui.theme.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:09:46:17 +1000] "GET /cgi-bin/wsrc/tip-yellowsimple/tip-yellowsimple_arrows.gif HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/wsrc/tip-yellowsimple/tip-yellowsimple.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:09:46:24 +1000] "GET /cgi-bin/wsrc/images/ui-bg_glass_100_e4f1fb_1x400.png HTTP/1.1" 200 350 "http://localhost:8080/cgi-bin/wsrc/jquery-ui.theme.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:09:46:26 +1000] "GET /cgi-bin/wsrc/images/ui-bg_glass_50_3baae3_1x400.png HTTP/1.1" 200 163 "http://localhost:8080/cgi-bin/wsrc/jquery-ui.theme.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:03:50 +1000] "GET /cgi-bin/config.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:03:50 +1000] "GET /cgi-bin/wsrc/tip-skyblue/tip-skyblue.css HTTP/1.1" 404 0 "http://localhost:8080/cgi-bin/config.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:03:50 +1000] "GET /cgi-bin/wsrc/images/ui-bg_glass_80_d7ebf9_1x400.png HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/wsrc/jquery-ui.theme.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:03:56 +1000] "GET /cgi-bin/wsrc/images/ui-bg_glass_50_3baae3_1x400.png HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/wsrc/jquery-ui.theme.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:03:56 +1000] "GET /cgi-bin/config.cgi?var22=1&var20=1000&var12=0&var30=0&var24=0&var18=210x120&var32=0&var14=English&var8=..%2F..%2FdbLifeLog%2F&var5=80&var1=15&var26=1&var10=%2B30m&var28=Sun&var3=Australia%2FSydney&va HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/config.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:03:57 +1000] "GET /cgi-bin/wsrc/tip-skyblue/tip-skyblue.css HTTP/1.1" 404 0 "http://localhost:8080/cgi-bin/config.cgi?var22=1&var20=1000&var12=0&var30=0&var24=0&var18=210x120&var32=0&var14=English&var8=..%2F..%2FdbLifeLog%2F&var5=80&var1=15&var26=1&var10=%2B30m&var28=Sun&var3=" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:03:58 +1000] "GET /cgi-bin/main.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/config.cgi?var22=1&var20=1000&var12=0&var30=0&var24=0&var18=210x120&var32=0&var14=English&var8=..%2F..%2FdbLifeLog%2F&var5=80&var1=15&var26=1&var10=%2B30m&var28=Sun&var3=" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:03:59 +1000] "GET /cgi-bin/wsrc/tip-skyblue/tip-skyblue.css HTTP/1.1" 404 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:03:59 +1000] "GET /cgi-bin/wsrc/quill/katex.min.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:03:59 +1000] "GET /cgi-bin/wsrc/quill/highlight.min.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:04:04 +1000] "UNKNOWN UNKNOWN" 400 0 "" "" +127.0.0.1 - - [22/May/2020:10:04:17 +1000] "UNKNOWN UNKNOWN" 400 0 "" "" +127.0.0.1 - - [22/May/2020:10:04:23 +1000] "UNKNOWN UNKNOWN" 400 0 "" "" +127.0.0.1 - - [22/May/2020:10:21:50 +1000] "GET /cgi-bin/config.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:21:50 +1000] "GET /cgi-bin/wsrc/tip-skyblue/tip-skyblue.css HTTP/1.1" 404 0 "http://localhost:8080/cgi-bin/config.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:21:53 +1000] "GET /cgi-bin/main.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/config.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:21:53 +1000] "GET /cgi-bin/wsrc/tip-skyblue/tip-skyblue.css HTTP/1.1" 404 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:21:58 +1000] "UNKNOWN UNKNOWN" 400 0 "" "" +127.0.0.1 - - [22/May/2020:10:21:58 +1000] "UNKNOWN UNKNOWN" 400 0 "" "" +127.0.0.1 - - [22/May/2020:10:22:53 +1000] "GET /cgi-bin/main.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/config.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:22:53 +1000] "GET /cgi-bin/wsrc/main_sun.css HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:22:53 +1000] "GET /cgi-bin/wsrc/jquery-ui.css HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:22:53 +1000] "GET /cgi-bin/wsrc/jquery-ui.theme.css HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:22:53 +1000] "GET /cgi-bin/wsrc/jquery-ui-timepicker-addon.css HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:22:53 +1000] "GET /cgi-bin/wsrc/tip-skyblue/tip-skyblue.css HTTP/1.1" 404 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:22:53 +1000] "GET /cgi-bin/wsrc/tip-yellowsimple/tip-yellowsimple.css HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:22:53 +1000] "GET /cgi-bin/wsrc/quill/katex.min.css HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:22:53 +1000] "GET /cgi-bin/wsrc/quill/monokai-sublime.min.css HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:22:53 +1000] "GET /cgi-bin/wsrc/quill/quill.snow.css HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:22:53 +1000] "GET /cgi-bin/wsrc/jquery.sweet-dropdown.css HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:22:53 +1000] "GET /cgi-bin/wsrc/main.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:22:53 +1000] "GET /cgi-bin/wsrc/jquery.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:22:53 +1000] "GET /cgi-bin/wsrc/jquery-ui.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:22:53 +1000] "GET /cgi-bin/wsrc/jquery-ui-timepicker-addon.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:22:53 +1000] "GET /cgi-bin/wsrc/jquery-ui-sliderAccess.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:22:53 +1000] "GET /cgi-bin/wsrc/jquery.poshytip.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:22:53 +1000] "GET /cgi-bin/wsrc/quill/katex.min.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:22:53 +1000] "GET /cgi-bin/wsrc/quill/highlight.min.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:22:53 +1000] "GET /cgi-bin/wsrc/quill/quill.min.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:22:53 +1000] "GET /cgi-bin/wsrc/jscolor.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:22:53 +1000] "GET /cgi-bin/wsrc/moment.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:22:53 +1000] "GET /cgi-bin/wsrc/moment-timezone-with-data.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:22:53 +1000] "GET /cgi-bin/wsrc/jquery.sweet-dropdown.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:22:53 +1000] "GET /cgi-bin/wsrc/images/ui-icons_72a7cf_256x240.png HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/wsrc/jquery-ui.theme.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:22:53 +1000] "GET /cgi-bin/wsrc/images/ui-bg_glass_80_d7ebf9_1x400.png HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/wsrc/jquery-ui.theme.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:22:53 +1000] "GET /cgi-bin/wsrc/images/ui-bg_highlight-hard_100_f2f5f7_1x100.png HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/wsrc/jquery-ui.theme.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:22:53 +1000] "GET /cgi-bin/wsrc/images/ui-icons_3d80b3_256x240.png HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/wsrc/jquery-ui.theme.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:22:53 +1000] "GET /cgi-bin/wsrc/tip-yellowsimple/tip-yellowsimple_arrows.gif HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/wsrc/tip-yellowsimple/tip-yellowsimple.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:22:54 +1000] "GET /cgi-bin/wsrc/images/ui-bg_glass_100_e4f1fb_1x400.png HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/wsrc/jquery-ui.theme.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:23:12 +1000] "GET /cgi-bin/main.cgi HTTP/1.1" 200 25000 "http://localhost:8080/cgi-bin/config.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:23:12 +1000] "GET /cgi-bin/wsrc/main_sun.css HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:23:12 +1000] "GET /cgi-bin/wsrc/jquery-ui.css HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:23:12 +1000] "GET /cgi-bin/wsrc/jquery-ui.theme.css HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:23:12 +1000] "GET /cgi-bin/wsrc/jquery-ui-timepicker-addon.css HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:23:12 +1000] "GET /cgi-bin/wsrc/tip-skyblue/tip-skyblue.css HTTP/1.1" 404 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:23:12 +1000] "GET /cgi-bin/wsrc/tip-yellowsimple/tip-yellowsimple.css HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:23:12 +1000] "GET /cgi-bin/wsrc/quill/katex.min.css HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:23:12 +1000] "GET /cgi-bin/wsrc/quill/monokai-sublime.min.css HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:23:12 +1000] "GET /cgi-bin/wsrc/quill/quill.snow.css HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:23:12 +1000] "GET /cgi-bin/wsrc/jquery.sweet-dropdown.css HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:23:12 +1000] "GET /cgi-bin/wsrc/main.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:23:12 +1000] "GET /cgi-bin/wsrc/jquery.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:23:12 +1000] "GET /cgi-bin/wsrc/jquery-ui.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:23:12 +1000] "GET /cgi-bin/wsrc/jquery-ui-timepicker-addon.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:23:12 +1000] "GET /cgi-bin/wsrc/jquery-ui-sliderAccess.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:23:12 +1000] "GET /cgi-bin/wsrc/jquery.poshytip.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:23:12 +1000] "GET /cgi-bin/wsrc/quill/katex.min.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:23:12 +1000] "GET /cgi-bin/wsrc/quill/highlight.min.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:23:12 +1000] "GET /cgi-bin/wsrc/quill/quill.min.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:23:12 +1000] "GET /cgi-bin/wsrc/jscolor.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:23:12 +1000] "GET /cgi-bin/wsrc/moment.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:23:12 +1000] "GET /cgi-bin/wsrc/moment-timezone-with-data.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:23:12 +1000] "GET /cgi-bin/wsrc/jquery.sweet-dropdown.js HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/main.cgi" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:23:12 +1000] "GET /cgi-bin/wsrc/images/ui-icons_72a7cf_256x240.png HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/wsrc/jquery-ui.theme.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:23:12 +1000] "GET /cgi-bin/wsrc/images/ui-bg_glass_80_d7ebf9_1x400.png HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/wsrc/jquery-ui.theme.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:23:12 +1000] "GET /cgi-bin/wsrc/images/ui-bg_highlight-hard_100_f2f5f7_1x100.png HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/wsrc/jquery-ui.theme.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:23:13 +1000] "GET /cgi-bin/wsrc/images/ui-icons_3d80b3_256x240.png HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/wsrc/jquery-ui.theme.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:23:13 +1000] "GET /cgi-bin/wsrc/tip-yellowsimple/tip-yellowsimple_arrows.gif HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/wsrc/tip-yellowsimple/tip-yellowsimple.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:23:13 +1000] "GET /cgi-bin/wsrc/images/ui-bg_glass_100_e4f1fb_1x400.png HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/wsrc/jquery-ui.theme.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0" +127.0.0.1 - - [22/May/2020:10:23:14 +1000] "GET /cgi-bin/wsrc/images/ui-bg_glass_50_3baae3_1x400.png HTTP/1.1" 304 0 "http://localhost:8080/cgi-bin/wsrc/jquery-ui.theme.css" "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:76.0) Gecko/20100101 Firefox/76.0"