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.

84 lines
3.5 KiB

  1. From 644d9ef5af4f8010412007374c345f7465c97391 Mon Sep 17 00:00:00 2001
  2. From: Willy Tarreau <w@1wt.eu>
  3. Date: Thu, 10 Jul 2014 16:29:08 +0200
  4. Subject: [PATCH 23/25] DOC: fix alphabetical sort of converters
  5. For an unknown reason, these ones were not sorted.
  6. (cherry picked from commit ffcb2e4b42acd710121a57eb39651a373d904e5b)
  7. ---
  8. doc/configuration.txt | 32 ++++++++++++++++----------------
  9. 1 file changed, 16 insertions(+), 16 deletions(-)
  10. diff --git a/doc/configuration.txt b/doc/configuration.txt
  11. index b6d1b3b..f8199b9 100644
  12. --- a/doc/configuration.txt
  13. +++ b/doc/configuration.txt
  14. @@ -9887,28 +9887,12 @@ base64
  15. transfer binary content in a way that can be reliably transferred (eg:
  16. an SSL ID can be copied in a header).
  17. -lower
  18. - Convert a string sample to lower case. This can only be placed after a string
  19. - sample fetch function or after a transformation keyword returning a string
  20. - type. The result is of type string.
  21. -
  22. -upper
  23. - Convert a string sample to upper case. This can only be placed after a string
  24. - sample fetch function or after a transformation keyword returning a string
  25. - type. The result is of type string.
  26. -
  27. hex
  28. Converts a binary input sample to an hex string containing two hex digits per
  29. input byte. It is used to log or transfer hex dumps of some binary input data
  30. in a way that can be reliably transferred (eg: an SSL ID can be copied in a
  31. header).
  32. -ipmask(<mask>)
  33. - Apply a mask to an IPv4 address, and use the result for lookups and storage.
  34. - This can be used to make all hosts within a certain mask to share the same
  35. - table entries and as such use the same server. The mask can be passed in
  36. - dotted form (eg: 255.255.255.0) or in CIDR form (eg: 24).
  37. -
  38. http_date([<offset>])
  39. Converts an integer supposed to contain a date since epoch to a string
  40. representing this date in a format suitable for use in HTTP header fields. If
  41. @@ -9917,6 +9901,12 @@ http_date([<offset>])
  42. emit Date header fields, Expires values in responses when combined with a
  43. positive offset, or Last-Modified values when the offset is negative.
  44. +ipmask(<mask>)
  45. + Apply a mask to an IPv4 address, and use the result for lookups and storage.
  46. + This can be used to make all hosts within a certain mask to share the same
  47. + table entries and as such use the same server. The mask can be passed in
  48. + dotted form (eg: 255.255.255.0) or in CIDR form (eg: 24).
  49. +
  50. language(<value>[,<default>])
  51. Returns the value with the highest q-factor from a list as extracted from the
  52. "accept-language" header using "req.fhdr". Values with no q-factor have a
  53. @@ -9944,6 +9934,11 @@ language(<value>[,<default>])
  54. use_backend english if en
  55. default_backend choose_your_language
  56. +lower
  57. + Convert a string sample to lower case. This can only be placed after a string
  58. + sample fetch function or after a transformation keyword returning a string
  59. + type. The result is of type string.
  60. +
  61. map(<map_file>[,<default_value>])
  62. map_<match_type>(<map_file>[,<default_value>])
  63. map_<match_type>_<output_type>(<map_file>[,<default_value>])
  64. @@ -10001,6 +9996,11 @@ map_<match_type>_<output_type>(<map_file>[,<default_value>])
  65. | `---------------------------- key
  66. `------------------------------------ leading spaces ignored
  67. +upper
  68. + Convert a string sample to upper case. This can only be placed after a string
  69. + sample fetch function or after a transformation keyword returning a string
  70. + type. The result is of type string.
  71. +
  72. 7.3.2. Fetching samples from internal states
  73. --------------------------------------------
  74. --
  75. 1.8.5.5