[misc] fix the access log format for user names; update config.guess/config.sub

Some miscellaneous fixes.

  Defect Number:
    Reviewed By:
   Testing Done:
pull/69/head
Timothy Stack 11 years ago
parent ef6380d03e
commit 9f7ed7f095

1242
config.guess vendored

File diff suppressed because it is too large Load Diff

598
config.sub vendored

File diff suppressed because it is too large Load Diff

@ -11,7 +11,7 @@
"pattern" : "^(?<timestamp>\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}(?:\\.\\d{3})?) (?<c_ip>[^ ]+) (?<cs_username>[^ ]+) (?<cs_method>[A-Z]+) \"(?<cs_uri_stem>[^ \\?]+)(?:\\?(?<cs_uri_query>[^ ]*))?\" (?:-1|\\d+) (?<sc_status>\\d+) \\d+"
},
"std" : {
"pattern" : "^(?<c_ip>[\\w\\.:\\-]+) [\\w\\.\\-]+ (?<cs_username>[\\w\\.\\-]+) \\[(?<timestamp>[^\\]]+)\\] \"(?:\\-|(?<cs_method>\\w+) (?<cs_uri_stem>[^ \\?]+)(?:\\?(?<cs_uri_query>[^ ]*))? (?<cs_version>[\\w/\\.]+))\" (?<sc_status>\\d+) (?<sc_bytes>\\d+|-)(?: \"(?<cs_referer>[^\"]+)\" \"(?<cs_user_agent>[^\"]+)\")?.*"
"pattern" : "^(?<c_ip>[\\w\\.:\\-]+) [\\w\\.\\-]+ (?<cs_username>\\S+) \\[(?<timestamp>[^\\]]+)\\] \"(?:\\-|(?<cs_method>\\w+) (?<cs_uri_stem>[^ \\?]+)(?:\\?(?<cs_uri_query>[^ ]*))? (?<cs_version>[\\w/\\.]+))\" (?<sc_status>\\d+) (?<sc_bytes>\\d+|-)(?: \"(?<cs_referer>[^\"]+)\" \"(?<cs_user_agent>[^\"]+)\")?.*"
}
},
"level-field": "sc_status",

@ -159,6 +159,10 @@ public:
if (ww && scroll_down && this->lv_top < this->get_top_for_last_row()) {
this->lv_top = this->get_top_for_last_row();
}
if (ww) {
this->lv_left = 0;
}
this->set_needs_update();
};
bool get_word_wrap() const { return this->lv_word_wrap; };

Loading…
Cancel
Save