• last updated a few seconds ago
Constraints
Constraints: committers
 
Constraints: files
Constraints: dates
add todo

added doubleclick time constant

fix handlers

Initial comit of Cursor class

added cursors calls

correct Transition word

Add transition handler

*** empty log message ***

added licence text and got rid of TODO's

  1. … 43 more files in changeset.
added additional attributes activityTypeID and activityCategoryID

implemented loadXML() for unwrapped packets

and sendAndReceive() and cleaned up code + comments

Implemeted queuing for getRequest() calls to handle simultaneous multiple XML requests

created

*** empty log message ***

changed activityTypeId to activityTypeID

Added license text and modified the name of some variables

For example activityId is now activityID

remove breakpoint

changed dimensions

put in dummy server defaults, getItem(),setItem() + save/open from disk

changed so that styles can be loaded individually from disk or server

changed to use dictionary for populating

cosmetic changes

implemented purge function and flags to serialize/de-serialize data

made singleton and implemented logic to retrieve from server if not available locally

lowercase p in classname to uppercase

general cleanup and deletion of arbitrary methods

some structural changes

Added the license text and class comment

Added:

/**

* Serialzes an object into WDDX XML

* @usage var wddxXML:XML = commsInstance.serializeObj(obj);

* @param dto The object to be serialized

* @return sXML WDDX Serialized XML

*/

public function serializeObj(dto:Object):XML{

var sXML:XML = new XML();

sXML = wddx.serialize(dto);

return sXML;

}

added comments to what sendAndRecive function should do