You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2008 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Richard W. <wa...@gm...> - 2008-02-20 14:37:41
|
Hi, I'm using NetReflector with CCNEt and think I have found a bug with NetReflector. The EmailUser class detailed below is serialised by NetReflector into the following xml: <user name="someUser"> <address>som...@em...</address> <group>theEmailGroup</group> <name>someUser</name> </user> Note that the EmailUser.Name property is serialised to a xml property ( name="someUser") AND xml element <name>someUser</name>. This is obviously wrong. Is the bug in NetReflector or the CCNET attribute definition? Regards, Wads. namespace ThoughtWorks.CruiseControl.Core.Publishers { [ReflectorType("user")] public class EmailUser { public EmailUser() { } public EmailUser(string name, string group, string address) { Name = name; Address = address; Group = group; } [ReflectorProperty("name")] public string Name; [ReflectorProperty("address")] public string Address; [ReflectorProperty("group", Required=false)] public string Group; } } |
From: Steve B. <St...@ma...> - 2004-10-08 19:39:02
|
So I just read the GNU Lesser General Public License... =20 <eyes glossed over> =20 Can I use this in a commercial application without breaking any laws? (really, I tried to figure it out, I read it, I asked all the Sr. Consultants here. I cant create any agreement in either direction) =20 Thanks for any help with the question, more so, thanks for the brilliant work, =20 Steve =20 ________________________________ From: Steve Baker=20 Sent: Thursday, October 07, 2004 2:15 PM To: 'net...@li...' Subject: documentation =20 I would love to start using NetReflector today :-) =20 I am reading the ccnet sourcecode to learn how... =20 Is there any documentation anywhere, or is ccnet source the way to go? =20 =20 Thanks, =20 Steve |
From: Steve B. <St...@ma...> - 2004-10-07 19:14:57
|
I would love to start using NetReflector today :-) =20 I am reading the ccnet sourcecode to learn how... =20 Is there any documentation anywhere, or is ccnet source the way to go? =20 =20 Thanks, =20 Steve |