Re: [E-devel] [Patch] Elementary : New widget Elm_datetime patch

2012-03-05 Thread The Rasterman
On Fri, 02 Mar 2012 12:44:39 + (GMT) Sumanth Krishna Mannam
sumant...@samsung.com said:

in svn. tnx muchly!

  This patch was made by Sumanth Krishna Mannam.
  Please refer following message ~ and attached patch.
  ===
   first i was strolling along, reading elm_datetime.c... and then i saw:
   
   static int _days_in_month[12] = { 31, 28, 31, 30, 31, 30,
   31, 31, 30, 31, 30, 31 };
   
   and then i was like:
   http://www.youtube.com/watch?v=6FWUjJF1ai0
  
   and i saw...
   if (__isleap(*timearr[ELM_DATETIME_YEAR]) 
   
   and i was like:
   http://www.youtube.com/watch?v=fM1O9jWeNoI
   
   (look at clock module src of e17 (in svn trunk/e/src/modules/clock) - in
   there it manages to draw months and handle month sizes by using syscalls
   that should get this from a time database and thus be correct. you can
   figure out the range by using syscalls to do it all look @ _time_eval()).
  I felt array based count is not that bad... and even elm_calendar does the
  same . anyway, I gave a try with your method, using mktime() and check for
  month wraaping and then deciding. Patch is updated accordingly . 
  
  http://www.corkscrew-balloon.com/travel/9812paris/leap.html
  
  leap years do not make feb have 29 days EVERY 4 year. there are oddities to
  this over history and probably will be in the future too. thats the pont of
  the system time database and apis to figure out so you dont have to :)
  
   limits for years.. why 1970-2037? that seems a bit silly to limit it -
   what if i'm entering the date of birth of my father? it's definitely
   before 1970 :)
  I made 1970 as the default limit based on Epoc time 1970.
  I have no issues to make default limit to further lowest :) I changed the
  limits to 1900  2037. 
  
  why not just allow ANY date ... no limits? what if someone uses the widget
  for a historcal event Examination app that asks students when events
  happened in history...
  
 
 The default limits for the year are used for displaying the possible values
 on modules plug-ins like ctx_popup/disk selector list and spinner module.
 More over, it's default limit and applications can override the limit with
 provided APIs ( value_min/max set ), based on their need. Example, any app
 accepting historical years, can set the min limit back to 1800 or even less.
 No restrictions.
 
   and then i was looking at api:
   
   Elm_Datetime_FieldType - Elm_Datetime_Field_Type
   
   otherwise i shall not quibble about api :)
  Yep...renamed to Elm_Datetime_Field_Type.
  
  cool - fix the above limit. it dont like it. for at least 1 reason given
  above. other than that take note of that page on leap years and just do
  some research yourself about time and how humans have, over history,
  defined it, written it down, played with it, adjusted it and tried to make
  your time system match the natural world around us. it'll encourage you to
  just piggy-back on someone elses time api so you dont have to re-do all the
  work.. and if there is a bug - its fixed in 1 place for everyone.
 --
 Virtualization  Cloud Management Using Capacity Planning
 Cloud computing makes use of virtualization - but cloud computing 
 also focuses on allowing computing to be delivered as a service.
 http://www.accelacomm.com/jaw/sfnl/114/51521223/
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
 


-- 
- Codito, ergo sum - I code, therefore I am --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
Try before you buy = See our experts in action!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-dev2
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [Patch] Elementary : New widget Elm_datetime patch

2012-03-05 Thread Sumanth Krishna Mannam
Hi Raster,

Thanks for submitting the patch for Datetime.
Btw, src/examples/datetime_example.c file is missing in svn. 
Can you please add that file, it is showing build break in examples. 
[my previous patch is containing that file. If you want, I shall send you 
another patch for this]

Thank You,

Regards,
Sumanth


--- Original Message ---
Sender : Carsten Haitzlerras...@rasterman.com
Date : Mar 05, 2012 16:37 (GMT+05:30)
Title : Re: [E-devel] [Patch] Elementary : New widget Elm_datetime patch

On Fri, 02 Mar 2012 12:44:39 + (GMT) Sumanth Krishna Mannam
said:

in svn. tnx muchly!

  This patch was made by Sumanth Krishna Mannam.
  Please refer following message ~ and attached patch.
  ===
   first i was strolling along, reading elm_datetime.c... and then i saw:
   
   static int _days_in_month[12] = { 31, 28, 31, 30, 31, 30,
   31, 31, 30, 31, 30, 31 };
   
   and then i was like:
   http://www.youtube.com/watch?v=6FWUjJF1ai0
  
   and i saw...
   if (__isleap(*timearr[ELM_DATETIME_YEAR]) 
   
   and i was like:
   http://www.youtube.com/watch?v=fM1O9jWeNoI
   
   (look at clock module src of e17 (in svn trunk/e/src/modules/clock) - in
   there it manages to draw months and handle month sizes by using syscalls
   that should get this from a time database and thus be correct. you can
   figure out the range by using syscalls to do it all look @ _time_eval()).
  I felt array based count is not that bad... and even elm_calendar does the
  same . anyway, I gave a try with your method, using mktime() and check for
  month wraaping and then deciding. Patch is updated accordingly . 
  
  http://www.corkscrew-balloon.com/travel/9812paris/leap.html
  
  leap years do not make feb have 29 days EVERY 4 year. there are oddities to
  this over history and probably will be in the future too. thats the pont of
  the system time database and apis to figure out so you dont have to :)
  
   limits for years.. why 1970-2037? that seems a bit silly to limit it -
   what if i'm entering the date of birth of my father? it's definitely
   before 1970 :)
  I made 1970 as the default limit based on Epoc time 1970.
  I have no issues to make default limit to further lowest :) I changed the
  limits to 1900  2037. 
  
  why not just allow ANY date ... no limits? what if someone uses the widget
  for a historcal event Examination app that asks students when events
  happened in history...
  
 
 The default limits for the year are used for displaying the possible values
 on modules plug-ins like ctx_popup/disk selector list and spinner module.
 More over, it's default limit and applications can override the limit with
 provided APIs ( value_min/max set ), based on their need. Example, any app
 accepting historical years, can set the min limit back to 1800 or even less.
 No restrictions.
 
   and then i was looking at api:
   
   Elm_Datetime_FieldType - Elm_Datetime_Field_Type
   
   otherwise i shall not quibble about api :)
  Yep...renamed to Elm_Datetime_Field_Type.
  
  cool - fix the above limit. it dont like it. for at least 1 reason given
  above. other than that take note of that page on leap years and just do
  some research yourself about time and how humans have, over history,
  defined it, written it down, played with it, adjusted it and tried to make
  your time system match the natural world around us. it'll encourage you to
  just piggy-back on someone elses time api so you dont have to re-do all the
  work.. and if there is a bug - its fixed in 1 place for everyone.
 --
 Virtualization  Cloud Management Using Capacity Planning
 Cloud computing makes use of virtualization - but cloud computing 
 also focuses on allowing computing to be delivered as a service.
 http://www.accelacomm.com/jaw/sfnl/114/51521223/
 ___
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
 
-- 
- Codito, ergo sum - I code, therefore I am --
The Rasterman (Carsten Haitzler)ras...@rasterman.com
--
Try before you buy = See our experts in action!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-dev2
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [Patch] Elementary : New widget Elm_datetime patch

2012-03-05 Thread The Rasterman
On Mon, 05 Mar 2012 13:04:46 + (GMT) Sumanth Krishna Mannam
sumant...@samsung.com said:

oops. my bad. i forgot to add that one. done. in svn.

 Hi Raster,
 
 Thanks for submitting the patch for Datetime.
 Btw, src/examples/datetime_example.c file is missing in svn. 
 Can you please add that file, it is showing build break in examples. 
 [my previous patch is containing that file. If you want, I shall send you
 another patch for this]
 
 Thank You,
 
 Regards,
 Sumanth
 
 
 --- Original Message ---
 Sender : Carsten Haitzlerras...@rasterman.com
 Date : Mar 05, 2012 16:37 (GMT+05:30)
 Title : Re: [E-devel] [Patch] Elementary : New widget Elm_datetime patch
 
 On Fri, 02 Mar 2012 12:44:39 + (GMT) Sumanth Krishna Mannam
 said:
 
 in svn. tnx muchly!
 
   This patch was made by Sumanth Krishna Mannam.
   Please refer following message ~ and attached patch.
   ===
