Difference between revisions of "Patch Email Change "Running Late" Message"

From WebOS Internals
Jump to navigation Jump to search
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
{{template:patch}}
 
If you have a calendar notification of a meeting, it will give you the option to email all attendees with the text "Running late, on my way..."  However I work in a professional environment and this is a little casual, so I would like to change it.
 
If you have a calendar notification of a meeting, it will give you the option to email all attendees with the text "Running late, on my way..."  However I work in a professional environment and this is a little casual, so I would like to change it.
  
Line 7: Line 8:
  
 
Go to Line 205 (WebOS 1.1) and change the text "Running late, on my way..." to whatever you want.
 
Go to Line 205 (WebOS 1.1) and change the text "Running late, on my way..." to whatever you want.
 +
 
Or, if you want to disable this button entirely, you can change Line 204 (WebOS 1.1)
 
Or, if you want to disable this button entirely, you can change Line 204 (WebOS 1.1)
  
Line 18: Line 20:
  
 
save and quit
 
save and quit
reboot
+
<pre>
 +
reboot</pre>
 
----
 
----
 
Credit:ShaneM
 
Credit:ShaneM

Latest revision as of 00:13, 3 August 2009


If you have a calendar notification of a meeting, it will give you the option to email all attendees with the text "Running late, on my way..." However I work in a professional environment and this is a little casual, so I would like to change it.

mount -o remount rw, /
cd /usr/palm/applications/com.palm.app.calendar/app/controllers
cp reminder-assistant.js reminder-assistant.js.bak
vi reminder-assistant.js

Go to Line 205 (WebOS 1.1) and change the text "Running late, on my way..." to whatever you want.

Or, if you want to disable this button entirely, you can change Line 204 (WebOS 1.1)

if (this.reminder.attendees.length > 0) {

to

if (1 == 0) {

to force the attendee list test to always be false.

save and quit

reboot

Credit:ShaneM