From: Argiris K. <be...@us...> - 2005-12-03 09:47:28
|
Update of /cvsroot/magicajax/magicajax/Core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4788/Core Modified Files: Tag: STABLE MagicAjaxContext.cs PageFilter.cs StoredPageInfo.cs Util.cs Log Message: Added the LGPL license statement in the new classes. Index: PageFilter.cs =================================================================== RCS file: /cvsroot/magicajax/magicajax/Core/PageFilter.cs,v retrieving revision 1.2 retrieving revision 1.2.2.1 diff -C2 -d -r1.2 -r1.2.2.1 *** PageFilter.cs 23 Nov 2005 19:34:23 -0000 1.2 --- PageFilter.cs 3 Dec 2005 09:47:20 -0000 1.2.2.1 *************** *** 1,2 **** --- 1,23 ---- + #region LGPL License + /* + MagicAjax.NET Framework + Copyright (C) 2005 MagicAjax Project Team + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + #endregion + using System; using System.IO; Index: StoredPageInfo.cs =================================================================== RCS file: /cvsroot/magicajax/magicajax/Core/StoredPageInfo.cs,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** StoredPageInfo.cs 23 Nov 2005 15:12:48 -0000 1.3 --- StoredPageInfo.cs 3 Dec 2005 09:47:20 -0000 1.3.2.1 *************** *** 1,2 **** --- 1,23 ---- + #region LGPL License + /* + MagicAjax.NET Framework + Copyright (C) 2005 MagicAjax Project Team + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + #endregion + using System; using System.Web.UI; Index: Util.cs =================================================================== RCS file: /cvsroot/magicajax/magicajax/Core/Util.cs,v retrieving revision 1.11 retrieving revision 1.11.2.1 diff -C2 -d -r1.11 -r1.11.2.1 *** Util.cs 25 Nov 2005 20:45:47 -0000 1.11 --- Util.cs 3 Dec 2005 09:47:20 -0000 1.11.2.1 *************** *** 1,2 **** --- 1,23 ---- + #region LGPL License + /* + MagicAjax.NET Framework + Copyright (C) 2005 MagicAjax Project Team + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + #endregion + using System; using System.Collections; Index: MagicAjaxContext.cs =================================================================== RCS file: /cvsroot/magicajax/magicajax/Core/MagicAjaxContext.cs,v retrieving revision 1.7 retrieving revision 1.7.2.1 diff -C2 -d -r1.7 -r1.7.2.1 *** MagicAjaxContext.cs 30 Nov 2005 12:22:29 -0000 1.7 --- MagicAjaxContext.cs 3 Dec 2005 09:47:20 -0000 1.7.2.1 *************** *** 1,2 **** --- 1,23 ---- + #region LGPL License + /* + MagicAjax.NET Framework + Copyright (C) 2005 MagicAjax Project Team + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ + #endregion + using System; using System.Text; |