annotate Lib/IMPL/Text/Schema.pm @ 245:7c517134c42f

Added Unsupported media type Web exception corrected resourceLocation setting in the resource Implemented localizable resources for text messages fixed TT view scopings, INIT block in controls now sets globals correctly.
author sergey
date Mon, 29 Oct 2012 03:15:22 +0400
parents d1676be8afcc
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
1 package IMPL::Text::Schema;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
2 use strict;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
3 use warnings;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
4
166
4267a2ac3d46 Added Class::Template,
wizard
parents: 49
diff changeset
5 use parent qw(IMPL::DOM::Schema);
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
6
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
7 __PACKAGE__->PassThroughArgs;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
8
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
9 1;
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
10
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
11 __END__
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
12
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
13 =pod
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
14
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
15 =head1 SINOPSYS
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
16
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
17 <schema>
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
18 <ComplexNode name="syntax">
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
19 <Node name="Define" type="Statement" minOccur="1" maxOccur="unbounded">
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
20 <Property name="name" type="Word"/>
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
21 </Node>
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
22 </ComplexNode>
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
23 <ComplexType type="Statement" nativeType="IMPL::Text::Schema::Statement">
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
24 <NodeList>
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
25 <SwitchNode minOccur="1" maxOccur="unbounded">
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
26 <Node name="Word" type="Word"/>
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
27 <Node name="Statement" type="Word"/>
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
28 <Node name="Regexp" type="Regexp"/>
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
29 <Node name="Switch" type="Switch"/>
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
30 <Node name="Repeat" type="List"/>
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
31 </SwitchNode>
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
32 </NodeList>
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
33 </ComplexType>
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
34 <SimpleType type="Word" nativeType="IMPL::Text::Schema::Word"/>
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
35 <SimpleType type="Regexp" nativeType="IMPL::Text::Schema::Regexp"/>
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
36 <ComplexType type="Switch" nativeType="IMPL::Text::Schema::Switch">
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
37 <NodeList>
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
38 <SwitchNode minOccur="1" maxOccur="unbounded">
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
39 <Node name="Word" type="Word"/>
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
40 <Node name="Statement" type="Word"/>
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
41 <Node name="Regexp" type="Regexp"/>
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
42 <Node name="Switch" type="Switch"/>
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
43 <Node name="Repeat" type="List"/>
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
44 </SwitchNode>
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
45 </NodeList>
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
46 </ComplexType>
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
47 <ComplexType type="Repeat" nativeType="IMPL::Text::Schema::Repeat">
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
48 <NodeList>
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
49 <SwitchNode minOccur="1" maxOccur="unbounded">
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
50 <Node name="Word" type="Word"/>
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
51 <Node name="Statement" type="Word"/>
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
52 <Node name="Regexp" type="Regexp"/>
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
53 <Node name="Switch" type="Switch"/>
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
54 <Node name="Repeat" type="List"/>
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
55 </SwitchNode>
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
56 </NodeList>
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
57 </CoomplexType>
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
58 </schema>
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
59
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
60 =head1 DESCRIPTION
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
61
180
d1676be8afcc Перекодировка в utf-8
sourcer
parents: 166
diff changeset
62 Схема текстового файла, которую можно использовать для разбора содержимого
d1676be8afcc Перекодировка в utf-8
sourcer
parents: 166
diff changeset
63 текстового файла.
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
64
180
d1676be8afcc Перекодировка в utf-8
sourcer
parents: 166
diff changeset
65 Схема текстового файла состоит из выражений.
d1676be8afcc Перекодировка в utf-8
sourcer
parents: 166
diff changeset
66 1. Регулярное выражение является выражением
d1676be8afcc Перекодировка в utf-8
sourcer
parents: 166
diff changeset
67 2. Строковое значение является выражением.
d1676be8afcc Перекодировка в utf-8
sourcer
parents: 166
diff changeset
68 3. Выражения объединенные логическими операторами также выражение.
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
69
180
d1676be8afcc Перекодировка в utf-8
sourcer
parents: 166
diff changeset
70 Допускаются следующие операторы
d1676be8afcc Перекодировка в utf-8
sourcer
parents: 166
diff changeset
71 1. Повтор
d1676be8afcc Перекодировка в utf-8
sourcer
parents: 166
diff changeset
72 2. Ветвление
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
73
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
74 =head1 METHODS
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
75
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
76 =over
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
77
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
78 =item C<<$schema->compile()>>
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
79
180
d1676be8afcc Перекодировка в utf-8
sourcer
parents: 166
diff changeset
80 Возвращает объект для разбора текста.
49
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
81
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
82 =back
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
83
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
84 =head1 INTERNALS
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
85
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
86
16ada169ca75 migrating to the Eclipse IDE
wizard@linux-odin.local
parents: 26
diff changeset
87 =cut