Imported Upstream version 4.6.0.125

Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2016-08-03 10:59:49 +00:00
parent a569aebcfd
commit e79aa3c0ed
17047 changed files with 3137615 additions and 392334 deletions

View File

@ -1,3 +0,0 @@
2008-10-14 Atsushi Enomoto <atsushi@ximian.com>
* AssemblyInfo.cs : initial checkin.

View File

@ -1,103 +0,0 @@
2009-12-18 Marek Habersack <mhabersack@novell.com>
* Makefile (EXTRA_DISTFILES): include test resources in
dist. Fixes bug #564987
2009-09-18 Marek Habersack <mhabersack@novell.com>
* Makefile (TEST_RESOURCE_FILES): added
Test/WebPages/ListView_DynamicControl_10.aspx,
Test/WebPages/ListView_DynamicControl_10.aspx.cs
2009-09-15 Marek Habersack <mhabersack@novell.com>
* Makefile (TEST_RESOURCE_FILES): added
Test/WebPages/ListView_DynamicControl_09.aspx and
Test/WebPages/ListView_DynamicControl_09.aspx.cs
2009-09-10 Marek Habersack <mhabersack@novell.com>
* Makefile (TEST_RESOURCE_FILES): added
Test/WebPages/ListView_DynamicControl_05.aspx
Test/WebPages/ListView_DynamicControl_05.aspx.cs
Test/WebPages/ListView_DynamicControl_06.aspx
Test/WebPages/ListView_DynamicControl_06.aspx.cs
Test/WebPages/ListView_DynamicControl_07.aspx
Test/WebPages/ListView_DynamicControl_07.aspx.cs
Test/WebPages/ListView_DynamicControl_08.aspx
Test/WebPages/ListView_DynamicControl_08.aspx.cs
2009-07-06 Marek Habersack <mhabersack@novell.com>
* Makefile (TEST_RESOURCE_FILES): added new test resources
2009-07-06 Raja R Harinath <harinath@hurrynot.org>
* Makefile (TEST_MCS_FLAGS): Reference SystemWebTestShim.
2009-07-03 Marek Habersack <mhabersack@novell.com>
* Makefile: added more resources to the test assembly
2009-06-18 Marek Habersack <mhabersack@novell.com>
* Test/DataSource/DynamicDataColumn.cs: added Sortable property.
2009-06-17 Marek Habersack <mhabersack@novell.com>
* System.Web.DynamicData_test.dll.sources: added
Common/FooNoScaffold.cs, Common/TestDataContext2.cs,
ModelProviders/DynamicDataStringLengthAttribute.cs
2009-06-12 Marek Habersack <mhabersack@novell.com>
* Test/DataSource/DynamicDataColumn.cs: added table association
members.
2009-06-10 Marek Habersack <mhabersack@novell.com>
* System.Web.DynamicData_test.dll.sources: added
Common/FooDisplayName.cs
Common/FooDisplayNameEmptyName.cs
Common/FooSettableDefaults.cs
2009-06-09 Marek Habersack <mhabersack@novell.com>
* System.Web.DynamicData_test.dll.sources: added
Common/FooNoDefaultsWithPrimaryKey.cs
Common/FooNoPrimaryColumns.cs
2009-04-29 Marek Habersack <mhabersack@novell.com>
* Test/System.Web.DynamicData.ModelProviders/TableProviderTest.cs:
added
* System.Web.DynamicData_test.dll.sources: added
System.Web.DynamicData/DynamicDataManagerTest.cs,
System.Web.DynamicData/DynamicDataExtensionsTest.cs,
System.Web.DynamicData.ModelProviders/TableProviderTest.cs
* System.Web.DynamicData.dll.sources: added
System.Web.DynamicData.ModelProviders/DLinqAssociationProvider.cs
System.Web.DynamicData.ModelProviders/DLinqColumnProvider.cs
System.Web.DynamicData.ModelProviders/DLinqDataModelProvider.cs
System.Web.DynamicData.ModelProviders/DLinqTableProvider.cs and
removed
System.Web.DynamicData.ModelProviders/DLinqDataModelProviders.cs
2009-04-23 Marek Habersack <mhabersack@novell.com>
* System.Web.DynamicData_test.dll.sources: added
System.Web.DynamicData/ContextConfigurationTest.cs
* Makefile: tests need to be linked with
System.ComponentModel.DataAnnotations.dll
2008-10-16 Atsushi Enomoto <atsushi@ximian.com>
* Makefile : added -r:System.Data.
* System.Web.DynamicData_test.dll.sources : new file.
2008-10-14 Atsushi Enomoto <atsushi@ximian.com>
* Makefile, System.Web.DynamicData.dll.sources : initial checkin.

