Difference between revisions of "Patch Messaging Force Offline Send Without Dialog"
Jump to navigation
Jump to search
Hopspitfire (talk | contribs) |
(Cleaqed up and verified for webOS 1.1) |
||
| Line 1: | Line 1: | ||
{{template:patch}} | {{template:patch}} | ||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | Change the | + | === The Change === |
| + | - Make a backup of the file you are going to edit: | ||
| + | <pre> | ||
| + | cd /usr/palm/applications/com.palm.app.messaging/app/controllers/ | ||
| + | cp chatview-assistant.js chatview-assistant.js.orig | ||
| + | </pre> | ||
| − | < | + | - Open the file in vi: |
| − | forceSendIfOffline | + | <pre> |
| − | : | + | vi chatview-assistant.js |
| − | + | </pre> | |
| − | sudo stop LunaSysMgr ; sudo start LunaSysMgr | + | |
| − | </pre | + | - Once the file is loaded, search for the string "forceSendIfOffline" by hitting the "/" key and then typing the string "forceSendIfOffline" and pressing enter |
| + | |||
| + | - hit the "i" key to inssert. | ||
| + | |||
| + | - Move to the part of the line that says "false" and change to "true" | ||
| + | |||
| + | - Save the file (:qw) | ||
| + | |||
| + | - Reload the system and you are done: | ||
| + | <pre> | ||
| + | sudo stop LunaSysMgr ; sudo start LunaSysMgr | ||
| + | </pre> | ||
Revision as of 18:00, 11 August 2009
The Change
- Make a backup of the file you are going to edit:
cd /usr/palm/applications/com.palm.app.messaging/app/controllers/ cp chatview-assistant.js chatview-assistant.js.orig
- Open the file in vi:
vi chatview-assistant.js
- Once the file is loaded, search for the string "forceSendIfOffline" by hitting the "/" key and then typing the string "forceSendIfOffline" and pressing enter
- hit the "i" key to inssert.
- Move to the part of the line that says "false" and change to "true"
- Save the file (:qw)
- Reload the system and you are done:
sudo stop LunaSysMgr ; sudo start LunaSysMgr