rmobio 1.1.27 → 1.1.28

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -51,7 +51,7 @@ The above code generates the following xforms for Mobio runner:
51
51
  <head>
52
52
  <xf:model></xf:model></head>
53
53
 
54
- <body style="body">
54
+ <body">
55
55
  <m:image height="5ex" width="100%">http://localhost:3000/images/rails.png</m:image>
56
56
  <m:hstack height="1ex"/>
57
57
  <m:output height="1ex">My test app</m:output></body></html>
@@ -113,9 +113,9 @@ A rails icon and some text will be displayed on Mobio runner when you load the r
113
113
  def body(doc, title="", style=nil)
114
114
  # xforms style is external style
115
115
  @view_buffer << '<style xmlns="http://www.mobio.com/ext" src="' << style << '"/>' if style
116
- @view_buffer << "\n<body style=\"body\">"
116
+ @view_buffer << "\n<body>"
117
117
  yield doc
118
- @view_buffer << '<m:footer style="footer" />'
118
+ @view_buffer << '<m:footer/>'
119
119
  @view_buffer << "</body>"
120
120
  end
121
121
  #Produce a text string. The text displayed can be the _txt_ argument if there's
@@ -163,8 +163,8 @@ A rails icon and some text will be displayed on Mobio runner when you load the r
163
163
  # end
164
164
  #generates the following xforms:
165
165
  # <m:itemset id="tb1" nodeset="instance('audios')/items/item" >
166
- # <m:item style="item">
167
- # <m:output style="label" ref="@name"/>
166
+ # <m:item>
167
+ # <m:output ref="@name"/>
168
168
  # </m:item>
169
169
  # </m:itemset>
170
170
  def text(doc, txt="", options={})
@@ -766,9 +766,7 @@ A rails icon and some text will be displayed on Mobio runner when you load the r
766
766
  @view_buffer << "\n</m:slist>"
767
767
  end
768
768
  #Create a Tab control
769
- #1. xstyle: the xforms style string. If xstyle is not specified, the default\
770
- # value 'height="100% width="100% style="tabbody"' will be used. You need to \
771
- # define a style class "tabbody" if you want to style the widget. \
769
+ #1. xstyle: the xforms style string.
772
770
  # The tag is always followed by several xcase tags to create a complete UI \
773
771
  # for Tabs.
774
772
  #
@@ -784,8 +782,8 @@ A rails icon and some text will be displayed on Mobio runner when you load the r
784
782
  # end
785
783
  # end
786
784
  #generates the following xforms in the view:
787
- # <m:tab width="100%" height="100%" style="tabbody">
788
- # <m:case id="first" label="Current Match" >
785
+ # <m:tab width="100%" height="100%">
786
+ # <m:case id="first" label="Current Match" style="tab">
789
787
  # <m:output height="1ex">hello world!</m:output>
790
788
  # </m:case>
791
789
  # <m:case id="2nd" label="future" style="tab">
@@ -793,7 +791,7 @@ A rails icon and some text will be displayed on Mobio runner when you load the r
793
791
  # </m:case>
794
792
  # </m:tab>
795
793
  #
796
- def tab(doc, xstyle='width="100%" height="100%" style="tabbody"')
794
+ def tab(doc, xstyle='width="100%" height="100%"')
797
795
  @view_buffer << "\n<m:tab #{xstyle}>"
798
796
  yield doc
799
797
  @view_buffer << "\n</m:tab>"
@@ -834,16 +832,9 @@ A rails icon and some text will be displayed on Mobio runner when you load the r
834
832
  #See the document and examples in tab and switch tag.
835
833
  #1. id: the case reference id
836
834
  #2. label: what is displayed in the tab header (only needed in tab case)
837
- #3. xstyle: the xforms style string for the case (only needed in tab case).\
838
- #if not defined, default style="tab" will be applied.
835
+ #3. xstyle: the xforms style string for the case (only needed in tab case).
839
836
  def xcase(doc, id, label=nil, xstyle=nil)
840
- @view_buffer << "\n<m:case id=\"#{id}\" label=\"#{label}\""
841
- if xstyle
842
- @view_buffer << " #{xstyle}"
843
- else
844
- @view_buffer << ' style="tab"'
845
- end
846
- @view_buffer << '>'
837
+ @view_buffer << "\n<m:case id=\"#{id}\" label=\"#{label}\" #{xstyle}>"
847
838
  yield doc
848
839
  @view_buffer << "\n</m:case>"
849
840
  end
@@ -889,24 +880,24 @@ A rails icon and some text will be displayed on Mobio runner when you load the r
889
880
  # <m:show-popup refid="menu1" ev:event="DOMActivate" />
890
881
  # </m:softkey>
891
882
  #
892
- # <m:menu id="menu1" height="0" width="40%" style="popup-menu">
893
- # <m:hstack height="1ex" style="title"><m:icon>jar://img/option.png</m:icon>
894
- # <m:output style="option">Options</m:output>
883
+ # <m:menu id="menu1" height="0" width="40%">
884
+ # <m:hstack height="1ex"><m:icon>jar://img/option.png</m:icon>
885
+ # <m:output>Options</m:output>
895
886
  # </m:hstack>
896
- # <m:itemlist height="0" style="menu">
887
+ # <m:itemlist height="0">
897
888
  # <m:item height="1ex" accesskey="1">
898
- # <m:output style="label">move1</m:output>
889
+ # <m:output>move1</m:output>
899
890
  # <xf:load resource="foo1.xml" ev:event="DOMActivate"/>
900
891
  # </m:item>
901
892
  # <m:item height="1ex" accesskey="2">
902
- # <m:output style="label">move2</m:output>
893
+ # <m:output>move2</m:output>
903
894
  # <xf:load resource="foo2.xml" ev:event="DOMActivate"/>
904
895
  # </m:item>
905
896
  # <m:item height="1ex" accesskey="3">
906
- # <m:output style="label">move3</m:output>
897
+ # <m:output>move3</m:output>
907
898
  # </m:item>
908
899
  # <m:item height="1ex" accesskey="0">
909
- # <m:output style="label">exit</m:output>
900
+ # <m:output>exit</m:output>
910
901
  # <m:exit ev:event="DOMActivate"/>
911
902
  # </m:item>
912
903
  # </m:itemlist>
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rmobio
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.27
4
+ version: 1.1.28
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mobio Networks