Re: [E-devel] E SVN: cedric IN trunk/E-MODULES-EXTRA/calendar: . src

2010-03-31 Thread Leif Middelschulte
Hello,

2010/3/29 Enlightenment SVN no-re...@enlightenment.org:
 Log:
        * calendar: now you can move in the timeline.

        TODO: Add support for remote service with a local cache.
        People do you have suggestion on what kind of remote
        calendar this module should support ?

How about (Web-/)CalDav?

BR,

Leif

 Author:       cedric
 Date:         2010-03-29 08:54:34 -0700 (Mon, 29 Mar 2010)
 New Revision: 47557

 Added:
  trunk/E-MODULES-EXTRA/calendar/arrow2_left.png 
 trunk/E-MODULES-EXTRA/calendar/arrow2_right.png 
 trunk/E-MODULES-EXTRA/calendar/arrow_left.png 
 trunk/E-MODULES-EXTRA/calendar/arrow_right.png
 Modified:
  trunk/E-MODULES-EXTRA/calendar/calendar.edc 
 trunk/E-MODULES-EXTRA/calendar/src/e_mod_main.c


 Property changes on: trunk/E-MODULES-EXTRA/calendar/arrow2_left.png
 ___
 Added: svn:mime-type
   + application/octet-stream


 Property changes on: trunk/E-MODULES-EXTRA/calendar/arrow2_right.png
 ___
 Added: svn:mime-type
   + application/octet-stream


 Property changes on: trunk/E-MODULES-EXTRA/calendar/arrow_left.png
 ___
 Added: svn:mime-type
   + application/octet-stream


 Property changes on: trunk/E-MODULES-EXTRA/calendar/arrow_right.png
 ___
 Added: svn:mime-type
   + application/octet-stream

 Modified: trunk/E-MODULES-EXTRA/calendar/calendar.edc
 ===
 --- trunk/E-MODULES-EXTRA/calendar/calendar.edc 2010-03-29 13:21:38 UTC (rev 
 47556)
 +++ trunk/E-MODULES-EXTRA/calendar/calendar.edc 2010-03-29 15:54:34 UTC (rev 
 47557)
 @@ -1,9 +1,335 @@
  images {
    image: calendar.png COMP;
 +   image: arrow_left.png COMP;
 +   image: arrow_right.png COMP;
 +   image: arrow2_left.png COMP;
 +   image: arrow2_right.png COMP;
  }

 +#define FLASHY_RECT(To, X1, X2)                        \
 +  part {                                       \
 +     name: To/back;                          \
 +     type: RECT;                               \
 +     mouse_events: 1;                          \
 +     description {                             \
 +        state: default 0.0;                  \
 +        rel1.to: To;                           \
 +        rel1.offset: -1 -1;                    \
 +        rel2.to: To;                           \
 +        rel2.offset: 0 0;                      \
 +        color: 255 128 128 0;                  \
 +     }                                         \
 +     description {                             \
 +        state: click 0.0;                    \
 +        inherit: default 0.0;                        \
 +        color: 255 128 128 255;                        \
 +     }                                         \
 +  }                                            \
 +  part {                                       \
 +     name: To;                                 \
 +     type: RECT;                               \
 +     mouse_events: 1;                          \
 +     description {                             \
 +        state: default 0.0;                  \
 +        rel1.relative: X1 0.0;                 \
 +        rel2.relative: X2 1.0;                 \
 +        color: 255 195 195 0;                  \
 +     }                                         \
 +     description {                             \
 +        state: click 0.0;                    \
 +        inherit: default 0.0;                        \
 +        color: 255 195 195 255;                        \
 +     }                                         \
 +  }
 +
 +
  collections {
    group {
 +      name: modules/calendar/header;
 +      min: 42 9;
 +      parts {
 +        FLASHY_RECT(year/left, 0.0, 0.06);
 +        part {
 +           name: year/left/image;
 +           type: IMAGE;
 +           mouse_events: 0;
 +           description {
 +              state: default 0.0;
 +              aspect: 1.0 1.0;
 +              aspect_preference: BOTH;
 +              rel1.to: year/left;
 +              rel2.to: year/left;
 +              image.normal: arrow2_left.png;
 +           }
 +        }
 +        FLASHY_RECT(month/left, 0.06, 0.105);
 +        part {
 +           name: month/left/image;
 +           type: IMAGE;
 +           mouse_events: 0;
 +           description {
 +              state: default 0.0;
 +              aspect: 1.0 1.0;
 +              aspect_preference: BOTH;
 +              rel1.to: month/left;
 +              rel2.to: month/left;
 +              image.normal: arrow_left.png;
 +              color: 255 255 255 255;
 +           }
 +           description {
 +              state: click 0.0;
 +              inherit: default 0.0;
 +              color: 255 0 0 255;
 +           }
 +        }
 +        part {
 +           name: 

Re: [E-devel] E SVN: cedric IN trunk/E-MODULES-EXTRA/calendar: . src

2010-03-31 Thread Cedric BAIL
On Wed, Mar 31, 2010 at 4:52 PM, Leif Middelschulte
leif.middelschu...@gmail.com wrote:
 Hello,

 2010/3/29 Enlightenment SVN no-re...@enlightenment.org:
 Log:
        * calendar: now you can move in the timeline.

        TODO: Add support for remote service with a local cache.
        People do you have suggestion on what kind of remote
        calendar this module should support ?

 How about (Web-/)CalDav?

Apparently google provide that kind of API, did you try it ?

http://code.google.com/apis/calendar/caldav/

What kind of web service do you use ? Do you know any free software
that would provide that (and could be easily installed on a personnal
server) ?
-- 
Cedric BAIL

--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: cedric IN trunk/E-MODULES-EXTRA/calendar: . src

2010-03-31 Thread Tom Haste
Thunderbird  Evolution both support CalDAV, as does Google  Yahoo.
Seems like a well supported standard!

On 31 March 2010 23:04, Cedric BAIL cedric.b...@free.fr wrote:
 On Wed, Mar 31, 2010 at 4:52 PM, Leif Middelschulte
 leif.middelschu...@gmail.com wrote:
 Hello,

 2010/3/29 Enlightenment SVN no-re...@enlightenment.org:
 Log:
        * calendar: now you can move in the timeline.

        TODO: Add support for remote service with a local cache.
        People do you have suggestion on what kind of remote
        calendar this module should support ?

 How about (Web-/)CalDav?

 Apparently google provide that kind of API, did you try it ?

 http://code.google.com/apis/calendar/caldav/

 What kind of web service do you use ? Do you know any free software
 that would provide that (and could be easily installed on a personnal
 server) ?
 --
 Cedric BAIL

 --
 Download Intel#174; Parallel Studio Eval
 Try the new software tools for yourself. Speed compiling, find bugs
 proactively, and fine-tune applications for parallel performance.
 See why Intel Parallel Studio got high marks during beta.
 http://p.sf.net/sfu/intel-sw-dev
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: cedric IN trunk/E-MODULES-EXTRA/calendar: . src

2010-03-31 Thread David Seikel
On Wed, 31 Mar 2010 23:18:35 +0800 Tom Haste tomha...@gmail.com wrote:

  Log:
         * calendar: now you can move in the timeline.
 
         TODO: Add support for remote service with a local cache.
         People do you have suggestion on what kind of remote
         calendar this module should support ?

vCalendar?

-- 
A big old stinking pile of genius that no one wants
coz there are too many silver coated monkeys in the world.


signature.asc
Description: PGP signature
--
Download Intel#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: cedric IN trunk: E-MODULES-EXTRA/...

2009-03-16 Thread Peter Wehrfritz
Enlightenment SVN schrieb:
 Modified: trunk/ecore/src/lib/ecore_x/xlib/ecore_x_atoms.c
 ===
 --- trunk/ecore/src/lib/ecore_x/xlib/ecore_x_atoms.c  2009-03-16 13:46:16 UTC 
 (rev 39504)
 +++ trunk/ecore/src/lib/ecore_x/xlib/ecore_x_atoms.c  2009-03-16 16:24:43 UTC 
 (rev 39505)
 @@ -193,9 +193,9 @@
   { _NET_WM_WINDOW_SHADE, ECORE_X_ATOM_NET_WM_WINDOW_SHADE },
  
   { TARGETS, ECORE_X_ATOM_SELECTION_TARGETS },
 - { PRIMARY, ECORE_X_ATOM_SELECTION_PRIMARY },
 - { SECONDARY, ECORE_X_ATOM_SELECTION_SECONDARY },
 - { CLIPBOARD, ECORE_X_ATOM_SELECTION_CLIPBOARD },
 + { CLIPBOARD, ECORE_X_ATOM_SELECTION_PRIMARY },
 + { PRIMARY, ECORE_X_ATOM_SELECTION_SECONDARY },
 + { SECONDARY, ECORE_X_ATOM_SELECTION_CLIPBOARD },
   { _ECORE_SELECTION_PRIMARY, ECORE_X_ATOM_SELECTION_PROP_PRIMARY },
   { _ECORE_SELECTION_SECONDARY, ECORE_X_ATOM_SELECTION_PROP_SECONDARY 
 },
   { _ECORE_SELECTION_CLIPBOARD, ECORE_X_ATOM_SELECTION_PROP_CLIPBOARD 
 },

   
This re-introduce a bug I fixed 4 months ago. Does that mean that this 
patch wipes all bugfixes or enhancements out that were do after that (or 
probably previous) date?


Peter

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: cedric IN trunk: E-MODULES-EXTRA/...

2009-03-16 Thread Cedric BAIL
On Mon, Mar 16, 2009 at 6:16 PM, Peter Wehrfritz peter.wehrfr...@web.de wrote:
 Enlightenment SVN schrieb:
 Modified: trunk/ecore/src/lib/ecore_x/xlib/ecore_x_atoms.c
 ===
 --- trunk/ecore/src/lib/ecore_x/xlib/ecore_x_atoms.c  2009-03-16 13:46:16 
 UTC (rev 39504)
 +++ trunk/ecore/src/lib/ecore_x/xlib/ecore_x_atoms.c  2009-03-16 16:24:43 
 UTC (rev 39505)
 @@ -193,9 +193,9 @@
       { _NET_WM_WINDOW_SHADE, ECORE_X_ATOM_NET_WM_WINDOW_SHADE },

       { TARGETS, ECORE_X_ATOM_SELECTION_TARGETS },
 -     { PRIMARY, ECORE_X_ATOM_SELECTION_PRIMARY },
 -     { SECONDARY, ECORE_X_ATOM_SELECTION_SECONDARY },
 -     { CLIPBOARD, ECORE_X_ATOM_SELECTION_CLIPBOARD },
 +     { CLIPBOARD, ECORE_X_ATOM_SELECTION_PRIMARY },
 +     { PRIMARY, ECORE_X_ATOM_SELECTION_SECONDARY },
 +     { SECONDARY, ECORE_X_ATOM_SELECTION_CLIPBOARD },
       { _ECORE_SELECTION_PRIMARY, ECORE_X_ATOM_SELECTION_PROP_PRIMARY },
       { _ECORE_SELECTION_SECONDARY, ECORE_X_ATOM_SELECTION_PROP_SECONDARY 
 },
       { _ECORE_SELECTION_CLIPBOARD, ECORE_X_ATOM_SELECTION_PROP_CLIPBOARD 
 },


 This re-introduce a bug I fixed 4 months ago. Does that mean that this
 patch wipes all bugfixes or enhancements out that were do after that (or
 probably previous) date?

Of course it should not. I just don't understand why this did show up
in my patch.

-- 
Cedric BAIL

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: cedric IN trunk: E-MODULES-EXTRA/...

2009-03-16 Thread Peter Wehrfritz
Cedric BAIL schrieb:
 On Mon, Mar 16, 2009 at 6:16 PM, Peter Wehrfritz peter.wehrfr...@web.de 
 wrote:
   
 Enlightenment SVN schrieb:
 
 Modified: trunk/ecore/src/lib/ecore_x/xlib/ecore_x_atoms.c
 ===
 --- trunk/ecore/src/lib/ecore_x/xlib/ecore_x_atoms.c  2009-03-16 13:46:16 
 UTC (rev 39504)
 +++ trunk/ecore/src/lib/ecore_x/xlib/ecore_x_atoms.c  2009-03-16 16:24:43 
 UTC (rev 39505)
 @@ -193,9 +193,9 @@
   { _NET_WM_WINDOW_SHADE, ECORE_X_ATOM_NET_WM_WINDOW_SHADE },

   { TARGETS, ECORE_X_ATOM_SELECTION_TARGETS },
 - { PRIMARY, ECORE_X_ATOM_SELECTION_PRIMARY },
 - { SECONDARY, ECORE_X_ATOM_SELECTION_SECONDARY },
 - { CLIPBOARD, ECORE_X_ATOM_SELECTION_CLIPBOARD },
 + { CLIPBOARD, ECORE_X_ATOM_SELECTION_PRIMARY },
 + { PRIMARY, ECORE_X_ATOM_SELECTION_SECONDARY },
 + { SECONDARY, ECORE_X_ATOM_SELECTION_CLIPBOARD },
   { _ECORE_SELECTION_PRIMARY, ECORE_X_ATOM_SELECTION_PROP_PRIMARY },
   { _ECORE_SELECTION_SECONDARY, 
 ECORE_X_ATOM_SELECTION_PROP_SECONDARY },
   { _ECORE_SELECTION_CLIPBOARD, 
 ECORE_X_ATOM_SELECTION_PROP_CLIPBOARD },


   
 This re-introduce a bug I fixed 4 months ago. Does that mean that this
 patch wipes all bugfixes or enhancements out that were do after that (or
 probably previous) date?
 

 Of course it should not. I just don't understand why this did show up
 in my patch.
   

That's good to hear :)


--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] E SVN: cedric IN trunk/E-MODULES-EXTRA: forecasts skel skel/src

2008-10-14 Thread Sebastian Dransfeld
Enlightenment SVN wrote:
 Log:
   Fix module build (Use pkgconfig instead of deprecated enlightenment-config).

enlightenment-config is still needed for --module-dir, so it isn't 
deprecated, and if modules don't use it they should :)

Sebastian

   
   
 
 Author:   cedric
 Date: 2008-10-14 09:02:00 -0700 (Tue, 14 Oct 2008)
 New Revision: 36660
 
 Modified:
   trunk/E-MODULES-EXTRA/forecasts/Makefile.am 
 trunk/E-MODULES-EXTRA/forecasts/configure.in 
 trunk/E-MODULES-EXTRA/skel/Makefile.am 
 trunk/E-MODULES-EXTRA/skel/configure.in 
 trunk/E-MODULES-EXTRA/skel/src/Makefile.am 
 
 Modified: trunk/E-MODULES-EXTRA/forecasts/Makefile.am
 ===
 --- trunk/E-MODULES-EXTRA/forecasts/Makefile.am   2008-10-14 15:37:29 UTC 
 (rev 36659)
 +++ trunk/E-MODULES-EXTRA/forecasts/Makefile.am   2008-10-14 16:02:00 UTC 
 (rev 36660)
 @@ -23,7 +23,7 @@
  INCLUDES = -I. \
 -I$(top_srcdir) \
 -I$(includedir) \
 -@e_cflags@
 +@E_CFLAGS@
  
  pkgdir = $(datadir)/$(MODULE_ARCH)
  pkg_LTLIBRARIES= module.la
 @@ -31,8 +31,8 @@
e_mod_main.h \
e_mod_config.c \
e_mod_config.h
 - 
 -module_la_LIBADD   = @e_libs@
 +
 +module_la_LIBADD   = @E_LIBS@
  module_la_LDFLAGS  = -module -avoid-version
  module_la_DEPENDENCIES = $(top_builddir)/config.h
  
 
 Modified: trunk/E-MODULES-EXTRA/forecasts/configure.in
 ===
 --- trunk/E-MODULES-EXTRA/forecasts/configure.in  2008-10-14 15:37:29 UTC 
 (rev 36659)
 +++ trunk/E-MODULES-EXTRA/forecasts/configure.in  2008-10-14 16:02:00 UTC 
 (rev 36660)
 @@ -31,12 +31,7 @@
  
  AC_PATH_PROG(EDJE_CC, edje_cc, , $PATH)
  
 -AC_PATH_PROG(E_CONFIG, enlightenment-config, , $PATH)
 -e_cflags=`$E_CONFIG --cflags`
 -e_libs=`$E_CONFIG --libs`
 -e_modules=`$E_CONFIG --module-dir`
 -AC_SUBST(e_cflags)
 -AC_SUBST(e_libs)
 +PKG_CHECK_MODULES(E, [enlightenment])
  
  datadir=${e_modules}/${PACKAGE}
  AC_ARG_ENABLE(homedir-install,
 
 Modified: trunk/E-MODULES-EXTRA/skel/Makefile.am
 ===
 --- trunk/E-MODULES-EXTRA/skel/Makefile.am2008-10-14 15:37:29 UTC (rev 
 36659)
 +++ trunk/E-MODULES-EXTRA/skel/Makefile.am2008-10-14 16:02:00 UTC (rev 
 36660)
 @@ -25,4 +25,4 @@
rm -rf e-module-skel.edj module.desktop *~
  uninstall:
rm -rf $(DESTDIR)$(datadir)
 -  
 +
 
 Modified: trunk/E-MODULES-EXTRA/skel/configure.in
 ===
 --- trunk/E-MODULES-EXTRA/skel/configure.in   2008-10-14 15:37:29 UTC (rev 
 36659)
 +++ trunk/E-MODULES-EXTRA/skel/configure.in   2008-10-14 16:02:00 UTC (rev 
 36660)
 @@ -32,12 +32,7 @@
  
  AC_PATH_PROG(EDJE_CC, edje_cc, , $PATH)
  
 -AC_PATH_PROG(E_CONFIG, enlightenment-config, , $PATH)
 -e_cflags=`$E_CONFIG --cflags`
 -e_libs=`$E_CONFIG --libs`
 -e_modules=`$E_CONFIG --module-dir`
 -AC_SUBST(e_cflags)
 -AC_SUBST(e_libs)
 +PKG_CHECK_MODULES(E, [enlightenment])
  
  datadir=${e_modules}/${PACKAGE}
  AC_ARG_ENABLE(homedir-install,
 
 Modified: trunk/E-MODULES-EXTRA/skel/src/Makefile.am
 ===
 --- trunk/E-MODULES-EXTRA/skel/src/Makefile.am2008-10-14 15:37:29 UTC 
 (rev 36659)
 +++ trunk/E-MODULES-EXTRA/skel/src/Makefile.am2008-10-14 16:02:00 UTC 
 (rev 36660)
 @@ -3,15 +3,15 @@
  INCLUDES = -I. \
-I$(top_srcdir) \
-I$(includedir) \
 -  @e_cflags@
 +  @E_CFLAGS@
  
  pkgdir = $(datadir)/$(MODULE_ARCH)
  pkg_LTLIBRARIES = module.la
  module_la_SOURCES = e_mod_main.h \
   e_mod_main.c \
  e_mod_config.c
 - 
 -module_la_LIBADD = @e_libs@
 +
 +module_la_LIBADD = @E_LIBS@
  module_la_LDFLAGS = -module -avoid-version
  module_la_DEPENDENCIES = $(top_builddir)/config.h
  
 
 
 -
 This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
 Build the coolest Linux based applications with Moblin SDK  win great prizes
 Grand prize is a trip for two to an Open Source event anywhere in the world
 http://moblin-contest.org/redirect.php?banner_id=100url=/
 ___
 enlightenment-svn mailing list
 [EMAIL PROTECTED]
 https://lists.sourceforge.net/lists/listinfo/enlightenment-svn


-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world

Re: [E-devel] E SVN: cedric IN trunk/E-MODULES-EXTRA: forecasts skel skel/src

2008-10-14 Thread Vincent Torri


On Wed, 15 Oct 2008, Sebastian Dransfeld wrote:

 Enlightenment SVN wrote:
 Log:
   Fix module build (Use pkgconfig instead of deprecated 
 enlightenment-config).

 enlightenment-config is still needed for --module-dir, so it isn't
 deprecated, and if modules don't use it they should :)

you could support that with enlightenment.pc(.in):

after [EMAIL PROTECTED]@/@PACKAGE@, add:

[EMAIL PROTECTED]@/@PACKAGE@/modules

and use:

pkg-config --variable=moduledir enlightenment

to retrieve that directory

Vincent

-
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK  win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100url=/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel