myserver-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Myserver-commit] [2734] Updated plugins copyrights to `The Free Softwar


From: Giuseppe Scrivano
Subject: [Myserver-commit] [2734] Updated plugins copyrights to `The Free Software Foundation Inc.'
Date: Sun, 03 Aug 2008 12:08:32 +0000

Revision: 2734
          http://svn.sv.gnu.org/viewvc/?view=rev&root=myserver&revision=2734
Author:   gscrivano
Date:     2008-08-03 12:08:32 +0000 (Sun, 03 Aug 2008)

Log Message:
-----------
Updated plugins copyrights to `The Free Software Foundation Inc.'

Modified Paths:
--------------
    trunk/plugins/executors/python/SConscript
    trunk/plugins/generics/http_checker/SConscript
    trunk/plugins/generics/http_checker/http_checker.cpp
    trunk/plugins/generics/http_checker/plugin.xml
    trunk/plugins/generics/python_http_handler/SConscript
    trunk/plugins/generics/python_http_handler/plugin.xml
    trunk/plugins/generics/python_http_handler/python/connection.py
    trunk/plugins/generics/python_http_handler/python/filter.py
    trunk/plugins/generics/python_http_handler/python/request.py
    trunk/plugins/generics/python_http_handler/python/server.py
    trunk/plugins/generics/python_http_handler/python_http_handler.cpp
    trunk/plugins/generics/rules_checker/SConscript
    trunk/plugins/generics/rules_checker/heading.h
    trunk/plugins/generics/rules_checker/lex.c
    trunk/plugins/generics/rules_checker/lex.yy.c
    trunk/plugins/generics/rules_checker/plugin.xml
    trunk/plugins/generics/rules_checker/rules_checker.cpp
    trunk/plugins/generics/rules_checker/rules_checker.lex
    trunk/plugins/generics/rules_checker/rules_checker.y
    trunk/plugins/generics/rules_checker/string_alloc.cpp
    trunk/plugins/http_managers/php/SConscript
    trunk/plugins/http_managers/php/php.cpp
    trunk/plugins/http_managers/php/php.h
    trunk/plugins/http_managers/php/plugin.xml

Modified: trunk/plugins/executors/python/SConscript
===================================================================
--- trunk/plugins/executors/python/SConscript   2008-08-03 11:19:07 UTC (rev 
2733)
+++ trunk/plugins/executors/python/SConscript   2008-08-03 12:08:32 UTC (rev 
2734)
@@ -21,4 +21,4 @@
 
 env = conf.Finish()
 
-env.SharedLibrary(GetLaunchDir() + "/binaries/external/executors/python", 
["python.cpp"], SHLIBPREFIX="")
+env.SharedLibrary(GetLaunchDir() + "/binaries/plugins/executors/python", 
["python.cpp"], SHLIBPREFIX="")

Modified: trunk/plugins/generics/http_checker/SConscript
===================================================================
--- trunk/plugins/generics/http_checker/SConscript      2008-08-03 11:19:07 UTC 
(rev 2733)
+++ trunk/plugins/generics/http_checker/SConscript      2008-08-03 12:08:32 UTC 
(rev 2734)
@@ -21,4 +21,4 @@
 
 env = conf.Finish()
 
-env.SharedLibrary(GetLaunchDir() + "/binaries/external/generics/http_checker", 
["http_checker.cpp" ], SHLIBPREFIX="")
+env.SharedLibrary(GetLaunchDir() + "/binaries/plugins/generics/http_checker", 
["http_checker.cpp" ], SHLIBPREFIX="")

Modified: trunk/plugins/generics/http_checker/http_checker.cpp
===================================================================
--- trunk/plugins/generics/http_checker/http_checker.cpp        2008-08-03 
11:19:07 UTC (rev 2733)
+++ trunk/plugins/generics/http_checker/http_checker.cpp        2008-08-03 
12:08:32 UTC (rev 2734)
@@ -1,6 +1,6 @@
 /*
 MyServer
-Copyright (C) 2007 The MyServer Team
+Copyright (C) 2007 The Free Software Foundation Inc.
 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 3 of the License, or

Modified: trunk/plugins/generics/http_checker/plugin.xml
===================================================================
--- trunk/plugins/generics/http_checker/plugin.xml      2008-08-03 11:19:07 UTC 
(rev 2733)
+++ trunk/plugins/generics/http_checker/plugin.xml      2008-08-03 12:08:32 UTC 
(rev 2734)
@@ -4,8 +4,8 @@
 <NAME>http_checker</NAME>
 <TYPE>generics</TYPE>
 <VERSION>0.1</VERSION>
-<AUTHOR>The MyServer Team</AUTHOR>
-<MAINTAINER>The MyServer Team</MAINTAINER>
+<AUTHOR>The Free Software Foundation Inc.</AUTHOR>
+<MAINTAINER>The Free Software Foundation Inc.</MAINTAINER>
 <DESCRIPTION>This plugin permits to validate HTTP requests using 
python</DESCRIPTION>
 <DEPENDS>executors::python</DEPENDS>
 </PLUGIN>

Modified: trunk/plugins/generics/python_http_handler/SConscript
===================================================================
--- trunk/plugins/generics/python_http_handler/SConscript       2008-08-03 
11:19:07 UTC (rev 2733)
+++ trunk/plugins/generics/python_http_handler/SConscript       2008-08-03 
12:08:32 UTC (rev 2734)
@@ -21,5 +21,5 @@
 
 env = conf.Finish()
 
-env.SharedLibrary(GetLaunchDir() + 
"/binaries/external/generics/python_http_handler", ["python_http_handler.cpp" 
], SHLIBPREFIX="")
+env.SharedLibrary(GetLaunchDir() + 
"/binaries/plugins/generics/python_http_handler", ["python_http_handler.cpp" ], 
SHLIBPREFIX="")
 

Modified: trunk/plugins/generics/python_http_handler/plugin.xml
===================================================================
--- trunk/plugins/generics/python_http_handler/plugin.xml       2008-08-03 
11:19:07 UTC (rev 2733)
+++ trunk/plugins/generics/python_http_handler/plugin.xml       2008-08-03 
12:08:32 UTC (rev 2734)
@@ -4,8 +4,8 @@
 <NAME>python_http_handler</NAME>
 <TYPE>generics</TYPE>
 <VERSION>0.1</VERSION>
-<AUTHOR>The MyServer Team</AUTHOR>
-<MAINTAINER>The MyServer Team</MAINTAINER>
+<AUTHOR>The Free Software Foundation Inc.</AUTHOR>
+<MAINTAINER>The Free Software Foundation Inc.</MAINTAINER>
 <DESCRIPTION>This plugin permits to use python as handler</DESCRIPTION>
 <DEPENDS>executors::python</DEPENDS>
 </PLUGIN>

Modified: trunk/plugins/generics/python_http_handler/python/connection.py
===================================================================
--- trunk/plugins/generics/python_http_handler/python/connection.py     
2008-08-03 11:19:07 UTC (rev 2733)
+++ trunk/plugins/generics/python_http_handler/python/connection.py     
2008-08-03 12:08:32 UTC (rev 2734)
@@ -1,6 +1,6 @@
 '''
 MyServer
-Copyright (C) 2008 The MyServer Team
+Copyright (C) 2008 The Free Software Foundation Inc.
 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 3 of the License, or

Modified: trunk/plugins/generics/python_http_handler/python/filter.py
===================================================================
--- trunk/plugins/generics/python_http_handler/python/filter.py 2008-08-03 
11:19:07 UTC (rev 2733)
+++ trunk/plugins/generics/python_http_handler/python/filter.py 2008-08-03 
12:08:32 UTC (rev 2734)
@@ -1,6 +1,6 @@
 '''
 MyServer
-Copyright (C) 2008 The MyServer Team
+Copyright (C) 2008 The Free Software Foundation Inc.
 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 3 of the License, or

Modified: trunk/plugins/generics/python_http_handler/python/request.py
===================================================================
--- trunk/plugins/generics/python_http_handler/python/request.py        
2008-08-03 11:19:07 UTC (rev 2733)
+++ trunk/plugins/generics/python_http_handler/python/request.py        
2008-08-03 12:08:32 UTC (rev 2734)
@@ -1,6 +1,6 @@
 '''
 MyServer
-Copyright (C) 2008 The MyServer Team
+Copyright (C) 2008 The Free Software Foundation Inc.
 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 3 of the License, or

Modified: trunk/plugins/generics/python_http_handler/python/server.py
===================================================================
--- trunk/plugins/generics/python_http_handler/python/server.py 2008-08-03 
11:19:07 UTC (rev 2733)
+++ trunk/plugins/generics/python_http_handler/python/server.py 2008-08-03 
12:08:32 UTC (rev 2734)
@@ -1,6 +1,6 @@
 '''
 MyServer
-Copyright (C) 2008 The MyServer Team
+Copyright (C) 2008 The Free Software Foundation Inc.
 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 3 of the License, or

Modified: trunk/plugins/generics/python_http_handler/python_http_handler.cpp
===================================================================
--- trunk/plugins/generics/python_http_handler/python_http_handler.cpp  
2008-08-03 11:19:07 UTC (rev 2733)
+++ trunk/plugins/generics/python_http_handler/python_http_handler.cpp  
2008-08-03 12:08:32 UTC (rev 2734)
@@ -1,6 +1,6 @@
 /*
 MyServer
-Copyright (C) 2007, 2008 The MyServer Team
+Copyright (C) 2007, 2008 The Free Software Foundation Inc.
 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 3 of the License, or

Modified: trunk/plugins/generics/rules_checker/SConscript
===================================================================
--- trunk/plugins/generics/rules_checker/SConscript     2008-08-03 11:19:07 UTC 
(rev 2733)
+++ trunk/plugins/generics/rules_checker/SConscript     2008-08-03 12:08:32 UTC 
(rev 2734)
@@ -16,5 +16,5 @@
 
 env = conf.Finish()
 
-env.SharedLibrary(GetLaunchDir() + 
"/binaries/external/generics/rules_checker", "functions.cpp  parser.cpp  
rules_checker.cpp  string_alloc.cpp".split(), SHLIBPREFIX="")
+env.SharedLibrary(GetLaunchDir() + "/binaries/plugins/generics/rules_checker", 
"functions.cpp  parser.cpp  rules_checker.cpp  string_alloc.cpp".split(), 
SHLIBPREFIX="")
 

Modified: trunk/plugins/generics/rules_checker/heading.h
===================================================================
--- trunk/plugins/generics/rules_checker/heading.h      2008-08-03 11:19:07 UTC 
(rev 2733)
+++ trunk/plugins/generics/rules_checker/heading.h      2008-08-03 12:08:32 UTC 
(rev 2734)
@@ -1,6 +1,6 @@
 /*
 MyServer
-Copyright (C) 2007 The MyServer Team
+Copyright (C) 2007 The Free Software Foundation Inc.
 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 3 of the License, or

Modified: trunk/plugins/generics/rules_checker/lex.c
===================================================================
--- trunk/plugins/generics/rules_checker/lex.c  2008-08-03 11:19:07 UTC (rev 
2733)
+++ trunk/plugins/generics/rules_checker/lex.c  2008-08-03 12:08:32 UTC (rev 
2734)
@@ -472,7 +472,7 @@
 #line 1 "rules_checker.lex"
 /*
 MyServer
-Copyright (C) 2007 The MyServer Team
+Copyright (C) 2007 The Free Software Foundation Inc.
 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 3 of the License, or

Modified: trunk/plugins/generics/rules_checker/lex.yy.c
===================================================================
--- trunk/plugins/generics/rules_checker/lex.yy.c       2008-08-03 11:19:07 UTC 
(rev 2733)
+++ trunk/plugins/generics/rules_checker/lex.yy.c       2008-08-03 12:08:32 UTC 
(rev 2734)
@@ -472,7 +472,7 @@
 #line 1 "rules_checker.lex"
 /*
 MyServer
-Copyright (C) 2007 The MyServer Team
+Copyright (C) 2007 The Free Software Foundation Inc.
 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 3 of the License, or

Modified: trunk/plugins/generics/rules_checker/plugin.xml
===================================================================
--- trunk/plugins/generics/rules_checker/plugin.xml     2008-08-03 11:19:07 UTC 
(rev 2733)
+++ trunk/plugins/generics/rules_checker/plugin.xml     2008-08-03 12:08:32 UTC 
(rev 2734)
@@ -4,7 +4,7 @@
 <NAME>rules_checker</NAME>
 <TYPE>generics</TYPE>
 <VERSION>0.1</VERSION>
-<AUTHOR>The MyServer Team</AUTHOR>
-<MAINTAINER>The MyServer Team</MAINTAINER>
+<AUTHOR>The Free Software Foundation Inc.</AUTHOR>
+<MAINTAINER>The Free Software Foundation Inc.</MAINTAINER>
 <DESCRIPTION>Validate HTTP request using a custom language</DESCRIPTION>
 </PLUGIN>

Modified: trunk/plugins/generics/rules_checker/rules_checker.cpp
===================================================================
--- trunk/plugins/generics/rules_checker/rules_checker.cpp      2008-08-03 
11:19:07 UTC (rev 2733)
+++ trunk/plugins/generics/rules_checker/rules_checker.cpp      2008-08-03 
12:08:32 UTC (rev 2734)
@@ -1,6 +1,6 @@
 /*
 MyServer
-Copyright (C) 2007 The MyServer Team
+Copyright (C) 2007 The Free Software Foundation Inc.
 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 3 of the License, or

Modified: trunk/plugins/generics/rules_checker/rules_checker.lex
===================================================================
--- trunk/plugins/generics/rules_checker/rules_checker.lex      2008-08-03 
11:19:07 UTC (rev 2733)
+++ trunk/plugins/generics/rules_checker/rules_checker.lex      2008-08-03 
12:08:32 UTC (rev 2734)
@@ -1,6 +1,6 @@
 /*
 MyServer
-Copyright (C) 2007 The MyServer Team
+Copyright (C) 2007 The Free Software Foundation Inc.
 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 3 of the License, or

Modified: trunk/plugins/generics/rules_checker/rules_checker.y
===================================================================
--- trunk/plugins/generics/rules_checker/rules_checker.y        2008-08-03 
11:19:07 UTC (rev 2733)
+++ trunk/plugins/generics/rules_checker/rules_checker.y        2008-08-03 
12:08:32 UTC (rev 2734)
@@ -1,6 +1,6 @@
 /*
 MyServer
-Copyright (C) 2007 The MyServer Team
+Copyright (C) 2007 The Free Software Foundation Inc.
 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 3 of the License, or

Modified: trunk/plugins/generics/rules_checker/string_alloc.cpp
===================================================================
--- trunk/plugins/generics/rules_checker/string_alloc.cpp       2008-08-03 
11:19:07 UTC (rev 2733)
+++ trunk/plugins/generics/rules_checker/string_alloc.cpp       2008-08-03 
12:08:32 UTC (rev 2734)
@@ -1,6 +1,6 @@
 /*
 MyServer
-Copyright (C) 2007 The MyServer Team
+Copyright (C) 2007 The Free Software Foundation Inc.
 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 3 of the License, or

Modified: trunk/plugins/http_managers/php/SConscript
===================================================================
--- trunk/plugins/http_managers/php/SConscript  2008-08-03 11:19:07 UTC (rev 
2733)
+++ trunk/plugins/http_managers/php/SConscript  2008-08-03 12:08:32 UTC (rev 
2734)
@@ -29,5 +29,5 @@
 
 env = conf.Finish()
 
-env.SharedLibrary(GetLaunchDir() + "/binaries/external/http_managers/php", 
["php.cpp"], SHLIBPREFIX="")
+env.SharedLibrary(GetLaunchDir() + "/binaries/plugins/http_managers/php", 
["php.cpp"], SHLIBPREFIX="")
 

Modified: trunk/plugins/http_managers/php/php.cpp
===================================================================
--- trunk/plugins/http_managers/php/php.cpp     2008-08-03 11:19:07 UTC (rev 
2733)
+++ trunk/plugins/http_managers/php/php.cpp     2008-08-03 12:08:32 UTC (rev 
2734)
@@ -1,6 +1,6 @@
 /*
 MyServer
-Copyright (C) 2007 The MyServer Team
+Copyright (C) 2007 The Free Software Foundation Inc.
 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 3 of the License, or

Modified: trunk/plugins/http_managers/php/php.h
===================================================================
--- trunk/plugins/http_managers/php/php.h       2008-08-03 11:19:07 UTC (rev 
2733)
+++ trunk/plugins/http_managers/php/php.h       2008-08-03 12:08:32 UTC (rev 
2734)
@@ -1,6 +1,6 @@
 /*
 MyServer
-Copyright (C) 2007, 2008 The MyServer Team
+Copyright (C) 2007, 2008 The Free Software Foundation Inc.
 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 3 of the License, or

Modified: trunk/plugins/http_managers/php/plugin.xml
===================================================================
--- trunk/plugins/http_managers/php/plugin.xml  2008-08-03 11:19:07 UTC (rev 
2733)
+++ trunk/plugins/http_managers/php/plugin.xml  2008-08-03 12:08:32 UTC (rev 
2734)
@@ -4,7 +4,7 @@
 <NAME>php</NAME>
 <TYPE>http_managers</TYPE>
 <VERSION>0.1</VERSION>
-<AUTHOR>The MyServer Team</AUTHOR>
-<MAINTAINER>The MyServer Team</MAINTAINER>
+<AUTHOR>The Free Software Foundation Inc.</AUTHOR>
+<MAINTAINER>The Free Software Foundation Inc.</MAINTAINER>
 <DESCRIPTION>The PHP scritping language embedded directly into 
MyServer</DESCRIPTION>
 </PLUGIN>






reply via email to

[Prev in Thread] Current Thread [Next in Thread]