first i was strolling along, reading elm_datetime.c... and then i saw:

static int _days_in_month[12] = { 31, 28, 31, 30, 31, 30,
31, 31, 30, 31, 30, 31 };

and then i was like:
http://www.youtube.com/watch?v=6FWUjJF1ai0
   
and i saw...
if (__isleap(*timearr[ELM_DATETIME_YEAR]) 

and i was like:
http://www.youtube.com/watch?v=fM1O9jWeNoI

(look at clock module src of e17 (in svn trunk/e/src/modules/clock) -
in there it manages to draw months and handle month sizes by using
syscalls that should get this from a time database and thus be
correct. you can figure out the range by using syscalls to do it all
look @ _time_eval()).
   I felt array based count is not that bad... and even elm_calendar does
   the same . anyway, I gave a try with your method, using mktime() and
   check for month wraaping and then deciding. Patch is updated
   accordingly . 
   
   http://www.corkscrew-balloon.com/travel/9812paris/leap.html
   
   leap years do not make feb have 29 days EVERY 4 year. there are oddities
   to this over history and probably will be in the future too. thats the
   pont of the system time database and apis to figure out so you dont
   have to :)
   
limits for years.. why 1970-2037? that seems a bit silly to limit it -
what if i'm entering the date of birth of my father? it's definitely
before 1970 :)
   I made 1970 as the default limit based on Epoc time 1970.
   I have no issues to make default limit to further lowest :) I changed the
   limits to 1900  2037. 
   
   why not just allow ANY date ... no limits? what if someone uses the widget
   for a historcal event Examination app that asks students when events
   happened in history...
   
  
  The default limits for the year are used for displaying the possible values
  on modules plug-ins like ctx_popup/disk selector list and spinner module.
  More over, it's default limit and applications can override the limit with
  provided APIs ( value_min/max set ), based on their need. Example, any app
  accepting historical years, can set the min limit back to 1800 or even less.
  No restrictions.
  
and then i was looking at api:

Elm_Datetime_FieldType - Elm_Datetime_Field_Type

otherwise i shall not quibble about api :)
   Yep...renamed to Elm_Datetime_Field_Type.
   
   cool - fix the above limit. it dont like it. for at least 1 reason given
   above. other than that take note of that page on leap years and just do
   some research yourself about time and how humans have, over history,
   defined it, written it down, played with it, adjusted it and tried to make
   your time system match the natural world around us. it'll encourage you to
   just piggy-back on someone elses time api so you dont have to re-do all
   the work.. and if there is a bug - its fixed in 1 place for everyone.
  --
  Virtualization  Cloud Management Using Capacity Planning
  Cloud computing makes use of virtualization - but cloud computing 
  also focuses on allowing computing to be delivered as a service.
  http://www.accelacomm.com/jaw/sfnl/114/51521223/
  ___
  enlightenment-devel mailing list
  enlightenment-devel@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
  
 -- 
 - Codito, ergo sum - I code, therefore I am --
 The Rasterman (Carsten Haitzler)ras...@rasterman.com
 --
 Try before you buy = See our experts in action!
 The most comprehensive online learning library for Microsoft developers
 is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
 Metro Style Apps, more. Free future releases when you subscribe now!
 http://p.sf.net/sfu/learndevnow-dev2
 ___
 enlightenment-devel mailing list
 enlightenment-devel

Re: [E-devel] [Patch] Elementary : New widget Elm_datetime patch

2012-03-02 Thread Sumanth Krishna Mannam

--
Virtualization  Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing 
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [Patch] Elementary : New widget Elm_datetime patch

2012-03-02 Thread Sumanth Krishna Mannam
 This patch was made by Sumanth Krishna Mannam.
 Please refer following message ~ and attached patch.
 ===
  first i was strolling along, reading elm_datetime.c... and then i saw:
  
  static int _days_in_month[12] = { 31, 28, 31, 30, 31, 30,
  31, 31, 30, 31, 30, 31 };
  
  and then i was like:
  http://www.youtube.com/watch?v=6FWUjJF1ai0
 
  and i saw...
  if (__isleap(*timearr[ELM_DATETIME_YEAR]) 
  
  and i was like:
  http://www.youtube.com/watch?v=fM1O9jWeNoI
  
  (look at clock module src of e17 (in svn trunk/e/src/modules/clock) - in
  there it manages to draw months and handle month sizes by using syscalls
  that should get this from a time database and thus be correct. you can
  figure out the range by using syscalls to do it all look @ _time_eval()).
 I felt array based count is not that bad... and even elm_calendar does the
 same . anyway, I gave a try with your method, using mktime() and check for
 month wraaping and then deciding. Patch is updated accordingly . 
 
 http://www.corkscrew-balloon.com/travel/9812paris/leap.html
 
 leap years do not make feb have 29 days EVERY 4 year. there are oddities to
 this over history and probably will be in the future too. thats the pont of 
 the
 system time database and apis to figure out so you dont have to :)
 
  limits for years.. why 1970-2037? that seems a bit silly to limit it -
  what if i'm entering the date of birth of my father? it's definitely before
  1970 :)
 I made 1970 as the default limit based on Epoc time 1970.
 I have no issues to make default limit to further lowest :) I changed the
 limits to 1900  2037. 
 
 why not just allow ANY date ... no limits? what if someone uses the widget for
 a historcal event Examination app that asks students when events happened in
 history...
 

The default limits for the year are used for displaying the possible values on 
modules plug-ins like ctx_popup/disk selector list and spinner module.
More over, it's default limit and applications can override the limit with 
provided APIs ( value_min/max set ), based on their need. 
Example, any app accepting historical years, can set the min limit back to 1800 
or even less. No restrictions.

  and then i was looking at api:
  
  Elm_Datetime_FieldType - Elm_Datetime_Field_Type
  
  otherwise i shall not quibble about api :)
 Yep...renamed to Elm_Datetime_Field_Type.
 
 cool - fix the above limit. it dont like it. for at least 1 reason given 
 above.
 other than that take note of that page on leap years and just do some research
 yourself about time and how humans have, over history, defined it, written it
 down, played with it, adjusted it and tried to make your time system match the
 natural world around us. it'll encourage you to just piggy-back on someone
 elses time api so you dont have to re-do all the work.. and if there is a bug 
 -
 its fixed in 1 place for everyone.
--
Virtualization  Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing 
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [Patch] Elementary : New widget Elm_datetime patch

2012-03-01 Thread The Rasterman
On Mon, 27 Feb 2012 22:00:34 +0900 woohyunwoo_hyun0...@naver.com said:

 This patch was made by Sumanth Krishna Mannam.
 Please refer following message ~ and attached patch.
 ===
  first i was strolling along, reading elm_datetime.c... and then i saw:
  
  static int _days_in_month[12] = { 31, 28, 31, 30, 31, 30,
  31, 31, 30, 31, 30, 31 };
  
  and then i was like:
  http://www.youtube.com/watch?v=6FWUjJF1ai0
 
  and i saw...
  if (__isleap(*timearr[ELM_DATETIME_YEAR]) 
  
  and i was like:
  http://www.youtube.com/watch?v=fM1O9jWeNoI
  
  (look at clock module src of e17 (in svn trunk/e/src/modules/clock) - in
  there it manages to draw months and handle month sizes by using syscalls
  that should get this from a time database and thus be correct. you can
  figure out the range by using syscalls to do it all look @ _time_eval()).
 I felt array based count is not that bad... and even elm_calendar does the
 same . anyway, I gave a try with your method, using mktime() and check for
 month wraaping and then deciding. Patch is updated accordingly . 

http://www.corkscrew-balloon.com/travel/9812paris/leap.html

leap years do not make feb have 29 days EVERY 4 year. there are oddities to
this over history and probably will be in the future too. thats the pont of the
system time database and apis to figure out so you dont have to :)

  limits for years.. why 1970-2037? that seems a bit silly to limit it -
  what if i'm entering the date of birth of my father? it's definitely before
  1970 :)
 I made 1970 as the default limit based on Epoc time 1970.
 I have no issues to make default limit to further lowest :) I changed the
 limits to 1900  2037. 

