ChangeLog 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. 2009-10-22 Marek Habersack <[email protected]>
  2. * ProfileBase.cs: put named entries into SettingProperty's
  3. Attributes collection based on custom attributes decorating the
  4. associated profile property.
  5. * CustomProviderDataAttribute.cs: implemented IsDefaultAttribute
  6. 2009-09-08 Marek Habersack <[email protected]>
  7. * ProfileParser.cs: GetProfileGroupType creates type name with
  8. "ProfileGroup" prefix instead of "ProfileCommon". Fixes bug
  9. #535655
  10. * ProfileBase.cs: typo fix - renamed CreateSettingsPropery to
  11. CreateSettingsProperty
  12. 2008-12-25 Gonzalo Paniagua Javier <[email protected]>
  13. * SqlProfileProvider.cs: use IndexOf (char).
  14. 2008-06-30 Marek Habersack <[email protected]>
  15. * SqliteProfileProvider.cs: remove unused method
  16. 2008-05-30 Marek Habersack <[email protected]>
  17. * ProfileModule.cs: do not use synthetized event accessors (to
  18. avoid locks).
  19. 2007-12-30 Vladimir Krasnov <[email protected]>
  20. * SqlProfileProvider.cs: added db schema checking
  21. 2007-12-13 Marek Habersack <[email protected]>
  22. * SqlProfileProvider.cs, ProfileParser.cs: speed optimization -
  23. use String.Concat instead of String.Format in some cases.
  24. 2007-12-12 Vladimir Krasnov <[email protected]>
  25. * ProfileParser.jvm.cs: Profile types loading optimized
  26. 2007-12-11 Vladimir Krasnov <[email protected]>
  27. * ProfileManager.cs: fixed Providers property to be thread safe
  28. 2007-12-08 Marek Habersack <[email protected]>
  29. * SqliteProfileProvider.cs: added - a Profile Provider for
  30. Sqlite, based on PostgreSQL Profile Provider code from Daniel
  31. Nauck <[email protected]>
  32. 2007-10-15 Marek Habersack <[email protected]>
  33. * ProfileBase.cs: use HttpApplication.LoadType instead of
  34. Type.GetType.
  35. 2007-08-14 Marek Habersack <[email protected]>
  36. * SqlProfileProvider.cs: remove unused variable.
  37. 2007-07-16 Vladimir Krasnov <[email protected]>
  38. * ProfileBase.cs: fixed typo bug in InitProperties
  39. 2007-05-21 Vladimir Krasnov <[email protected]>
  40. * ProfileModule.cs: OnLeave checks if Profile was accessed during a
  41. request
  42. 2007-04-17 Igor Zelmanovich <[email protected]>
  43. * ProfileManager.cs:
  44. if default provider was not found ConfigurationErrorsException is thrown.
  45. 2007-03-14 Vladimir Krasnov <[email protected]>
  46. * ProfileParser.jvm.cs: performance optimization
  47. 2007-01-18 Vladimir Krasnov <[email protected]>
  48. * ProfileModule.cs: fixed OnLeave, AutomaticSaveEnabled should be
  49. checked before save
  50. 2007-01-02 Vladimir Krasnov <[email protected]>
  51. * ProfileBase.cs: fixed SetPropertyValue, allow anonymous attribute
  52. check added on property value set
  53. 2007-01-02 Vladimir Krasnov <[email protected]>
  54. * ProfileBase.cs: added inherited properties properties initialization
  55. 2006-12-26 Vladimir Krasnov <[email protected]>
  56. * ProfileGroupBase.cs: fixed property name while getting from parent
  57. 2006-12-26 Vladimir Krasnov <[email protected]>
  58. * ProfileParser.jvm.cs: implemented PageMapper call
  59. * ProfileBase.cs: fixed SettingsProperty type resolving,
  60. added SettingsProperty validation
  61. 2006-12-20 Marek Habersack <[email protected]>
  62. * ProfileParser.cs: use App_Code compiler to get the assembly
  63. where the ProfileCommon class is found.
  64. 2006-11-05 Vladimir Krasnov <[email protected]>
  65. * ProfileBase.cs, ProfileGroupBase.cs, ProfileManager.cs,
  66. ProfileModule.cs, ProfileProviderCollection.cs, SqlProfileProvider.cs:
  67. implemented profile feature
  68. * added: ProfileParser.cs, ProfileParser.jvm.cs stubs for profile
  69. helper classes compilation
  70. 2006-02-28 Chris Toshok <[email protected]>
  71. * ProfileBase.cs: corcompare work.
  72. * SqlProfileProvider.cs: add stubbed out file.
  73. 2005-11-30 Chris Toshok <[email protected]>
  74. * ProfileBase.cs (Properties): mark as override, not static.
  75. * ProfileProviderCollection.cs (ProfileProvider): mark as "new" to
  76. fix warning.
  77. 2005-11-18 Chris Toshok <[email protected]>
  78. * ProfileModule.cs: hook up saving of the request's profile.
  79. * ProfileBase.cs (Save): call base.Save instead of throwing NIE.
  80. 2005-11-03 Chris Toshok <[email protected]>
  81. * ProfileEventArgs.cs, ProfileProviderCollection.cs,
  82. ProfileAutoSaveEventArgs.cs, ProfileMigrateEventArgs.cs,
  83. ProfileBase.cs, ProfileManager.cs,
  84. SettingsAllowAnonymousAttribute.cs, ProfileProviderAttribute.cs,
  85. ProfileEventHandler.cs, CustomProviderDataAttribute.cs,
  86. DefaultProfile.cs, ProfileModule.cs,
  87. ProfileAutoSaveEventHandler.cs, ProfileGroupBase.cs,
  88. ProfileMigrateEventHandler.cs: 90% unimplemented skeletons.
  89. * ProfileInfoCollection.cs: make serializable.
  90. * ProfileAuthenticationOption.cs: fix ordering of enum elements.
  91. 2005-11-03 Chris Toshok <[email protected]>
  92. * ProfileInfoCollection.cs: new implementation.
  93. * ProfileProvider.cs: new implementation.
  94. 2005-08-19 Chris Toshok <[email protected]>
  95. * ProfileInfo.cs: I was bored. implement this.
  96. 2004-08-02 Duncan Mak <[email protected]>
  97. * ProfileAuthenticationOption.cs: Added enumeration.