07/09/2009, 11:24 AM
|
#1 (permalink) |
|
Member
![]() Join Date: Mar 2008
Posts: 105
Likes Received: 0
Thanks: 2
Thanked 243 Times in 42 Posts
|
- UPDATE 07-23-2009 - UPDATED AND CERTIFIED FOR Palm WebOS v1.1.0
THIS HOWTO IS CERTIFIED FOR WEBOS v1.1.0 - DO NOT USE THIS FOR OLDER VERSIONS OF WEBOS! This HOWTO requires that you already have root access to your phone. If you need more information on how to do that search the forum. UPDATED JULY 12th, 2009 - NOW INCLUDES BROKEN FORMATTING FIX FOR REPLY/FORWARD E-MAILS To update or Install just follow the same instructions, the script will restore from the original backup copies first, then make all modifications again. Click Here to search for my HOWTO's and Answers for the Palm PRE!NOTES: This was taken from the original post over at predev.wikidot.com/enable-landscape-viewing - I just put it into a simple script/command set that you can just copy and paste into your ssh / terminal window. Thanks to predev.wikidot.com for the information! USAGE: Just open the messaging application and then rotate your Palm Pre! This is the same thing that is enabled when you type the cheat/hidden code "RocknRollHax" in the messaging application, however this enables the feature without having to do that everytime you open the messaging application. I'll try to make this as simple as possible. 1. Login to your Palm PRE and obtain root access.. (Again look around the forums to see how to do this) 2. Once you are at the "root@castle" prompt COPY and PASTE all of the following code into your terminal / putty / ssh window.. (These commands will make backup copies of the original files, then modify them) ** This will reboot your PRE so be sure to close all of your applications beforehand. ** Code:
#
# ENABLE EMAIL ROTATION - LANDSCAPE MODE
#
mount -o remount,rw /
#
# RESTORE FILES
#
echo RESTORING ORIGINAL FILES IF AVAILABLE
cp /usr/palm/applications/com.palm.app.email/app/controllers/list-assistant.js_1-1-0 /usr/palm/applications/com.palm.app.email/app/controllers/list-assistant.js
cp /usr/palm/applications/com.palm.app.email/app/controllers/compose-assistant.js_1-1-0 /usr/palm/applications/com.palm.app.email/app/controllers/compose-assistant.js
cp /usr/palm/applications/com.palm.app.email/app/controllers/accounts-assistant.js_1-1-0 /usr/palm/applications/com.palm.app.email/app/controllers/accounts-assistant.js
#
# BACKUP FILES
#
echo BACKING UP ORIGINAL FILES
cp /usr/palm/applications/com.palm.app.email/app/controllers/list-assistant.js /usr/palm/applications/com.palm.app.email/app/controllers/list-assistant.js_1-1-0
cp /usr/palm/applications/com.palm.app.email/app/controllers/compose-assistant.js /usr/palm/applications/com.palm.app.email/app/controllers/compose-assistant.js_1-1-0
cp /usr/palm/applications/com.palm.app.email/app/controllers/accounts-assistant.js /usr/palm/applications/com.palm.app.email/app/controllers/accounts-assistant.js_1-1-0
#
# MAKE MODIFICATIONS TO list-assistant.js
#
echo MAKING MODIFICATIONS TO list-assistant.js
sed -i "s/this.controller.setupWidget(Mojo.Menu.commandMenu, undefined, this.cmdMenuModel);/this.controller.setupWidget(Mojo.Menu.commandMenu, undefined, this.cmdMenuModel);\n\
this.controller.window.PalmSystem.setWindowOrientation(\"free\");/g" /usr/palm/applications/com.palm.app.email/app/controllers/list-assistant.js
#
# MAKE MODIFICATIONS TO compose-assistant.js
#
echo MAKING MODIFICATIONS TO compose-assistant.js
sed -i "s/ComposeAssistant.onLoad.defer(this.controller, this.email);/ComposeAssistant.onLoad.defer(this.controller, this.email);\n\
this.controller.window.PalmSystem.setWindowOrientation(\"free\");/g" /usr/palm/applications/com.palm.app.email/app/controllers/compose-assistant.js
#
# MAKE MODIFICATIONS TO compose-assistant.js - FIX BROKEN FORMATTING IN REPLY-FORWARD EMAILS
#
echo MAKING MODIFICATIONS TO compose-assistant.js - FIX BROKEN FORMATTING IN REPLY-FORWARD EMAILS - PART 1
sed -i "s/var splitIndex = originalText.indexOf(\"<body\");/\/* -START- REPLACE BY D2GLOBALINC MODIFICATION TO FIX REPLY-FORWARD FORMATTING\n\
var splitIndex = originalText.indexOf(\"<body\");/g" /usr/palm/applications/com.palm.app.email/app/controllers/compose-assistant.js
#
#
echo MAKING MODIFICATIONS TO compose-assistant.js - FIX BROKEN FORMATTING IN REPLY-FORWARD EMAILS - PART 2
sed -i "s/\/\/ Truncate to 100K if the message is too long./*\/\n\
\/\/ -END- REPLACE BY D2GLOBALINC MODIFICATION TO FIX REPLY-FORWARD FORMATTING\n\
\n\
\/\/ FIX BROKEN FORMATTING IN REPLAY-FORWARD\n\
var splitIndex = originalText.indexOf(\"<body\");\n\
if (splitIndex > 0) {\n\
splitIndex = originalText.indexOf(\'>\', splitIndex);\n\
if (splitIndex > 0) {\n\
splitIndex++;\n\
Mojo.Log.info(\"Slicing header starting at\", splitIndex);\n\
originalText = originalText.slice(splitIndex);\n\
}\n\
} else {\n\
originalText = originalText.gsub(\"\\\n\",\"<br\/>\");\n\
}\n\
\n\
\/\/ Truncate to 100K if the message is too long./g" /usr/palm/applications/com.palm.app.email/app/controllers/compose-assistant.js
#
# MAKE MODIFICATIONS TO accounts-assistant.js
#
echo MAKING MODIFICATIONS TO accounts-assistant.js
sed -i "s/this.controller.listen(this.controller.sceneElement, Mojo.Event.keypress, this.keypressHandler.bind(this));/this.controller.listen(this.controller.sceneElement, Mojo.Event.keypress, this.keypressHandler.bind(this));\n\
this.controller.window.PalmSystem.setWindowOrientation(\"free\");/g" /usr/palm/applications/com.palm.app.email/app/controllers/accounts-assistant.js
#
# COMPLETE UPDATE
#
mount -o remount,ro /
echo INSTALLATION COMPELTE... REBOOTING DEVICE...
/sbin/reboot
#
- D2G To restore original files use the following: Code:
# # DISABLE EMAIL ROTATION - LANDSCAPE MODE # mount -o remount,rw / # # RESTORE FILES # echo RESTORING ORIGINAL FILES IF AVAILABLE cp /usr/palm/applications/com.palm.app.email/app/controllers/list-assistant.js_1-1-0 /usr/palm/applications/com.palm.app.email/app/controllers/list-assistant.js cp /usr/palm/applications/com.palm.app.email/app/controllers/compose-assistant.js_1-1-0 /usr/palm/applications/com.palm.app.email/app/controllers/compose-assistant.js cp /usr/palm/applications/com.palm.app.email/app/controllers/accounts-assistant.js_1-1-0 /usr/palm/applications/com.palm.app.email/app/controllers/accounts-assistant.js # # COMPLETE UPDATE # mount -o remount,ro / echo INSTALLATION COMPELTE... REBOOTING DEVICE... /sbin/reboot Last edited by d2globalinc; 07/24/2009 at 02:34 AM. Reason: Included formatting fix for reply/forward e-mails |
07/09/2009, 01:33 PM
|
#7 (permalink) |
|
Member
![]() Join Date: Jan 2005
Location: Southern California
Posts: 644
Likes Received: 0
Thanks: 126
Thanked 43 Times in 22 Posts
|
I have to agree, I was scared to root the pre and do this, but it is very easy... THANK YOU VERY MUCH....
__________________
Remember, this is my opinion ! We all have a right to our own..... Treo's 650-800..NOW, Palm Pre
|
07/09/2009, 02:39 PM
|
#8 (permalink) |
|
Member
![]() Join Date: Jun 2009
Posts: 115
Likes Received: 0
Thanks: 20
Thanked 13 Times in 10 Posts
|
Thanks! After rooting, I was lost as to how to apply patches!! Your instructions are super easy. I am bookmarking all your HOW TO's. Again, thanks much!!
__________________
iPhone; the official phone of 'the Borg'
|
07/09/2009, 03:34 PM
|
#11 (permalink) |
|
Member
![]() Join Date: Jun 2009
Posts: 26
Likes Received: 0
Thanks: 4
Thanked 3 Times in 1 Post
|
lol. i wish they were all these simple. i asked if he could do the same with the call duration hack. im trying to get call duration and sms time/date stamps but its not as simple as these.
|
![]() |
|
| Tags |
| email, landscape, rocknrollhax |
| Thread Tools | |
| Display Modes | |
|
|



