1
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2025-08-18 11:51:19 +02:00

Add vim modelines to all files.

Signed-off-by: Edward Z. Yang <edwardzyang@thewritingpot.com>
This commit is contained in:
Edward Z. Yang
2008-12-06 04:24:59 -05:00
parent 781f9a4084
commit 12b811d749
699 changed files with 1071 additions and 107 deletions

View File

@@ -3,3 +3,4 @@ TYPE: string
DEFAULT: 'apple'
ALLOWED: 'apple', 'orange', 'pear', 'peach', 'mango'
DESCRIPTION: This directive has a constrained set of allowed values.
--# vim: et sw=4 sts=4

View File

@@ -4,3 +4,4 @@ DEFAULT: 0
DESCRIPTION: This is a deprecated directive that shouldn't show up on the form.
DEPRECATED-VERSION: 1.0.0
DEPRECATED-USE: Directive.Allowed
--# vim: et sw=4 sts=4

View File

@@ -1,2 +1,3 @@
Directive
DESCRIPTION: Other custom options with directives.
DESCRIPTION: Other custom options with directives.
--# vim: et sw=4 sts=4

View File

@@ -2,3 +2,4 @@ Type.bool
TYPE: bool
DEFAULT: false
DESCRIPTION: The boolean type is true or false.
--# vim: et sw=4 sts=4

View File

@@ -2,3 +2,4 @@ Type.float
TYPE: float
DEFAULT: 3.1415
DESCRIPTION: The float type is a floating point number.
--# vim: et sw=4 sts=4

View File

@@ -2,3 +2,4 @@ Type.hash
TYPE: hash
DEFAULT: array('key1' => 'val1', 'key2' => 'val2')
DESCRIPTION: The hash type is an associative array of string keys and string values.
--# vim: et sw=4 sts=4

View File

@@ -2,3 +2,4 @@ Type.int
TYPE: int
DEFAULT: 23
DESCRIPTION: The int type is an signed integer.
--# vim: et sw=4 sts=4

View File

@@ -2,3 +2,4 @@ Type.istring
TYPE: istring
DEFAULT: 'case insensitive'
DESCRIPTION: The istring type is short (no newlines), must be ASCII and is case-insensitive.
--# vim: et sw=4 sts=4

View File

@@ -2,3 +2,4 @@ Type.itext
TYPE: itext
DEFAULT: "case\ninsensitive\nand\npossibly\nquite\nlong"
DESCRIPTION: The text type has newlines, must be ASCII and is case-insensitive.
--# vim: et sw=4 sts=4

View File

@@ -2,3 +2,4 @@ Type.list
TYPE: list
DEFAULT: array('item1', 'item2')
DESCRIPTION: The list type is a numerically indexed array of strings.
--# vim: et sw=4 sts=4

View File

@@ -2,3 +2,4 @@ Type.lookup
TYPE: lookup
DEFAULT: array('key1' => true, 'key2' => true)
DESCRIPTION: The lookup type acts just like list, except its elements are unique and are checked with <code>isset($var[$key])</code>.
--# vim: et sw=4 sts=4

View File

@@ -2,3 +2,4 @@ Type.mixed
TYPE: mixed
DEFAULT: new stdclass()
DESCRIPTION: The mixed type allows any type, and is not form-editable.
--# vim: et sw=4 sts=4

View File

@@ -4,3 +4,4 @@ DEFAULT: null
--DESCRIPTION--
Null booleans need to be treated a little specially. See %Type.nullstring
for information on what the null flag does.
--# vim: et sw=4 sts=4

View File

@@ -6,3 +6,4 @@ The null type is not a type, but a flag that can be added to any type
making null a valid value for that entry. It's useful for saying, "Let
the software pick the value for me," or "Don't use this element" when
false has a special meaning.
--# vim: et sw=4 sts=4

View File

@@ -2,3 +2,4 @@ Type.string
TYPE: string
DEFAULT: 'Case sensitive'
DESCRIPTION: The string type is short (no newlines) and case-sensitive.
--# vim: et sw=4 sts=4

View File

@@ -2,3 +2,4 @@ Type.text
TYPE: text
DEFAULT: "Case sensitive\nand\npossibly\nquite long..."
DESCRIPTION: The text type has newlines and is case-sensitive.
--# vim: et sw=4 sts=4

View File

@@ -1,2 +1,3 @@
Type
DESCRIPTION: Directives demonstration the variable types ConfigSchema supports.
--# vim: et sw=4 sts=4

View File

@@ -1 +1,3 @@
name = "Test Schema"
; vim: et sw=4 sts=4