rouge 1.10.1 → 1.11.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (78) hide show
  1. checksums.yaml +4 -4
  2. data/lib/rouge/cli.rb +1 -1
  3. data/lib/rouge/demos/actionscript +4 -0
  4. data/lib/rouge/demos/apiblueprint +33 -0
  5. data/lib/rouge/demos/biml +38 -0
  6. data/lib/rouge/demos/ceylon +7 -0
  7. data/lib/rouge/demos/cmake +7 -0
  8. data/lib/rouge/demos/coq +11 -0
  9. data/lib/rouge/demos/d +16 -0
  10. data/lib/rouge/demos/eiffel +30 -0
  11. data/lib/rouge/demos/fortran +22 -0
  12. data/lib/rouge/demos/gradle +10 -0
  13. data/lib/rouge/demos/jinja +9 -0
  14. data/lib/rouge/demos/jsonnet +28 -0
  15. data/lib/rouge/demos/julia +11 -0
  16. data/lib/rouge/demos/nasm +26 -0
  17. data/lib/rouge/demos/objective_c +4 -0
  18. data/lib/rouge/demos/protobuf +5 -0
  19. data/lib/rouge/demos/shell_session +10 -0
  20. data/lib/rouge/demos/smarty +12 -0
  21. data/lib/rouge/demos/tap +5 -0
  22. data/lib/rouge/demos/twig +9 -0
  23. data/lib/rouge/demos/typescript +1 -0
  24. data/lib/rouge/demos/verilog +27 -0
  25. data/lib/rouge/demos/viml +14 -5
  26. data/lib/rouge/formatters/html_wrapper.rb +11 -0
  27. data/lib/rouge/formatters/terminal256.rb +1 -1
  28. data/lib/rouge/lexer.rb +4 -2
  29. data/lib/rouge/lexers/actionscript.rb +195 -0
  30. data/lib/rouge/lexers/apache.rb +23 -20
  31. data/lib/rouge/lexers/apache/keywords.yml +721 -410
  32. data/lib/rouge/lexers/apiblueprint.rb +51 -0
  33. data/lib/rouge/lexers/biml.rb +41 -0
  34. data/lib/rouge/lexers/c.rb +7 -2
  35. data/lib/rouge/lexers/ceylon.rb +123 -0
  36. data/lib/rouge/lexers/clojure.rb +1 -1
  37. data/lib/rouge/lexers/cmake.rb +206 -0
  38. data/lib/rouge/lexers/coffeescript.rb +1 -1
  39. data/lib/rouge/lexers/coq.rb +187 -0
  40. data/lib/rouge/lexers/cpp.rb +12 -1
  41. data/lib/rouge/lexers/csharp.rb +12 -5
  42. data/lib/rouge/lexers/css.rb +2 -0
  43. data/lib/rouge/lexers/d.rb +176 -0
  44. data/lib/rouge/lexers/diff.rb +9 -9
  45. data/lib/rouge/lexers/eiffel.rb +65 -0
  46. data/lib/rouge/lexers/fortran.rb +142 -0
  47. data/lib/rouge/lexers/gradle.rb +37 -0
  48. data/lib/rouge/lexers/groovy.rb +2 -2
  49. data/lib/rouge/lexers/ini.rb +2 -2
  50. data/lib/rouge/lexers/java.rb +11 -8
  51. data/lib/rouge/lexers/javascript.rb +2 -1
  52. data/lib/rouge/lexers/jinja.rb +137 -0
  53. data/lib/rouge/lexers/jsonnet.rb +151 -0
  54. data/lib/rouge/lexers/julia.rb +172 -0
  55. data/lib/rouge/lexers/markdown.rb +1 -0
  56. data/lib/rouge/lexers/nasm.rb +203 -0
  57. data/lib/rouge/lexers/objective_c.rb +11 -0
  58. data/lib/rouge/lexers/php.rb +1 -1
  59. data/lib/rouge/lexers/powershell.rb +1 -1
  60. data/lib/rouge/lexers/protobuf.rb +70 -0
  61. data/lib/rouge/lexers/python.rb +23 -0
  62. data/lib/rouge/lexers/r.rb +53 -20
  63. data/lib/rouge/lexers/ruby.rb +4 -4
  64. data/lib/rouge/lexers/rust.rb +2 -2
  65. data/lib/rouge/lexers/shell_session.rb +29 -0
  66. data/lib/rouge/lexers/smarty.rb +91 -0
  67. data/lib/rouge/lexers/sql.rb +1 -1
  68. data/lib/rouge/lexers/swift.rb +20 -5
  69. data/lib/rouge/lexers/tap.rb +91 -0
  70. data/lib/rouge/lexers/twig.rb +37 -0
  71. data/lib/rouge/lexers/typescript.rb +46 -0
  72. data/lib/rouge/lexers/verilog.rb +164 -0
  73. data/lib/rouge/regex_lexer.rb +1 -1
  74. data/lib/rouge/version.rb +1 -1
  75. data/rouge.gemspec +1 -1
  76. metadata +47 -6
  77. data/lib/rouge/formatters/html_inline.rb +0 -20
  78. data/lib/rouge/formatters/html_linewise.rb +0 -31