why not just allow ANY date ... no limits? what if someone uses the widget for
a historcal event Examination app that asks students when events happened in
history...

  and then i was looking at api:
  
  Elm_Datetime_FieldType - Elm_Datetime_Field_Type
  
  otherwise i shall not quibble about api :)
 Yep...renamed to Elm_Datetime_Field_Type.
 Sign-Off By: Sumanth M.V.K lt;sumant...@samsug.comgt;
 Thank You,
 Regards,
 Sumanth

cool - fix the above limit. it dont like it. for at least 1 reason given above.
other than that take note of that page on leap years and just do some research
yourself about time and how humans have, over history, defined it, written it
down, played with it, adjusted it and tried to make your time system match the
natural world around us. it'll encourage you to just piggy-back on someone
elses time api so you dont have to re-do all the work.. and if there is a bug -
its fixed in 1 place for everyone.

 -Original Message-
 From: Carsten Haitzlerlt;ras...@rasterman.comgt; 
 To: Enlightenment developer
 listlt;enlightenment-devel@lists.sourceforge.netgt; Cc:
 csm...@samsung.comlt;csm...@samsung.comgt;;
 enlightenment-devellt;enlightenment-devel@lists.sourceforge.net;gt;;
 SHAJI SIVANANDANlt;shaj...@samsung.comgt;; Sumanth Krishna
 Mannamlt;sumant...@samsung.comgt; Sent: 12-02-24(금) 20:34:56 Subject: Re:
 [E-devel] [Patch] Elementary : New widget Elm_datetime patch On Fri, 17 Feb
 2012 08:21:30 + (GMT) Sumanth Krishna Mannam
 lt;sumant...@samsung.comgt; said: first i was strolling along, reading
 elm_datetime.c... and then i saw: static int _days_in_month[12] = { 31, 28,
 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }; and then i was like:
 http://www.youtube.com/watch?v=6FWUjJF1ai0 and i saw...
  if (__isleap(*timearr[ELM_DATETIME_YEAR]) 
 and i was like:
  http://www.youtube.com/watch?v=fM1O9jWeNoI
 (look at clock module src of e17 (in svn trunk/e/src/modules/clock) - in there
 it manages to draw months and handle month sizes by using syscalls that should
 get this from a time database and thus be correct. you can figure out the
 range by using syscalls to do it all look @ _time_eval()).
 limits for years.. why 1970-2037? that seems a bit silly to limit it - what
 if i'm entering the date of birth of my father? it's definitely before 1970 :)
 and then i was looking at api:
 Elm_Datetime_FieldType - Elm_Datetime_Field_Type
 otherwise i shall not quibble about api :)
  Hi All,
  
  Attached to the mail is the patch for new elementary widget elm_datetime.
  Refer to the below EFL post history for more details. 
  
  The datetime widget provides an option to display Date  time based on
  current locale format and the user can edit them through dynamic Modules.
  Dynamic modules can be based on 1. Content Popup/diskselector based list 2.
  Elm_entry with ISE based input 3. Elm_Spinner based etc. Refer to the
  Screenshots: lt;1.ctxpopup_diskselector_UI lt;2.entry_ise_UI
  lt;3.spinner_selection_UI
  
  Can someone review and push this patch to EFL repository?
  
  Change description:
  New widget Elm_datetime is added.
  Datetime widget displays the Date Time fields and provides a customizable
  way to edit them. The widget is implemented in a modular fashion for
  date/time field inputs

Re: [E-devel] [Patch] Elementary : New widget Elm_datetime patch

2012-02-24 Thread The Rasterman
On Fri, 17 Feb 2012 08:21:30 + (GMT) Sumanth Krishna Mannam
sumant...@samsung.com said:

