rmobio 1.1.28 → 1.1.29

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.
@@ -184,11 +184,11 @@ The above code generates the following xhtml in Firefox:
184
184
  #
185
185
  #==== Examples
186
186
  #
187
- # @xml.textare(body, "some text",
187
+ # @xml.output(body, "some text",
188
188
  # :style=>'class="white"', :xstyle=>'height="3ex" style="white"')
189
189
  #generates the following xhtml code:
190
190
  # <textarea class="white" name="">some text</textarea>
191
- def textarea(doc, txt="", options={})
191
+ def textoutput(doc, txt="", options={})
192
192
  doc << "\n<textarea #{options[:style]} name=\"#{options[:id]}\">" << txt << "</textarea>"
193
193
  end
194
194
 
@@ -217,7 +217,10 @@ The above code generates the following xhtml in Firefox:
217
217
  def input(doc, id, value, type, options={})
218
218
  doc << "\n<input #{options[:style]} type=\"" << type << "\" name=\"" << id << "\" value=\"" << value << "\"/>\n"
219
219
  end
220
-
220
+ #Create a multi-line textarea, same as textoutput tag
221
+ def textarea(doc, id, value, type, options={})
222
+ doc << "\n<textarea #{options[:style]} name=\"#{id}\">" << value << "</textarea>"
223
+ end
221
224
  def submit_tag()
222
225
  # do nothing, only implemented in xforms
223
226
  end
@@ -134,7 +134,9 @@ A rails icon and some text will be displayed on Mobio runner when you load the r
134
134
  #and the text widget displays the data in that xpath.
135
135
  #* <tt>:xpath</tt> -- specifies the xpath of the text string in the instance model.\
136
136
  #If :id is not specified, it assumes a relative path for the text node. \
137
- #See the 3rd example.
137
+ #See the 3rd example. \
138
+ #* <tt>:value</tt> -- specifies the value attribute of text widget. \
139
+ #See the last example
138
140
  #==== Examples
139
141
  #* Text widget displays the string of _txt_ argument without creating an instance:
140
142
  # @xml.text(body, 'My test', :xstyle=>'style="white"')
@@ -167,6 +169,11 @@ A rails icon and some text will be displayed on Mobio runner when you load the r
167
169
  # <m:output ref="@name"/>
168
170
  # </m:item>
169
171
  # </m:itemset>
172
+ #* Text widget displays a string in value attribute:
173
+ # @xml.text(cell, "", :value=>"concat('tel:', instance('phones')/number)")
174
+ #generates the following xforms:
175
+ # <m:output height="1ex" value="concat('tel:', instance('phones')/number)"/>
176
+ #
170
177
  def text(doc, txt="", options={})
171
178
  # If there's id but no xpath, we will create a default instance data for
172
179
  # the textoutput.
@@ -187,6 +194,8 @@ A rails icon and some text will be displayed on Mobio runner when you load the r
187
194
  # If there's an xpath but no id, this is a relative pace, don't create any instance.
188
195
  if options[:xpath]
189
196
  @view_buffer << ' ref="' << options[:xpath] << '"/>'
197
+ elsif options[:value]
198
+ @view_buffer << " value=\"#{options[:value]}\"/>"
190
199
  else
191
200
  @view_buffer << ">" << txt << "</m:output>"
192
201
  end
@@ -211,7 +220,7 @@ A rails icon and some text will be displayed on Mobio runner when you load the r
211
220
  #* <tt>:xpath</tt> -- specifies the xpath of the text string in the instance model.
212
221
  #
213
222
  #==== Examples
214
- # @xml.textarea(body, 'My test', {:xstyle=>'style="white" height="2ex"'})
223
+ # @xml.textoutput(body, 'My test', {:xstyle=>'style="white" height="2ex"'})
215
224
  #
216
225
  #generates the following xforms:
217
226
  # <m:textoutput style="white" height="5ex">My test</m:textoutput>
@@ -219,12 +228,12 @@ A rails icon and some text will be displayed on Mobio runner when you load the r
219
228
  #
220
229
  #==== Examples
221
230
  #* Text widget displays the string of _txt_ argument without creating an instance:
222
- # @xml.textarea(body, 'My test box', :xstyle=>'height="3ex"')
231
+ # @xml.textoutput(body, 'My test box', :xstyle=>'height="3ex"')
223
232
  #
224
233
  #generates a 3 line text box:
225
234
  # <m:textoutput height="3ex">My test box</m:textoutput>
226
235
  #* Text widget creates a model instance and displays the string from the new instance:
227
- # @xml.textarea(body, 'My test box',
236
+ # @xml.textoutput(body, 'My test box',
228
237
  # :id=>'txt1', :xstyle=>'height="3ex"')
229
238
  #generates the following xforms:
230
239
  #In model:
@@ -232,12 +241,12 @@ A rails icon and some text will be displayed on Mobio runner when you load the r
232
241
  #In view:
233
242
  # <m:textoutput height="3ex" ref="instance('txt1')/txt"/>
234
243
  #* Text widget displays string from a pre defined instance:
235
- # @xml.textarea(body, 'My test', :id=>'txt1', :xpath=>'images/id',
244
+ # @xml.textoutput(body, 'My test', :id=>'txt1', :xpath=>'images/id',
236
245
  # :xstyle=>'height="5ex" width="50%"')
237
246
  #generates the following xforms:
238
247
  # <m:textoutput height="5ex" width="50%" ref="instance('txt1')/images/id"/>
