Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
You can subscribe to this list here.
2006 |
Jan
|
Feb
|
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
(21) |
Sep
(25) |
Oct
(13) |
Nov
|
Dec
|
2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(6) |
Sep
(1) |
Oct
(1) |
Nov
(8) |
Dec
(3) |
2009 |
Jan
(5) |
Feb
(3) |
Mar
(10) |
Apr
(6) |
May
(3) |
Jun
(4) |
Jul
(1) |
Aug
(3) |
Sep
(5) |
Oct
(1) |
Nov
(2) |
Dec
(2) |
2010 |
Jan
|
Feb
(3) |
Mar
(2) |
Apr
(1) |
May
(1) |
Jun
(2) |
Jul
(2) |
Aug
|
Sep
(3) |
Oct
(2) |
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
(3) |
Jul
(1) |
Aug
|
Sep
|
Oct
(2) |
Nov
(1) |
Dec
|
2012 |
Jan
(1) |
Feb
|
Mar
(1) |
Apr
(1) |
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
(4) |
Nov
(4) |
Dec
(2) |
2013 |
Jan
(1) |
Feb
(1) |
Mar
(1) |
Apr
(1) |
May
(2) |
Jun
|
Jul
(1) |
Aug
(1) |
Sep
|
Oct
(1) |
Nov
(3) |
Dec
(2) |
2014 |
Jan
|
Feb
|
Mar
|
Apr
(3) |
May
(1) |
Jun
|
Jul
(2) |
Aug
(1) |
Sep
|
Oct
|
Nov
(2) |
Dec
(5) |
2015 |
Jan
(3) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(3) |
Oct
|
Nov
|
Dec
|
2016 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
1
|
2
|
3
|
4
|
5
|
6
(1) |
7
|
8
|
9
|
10
(1) |
11
|
12
|
13
|
14
|
15
|
16
|
17
|
18
|
19
(1) |
20
|
21
|
22
|
23
|
24
|
25
|
26
|
27
|
28
|
From: <mcurland@us...> - 2009-02-19 05:44:58
|
Revision: 1360 http://orm.svn.sourceforge.net/orm/?rev=1360&view=rev Author: mcurland Date: 2009-02-19 05:44:54 +0000 (Thu, 19 Feb 2009) Log Message: ----------- Change UserData keys placed on the toolbox to be strings instead of simple objects. This should allow us to compare these keys across VS sessions and fix the lingering undraggable ValueType issue. refs #385 Also removed the PublicKeyToken for the wix extension assembly from the setup project. The token changes with different Wix versions. Modified Paths: -------------- trunk/ORMModel/ObjectModel/FactType.cs trunk/ORMModel/ObjectModel/ORMModel.cs trunk/Setup/Setup.wixproj Modified: trunk/ORMModel/ObjectModel/FactType.cs =================================================================== --- trunk/ORMModel/ObjectModel/FactType.cs 2009-02-10 03:54:56 UTC (rev 1359) +++ trunk/ORMModel/ObjectModel/FactType.cs 2009-02-19 05:44:54 UTC (rev 1360) @@ -420,7 +420,7 @@ DomainClassInfo classInfo = Store.DomainDataDirectory.FindDomainClass(rootElement.DomainClassId); if (classInfo.IsDerivedFrom(UniquenessConstraint.DomainClassId)) { - return elementGroupPrototype.UserData == ORMModel.InternalUniquenessConstraintUserDataKey; + return ORMModel.InternalUniquenessConstraintUserDataKey.Equals(elementGroupPrototype.UserData as string); } } return false; Modified: trunk/ORMModel/ObjectModel/ORMModel.cs =================================================================== --- trunk/ORMModel/ObjectModel/ORMModel.cs 2009-02-10 03:54:56 UTC (rev 1359) +++ trunk/ORMModel/ObjectModel/ORMModel.cs 2009-02-19 05:44:54 UTC (rev 1360) @@ -132,7 +132,7 @@ private void MergeRelateObjectType(ModelElement sourceElement, ElementGroup elementGroup) { ObjectType objectType = sourceElement as ObjectType; - if (elementGroup.UserData == ORMModel.ValueTypeUserDataKey) + if (ORMModel.ValueTypeUserDataKey.Equals(elementGroup.UserData as string)) { objectType.DataType = ((ORMModel)this).DefaultDataType; } @@ -150,7 +150,7 @@ } private bool CanMergeSetConstraint(ProtoElementBase rootElement, ElementGroupPrototype elementGroupPrototype) { - return elementGroupPrototype.UserData != ORMModel.InternalUniquenessConstraintUserDataKey; + return !ORMModel.InternalUniquenessConstraintUserDataKey.Equals(elementGroupPrototype.UserData as string); } #endregion // MergeContext functions } @@ -161,12 +161,12 @@ /// Used as the value for <see cref="ElementGroup.UserData"/> to indicate that the /// <see cref="ObjectType"/> should be a ValueType. /// </summary> - public static readonly object ValueTypeUserDataKey = new object(); + public const string ValueTypeUserDataKey = "CreateAsValueType"; /// <summary> /// Used as the value for <see cref="ElementGroup.UserData"/> to indicate that the /// <see cref="UniquenessConstraint"/> is internal. /// </summary> - public static readonly object InternalUniquenessConstraintUserDataKey = new object(); + public const string InternalUniquenessConstraintUserDataKey = "CreateAsInternalUniqueness"; #endregion // ElementGroup.UserData keys #region Entity- and ValueType specific collections /// <summary> Modified: trunk/Setup/Setup.wixproj =================================================================== --- trunk/Setup/Setup.wixproj 2009-02-10 03:54:56 UTC (rev 1359) +++ trunk/Setup/Setup.wixproj 2009-02-19 05:44:54 UTC (rev 1360) @@ -66,7 +66,7 @@ <Compile Include="UI\WelcomeDlg.wxs" /> </ItemGroup> <ItemGroup> - <WixExtension Include="WixVSExtension, Culture=neutral, PublicKeyToken=ce35f76fcda82bad"> + <WixExtension Include="WixVSExtension, Culture=neutral"> <Class>Microsoft.Tools.WindowsInstallerXml.Extensions.VSExtension</Class> <Private>False</Private> </WixExtension> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |