* Have a remove button for removing loaded traces
* Have a check button for simplifying traces
* Refactor the importer.as so that downloading the files can be done via the connection, not just directly
-* if(true) in importer.as#56 might actually be breaking other things. Fix it, or do the above
Requested enhancements
----------------------
var sp:uint=0;
for each (var fn:String in filenames) {
- Globals.vars.root.addDebug("requesting file "+fn);
+ Globals.vars.root.addDebug("requesting file "+fn);
+ var conn:Connection = Connection.getConnectionInstance();
- if ( true ) {
- fn = Connection.getConnectionInstance().signOAuthGet(fn);
+ if ( fn.indexOf(conn.apiBase) == 0 ) {
+ fn = conn.signOAuthGet(fn);
}
var request:DebugURLRequest = new DebugURLRequest(fn);
var loader:ExtendedURLLoader = new ExtendedURLLoader();