A dynamic list of my apps for webos

My Apps 

And here is the patch for a better working browser in offline mode.
Do you know it? When you are in an area with bad coverage you you eventually click a link in your email or twitter app? The browser window comes up to tell you about missing online connection and asks you whatever you want enable wifi. So far so good, but when you bavk in coverage you will notice that your URL wasn’t stored in the address field of the browser window. This is really bad, as you can’t just load the page. You have to dig and unveil the URL again. Not a nice handling. This patch will try to fix it:

Name: better offline browsing
Version: 1.4.5-1
Author: MetaView
Description: Even in offline mode the browser window will remember the URL

--- .orig/usr/palm/applications/com.palm.app.browser/app/controllers/page-assistant.js
+++ /usr/palm/applications/com.palm.app.browser/app/controllers/page-assistant.js
@@ -478,7 +478,7 @@
// input.
self._addressBar.blur();
};
-
+/*
AppAssistant.Network.addNetworkCheckedMethods({
target: this,
methods: ['openUrl', '_goBack', '_goForward', '_reload'],
@@ -484,7 +484,7 @@
methods: ['openUrl', '_goBack', '_goForward', '_reload'],
onNetworkDown: netAlert
});
-
+*/
// Never display the search results on first launch.
this._addressBar.enableTitleView();
this._addressBar.closeSearchResults();
@@ -495,7 +495,7 @@
this._addressBar.hide();
this.chrome.hide();
}
-
+/*
// On first launch we alway attempt to connect to the network if we are not online.
if (!AppAssistant.Network.online) {

@@ -512,7 +512,7 @@
}
}, self.controller.stageController);
}
-
+*/
if (this.currPageBookmark) {
this.openBookmark(this.currPageBookmark);
}

Januar 30, 2011 · admin · No Comments
Posted in: Allgemein, Palm

Leave a Reply

You must be logged in to post a comment.