239
248
  #
240
- def textarea(doc, txt="", options={})
249
+ def textoutput(doc, txt="", options={})
241
250
  # If there's id but no xpath, we will create a default instance data for
242
251
  # the textoutput.
243
252
  if options[:id] and options[:xpath].nil?
@@ -257,7 +266,8 @@ A rails icon and some text will be displayed on Mobio runner when you load the r
257
266
  else
258
267
  @view_buffer << ">" << txt << "</m:textoutput>"
259
268
  end
260
- end # textarea
269
+ end # end textoutput
270
+
261
271
  #
262
272
  #Create user input field.
263
273
  #1. id: The instance id that will be associated with this input field. An instance data \
@@ -314,8 +324,65 @@ A rails icon and some text will be displayed on Mobio runner when you load the r
314
324
  else
315
325
  @view_buffer << options[:xpath] << "\"/>"
316
326
  end
317
- end
318
-
327
+ end # end input
328
+
329
+ #Create multi lines input area. Similar to input tag except input tag only
330
+ #allow a single input line.
331
+ #1. id: The instance id that will be associated with this input field. An instance data \
332
+ #will be created automatically in the model if options[:xpath] is not specified. \
333
+ #The instance is created with only one tag: 'txt'.
334
+ #2. value: initial value that will be displayed when ui is loaded
335
+ #3. type: not used for xforms client
336
+ #==== Options
337
+ #* <tt>:xstyle</tt> -- specifies xforms style attributes as a string
338
+ #* <tt>:xpath</tt> -- specifies the xpath of the input data in the model
339
+ #==== Examples
340
+ #* Create a simple textarea:
341
+ # @xml.textarea(body, "name", "john", "text")
342
+ #generates the following xforms:
343
+ #
344
+ #In Model section of the form:
345
+ # <xf:instance id="name">
346
+ # <data xmlns=""><txt>john</txt></data>
347
+ # </xf:instance>
348
+ #In View section of the form:
349
+ # <m:textarea height="1ex" ref="instance('name')/txt"/>
350
+ #Notice the instance data is created automatically because the rxml tag
351
+ #didn't specify the :xpath argument. Mobio runner will display an input box with default
352
+ #value "john" in the box when the page is launched. User can edit the
353
+ #string in the box and the value will be assinged to the model instance('name')/txt.
354
+ #
355
+ #* The next example shows how to create a textarea tag with predefined instance data:
356
+ #Note, create the options hash before the beginning of the document)
357
+ # options = {
358
+ # :style=> 'style="white"',
359
+ # :xstyle=>'height="3ex"',
360
+ # :xpath=>"images/id"}
361
+ # @xml.doctype(xml) do |x|
362
+ # @xml.body(x, 'mobio', 'default_style.xml') do|body|
363
+ # @xml.textarea(body, "img", "", "text", options)
364
+ # end
365
+ # end
366
+ #
367
+ #The above rxml generates only the view part in the xforms:
368
+ # <m:textarea height="3ex" ref="instance('img')/images/id/>
369
+ #It assumes you already defined an instance 'img' in the model with tag /images/id.
370
+ #If the instance data is not defined, you will see a blank text box but you can't
371
+ #move focus to the box and you can't enter any text. If the instance model
372
+ #is defined, the text box will an initial value set in the instance data.
373
+ def textarea(doc, id, value, type, options={})
374
+ # Create model instance only when there's no xpath
375
+ if options[:xpath].nil?
376
+ @model_buffer << "\n" << '<xf:instance id="' << id << '"><data xmlns=""><txt>' << value << "</txt></data></xf:instance>\n"
377
+ end
378
+ @view_buffer << "\n<m:textarea #{options[:xstyle]} ref=" << "\"instance('" << id << "')/"
379
+ if options[:xpath].nil?
380
+ @view_buffer << "txt\"/>"
381
+ else
382
+ @view_buffer << options[:xpath] << "\"/>"
383
+ end
384
+ end # end textarea
385
+
319
386
  #Implement xforms <xf:send> in view buffer and <xf:submission> tag in model buffer
320
387
  #If argument 'create_instance' is set to true, it will create an <xf:submission> instance
321
388
  #based on the attributes (see options). Otherwise, it assumes an instance is
@@ -1060,7 +1127,7 @@ A rails icon and some text will be displayed on Mobio runner when you load the r
1060
1127
  # <m:param name="ringtone" ref="instance('store')/ringtone"/>
1061
1128
  # </m:syscall>
1062
1129
  # </m:button>
1063
- def syscall(doc, name, params={})
1130
+ def syscall(doc, name, params={})
1064
1131
  @view_buffer << "\n<m:syscall name=\"#{name}\" ev:event=\"DOMActivate\">"
1065
1132
  if not params.nil?
1066
1133
  params.keys.each do |x|
@@ -1243,7 +1310,7 @@ A rails icon and some text will be displayed on Mobio runner when you load the r
1243
1310
  # Put some default styles if user doesn't specify any
1244
1311
  def basic_styles
1245
1312
  #@model_buffer << "<m:style xmlns=\"http://www.mobio.com/ext\">"
1246
- # took out all basic styles because client has provided a default style
1313
+ # took out all basic styles because client has provided a default style
1247
1314
  #@model_buffer << "</m:style>"
1248
1315
  end
1249
1316
 
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.28
4
+ version: 1.1.29
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mobio Networks
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-06-16 00:00:00 -07:00
12
+ date: 2008-06-18 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency