Send commitlog mailing list submissions to
[email protected]
To subscribe or unsubscribe via the World Wide Web, visit
http://lists.openmoko.org/mailman/listinfo/commitlog
or, via email, send a message with subject or body 'help' to
[EMAIL PROTECTED]
You can reach the person managing the list at
[EMAIL PROTECTED]
When replying, please edit your Subject line so it is more specific
than "Re: Contents of commitlog digest..."
Today's Topics:
1. r2044 - in
trunk/src/target/OM-2007/applications/openmoko-mainmenu: . src
([EMAIL PROTECTED])
2. r2045 - in trunk/oe/packages: . libmrss libmrss/files
([EMAIL PROTECTED])
3. r2046 - in trunk/oe: conf/distro/include
packages/openmoko-base/files packages/openmoko-panel-plugins
packages/tasks ([EMAIL PROTECTED])
4. r2047 - in
trunk/src/target/OM-2007/applications/openmoko-footer: . data src
([EMAIL PROTECTED])
5. r2048 -
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0
([EMAIL PROTECTED])
--- Begin Message ---
Author: stefan
Date: 2007-05-20 18:20:06 +0200 (Sun, 20 May 2007)
New Revision: 2044
Modified:
trunk/src/target/OM-2007/applications/openmoko-mainmenu/ChangeLog
trunk/src/target/OM-2007/applications/openmoko-mainmenu/src/mokodesktop.c
trunk/src/target/OM-2007/applications/openmoko-mainmenu/src/mokodesktop.h
trunk/src/target/OM-2007/applications/openmoko-mainmenu/src/mokodesktop_item.c
trunk/src/target/OM-2007/applications/openmoko-mainmenu/src/mokodesktop_item.h
Log:
2007-05-20 Stefan Schmidt <[EMAIL PROTECTED]>
* src/mokodesktop.c:
* src/mokodesktop.h:
* src/mokodesktop_item.c:
* src/mokodesktop_item.h:
Add missing licence header.
Modified: trunk/src/target/OM-2007/applications/openmoko-mainmenu/ChangeLog
===================================================================
--- trunk/src/target/OM-2007/applications/openmoko-mainmenu/ChangeLog
2007-05-20 16:14:05 UTC (rev 2043)
+++ trunk/src/target/OM-2007/applications/openmoko-mainmenu/ChangeLog
2007-05-20 16:20:06 UTC (rev 2044)
@@ -1,5 +1,14 @@
2007-05-20 Stefan Schmidt <[EMAIL PROTECTED]>
+ * src/mokodesktop.c:
+ * src/mokodesktop.h:
+ * src/mokodesktop_item.c:
+ * src/mokodesktop_item.h:
+
+ Add missing licence header.
+
+2007-05-20 Stefan Schmidt <[EMAIL PROTECTED]>
+
* src/*.{c,h}:
Remove tons of trailing whitspaces
Modified:
trunk/src/target/OM-2007/applications/openmoko-mainmenu/src/mokodesktop.c
===================================================================
--- trunk/src/target/OM-2007/applications/openmoko-mainmenu/src/mokodesktop.c
2007-05-20 16:14:05 UTC (rev 2043)
+++ trunk/src/target/OM-2007/applications/openmoko-mainmenu/src/mokodesktop.c
2007-05-20 16:20:06 UTC (rev 2044)
@@ -1,3 +1,24 @@
+/**
+ * @file mokodesktop.c
+ * @brief The Main Menu in the Openmoko
+ *
+ * Authored by Sun Zhiyong <[EMAIL PROTECTED]>
+ *
+ * Copyright (C) 2006-2007 OpenMoko Inc.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Public License as published by
+ * the Free Software Foundation; version 2 of the license.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Public License for more details.
+ *
+ * Current Version: $Rev$ ($Date$) [$Author$]
+ *
+ */
+
#include "mokodesktop.h"
#include "mokodesktop_item.h"
Modified:
trunk/src/target/OM-2007/applications/openmoko-mainmenu/src/mokodesktop.h
===================================================================
--- trunk/src/target/OM-2007/applications/openmoko-mainmenu/src/mokodesktop.h
2007-05-20 16:14:05 UTC (rev 2043)
+++ trunk/src/target/OM-2007/applications/openmoko-mainmenu/src/mokodesktop.h
2007-05-20 16:20:06 UTC (rev 2044)
@@ -1,3 +1,24 @@
+/**
+ * @file mokodesktop.h
+ * @brief The Main Menu in the Openmoko
+ *
+ * Authored by Sun Zhiyong <[EMAIL PROTECTED]>
+ *
+ * Copyright (C) 2006-2007 OpenMoko Inc.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Public License as published by
+ * the Free Software Foundation; version 2 of the license.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Public License for more details.
+ *
+ * Current Version: $Rev$ ($Date$) [$Author$]
+ *
+ */
+
#ifndef _MOKODESKTOP_H
#define _MOKODESKTOP_H
Modified:
trunk/src/target/OM-2007/applications/openmoko-mainmenu/src/mokodesktop_item.c
===================================================================
---
trunk/src/target/OM-2007/applications/openmoko-mainmenu/src/mokodesktop_item.c
2007-05-20 16:14:05 UTC (rev 2043)
+++
trunk/src/target/OM-2007/applications/openmoko-mainmenu/src/mokodesktop_item.c
2007-05-20 16:20:06 UTC (rev 2044)
@@ -1,3 +1,24 @@
+/**
+ * @file mokodesktop_item.c
+ * @brief The Main Menu in the Openmoko
+ *
+ * Authored by Sun Zhiyong <[EMAIL PROTECTED]>
+ *
+ * Copyright (C) 2006-2007 OpenMoko Inc.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Public License as published by
+ * the Free Software Foundation; version 2 of the license.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Public License for more details.
+ *
+ * Current Version: $Rev$ ($Date$) [$Author$]
+ *
+ */
+
#include "mokodesktop_item.h"
Modified:
trunk/src/target/OM-2007/applications/openmoko-mainmenu/src/mokodesktop_item.h
===================================================================
---
trunk/src/target/OM-2007/applications/openmoko-mainmenu/src/mokodesktop_item.h
2007-05-20 16:14:05 UTC (rev 2043)
+++
trunk/src/target/OM-2007/applications/openmoko-mainmenu/src/mokodesktop_item.h
2007-05-20 16:20:06 UTC (rev 2044)
@@ -1,3 +1,24 @@
+/**
+ * @file mokodesktop_item.h
+ * @brief The Main Menu in the Openmoko
+ *
+ * Authored by Sun Zhiyong <[EMAIL PROTECTED]>
+ *
+ * Copyright (C) 2006-2007 OpenMoko Inc.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU Public License as published by
+ * the Free Software Foundation; version 2 of the license.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Public License for more details.
+ *
+ * Current Version: $Rev$ ($Date$) [$Author$]
+ *
+ */
+
#ifndef _HAVE_MOKODESKTOP_ITEM_H
#define _HAVE_MOKODESKTOP_ITEM_H
--- End Message ---
--- Begin Message ---
Author: werner
Date: 2007-05-20 21:15:43 +0200 (Sun, 20 May 2007)
New Revision: 2045
Added:
trunk/oe/packages/libmrss/
trunk/oe/packages/libmrss/files/
trunk/oe/packages/libmrss/files/better-parse-url-r0.patch
trunk/oe/packages/libmrss/libmrss_0.17.2.bb
Log:
Patch by Stefan Schmidt to fix
http://bugzilla.openmoko.org/cgi-bin/bugzilla/show_bug.cgi?id=569
Added: trunk/oe/packages/libmrss/files/better-parse-url-r0.patch
===================================================================
--- trunk/oe/packages/libmrss/files/better-parse-url-r0.patch 2007-05-20
16:20:06 UTC (rev 2044)
+++ trunk/oe/packages/libmrss/files/better-parse-url-r0.patch 2007-05-20
19:15:43 UTC (rev 2045)
@@ -0,0 +1,90 @@
+Index: libmrss-0.17.2/src/mrss.h
+===================================================================
+--- libmrss-0.17.2.orig/src/mrss.h 2007-04-02 14:42:55.000000000 +0200
++++ libmrss-0.17.2/src/mrss.h 2007-05-19 20:56:08.000000000 +0200
+@@ -523,6 +523,22 @@
+ mrss_t ** mrss,
+ mrss_options_t * options);
+
++/**
++ * Like the previous function but you take ownership of the downloaded buffer
in case of success
++ * \param url The url to be parsed
++ * \param mrss the pointer to your data struct
++ * \param options a pointer to a options data struct
++ * \param feed_content a pointer to the buffer with the document. This is not
NULL terminated
++ * \param feed_size the size of the buffer above
++ * \return the error code
++ */
++mrss_error_t mrss_parse_url_and_transfer_buffer
++ (char * url,
++ mrss_t ** mrss,
++ mrss_options_t * options,
++ char ** feed_content,
++ int * feed_size);
++
+ /**
+ * Parses a file and creates the data struct of the feed RSS url
+ * \param file The file to be parsed
+Index: libmrss-0.17.2/src/mrss_parser.c
+===================================================================
+--- libmrss-0.17.2.orig/src/mrss_parser.c 2007-05-19 20:47:08.000000000
+0200
++++ libmrss-0.17.2/src/mrss_parser.c 2007-05-19 20:56:37.000000000 +0200
+@@ -1075,13 +1075,20 @@
+ mrss_error_t
+ mrss_parse_url (char *url, mrss_t ** ret)
+ {
+- return mrss_parse_url_with_options (url, ret, NULL);
++ return mrss_parse_url_and_transfer_buffer (url, ret, NULL, NULL, NULL);
+ }
+
+ mrss_error_t
+ mrss_parse_url_with_options (char *url, mrss_t ** ret,
+ mrss_options_t * options)
+ {
++ return mrss_parse_url_and_transfer_buffer (url, ret, options, NULL, NULL);
++}
++
++mrss_error_t
++mrss_parse_url_and_transfer_buffer (char *url, mrss_t ** ret,
++ mrss_options_t * options, char **download_buffer,
int *download_size)
++{
+ nxml_t *doc;
+ mrss_error_t err;
+ char *buffer;
+@@ -1117,7 +1124,8 @@
+
+ if (nxml_parse_buffer (doc, buffer, size) != NXML_OK)
+ {
+- free (buffer);
++ if (!download_buffer)
++ free (buffer);
+ nxml_free (doc);
+
+ return MRSS_ERR_PARSER;
+@@ -1127,7 +1135,8 @@
+ {
+ if (!((*ret)->file = strdup (url)))
+ {
+- free (buffer);
++ if (!download_buffer)
++ free (buffer);
+
+ mrss_free (*ret);
+ nxml_free (doc);
+@@ -1138,9 +1147,15 @@
+ (*ret)->size = size;
+ }
+
+- free (buffer);
++ if (!download_buffer)
++ free (buffer);
+ nxml_free (doc);
+
++ /* transfer ownership */
++ if (download_buffer)
++ *download_buffer = buffer;
++ if (download_size)
++ *download_size = size;
+ return err;
+ }
+
Added: trunk/oe/packages/libmrss/libmrss_0.17.2.bb
===================================================================
--- trunk/oe/packages/libmrss/libmrss_0.17.2.bb 2007-05-20 16:20:06 UTC (rev
2044)
+++ trunk/oe/packages/libmrss/libmrss_0.17.2.bb 2007-05-20 19:15:43 UTC (rev
2045)
@@ -0,0 +1,15 @@
+DESCRIPTION = "mRSS is a C library for parsing, writing and creating RSS
(0.91, 0.92, 1.0, 2.0) files or streams"
+LICENSE = "LGPL"
+HOMEPAGE = "http://www2.autistici.org/bakunin/codes.php"
+
+DEPENDS = "libnxml curl"
+PR = "r1"
+
+inherit autotools pkgconfig
+
+SRC_URI = "http://www2.autistici.org/bakunin/libmrss/libmrss-${PV}.tar.gz \
+ file://better-parse-url-r0.patch;patch=1 "
+
+do_stage() {
+ autotools_stage_all
+}
--- End Message ---
--- Begin Message ---
Author: stefan
Date: 2007-05-20 23:05:20 +0200 (Sun, 20 May 2007)
New Revision: 2046
Added:
trunk/oe/packages/openmoko-panel-plugins/openmoko-panel-startup_svn.bb
Modified:
trunk/oe/conf/distro/include/preferred-openmoko-versions.inc
trunk/oe/packages/openmoko-base/files/session
trunk/oe/packages/tasks/task-openmoko.bb
Log:
* Activate the new openmoko-panel-startup by default.
Modified: trunk/oe/conf/distro/include/preferred-openmoko-versions.inc
===================================================================
--- trunk/oe/conf/distro/include/preferred-openmoko-versions.inc
2007-05-20 19:15:43 UTC (rev 2045)
+++ trunk/oe/conf/distro/include/preferred-openmoko-versions.inc
2007-05-20 21:05:20 UTC (rev 2046)
@@ -82,3 +82,4 @@
SRCDATE_openmoko-panel-gps = "now"
SRCDATE_openmoko-panel-bt = "now"
SRCDATE_openmoko-panel-usb = "now"
+SRCDATE_openmoko-panel-startup = "now"
Modified: trunk/oe/packages/openmoko-base/files/session
===================================================================
--- trunk/oe/packages/openmoko-base/files/session 2007-05-20 19:15:43 UTC
(rev 2045)
+++ trunk/oe/packages/openmoko-base/files/session 2007-05-20 21:05:20 UTC
(rev 2046)
@@ -10,12 +10,11 @@
matchbox-panel \
- --start-applets=openmoko-panel-mainmenu,systray \
+ --start-applets=openmoko-panel-mainmenu,systray,openmoko-panel-startup \
--end-applets=openmoko-panel-battery,openmoko-panel-gsm,openmoko-panel-gps,openmoko-panel-usb,openmoko-panel-bt,openmoko-panel-clock
&
-# start some old-style panel plugins to get a keyboard and startup notification
+# start old-style panel plugin to get a keyboard
mbinputmgr &
-mb-applet-startup-monitor &
openmoko-footer &
openmoko-dialer &
Added: trunk/oe/packages/openmoko-panel-plugins/openmoko-panel-startup_svn.bb
===================================================================
--- trunk/oe/packages/openmoko-panel-plugins/openmoko-panel-startup_svn.bb
2007-05-20 19:15:43 UTC (rev 2045)
+++ trunk/oe/packages/openmoko-panel-plugins/openmoko-panel-startup_svn.bb
2007-05-20 21:05:20 UTC (rev 2046)
@@ -0,0 +1,6 @@
+DESCRIPTON = "Shows the application startup in the OpenMoko panel"
+DEPENDS += "startup-notification"
+PV = "0.0.1+svn${SRCDATE}"
+PR = "r1"
+
+inherit openmoko-panel-plugin
Modified: trunk/oe/packages/tasks/task-openmoko.bb
===================================================================
--- trunk/oe/packages/tasks/task-openmoko.bb 2007-05-20 19:15:43 UTC (rev
2045)
+++ trunk/oe/packages/tasks/task-openmoko.bb 2007-05-20 21:05:20 UTC (rev
2046)
@@ -103,6 +103,7 @@
openmoko-panel-clock \
openmoko-panel-usb \
openmoko-panel-gps \
+ openmoko-panel-startup \
"
#
--- End Message ---
--- Begin Message ---
Author: alphaone
Date: 2007-05-21 02:03:49 +0200 (Mon, 21 May 2007)
New Revision: 2047
Added:
trunk/src/target/OM-2007/applications/openmoko-footer/data/icon_app_tasklist.png
trunk/src/target/OM-2007/applications/openmoko-footer/data/icon_app_taskswitch.png
Modified:
trunk/src/target/OM-2007/applications/openmoko-footer/ChangeLog
trunk/src/target/OM-2007/applications/openmoko-footer/data/Makefile.am
trunk/src/target/OM-2007/applications/openmoko-footer/src/footer.c
Log:
* data/icon_app_task{list,switch}.png: Added.
Add the old images for the footer.
* data/Makefile.am, src/footer.c (footer_init):
Show the old images instead of the new ones.
Modified: trunk/src/target/OM-2007/applications/openmoko-footer/ChangeLog
===================================================================
--- trunk/src/target/OM-2007/applications/openmoko-footer/ChangeLog
2007-05-20 21:05:20 UTC (rev 2046)
+++ trunk/src/target/OM-2007/applications/openmoko-footer/ChangeLog
2007-05-21 00:03:49 UTC (rev 2047)
@@ -1,3 +1,13 @@
+2007-05-21 Daniel Willmann <[EMAIL PROTECTED]>
+
+ * data/icon_app_tasklist.png: Added.
+ * data/icon_app_taskswitch.png: Added.
+ Add the old images for the footer.
+ * data/Makefile.am:
+ * src/footer.c:
+ (footer_init):
+ Show the old images instead of the new ones.
+
2007-05-18 Daniel Willmann <[EMAIL PROTECTED]>
* data/Makefile.am:
Modified: trunk/src/target/OM-2007/applications/openmoko-footer/data/Makefile.am
===================================================================
--- trunk/src/target/OM-2007/applications/openmoko-footer/data/Makefile.am
2007-05-20 21:05:20 UTC (rev 2046)
+++ trunk/src/target/OM-2007/applications/openmoko-footer/data/Makefile.am
2007-05-21 00:03:49 UTC (rev 2047)
@@ -1,5 +1,5 @@
-EXTRA_DIST = icon_app_history.png icon_app_toggle.png
+EXTRA_DIST = icon_app_history.png icon_app_toggle.png icon_app_tasklist.png
icon_app_taskswitch.png
resourcedir = $(pkgdatadir)
-resource_DATA = icon_app_history.png icon_app_toggle.png
+resource_DATA = icon_app_history.png icon_app_toggle.png icon_app_tasklist.png
icon_app_taskswitch.png
Added:
trunk/src/target/OM-2007/applications/openmoko-footer/data/icon_app_tasklist.png
===================================================================
(Binary files differ)
Property changes on:
trunk/src/target/OM-2007/applications/openmoko-footer/data/icon_app_tasklist.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added:
trunk/src/target/OM-2007/applications/openmoko-footer/data/icon_app_taskswitch.png
===================================================================
(Binary files differ)
Property changes on:
trunk/src/target/OM-2007/applications/openmoko-footer/data/icon_app_taskswitch.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Modified: trunk/src/target/OM-2007/applications/openmoko-footer/src/footer.c
===================================================================
--- trunk/src/target/OM-2007/applications/openmoko-footer/src/footer.c
2007-05-20 21:05:20 UTC (rev 2046)
+++ trunk/src/target/OM-2007/applications/openmoko-footer/src/footer.c
2007-05-21 00:03:49 UTC (rev 2047)
@@ -48,7 +48,7 @@
gtk_box_pack_start (GTK_BOX (f), GTK_WIDGET(f->LeftEventBox), FALSE,
FALSE, BUTTON_PADDING);
gtk_widget_set_events (GTK_WIDGET (f->LeftEventBox),
GDK_BUTTON_PRESS_MASK);
- f->LeftImage = gtk_image_new_from_file (PKGDATADIR"/icon_app_history.png");
+ f->LeftImage = gtk_image_new_from_file
(PKGDATADIR"/icon_app_tasklist.png");
gtk_widget_show (GTK_WIDGET (f->LeftImage));
gtk_container_add ( GTK_CONTAINER (f->LeftEventBox), f->LeftImage);
@@ -84,7 +84,7 @@
gtk_box_pack_end (GTK_BOX (f), GTK_WIDGET(f->RightEventBox), FALSE, FALSE,
BUTTON_PADDING);
gtk_widget_set_events (f->RightEventBox,GDK_BUTTON_PRESS_MASK);
- f->RightImage = gtk_image_new_from_file (PKGDATADIR"/icon_app_toggle.png");
+ f->RightImage = gtk_image_new_from_file
(PKGDATADIR"/icon_app_taskswitch.png");
gtk_widget_show (GTK_WIDGET (f->RightImage));
gtk_container_add (GTK_CONTAINER (f->RightEventBox), f->RightImage);
}
--- End Message ---
--- Begin Message ---
Author: alphaone
Date: 2007-05-21 02:14:03 +0200 (Mon, 21 May 2007)
New Revision: 2048
Modified:
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/openmoko-footer
Log:
* openmoko-footer: Change text color to white to improve readability
and fix indentation
Modified:
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/openmoko-footer
===================================================================
---
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/openmoko-footer
2007-05-21 00:03:49 UTC (rev 2047)
+++
trunk/src/target/OM-2007/artwork/themes/openmoko-standard/gtk-2.0/openmoko-footer
2007-05-21 00:14:03 UTC (rev 2048)
@@ -1,4 +1,6 @@
style "openmoko-footer-progress" {
+ fg[NORMAL]="#ffffff"
+ fg[PRELIGHT]="#000000"
engine "pixmap" {
image {
function = BOX
@@ -16,11 +18,11 @@
stretch = TRUE
orientation = HORIZONTAL
}
+ }
}
-}
style "openmoko-footer" {
- bg_pixmap[NORMAL] = "openmoko-footer-background.png"
+ bg_pixmap[NORMAL] = "openmoko-footer-background.png"
}
--- End Message ---
_______________________________________________
commitlog mailing list
[email protected]
http://lists.openmoko.org/mailman/listinfo/commitlog