| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- 2007-12-08 Marek Habersack <[email protected]>
- * SqliteProfileProvider.cs: added - a Profile Provider for
- Sqlite, based on PostgreSQL Profile Provider code from Daniel
- Nauck <[email protected]>
- 2007-10-15 Marek Habersack <[email protected]>
- * ProfileBase.cs: use HttpApplication.LoadType instead of
- Type.GetType.
- 2007-08-14 Marek Habersack <[email protected]>
- * SqlProfileProvider.cs: remove unused variable.
- 2007-07-16 Vladimir Krasnov <[email protected]>
- * ProfileBase.cs: fixed typo bug in InitProperties
- 2007-05-21 Vladimir Krasnov <[email protected]>
- * ProfileModule.cs: OnLeave checks if Profile was accessed during a
- request
- 2007-04-17 Igor Zelmanovich <[email protected]>
- * ProfileManager.cs:
- if default provider was not found ConfigurationErrorsException is thrown.
- 2007-03-14 Vladimir Krasnov <[email protected]>
- * ProfileParser.jvm.cs: performance optimization
- 2007-01-18 Vladimir Krasnov <[email protected]>
- * ProfileModule.cs: fixed OnLeave, AutomaticSaveEnabled should be
- checked before save
- 2007-01-02 Vladimir Krasnov <[email protected]>
- * ProfileBase.cs: fixed SetPropertyValue, allow anonymous attribute
- check added on property value set
- 2007-01-02 Vladimir Krasnov <[email protected]>
- * ProfileBase.cs: added inherited properties properties initialization
- 2006-12-26 Vladimir Krasnov <[email protected]>
- * ProfileGroupBase.cs: fixed property name while getting from parent
- 2006-12-26 Vladimir Krasnov <[email protected]>
- * ProfileParser.jvm.cs: implemented PageMapper call
- * ProfileBase.cs: fixed SettingsProperty type resolving,
- added SettingsProperty validation
- 2006-12-20 Marek Habersack <[email protected]>
- * ProfileParser.cs: use App_Code compiler to get the assembly
- where the ProfileCommon class is found.
- 2006-11-05 Vladimir Krasnov <[email protected]>
- * ProfileBase.cs, ProfileGroupBase.cs, ProfileManager.cs,
- ProfileModule.cs, ProfileProviderCollection.cs, SqlProfileProvider.cs:
- implemented profile feature
- * added: ProfileParser.cs, ProfileParser.jvm.cs stubs for profile
- helper classes compilation
- 2006-02-28 Chris Toshok <[email protected]>
- * ProfileBase.cs: corcompare work.
- * SqlProfileProvider.cs: add stubbed out file.
- 2005-11-30 Chris Toshok <[email protected]>
- * ProfileBase.cs (Properties): mark as override, not static.
- * ProfileProviderCollection.cs (ProfileProvider): mark as "new" to
- fix warning.
- 2005-11-18 Chris Toshok <[email protected]>
- * ProfileModule.cs: hook up saving of the request's profile.
- * ProfileBase.cs (Save): call base.Save instead of throwing NIE.
- 2005-11-03 Chris Toshok <[email protected]>
- * ProfileEventArgs.cs, ProfileProviderCollection.cs,
- ProfileAutoSaveEventArgs.cs, ProfileMigrateEventArgs.cs,
- ProfileBase.cs, ProfileManager.cs,
- SettingsAllowAnonymousAttribute.cs, ProfileProviderAttribute.cs,
- ProfileEventHandler.cs, CustomProviderDataAttribute.cs,
- DefaultProfile.cs, ProfileModule.cs,
- ProfileAutoSaveEventHandler.cs, ProfileGroupBase.cs,
- ProfileMigrateEventHandler.cs: 90% unimplemented skeletons.
-
- * ProfileInfoCollection.cs: make serializable.
- * ProfileAuthenticationOption.cs: fix ordering of enum elements.
- 2005-11-03 Chris Toshok <[email protected]>
- * ProfileInfoCollection.cs: new implementation.
- * ProfileProvider.cs: new implementation.
- 2005-08-19 Chris Toshok <[email protected]>
- * ProfileInfo.cs: I was bored. implement this.
- 2004-08-02 Duncan Mak <[email protected]>
- * ProfileAuthenticationOption.cs: Added enumeration.
|