[Erp5-report] r14641 - in /erp5/trunk/utils/oood/samples: ./ pl/erp5/ood/

nobody at svn.erp5.org nobody at svn.erp5.org
Tue May 29 12:56:52 CEST 2007


Author: bartek
Date: Tue May 29 12:56:51 2007
New Revision: 14641

URL: http://svn.erp5.org?rev=14641&view=rev
Log:
License information and credits

Modified:
    erp5/trunk/utils/oood/samples/OoodExample.cpp
    erp5/trunk/utils/oood/samples/pdf_generator.php
    erp5/trunk/utils/oood/samples/pl/erp5/ood/OooDaemonClient.java
    erp5/trunk/utils/oood/samples/pl/erp5/ood/OooDaemonException.java
    erp5/trunk/utils/oood/samples/pl/erp5/ood/TestClient.java
    erp5/trunk/utils/oood/samples/rubyclient.rb
    erp5/trunk/utils/oood/samples/simple_cmdline_client.py

Modified: erp5/trunk/utils/oood/samples/OoodExample.cpp
URL: http://svn.erp5.org/erp5/trunk/utils/oood/samples/OoodExample.cpp?rev=14641&r1=14640&r2=14641&view=diff
==============================================================================
--- erp5/trunk/utils/oood/samples/OoodExample.cpp (original)
+++ erp5/trunk/utils/oood/samples/OoodExample.cpp Tue May 29 12:56:51 2007
@@ -1,3 +1,33 @@
+/*
+#############################################################################
+
+ Copyright (c) 2002, 2006 Nexedi SARL and Contributors. All Rights Reserved.
+                    Mikolaj Antoszkiewicz <mikolaj at erp5.pl>
+
+ WARNING: This program as such is intended to be used by professional
+ programmers who take the whole responsability of assessing all potential
+ consequences resulting from its eventual inadequacies and bugs
+ End users who are looking for a ready-to-use solution with commercial
+ garantees and support are strongly adviced to contract a Free Software
+ Service Company
+
+ 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 "XmlRpc.h" // xmlrpc++ library ver.0.7 - http://xmlrpcpp.sourceforge.net/
 #include "Base64.h" // Base64 class from C++ Sockets Library - http://www.alhem.net/Sockets/index.html
 #include <iostream>

Modified: erp5/trunk/utils/oood/samples/pdf_generator.php
URL: http://svn.erp5.org/erp5/trunk/utils/oood/samples/pdf_generator.php?rev=14641&r1=14640&r2=14641&view=diff
==============================================================================
--- erp5/trunk/utils/oood/samples/pdf_generator.php (original)
+++ erp5/trunk/utils/oood/samples/pdf_generator.php Tue May 29 12:56:51 2007
@@ -1,4 +1,34 @@
 <?
+/*
+#############################################################################
+
+ Copyright (c) 2002, 2006 Nexedi SARL and Contributors. All Rights Reserved.
+                    Bartlomiej Gorny <bartek at erp5.pl>
+
+ WARNING: This program as such is intended to be used by professional
+ programmers who take the whole responsability of assessing all potential
+ consequences resulting from its eventual inadequacies and bugs
+ End users who are looking for a ready-to-use solution with commercial
+ garantees and support are strongly adviced to contract a Free Software
+ Service Company
+
+ 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 is an example use of oood from php
 // requires phpxmlrpc extension
 // available at

Modified: erp5/trunk/utils/oood/samples/pl/erp5/ood/OooDaemonClient.java
URL: http://svn.erp5.org/erp5/trunk/utils/oood/samples/pl/erp5/ood/OooDaemonClient.java?rev=14641&r1=14640&r2=14641&view=diff
==============================================================================
--- erp5/trunk/utils/oood/samples/pl/erp5/ood/OooDaemonClient.java (original)
+++ erp5/trunk/utils/oood/samples/pl/erp5/ood/OooDaemonClient.java Tue May 29 12:56:51 2007
@@ -1,3 +1,33 @@
+/*
+#############################################################################
+
+ Copyright (c) 2002, 2006 Nexedi SARL and Contributors. All Rights Reserved.
+                    Jacek Medrzycki <jacek at erp5.pl>
+
+ WARNING: This program as such is intended to be used by professional
+ programmers who take the whole responsability of assessing all potential
+ consequences resulting from its eventual inadequacies and bugs
+ End users who are looking for a ready-to-use solution with commercial
+ garantees and support are strongly adviced to contract a Free Software
+ Service Company
+
+ 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.
+
+#############################################################################
+*/
+
 package pl.erp5.ood;
 
 /* Simple java client for oood sever

Modified: erp5/trunk/utils/oood/samples/pl/erp5/ood/OooDaemonException.java
URL: http://svn.erp5.org/erp5/trunk/utils/oood/samples/pl/erp5/ood/OooDaemonException.java?rev=14641&r1=14640&r2=14641&view=diff
==============================================================================
--- erp5/trunk/utils/oood/samples/pl/erp5/ood/OooDaemonException.java (original)
+++ erp5/trunk/utils/oood/samples/pl/erp5/ood/OooDaemonException.java Tue May 29 12:56:51 2007
@@ -1,3 +1,33 @@
+/*
+#############################################################################
+
+ Copyright (c) 2002, 2006 Nexedi SARL and Contributors. All Rights Reserved.
+                    Jacek Medrzycki <jacek at erp5.pl>
+
+ WARNING: This program as such is intended to be used by professional
+ programmers who take the whole responsability of assessing all potential
+ consequences resulting from its eventual inadequacies and bugs
+ End users who are looking for a ready-to-use solution with commercial
+ garantees and support are strongly adviced to contract a Free Software
+ Service Company
+
+ 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.
+
+#############################################################################
+*/
+
 package pl.erp5.ood;
 
 public class OooDaemonException extends Exception{

Modified: erp5/trunk/utils/oood/samples/pl/erp5/ood/TestClient.java
URL: http://svn.erp5.org/erp5/trunk/utils/oood/samples/pl/erp5/ood/TestClient.java?rev=14641&r1=14640&r2=14641&view=diff
==============================================================================
--- erp5/trunk/utils/oood/samples/pl/erp5/ood/TestClient.java (original)
+++ erp5/trunk/utils/oood/samples/pl/erp5/ood/TestClient.java Tue May 29 12:56:51 2007
@@ -1,3 +1,33 @@
+/*
+#############################################################################
+
+ Copyright (c) 2002, 2006 Nexedi SARL and Contributors. All Rights Reserved.
+                    Jacek Medrzycki <jacek at erp5.pl>
+
+ WARNING: This program as such is intended to be used by professional
+ programmers who take the whole responsability of assessing all potential
+ consequences resulting from its eventual inadequacies and bugs
+ End users who are looking for a ready-to-use solution with commercial
+ garantees and support are strongly adviced to contract a Free Software
+ Service Company
+
+ 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.
+
+#############################################################################
+*/
+
 package pl.erp5.ood;
 
 import  java.io.*;

Modified: erp5/trunk/utils/oood/samples/rubyclient.rb
URL: http://svn.erp5.org/erp5/trunk/utils/oood/samples/rubyclient.rb?rev=14641&r1=14640&r2=14641&view=diff
==============================================================================
--- erp5/trunk/utils/oood/samples/rubyclient.rb (original)
+++ erp5/trunk/utils/oood/samples/rubyclient.rb Tue May 29 12:56:51 2007
@@ -1,4 +1,3 @@
-#!/usr/bin/python
 ##############################################################################
 #
 # Copyright (c) 2002, 2006 Nexedi SARL and Contributors. All Rights Reserved.

Modified: erp5/trunk/utils/oood/samples/simple_cmdline_client.py
URL: http://svn.erp5.org/erp5/trunk/utils/oood/samples/simple_cmdline_client.py?rev=14641&r1=14640&r2=14641&view=diff
==============================================================================
--- erp5/trunk/utils/oood/samples/simple_cmdline_client.py (original)
+++ erp5/trunk/utils/oood/samples/simple_cmdline_client.py Tue May 29 12:56:51 2007
@@ -1,4 +1,32 @@
 #!/usr/bin/python
+##############################################################################
+#
+# Copyright (c) 2002, 2006 Nexedi SARL and Contributors. All Rights Reserved.
+#                    Bartlomiej Gorny <bartek at erp5.pl>
+#
+# WARNING: This program as such is intended to be used by professional
+# programmers who take the whole responsability of assessing all potential
+# consequences resulting from its eventual inadequacies and bugs
+# End users who are looking for a ready-to-use solution with commercial
+# garantees and support are strongly adviced to contract a Free Software
+# Service Company
+#
+# 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.
+#
+##############################################################################
+
 
 import sys
 import xmlrpclib




More information about the Erp5-report mailing list