first i was strolling along, reading elm_datetime.c... and then i saw:

static int _days_in_month[12] = { 31, 28, 31, 30, 31, 30,
  31, 31, 30, 31, 30, 31 };

and then i was like:
  http://www.youtube.com/watch?v=6FWUjJF1ai0

and i saw...
 if (__isleap(*timearr[ELM_DATETIME_YEAR]) 

and i was like:
  http://www.youtube.com/watch?v=fM1O9jWeNoI


(look at clock module src of e17 (in svn trunk/e/src/modules/clock) - in there
it manages to draw months and handle month sizes by using syscalls that  should
get this from a time database and thus be correct. you can figure out the range
by using syscalls to do it all look @ _time_eval()).

limits for years.. why 1970-2037? that seems a bit silly to limit it - what if
i'm entering the date of birth of my father? it's definitely before 1970  :)

and then i was looking at api:

Elm_Datetime_FieldType - Elm_Datetime_Field_Type

otherwise i shall not quibble about api :)



 Hi All,
 
 Attached to the mail is the patch for new elementary widget elm_datetime.
 Refer to the below EFL post history for more details. 
 
 The datetime widget provides an option to display Date  time based on
 current locale format and the user can edit them through dynamic Modules.
 Dynamic modules can be based on 1. Content Popup/diskselector based list   2.
 Elm_entry with ISE based input   3. Elm_Spinner based  etc. Refer to the
 Screenshots:  1.ctxpopup_diskselector_UI   2.entry_ise_UI
 3.spinner_selection_UI
 
 Can someone review and push this patch to EFL repository?
 
 Change description:
 New widget Elm_datetime is added.
 Datetime widget displays the Date Time fields and provides a customizable
 way to edit them. The widget is implemented in a modular fashion for
 date/time field inputs. Ctxpopup based input is proposed as the default
 selection module. Localization support based on Libc is also supported.
 
 Sign-Off By:  Sumanth M.V.K  sumant...@samsug.com
 
 
 Thank you,
 
 Regards,
 Sumanth M.V.K
 
 --
 
 Re: [E-devel] Lib ICU Integration
 Tom Hacohen
 Fri, 23 Sep 2011 01:12:16 -0700
 
 On 23/09/11 11:05, Govindaraju SM wrote:
  == You have to wait a little while to make widget patch with proper 
  documentation, examples :)
 
 Hehe, sure, Rome was not built in a day. :)
 
 --
 Tom.
 
 --
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
 -Original Message- 
 From: Tom Hacohen
 Sent: Thursday, September 22, 2011 7:41 PM
 To: Govindaraju SM
 Cc: Enlightenment developer list
 Subject: Re: [E-devel] Lib ICU Integration
 
 On 22/09/11 13:01, Govindaraju SM wrote:
  == Thanks for your suggestion. I can very much do with libc with out
  ICU for date formatting, including getting locale strings.
  ICU integration is dropped.. :)
 
 I'm glad we agree. :)
  okay, Why this should widget? I have to display a Date and/or Time in
  the single line ( as usual date/time display )
  and able to edit it without launching a calendar or other time edit
  widget. This new widget does it,
  Displays date and allows to edit individual fields.
 
 I don't get an exact visual, I guess I'll have to wait until you finish.
 
  == If it is just date/time display, then your point is very much
  agreeable.
  But this new widget provides option to edit individual fields also
  without launching Calendar.
  ( mainly for optimal usage of screen space and change date without too
  many clicks )
 
 I don't quite understand, so I guess I'll have to wait until you finish
 to give a proper response. In the meanwhile, from what I understand, it
 sounds cool.
 --
 Tom.
 
 == You have to wait a little while to make widget patch with proper 
 documentation, examples :)
 
 Regards,
 Govind
 
 
 enlightenment-devel mailing list
 enlightenment-devel@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
 Re: [E-devel] Lib ICU Integration
 Tom Hacohen
 Thu, 22 Sep 2011 03:41:18 -0700
 
 On 22/09/11 13:01, Govindaraju SM wrote:
  == Thanks for your suggestion. I can very much do with libc with out
  ICU for date formatting, including getting locale strings.
  ICU integration is dropped.. :)
 
 I'm glad we agree. :)
  okay, Why this should widget? I have to display a Date and/or Time in
  the single line ( as usual date/time display )
  and able to edit it without launching a calendar or other time edit
  widget. This new widget does it,
  Displays date and allows to edit individual fields.
 
 I don't get an exact visual, I guess I'll have to wait until you finish.
 
  == If it is just date/time display, then your point is very much
  agreeable.
  But this new widget 

