home *** CD-ROM | disk | FTP | other *** search
/ .net 2000 August / NET74.ISO / pc / Software / M3Gate / m3stp03.exe / data1.cab / Main_Program_Files / relnotes.txt (.txt) < prev    next >
Encoding:
Clarion Memo  |  2000-05-22  |  1.8 KB  |  61 lines

  1. M3Gate
  2. Version 0.3
  3. Copyright 
  4.  2000 Numeric Algorithm Laboratories
  5. _________________________________________________
  6. RELEASE NOTES
  7. Contents:
  8.   * WML Parsing Details
  9.   * WMLScripts Implementation Details
  10. _________________________________________________
  11. WML PARSING DETAILS
  12.     1 Common Attributes
  13. 1.1 <class> and <xml:lang> are ignored.
  14. 1.2 In all elements except <card> `id` attribute 
  15. is ignored.
  16.     2 Events
  17. 2.1 If there are several <onevent> with the 
  18. same `type` met, only the first one is 
  19. significant.
  20. 2.2 Type `onpick` in <onevent> is not supported 
  21. (however `onpick` attribute in <option> is).
  22.     3 <card>
  23. 3.1 `ordered` attribute is always considered 
  24. as `true`.
  25.     4 <input> and <select>
  26. 4.1 `tabindex` attribute is ignored.
  27.     5 <timer> element
  28. 5.1 If value is not valid integer, it is equal 
  29. to zero.
  30.     6 Text formatting
  31. 6.1 Attribute `mode` in <p> element is always 
  32. `wrap`.
  33. 6.2 Tables are supported, but are shown as a 
  34. single column.
  35. I.e. table 
  36. will be presented as 
  37. 6.3   is replaced by simple space
  38. 6.4 ­ is shown as minus
  39. _________________________________________________
  40. WMLSCRIPT IMPLEMENTATION DETAILS
  41.     1 URL library
  42. 1.1 `loadString` does nothing and returns 
  43. `invalid`.
  44.     2 Lang library
  45. 2.1 Functions `abort` and `exit` do nothing and 
  46. return `invalid`.
  47.     3 Debug library
  48. 3.1 M3Gate implements its own library: Debug.
  49. 3.2 This library is not standard libary, and 
  50. should be used only for debug versions of WAP 
  51. applications. It includes two functions:
  52. Function:    watch(value)
  53. Parameter:    value - any WMLScript variable
  54. Description:    Shows variable value and its 
  55.                 type
  56. Returns:        None
  57. Function:    trace(value)
  58. Parameter:    value - string
  59. Description:    Sends value to debugger
  60. Returns:        None
  61.