home *** CD-ROM | disk | FTP | other *** search
Clarion Memo | 2000-05-22 | 1.8 KB | 61 lines |
- M3Gate
- Version 0.3
- Copyright
- 2000 Numeric Algorithm Laboratories
- _________________________________________________
- RELEASE NOTES
- Contents:
- * WML Parsing Details
- * WMLScripts Implementation Details
- _________________________________________________
- WML PARSING DETAILS
- 1 Common Attributes
- 1.1 <class> and <xml:lang> are ignored.
- 1.2 In all elements except <card> `id` attribute
- is ignored.
- 2 Events
- 2.1 If there are several <onevent> with the
- same `type` met, only the first one is
- significant.
- 2.2 Type `onpick` in <onevent> is not supported
- (however `onpick` attribute in <option> is).
- 3 <card>
- 3.1 `ordered` attribute is always considered
- as `true`.
- 4 <input> and <select>
- 4.1 `tabindex` attribute is ignored.
- 5 <timer> element
- 5.1 If value is not valid integer, it is equal
- to zero.
- 6 Text formatting
- 6.1 Attribute `mode` in <p> element is always
- `wrap`.
- 6.2 Tables are supported, but are shown as a
- single column.
- I.e. table
- will be presented as
- 6.3 is replaced by simple space
- 6.4 is shown as minus
- _________________________________________________
- WMLSCRIPT IMPLEMENTATION DETAILS
- 1 URL library
- 1.1 `loadString` does nothing and returns
- `invalid`.
- 2 Lang library
- 2.1 Functions `abort` and `exit` do nothing and
- return `invalid`.
- 3 Debug library
- 3.1 M3Gate implements its own library: Debug.
- 3.2 This library is not standard libary, and
- should be used only for debug versions of WAP
- applications. It includes two functions:
- Function: watch(value)
- Parameter: value - any WMLScript variable
- Description: Shows variable value and its
- type
- Returns: None
- Function: trace(value)
- Parameter: value - string
- Description: Sends value to debugger
- Returns: None
-