From: Argiris K. <be...@us...> - 2006-01-03 01:49:32
|
Update of /cvsroot/magicajax/magicajax/Core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9346/Core Modified Files: AssemblyInfo.cs MagicAjax NET 2.0.csproj MagicAjax.csproj MagicAjaxContext.cs Log Message: -Client event handling controls -Various minor changes Index: AssemblyInfo.cs =================================================================== RCS file: /cvsroot/magicajax/magicajax/Core/AssemblyInfo.cs,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** AssemblyInfo.cs 22 Dec 2005 12:44:43 -0000 1.7 --- AssemblyInfo.cs 3 Jan 2006 01:49:09 -0000 1.8 *************** *** 36,40 **** // by using the '*' as shown below: ! [assembly: AssemblyVersion("0.2.2.*")] // --- 36,40 ---- // by using the '*' as shown below: ! [assembly: AssemblyVersion("0.3.0.0")] // Index: MagicAjax NET 2.0.csproj =================================================================== RCS file: /cvsroot/magicajax/magicajax/Core/MagicAjax NET 2.0.csproj,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** MagicAjax NET 2.0.csproj 25 Dec 2005 18:00:24 -0000 1.12 --- MagicAjax NET 2.0.csproj 3 Jan 2006 01:49:09 -0000 1.13 *************** *** 106,109 **** --- 106,110 ---- </Compile> <Compile Include="Interfaces\IAjaxCallEventHandler.cs" /> + <Compile Include="Interfaces\INonHtmlHolder.cs" /> <Compile Include="Interfaces\IPreWriteScriptEventHandler.cs"> <SubType>Code</SubType> *************** *** 123,126 **** --- 124,133 ---- <SubType>Code</SubType> </Compile> + <Compile Include="UI\Controls\ClientEventControls\BaseClientEventWrapper.cs" /> + <Compile Include="UI\Controls\ClientEventControls\ClientEventControl.cs" /> + <Compile Include="UI\Controls\ClientEventControls\ClientEventTrigger.cs" /> + <Compile Include="UI\Controls\ClientEventControls\KeyClientEventWrapper.cs" /> + <Compile Include="UI\Design\BaseClientEventWrapperDesigner.cs" /> + <Compile Include="UI\Design\ClientEventTriggerDesigner.cs" /> <Compile Include="Util.cs"> <SubType>Code</SubType> Index: MagicAjax.csproj =================================================================== RCS file: /cvsroot/magicajax/magicajax/Core/MagicAjax.csproj,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** MagicAjax.csproj 25 Dec 2005 18:00:26 -0000 1.9 --- MagicAjax.csproj 3 Jan 2006 01:49:09 -0000 1.10 *************** *** 159,162 **** --- 159,167 ---- /> <File + RelPath = "Interfaces\INonHtmlHolder.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "Interfaces\IPreWriteScriptEventHandler.cs" SubType = "Code" *************** *** 213,220 **** --- 218,255 ---- /> <File + RelPath = "UI\Controls\ClientEventControls\BaseClientEventWrapper.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File + RelPath = "UI\Controls\ClientEventControls\ClientEventControl.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File + RelPath = "UI\Controls\ClientEventControls\ClientEventTrigger.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File + RelPath = "UI\Controls\ClientEventControls\KeyClientEventWrapper.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "UI\Design\AjaxPanelDesigner.cs" SubType = "Code" BuildAction = "Compile" /> + <File + RelPath = "UI\Design\BaseClientEventWrapperDesigner.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File + RelPath = "UI\Design\ClientEventTriggerDesigner.cs" + SubType = "Code" + BuildAction = "Compile" + /> </Include> </Files> Index: MagicAjaxContext.cs =================================================================== RCS file: /cvsroot/magicajax/magicajax/Core/MagicAjaxContext.cs,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** MagicAjaxContext.cs 27 Dec 2005 22:03:41 -0000 1.12 --- MagicAjaxContext.cs 3 Jan 2006 01:49:09 -0000 1.13 *************** *** 245,249 **** _isBrowserSupported = caps.MajorVersion >= 8; break; ! //TODO: add support for Opera, Netscape and Safari } } --- 245,249 ---- _isBrowserSupported = caps.MajorVersion >= 8; break; ! //TODO: add support for Safari } } |