Skip to content

Commit

Permalink
Trailing grave accents and whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
fgsch committed Mar 1, 2019
1 parent 0f7f757 commit f06c02c
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 32 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Matches ALL Makefile and Makefile.in occurrences
# Matches ALL Makefile and Makefile.in occurrences
Makefile
Makefile.in

Expand Down
2 changes: 1 addition & 1 deletion doc/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ Fixed bugs
.. _2820: https://github.com/varnishcache/varnish-cache/issues/2820
.. _2823: https://github.com/varnishcache/varnish-cache/issues/2823
.. _2831: https://github.com/varnishcache/varnish-cache/issues/2831
.. _2837: https://github.com/varnishcache/varnish-cache/pull/2837
.. _2837: https://github.com/varnishcache/varnish-cache/pull/2837
.. _2840: https://github.com/varnishcache/varnish-cache/issues/2840
.. _VIP16: https://github.com/varnishcache/varnish-cache/wiki/VIP16%3A-Retire-parameters-aliases

Expand Down
56 changes: 28 additions & 28 deletions doc/sphinx/reference/vtla.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,107 +14,107 @@ This page tells you what we use them for, if & when we remember to
add them...

VAV
Varnish Arg Vector -- Argv parsing.
Varnish Arg Vector -- Argv parsing.

VBE
Varnish Back End -- Code for contacting backends
(bin/varnishd/cache_backend.c)
(bin/varnishd/cache_backend.c)

VBP
Varnish Backend Polling -- Health checks of backends
(bin/varnishd/cache_backend_poll.c)
(bin/varnishd/cache_backend_poll.c)

VCA
Varnish Connection Acceptor -- The code that receives/accepts the
TCP connections (bin/varnishd/cache_acceptor.c)
TCP connections (bin/varnishd/cache_acceptor.c)

VCC
VCL to C Compiler -- The code that compiles VCL to C code. (lib/libvcl)
VCL to C Compiler -- The code that compiles VCL to C code. (lib/libvcl)

VCL
Varnish Configuration Language -- The domain-specific programming
language used for configuring a varnishd.
language used for configuring a varnishd.

VCT
Varnish CType(3) -- Character classification for RFC2616 and XML parsing.
Varnish CType(3) -- Character classification for RFC2616 and XML parsing.

VDD
Varnish (Core) Developer Day -- Quarterly invite-only meeting strictly
for Varnish core (C) developers, packagers and VMOD hackers.
for Varnish core (C) developers, packagers and VMOD hackers.

VEV
Varnish EVent -- library functions to implement a simple event-dispatcher.
Varnish EVent -- library functions to implement a simple event-dispatcher.

VGB
Varnish Governing Board -- May or may not exist.
If you need to ask, you are not on it.
If you need to ask, you are not on it.

VGC
Varnish Generated Code -- Code generated by VCC from VCL.
Varnish Generated Code -- Code generated by VCC from VCL.

VIN
Varnish Instance Naming -- Resolution of -n arguments.
Varnish Instance Naming -- Resolution of -n arguments.

VLU
Varnish Line Up -- library functions to collect stream of bytes
into lines for processing. (lib/libvarnish/vlu.c)
into lines for processing. (lib/libvarnish/vlu.c)

VRE
Varnish Regular Expression -- library functions for regular expression
based matching and substring replacement. (lib/libvarnish/vre.c)
based matching and substring replacement. (lib/libvarnish/vre.c)

VRT
Varnish Run Time -- functions called from compiled code.
(bin/varnishd/cache_vrt.c)
(bin/varnishd/cache_vrt.c)

VRY
VaRY -- Related to processing of Vary: HTTP headers.
(bin/varnishd/cache_vary.c)
(bin/varnishd/cache_vary.c)

VSL
Varnish Shared memory Log -- The log written into the shared
memory segment for varnish{log,ncsa,top,hist} to see.
memory segment for varnish{log,ncsa,top,hist} to see.

VSB
Varnish string Buffer -- a copy of the FreeBSD "sbuf" library,
for safe string handling.
for safe string handling.

VSC
Varnish Statistics Counter -- counters for various stats,
exposed via varnishapi.
exposed via varnishapi.

VSS
Varnish Session Stuff -- library functions to wrap DNS/TCP.
(lib/libvarnish/vss.c)
(lib/libvarnish/vss.c)

VTC
Varnish Test Code -- a test-specification for the varnishtest program.
Varnish Test Code -- a test-specification for the varnishtest program.

VTE
Varnish Turbo Encabulator

VTLA
Varnish Three Letter Acronym -- No rule without an exception.
Varnish Three Letter Acronym -- No rule without an exception.

VUG
Varnish User Group meeting -- Half-yearly event where the users and
developers of Varnish Cache gather to share experiences and plan
future development.
future development.

VWx
Varnish Waiter 'x' -- A code module to monitor idle sessions.
Varnish Waiter 'x' -- A code module to monitor idle sessions.

VWE
Varnish Waiter Epoll -- epoll(2) (linux) based waiter module.
Varnish Waiter Epoll -- epoll(2) (linux) based waiter module.

VWK
Varnish Waiter Kqueue -- kqueue(2) (freebsd) based waiter module.
Varnish Waiter Kqueue -- kqueue(2) (freebsd) based waiter module.

VWP
Varnish Waiter Poll -- poll(2) based waiter module.
Varnish Waiter Poll -- poll(2) based waiter module.

VWS
Varnish Waiter Solaris -- Solaris ports(2) based waiter module.
Varnish Waiter Solaris -- Solaris ports(2) based waiter module.



Expand Down
2 changes: 1 addition & 1 deletion lib/libvarnishapi/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ vxp_test_CFLAGS = \
vxp_test_LDADD = @PCRE_LIBS@ \
${RT_LIBS} ${LIBM} ${PTHREAD_LIBS}

TESTS = vsl_glob_test
TESTS = vsl_glob_test

noinst_PROGRAMS += vsl_glob_test

Expand Down
2 changes: 1 addition & 1 deletion lib/libvmod_std/vmod.vcc
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ Example::

if (std.file_exists("/etc/return_503")) {
return (synth(503, "Varnish is in maintenance"));
}``
}

$Function VOID collect(HEADER hdr, STRING sep=", ")

Expand Down

0 comments on commit f06c02c

Please sign in to comment.