Update of /cvsroot/mod-c/ehtml/src In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv23237/src Modified Files: Common.cpp Component.cpp Container.cpp DefaultSessionAddress.cpp DefaultSessionAddress.h DefaultSessionDriver.cpp DefaultSessionDriver.h DefaultSessionIDDriver.cpp DefaultSessionProtocol.h DefaultSessionServer.cpp Dictionary.cpp DiskSessionDriver.cpp EHTMLApplication.cpp Form.cpp Input.cpp Label.cpp MemBuf.cpp Page.cpp PageWriter.cpp Profiling.cpp Request.cpp Response.cpp Session.cpp SimpleTagAttribute.cpp StyleAttribute.cpp TagAttribute.cpp TagRenderer.cpp testCommon.cpp Log Message: Relicensed all source files to MIT's license. Index: Label.cpp =================================================================== RCS file: /cvsroot/mod-c/ehtml/src/Label.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** Label.cpp 13 Sep 2006 13:57:06 -0000 1.8 --- Label.cpp 12 Oct 2006 21:10:36 -0000 1.9 *************** *** 1,21 **** ! /*************************************************************************** ! * Copyright (C) 2005 by Matej Urbas * ! * matej@matejPC * ! * * ! * This program is free software; you can redistribute it and/or modify * ! * it under the terms of the GNU General Public License as published by * ! * the Free Software Foundation; either version 2 of the License, or * ! * (at your option) any later version. * ! * * ! * This program 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 General Public License for more details. * ! * * ! * You should have received a copy of the GNU General Public License * ! * along with this program; if not, write to the * ! * Free Software Foundation, Inc., * ! * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ! ***************************************************************************/ #include <Label.h> --- 1,31 ---- ! // ! // Authors: ! // Matej Urbas (mat...@gm...) ! // Gonzalo Arana (gon...@gm...) ! // ! // (C) 2006 Matej Urbas, Gonzalo Arana ! // ! // ! // This source code is licenced under The MIT License: ! // ! // Permission is hereby granted, free of charge, to any person obtaining ! // a copy of this software and associated documentation files (the ! // "Software"), to deal in the Software without restriction, including ! // without limitation the rights to use, copy, modify, merge, publish, ! // distribute, sublicense, and/or sell copies of the Software, and to ! // permit persons to whom the Software is furnished to do so, subject to ! // the following conditions: ! // ! // The above copyright notice and this permission notice shall be ! // included in all copies or substantial portions of the Software. ! // ! // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, ! // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF ! // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND ! // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE ! // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION ! // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION ! // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ! // #include <Label.h> Index: Page.cpp =================================================================== RCS file: /cvsroot/mod-c/ehtml/src/Page.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** Page.cpp 13 Sep 2006 13:57:07 -0000 1.11 --- Page.cpp 12 Oct 2006 21:10:36 -0000 1.12 *************** *** 1,21 **** ! /*************************************************************************** ! * Copyright (C) 2005 by Matej Urbas * ! * matej@matejPC * ! * * ! * This program is free software; you can redistribute it and/or modify * ! * it under the terms of the GNU General Public License as published by * ! * the Free Software Foundation; either version 2 of the License, or * ! * (at your option) any later version. * ! * * ! * This program 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 General Public License for more details. * ! * * ! * You should have received a copy of the GNU General Public License * ! * along with this program; if not, write to the * ! * Free Software Foundation, Inc., * ! * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ! ***************************************************************************/ // This class uses some HTTPD's structures (in the Render method) --- 1,31 ---- ! // ! // Authors: ! // Matej Urbas (mat...@gm...) ! // Gonzalo Arana (gon...@gm...) ! // ! // (C) 2006 Matej Urbas, Gonzalo Arana ! // ! // ! // This source code is licenced under The MIT License: ! // ! // Permission is hereby granted, free of charge, to any person obtaining ! // a copy of this software and associated documentation files (the ! // "Software"), to deal in the Software without restriction, including ! // without limitation the rights to use, copy, modify, merge, publish, ! // distribute, sublicense, and/or sell copies of the Software, and to ! // permit persons to whom the Software is furnished to do so, subject to ! // the following conditions: ! // ! // The above copyright notice and this permission notice shall be ! // included in all copies or substantial portions of the Software. ! // ! // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, ! // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF ! // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND ! // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE ! // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION ! // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION ! // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ! // // This class uses some HTTPD's structures (in the Render method) Index: Dictionary.cpp =================================================================== RCS file: /cvsroot/mod-c/ehtml/src/Dictionary.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Dictionary.cpp 13 Sep 2006 13:57:06 -0000 1.4 --- Dictionary.cpp 12 Oct 2006 21:10:36 -0000 1.5 *************** *** 1,2 **** --- 1,30 ---- + // + // Authors: + // Gonzalo Arana (gon...@gm...) + // + // (C) 2006 Gonzalo Arana + // + // + // This source code is licenced under The MIT License: + // + // Permission is hereby granted, free of charge, to any person obtaining + // a copy of this software and associated documentation files (the + // "Software"), to deal in the Software without restriction, including + // without limitation the rights to use, copy, modify, merge, publish, + // distribute, sublicense, and/or sell copies of the Software, and to + // permit persons to whom the Software is furnished to do so, subject to + // the following conditions: + // + // The above copyright notice and this permission notice shall be + // included in all copies or substantial portions of the Software. + // + // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + // #include "Dictionary.h" Index: DefaultSessionDriver.h =================================================================== RCS file: /cvsroot/mod-c/ehtml/src/DefaultSessionDriver.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** DefaultSessionDriver.h 8 Sep 2006 14:30:59 -0000 1.1 --- DefaultSessionDriver.h 12 Oct 2006 21:10:36 -0000 1.2 *************** *** 1,21 **** ! /*************************************************************************** ! * Copyright (C) 2005 by Matej Urbas * ! * mat...@gm... * ! * * ! * This program is free software; you can redistribute it and/or modify * ! * it under the terms of the GNU General Public License as published by * ! * the Free Software Foundation; either version 2 of the License, or * ! * (at your option) any later version. * ! * * ! * This program 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 General Public License for more details. * ! * * ! * You should have received a copy of the GNU General Public License * ! * along with this program; if not, write to the * ! * Free Software Foundation, Inc., * ! * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ! ***************************************************************************/ #ifndef _DEF_SESSION_DRIVER_H_ --- 1,31 ---- ! // ! // Authors: ! // Matej Urbas (mat...@gm...) ! // Gonzalo Arana (gon...@gm...) ! // ! // (C) 2006 Matej Urbas, Gonzalo Arana ! // ! // ! // This source code is licenced under The MIT License: ! // ! // Permission is hereby granted, free of charge, to any person obtaining ! // a copy of this software and associated documentation files (the ! // "Software"), to deal in the Software without restriction, including ! // without limitation the rights to use, copy, modify, merge, publish, ! // distribute, sublicense, and/or sell copies of the Software, and to ! // permit persons to whom the Software is furnished to do so, subject to ! // the following conditions: ! // ! // The above copyright notice and this permission notice shall be ! // included in all copies or substantial portions of the Software. ! // ! // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, ! // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF ! // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND ! // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE ! // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION ! // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION ! // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ! // #ifndef _DEF_SESSION_DRIVER_H_ Index: DefaultSessionAddress.cpp =================================================================== RCS file: /cvsroot/mod-c/ehtml/src/DefaultSessionAddress.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** DefaultSessionAddress.cpp 13 Sep 2006 18:36:28 -0000 1.3 --- DefaultSessionAddress.cpp 12 Oct 2006 21:10:36 -0000 1.4 *************** *** 1,2 **** --- 1,30 ---- + // + // Authors: + // Gonzalo Arana (gon...@gm...) + // + // (C) 2006 Gonzalo Arana + // + // + // This source code is licenced under The MIT License: + // + // Permission is hereby granted, free of charge, to any person obtaining + // a copy of this software and associated documentation files (the + // "Software"), to deal in the Software without restriction, including + // without limitation the rights to use, copy, modify, merge, publish, + // distribute, sublicense, and/or sell copies of the Software, and to + // permit persons to whom the Software is furnished to do so, subject to + // the following conditions: + // + // The above copyright notice and this permission notice shall be + // included in all copies or substantial portions of the Software. + // + // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + // #include "DefaultSessionAddress.h" Index: Response.cpp =================================================================== RCS file: /cvsroot/mod-c/ehtml/src/Response.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Response.cpp 5 Oct 2006 14:53:59 -0000 1.5 --- Response.cpp 12 Oct 2006 21:10:36 -0000 1.6 *************** *** 1,21 **** ! /*************************************************************************** ! * Copyright (C) 2005 by Matej Urbas * ! * matej@matejPC * ! * * ! * This program is free software; you can redistribute it and/or modify * ! * it under the terms of the GNU General Public License as published by * ! * the Free Software Foundation; either version 2 of the License, or * ! * (at your option) any later version. * ! * * ! * This program 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 General Public License for more details. * ! * * ! * You should have received a copy of the GNU General Public License * ! * along with this program; if not, write to the * ! * Free Software Foundation, Inc., * ! * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ! ***************************************************************************/ #include <Response.h> --- 1,31 ---- ! // ! // Authors: ! // Matej Urbas (mat...@gm...) ! // Gonzalo Arana (gon...@gm...) ! // ! // (C) 2006 Matej Urbas, Gonzalo Arana ! // ! // ! // This source code is licenced under The MIT License: ! // ! // Permission is hereby granted, free of charge, to any person obtaining ! // a copy of this software and associated documentation files (the ! // "Software"), to deal in the Software without restriction, including ! // without limitation the rights to use, copy, modify, merge, publish, ! // distribute, sublicense, and/or sell copies of the Software, and to ! // permit persons to whom the Software is furnished to do so, subject to ! // the following conditions: ! // ! // The above copyright notice and this permission notice shall be ! // included in all copies or substantial portions of the Software. ! // ! // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, ! // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF ! // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND ! // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE ! // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION ! // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION ! // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ! // #include <Response.h> Index: EHTMLApplication.cpp =================================================================== RCS file: /cvsroot/mod-c/ehtml/src/EHTMLApplication.cpp,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** EHTMLApplication.cpp 5 Oct 2006 14:52:52 -0000 1.16 --- EHTMLApplication.cpp 12 Oct 2006 21:10:36 -0000 1.17 *************** *** 1,21 **** ! /*************************************************************************** ! * Copyright (C) 2005 by Matej Urbas * ! * matej@matejPC * ! * * ! * This program is free software; you can redistribute it and/or modify * ! * it under the terms of the GNU General Public License as published by * ! * the Free Software Foundation; either version 2 of the License, or * ! * (at your option) any later version. * ! * * ! * This program 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 General Public License for more details. * ! * * ! * You should have received a copy of the GNU General Public License * ! * along with this program; if not, write to the * ! * Free Software Foundation, Inc., * ! * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ! ***************************************************************************/ #include <EHTMLApplication.h> --- 1,31 ---- ! // ! // Authors: ! // Matej Urbas (mat...@gm...) ! // Gonzalo Arana (gon...@gm...) ! // ! // (C) 2006 Matej Urbas, Gonzalo Arana ! // ! // ! // This source code is licenced under The MIT License: ! // ! // Permission is hereby granted, free of charge, to any person obtaining ! // a copy of this software and associated documentation files (the ! // "Software"), to deal in the Software without restriction, including ! // without limitation the rights to use, copy, modify, merge, publish, ! // distribute, sublicense, and/or sell copies of the Software, and to ! // permit persons to whom the Software is furnished to do so, subject to ! // the following conditions: ! // ! // The above copyright notice and this permission notice shall be ! // included in all copies or substantial portions of the Software. ! // ! // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, ! // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF ! // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND ! // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE ! // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION ! // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION ! // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ! // #include <EHTMLApplication.h> Index: Profiling.cpp =================================================================== RCS file: /cvsroot/mod-c/ehtml/src/Profiling.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Profiling.cpp 5 Oct 2006 16:01:16 -0000 1.5 --- Profiling.cpp 12 Oct 2006 21:10:36 -0000 1.6 *************** *** 1,2 **** --- 1,30 ---- + // + // Authors: + // Gonzalo Arana (gon...@gm...) + // + // (C) 2006 Gonzalo Arana + // + // + // This source code is licenced under The MIT License: + // + // Permission is hereby granted, free of charge, to any person obtaining + // a copy of this software and associated documentation files (the + // "Software"), to deal in the Software without restriction, including + // without limitation the rights to use, copy, modify, merge, publish, + // distribute, sublicense, and/or sell copies of the Software, and to + // permit persons to whom the Software is furnished to do so, subject to + // the following conditions: + // + // The above copyright notice and this permission notice shall be + // included in all copies or substantial portions of the Software. + // + // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + // #include "Profiling.h" Index: DiskSessionDriver.cpp =================================================================== RCS file: /cvsroot/mod-c/ehtml/src/DiskSessionDriver.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** DiskSessionDriver.cpp 17 Sep 2006 23:10:07 -0000 1.6 --- DiskSessionDriver.cpp 12 Oct 2006 21:10:36 -0000 1.7 *************** *** 1,2 **** --- 1,30 ---- + // + // Authors: + // Gonzalo Arana (gon...@gm...) + // + // (C) 2006 Gonzalo Arana + // + // + // This source code is licenced under The MIT License: + // + // Permission is hereby granted, free of charge, to any person obtaining + // a copy of this software and associated documentation files (the + // "Software"), to deal in the Software without restriction, including + // without limitation the rights to use, copy, modify, merge, publish, + // distribute, sublicense, and/or sell copies of the Software, and to + // permit persons to whom the Software is furnished to do so, subject to + // the following conditions: + // + // The above copyright notice and this permission notice shall be + // included in all copies or substantial portions of the Software. + // + // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + // #include <EHTMLApplication.h> Index: testCommon.cpp =================================================================== RCS file: /cvsroot/mod-c/ehtml/src/testCommon.cpp,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** testCommon.cpp 21 Sep 2006 19:21:17 -0000 1.4 --- testCommon.cpp 12 Oct 2006 21:10:36 -0000 1.5 *************** *** 1,2 **** --- 1,30 ---- + // + // Authors: + // Gonzalo Arana (gon...@gm...) + // + // (C) 2006 Gonzalo Arana + // + // + // This source code is licenced under The MIT License: + // + // Permission is hereby granted, free of charge, to any person obtaining + // a copy of this software and associated documentation files (the + // "Software"), to deal in the Software without restriction, including + // without limitation the rights to use, copy, modify, merge, publish, + // distribute, sublicense, and/or sell copies of the Software, and to + // permit persons to whom the Software is furnished to do so, subject to + // the following conditions: + // + // The above copyright notice and this permission notice shall be + // included in all copies or substantial portions of the Software. + // + // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + // #include "Common.h" Index: TagAttribute.cpp =================================================================== RCS file: /cvsroot/mod-c/ehtml/src/TagAttribute.cpp,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TagAttribute.cpp 15 Feb 2006 19:54:36 -0000 1.1 --- TagAttribute.cpp 12 Oct 2006 21:10:36 -0000 1.2 *************** *** 1,21 **** ! /*************************************************************************** ! * Copyright (C) 2005 by Matej Urbas * ! * mat...@gm... * ! * * ! * This program is free software; you can redistribute it and/or modify * ! * it under the terms of the GNU General Public License as published by * ! * the Free Software Foundation; either version 2 of the License, or * ! * (at your option) any later version. * ! * * ! * This program 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 General Public License for more details. * ! * * ! * You should have received a copy of the GNU General Public License * ! * along with this program; if not, write to the * ! * Free Software Foundation, Inc., * ! * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ! ***************************************************************************/ #include <TagAttribute.h> --- 1,31 ---- ! // ! // Authors: ! // Matej Urbas (mat...@gm...) ! // Gonzalo Arana (gon...@gm...) ! // ! // (C) 2006 Matej Urbas, Gonzalo Arana ! // ! // ! // This source code is licenced under The MIT License: ! // ! // Permission is hereby granted, free of charge, to any person obtaining ! // a copy of this software and associated documentation files (the ! // "Software"), to deal in the Software without restriction, including ! // without limitation the rights to use, copy, modify, merge, publish, ! // distribute, sublicense, and/or sell copies of the Software, and to ! // permit persons to whom the Software is furnished to do so, subject to ! // the following conditions: ! // ! // The above copyright notice and this permission notice shall be ! // included in all copies or substantial portions of the Software. ! // ! // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, ! // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF ! // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND ! // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE ! // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION ! // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION ! // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ! // #include <TagAttribute.h> Index: Container.cpp =================================================================== RCS file: /cvsroot/mod-c/ehtml/src/Container.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** Container.cpp 13 Sep 2006 13:57:06 -0000 1.11 --- Container.cpp 12 Oct 2006 21:10:36 -0000 1.12 *************** *** 1,21 **** ! /*************************************************************************** ! * Copyright (C) 2005 by Matej Urbas * ! * matej@matejPC * ! * * ! * This program is free software; you can redistribute it and/or modify * ! * it under the terms of the GNU General Public License as published by * ! * the Free Software Foundation; either version 2 of the License, or * ! * (at your option) any later version. * ! * * ! * This program 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 General Public License for more details. * ! * * ! * You should have received a copy of the GNU General Public License * ! * along with this program; if not, write to the * ! * Free Software Foundation, Inc., * ! * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ! ***************************************************************************/ #include <Container.h> --- 1,31 ---- ! // ! // Authors: ! // Matej Urbas (mat...@gm...) ! // Gonzalo Arana (gon...@gm...) ! // ! // (C) 2006 Matej Urbas, Gonzalo Arana ! // ! // ! // This source code is licenced under The MIT License: ! // ! // Permission is hereby granted, free of charge, to any person obtaining ! // a copy of this software and associated documentation files (the ! // "Software"), to deal in the Software without restriction, including ! // without limitation the rights to use, copy, modify, merge, publish, ! // distribute, sublicense, and/or sell copies of the Software, and to ! // permit persons to whom the Software is furnished to do so, subject to ! // the following conditions: ! // ! // The above copyright notice and this permission notice shall be ! // included in all copies or substantial portions of the Software. ! // ! // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, ! // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF ! // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND ! // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE ! // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION ! // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION ! // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ! // #include <Container.h> Index: Session.cpp =================================================================== RCS file: /cvsroot/mod-c/ehtml/src/Session.cpp,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** Session.cpp 17 Sep 2006 18:14:51 -0000 1.18 --- Session.cpp 12 Oct 2006 21:10:36 -0000 1.19 *************** *** 1,21 **** ! /*************************************************************************** ! * Copyright (C) 2005 by Matej Urbas * ! * mat...@gm... * ! * * ! * This program is free software; you can redistribute it and/or modify * ! * it under the terms of the GNU General Public License as published by * ! * the Free Software Foundation; either version 2 of the License, or * ! * (at your option) any later version. * ! * * ! * This program 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 General Public License for more details. * ! * * ! * You should have received a copy of the GNU General Public License * ! * along with this program; if not, write to the * ! * Free Software Foundation, Inc., * ! * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ! ***************************************************************************/ #include "Common.h" --- 1,31 ---- ! // ! // Authors: ! // Matej Urbas (mat...@gm...) ! // Gonzalo Arana (gon...@gm...) ! // ! // (C) 2006 Matej Urbas, Gonzalo Arana ! // ! // ! // This source code is licenced under The MIT License: ! // ! // Permission is hereby granted, free of charge, to any person obtaining ! // a copy of this software and associated documentation files (the ! // "Software"), to deal in the Software without restriction, including ! // without limitation the rights to use, copy, modify, merge, publish, ! // distribute, sublicense, and/or sell copies of the Software, and to ! // permit persons to whom the Software is furnished to do so, subject to ! // the following conditions: ! // ! // The above copyright notice and this permission notice shall be ! // included in all copies or substantial portions of the Software. ! // ! // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, ! // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF ! // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND ! // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE ! // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION ! // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION ! // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ! // #include "Common.h" Index: TagRenderer.cpp =================================================================== RCS file: /cvsroot/mod-c/ehtml/src/TagRenderer.cpp,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** TagRenderer.cpp 13 Sep 2006 13:57:07 -0000 1.7 --- TagRenderer.cpp 12 Oct 2006 21:10:36 -0000 1.8 *************** *** 1,21 **** ! /*************************************************************************** ! * Copyright (C) 2005 by Matej Urbas * ! * matej@matejPC * ! * * ! * This program is free software; you can redistribute it and/or modify * ! * it under the terms of the GNU General Public License as published by * ! * the Free Software Foundation; either version 2 of the License, or * ! * (at your option) any later version. * ! * * ! * This program 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 General Public License for more details. * ! * * ! * You should have received a copy of the GNU General Public License * ! * along with this program; if not, write to the * ! * Free Software Foundation, Inc., * ! * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ! ***************************************************************************/ #include <SimpleTagAttribute.h> --- 1,31 ---- ! // ! // Authors: ! // Matej Urbas (mat...@gm...) ! // Gonzalo Arana (gon...@gm...) ! // ! // (C) 2006 Matej Urbas, Gonzalo Arana ! // ! // ! // This source code is licenced under The MIT License: ! // ! // Permission is hereby granted, free of charge, to any person obtaining ! // a copy of this software and associated documentation files (the ! // "Software"), to deal in the Software without restriction, including ! // without limitation the rights to use, copy, modify, merge, publish, ! // distribute, sublicense, and/or sell copies of the Software, and to ! // permit persons to whom the Software is furnished to do so, subject to ! // the following conditions: ! // ! // The above copyright notice and this permission notice shall be ! // included in all copies or substantial portions of the Software. ! // ! // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, ! // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF ! // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND ! // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE ! // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION ! // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION ! // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ! // #include <SimpleTagAttribute.h> Index: DefaultSessionDriver.cpp =================================================================== RCS file: /cvsroot/mod-c/ehtml/src/DefaultSessionDriver.cpp,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** DefaultSessionDriver.cpp 13 Sep 2006 18:58:15 -0000 1.3 --- DefaultSessionDriver.cpp 12 Oct 2006 21:10:36 -0000 1.4 *************** *** 1,21 **** ! /*************************************************************************** ! * Copyright (C) 2005 by Matej Urbas * ! * mat...@gm... * ! * * ! * This program is free software; you can redistribute it and/or modify * ! * it under the terms of the GNU General Public License as published by * ! * the Free Software Foundation; either version 2 of the License, or * ! * (at your option) any later version. * ! * * ! * This program 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 General Public License for more details. * ! * * ! * You should have received a copy of the GNU General Public License * ! * along with this program; if not, write to the * ! * Free Software Foundation, Inc., * ! * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ! ***************************************************************************/ //#include "DefaultSessionDriver.h" --- 1,31 ---- ! // ! // Authors: ! // Matej Urbas (mat...@gm...) ! // Gonzalo Arana (gon...@gm...) ! // ! // (C) 2006 Matej Urbas, Gonzalo Arana ! // ! // ! // This source code is licenced under The MIT License: ! // ! // Permission is hereby granted, free of charge, to any person obtaining ! // a copy of this software and associated documentation files (the ! // "Software"), to deal in the Software without restriction, including ! // without limitation the rights to use, copy, modify, merge, publish, ! // distribute, sublicense, and/or sell copies of the Software, and to ! // permit persons to whom the Software is furnished to do so, subject to ! // the following conditions: ! // ! // The above copyright notice and this permission notice shall be ! // included in all copies or substantial portions of the Software. ! // ! // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, ! // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF ! // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND ! // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE ! // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION ! // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION ! // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ! // //#include "DefaultSessionDriver.h" Index: Form.cpp =================================================================== RCS file: /cvsroot/mod-c/ehtml/src/Form.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Form.cpp 6 Mar 2006 08:00:36 -0000 1.6 --- Form.cpp 12 Oct 2006 21:10:36 -0000 1.7 *************** *** 1,21 **** ! /*************************************************************************** ! * Copyright (C) 2005 by Matej Urbas * ! * matej@matejPC * ! * * ! * This program is free software; you can redistribute it and/or modify * ! * it under the terms of the GNU General Public License as published by * ! * the Free Software Foundation; either version 2 of the License, or * ! * (at your option) any later version. * ! * * ! * This program 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 General Public License for more details. * ! * * ! * You should have received a copy of the GNU General Public License * ! * along with this program; if not, write to the * ! * Free Software Foundation, Inc., * ! * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ! ***************************************************************************/ #include <Form.h> --- 1,31 ---- ! // ! // Authors: ! // Matej Urbas (mat...@gm...) ! // Gonzalo Arana (gon...@gm...) ! // ! // (C) 2006 Matej Urbas, Gonzalo Arana ! // ! // ! // This source code is licenced under The MIT License: ! // ! // Permission is hereby granted, free of charge, to any person obtaining ! // a copy of this software and associated documentation files (the ! // "Software"), to deal in the Software without restriction, including ! // without limitation the rights to use, copy, modify, merge, publish, ! // distribute, sublicense, and/or sell copies of the Software, and to ! // permit persons to whom the Software is furnished to do so, subject to ! // the following conditions: ! // ! // The above copyright notice and this permission notice shall be ! // included in all copies or substantial portions of the Software. ! // ! // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, ! // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF ! // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND ! // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE ! // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION ! // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION ! // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ! // #include <Form.h> Index: Common.cpp =================================================================== RCS file: /cvsroot/mod-c/ehtml/src/Common.cpp,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** Common.cpp 17 Sep 2006 23:44:45 -0000 1.14 --- Common.cpp 12 Oct 2006 21:10:36 -0000 1.15 *************** *** 1,21 **** ! /*************************************************************************** ! * Copyright (C) 2005 by Matej Urbas * ! * matej@matejPC * ! * * ! * This program is free software; you can redistribute it and/or modify * ! * it under the terms of the GNU General Public License as published by * ! * the Free Software Foundation; either version 2 of the License, or * ! * (at your option) any later version. * ! * * ! * This program 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 General Public License for more details. * ! * * ! * You should have received a copy of the GNU General Public License * ! * along with this program; if not, write to the * ! * Free Software Foundation, Inc., * ! * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ! ***************************************************************************/ #include "Common.h" --- 1,31 ---- ! // ! // Authors: ! // Matej Urbas (mat...@gm...) ! // Gonzalo Arana (gon...@gm...) ! // ! // (C) 2006 Matej Urbas, Gonzalo Arana ! // ! // ! // This source code is licenced under The MIT License: ! // ! // Permission is hereby granted, free of charge, to any person obtaining ! // a copy of this software and associated documentation files (the ! // "Software"), to deal in the Software without restriction, including ! // without limitation the rights to use, copy, modify, merge, publish, ! // distribute, sublicense, and/or sell copies of the Software, and to ! // permit persons to whom the Software is furnished to do so, subject to ! // the following conditions: ! // ! // The above copyright notice and this permission notice shall be ! // included in all copies or substantial portions of the Software. ! // ! // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, ! // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF ! // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND ! // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE ! // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION ! // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION ! // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ! // #include "Common.h" Index: DefaultSessionAddress.h =================================================================== RCS file: /cvsroot/mod-c/ehtml/src/DefaultSessionAddress.h,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** DefaultSessionAddress.h 8 Sep 2006 14:30:59 -0000 1.1 --- DefaultSessionAddress.h 12 Oct 2006 21:10:36 -0000 1.2 *************** *** 1,2 **** --- 1,30 ---- + // + // Authors: + // Gonzalo Arana (gon...@gm...) + // + // (C) 2006 Gonzalo Arana + // + // + // This source code is licenced under The MIT License: + // + // Permission is hereby granted, free of charge, to any person obtaining + // a copy of this software and associated documentation files (the + // "Software"), to deal in the Software without restriction, including + // without limitation the rights to use, copy, modify, merge, publish, + // distribute, sublicense, and/or sell copies of the Software, and to + // permit persons to whom the Software is furnished to do so, subject to + // the following conditions: + // + // The above copyright notice and this permission notice shall be + // included in all copies or substantial portions of the Software. + // + // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, + // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF + // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND + // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE + // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION + // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION + // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + // #ifndef __DEFAULT_SESSION_ADDRESS_H_ Index: PageWriter.cpp =================================================================== RCS file: /cvsroot/mod-c/ehtml/src/PageWriter.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** PageWriter.cpp 13 Sep 2006 13:57:07 -0000 1.8 --- PageWriter.cpp 12 Oct 2006 21:10:36 -0000 1.9 *************** *** 1,21 **** ! /*************************************************************************** ! * Copyright (C) 2005 by Matej Urbas * ! * matej@matejPC * ! * * ! * This program is free software; you can redistribute it and/or modify * ! * it under the terms of the GNU General Public License as published by * ! * the Free Software Foundation; either version 2 of the License, or * ! * (at your option) any later version. * ! * * ! * This program 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 General Public License for more details. * ! * * ! * You should have received a copy of the GNU General Public License * ! * along with this program; if not, write to the * ! * Free Software Foundation, Inc., * ! * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ! ***************************************************************************/ #include <PageWriter.h> --- 1,31 ---- ! // ! // Authors: ! // Matej Urbas (mat...@gm...) ! // Gonzalo Arana (gon...@gm...) ! // ! // (C) 2006 Matej Urbas, Gonzalo Arana ! // ! // ! // This source code is licenced under The MIT License: ! // ! // Permission is hereby granted, free of charge, to any person obtaining ! // a copy of this software and associated documentation files (the ! // "Software"), to deal in the Software without restriction, including ! // without limitation the rights to use, copy, modify, merge, publish, ! // distribute, sublicense, and/or sell copies of the Software, and to ! // permit persons to whom the Software is furnished to do so, subject to ! // the following conditions: ! // ! // The above copyright notice and this permission notice shall be ! // included in all copies or substantial portions of the Software. ! // ! // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, ! // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF ! // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND ! // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE ! // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION ! // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION ! // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ! // #include <PageWriter.h> Index: SimpleTagAttribute.cpp =================================================================== RCS file: /cvsroot/mod-c/ehtml/src/SimpleTagAttribute.cpp,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** SimpleTagAttribute.cpp 6 Mar 2006 08:00:36 -0000 1.5 --- SimpleTagAttribute.cpp 12 Oct 2006 21:10:36 -0000 1.6 *************** *** 1,21 **** ! /*************************************************************************** ! * Copyright (C) 2005 by Matej Urbas * ! * mat...@gm... * ! * * ! * This program is free software; you can redistribute it and/or modify * ! * it under the terms of the GNU General Public License as published by * ! * the Free Software Foundation; either version 2 of the License, or * ! * (at your option) any later version. * ! * * ! * This program 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 General Public License for more details. * ! * * ! * You should have received a copy of the GNU General Public License * ! * along with this program; if not, write to the * ! * Free Software Foundation, Inc., * ! * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ! ***************************************************************************/ #include <SimpleTagAttribute.h> --- 1,31 ---- ! // ! // Authors: ! // Matej Urbas (mat...@gm...) ! // Gonzalo Arana (gon...@gm...) ! // ! // (C) 2006 Matej Urbas, Gonzalo Arana ! // ! // ! // This source code is licenced under The MIT License: ! // ! // Permission is hereby granted, free of charge, to any person obtaining ! // a copy of this software and associated documentation files (the ! // "Software"), to deal in the Software without restriction, including ! // without limitation the rights to use, copy, modify, merge, publish, ! // distribute, sublicense, and/or sell copies of the Software, and to ! // permit persons to whom the Software is furnished to do so, subject to ! // the following conditions: ! // ! // The above copyright notice and this permission notice shall be ! // included in all copies or substantial portions of the Software. ! // ! // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, ! // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF ! // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND ! // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE ! // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION ! // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION ! // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ! // #include <SimpleTagAttribute.h> Index: Component.cpp =================================================================== RCS file: /cvsroot/mod-c/ehtml/src/Component.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** Component.cpp 6 Mar 2006 08:00:36 -0000 1.8 --- Component.cpp 12 Oct 2006 21:10:36 -0000 1.9 *************** *** 1,21 **** ! /*************************************************************************** ! * Copyright (C) 2005 by Matej Urbas * ! * matej@matejPC * ! * * ! * This program is free software; you can redistribute it and/or modify * ! * it under the terms of the GNU General Public License as published by * ! * the Free Software Foundation; either version 2 of the License, or * ! * (at your option) any later version. * ! * * ! * This program 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 General Public License for more details. * ! * * ! * You should have received a copy of the GNU General Public License * ! * along with this program; if not, write to the * ! * Free Software Foundation, Inc., * ! * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ! ***************************************************************************/ #include <Component.h> --- 1,31 ---- ! // ! // Authors: ! // Matej Urbas (mat...@gm...) ! // Gonzalo Arana (gon...@gm...) ! // ! // (C) 2006 Matej Urbas, Gonzalo Arana ! // ! // ! // This source code is licenced under The MIT License: ! // ! // Permission is hereby granted, free of charge, to any person obtaining ! // a copy of this software and associated documentation files (the ! // "Software"), to deal in the Software without restriction, including ! // without limitation the rights to use, copy, modify, merge, publish, ! // distribute, sublicense, and/or sell copies of the Software, and to ! // permit persons to whom the Software is furnished to do so, subject to ! // the following conditions: ! // ! // The above copyright notice and this permission notice shall be ! // included in all copies or substantial portions of the Software. ! // ! // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, ! // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF ! // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND ! // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE ! // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION ! // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION ! // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ! // #include <Component.h> Index: StyleAttribute.cpp =================================================================== RCS file: /cvsroot/mod-c/ehtml/src/StyleAttribute.cpp,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** StyleAttribute.cpp 13 Sep 2006 13:57:07 -0000 1.6 --- StyleAttribute.cpp 12 Oct 2006 21:10:36 -0000 1.7 *************** *** 1,21 **** ! /*************************************************************************** ! * Copyright (C) 2005 by Matej Urbas * ! * mat...@gm... * ! * * ! * This program is free software; you can redistribute it and/or modify * ! * it under ... [truncated message content] |