Re: [E-devel] [Patch] Elementary : New widget Elm_datetime patch

2012-02-20 Thread Sumanth Krishna Mannam

Can any one check this datetime patch and commit it to svn, please ..!!

Thanks  Regards,
Sumanth M.V.K

--- Original Message ---
Sender : Gustavo Sverzut Barbieribarbi...@profusion.mobi
Date : Feb 17, 2012 21:49 (GMT+05:30)
Title : Re: [E-devel] [Patch] Elementary : New widget Elm_datetime patch

On Fri, Feb 17, 2012 at 6:21 AM, Sumanth Krishna Mannam
wrote:

 Hi All,

 Attached to the mail is the patch for new elementary widget elm_datetime.
 Refer to the below EFL post history for more details.

 The datetime widget provides an option to display Date  time based on 
 current locale format and the user can edit them through dynamic Modules.
 Dynamic modules can be based on 1. Content Popup/diskselector based list   2. 
 Elm_entry with ISE based input   3. Elm_Spinner based  etc.
 Refer to the Screenshots:  1.ctxpopup_diskselector_UI   2.entry_ise_UI   
 3.spinner_selection_UI

 Can someone review and push this patch to EFL repository?

 Change description:
 New widget Elm_datetime is added.
 Datetime widget displays the Date Time fields and provides a customizable 
 way to edit them.
 The widget is implemented in a modular fashion for date/time field inputs.
 Ctxpopup based input is proposed as the default selection module.
 Localization support based on Libc is also supported.

No time to see the code yet, but this was a GOOD example on how to
submit patches to the list! :-)  You clearly describe what it does,
why we need it and even how it looks with screenshots

Thanks!
-- 
Gustavo Sverzut Barbieri
http://profusion.mobi embedded systems
--
MSN: barbi...@gmail.com
Skype: gsbarbieri
Mobile: +55 (19) 9225-2202

--
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel


Re: [E-devel] [Patch] Elementary : New widget Elm_datetime patch

2012-02-17 Thread Gustavo Sverzut Barbieri
On Fri, Feb 17, 2012 at 6:21 AM, Sumanth Krishna Mannam
sumant...@samsung.com wrote:

 Hi All,

 Attached to the mail is the patch for new elementary widget elm_datetime.
 Refer to the below EFL post history for more details.

 The datetime widget provides an option to display Date  time based on 
 current locale format and the user can edit them through dynamic Modules.
 Dynamic modules can be based on 1. Content Popup/diskselector based list   2. 
 Elm_entry with ISE based input   3. Elm_Spinner based  etc.
 Refer to the Screenshots:  1.ctxpopup_diskselector_UI   2.entry_ise_UI   
 3.spinner_selection_UI

 Can someone review and push this patch to EFL repository?

 Change description:
 New widget Elm_datetime is added.
 Datetime widget displays the Date Time fields and provides a customizable 
 way to edit them.
 The widget is implemented in a modular fashion for date/time field inputs.
 Ctxpopup based input is proposed as the default selection module.
 Localization support based on Libc is also supported.

No time to see the code yet, but this was a GOOD example on how to
submit patches to the list! :-)  You clearly describe what it does,
why we need it and even how it looks with screenshots

Thanks!
-- 
Gustavo Sverzut Barbieri
http://profusion.mobi embedded systems
--
MSN: barbi...@gmail.com
Skype: gsbarbieri
Mobile: +55 (19) 9225-2202

--
Virtualization  Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing 
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/
___
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel