rmobio 1.1.30 → 1.1.31

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.
@@ -26,7 +26,11 @@ module Rmobio
26
26
  module Ads
27
27
  module AdMobs
28
28
 
29
- def getAd(keywords,adClient,ip=request.remote_ip,url=request.request_uri,useragent=request.user_agent)
29
+ def get_ad(keywords,ad_client,request,kw_type="broad")
30
+ getAd(keywords,ad_client,ip=request.remote_ip,request.request_uri,request.user_agent,userid=request.env["HTTP_USERID"],kw_type)
31
+ end
32
+
33
+ def getAd(keywords,adClient,ip=request.remote_ip,url=request.request_uri,useragent=request.user_agent,userid=request.env["HTTP_USERID"],kw_type="broad")
30
34
  logger.info("Retrieving AdMobs ad")
31
35
  admob_params = {:admob_site_id => adClient, # REQUIRED - get from admob.com, value is generally set in rmobio.yml
32
36
  :admob_pc => "", # OPTIONAL - Postal Code, e.g. "90210"
@@ -46,7 +50,7 @@ module Rmobio
46
50
  admob_post["u"] = useragent if useragent
47
51
  admob_post["i"] = ip if ip
48
52
  admob_post["p"] = url if url
49
- admob_post["t"] = MD5.hexdigest(session.session_id)
53
+ admob_post["t"] = MD5.hexdigest(userid) # TODO: is this how to set userid?!
50
54
  admob_post["v"] = admob_version
51
55
  admob_post["d[pc]"] = admob_params[:admob_pc]
52
56
  admob_post["d[dob]"] = admob_params[:admob_dob]
@@ -72,7 +76,7 @@ module Rmobio
72
76
 
73
77
  # the keyword search version also evaluates the supplied page so
74
78
  # for admobs they are the same
75
- def getAdByPage(adClient)
79
+ def getAdByPage(adClient,ip=request.remote_ip,url=request.request_uri,useragent=request.user_agent,userid=request.env["HTTP_USERID"],kw_type="broad")
76
80
  getAd("",adClient)
77
81
  end
78
82
 
@@ -25,15 +25,15 @@ require 'collections/sequenced_hash'
25
25
  require 'open-uri'
26
26
 
27
27
  module Rmobio
28
- module Ads
29
- module AdSense
30
-
28
+ module Ads
29
+ module AdSense
31
30
  @@adServer="http://pagead2.googlesyndication.com/pagead/ads"
32
31
  @@mobio_useragent="Mobio" # we should probably come up with a better string
33
- @@default_ip="127.0.0.1"
34
-
35
- def getAdParms
36
- getAd(params[:keywords],params[:adClient])
32
+ @@default_ip="127.0.0.1"
33
+
34
+ # better wrapper than what we hjad
35
+ def get_ad(keywords,ad_client,request,kw_type="broad")
36
+ getAd(keywords,ad_client,ip=request.remote_ip,request.request_uri,request.user_agent,request.env["HTTP_USERID"],kw_type)
37
37
  end
38
38
 
39
39
  # this returns an ad from Google's mobile AdSense, given the current page
@@ -41,7 +41,7 @@ module Rmobio
41
41
  # * ip - optional, the IP you want to tell Google its coming from
42
42
  # * url - optional, the page you want to put an ad on. Defaults to what is detected
43
43
  # * useragent - the useragent of the mobile browser. Defaults to what is detected.
44
- def getAdByPage(adClient,ip=request.remote_ip,url=request.request_uri,useragent=request.user_agent)
44
+ def getAdByPage(adClient,ip=request.remote_ip,url=request.request_uri,useragent=request.user_agent,userid=request.env["HTTP_USERID"])
45
45
  @@userId=request.env['HTTP_USERID']
46
46
  adArgs= SequencedHash.new
47
47
  adArgs["ad_type"]="text"
@@ -56,9 +56,8 @@ module Rmobio
56
56
  #adArgs["ref"]=referer
57
57
  adArgs["url"]=url if url
58
58
  adArgs["useragent"]=URI.escape(useragent) if useragent
59
- adArgs["eip"]=Digest::SHA1.hexdigest(@@userId)[0..20] # oneway hashed userid
60
-
61
- # now built the URL to call out to based upon the base URL and ad hash
59
+ adArgs["eip"]=Digest::SHA1.hexdigest(userid)[0..20] if userid # oneway hashed userid
60
+ # now build the URL to call out to based upon the base URL and ad hash
62
61
  adURL=@@adServer + "?"
63
62
  first=1 # dont put ampersand on first one
64
63
  adArgs.each_key do |x|
@@ -70,38 +69,38 @@ module Rmobio
70
69
  end
71
70
  # ok, now call google's mobile adSense service and get back the full ad
72
71
  @pagead=open(adURL,"User-Agent"=>useragent).read
73
-
72
+
74
73
  end
75
-
76
- # this returns an ad from Google's mobile AdSense, given a supplied set of keywords
77
- # * keywords - keywords to use for search
78
- # * ad_client - your Google adsense ID
79
- # * ip - optional, the IP you want to say the request is coming from
80
- # * url - optional, the page you want to put an ad on
81
- # * useragent - the browser this is for. Defaults to the one detected
82
- def getAd(keywords,ad_client,ip=request.remote_ip,url=request.request_uri,useragent=request.user_agent)
83
- doTinyUrl=true
84
- @user_id="1"
85
- @user_id=request.env['HTTP_USERID'] if request.env['HTTP_USERID']
86
74
 
75
+ # retrieve ad fron network with specified
76
+ # * keywords - to search
77
+ # * ad_client - the publisher ID for the network (Google AdSense publisher ID in this case)
78
+ # * ip (optional, defaults to accessing IP of client) - accessing IP
79
+ # * url (optional, defaults to URL being accessed from the request header) - URL that the ad is for
80
+ # * useragent (optional, defaults to useragent from the request header) - user agent string for the browser
81
+ def getAd(keywords,ad_client,ip=request.remote_ip,url=request.request_uri,useragent=request.user_agent,userid=request.env["HTTP_USERID"],kw_type="broad")
82
+ doTinyUrl=true
83
+ #@user_id=request.env['HTTP_USERID'] if request.env and request.env['HTTP_USERID']
87
84
  # build up the various arguments in the adArgs hash
88
85
  adArgs= SequencedHash.new
89
86
  adArgs["ad_type"]="text_image"
90
87
  adArgs["client"]=ad_client
91
88
  adArgs["format"]="mobile_single"
89
+
92
90
  adArgs["ip"]=URI.escape(ip) if ip
93
91
  adArgs["markup"]="xhtml"
94
92
  adArgs["output"]="xhtml"
95
93
  adArgs["oe"]="utf-8"
96
94
  adArgs["url"]=url if url
97
95
  adArgs["useragent"]=URI.escape(useragent) if useragent
98
- adArgs["eip"]=Digest::SHA1.hexdigest(@user_id)[0..20] if @user_id # oneway hashed userid
96
+ adArgs["eip"]=Digest::SHA1.hexdigest(userid)[0..20] if userid # oneway hashed userid
99
97
  if (keywords)
100
98
  adArgs["kw"]=CGI::escape(keywords)
101
- adArgs["kw_type"]="broad"
99
+ adArgs["kw_type"]=kw_type # defaults to broad, can be set to "exact"
102
100
  end
103
101
  # now built the URL to call out to based upon the base URL and ad hash
104
102
  adURL=@@adServer + "?"
103
+
105
104
  first=1 # dont put ampersand on first one
106
105
  adArgs.each_key do |x|
107
106
  if adArgs[x]
@@ -110,12 +109,12 @@ module Rmobio
110
109
  adURL = adURL + x + "=" + adArgs[x]
111
110
  end
112
111
  end
113
-
112
+
113
+ $log.info "Ad URL: " + adURL # paste in your browser from log to verify/test
114
+ p "Ad url: " + adURL
114
115
  # ok, now call google's mobile adSense service and get back the full ad
115
- p "Opening ad URL " + adURL
116
116
  @ad=open(adURL,"User-Agent"=>CGI::escape(useragent)).read
117
117
  if @ad
118
- p "Returned ad" + @ad
119
118
  adDoc = REXML::Document.new @ad
120
119
  @text = adDoc.elements['//p']
121
120
  if @text # do we have a <p> element
@@ -137,9 +136,16 @@ module Rmobio
137
136
  @ad # return the full ad text
138
137
 
139
138
  end
140
-
139
+
140
+ # this returns an ad from Google's mobile AdSense, given a supplied set of keywords
141
+ # * keywords - keywords to use for search
142
+ # * ad_client - your Google adsense ID
143
+ # * ip - optional, the IP you want to say the request is coming from
144
+ # * url - optional, the page you want to put an ad on
145
+ # * useragent - the browser this is for. Defaults to the one detected
146
+
141
147
  private
142
-
148
+
143
149
  # need to use tinyURL since the URLs that come back from AdSense are just too long for our client
144
150
  def tinyUrl(url)
145
151
  shrinker="http://tinyurl.com/create.php?url="+url
@@ -159,6 +165,9 @@ module Rmobio
159
165
  end
160
166
  end
161
167
 
162
- end
168
+ end
163
169
  end
164
170
  end
171
+
172
+
173
+
@@ -25,21 +25,24 @@ module Rmobio
25
25
  module Ads
26
26
  module MKhoj
27
27
 
28
+ def get_ad(keywords,ad_client,request,kw_type="broad")
29
+ getAd(keywords,ad_client,ip=request.remote_ip,request.request_uri,request.user_agent,request.env["HTTP_USERID"],kw_type="broad")
30
+ end
28
31
 
29
- def getAd(keywords,adClient,ip=request.remote_ip,url=request.request_uri,useragent=request.user_agent)
32
+ def getAd(keywords,adClient,ip=request.remote_ip,url=request.request_uri,useragent=request.user_agent,userid=request.env["HTTP_USERID"],kw_type="broad")
30
33
  getAdByPage(adClient,ip,url,useragent) # keywords have no effect in mKhoj
31
34
  end
32
35
 
33
36
  def getAdByPage(adClient,ip=request.remote_ip,url=request.request_uri,useragent=request.user_agent)
34
37
  # mKhoj just detects your URL, so you don't really need an adClient variable for this particular network!
35
- #carrier="59.181.113.59" # only works with India carriers!!
36
-
38
+ # carrier="59.181.113.59" # only works with India carriers!!
39
+ # TODO: find out how to give MKHOJ a userid for tracking!
37
40
  adUrl = "http://www.mkhoj.com/view/Traffic/ShowAd.aspx?siteId=" + adClient +"&handset="+URI.escape(useragent)+"&carrier="+ip
38
41
  # e.g. adUrl="http://www.mkhoj.com/view/Traffic/ShowAd.aspx?siteId=330ed28f-0de9-4c4f-b0a8-1f2118358c80&handset=nokia6030/&carrier=59.181.113.59"
39
- logger.info "Calling: " + adUrl
42
+ $log.info "Calling: " + adUrl
40
43
  begin
41
44
  @ad = open(adUrl).read
42
- logger.info "Returned ad: " + @ad
45
+ $log.info "Returned ad: " + @ad
43
46
  rescue
44
47
  end
45
48
  @ad
@@ -16,89 +16,125 @@
16
16
  #
17
17
 
18
18
  require 'collections/sequenced_hash'
19
+ require 'open-uri'
20
+ require 'rexml/document'
21
+ require 'xmlsimple'
19
22
 
20
23
  module Rmobio
21
24
  module Ads
22
25
  module Smaato
23
- @@adServer="http://dev.soma.smaato.com:8080/wap/reqAd.jsp"
24
-
25
- def getAdByPage(adClient,ip=request.remote_ip,url=request.request_uri,useragent=request.user_agent)
26
- getAd(nil,adClient,ip,url,useragent)
26
+ @@adServer="http://soma.smaato.com/oapi/reqAd.jsp"
27
+
28
+ def get_ad(keywords,ad_client,request,kw_type="broad")
29
+ getAd(keywords,ad_client,ip=request.remote_ip,request.request_uri,request.user_agent,request.env["HTTP_USERID"],kw_type)
27
30
  end
28
31
 
32
+ def getAdByPage(adClient,ip=request.remote_ip,url=request.request_uri,useragent=request.user_agent,userid=request.env["HTTP_USERID"],kw_type="broad")
33
+ getAd(nil,adClient,ip,url,useragent,userid,kw_type)
34
+ end
35
+
29
36
  # this returns an adfrom Google's mobile AdSense, given a supplied set of keywords
30
37
  # Smaato doesn't seem to use the IP, the URL or the useragent
31
- def getAd(keywords,adClient,ip=request.remote_ip,url=request.request_uri,useragent=request.user_agent)
32
- logger.info "Smaato ad retrieval"
33
- =begin
34
- Example:
35
- http://dev.soma.smaato.com:8080/wap/reqAd.jsp?pub=3517&adspace=137
36
- &format=JPG&numads=10&offline=true&user=&response=XML
37
- &width=176&height=208&device=Sony&devip=123.45.67.89&carrier=o2
38
- &lang=de
39
- =end
40
- @@userId=request.env['HTTP_USERID']
41
-
38
+ def getAd(keywords,adClient,ip=request.remote_ip,url=request.request_uri,useragent=request.user_agent,userid=request.env["HTTP_USERID"],kw_type="broad")
42
39
  # build up the various arguments in the adArgs hash
43
40
  adArgs= SequencedHash.new
44
- adArgs["pub"]=adClient # replace with real publisher ID
45
- adArgs["adspace"]="137" # what is the ad space ID that we need here?!
41
+ adArgs["pub"]=adClient
42
+ adArgs["adspace"]=MOBIO_CONFIG['adspace'] # what is the ad space ID that we need here?!
46
43
  adArgs["format"]="JPG"
47
44
  adArgs["numads"]="1"
48
45
  adArgs["offline"]="true"
49
- adArgs["width"]="176" # get these from device capabilities service instead!
50
- adArgs["height"]="208" # get these from device capabilities service instead
51
46
  adArgs["response"]="XML"
52
- adArgs["user"]=@@userId
53
- if (keywords)
54
- adArgs["kws"]=CGI::escape(keywords)
55
- end
56
- # now built the URL to call out to based upon the base URL and ad hash
47
+ adArgs["ownid"]=userid
48
+
49
+ # supply device information from the Mobio device capability service based on the user agent
50
+ adArgs["device"]=capability("name",useragent)
51
+ adArgs["device"]||="SonyEricsson%20K750i"
52
+ adArgs["width"]=capability("width",useragent) # get these from device capabilities service instead!
53
+ adArgs["width"]||=(MOBIO_CONFIG['default_width'].to_s)
54
+ adArgs["height"]=capability("height",useragent) # get these from device capabilities service instead
55
+ adArgs["height"]||=(MOBIO_CONFIG['default_height'].to_s)
56
+
57
+ adArgs["devip"]=ip if ip and ip.size>0
58
+ adArgs["kws"]=CGI::escape(keywords) if keywords and keywords.size>0
59
+
60
+ # now build the URL to call out to based upon the base URL and ad hash
57
61
  adURL=@@adServer + "?"
58
62
  first=1 # dont put ampersand on first one
59
63
  adArgs.each_key do |x|
60
64
  if adArgs[x]
61
65
  (adURL=adURL+"&") unless first
62
66
  first=nil # start putting in &s
63
- adURL = adURL + x + "=" + adArgs[x]
67
+ adURL = adURL + x + "=" + adArgs[x].to_s
64
68
  end
65
69
  end
66
- =begin
67
- CALL:
68
- http://dev.soma.smaato.com:8080/wap/reqAd.jsp?
69
- pub=3517&adspace=0&format=JPG&numads=1&offline=false&width=100&height=100&response=XML&user=101&kws=India
70
-
71
- =end
72
- # ok, now call google's mobile adSense service and get back the full ad
73
- @adxml=open(adURL).read
70
+ p "URL to retrieve ad: " +adURL
71
+ # result will have content, linktext, linkurl and optionally calltext, callurl, moretext
72
+ result={}
73
+ result['content']=open(adURL).read
74
74
  =begin
75
75
  RESULT:
76
- <?xml version="1.0"?><response xmlns="http://dev.soma.smaato.com:8080/wap/"
77
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
78
- xsi:schemaLocation="http://dev.soma.smaato.com:8080/wap/ http://dev.soma.smaato.com:8080/wap/smaatoapi.xsd">
79
- <event-response><status>error</status><error>375</error><desc>No request data found.</desc></event-response>
80
- <status>success</status><user><id>101</id></user>
81
- <ads>
82
- <ad id="1358" type="JPEG" width="112" height="20" refresh="1206058763039" caching="false" priority="0">
83
- <log-id>77bbb740be3c54debc5076f2be48df41</log-id><valid start="1204849163039" end="1212707963039" max="999999" />
84
- <link>http://dev.soma.smaato.com:8080/wap/getAd.jsp?id=1358&amp;l=77bbb740be3c54debc5076f2be48df41&amp;o=false</link><action target="http://dev.soma.smaato.com:8080/wap/lp.jsp?id=1358&amp;l=77bbb740be3c54debc5076f2be48df41&amp;o=false&amp;a=6&amp;t=http://www.smaato.mobi" type="LINK" acc="server" />
85
- <adtext />
76
+
77
+ <response xsi:schemaLocation="http://soma.smaato.com/oapi/ http://soma.smaato.com/oapi/smaatoapi.xsd">
78
+
79
+ <event-response>
80
+ <status>error</status>
81
+ <error>375</error>
82
+ <desc>No request data found.</desc>
83
+ </event-response>
84
+ <status>success</status>
85
+
86
+ <user>
87
+ <id>265563</id>
88
+ </user>
89
+
90
+ <ads>
91
+
92
+ <ad id="1000253060" type="JPEG" width="167" height="30" refresh="1215816516646" caching="true" priority="0">
93
+ <log-id>8c7871a957ad65cc7e3c3047c5ade89c</log-id>
94
+ <valid start="1214606916646" end="1222382916646" max="999999"/>
95
+
96
+ <link>
97
+ http://soma.smaato.com/oapi/getAd.jsp?id=1000253060&l=8c7871a957ad65cc7e3c3047c5ade89c&o=true&t=ext
98
+ </link>
99
+ <action target="http://soma.smaato.com/oapi/lp.jsp?id=1000253060&l=8c7871a957ad65cc7e3c3047c5ade89c&o=false&a=6&t=ext" type="LINK" acc="server"/>
100
+ <adtext/>
86
101
  </ad>
87
102
  </ads>
88
103
  </response>
89
104
  =end
90
- if (@adxml)
91
- adDoc = REXML::Document.new @adxml
92
- @adelement = adDoc.elements["//ad"]
93
- if (@adelement)
94
- @adurl=@adelement.elements["link"].text
95
- @urltext=@adelement.elements["adtext"].text
96
- @urltext||="LINK TO AD"
105
+ p result['content']
106
+ if (result['content'])
107
+ doc=XmlSimple.xml_in(result['content'])
108
+ ad=doc["ads"][0]["ad"][0]
109
+ if (ad)
110
+ p ad
111
+ result['linkurl']=ad["link"]
112
+ result['linktext']=ad["adtext"]
113
+ result['linktext']||="LINK TO AD"
97
114
  end
98
115
  end
99
- end
100
-
101
-
116
+ result
117
+ end # get_ad
118
+
119
+ private
120
+
121
+ # return the specified device capability for the specified useragent
122
+ def capability(name,useragent)
123
+ useragent||="Mozilla" # some reasonable default
124
+ @@devicecap_service="http://homer.qa.mobiolabs.com/hub/devicecap/devices"
125
+ devicecap_url=@@devicecap_service+"/capability?useragent="+CGI::escape(useragent)+"&capability="+name
126
+ p devicecap_url
127
+ begin
128
+ doc=XmlSimple.xml_in(open(devicecap_url).read)
129
+ rescue
130
+ doc=nil
131
+ end
132
+ if (doc and doc[name])
133
+ doc[name]
134
+ else
135
+ nil
136
+ end
137
+ end
102
138
 
103
139
  end
104
140
  end
data/lib/rmobio/ads.rb CHANGED
@@ -28,3 +28,38 @@ end
28
28
  require adlib
29
29
  eval("include " + adlib.camelize)
30
30
 
31
+ # above included functions do get_ad to just retrieve an ad from a backend network
32
+ # call below gets an ad from the hosted ads service for a specified page and app
33
+ #
34
+ # Parameters:
35
+ # * :service - the URL of the service, defaults to the URL specified in MOBIO_CONFIG
36
+ # * :app - the name of the application
37
+ # * :page - the specified page in the application
38
+ #
39
+ # Returns
40
+ def get_ad_from_service
41
+ service=params[:service]
42
+ service||=MOBIO_CONFIG['ad_service']
43
+ service||='http://homer.qa.mobiolabs.com/hub/ads/pages'
44
+ service=service + "?"
45
+ adurl=service+"app=" + params[:app] if params[:app]
46
+ adurl=adurl+"&" if params[:app] and params[:page]
47
+ adurl=service+"page="+params[:page] if params[:page]
48
+ text=nil
49
+ begin
50
+ text=open(adurl).read
51
+ rescue
52
+ logger.info "Failed to open ad url: " + $!
53
+ end
54
+ if text
55
+ doc=XmlSimple.xml_in(adtext)
56
+ @linktext=doc["linktext"][0]
57
+ @linkurl=doc["linkurl"][0]
58
+ @phonetext=doc["calltext"][0]
59
+ @phone=doc["callurl"][0]
60
+ @moretext=doc["moretext"][0]
61
+ logger.info("Ad Url: " + @urltext + "(" + @adurl + "): " + @extratext) if @urltext
62
+ logger.info("Ad phone: " + @phonetext + "(" + @phone + ")") if @phonetext and @phone
63
+ end
64
+ end
65
+
data/lib/rmobio/cas.rb CHANGED
@@ -137,26 +137,6 @@ module Rmobio
137
137
  def self.filter(controller)
138
138
  RAILS_DEFAULT_LOGGER.debug 'CAS: Starting filter...' unless not defined? RAILS_DEFAULT_LOGGER
139
139
 
140
- # Figure out if we should execute the filter based on configuration
141
- @req_domain = Rmobio::Utils.get_domain(controller.request.url)
142
- @included_domains = MOBIO_CONFIG['cas_filter_included_domains']
143
- @run_filter = nil
144
-
145
- if @req_domain and @included_domains
146
- @included_domains.each do |domain|
147
- if domain.match(@req_domain)
148
- RAILS_DEFAULT_LOGGER.debug "CAS: #{@req_domain} matches inclusion #{domain}, " +
149
- "continuing with filter..." unless not defined? RAILS_DEFAULT_LOGGER
150
- @run_filter = true
151
- end
152
- end
153
- end
154
-
155
- # We didn't find a match
156
- if @run_filter.nil?
157
- return
158
- end
159
-
160
140
  @handset_id = controller.params[:handsetid]
161
141
 
162
142
  # handsetid gets appended to request uri, we need to remove it for
@@ -184,11 +184,11 @@ The above code generates the following xhtml in Firefox:
184
184
  #
185
185
  #==== Examples
186
186
  #
187
- # @xml.output(body, "some text",
187
+ # @xml.textare(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 textoutput(doc, txt="", options={})
191
+ def textarea(doc, txt="", options={})
192
192
  doc << "\n<textarea #{options[:style]} name=\"#{options[:id]}\">" << txt << "</textarea>"
193
193
  end
194
194
 
@@ -217,10 +217,7 @@ 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
- #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
220
+
224
221
  def submit_tag()
225
222
  # do nothing, only implemented in xforms
226
223
  end
@@ -301,36 +298,35 @@ The above code generates the following xhtml in Firefox:
301
298
  yield doc
302
299
  end
303
300
  #Create table tag
304
- #==== Options
305
- #* <tt>:style</tt> -- specifies html, xhtml style attributes as a string
306
- #* <tt>:xstyle</tt> -- specifies xforms style attributes as a string
307
- def table(doc, options={})
308
- doc << "\n<table #{options[:style]}>"
301
+ #1. style: html styles
302
+ #2. xstyle: xforms styles
303
+ def table(doc, style="", xstyle="")
304
+ doc << "\n<table #{style}>"
309
305
  yield doc
310
306
  doc << '</table>'
311
307
  end
312
- def row(doc, id=nil, nodeset=nil, options={})
313
- doc << "<tr #{options[:style]}>"
308
+ def row(doc, id=nil, nodeset=nil, style="", xstyle="")
309
+ doc << "<tr #{style}>"
314
310
  yield doc
315
311
  doc << '</tr>'
316
312
  end
317
- def row_list(doc, id=nil, options={})
318
- doc << "<tr #{options[:style]}>"
313
+ def row_list(doc, id=nil, style="", xstyle="")
314
+ doc << "<tr #{style}>"
319
315
  yield doc
320
316
  doc << '</tr>'
321
317
  end
322
- def itemset(doc, id, nodeset, options={})
318
+ def itemset(doc, id, nodeset, style="", xstyle="")
323
319
  yield doc
324
320
  end
325
- def itemlist(doc, id, options={})
321
+ def itemlist(doc, id, style=nil, xstyle=nil)
326
322
  yield doc
327
323
  end
328
- def cell(doc, options={})
329
- doc << "<td #{options[:style]}>"
324
+ def cell(doc, style=nil, xstyle=nil)
325
+ doc << "<td #{style}>"
330
326
  yield doc
331
327
  doc << '</td>'
332
328
  end
333
- def list(doc, options={})
329
+ def list(doc, style=nil, xstyle=nil)
334
330
  yield doc
335
331
  end
336
332
  # The following tags are only supported by xforms client
@@ -49,9 +49,9 @@ The above code generates the following xforms for Mobio runner:
49
49
  xmlns:xsd="http://www.w3.org/2001/XMLSchema"
50
50
  xmlns:ev="http://www.w3.org/2001/xml-events">
51
51
  <head>
52
- <xf:model></xf:model></head>
52
+ <model></model></head>
53
53
 
54
- <body">
54
+ <body style="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>
@@ -74,12 +74,12 @@ A rails icon and some text will be displayed on Mobio runner when you load the r
74
74
  xmlns:ev="http://www.w3.org/2001/xml-events">'
75
75
 
76
76
  @model_buffer = '<head>'
77
- @model_buffer << "\n<xf:model>"
77
+ @model_buffer << "\n<model>"
78
78
 
79
79
  # basic_styles
80
80
  yield xml
81
81
 
82
- @model_buffer << "\n</xf:model></head>\n"
82
+ @model_buffer << "</model></head>\n"
83
83
  xml << @model_buffer << @view_buffer
84
84
  xml << "</html>"
85
85
  @view_buffer = ""
@@ -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 style=\"body\">"
117
117
  yield doc
118
- @view_buffer << '<m:footer/>'
118
+ @view_buffer << '<m:footer style="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
@@ -134,9 +134,7 @@ 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. \
138
- #* <tt>:value</tt> -- specifies the value attribute of text widget. \
139
- #See the last example
137
+ #See the 3rd example.
140
138
  #==== Examples
141
139
  #* Text widget displays the string of _txt_ argument without creating an instance:
142
140
  # @xml.text(body, 'My test', :xstyle=>'style="white"')
@@ -159,21 +157,16 @@ A rails icon and some text will be displayed on Mobio runner when you load the r
159
157
  # <m:output height="1ex" ref="instance('txt1')/images/id"/>
160
158
  #* Text widget displays string from a pre defined instance in a relative path:
161
159
  # @xml.itemset(list, 'tb1', "instance('audios')/items/item") do |row|
162
- # @xml.cell(row)do |cell|
160
+ # @xml.cell(row) do |cell|
163
161
  # @xml.text(cell, "", :xpath=>'@name')
164
162
  # end
165
163
  # end
166
164
  #generates the following xforms:
167
165
  # <m:itemset id="tb1" nodeset="instance('audios')/items/item" >
168
- # <m:item>
169
- # <m:output ref="@name"/>
166
+ # <m:item style="item">
167
+ # <m:output style="label" ref="@name"/>
170
168
  # </m:item>
171
169
  # </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
- #
177
170
  def text(doc, txt="", options={})
178
171
  # If there's id but no xpath, we will create a default instance data for
179
172
  # the textoutput.
@@ -194,8 +187,6 @@ A rails icon and some text will be displayed on Mobio runner when you load the r
194
187
  # If there's an xpath but no id, this is a relative pace, don't create any instance.
195
188
  if options[:xpath]
196
189
  @view_buffer << ' ref="' << options[:xpath] << '"/>'
197
- elsif options[:value]
198
- @view_buffer << " value=\"#{options[:value]}\"/>"
199
190
  else
200
191
  @view_buffer << ">" << txt << "</m:output>"
201
192
  end
@@ -220,7 +211,7 @@ A rails icon and some text will be displayed on Mobio runner when you load the r
220
211
  #* <tt>:xpath</tt> -- specifies the xpath of the text string in the instance model.
221
212
  #
222
213
  #==== Examples
223
- # @xml.textoutput(body, 'My test', {:xstyle=>'style="white" height="2ex"'})
214
+ # @xml.textarea(body, 'My test', {:xstyle=>'style="white" height="2ex"'})
224
215
  #
225
216
  #generates the following xforms:
226
217
  # <m:textoutput style="white" height="5ex">My test</m:textoutput>
@@ -228,12 +219,12 @@ A rails icon and some text will be displayed on Mobio runner when you load the r
228
219
  #
229
220
  #==== Examples
230
221
  #* Text widget displays the string of _txt_ argument without creating an instance:
231
- # @xml.textoutput(body, 'My test box', :xstyle=>'height="3ex"')
222
+ # @xml.textarea(body, 'My test box', :xstyle=>'height="3ex"')
232
223
  #
233
224
  #generates a 3 line text box:
234
225
  # <m:textoutput height="3ex">My test box</m:textoutput>
235
226
  #* Text widget creates a model instance and displays the string from the new instance:
236
- # @xml.textoutput(body, 'My test box',
227
+ # @xml.textarea(body, 'My test box',
237
228
  # :id=>'txt1', :xstyle=>'height="3ex"')
238
229
  #generates the following xforms:
239
230
  #In model:
@@ -241,12 +232,12 @@ A rails icon and some text will be displayed on Mobio runner when you load the r
241
232
  #In view:
242
233
  # <m:textoutput height="3ex" ref="instance('txt1')/txt"/>
243
234
  #* Text widget displays string from a pre defined instance:
244
- # @xml.textoutput(body, 'My test', :id=>'txt1', :xpath=>'images/id',
235
+ # @xml.textarea(body, 'My test', :id=>'txt1', :xpath=>'images/id',
245
236
  # :xstyle=>'height="5ex" width="50%"')
246
237
  #generates the following xforms:
247
238
  # <m:textoutput height="5ex" width="50%" ref="instance('txt1')/images/id"/>
248
239
  #
249
- def textoutput(doc, txt="", options={})
240
+ def textarea(doc, txt="", options={})
250
241
  # If there's id but no xpath, we will create a default instance data for
251
242
  # the textoutput.
252
243
  if options[:id] and options[:xpath].nil?
@@ -266,8 +257,7 @@ A rails icon and some text will be displayed on Mobio runner when you load the r
266
257
  else
267
258
  @view_buffer << ">" << txt << "</m:textoutput>"
268
259
  end
269
- end # end textoutput
270
-
260
+ end # textarea
271
261
  #
272
262
  #Create user input field.
273
263
  #1. id: The instance id that will be associated with this input field. An instance data \
@@ -324,65 +314,8 @@ A rails icon and some text will be displayed on Mobio runner when you load the r
324
314
  else
325
315
  @view_buffer << options[:xpath] << "\"/>"
326
316
  end
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
-
317
+ end
318
+
386
319
  #Implement xforms <xf:send> in view buffer and <xf:submission> tag in model buffer
387
320
  #If argument 'create_instance' is set to true, it will create an <xf:submission> instance
388
321
  #based on the attributes (see options). Otherwise, it assumes an instance is
@@ -685,31 +618,14 @@ A rails icon and some text will be displayed on Mobio runner when you load the r
685
618
  # <email id ="2" date="4/2" read="0" check="" from="admin@foo.com">Meeting reminder</email>
686
619
  # <email id ="3" date="4/2" read="1" check="" from="customerservice@amazon.com">Your account activities</email>
687
620
  # </data>
688
- #
689
- #* Create an instance with multiple layers:
690
- #
691
- # @xml.instance_tag(body, "photos") do |x|
692
- # @xml.items do |y|
693
- # @xml.item("image1")
694
- # @xml.item("image2")
695
- # end
696
- # end
697
- #generates the following instance in xforms model:
698
- # <xf:instance id="photos">
699
- # <data xmlns="">
700
- # <items>
701
- # <item>image1</item>
702
- # <item>image2</item>
703
- # </items>
704
- # </data>
705
- # </xf:instance>
621
+ #
706
622
  def instance_tag(doc, id, src=nil, &block)
707
623
  if src.nil?
708
- @model_buffer << "\n<xf:instance id=\"#{id}\">\n<data xmlns=\"\">\n"
624
+ @model_buffer << "\n<xf:instance id=\"#{id}\"><data xmlns=\"\">"
709
625
  if block
710
626
  yield doc
711
627
  end
712
- @model_buffer << "\n</data></xf:instance>"
628
+ @model_buffer << '</data></xf:instance>'
713
629
  else
714
630
  @model_buffer << "\n<xf:instance src=\"#{src}\"/>"
715
631
  end
@@ -724,116 +640,50 @@ A rails icon and some text will be displayed on Mobio runner when you load the r
724
640
  yield doc
725
641
  @view_buffer << "</m:hstack>"
726
642
  end
727
- #Create grid control, similar to table in html.
728
- #==== Options
729
- #* <tt>:style</tt> -- specifies html, xhtml style attributes as a string
730
- #* <tt>:xstyle</tt> -- specifies xforms style attributes as a string
731
- #==== Examples
732
- # Create photos instance:
733
- # @xml.instance_tag(body, "photos") do |x|
734
- # @xml.items do |y|
735
- # @xml.item("image1", :val=>'1')
736
- # @xml.item("image2", :val=>'2')
737
- # end
738
- # end
739
- #
740
- # Create grid widget:
741
- # @xml.table(body) do |tbl|
742
- # @xml.row(tbl, "mylist", "instance('photos')/items/item", :xstyle=>'col="auto"') do |row|
743
- # @xml.cell(row) do |td|
744
- # @xml.text(td, "", :xpath=>'.')
745
- # @xml.text(td, "", :xpath=>'@val')
746
- # end
747
- # end
748
- # end
749
- #Generates the following xforms:
750
- #In the model:
751
- # <xf:instance id="photos">
752
- # <data xmlns="">
753
- # <items><item val="1">image1</item><item val="2">image2</item></items>
754
- # </data>
755
- # </xf:instance>
756
- #
757
- #In the view:
758
- # <m:grid>
759
- # <m:rowset id="mylist" nodeset="instance('photos')/items/item" col="auto">
760
- # <m:item>
761
- # <m:output height="1ex" ref="."/>
762
- # <m:output height="1ex" ref="@val"/>
763
- # </m:item>
764
- # </m:rowset>
765
- # </m:grid>
766
- #The UI is a table with 2 columns and 2 rows of text data.
767
- def table(doc, options={})
768
- @view_buffer << "\n<m:grid #{options[:xstyle]}>"
643
+ #Create grid control, similar to table in html
644
+ #1. style: html styles
645
+ #2. xstyle: xforms styles
646
+ def table(doc, style="", xstyle="")
647
+ @view_buffer << "\n<m:grid #{xstyle}>"
769
648
  yield doc
770
- @view_buffer << "\n</m:grid>"
649
+ @view_buffer << '</m:grid>'
771
650
  end
772
- #Create grid rowset control, similar to <tr> in html.
773
- #1. id - the widget id
774
- #2. nodeset - the xpath to the instance data
775
- #==== Options
776
- #* <tt>:style</tt> -- specifies html, xhtml style attributes as a string
777
- #* <tt>:xstyle</tt> -- specifies xforms style attributes as a string
778
- def row(doc, id=nil, nodeset=nil, options={})
779
- @view_buffer << "<m:rowset id=\"#{id}\" nodeset=\"#{nodeset}\" "
780
- options[:xstyle] = 'col="auto"' if #{options[:xstyle]}.nil?
781
- @view_buffer << " #{options[:xstyle]}>"
651
+ def row(doc, id, nodeset, style=nil, xstyle='col="auto"')
652
+ @view_buffer << "<m:rowset id=\"#{id}\" nodeset=\"#{nodeset}\" #{xstyle}>"
782
653
  yield doc
783
654
  @view_buffer << '</m:rowset>'
784
655
  end
785
- #Create grid rowlist control. similar to <tr> in html.
786
- #1. id - the widget id
787
- #==== Options
788
- #* <tt>:style</tt> -- specifies html, xhtml style attributes as a string
789
- #* <tt>:xstyle</tt> -- specifies xforms style attributes as a string
790
- def row_list(doc, id, options={})
791
- @view_buffer << "<m:rowlist id=\"#{id}\" #{options[:xstyle]}>"
656
+ def row_list(doc, id, style="", xstyle="")
657
+ @view_buffer << "<m:rowlist id=\"#{id}\" #{xstyle}>"
792
658
  yield doc
793
659
  @view_buffer << '</m:rowlist>'
794
660
  end
795
- #Create <m:itemset> control which takes a nodeset attribute and iterates
796
- #items in the nodese
797
- #1. id - the widget id
798
- #2. nodset - the xpath to the instance data
799
- #==== Options
800
- #* <tt>:style</tt> -- specifies html, xhtml style attributes as a string
801
- #* <tt>:xstyle</tt> -- specifies xforms style attributes as a string
802
- def itemset(doc, id, nodeset, options={})
803
- @view_buffer << "\n<m:itemset id=\"#{id}\" nodeset=\"#{nodeset}\" #{options[:xstyle]}>"
661
+
662
+ def itemset(doc, id, nodeset, style="", xstyle="")
663
+ @view_buffer << "<m:itemset id=\"#{id}\" nodeset=\"#{nodeset}\" #{xstyle}>"
804
664
  yield doc
805
- @view_buffer << "\n</m:itemset>"
665
+ @view_buffer << '</m:itemset>'
806
666
  end
807
- #Create <m:itemlist> control with static data.
808
- #1. id - the widget id
809
- #==== Options
810
- #* <tt>:style</tt> -- specifies html, xhtml style attributes as a string
811
- #* <tt>:xstyle</tt> -- specifies xforms style attributes as a string
812
- def itemlist(doc, id, options={})
813
- @view_buffer << "\n<m:itemlist id=\"#{id}\" #{options[:xstyle]}>"
667
+ def itemlist(doc, id, style=nil, xstyle=nil)
668
+ @view_buffer << "<m:itemlist id=\"#{id}\" #{xstyle}>"
814
669
  yield doc
815
- @view_buffer << "\n</m:itemlist>"
670
+ @view_buffer << '</m:itemlist>'
816
671
  end
817
- #Create <m:item> control.
818
- #==== Options
819
- #* <tt>:style</tt> -- specifies html, xhtml style attributes as a string
820
- #* <tt>:xstyle</tt> -- specifies xforms style attributes as a string
821
- def cell(doc, options={})
822
- @view_buffer << "\n<m:item #{options[:xstyle]}>"
672
+ def cell(doc, style=nil, xstyle='style="item"')
673
+ @view_buffer << "<m:item #{xstyle}>"
823
674
  yield doc
824
- @view_buffer << "\n</m:item>"
675
+ @view_buffer << '</m:item>'
825
676
  end
826
- #Create <m:slist> control.
827
- #==== Options
828
- #* <tt>:style</tt> -- specifies html, xhtml style attributes as a string
829
- #* <tt>:xstyle</tt> -- specifies xforms style attributes as a string
830
- def list(doc, options={})
831
- @view_buffer << "\n<m:slist #{options[:xstyle]}>"
677
+ #Create slist control.
678
+ def list(doc, style=nil, xstyle='style="slist"')
679
+ @view_buffer << "\n<m:slist #{xstyle}>"
832
680
  yield doc
833
- @view_buffer << "\n</m:slist>"
681
+ @view_buffer << '</m:slist>'
834
682
  end
835
683
  #Create a Tab control
836
- #1. xstyle: the xforms style string.
684
+ #1. xstyle: the xforms style string. If xstyle is not specified, the default\
685
+ # value 'height="100% width="100% style="tabbody"' will be used. You need to \
686
+ # define a style class "tabbody" if you want to style the widget. \
837
687
  # The tag is always followed by several xcase tags to create a complete UI \
838
688
  # for Tabs.
839
689
  #
@@ -849,8 +699,8 @@ A rails icon and some text will be displayed on Mobio runner when you load the r
849
699
  # end
850
700
  # end
851
701
  #generates the following xforms in the view:
852
- # <m:tab width="100%" height="100%">
853
- # <m:case id="first" label="Current Match" style="tab">
702
+ # <m:tab width="100%" height="100%" style="tabbody">
703
+ # <m:case id="first" label="Current Match" >
854
704
  # <m:output height="1ex">hello world!</m:output>
855
705
  # </m:case>
856
706
  # <m:case id="2nd" label="future" style="tab">
@@ -858,10 +708,10 @@ A rails icon and some text will be displayed on Mobio runner when you load the r
858
708
  # </m:case>
859
709
  # </m:tab>
860
710
  #
861
- def tab(doc, xstyle='width="100%" height="100%"')
862
- @view_buffer << "\n<m:tab #{xstyle}>"
711
+ def tab(doc, xstyle='width="100%" height="100%" style="tabbody"')
712
+ @view_buffer << "<m:tab #{xstyle}>"
863
713
  yield doc
864
- @view_buffer << "\n</m:tab>"
714
+ @view_buffer << '</m:tab>'
865
715
  end
866
716
 
867
717
  #Create swtich case control, similar to Tab control but without the tab UI.
@@ -889,9 +739,9 @@ A rails icon and some text will be displayed on Mobio runner when you load the r
889
739
  # </m:case>
890
740
  # </m:switch>
891
741
  def switch(doc)
892
- @view_buffer << "\n<m:switch>"
742
+ @view_buffer << "<m:switch>"
893
743
  yield doc
894
- @view_buffer << "\n</m:switch>"
744
+ @view_buffer << '</m:switch>'
895
745
  end
896
746
 
897
747
  #Create a case control. This tag cannot act along. It has to be wrapped in
@@ -899,11 +749,18 @@ A rails icon and some text will be displayed on Mobio runner when you load the r
899
749
  #See the document and examples in tab and switch tag.
900
750
  #1. id: the case reference id
901
751
  #2. label: what is displayed in the tab header (only needed in tab case)
902
- #3. xstyle: the xforms style string for the case (only needed in tab case).
752
+ #3. xstyle: the xforms style string for the case (only needed in tab case).\
753
+ #if not defined, default style="tab" will be applied.
903
754
  def xcase(doc, id, label=nil, xstyle=nil)
904
- @view_buffer << "\n<m:case id=\"#{id}\" label=\"#{label}\" #{xstyle}>"
755
+ @view_buffer << "<m:case id=\"#{id}\" label=\"#{label}\""
756
+ if xstyle
757
+ @view_buffer << " #{xstyle}"
758
+ else
759
+ @view_buffer << ' style="tab"'
760
+ end
761
+ @view_buffer << '>'
905
762
  yield doc
906
- @view_buffer << "\n</m:case>"
763
+ @view_buffer << '</m:case>'
907
764
  end
908
765
 
909
766
  #Create a softkey menu.
@@ -947,24 +804,24 @@ A rails icon and some text will be displayed on Mobio runner when you load the r
947
804
  # <m:show-popup refid="menu1" ev:event="DOMActivate" />
948
805
  # </m:softkey>
949
806
  #
950
- # <m:menu id="menu1" height="0" width="40%">
951
- # <m:hstack height="1ex"><m:icon>jar://img/option.png</m:icon>
952
- # <m:output>Options</m:output>
807
+ # <m:menu id="menu1" height="0" width="40%" style="popup-menu">
808
+ # <m:hstack height="1ex" style="title"><m:icon>jar://img/option.png</m:icon>
809
+ # <m:output style="option">Options</m:output>
953
810
  # </m:hstack>
954
- # <m:itemlist height="0">
955
- # <m:item height="1ex" accesskey="1">
956
- # <m:output>move1</m:output>
811
+ # <m:itemlist height="0" style="menu">
812
+ # <m:item style="optionmenu" height="1ex" accesskey="1">
813
+ # <m:output style="label">move1</m:output>
957
814
  # <xf:load resource="foo1.xml" ev:event="DOMActivate"/>
958
815
  # </m:item>
959
- # <m:item height="1ex" accesskey="2">
960
- # <m:output>move2</m:output>
816
+ # <m:item style="optionmenu" height="1ex" accesskey="2">
817
+ # <m:output style="label">move2</m:output>
961
818
  # <xf:load resource="foo2.xml" ev:event="DOMActivate"/>
962
819
  # </m:item>
963
- # <m:item height="1ex" accesskey="3">
964
- # <m:output>move3</m:output>
820
+ # <m:item style="optionmenu" height="1ex" accesskey="3">
821
+ # <m:output style="label">move3</m:output>
965
822
  # </m:item>
966
- # <m:item height="1ex" accesskey="0">
967
- # <m:output>exit</m:output>
823
+ # <m:item style="optionmenu" height="1ex" accesskey="0">
824
+ # <m:output style="label">exit</m:output>
968
825
  # <m:exit ev:event="DOMActivate"/>
969
826
  # </m:item>
970
827
  # </m:itemlist>
@@ -976,7 +833,7 @@ A rails icon and some text will be displayed on Mobio runner when you load the r
976
833
  # </m:softkey>
977
834
  # </m:menu>
978
835
  def softkey(doc, position="1", label="", refid=nil, &block)
979
- @view_buffer << "\n<m:softkey position=\"#{position}\"><m:label>#{label}</m:label>"
836
+ @view_buffer << "<m:softkey position=\"#{position}\"><m:label>#{label}</m:label>"
980
837
 
981
838
  # If we have a refid, setup a popup for the child menus; otherwise, execute
982
839
  # the proc to take action.
@@ -985,7 +842,7 @@ A rails icon and some text will be displayed on Mobio runner when you load the r
985
842
  else
986
843
  @view_buffer << "<m:show-popup refid=\"#{refid}\" ev:event=\"DOMActivate\" />"
987
844
  end
988
- @view_buffer << "\n</m:softkey>"
845
+ @view_buffer << '</m:softkey>'
989
846
  end
990
847
  #A holders for a popup menu.
991
848
  #1. id: the widget's reference id. The id is used by softkey to trigger the popup\
@@ -993,25 +850,27 @@ A rails icon and some text will be displayed on Mobio runner when you load the r
993
850
  #2. label: what is displayed on the title of the popup window. Default label \
994
851
  #is "Options".
995
852
  #3. xstyle: the xforms style string for the popup window. If xstyle is not \
996
- #specified, default style string "width='40%'" is used.
853
+ #specified, default style string "width='40%' style='popup-menu'" is used.
997
854
  #==== Examples
998
855
  #Refer to softkey examples
999
856
  def menus(doc, id, label="Options", xstyle=nil)
1000
- @view_buffer << "\n<m:menu id=\"#{id}\" height=\"0\""
857
+ @view_buffer << "<m:menu id=\"#{id}\" height=\"0\""
1001
858
  if xstyle
1002
- @view_buffer << " #{xstyle}>" if xstyle
859
+ @view_buffer << " #{xstyle}>"
1003
860
  else
1004
- @view_buffer << " width=\"40%\">"
861
+ @view_buffer << " width=\"40%\" style=\"popup-menu\">"
1005
862
  end
1006
863
 
1007
- @view_buffer << "\n<m:hstack height=\"1ex\" style=\"title\"><m:icon>jar://img/option.png</m:icon>"
1008
- @view_buffer << "\n<m:output style=\"option\">#{label}</m:output></m:hstack>"
864
+ @view_buffer << "<m:hstack height=\"1ex\" style=\"title\"><m:icon>jar://img/option.png</m:icon>"
865
+ @view_buffer << "<m:output style=\"option\">#{label}</m:output></m:hstack>"
1009
866
  @accesskey=0
1010
867
 
1011
- @view_buffer << "\n<m:itemlist height=\"0\" style=\"menu\"> "
868
+ @view_buffer << "<m:itemlist height=\"0\" style=\"menu\"> "
1012
869
  yield doc
1013
- @view_buffer << "\n</m:itemlist>"
1014
- @view_buffer << "\n<m:softkey position=\"3\"/>\n<m:softkey position=\"1\">\n\t<m:hide-popup ev:event=\"DOMActivate\" refid=\"#{id}\" />\n\t<m:label>Close</m:label>\n</m:softkey>\n</m:menu>"
870
+ @view_buffer << "</m:itemlist>"
871
+ @view_buffer << "<m:softkey position=\"3\"/>
872
+ <m:softkey position=\"1\"><m:hide-popup ev:event=\"DOMActivate\" refid=\"#{id}\" />
873
+ <m:label>Close</m:label></m:softkey></m:menu>"
1015
874
 
1016
875
  end
1017
876
 
@@ -1020,23 +879,28 @@ A rails icon and some text will be displayed on Mobio runner when you load the r
1020
879
  #is "Options".
1021
880
  #2. accesskey: A short cut key (0-9) that is assigned to this menu item. If \
1022
881
  #not specified, it is asssinged a number sequentially.
1023
- #3. xstyle: the xforms style string for the menu item.
882
+ #3. xstyle: the xforms style string for the menu item. If xstyle is not \
883
+ #specified, default style string "style='optionmenu'" is used.
1024
884
  #==== Examples
1025
885
  #Refer to softkey examples
1026
886
  def menu(doc, label, accesskey=nil, xstyle=nil, &block)
1027
- @view_buffer << "\n<m:item height=\"1ex\" accesskey=\""
887
+ @view_buffer << "<m:item height=\"1ex\" accesskey=\""
1028
888
  if accesskey
1029
889
  @view_buffer << accesskey
1030
890
  else
1031
891
  @view_buffer << "#{@accesskey+=1}"
1032
892
  end
1033
- @view_buffer << " style=\"#{xstyle}\"" if xstyle
1034
893
  @view_buffer << "\">"
1035
- @view_buffer << "\n<m:output style=\"label\">" << label << "</m:output>"
894
+ if xstyle
895
+ @view_buffer << " style=\"#{xstyle}\""
896
+ else
897
+ @view_buffer << " style=\"optionmenu\""
898
+ end
899
+ @view_buffer << "<m:output style=\"label\">" << label << "</m:output>"
1036
900
  if block
1037
901
  yield doc
1038
902
  end
1039
- @view_buffer << "\n</m:item>"
903
+ @view_buffer << "</m:item>"
1040
904
  end
1041
905
 
1042
906
  #Create <xf:load> control to do a HTTP get for a new form. Default event
@@ -1054,7 +918,7 @@ A rails icon and some text will be displayed on Mobio runner when you load the r
1054
918
  # </m:softkey>
1055
919
  #
1056
920
  def load_tag(doc, resource)
1057
- @view_buffer << "\n<xf:load resource=\"#{resource}\" ev:event=\"DOMActivate\"/>"
921
+ @view_buffer << "<xf:load resource=\"#{resource}\" ev:event=\"DOMActivate\"/>"
1058
922
  end
1059
923
 
1060
924
  #Create syscall control. Refer to mobio client user manual for details usage
@@ -1127,14 +991,14 @@ A rails icon and some text will be displayed on Mobio runner when you load the r
1127
991
  # <m:param name="ringtone" ref="instance('store')/ringtone"/>
1128
992
  # </m:syscall>
1129
993
  # </m:button>
1130
- def syscall(doc, name, params={})
1131
- @view_buffer << "\n<m:syscall name=\"#{name}\" ev:event=\"DOMActivate\">"
994
+ def syscall(doc, name, params={})
995
+ @view_buffer << "<m:syscall name=\"#{name}\" ev:event=\"DOMActivate\">"
1132
996
  if not params.nil?
1133
997
  params.keys.each do |x|
1134
- @view_buffer << "\n\t<m:param name=\"#{x}\" ref=\"#{params[x.to_sym]}\"/>"
998
+ @view_buffer << "<m:param name=\"#{x}\" ref=\"#{params[x.to_sym]}\"/>"
1135
999
  end
1136
1000
  end
1137
- @view_buffer << "\n</m:syscall>"
1001
+ @view_buffer << '</m:syscall>'
1138
1002
  end
1139
1003
 
1140
1004
  #Generate a click2call syscall control to a phone number
@@ -1152,7 +1016,7 @@ A rails icon and some text will be displayed on Mobio runner when you load the r
1152
1016
  # <m:param name="address">tel:4085551212</m:param>
1153
1017
  # </m:syscall>
1154
1018
  def click2call(doc, phone)
1155
- @view_buffer << "\n<m:syscall name=\"click2call\" ev:event=\"DOMActivate\">\n\t<m:param name=\"address\">tel:#{phone}</m:param>\n</m:syscall>"
1019
+ @view_buffer << "<m:syscall name=\"click2call\" ev:event=\"DOMActivate\"><m:param name=\"address\">tel:#{phone}</m:param></m:syscall>"
1156
1020
  end
1157
1021
 
1158
1022
  #Create Action control. Default event is "DOMActivate" if event argument is
@@ -1173,9 +1037,9 @@ A rails icon and some text will be displayed on Mobio runner when you load the r
1173
1037
  # </xf:action>
1174
1038
  #
1175
1039
  def action_tag(doc, event="DOMActivate")
1176
- @view_buffer << "\n<xf:action ev:event=\"#{event}\">"
1040
+ @view_buffer << "<xf:action ev:event=\"#{event}\">"
1177
1041
  yield doc
1178
- @view_buffer << "\n</xf:action>"
1042
+ @view_buffer << '</xf:action>'
1179
1043
  end
1180
1044
  #Create exit control to exit the client.
1181
1045
  #==== Examples
@@ -1188,7 +1052,7 @@ A rails icon and some text will be displayed on Mobio runner when you load the r
1188
1052
  # <m:exit ev:event="DOMActivate"/>
1189
1053
  # </m:softkey>
1190
1054
  def exit_tag(doc)
1191
- @view_buffer << "\n<m:exit ev:event=\"DOMActivate\"/>"
1055
+ @view_buffer << "<m:exit ev:event=\"DOMActivate\"/>"
1192
1056
  end
1193
1057
 
1194
1058
  #Create back control to go back to previous page.
@@ -1202,7 +1066,7 @@ A rails icon and some text will be displayed on Mobio runner when you load the r
1202
1066
  # <m:back ev:event="DOMActivate"/>
1203
1067
  # </m:softkey>
1204
1068
  def back_tag(doc)
1205
- @view_buffer << "\n<m:back ev:event=\"DOMActivate\"/>"
1069
+ @view_buffer << "<m:back ev:event=\"DOMActivate\"/>"
1206
1070
  end
1207
1071
  #Create toggle control
1208
1072
  #1. name: the toggle case name, default is "main" if not defined.
@@ -1220,7 +1084,7 @@ A rails icon and some text will be displayed on Mobio runner when you load the r
1220
1084
  # <xf:toggle case="view" ev:event="DOMActivate"/>
1221
1085
  #
1222
1086
  def toggle_tag(doc, name="main")
1223
- @view_buffer << "\n<xf:toggle case=\"#{name}\" ev:event=\"DOMActivate\"/>"
1087
+ @view_buffer << "<xf:toggle case=\"#{name}\" ev:event=\"DOMActivate\"/>"
1224
1088
  end
1225
1089
 
1226
1090
  #Override builder method_missing method to send output to model buffer so we
@@ -1310,7 +1174,7 @@ A rails icon and some text will be displayed on Mobio runner when you load the r
1310
1174
  # Put some default styles if user doesn't specify any
1311
1175
  def basic_styles
1312
1176
  #@model_buffer << "<m:style xmlns=\"http://www.mobio.com/ext\">"
1313
- # took out all basic styles because client has provided a default style
1177
+ # took out all basic styles because client has provided a default style
1314
1178
  #@model_buffer << "</m:style>"
1315
1179
  end
1316
1180
 
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.30
4
+ version: 1.1.31
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-23 00:00:00 -07:00
12
+ date: 2008-07-09 00:00:00 -07:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -21,15 +21,6 @@ dependencies:
21
21
  - !ruby/object:Gem::Version
22
22
  version: "0.6"
23
23
  version:
24
- - !ruby/object:Gem::Dependency
25
- name: builder
26
- version_requirement:
27
- version_requirements: !ruby/object:Gem::Requirement
28
- requirements:
29
- - - ">="
30
- - !ruby/object:Gem::Version
31
- version: 2.1.1
32
- version:
33
24
  description: ""
34
25
  email: rmobio-developers@rubyforge.org
35
26
  executables: []
@@ -92,7 +83,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
92
83
  requirements: []
93
84
 
94
85
  rubyforge_project:
95
- rubygems_version: 1.1.1
86
+ rubygems_version: 1.0.1
96
87
  signing_key:
97
88
  specification_version: 2
98
89
  summary: Rmobio API