RE: [VOTE] XMLBeans v2.6.0-RC3 to become official release

2012-08-09 Thread Dennis Sherman
+0

--
Dennis R. Sherman
Ex Libris (USA)Inc.
847-227-4840
dennis.sher...@exlibrisgroup.com
http://www.exlibrisgroup.com



 -Original Message-
 From: Cezar Andrei [mailto:cezar.and...@oracle.com]
 Sent: Wednesday, August 08, 2012 7:07 PM
 To: d...@xmlbeans.apache.org
 Cc: user@xmlbeans.apache.org
 Subject: Re: [VOTE] XMLBeans v2.6.0-RC3 to become official release
 
 The files are now up at http://xmlbeans.apache.org/dist/ please do send
 your votes.
 
 Thanks,
 Cezar
 
 On Thu, 2012-08-02 at 11:04 -0700, Cezar Andrei wrote:
  The files are not here: http://xmlbeans.apache.org/dist/ yet, they
  should get sync-ed soon. I'll send an update when they're up.
 
  In the meantime, you can find the same files here:
  http://apache.org/~cezar/xmlbeans-2.6.0/
 
  Cezar
 
 
  On Thu, 2012-08-02 at 10:46 -0700, Cezar Andrei wrote:
   Please cast your vote for the XMLBeans v2.6.0-RC3, as published at
   http://xmlbeans.apache.org/dist/ to become XMLBeans v2.6.0 official
   release.
  
  
  
   The vote will be open until end of day Monday, August 6. Anyone is
   allowed to show support or lack of it, but only XMLBeans committer votes
   are binding.
  
  
  
   [ ]  +1  -  I am in favor of this release, and can help
  
   [ ]  +0  -  I am in favor of this release, but cannot help
  
   [ ]  -0  -  I am not in favor of this release
  
   [ ]  -1  -  I am against this proposal (must include a reason)
  
  
  
  
  
  
  
   My vote is:
  
   [X]  +1  -  I am in favor of this release, and can help
  
  
  
   Cezar
  
  
  
   -
   To unsubscribe, e-mail: dev-unsubscr...@xmlbeans.apache.org
   For additional commands, e-mail: dev-h...@xmlbeans.apache.org
  
 
 
 
  -
  To unsubscribe, e-mail: dev-unsubscr...@xmlbeans.apache.org
  For additional commands, e-mail: dev-h...@xmlbeans.apache.org
 
 
 
 
 -
 To unsubscribe, e-mail: user-unsubscr...@xmlbeans.apache.org
 For additional commands, e-mail: user-h...@xmlbeans.apache.org



RE: [POOL] jdk 1.4 support in next of XMLBeans

2009-05-12 Thread Dennis Sherman
I'm using XMLBeans in a project running on:

  [X] jdk 1.5

 
No current firm plans to upgrade the jdk.

--
Dennis R. Sherman
Development Team Leader
Ex Libris Group
847-227-2976
dennis.sher...@exlibrisgroup.com
http://www.exlibrisgroup.com http://www.exlibrisgroup.com/ 




 





From: Cezar Andrei [mailto:cezar.and...@oracle.com] 
Sent: Monday, May 11, 2009 3:59 PM
To: d...@xmlbeans.apache.org; user@xmlbeans.apache.org
Subject: [POOL] jdk 1.4 support in next of XMLBeans



Thinking on the features for a new XMLBeans release, a question
came on how important is for our community support for jdk 1.4. If
you're using XMLBeans, please let us know what version of jdk are you
using in your project and also if you have a target date for a jdk
update.

 

I'm using XMLBeans in a project running on:

  [ ] jdk 1.3

  [ ] jdk 1.4

  [ ] jdk 1.5

  [ ] jdk 1.6

 

 

My project will update to jdk 1.5 or newer in:

  [ ] less than 6 month

  [ ] less than 1 year

  [ ] more than 1 year

 

 

Any other suggestions or features are welcome.

 

 

Thank you,

Cezar Andrei



Date format manipulations

2008-04-04 Thread Dennis Sherman
Hi, all.

I think I'm working too hard to get the end result I'm looking for.  Is
there a better way?

Background:  I'm working with a schema available at
http://www.openarchives.org/OAI/2.0/OAI-PMH.xsd.  The fragment in
question is this:

  simpleType name=UTCdatetimeType
annotation
  documentationDatestamps are to either day (type date)
  or to seconds granularity (type
oai:UTCdateTimeZType)/documentation
/annotation
union memberTypes=date oai:UTCdateTimeZType/
  /simpleType

  simpleType name=UTCdateTimeZType
restriction base=dateTime
  pattern value=.*Z/
/restriction
  /simpleType

My task is to produce an XML document compliant with the schema.  I need
the datetime defined as UTCdatetimeType to be in UTC format, e.g.
...
header
identifierhost:repository:1/identifier
datestamp2008-04-04T20:16:33.068Z/datestamp
/header
...

I'm doing it, but it feels like too much work to do it like this:

Calendar datestamp = Calendar.getInstance();
datestamp.setTimeZone(TimeZone.getTimeZone(UTC));
UTCdateTimeZType dtmz =
UTCdateTimeZType.Factory.newInstance();
dtmz.setCalendarValue(datestamp);
UTCdatetimeType utcdtm = (UTCdatetimeType)
dtmz.changeType(UTCdatetimeType.type);
hdr.xsetDatestamp(utcdtm);

Is there a simpler, more straightforward way that I'm just not finding?

Thanks.

--
Dennis R. Sherman
Ex Libris Group
847-227-2976
[EMAIL PROTECTED]
http://www.exlibrisgroup.com 



-- 
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]