@@ -0,0 +1,195 @@
1
+ # -*- coding: utf-8 -*- #
2
+
3
+ module Rouge
4
+ module Lexers
5
+ class Actionscript < RegexLexer
6
+ title "ActionScript"
7
+ desc "ActionScript"
8
+
9
+ tag 'actionscript'
10
+ aliases 'as', 'as3'
11
+ filenames '*.as'
12
+ mimetypes 'application/x-actionscript'
13
+
14
+ state :comments_and_whitespace do
15
+ rule /\s+/, Text
16
+ rule %r(//.*?$), Comment::Single
17
+ rule %r(/\*.*?\*/)m, Comment::Multiline
18
+ end
19
+
20
+ state :expr_start do
21
+ mixin :comments_and_whitespace
22
+
23
+ rule %r(/) do
24
+ token Str::Regex
25
+ goto :regex
26
+ end
27
+
28
+ rule /[{]/, Punctuation, :object
29
+
30
+ rule //, Text, :pop!
31
+ end
32
+
33
+ state :regex do
34
+ rule %r(/) do
35
+ token Str::Regex
36
+ goto :regex_end
37
+ end
38
+
39
+ rule %r([^/]\n), Error, :pop!
40
+
41
+ rule /\n/, Error, :pop!
42
+ rule /\[\^/, Str::Escape, :regex_group
43
+ rule /\[/, Str::Escape, :regex_group
44
+ rule /\\./, Str::Escape
45
+ rule %r{[(][?][:=<!]}, Str::Escape
46
+ rule /[{][\d,]+[}]/, Str::Escape
47
+ rule /[()?]/, Str::Escape
48
+ rule /./, Str::Regex
49
+ end
50
+
51
+ state :regex_end do
52
+ rule /[gim]+/, Str::Regex, :pop!
53
+ rule(//) { pop! }
54
+ end
55
+
56
+ state :regex_group do
57
+ # specially highlight / in a group to indicate that it doesn't
58
+ # close the regex
59
+ rule /\//, Str::Escape
60
+
61
+ rule %r([^/]\n) do
62
+ token Error
63
+ pop! 2
64
+ end
65
+
66
+ rule /\]/, Str::Escape, :pop!
67
+ rule /\\./, Str::Escape
68
+ rule /./, Str::Regex
69
+ end
70
+
71
+ state :bad_regex do
72
+ rule /[^\n]+/, Error, :pop!
73
+ end
74
+
75
+ def self.keywords
76
+ @keywords ||= Set.new %w(
77
+ for in while do break return continue switch case default
78
+ if else throw try catch finally new delete typeof is
79
+ this with
80
+ )
81
+ end
82
+
83
+ def self.declarations
84
+ @declarations ||= Set.new %w(var with function)
85
+ end
86
+
87
+ def self.reserved
88
+ @reserved ||= Set.new %w(
89
+ dynamic final internal native public protected private class const
90
+ override static package interface extends implements namespace
91
+ set get import include super flash_proxy object_proxy trace
92
+ )
93
+ end
94
+
95
+ def self.constants
96
+ @constants ||= Set.new %w(true false null NaN Infinity undefined)
97
+ end
98
+
99
+ def self.builtins
100
+ @builtins ||= %w(
101
+ void Function Math Class
102
+ Object RegExp decodeURI
103
+ decodeURIComponent encodeURI encodeURIComponent
104
+ eval isFinite isNaN parseFloat parseInt this
105
+ )
106
+ end
107
+
108
+ id = /[$a-zA-Z_][a-zA-Z0-9_]*/
109
+
110
+ state :root do
111
+ rule /\A\s*#!.*?\n/m, Comment::Preproc, :statement
112
+ rule /\n/, Text, :statement
113
+ rule %r((?<=\n)(?=\s|/|<!--)), Text, :expr_start
114
+ mixin :comments_and_whitespace
115
+ rule %r(\+\+ | -- | ~ | && | \|\| | \\(?=\n) | << | >>>? | ===
116
+ | !== )x,
117
+ Operator, :expr_start
118
+ rule %r([:-<>+*%&|\^/!=]=?), Operator, :expr_start
119
+ rule /[(\[,]/, Punctuation, :expr_start
120
+ rule /;/, Punctuation, :statement
121
+ rule /[)\].]/, Punctuation
122
+
123
+ rule /[?]/ do
124
+ token Punctuation
125
+ push :ternary
126
+ push :expr_start
127
+ end
128
+
129
+ rule /[{}]/, Punctuation, :statement
130
+
131
+ rule id do |m|
132
+ if self.class.keywords.include? m[0]
133
+ token Keyword
134
+ push :expr_start
135
+ elsif self.class.declarations.include? m[0]
136
+ token Keyword::Declaration
137
+ push :expr_start
138
+ elsif self.class.reserved.include? m[0]
139
+ token Keyword::Reserved
140
+ elsif self.class.constants.include? m[0]
141
+ token Keyword::Constant
142
+ elsif self.class.builtins.include? m[0]
143
+ token Name::Builtin
144
+ else
145
+ token Name::Other
146
+ end
147
+ end
148
+
149
+ rule /\-[0-9][0-9]*\.[0-9]+([eE][0-9]+)?[fd]?/, Num::Float
150
+ rule /0x[0-9a-fA-F]+/, Num::Hex
151
+ rule /\-[0-9]+/, Num::Integer
152
+ rule /"(\\\\|\\"|[^"])*"/, Str::Double
153
+ rule /'(\\\\|\\'|[^'])*'/, Str::Single
154
+ end
155
+
156
+ # braced parts that aren't object literals
157
+ state :statement do
158
+ rule /(#{id})(\s*)(:)/ do
159
+ groups Name::Label, Text, Punctuation
160
+ end
161
+
162
+ rule /[{}]/, Punctuation
163
+
164
+ mixin :expr_start
165
+ end
166
+
167
+ # object literals
168
+ state :object do
169
+ mixin :comments_and_whitespace
170
+ rule /[}]/ do
171
+ token Punctuation
172
+ goto :statement
173
+ end
174
+
175
+ rule /(#{id})(\s*)(:)/ do
176
+ groups Name::Attribute, Text, Punctuation
177
+ push :expr_start
178
+ end
179
+
180
+ rule /:/, Punctuation
181
+ mixin :root
182
+ end
183
+
184
+ # ternary expressions, where <id>: is not a label!
185
+ state :ternary do
186
+ rule /:/ do
187
+ token Punctuation
188
+ goto :expr_start
189
+ end
190
+
191
+ mixin :root
192
+ end
193
+ end
194
+ end
195
+ end
@@ -13,54 +13,57 @@ module Rouge
13
13
  attr_reader :keywords
14
14
  end
15
15
  # Load Apache keywords from separate YML file
16
- @keywords = ::YAML.load(File.open(Pathname.new(__FILE__).dirname.join('apache/keywords.yml')))
16
+ @keywords = ::YAML.load(File.open(Pathname.new(__FILE__).dirname.join('apache/keywords.yml'))).tap do |h|
17
+ h.each do |k,v|
18
+ h[k] = Set.new v
19
+ end
20
+ end
17
21
 
18
- def name_for_token(token)
19
- if self.class.keywords[:sections].include? token
20
- Name::Class
21
- elsif self.class.keywords[:directives].include? token
22
- Name::Label
23
- elsif self.class.keywords[:values].include? token
24
- Literal::String::Symbol
22
+ def name_for_token(token, kwtype, tktype)
23
+ if self.class.keywords[kwtype].include? token
24
+ tktype
25
+ else
26
+ Text
25
27
  end
26
28
  end
27
29
 
28
30
  state :whitespace do
29
- rule /\#.*?\n/, Comment
30
- rule /[\s\n]+/m, Text
31
+ rule /\#.*/, Comment
32
+ rule /\s+/m, Text
31
33
  end
32
34
 
33
-
34
35
  state :root do
35
36
  mixin :whitespace
36
37
 
37
38
  rule /(<\/?)(\w+)/ do |m|
38
- groups Punctuation, name_for_token(m[2])
39
+ groups Punctuation, name_for_token(m[2].downcase, :sections, Name::Label)
39
40
  push :section
40
41
  end
41
42
 
42
43
  rule /\w+/ do |m|
43
- token name_for_token(m[0])
44
+ token name_for_token(m[0].downcase, :directives, Name::Class)
44
45
  push :directive
45
46
  end
46
47
  end
47
48
 
48
49
  state :section do
49
- mixin :whitespace
50
-
51
50
  # Match section arguments
52
- rule /([^>]+)?(>\n)/ do |m|
51
+ rule /([^>]+)?(>(?:\r\n?|\n)?)/ do |m|
53
52
  groups Literal::String::Regex, Punctuation
54
53
  pop!
55
54
  end
55
+
56
+ mixin :whitespace
56
57
  end
57
58
 
58
59
  state :directive do
59
60
  # Match value literals and other directive arguments
60
- rule /(\w+)*(.*?(\n|$))/ do |m|
61
- token name_for_token(m[1]), m[1]
62
- token Text, m[2]
63
- pop!
61
+ rule /\r\n?|\n/, Text, :pop!
62
+
63
+ mixin :whitespace
64
+
65
+ rule /\S+/ do |m|
66
+ token name_for_token(m[0], :values, Literal::String::Symbol)
64
67
  end
65
68
  end
66
69
  end
@@ -1,453 +1,764 @@
1
1
  :sections:
2
- - "DirectoryMatch"
3
- - "Directory"
4
- - "FilesMatch"
5
- - "Files"
6
- - "IfDefine"
7
- - "IfModule"
8
- - "LimitExcept"
9
- - "Limit"
10
- - "LocationMatch"
11
- - "Location"
12
- - "ProxyMatch"
13
- - "Proxy"
14
- - "VirtualHost"
2
+ - "directory"
3
+ - "directorymatch"
4
+ - "files"
5
+ - "filesmatch"
6
+ - "ifdefine"
7
+ - "ifmodule"
8
+ - "limit"
9
+ - "limitexcept"
10
+ - "location"
11
+ - "locationmatch"
12
+ - "proxy"
13
+ - "proxymatch"
14
+ - "virtualhost"
15
15
 
16
16
  :directives:
17
- - "AcceptMutex"
18
- - "AcceptPathInfo"
19
- - "AccessConfig"
20
- - "AccessFileName"
21
- - "Action"
22
- - "AddAlt"
23
- - "AddAltByEncoding"
24
- - "AddAltByType"
25
- - "AddCharset"
26
- - "AddDefaultCharset"
27
- - "AddDescription"
28
- - "AddEncoding"
29
- - "AddHandler"
30
- - "AddIcon"
31
- - "AddIconByEncoding"
32
- - "AddIconByType"
33
- - "AddInputFilter"
34
- - "AddLanguage"
35
- - "AddModule"
36
- - "AddModuleInfo"
37
- - "AddOutputFilter"
38
- - "AddOutputFilterByType"
39
- - "AddType"
40
- - "AgentLog"
41
- - "Alias"
42
- - "AliasMatch"
43
- - "Allow from"
44
- - "Allow"
45
- - "AllowCONNECT"
46
- - "AllowEncodedSlashes"
47
- - "AllowOverride"
48
- - "Anonymous"
49
- - "Anonymous_Authoritative"
50
- - "Anonymous_LogEmail"
51
- - "Anonymous_MustGiveEmail"
52
- - "Anonymous_NoUserID"
53
- - "Anonymous_VerifyEmail"
54
- - "AssignUserID"
55
- - "AuthAuthoritative"
56
- - "AuthDBAuthoritative"
57
- - "AuthDBGroupFile"
58
- - "AuthDBMAuthoritative"
59
- - "AuthDBMGroupFile"
60
- - "AuthDBMType"
61
- - "AuthDBMUserFile"
62
- - "AuthDBUserFile"
63
- - "AuthDigestAlgorithm"
64
- - "AuthDigestDomain"
65
- - "AuthDigestFile"
66
- - "AuthDigestGroupFile"
67
- - "AuthDigestNcCheck"
68
- - "AuthDigestNonceFormat"
69
- - "AuthDigestNonceLifetime"
70
- - "AuthDigestQop"
71
- - "AuthDigestShmemSize"
72
- - "AuthGroupFile"
73
- - "AuthLDAPAuthoritative"
74
- - "AuthLDAPBindDN"
75
- - "AuthLDAPBindPassword"
76
- - "AuthLDAPCharsetConfig"
77
- - "AuthLDAPCompareDNOnServer"
78
- - "AuthLDAPDereferenceAliases"
79
- - "AuthLDAPEnabled"
80
- - "AuthLDAPFrontPageHack"
81
- - "AuthLDAPGroupAttribute"
82
- - "AuthLDAPGroupAttributeIsDN"
83
- - "AuthLDAPRemoteUserIsDN"
84
- - "AuthLDAPUrl"
85
- - "AuthName"
86
- - "AuthType"
87
- - "AuthUserFile"
88
- - "BS2000Account"
89
- - "BindAddress"
90
- - "BrowserMatch"
91
- - "BrowserMatchNoCase"
92
- - "CGIMapExtension"
93
- - "CacheDefaultExpire"
94
- - "CacheDirLength"
95
- - "CacheDirLevels"
96
- - "CacheDisable"
97
- - "CacheEnable"
98
- - "CacheExpiryCheck"
99
- - "CacheFile"
100
- - "CacheForceCompletion"
101
- - "CacheGcClean"
102
- - "CacheGcDaily"
103
- - "CacheGcInterval"
104
- - "CacheGcMemUsage"
105
- - "CacheGcUnused"
106
- - "CacheIgnoreCacheControl"
107
- - "CacheIgnoreNoLastMod"
108
- - "CacheLastModifiedFactor"
109
- - "CacheMaxExpire"
110
- - "CacheMaxFileSize"
111
- - "CacheMinFileSize"
112
- - "CacheNegotiatedDocs"
113
- - "CacheRoot"
114
- - "CacheSize"
115
- - "CacheTimeMargin"
116
- - "CharsetDefault"
117
- - "CharsetOptions"
118
- - "CharsetSourceEnc"
119
- - "CheckSpelling"
120
- - "ChildPerUserID"
121
- - "ClearModuleList"
122
- - "ContentDigest"
123
- - "CookieDomain"
124
- - "CookieExpires"
125
- - "CookieLog"
126
- - "CookieName"
127
- - "CookieStyle"
128
- - "CookieTracking"
129
- - "CoreDumpDirectory"
130
- - "CustomLog"
131
- - "Dav"
132
- - "DavDepthInfinity"
133
- - "DavLockDB"
134
- - "DavMinTimeout"
135
- - "DefaultIcon"
136
- - "DefaultLanguage"
137
- - "DefaultMode"
138
- - "DefaultType"
139
- - "DeflateBufferSize"
140
- - "DeflateCompressionLevel"
141
- - "DeflateFilterNote"
142
- - "DeflateMemLevel"
143
- - "DeflateWindowSize"
144
- - "Deny"
145
- - "DirectoryIndex"
146
- - "DirectorySlash"
147
- - "DocTitle"
148
- - "DocTrailer"
149
- - "DocumentRoot"
150
- - "EnableExceptionHook"
151
- - "EnableMMAP"
152
- - "EnableSendfile"
153
- - "ErrorDocument"
154
- - "ErrorLog"
155
- - "Example"
156
- - "ExpiresActive"
157
- - "ExpiresByType"
158
- - "ExpiresDefault"
159
- - "ExtFilterDefine"
160
- - "ExtFilterOptions"
161
- - "ExtendedStatus"
162
- - "FancyIndexing"
163
- - "FileETag"
164
- - "ForceLanguagePriority"
165
- - "ForceType"
166
- - "ForensicLog"
167
- - "Group"
168
- - "HTMLDir"
169
- - "HTTPLogFile"
170
- - "HeadPrefix"
171
- - "HeadSuffix"
172
- - "Header"
173
- - "HeaderName"
174
- - "HideSys"
175
- - "HideURL"
176
- - "HostNameLookups"
177
- - "HostnameLookups"
178
- - "ISAPIAppendLogToErrors"
179
- - "ISAPIAppendLogToQuery"
180
- - "ISAPICacheFile"
181
- - "ISAPIFakeAsync"
182
- - "ISAPILogNotSupported"
183
- - "ISAPIReadAheadBuffer"
184
- - "IdentityCheck"
185
- - "ImapBase"
186
- - "ImapDefault"
187
- - "ImapMenu"
188
- - "Include"
189
- - "IndexIgnore"
190
- - "IndexOptions"
191
- - "IndexOrderDefault"
192
- - "KeepAlive"
193
- - "KeepAliveTimeout"
194
- - "LDAPCacheEntries"
195
- - "LDAPCacheTTL"
196
- - "LDAPOpCacheEntries"
197
- - "LDAPOpCacheTTL"
198
- - "LDAPSharedCacheFile"
199
- - "LDAPSharedCacheSize"
200
- - "LDAPTrustedCA"
201
- - "LDAPTrustedCAType"
202
- - "LanguagePriority"
203
- - "LastURLs"
204
- - "LimitInternalRecursion"
205
- - "LimitRequestBody"
206
- - "LimitRequestFields"
207
- - "LimitRequestFieldsize"
208
- - "LimitRequestLine"
209
- - "LimitXMLRequestBody"
210
- - "Listen"
211
- - "ListenBacklog"
212
- - "LoadFile"
213
- - "LoadModule"
214
- - "LockFile"
215
- - "LogFormat"
216
- - "LogLevel"
217
- - "MCacheMaxObjectCount"
218
- - "MCacheMaxObjectSize"
219
- - "MCacheMaxStreamingBuffer"
220
- - "MCacheMinObjectSize"
221
- - "MCacheRemovalAlgorithm"
222
- - "MCacheSize"
223
- - "MMapFile"
224
- - "MaxClients"
225
- - "MaxKeepAliveRequests"
226
- - "MaxMemFree"
227
- - "MaxRequestsPerChild"
228
- - "MaxRequestsPerThread"
229
- - "MaxSpareServers"
230
- - "MaxSpareThreads"
231
- - "MaxThreads"
232
- - "MaxThreadsPerChild"
233
- - "MetaDir"
234
- - "MetaFiles"
235
- - "MetaSuffix"
236
- - "MimeMagicFile"
237
- - "MinSpareServers"
238
- - "MinSpareThreads"
239
- - "ModMimeUsePathInfo"
240
- - "MultiviewsMatch"
241
- - "NWSSLTrustedCerts"
242
- - "NWSSLUpgradeable"
243
- - "NameVirtualHost"
244
- - "NoCache"
245
- - "NoProxy"
246
- - "NumServers"
247
- - "Options"
248
- - "Order"
249
- - "PassEnv"
250
- - "PidFile"
251
- - "Port"
252
- - "PrivateDir"
253
- - "ProtocolEcho"
254
- - "ProxyBadHeader"
255
- - "ProxyBlock"
256
- - "ProxyDomain"
257
- - "ProxyErrorOverride"
258
- - "ProxyIOBufferSize"
259
- - "ProxyMaxForwards"
260
- - "ProxyPass"
261
- - "ProxyPassReverse"
262
- - "ProxyPreserveHost"
263
- - "ProxyReceiveBufferSize"
264
- - "ProxyRemote"
265
- - "ProxyRemoteMatch"
266
- - "ProxyRequests"
267
- - "ProxyTimeout"
268
- - "ProxyVia"
269
- - "RLimitCPU"
270
- - "RLimitMEM"
271
- - "RLimitNPROC"
272
- - "ReadmeName"
273
- - "Redirect"
274
- - "RedirectMatch"
275
- - "RedirectPermanent"
276
- - "RedirectTemp"
277
- - "RefererIgnore"
278
- - "RefererLog"
279
- - "RemoveCharset"
280
- - "RemoveEncoding"
281
- - "RemoveHandler"
282
- - "RemoveInputFilter"
283
- - "RemoveLanguage"
284
- - "RemoveOutputFilter"
285
- - "RemoveType"
286
- - "RequestHeader"
287
- - "Require"
288
- - "ResourceConfig"
289
- - "RewriteBase"
290
- - "RewriteCond"
291
- - "RewriteEngine"
292
- - "RewriteLock"
293
- - "RewriteLog"
294
- - "RewriteLogLevel"
295
- - "RewriteMap"
296
- - "RewriteOptions"
297
- - "RewriteRule"
298
- - "SSIEndTag"
299
- - "SSIErrorMsg"
300
- - "SSIStartTag"
301
- - "SSITimeFormat"
302
- - "SSIUndefinedEcho"
303
- - "SSLCACertificateFile"
304
- - "SSLCACertificatePath"
305
- - "SSLCARevocationFile"
306
- - "SSLCARevocationPath"
307
- - "SSLCertificateChainFile"
308
- - "SSLCertificateFile"
309
- - "SSLCertificateKeyFile"
310
- - "SSLCipherSuite"
311
- - "SSLEngine"
312
- - "SSLMutex"
313
- - "SSLOptions"
314
- - "SSLPassPhraseDialog"
315
- - "SSLProtocol"
316
- - "SSLProxyCACertificateFile"
317
- - "SSLProxyCACertificatePath"
318
- - "SSLProxyCARevocationFile"
319
- - "SSLProxyCARevocationPath"
320
- - "SSLProxyCipherSuite"
321
- - "SSLProxyEngine"
322
- - "SSLProxyMachineCertificateFile"
323
- - "SSLProxyMachineCertificatePath"
324
- - "SSLProxyProtocol"
325
- - "SSLProxyVerify"
326
- - "SSLProxyVerifyDepth"
327
- - "SSLRandomSeed"
328
- - "SSLRequire"
329
- - "SSLRequireSSL"
330
- - "SSLSessionCache"
331
- - "SSLSessionCacheTimeout"
332
- - "SSLVerifyClient"
333
- - "SSLVerifyDepth"
334
- - "Satisfy"
335
- - "ScoreBoardFile"
336
- - "Script"
337
- - "ScriptAlias"
338
- - "ScriptAliasMatch"
339
- - "ScriptInterpreterSource"
340
- - "ScriptLog"
341
- - "ScriptLogBuffer"
342
- - "ScriptLogLength"
343
- - "ScriptSock"
344
- - "SecureListen"
345
- - "SendBufferSize"
346
- - "ServerAdmin"
347
- - "ServerAlias"
348
- - "ServerLimit"
349
- - "ServerName"
350
- - "ServerPath"
351
- - "ServerRoot"
352
- - "ServerSignature"
353
- - "ServerTokens"
354
- - "ServerType"
355
- - "SetEnv"
356
- - "SetEnvIf"
357
- - "SetEnvIfNoCase"
358
- - "SetHandler"
359
- - "SetInputFilter"
360
- - "SetOutputFilter"
361
- - "StartServers"
362
- - "StartThreads"
363
- - "SuexecUserGroup"
364
- - "ThreadLimit"
365
- - "ThreadStackSize"
366
- - "ThreadsPerChild"
367
- - "TimeOut"
368
- - "TopSites"
369
- - "TopURLs"
370
- - "TransferLog"
371
- - "TypesConfig"
372
- - "UnsetEnv"
373
- - "UseCanonicalName"
374
- - "User"
375
- - "UserDir"
376
- - "VirtualDocumentRoot"
377
- - "VirtualDocumentRootIP"
378
- - "VirtualScriptAlias"
379
- - "VirtualScriptAliasIP"
380
- - "Win32DisableAcceptEx"
381
- - "XBitHack"
17
+ - "acceptfilter"
18
+ - "acceptmutex"
19
+ - "acceptpathinfo"
20
+ - "accessconfig"
21
+ - "accessfilename"
22
+ - "action"
23
+ - "addalt"
24
+ - "addaltbyencoding"
25
+ - "addaltbytype"
26
+ - "addcharset"
27
+ - "adddefaultcharset"
28
+ - "adddescription"
29
+ - "addencoding"
30
+ - "addhandler"
31
+ - "addicon"
32
+ - "addiconbyencoding"
33
+ - "addiconbytype"
34
+ - "addinputfilter"
35
+ - "addlanguage"
36
+ - "addmodule"
37
+ - "addmoduleinfo"
38
+ - "addoutputfilter"
39
+ - "addoutputfilterbytype"
40
+ - "addtype"
41
+ - "agentlog"
42
+ - "alias"
43
+ - "aliasmatch"
44
+ - "allow"
45
+ - "allowconnect"
46
+ - "allowencodedslashes"
47
+ - "allowmethods"
48
+ - "allowoverride"
49
+ - "allowoverridelist"
50
+ - "anonymous"
51
+ - "anonymous_authoritative"
52
+ - "anonymous_logemail"
53
+ - "anonymous_mustgiveemail"
54
+ - "anonymous_nouserid"
55
+ - "anonymous_verifyemail"
56
+ - "assignuserid"
57
+ - "authauthoritative"
58
+ - "authdbauthoritative"
59
+ - "authdbgroupfile"
60
+ - "authdbmauthoritative"
61
+ - "asyncrequestworkerfactor"
62
+ - "authbasicauthoritative"
63
+ - "authbasicfake"
64
+ - "authbasicprovider"
65
+ - "authbasicusedigestalgorithm"
66
+ - "authdbduserpwquery"
67
+ - "authdbduserrealmquery"
68
+ - "authdbmgroupfile"
69
+ - "authdbmtype"
70
+ - "authdbmuserfile"
71
+ - "authdbuserfile"
72
+ - "authdigestalgorithm"
73
+ - "authdigestdomain"
74
+ - "authdigestfile"
75
+ - "authdigestgroupfile"
76
+ - "authdigestnccheck"
77
+ - "authdigestnonceformat"
78
+ - "authdigestnoncelifetime"
79
+ - "authdigestprovider"
80
+ - "authdigestqop"
81
+ - "authdigestshmemsize"
82
+ - "authformauthoritative"
83
+ - "authformbody"
84
+ - "authformdisablenostore"
85
+ - "authformfakebasicauth"
86
+ - "authformlocation"
87
+ - "authformloginrequiredlocation"
88
+ - "authformloginsuccesslocation"
89
+ - "authformlogoutlocation"
90
+ - "authformmethod"
91
+ - "authformmimetype"
92
+ - "authformpassword"
93
+ - "authformprovider"
94
+ - "authformsitepassphrase"
95
+ - "authformsize"
96
+ - "authformusername"
97
+ - "authgroupfile"
98
+ - "authldapauthoritative"
99
+ - "authldapauthorizeprefix"
100
+ - "authldapbindauthoritative"
101
+ - "authldapbinddn"
102
+ - "authldapbindpassword"
103
+ - "authldapcharsetconfig"
104
+ - "authldapcompareasuser"
105
+ - "authldapcomparednonserver"
106
+ - "authldapdereferencealiases"
107
+ - "authldapenabled"
108
+ - "authldapfrontpagehack"
109
+ - "authldapgroupattribute"
110
+ - "authldapgroupattributeisdn"
111
+ - "authldapinitialbindasuser"
112
+ - "authldapinitialbindpattern"
113
+ - "authldapmaxsubgroupdepth"
114
+ - "authldapremoteuserattribute"
115
+ - "authldapremoteuserisdn"
116
+ - "authldapsearchasuser"
117
+ - "authldapsubgroupattribute"
118
+ - "authldapsubgroupclass"
119
+ - "authldapurl"
120
+ - "authmerging"
121
+ - "authname"
122
+ - "authncachecontext"
123
+ - "authncacheenable"
124
+ - "authncacheprovidefor"
125
+ - "authncachesocache"
126
+ - "authncachetimeout"
127
+ - "authnzfcgicheckauthnprovider"
128
+ - "authnzfcgidefineprovider"
129
+ - "authtype"
130
+ - "authuserfile"
131
+ - "authzdbdlogintoreferer"
132
+ - "authzdbdquery"
133
+ - "authzdbdredirectquery"
134
+ - "authzdbmtype"
135
+ - "authzsendforbiddenonfailure"
136
+ - "balancergrowth"
137
+ - "balancerinherit"
138
+ - "balancermember"
139
+ - "balancerpersist"
140
+ - "bindaddress"
141
+ - "browsermatch"
142
+ - "browsermatchnocase"
143
+ - "bs2000account"
144
+ - "bufferedlogs"
145
+ - "buffersize"
146
+ - "cachedefaultexpire"
147
+ - "cachedetailheader"
148
+ - "cachedirlength"
149
+ - "cachedirlevels"
150
+ - "cachedisable"
151
+ - "cacheenable"
152
+ - "cacheexpirycheck"
153
+ - "cachefile"
154
+ - "cacheforcecompletion"
155
+ - "cachegcclean"
156
+ - "cachegcdaily"
157
+ - "cachegcinterval"
158
+ - "cachegcmemusage"
159
+ - "cachegcunused"
160
+ - "cacheheader"
161
+ - "cacheignorecachecontrol"
162
+ - "cacheignoreheaders"
163
+ - "cacheignorenolastmod"
164
+ - "cacheignorequerystring"
165
+ - "cacheignoreurlsessionidentifiers"
166
+ - "cachekeybaseurl"
167
+ - "cachelastmodifiedfactor"
168
+ - "cachelock"
169
+ - "cachelockmaxage"
170
+ - "cachelockpath"
171
+ - "cachemaxexpire"
172
+ - "cachemaxfilesize"
173
+ - "cacheminexpire"
174
+ - "cacheminfilesize"
175
+ - "cachenegotiateddocs"
176
+ - "cachequickhandler"
177
+ - "cachereadsize"
178
+ - "cachereadtime"
179
+ - "cacheroot"
180
+ - "cachesize"
181
+ - "cachetimemargin"
182
+ - "cachesocache"
183
+ - "cachesocachemaxsize"
184
+ - "cachesocachemaxtime"
185
+ - "cachesocachemintime"
186
+ - "cachesocachereadsize"
187
+ - "cachesocachereadtime"
188
+ - "cachestaleonerror"
189
+ - "cachestoreexpired"
190
+ - "cachestorenostore"
191
+ - "cachestoreprivate"
192
+ - "cgidscripttimeout"
193
+ - "cgimapextension"
194
+ - "cgipassauth"
195
+ - "charsetdefault"
196
+ - "charsetoptions"
197
+ - "charsetsourceenc"
198
+ - "checkcaseonly"
199
+ - "checkspelling"
200
+ - "childperuserid"
201
+ - "clearmodulelist"
202
+ - "chrootdir"
203
+ - "contentdigest"
204
+ - "cookiedomain"
205
+ - "cookieexpires"
206
+ - "cookielog"
207
+ - "cookiename"
208
+ - "cookiestyle"
209
+ - "cookietracking"
210
+ - "coredumpdirectory"
211
+ - "customlog"
212
+ - "dav"
213
+ - "davdepthinfinity"
214
+ - "davgenericlockdb"
215
+ - "davlockdb"
216
+ - "davmintimeout"
217
+ - "dbdexptime"
218
+ - "dbdinitsql"
219
+ - "dbdkeep"
220
+ - "dbdmax"
221
+ - "dbdmin"
222
+ - "dbdparams"
223
+ - "dbdpersist"
224
+ - "dbdpreparesql"
225
+ - "dbdriver"
226
+ - "defaulticon"
227
+ - "defaultlanguage"
228
+ - "defaultmode"
229
+ - "defaultruntimedir"
230
+ - "defaulttype"
231
+ - "define"
232
+ - "deflatebuffersize"
233
+ - "deflatecompressionlevel"
234
+ - "deflatefilternote"
235
+ - "deflateinflatelimitrequestbody"
236
+ - "deflateinflateratioburst"
237
+ - "deflateinflateratiolimit"
238
+ - "deflatememlevel"
239
+ - "deflatewindowsize"
382
240
  - "deny"
241
+ - "directorycheckhandler"
242
+ - "directoryindex"
243
+ - "directoryindexredirect"
244
+ - "directoryslash"
245
+ - "doctitle"
246
+ - "doctrailer"
247
+ - "documentroot"
248
+ - "dtraceprivileges"
249
+ - "dumpioinput"
250
+ - "dumpiooutput"
251
+ - "enableexceptionhook"
252
+ - "enablemmap"
253
+ - "enablesendfile"
254
+ - "error"
255
+ - "errordocument"
256
+ - "errorlog"
257
+ - "errorlogformat"
258
+ - "example"
259
+ - "expiresactive"
260
+ - "expiresbytype"
261
+ - "expiresdefault"
262
+ - "extendedstatus"
263
+ - "extfilterdefine"
264
+ - "extfilteroptions"
265
+ - "fallbackresource"
266
+ - "fancyindexing"
267
+ - "fileetag"
268
+ - "filterchain"
269
+ - "filterdeclare"
270
+ - "filterprotocol"
271
+ - "filterprovider"
272
+ - "filtertrace"
273
+ - "forcelanguagepriority"
274
+ - "forcetype"
275
+ - "forensiclog"
276
+ - "globallog"
277
+ - "gprofdir"
278
+ - "gracefulshutdowntimeout"
279
+ - "group"
280
+ - "h2direct"
281
+ - "h2keepalivetimeout"
282
+ - "h2maxsessionstreams"
283
+ - "h2maxworkeridleseconds"
284
+ - "h2maxworkers"
285
+ - "h2minworkers"
286
+ - "h2moderntlsonly"
287
+ - "h2push"
288
+ - "h2pushdiarysize"
289
+ - "h2pushpriority"
290
+ - "h2serializeheaders"
291
+ - "h2sessionextrafiles"
292
+ - "h2streammaxmemsize"
293
+ - "h2streamtimeout"
294
+ - "h2timeout"
295
+ - "h2tlscooldownsecs"
296
+ - "h2tlswarmupsize"
297
+ - "h2upgrade"
298
+ - "h2windowsize"
299
+ - "header"
300
+ - "headername"
301
+ - "headprefix"
302
+ - "headsuffix"
303
+ - "hidesys"
304
+ - "hideurl"
305
+ - "heartbeataddress"
306
+ - "heartbeatlisten"
307
+ - "heartbeatmaxservers"
308
+ - "heartbeatstorage"
309
+ - "heartbeatstorage"
310
+ - "hostnamelookups"
311
+ - "htmldir"
312
+ - "httplogfile"
313
+ - "identitycheck"
314
+ - "identitychecktimeout"
315
+ - "imapbase"
316
+ - "imapdefault"
317
+ - "imapmenu"
318
+ - "include"
319
+ - "includeoptional"
320
+ - "indexheadinsert"
321
+ - "indexignore"
322
+ - "indexignorereset"
323
+ - "indexoptions"
324
+ - "indexorderdefault"
325
+ - "indexstylesheet"
326
+ - "inputsed"
327
+ - "isapiappendlogtoerrors"
328
+ - "isapiappendlogtoquery"
329
+ - "isapicachefile"
330
+ - "isapifakeasync"
331
+ - "isapilognotsupported"
332
+ - "isapireadaheadbuffer"
333
+ - "keepalive"
334
+ - "keepalivetimeout"
335
+ - "keptbodysize"
336
+ - "languagepriority"
337
+ - "lasturls"
338
+ - "ldapcacheentries"
339
+ - "ldapcachettl"
340
+ - "ldapconnectionpoolttl"
341
+ - "ldapconnectiontimeout"
342
+ - "ldaplibrarydebug"
343
+ - "ldapopcacheentries"
344
+ - "ldapopcachettl"
345
+ - "ldapreferralhoplimit"
346
+ - "ldapreferrals"
347
+ - "ldapretries"
348
+ - "ldapretrydelay"
349
+ - "ldapsharedcachefile"
350
+ - "ldapsharedcachesize"
351
+ - "ldaptimeout"
352
+ - "ldaptrustedca"
353
+ - "ldaptrustedcatype"
354
+ - "ldaptrustedclientcert"
355
+ - "ldaptrustedglobalcert"
356
+ - "ldaptrustedmode"
357
+ - "ldapverifyservercert"
358
+ - "limitinternalrecursion"
359
+ - "limitrequestbody"
360
+ - "limitrequestfields"
361
+ - "limitrequestfieldsize"
362
+ - "limitrequestline"
363
+ - "limitxmlrequestbody"
364
+ - "listen"
365
+ - "listenbacklog"
366
+ - "listencoresbucketsratio"
367
+ - "loadfile"
368
+ - "loadmodule"
369
+ - "lockfile"
370
+ - "logformat"
371
+ - "logiotrackttfb"
372
+ - "loglevel"
373
+ - "logmessage"
374
+ - "luaauthzprovider"
375
+ - "luacodecache"
376
+ - "luahookaccesschecker"
377
+ - "luahookauthchecker"
378
+ - "luahookcheckuserid"
379
+ - "luahookfixups"
380
+ - "luahookinsertfilter"
381
+ - "luahooklog"
382
+ - "luahookmaptostorage"
383
+ - "luahooktranslatename"
384
+ - "luahooktypechecker"
385
+ - "luainherit"
386
+ - "luainputfilter"
387
+ - "luamaphandler"
388
+ - "luaoutputfilter"
389
+ - "luapackagecpath"
390
+ - "luapackagepath"
391
+ - "luaquickhandler"
392
+ - "luaroot"
393
+ - "luascope"
394
+ - "maxclients"
395
+ - "maxconnectionsperchild"
396
+ - "maxkeepaliverequests"
397
+ - "maxmemfree"
398
+ - "maxrequestsperchild"
399
+ - "maxrequestsperthread"
400
+ - "maxrangeoverlaps"
401
+ - "maxrangereversals"
402
+ - "maxranges"
403
+ - "maxrequestworkers"
404
+ - "maxspareservers"
405
+ - "maxsparethreads"
406
+ - "maxthreads"
407
+ - "maxthreadsperchild"
408
+ - "mcachemaxobjectcount"
409
+ - "mcachemaxobjectsize"
410
+ - "mcachemaxstreamingbuffer"
411
+ - "mcacheminobjectsize"
412
+ - "mcacheremovalalgorithm"
413
+ - "mcachesize"
414
+ - "memcacheconnttl"
415
+ - "mergetrailers"
416
+ - "metadir"
417
+ - "metafiles"
418
+ - "metasuffix"
419
+ - "mimemagicfile"
420
+ - "minspareservers"
421
+ - "minsparethreads"
422
+ - "mmapfile"
423
+ - "modemstandard"
424
+ - "modmimeusepathinfo"
425
+ - "multiviewsmatch"
426
+ - "mutex"
427
+ - "namevirtualhost"
428
+ - "nocache"
429
+ - "noproxy"
430
+ - "numservers"
431
+ - "nwssltrustedcerts"
432
+ - "nwsslupgradeable"
433
+ - "options"
383
434
  - "order"
435
+ - "outputsed"
436
+ - "passenv"
437
+ - "pidfile"
438
+ - "port"
439
+ - "privatedir"
440
+ - "privilegesmode"
441
+ - "protocol"
442
+ - "protocolecho"
443
+ - "protocols"
444
+ - "protocolshonororder"
445
+ - "proxyaddheaders"
446
+ - "proxybadheader"
447
+ - "proxyblock"
448
+ - "proxydomain"
449
+ - "proxyerroroverride"
450
+ - "proxyexpressdbmfile"
451
+ - "proxyexpressdbmtype"
452
+ - "proxyexpressenable"
453
+ - "proxyftpdircharset"
454
+ - "proxyftpescapewildcards"
455
+ - "proxyftplistonwildcard"
456
+ - "proxyhtmlbufsize"
457
+ - "proxyhtmlcharsetout"
458
+ - "proxyhtmldoctype"
459
+ - "proxyhtmlenable"
460
+ - "proxyhtmlevents"
461
+ - "proxyhtmlextended"
462
+ - "proxyhtmlfixups"
463
+ - "proxyhtmlinterp"
464
+ - "proxyhtmllinks"
465
+ - "proxyhtmlmeta"
466
+ - "proxyhtmlstripcomments"
467
+ - "proxyhtmlurlmap"
468
+ - "proxyiobuffersize"
469
+ - "proxymaxforwards"
470
+ - "proxypass"
471
+ - "proxypassinherit"
472
+ - "proxypassinterpolateenv"
473
+ - "proxypassmatch"
474
+ - "proxypassreverse"
475
+ - "proxypassreversecookiedomain"
476
+ - "proxypassreversecookiepath"
477
+ - "proxypreservehost"
478
+ - "proxyreceivebuffersize"
479
+ - "proxyremote"
480
+ - "proxyremotematch"
481
+ - "proxyrequests"
482
+ - "proxyscgiinternalredirect"
483
+ - "proxyscgisendfile"
484
+ - "proxyset"
485
+ - "proxysourceaddress"
486
+ - "proxystatus"
487
+ - "proxytimeout"
488
+ - "proxyvia"
489
+ - "qualifyredirecturl"
490
+ - "readmename"
491
+ - "receivebuffersize"
492
+ - "redirect"
493
+ - "redirectmatch"
494
+ - "redirectpermanent"
495
+ - "redirecttemp"
496
+ - "refererignore"
497
+ - "refererlog"
498
+ - "reflectorheader"
499
+ - "remoteipheader"
500
+ - "remoteipinternalproxy"
501
+ - "remoteipinternalproxylist"
502
+ - "remoteipproxiesheader"
503
+ - "remoteiptrustedproxy"
504
+ - "remoteiptrustedproxylist"
505
+ - "removecharset"
506
+ - "removeencoding"
507
+ - "removehandler"
508
+ - "removeinputfilter"
509
+ - "removelanguage"
510
+ - "removeoutputfilter"
511
+ - "removetype"
512
+ - "requestheader"
513
+ - "requestreadtimeout"
384
514
  - "require"
515
+ - "resourceconfig"
516
+ - "rewritebase"
517
+ - "rewritecond"
518
+ - "rewriteengine"
519
+ - "rewritelock"
520
+ - "rewritelog"
521
+ - "rewriteloglevel"
522
+ - "rewritemap"
523
+ - "rewriteoptions"
524
+ - "rewriterule"
525
+ - "rlimitcpu"
526
+ - "rlimitmem"
527
+ - "rlimitnproc"
528
+ - "satisfy"
529
+ - "scoreboardfile"
530
+ - "script"
531
+ - "scriptalias"
532
+ - "scriptaliasmatch"
533
+ - "scriptinterpretersource"
534
+ - "scriptlog"
535
+ - "scriptlogbuffer"
536
+ - "scriptloglength"
537
+ - "scriptsock"
538
+ - "securelisten"
539
+ - "seerequesttail"
540
+ - "sendbuffersize"
541
+ - "serveradmin"
542
+ - "serveralias"
543
+ - "serverlimit"
544
+ - "servername"
545
+ - "serverpath"
546
+ - "serverroot"
547
+ - "serversignature"
548
+ - "servertokens"
549
+ - "servertype"
550
+ - "session"
551
+ - "sessioncookiename"
552
+ - "sessioncookiename2"
553
+ - "sessioncookieremove"
554
+ - "sessioncryptocipher"
555
+ - "sessioncryptodriver"
556
+ - "sessioncryptopassphrase"
557
+ - "sessioncryptopassphrasefile"
558
+ - "sessiondbdcookiename"
559
+ - "sessiondbdcookiename2"
560
+ - "sessiondbdcookieremove"
561
+ - "sessiondbddeletelabel"
562
+ - "sessiondbdinsertlabel"
563
+ - "sessiondbdperuser"
564
+ - "sessiondbdselectlabel"
565
+ - "sessiondbdupdatelabel"
566
+ - "sessionenv"
567
+ - "sessionexclude"
568
+ - "sessionheader"
569
+ - "sessioninclude"
570
+ - "sessionmaxage"
571
+ - "setenv"
572
+ - "setenvif"
573
+ - "setenvifexpr"
574
+ - "setenvifnocase"
575
+ - "sethandler"
576
+ - "setinputfilter"
577
+ - "setoutputfilter"
578
+ - "ssiendtag"
579
+ - "ssierrormsg"
580
+ - "ssietag"
581
+ - "ssilastmodified"
582
+ - "ssilegacyexprparser"
583
+ - "ssistarttag"
584
+ - "ssitimeformat"
585
+ - "ssiundefinedecho"
586
+ - "sslcacertificatefile"
587
+ - "sslcacertificatepath"
588
+ - "sslcadnrequestfile"
589
+ - "sslcadnrequestpath"
590
+ - "sslcarevocationcheck"
591
+ - "sslcarevocationfile"
592
+ - "sslcarevocationpath"
593
+ - "sslcertificatechainfile"
594
+ - "sslcertificatefile"
595
+ - "sslcertificatekeyfile"
596
+ - "sslciphersuite"
597
+ - "sslcompression"
598
+ - "sslcryptodevice"
599
+ - "sslengine"
600
+ - "sslfips"
601
+ - "sslhonorcipherorder"
602
+ - "sslinsecurerenegotiation"
603
+ - "sslmutex"
604
+ - "sslocspdefaultresponder"
605
+ - "sslocspenable"
606
+ - "sslocspoverrideresponder"
607
+ - "sslocspproxyurl"
608
+ - "sslocsprespondertimeout"
609
+ - "sslocspresponsemaxage"
610
+ - "sslocspresponsetimeskew"
611
+ - "sslocspuserequestnonce"
612
+ - "sslopensslconfcmd"
613
+ - "ssloptions"
614
+ - "sslpassphrasedialog"
615
+ - "sslprotocol"
616
+ - "sslproxycacertificatefile"
617
+ - "sslproxycacertificatepath"
618
+ - "sslproxycarevocationcheck"
619
+ - "sslproxycarevocationfile"
620
+ - "sslproxycarevocationpath"
621
+ - "sslproxycheckpeercn"
622
+ - "sslproxycheckpeerexpire"
623
+ - "sslproxycheckpeername"
624
+ - "sslproxyciphersuite"
625
+ - "sslproxyengine"
626
+ - "sslproxymachinecertificatechainfile"
627
+ - "sslproxymachinecertificatefile"
628
+ - "sslproxymachinecertificatepath"
629
+ - "sslproxyprotocol"
630
+ - "sslproxyverify"
631
+ - "sslproxyverifydepth"
632
+ - "sslrandomseed"
633
+ - "sslrenegbuffersize"
634
+ - "sslrequire"
635
+ - "sslrequiressl"
636
+ - "sslsessioncache"
637
+ - "sslsessioncachetimeout"
638
+ - "sslsessionticketkeyfile"
639
+ - "sslsessiontickets"
640
+ - "sslsrpunknownuserseed"
641
+ - "sslsrpverifierfile"
642
+ - "sslstaplingcache"
643
+ - "sslstaplingerrorcachetimeout"
644
+ - "sslstaplingfaketrylater"
645
+ - "sslstaplingforceurl"
646
+ - "sslstaplingrespondertimeout"
647
+ - "sslstaplingresponsemaxage"
648
+ - "sslstaplingresponsetimeskew"
649
+ - "sslstaplingreturnrespondererrors"
650
+ - "sslstaplingstandardcachetimeout"
651
+ - "sslstrictsnivhostcheck"
652
+ - "sslusername"
653
+ - "sslusestapling"
654
+ - "sslverifyclient"
655
+ - "sslverifydepth"
656
+ - "startservers"
657
+ - "startthreads"
658
+ - "substitute"
659
+ - "substituteinheritbefore"
660
+ - "substitutemaxlinelength"
661
+ - "suexec"
662
+ - "suexecusergroup"
663
+ - "threadlimit"
664
+ - "threadsperchild"
665
+ - "threadstacksize"
666
+ - "timeout"
667
+ - "topsites"
668
+ - "topurls"
669
+ - "traceenable"
670
+ - "transferlog"
671
+ - "typesconfig"
672
+ - "undefine"
673
+ - "undefmacro"
674
+ - "unsetenv"
675
+ - "use"
676
+ - "usecanonicalname"
677
+ - "usecanonicalphysicalport"
678
+ - "user"
679
+ - "userdir"
680
+ - "vhostcgimode"
681
+ - "vhostcgiprivs"
682
+ - "vhostgroup"
683
+ - "vhostprivs"
684
+ - "vhostsecure"
685
+ - "vhostuser"
686
+ - "virtualdocumentroot"
687
+ - "virtualdocumentrootip"
688
+ - "virtualscriptalias"
689
+ - "virtualscriptaliasip"
690
+ - "win32disableacceptex"
691
+ - "watchdoginterval"
692
+ - "xbithack"
693
+ - "xml2encalias"
694
+ - "xml2encdefault"
695
+ - "xml2startparse"
696
+
385
697
  :values:
698
+ - "add"
386
699
  - "All"
700
+ - "allow"
701
+ - "any"
702
+ - "append"
387
703
  - "AuthConfig"
388
704
  - "Basic"
389
705
  - "CONNECT"
390
706
  - "DELETE"
391
- - "Digest"
392
- - "ExecCGI"
393
- - "FancyIndexing"
394
- - "FileInfo"
395
- - "FollowSymLinks"
396
- - "Full"
397
- - "GET"
398
- - "IconsAreLinks"
399
- - "Includes"
400
- - "IncludesNOEXEC"
401
- - "Indexes"
402
- - "Limit"
403
- - "Minimal"
404
- - "MultiViews"
405
- - "None"
406
- - "OPTIONS"
407
- - "OS"
408
- - "Options"
409
- - "Options"
410
- - "POST"
411
- - "PUT"
412
- - "ScanHTMLTitles"
413
- - "SuppressDescription"
414
- - "SuppressLastModified"
415
- - "SuppressSize"
416
- - "SymLinksIfOwnerMatch"
417
- - "URL"
418
- - "add"
419
- - "allow"
420
- - "any"
421
- - "append"
422
707
  - "deny"
708
+ - "Digest"
423
709
  - "double"
424
710
  - "downgrade-1.0"
425
711
  - "email"
426
712
  - "env"
427
713
  - "error"
714
+ - "ExecCGI"
715
+ - "FancyIndexing"
716
+ - "FileInfo"
717
+ - "FollowSymLinks"
428
718
  - "force-response-1.0"
429
719
  - "formatted"
430
720
  - "from"
431
721
  - "full"
722
+ - "Full"
723
+ - "GET"
432
724
  - "gone"
433
725
  - "group"
726
+ - "IconsAreLinks"
727
+ - "Includes"
728
+ - "IncludesNOEXEC"
729
+ - "Indexes"
434
730
  - "inetd"
435
731
  - "inherit"
732
+ - "Limit"
436
733
  - "map"
734
+ - "Minimal"
735
+ - "MultiViews"
437
736
  - "mutual-failure"
438
737
  - "nocontent"
439
738
  - "nokeepalive"
440
739
  - "none"
740
+ - "None"
441
741
  - "off"
442
742
  - "on"
743
+ - "Options"
744
+ - "OPTIONS"
745
+ - "OS"
443
746
  - "permanent"
747
+ - "POST"
748
+ - "PUT"
444
749
  - "referer"
750
+ - "ScanHTMLTitles"
445
751
  - "seeother"
446
752
  - "semi-formatted"
447
753
  - "set"
448
754
  - "standalone"
755
+ - "SuppressDescription"
756
+ - "SuppressLastModified"
757
+ - "SuppressSize"
758
+ - "SymLinksIfOwnerMatch"
449
759
  - "temporary"
450
760
  - "unformatted"
451
761
  - "unset"
762
+ - "URL"
452
763
  - "user"
453
- - "valid-user"
764
+ - "valid-user"