Commit 2adc608413f9f20abbc199afdeab9ee099cdd476

 3 Updated, 1 New patches.
  
11diff --git a/usr/lib/luna/system/luna-applauncher/stylesheets/launcher.css b/usr/lib/luna/system/luna-applauncher/stylesheets/launcher.css
2index 545460c..565c27f 100644
2index 545460c..e7c42d9 100644
33--- a/usr/lib/luna/system/luna-applauncher/stylesheets/launcher.css
44+++ b/usr/lib/luna/system/luna-applauncher/stylesheets/launcher.css
5@@ -21,7 +21,7 @@ body.palm-default
6 width: 320px;
7 height: 100%;
8 }
9-
10+/*
5@@ -25,7 +25,7 @@ body.palm-default
116 .launcher_fade_bottom {
127 position: absolute;
138 bottom: 0px;
14@@ -63,7 +63,7 @@ body.palm-default
15 background: url(../images/fade-arrow-up.png) center center no-repeat;
9- background: url(../images/launcher-page-fade-bottom.png) center center no-repeat;
10+/* background: url(../images/launcher-page-fade-bottom.png) center center no-repeat; */
11 z-index:20;
12 left:0px;
13 width:320px;
14@@ -39,13 +39,13 @@ body.palm-default
15 z-index: 29;
16 height: 24px;
17 bottom: 1px;
18- background: url(../images/fade-arrow-down.png) center center no-repeat;
19+/* background: url(../images/fade-arrow-down.png) center center no-repeat; */
1620 -webkit-palm-mouse-target: ignore;
1721 }
18-
19+*/
20 #pages_container {
21 position:relative;
22
23 .launcher_fade_top {
24 position:absolute;
25- background: url(../images/launcher-page-fade-top.png) center center no-repeat;
26+/* background: url(../images/launcher-page-fade-top.png) center center no-repeat; */
27 z-index:20;
2228 left:0px;
29 top:0px;
30@@ -60,7 +60,7 @@ body.palm-default
31 z-index: 29;
32 height: 24px;
33 top: 1px;
34- background: url(../images/fade-arrow-up.png) center center no-repeat;
35+/* background: url(../images/fade-arrow-up.png) center center no-repeat; */
36 -webkit-palm-mouse-target: ignore;
37 }
38
  
