<<O>> Difference Topic TWikiAttrsDotPm (2 - 2007-01-16 - TWikiContributor) |
Package =TWiki::Attrs | ||||||||
Added: | ||||||||
> > | ||||||||
Class of attribute sets, designed for parsing and storing attribute values
from a TWiki tag e.g. %TAG{fred='bad' "sad" joe="mad"}%
An attribute set is a map containing an entry for each parameter. The
default parameter (unnamed quoted string) is named _DEFAULT in the map.
Attributes declared later in the string will override those of the same
name defined earlier. The one exception to this is the _DEFAULT key, where
the first instance of a setting is always taken.
As well as standard TWiki syntax (parameter values double-quoted)
it also parses single-quoted values, unquoted spaceless
values, spaces around the =, and commas as well as spaces separating values,
though none of these alternatives is advertised in documentation and
the extended syntax can be turned off by passing the 'strict' parameter
to new .
This class replaces the old TWiki::extractNameValuePair and
TWiki::extractParameters.
On this page:
ClassMethod new ($string,$friendly)=>\%attrsObjectRef | ||||||||
Added: | ||||||||
> > | ||||||||
my $attrs = new TWiki::Attrs('the="time \\"has come", "the walrus" said to=speak of=\'many \\'things\', 1);In this example:
ObjectMethod isEmpty () -> boolean | ||||||||
Added: | ||||||||
> > | ||||||||
Return false if attribute set is not empty.
ObjectMethod remove ($key) -> $value | ||||||||
Added: | ||||||||
> > | ||||||||
remove the attribute is no longer defined.
ObjectMethod stringify () -> $string | ||||||||
Added: | ||||||||
> > | ||||||||
Generate a printed form for the map, using standard
attribute syntax, with only the single-quote extension
syntax observed (no {} brackets, though).
StaticMethod extractValue () -> $string | ||||||||
Added: | ||||||||
> > | ||||||||
Legacy support, formerly known as extractNameValuePair. This static method uses context information to determine how a value string is to be parsed. For example, if you have an attribute string like this: "abc def="ghi" jkl" def="qqq" then call extractValue( "def" ), it will return "ghi". | ||||||||
Deleted: | ||||||||
< < | ||||||||
ObjectMethod get ($key) -> $value | ||||||||
Added: | ||||||||
> > | ||||||||
|
<<O>> Difference Topic TWikiAttrsDotPm (1 - 2006-02-01 - TWikiContributor) |
Package =TWiki::AttrsClass of attribute sets, designed for parsing and storing attribute values from a TWiki tag e.g.%TAG{fred='bad' "sad" joe="mad"}%
An attribute set is a map containing an entry for each parameter. The
default parameter (unnamed quoted string) is named _DEFAULT in the map.
Attributes declared later in the string will override those of the same
name defined earlier. The one exception to this is the _DEFAULT key, where
the first instance of a setting is always taken.
As well as standard TWiki syntax (parameter values double-quoted)
it also parses single-quoted values, unquoted spaceless
values, spaces around the =, and commas as well as spaces separating values,
though none of these alternatives is advertised in documentation and
the extended syntax can be turned off by passing the 'strict' parameter
to new .
This class replaces the old TWiki::extractNameValuePair and
TWiki::extractParameters.
On this page:
ClassMethod new ($string,$friendly)=>\%attrsObjectRef
my $attrs = new TWiki::Attrs('the="time \\"has come", "the walrus" said to=speak of=\'many \\'things\', 1);In this example:
ObjectMethod isEmpty () -> booleanReturn false if attribute set is not empty.ObjectMethod remove ($key) -> $value
remove the attribute is no longer defined.
ObjectMethod stringify () -> $stringGenerate a printed form for the map, using standard attribute syntax, with only the single-quote extension syntax observed (no {} brackets, though).StaticMethod extractValue () -> $stringLegacy support, formerly known as extractNameValuePair. This static method uses context information to determine how a value string is to be parsed. For example, if you have an attribute string like this: "abc def="ghi" jkl" def="qqq" then call extractValue( "def" ), it will return "ghi".ObjectMethod get ($key) -> $value
|