Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: e3e97c54fd25b6520f3e33853b598526d2fbb7dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!--
Service Indication (SI) Document Type Definition.

Copyright Wireless Application Protocol Forum Ltd., 1998,1999.
                      All rights reserved.  

SI is an XML language.  Typical usage:
   <?xml version="1.0"?>
   <!DOCTYPE si PUBLIC "-//WAPFORUM//DTD SI 1.0//EN"
                "http://www.wapforum.org/DTD/si.dtd">
   <si>
   ...
   </si>

Terms and conditions of use are available from the Wireless 
Application Protocol Forum Ltd. web site at
http://www.wapforum.org/docs/copyright.htm.
-->


<!ENTITY % Datetime "CDATA">             <!-- ISO date and time -->
<!ENTITY % URI      "CDATA">             <!-- URI designating a 
                                              hypertext node    -->


<!--====================== The SI Element ======================-->
<!ELEMENT si (indication,info?)>


<!--================== The indication Element ==================-->
<!ELEMENT indication (#PCDATA)>
<!ATTLIST indication
  href	        %URI;                                      #IMPLIED
  si-id	        CDATA                                      #IMPLIED
  created	%Datetime;	                           #IMPLIED
  si-expires	%Datetime;	                           #IMPLIED
  action	(signal-none|signal-low|
                 signal-medium|signal-high|delete)  "signal-medium" 
>


<!--===================== The INFO Element =====================-->
<!ELEMENT info (item+)>

<!ELEMENT item (#PCDATA)>
<!ATTLIST item
  class	        NMTOKEN                                   #REQUIRED 
>

<!--
Copyright Wireless Application Protocol Forum Ltd., 1998,1999.
                      All rights reserved.  
-->

Back to the top