2222 if (foundIndex >= 0) {
2323 url = AppAssistant.googleMapsURL + "?" + AppAssistant.urlClientParam + AppAssistant.countryCodeParam +
2424diff --git a/usr/palm/applications/com.palm.app.maps/app/assistants/mapshell-assistant.js b/usr/palm/applications/com.palm.app.maps/app/assistants/mapshell-assistant.js
25index 1d66282..16541e1 100644
25index 1d66282..6d0d0fd 100644
2626--- a/usr/palm/applications/com.palm.app.maps/app/assistants/mapshell-assistant.js
2727+++ b/usr/palm/applications/com.palm.app.maps/app/assistants/mapshell-assistant.js
2828@@ -38,7 +38,11 @@ var MapshellAssistant = Class.create({
3838 };
3939 this.controller.setupWidget(Mojo.Menu.appMenu, appMenuAttrs, this.appMenuModel);
4040
41@@ -283,6 +287,16 @@ var MapshellAssistant = Class.create({
41@@ -283,6 +287,18 @@ var MapshellAssistant = Class.create({
4242 Mojo.Log.info("Maps: handleCommand do nothing... app should go to card mode");
4343 }
4444 }
4848+ AppAssistant.webViewWidget.mojo.openURL(AppAssistant.googleMapsURL);
4949+ break;
5050+ case 'glat':
51+ AppAssistant.webViewWidget.mojo.clearCache();
52+ AppAssistant.webViewWidget.mojo.clearHistory();
5153+ AppAssistant.webViewWidget.mojo.openURL(AppAssistant.googleLatitudeURL);
5254+ break;
5355+ }
  
1diff --git a/usr/palm/applications/com.palm.app.messaging/app/controllers/chatview-assistant.js b/usr/palm/applications/com.palm.app.messaging/app/controllers/chatview-assistant.js
2index 98ab9b2..7ce53d1 100644
3--- a/usr/palm/applications/com.palm.app.messaging/app/controllers/chatview-assistant.js
4+++ b/usr/palm/applications/com.palm.app.messaging/app/controllers/chatview-assistant.js
5@@ -62,11 +62,7 @@ var ChatviewAssistant = Class.create({
6 };
7 this.messageTemplatePath = 'chatview/message/';
8
9- this.appMenuAddPictureItem = {
10- label: $L('Add picture...'),
11- command: 'addPicture',
12- disabled: false
13- };
14+ this.appMenuAddPictureItem = {label: $L('Add picture...'), shortcut: 'p', command:'addPicture', enabled:true};
15
16 this.appMenuBlockUsernameItem = {
17 label: $L('Block this person'),
18@@ -325,6 +321,8 @@ var ChatviewAssistant = Class.create({
19 } else if (event.command == 'copyall') {
20 this.copyConversationToClipboard();
21 }
22+ } else if (event.type == Mojo.Event.forward) {
23+ this.considerForSend();
24 } else if (event.type == Mojo.Event.back) {
25 event.stop();
26 this.popAndRevealListView();
27diff --git a/usr/palm/applications/com.palm.app.messaging/app/controllers/compose-assistant.js b/usr/palm/applications/com.palm.app.messaging/app/controllers/compose-assistant.js
28index 9715c78..0517d0a 100644
29--- a/usr/palm/applications/com.palm.app.messaging/app/controllers/compose-assistant.js
30+++ b/usr/palm/applications/com.palm.app.messaging/app/controllers/compose-assistant.js
31@@ -15,7 +15,7 @@ var ComposeAssistant = Class.create({
32 this.toggleDebugMenu = listviewSceneAssistant.toggleDebugMenu.bind(listviewSceneAssistant,true);
33 }
34
35- this.appMenuAddPictureItem = {label: $L('Add picture...'), command:'addPicture', enabled:true};
36+ this.appMenuAddPictureItem = {label: $L('Add picture...'), shortcut: 'p', command:'addPicture', enabled:true};
37
38 this.appMenuAttrs = {omitDefaultItems: true};
39 this.appMenuModel = { visible:true, label: $L('Chat view menu'), items: [Mojo.Menu.editItem,this.appMenuAddPictureItem,Mojo.Menu.helpItem]};
40@@ -433,6 +433,8 @@ var ComposeAssistant = Class.create({
41 this.attachFilePicker();
42 event.stop();
43 }
44+ } else if (event.type == Mojo.Event.forward) {
45+ this.considerForSend();
46 } else if(event.type == Mojo.Event.back) {
47 if(!this.launchedAsForward){
48 event.stop();
49diff --git a/usr/palm/applications/com.palm.app.messaging/app/views/chatview/chatview-scene.html b/usr/palm/applications/com.palm.app.messaging/app/views/chatview/chatview-scene.html
50index d0d8745..7576a6e 100644
51--- a/usr/palm/applications/com.palm.app.messaging/app/views/chatview/chatview-scene.html
52+++ b/usr/palm/applications/com.palm.app.messaging/app/views/chatview/chatview-scene.html
53@@ -27,10 +27,10 @@
54 </div>
55 <img id="attachmentImage" src=""/>
56 </div>
57- <div id="ActionButton" class="icon right empty">
58+ <div id="ActionButton" class="icon right empty" style="display:none;">
59 <div id="AttachButton" class="stuck attachButton" style="display:none;" x-mojo-tap-highlight="momentary">
60 </div>
61- <div id="SendButton" class="stuck sendButton" x-mojo-tap-highlight="immediate">
62+ <div id="SendButton" class="stuck sendButton" style="display:none;" x-mojo-tap-highlight="immediate">
63 <div id="segmentCounterContainer">
64 <div id="segmentCounter">
65 </div>
66diff --git a/usr/palm/applications/com.palm.app.messaging/app/views/compose/compose-scene.html b/usr/palm/applications/com.palm.app.messaging/app/views/compose/compose-scene.html
67index 30daa88..6b112db 100644
68--- a/usr/palm/applications/com.palm.app.messaging/app/views/compose/compose-scene.html
69+++ b/usr/palm/applications/com.palm.app.messaging/app/views/compose/compose-scene.html
70@@ -11,10 +11,10 @@
71 </div>
72 <img id="attachmentImage" src=""/>
73 </div>
74- <div id="ActionButton" class="icon right empty">
75- <div id="AttachButton" class="stuck attachButton" x-mojo-tap-highlight="momentary">
76+ <div id="ActionButton" class="icon right empty" style="display:none;">
77+ <div id="AttachButton" class="stuck attachButton" style="display:none;" x-mojo-tap-highlight="momentary">
78 </div>
79- <div id="SendButton" class="stuck sendButton" x-mojo-tap-highlight="momentary">
80+ <div id="SendButton" class="stuck sendButton" style="display:none;" x-mojo-tap-highlight="momentary">
81 <div id="segmentCounterContainer">
82 <div id="segmentCounter">
83 </div>