Commit 4fcc6b02 authored by Federico G. Schwindt's avatar Federico G. Schwindt Committed by Lasse Karstensen

Use `all' for vars marked as all

Previously it said `vcl_all' which doesn't exist.  Minor cosmetics while
I'm here.
parent ffd37357
...@@ -690,8 +690,8 @@ sp_variables = [ ...@@ -690,8 +690,8 @@ sp_variables = [
( 'deliver', 'synth', ), """ ( 'deliver', 'synth', ), """
The HTTP status code that will be returned. The HTTP status code that will be returned.
Assigning a HTTP standardized code to resp.status will also Assigning a HTTP standardized code to resp.status will also
set resp.reason to the corresponding status message. set resp.reason to the corresponding status message.
""" """
), ),
('resp.reason', ('resp.reason',
...@@ -1316,6 +1316,8 @@ def rst_where(fo, h, l): ...@@ -1316,6 +1316,8 @@ def rst_where(fo, h, l):
ll.append(j) ll.append(j)
elif j == "backend": elif j == "backend":
ll.append(j) ll.append(j)
elif j == "all":
ll.append(j)
else: else:
ll.append("vcl_" + j) ll.append("vcl_" + j)
for j in ll: for j in ll:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment