mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
518 B
25 lines
518 B
module WEBrick
|
|
module AccessLog
|
|
class AccessLogError < StandardError
|
|
end
|
|
|
|
CLF_TIME_FORMAT: String
|
|
|
|
COMMON_LOG_FORMAT: String
|
|
|
|
CLF: String
|
|
|
|
REFERER_LOG_FORMAT: String
|
|
|
|
AGENT_LOG_FORMAT: String
|
|
|
|
COMBINED_LOG_FORMAT: String
|
|
|
|
def self?.setup_params: (Hash[Symbol, untyped] config, HTTPRequest req, HTTPResponse res) -> Hash[String, untyped]
|
|
|
|
def self?.format: (String format_string, Hash[String, untyped] params) -> String
|
|
|
|
def self?.escape: (String data) -> String
|
|
end
|
|
end
|