Every repository with this icon (
Every repository with this icon (
| Description: | The RESTful way to develop Adobe Flex and AIR applications. edit |
-
Rx pull at the moment pulls everything from the server. This needs to be improved to only sync the things that changed.
Comments
-
1 comment Created 7 months ago by dimapolymorphic [HasMany(through)] doesn't work as expected1.3.0xComments
captproton
Wed Jul 22 05:54:13 -0700 2009
| link
Do you think this could work: http://gist.github.com/151713
-
Finish up with WebkitDB provider
Comments
-
2 comments Created 7 months ago by webdevotionRxAutoComplete does not show up in design view1.3.0xRxAutoComplete does not show up in design view when using Flex Builder. Can be confusing when designers are collaborating on the project.
Comments
FlexBuilder sucks, what can I say? :) Want to take a stab at it? I've no idea, why it's not showing up, but I do agree it's a bit annoying.
webdevotion
Tue Jun 09 05:49:26 -0700 2009
| link
Is that an order? : )
Will keep it mind! -
0 comments Created 6 months ago by ximusUnmeaningful error when model is not registered with RxApplicationController1.3.0xThis is an Enhancement.
When you forget to register a model in your app controller (RxApplicationController), you get the following error during unmarshelling of an entity that references it:
<current object> not not been unmarshalled. Error: TypeError: Error <a href="/dima/restfulx_framework/issues/#issue/1009" class="internal">#1009</a>: Cannot access a property or method of a null object reference.(thrown from line 89 in XMLSerializer.as)
It would be nice, although not necessary to have a more meaningful error.
Yell at me if I'm wasting your time, I'm new to the software dev. world.
MaxComments
-
0 comments Created 5 months ago by aschoellerRevision format changed in CouchDB 0.91.3.0xI tried the example from the wiki http://wiki.github.com/dima/restfulx_framework/working-with-restfulx-service-providers using CouchDB as primary and AIR-ServiceProvider as secondary storage. Writing to the AIR-storage failed on any model. Cause it's impossible to convert the _rev-Attribute to a AS3-Number-type. In couchDB 0.9 a revision is made of a Integer +"-"+ Integer(timestamp/ticks) eg. "3-1514039775". AIRServiceProvider.as tries to convert to a Number and fails silently. I changed the SQL-filed-type in line 496 from "INTEGER" to "TEXT" - i'm not sure if this will show undesired consequences elsewhere ? I've seen none so far.
greets andreasComments
-
0 comments Created 2 months ago by dimamake sure itemHighlighted fires onMouseOver in RxAutoComplete component.1.3.0xComments
-
0 comments Created about 1 month ago by elvisfernandesRxAutoComplete should have the option to always hit the server1.3.0xDepending on the models you have on your database, a first call to the server by RxAutoComplete could fetch some models (but not all) that suits a later request, avoiding RxAutoComplete to load all the suitable models for later requests.
A solution for this could be to create a property, say, useCache, to flag that RxAutoComplete should always try to hit the server.
Comments
-
1 comment Created 28 days ago by bruno-lehyaricNIL error in rake task db:schema:to_yaml1.3.0xHi,
I'm getting a NIL error while running $rake db:schema:to_yaml
using the db/schema.rb from a standard Spree application (www.spreecommerce.com).
I use restfulx 1.2.4I correct this on my machine in /usr/lib/ruby/gems/1.8/gems/restfulx-1.2.4/lib/restfulx/rails/schema_to_yaml.rb
line 87 : last_in_array_fix = last_in_array_fix.gsub(', ','') if not(last_in_array_fix.nil?)
... line 96 : last_in_array_fix = last_in_array_fix.gsub(', ','') if not(last_in_array_fix.nil?)Regards,
Bruno.
Comments












Hi, my notes on the matter:
- From looking at the trace log, the biggest performance hole seems to be writing to the sqlite db. - To keep the UI from becoming un responsive because of the data processing amd writing to sqlite, threads would be the answer. Since they don't exist in as3, these guys (see links at end) posted homegrown approaches to the matter (using timers and such).
Hope it helps, Max
http://blog.generalrelativity.org/actionscript-30/green-threads/
http://blogs.adobe.com/aharui/2008/01/threads_in_actionscript_3.html
http://anirudhs.chaosnet.org/blog/2008.01.16.html
Thanks Max,
I am currently more concerned with reducing the dataset that is being pulled. Even considering XMPP to push changes to clients that can be online/offline :)