View File

@ -160,11 +160,11 @@ TEST_RESOURCE_FILES = \
NUNIT_RESOURCE_FILES = $(TEST_RESOURCE_FILES)
TEST_MCS_FLAGS = $(LIB_MCS_FLAGS) -r:System.ComponentModel.DataAnnotations.dll -r:System.Configuration.dll \
$(NUNIT_RESOURCE_FILES:%=/resource:%) -r:SystemWebTestShim.dll -r:System.Xml.dll
TEST_LIB_REFS = System.ComponentModel.DataAnnotations System.Configuration SystemWebTestShim System.Xml
TEST_MCS_FLAGS = $(LIB_MCS_FLAGS) $(NUNIT_RESOURCE_FILES:%=/resource:%)
ifeq (4, $(FRAMEWORK_VERSION_MAJOR))
TEST_MCS_FLAGS += -r:System.Web.ApplicationServices.dll
TEST_LIB_REFS += System.Web.ApplicationServices
endif
EXTRA_DISTFILES = $(foreach resource,$(TEST_RESOURCE_FILES), $(shell echo $(subst \`,\\\`,$(resource)) | cut -d ',' -f 1))

View File

@ -1,24 +0,0 @@
2009-04-29 Marek Habersack <mhabersack@novell.com>
* TableProvider.cs: implemented
* DLinqDataModelProvider.cs: renamed from
DLinqDataModelProviders.cs and moved some classes to separate
files.
* DLinqTableProvider.cs: moved to here from
DLinqDataModelProvider.cs
* DLinqColumnProvider.cs: moved to here from
DLinqDataModelProvider.cs
* DLinqAssociationProvider.cs: added
2008-10-16 Atsushi Enomoto <atsushi@ximian.com>
* ColumnProvider.cs, TableProvider.cs : implemented constructors.
* DLinqDataModelProviders.cs : new, DLinq-based implementation.
2008-10-14 Atsushi Enomoto <atsushi@ximian.com>
*.cs : initial checkin. stubs.

View File

@ -1,222 +0,0 @@
2009-10-02 Marek Habersack <mhabersack@novell.com>
* DynamicValidator.cs: initial implementation
* DynamicDataManager.cs: implemented OnLoad.
Better implementation of RegisterControl
* DynamicDataExtensions.cs: implemented FindDataSourceControl.
2009-09-18 Marek Habersack <mhabersack@novell.com>
* MetaTable.cs: implemented Init - calls Init on all the columns
present in this instance.
* MetaModel.cs: constructor initializes FieldTemplateFactory after
it is instantiated.
RegisterContextCore first registers the context type, then creates
tables and finally calls Init on all the tables.
* MetaColumn.cs: added internal Init method - called by MetaModel
after context is registered and all tables are created and
registered.
* MetaChildrenColumn.cs: implemented ChildTable,
ColumnInOtherTable, GetChildrenListPath, GetChildrenPath and added
an internal Init method override. MonoTODO attributes stay until I
write tests for the class.
* FieldTemplateUserControl.cs: implemented ChildrenColumn,
ChildrenPath, Column, ForeignKeyColumn, ForeignKeyPath,
MetadataAttributes, Mode, Row, Table, SetHost
* FieldTemplateFactory.cs: GetFieldTemplateVirtualPath fixes
* DynamicControl.cs: implemented ApplyFormatInEditMode,
ConvertEmptyStringToNull, DataField, DataFormatString, HtmlEncode,
FormattingOptions, NullDisplayText, UIHint, OnInit, Render.
2009-09-15 Marek Habersack <mhabersack@novell.com>
* MetaColumn.cs: DataTypeAttribtue created automatically for
string columns, must be of type MultilineText for long strings.
* FieldTemplateFactory.cs: implemented BuildVirtualPath,
CreateFieldTemplate, GetFieldTemplateVirtualPath, PreprocessMode
and fixed implementation of TemplateFolderVirtualPath.
2009-09-10 Marek Habersack <mhabersack@novell.com>
* DynamicControl.cs: implemented several properties.
Added code for ResolveColumn method, called from OnInit
2009-07-14 Marek Habersack <mhabersack@novell.com>
* FieldTemplateFactory.cs: implemented TemplateFolderVirtualPath
2009-06-27 Marek Habersack <mhabersack@novell.com>
* DynamicDataExtensions.cs: implemented ConvertEditedValue
* MetaModel.cs: implemented DynamicDataFolderVirtualPath
* DynamicDataRouteHandler.cs: implemented SetRequestMetaTable,
GetCustomPageVirtualPath, GetScaffoldPageVirtualPath and
guessed at implementation of CreateHandler.
2009-06-26 Marek Habersack <mhabersack@novell.com>
* MetaModel.cs: RegisterContextCore preserves already registered
tables.
* DynamicDataRouteHandler.cs: GetRequestContext must not retrieve
route data from the routes collection (if the matching route
happened to be an instance of DynamicDataRoute it would initialize
its RouteHandler's Model property, which is not correct, according
to tests). Instead a new RouteData instance is created each time
we don't find any cached context.
* DynamicDataRoute.cs: the associated route handler is set its
Model property when we initialize for the first time.
GetRouteData checks whether route data returned by base class
relates to a table which exists in the current context. If no such
table exists, null is returned.
2009-06-25 Marek Habersack <mhabersack@novell.com>
* MetaTable.cs: Fixes to make tests succeed.
* MetaModel.cs: added the GetDataFieldAttributes method for
retrieving attributes associated with data type/field.
Fixes to make tests succeed.
* MetaColumn.cs: refactoring - use
MetaModel.GetDataFieldAttributes instead of the local version.
* DynamicDataRouteHandler.cs: implemented GetRequestContext,
GetRequestMetaTable.
* DynamicDataRoute.cs: when the Action and Table properties are
set before one of GetVirtualPath or GetRouteData methods are
called for the first time, a check is made whether the Defaults
collection exists and whether it contains entries for Action and
Table. Initialization code makes sure those entries are inserted
into the dictionary in those cases.
2009-06-23 Marek Habersack <mhabersack@novell.com>
* MetaTable.cs: constructor now takes ContextConfiguration instead
of a boolean and uses the config to determine value of the
ScaffoldAllTables property. Also, if context config is present,
makes sure to register the associated type description provider
(if any) with TypeDescriptor.
* MetaModel.cs: no longer uses local cache for description
providers. Uses TypeDescriptor.{Add,Get}Provider now.
* MetaColumn.cs: fixed Scaffold to match tests - IsGenerated and
IsCustomProperty take precedence over Table.ScaffoldAllTables.
GetDataFieldAttribute doesn't use AttributeCollection indexer, as
the latter would create a default instance of the requested
attribute, which is not what we want here.
2009-06-17 Marek Habersack <mhabersack@novell.com>
* MetaTable.cs: fixed Scaffold implementation.
Added internal ScaffoldAllTables property.
* MetaColumn.cs: fixed TypeCode, MaxLength, Scaffold, UIHint
implementations.
Implemented IsLongString, IsBinaryData, IsReadOnly,
NullDisplayText, RequiredErrorMessage
2009-06-16 Marek Habersack <mhabersack@novell.com>
* DynamicDataManager.cs, DynamicDataExtensions.cs: use new
DataBoundControl.DataSourceObject instead of
InternalGetDataSource.
2009-06-15 Marek Habersack <mhabersack@novell.com>
* MetaColumn.cs: implemented ApplyFormatInEditMode, Attributes,
ConvertEmptyStringToNull, DataFormatString, DataTypeAttribute,
DefaultValue, Description, DisplayName, IsRequired,
IsFloatingPoint, IsInteger, IsString, TypeCode
* MetaTable.cs: use MetaModel.GetTypeDescriptor to retrieve
associated entity type attributes.
* MetaModel.cs: implemented registration of type metadata
cache. Metadata is provided by a set of TypeDescriptionProvider
instances (if ContextConfig is present for given model provider)
or by default type description provider (note that this
functionality is not implemented in
System.ComponentModel.TypeDescriptor yet!).
2009-06-12 Marek Habersack <mhabersack@novell.com>
* MetaTable.cs: implemented correct detection of foreign key
columns.
Implemented IsReadOnly, SortColumn, SortDescending.
2009-06-10 Marek Habersack <mhabersack@novell.com>
* MetaTable.cs: fixed DisplayName implementation.
Implemented GetPrimaryKeyString, GetQuery.
2009-06-09 Marek Habersack <mhabersack@novell.com>
* MetaTable.cs: implemented more overloads of GetActionPath.
Implemented GetPrimaryKeyValues, GetActionPathFromRoutes,
Attributes, DisplayColumn, GetDisplayString.
2009-06-01 Marek Habersack <mhabersack@novell.com>
* MetaModel.cs: GetModel throws InvalidOperationException on
missing model.
Implemented GetActionPath and GetTable.
2009-04-29 Marek Habersack <mhabersack@novell.com>
* MetaTable.cs: implemented the DataContextType,
DataContextPropertyName properties and the ToString method.
* MetaColumn.cs: implemented the Scaffold, DisplayName,
SortExpression, UIHint properties and the ToString method.
* DynamicField.cs: implemented
* DynamicDataManager.cs: partially implemented RegisterControl.
Added internal AutoFieldGenerator class, used by RegisterControl
when dealing with GridView.
Implemented some properties.
* DynamicDataExtensions.cs: implemented GetTable and FindMetaTable
* DynamicControl.cs: implemented parts of the class.
2009-04-23 Marek Habersack <mhabersack@novell.com>
* ContextConfiguration.cs: implemented all the methods and added a
parameterless constructor.
2008-10-21 Atsushi Enomoto <atsushi@ximian.com>
* DynamicDataRouteHandler.cs, DynamicDataRoute.cs, MetaTable.cs:
ongoing implementation; resolve to page templates.
2008-10-17 Atsushi Enomoto <atsushi@ximian.com>
* DynamicDataRouteHandler.cs, DynamicDataRoute.cs, MetaTable.cs,
MetaModel.cs : ongoing implementation.
2008-10-16 Atsushi Enomoto <atsushi@ximian.com>
* DynamicDataManager.cs, DynamicDataRoute.cs,
FieldTemplateFactory.cs, MetaChildrenColumn.cs,
MetaColumn.cs, MetaForeignKeyColumn.cs, MetaModel.cs, MetaTable.cs:
ongoing implementation.
2008-10-14 Atsushi Enomoto <atsushi@ximian.com>
*.cs : initial checkin. stubs.

View File

@ -1,6 +0,0 @@
2009-07-03 Marek Habersack <mhabersack@novell.com>
* AssemblyInfo.cs: added. Necessary, because we need to set up
WebTest environment and it is done via an assembly-level custom
attribute.

View File

@ -1,95 +0,0 @@
2010-01-22 Marek Habersack <mhabersack@novell.com>
* AssertExtensions.cs: added AreEqual method for comparing byte
arrays.
2009-09-18 Marek Habersack <mhabersack@novell.com>
* TestsBasePage.cs: added an event ItemDataBinding, invoked
whenever an item is data bound.
2009-07-14 Marek Habersack <mhabersack@novell.com>
* AssertExtensions.cs: include full exception trace in the Fail
message
2009-07-08 Marek Habersack <mhabersack@novell.com>
* TestsSetup.cs: added the BuildPath helper method which converts
unix-style filesystem paths to the os-specific format.
2009-07-03 Marek Habersack <mhabersack@novell.com>
* TestsSetup.cs: custom WebTest setup for DynamicData
* TestsBasePage.cs: a base class for all the web pages used by the
tests.
* MiscExtensions.cs: added some helper extensions for fishing out
controls from control trees.
* ITestDataContext.cs: GetTableData gets full set of query
arguments.
2009-06-18 Marek Habersack <mhabersack@novell.com>
* TestDataColumn.cs: mark the column as sortable based on value of
the DynamicDataSortable attribute.
* Baz.cs: added a sortable column.
2009-06-15 Marek Habersack <mhabersack@novell.com>
* TestDataContext.cs: added new tables
* BazColumnAttributes.cs, BazDataTypeDefaultTypes.cs,
FooWithMetadataType.cs: added
2009-06-12 Marek Habersack <mhabersack@novell.com>
* TestDataContainer.cs: GetTables uses an object of the associated
data type to create table collection.
* TestDataColumn.cs: foreign key columns are determined using a
custom attribute instead of a name now. This makes it possible to
specify which table.column they are associated with.
* FooDisplayColumnAttribute.cs: changed sortDescending to true in
class attributes.
* AssociatedBar.cs, AssociatedFoo.cs, FooEmptySortColumn.cs,
FooMisnamedSortColumn.cs, FooNoScaffold.cs, FooReadOnly.cs,
ITestDataContext.cs, TestDataContext.cs: added
2009-06-10 Marek Habersack <mhabersack@novell.com>
* TestDataColumn.cs: added detection of foreign key columns.
* FooWithDefaults.cs: added foreign key columns
* FooDisplayName.cs, FooDisplayNameEmptyName.cs,
FooSettableDefaults.cs: added
2009-06-09 Marek Habersack <mhabersack@novell.com>
* Baz.cs, BazNoStrings.cs, BazNoStringsNoPrimary.cs,
FooDisplayColumnAttribute.cs, FooEmpty.cs,
FooEmptyDisplayColumnAttribute.cs,
FooInvalidDisplayColumnAttribute.cs, FooWithToString.cs,
TestDataColumn.cs, TestDataContainer.cs, TestDataTable.cs: added
* Utils.cs: added two BuildActionName methods to make building
action paths for testing more compact.
* FooNoPrimaryColumns.cs, FooNoDefaultsWithPrimaryKey.cs: added
2009-06-08 Marek Habersack <mhabersack@novell.com>
* Utils.cs: added.
Moved GetModel here from MetaModelTest.cs
Added RegisterContext methods.
* FooWithDefaultsContainer.cs,
FooWithDefaultsColumn.cs,FooWithDefaultsTable.cs,
FooWithDefaults.cs: added

View File

@ -1,10 +0,0 @@
2009-07-03 Marek Habersack <mhabersack@novell.com>
* IDynamicDataContainer.cs: became a generic interface.
* DynamicDataSource.cs; some reformatting.
DynamicDataSourceView is a generic class now.
* DynamicDataContainer.cs: IDynamicDataContainer is a generic
interface now.

View File

@ -1,25 +0,0 @@
2009-07-03 Marek Habersack <mhabersack@novell.com>
* DynamicDataContainerModelProvider.cs,
DynamicDataContainerTableProvider.cs: are generic classes now.
2009-06-18 Marek Habersack <mhabersack@novell.com>
* DynamicDataContainerColumnProvider.cs: added setting of
IsSortable
2009-06-17 Marek Habersack <mhabersack@novell.com>
* DynamicDataStringLengthAttribute.cs: added
* DynamicDataContainerColumnProvider.cs: implemented
EntityTypeProperty, IsCustomProperty, IsGenerated, MaxLength.
2009-06-12 Marek Habersack <mhabersack@novell.com>
* DynamicDataContainerColumnProvider.cs: implemented table
association support.
* DynamicDataAssociationProvider.cs,
DynamicDataAssociationAttribute.cs: added

View File

@ -1,141 +0,0 @@
2009-10-02 Marek Habersack <mhabersack@novell.com>
* DynamicValidatorTest.cs: added.
2009-09-18 Marek Habersack <mhabersack@novell.com>
* DynamicControlTest.cs: FieldTemplate_1 - fixed fake edit
postback for Mono.
2009-09-15 Marek Habersack <mhabersack@novell.com>
* FieldTemplateFactoryTest.cs: implemented tests for
BuildVirtualPath, GetFieldTemplateVirtualPath and PreprocessMode.
2009-09-10 Marek Habersack <mhabersack@novell.com>
* DynamicControlTest.cs: added seveal tests for DataField and UIHint
2009-07-14 Marek Habersack <mhabersack@novell.com>
* FieldTemplateFactoryTest.cs: added
* DynamicControlTest.cs: added TearDown method to clean up after
non-default field template tests.
Added tests for GetAttribute, HtmlEncode, FormattingOptions, Mode,
NullDisplayText, SetAttribute, ValidationGroup.
2009-07-08 Marek Habersack <mhabersack@novell.com>
* DynamicControlTest.cs: added tests for ApplyFormatInEditMode,
Column, ConvertEmptyStringToNull, CssClass, DataField,
DataFormatString, FieldTemplate, Table, UIHint
2009-07-03 Marek Habersack <mhabersack@novell.com>
* DynamicControlTest.cs: added
2009-06-27 Marek Habersack <mhabersack@novell.com>
* DynamicDataExtensionsTest.cs: added test for ConvertEditedValue
* MetaModelTest.cs: added test for DynamicDataFolderVirtualPath
* DynamicDataRouteHandlerTest.cs: implemented tests for
CreateHandler (one of them isn't working atm),
GetCustomVirtualPagePath, GetScaffoldVirtualPagePath,
GetRequestMetaTable, SetRequestMetaTable
2009-06-26 Marek Habersack <mhabersack@novell.com>
* DynamicDataRouteTest.cs: MyDataContext3 is safely registered in
the fixture setup method.
Enabled the GetTableFromRouteData3 and GetRouteData tests - the
work fine now.
Added test for the RouteHandler property.
* DynamicDataRouteHandlerTest.cs: added tests for the constructor
and the Model property.
2009-06-25 Marek Habersack <mhabersack@novell.com>
* MetaTableTest.cs: new GetVirtualPath tests.
* DynamicDataRouteTest.cs: added tests for route.Defaults
modifications on class init.
* DynamicDataRouteHandlerTest.cs: added
2009-06-18 Marek Habersack <mhabersack@novell.com>
* MetaColumnTest.cs: added test for SortExpression
2009-06-17 Marek Habersack <mhabersack@novell.com>
* MetaColumnTest.cs: added another data context.
Added tests for EntityTypeProperty, HtmlEncode, IsBinaryData,
IsCustomProperty, IsFloatingPoint, IsForeignKeyComponent,
IsGenerated, IsInteger, IsLongString, IsPrimaryKey, IsReadOnly,
IsString, MaxLength, Model, Name, NullDisplayText, Provider,
RequiredErrorMessage, Scaffold, Table, TypeCode, UIHint.
2009-06-15 Marek Habersack <mhabersack@novell.com>
* MetaColumnTest.cs: added
2009-06-12 Marek Habersack <mhabersack@novell.com>
* MetaTableTest.cs: tests use single data model provider now.
Implemented tests for IsReadOnly, ListActionPath, Model, Name,
Provider, Scaffold, SortColumn, SortDescending, ToString.
Fixed ForeignKeyColumnNames test.
2009-06-10 Marek Habersack <mhabersack@novell.com>
* MetaTableTest.cs: added more table contexts.
Added tests for: Attributes, Columns, DataContextPropertyName,
DataContextType, DisplayName, EntityType, ForeignKeyColumnNames
(doesn't work on .NET), GetPrimaryKeyString, GetQuery,
HasPrimaryKey,
2009-06-09 Marek Habersack <mhabersack@novell.com>
* MetaTableTest.cs: added two more tables for various kinds of
tests (in fixture setup).
More tests for GetActionPath.
Tests for GetPrimaryKeyValues, DisplayColumn, Attributes,
GetDisplayString, GetColumn, TryGetColumn
2009-06-08 Marek Habersack <mhabersack@novell.com>
* MetaTableTest.cs: added.
2009-06-01 Marek Habersack <mhabersack@novell.com>
* MetaModelTest.cs: disabled GetActionPath test - nothing to test
there.
2009-04-23 Marek Habersack <mhabersack@novell.com>
* ContextConfigurationTest.cs: added
2008-11-10 Raja R Harinath <harinath@hurrynot.org>
* MetaModelTest.cs: Remove 'using System.ComponentModel' to avoid
ambiguities with the CategoryAttribute.
2008-10-21 Atsushi Enomoto <atsushi@ximian.com>
* DynamicDataRouteTest.cs, MetaModelTest.cs : added NotWorking mark.
2008-10-17 Atsushi Enomoto <atsushi@ximian.com>
* DynamicDataRouteTest.cs, TestStubTypes.cs: new tests.
* MetaModelTest.cs : fixed test namespace and type aliases.
Now that this test does not always run first, remove run-order-
dependent assertions. Added some more assertions.
2008-10-16 Atsushi Enomoto <atsushi@ximian.com>
* MetaModelTest.cs : initial checkin.

View File

@ -68,8 +68,8 @@
<add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add tagPrefix="asp" namespace="System.Web.UI.WebControls" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add tagPrefix="asp" namespace="System.Web.DynamicData" assembly="System.Web.DynamicData, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
<add tagPrefix="test" namespace="MonoTests.DataSource" assembly="System.Web.DynamicData_test_net_4_x"/>
<add tagPrefix="test" namespace="MonoTests.Common" assembly="System.Web.DynamicData_test_net_4_x"/>
<add tagPrefix="test" namespace="MonoTests.DataSource" assembly="net_4_x_System.Web.DynamicData_test"/>
<add tagPrefix="test" namespace="MonoTests.Common" assembly="net_4_x_System.Web.DynamicData_test"/>
</controls>
</pages>
<httpHandlers>