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.
- data/lib/rmobio/rxml/xforms_transformer.rb +19 -28
- metadata +1 -1
@@ -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
|
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
|
116
|
+
@view_buffer << "\n<body>"
|
117
117
|
yield doc
|
118
|
-
@view_buffer << '<m: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
|
167
|
-
# <m:output
|
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.
|
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%"
|
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%"
|
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%"
|
893
|
-
# <m:hstack height="1ex"
|
894
|
-
# <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"
|
887
|
+
# <m:itemlist height="0">
|
897
888
|
# <m:item height="1ex" accesskey="1">
|
898
|
-
# <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
|
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
|
897
|
+
# <m:output>move3</m:output>
|
907
898
|
# </m:item>
|
908
899
|
# <m:item height="1ex" accesskey="0">
|
909
|
-
# <m:output
|
900
|
+
# <m:output>exit</m:output>
|
910
901
|
# <m:exit ev:event="DOMActivate"/>
|
911
902
|
# </m:item>
|
912
903
|
# </m:itemlist>
|