File: accesslog.rbs

package info (click to toggle)
ruby-webrick 1.9.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 756 kB
  • sloc: ruby: 7,781; sh: 4; makefile: 4
file content (24 lines) | stat: -rw-r--r-- 518 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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