]> git.mjollnir.org Git - moodle.git/commitdiff
MDL-14679 license header fixes
authorskodak <skodak>
Fri, 12 Jun 2009 08:50:50 +0000 (08:50 +0000)
committerskodak <skodak>
Fri, 12 Jun 2009 08:50:50 +0000 (08:50 +0000)
lib/dtl/database_exporter.php
lib/dtl/database_importer.php
lib/dtl/database_mover.php
lib/dtl/file_xml_database_exporter.php
lib/dtl/file_xml_database_importer.php
lib/dtl/string_xml_database_exporter.php
lib/dtl/string_xml_database_importer.php
lib/dtl/xml_database_exporter.php
lib/dtl/xml_database_importer.php
lib/dtllib.php

index 34789ab5a0b2b420841bc8e0943b5cadd90f26ae..cf35c0a3c0b7569ab0c97a8cd8e9265d1a3f3694 100644 (file)
@@ -1,10 +1,28 @@
-<?php  //$Id$
+<?php
+
+// This file is part of Moodle - http://moodle.org/
+//
+// Moodle 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
+// (at your option) any later version.
+//
+// Moodle 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 Moodle.  If not, see <http://www.gnu.org/licenses/>.
+
 
 /**
- * General database import classes
- * @author Andrei Bautu
- * @license http://www.gnu.org/copyleft/gpl.html GNU Public License
- * @package dbtransfer
+ * General database export class
+ *
+ * @package    moodlecore
+ * @subpackage DTL
+ * @copyright  2008 Andrei Bautu
+ * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  */
 
 /**
index 7d1b8bf4dc8aa2017a84610915eb7bcb7b73ccdc..13a1424981eec53d79da215cd9f53af7ca5ef967 100644 (file)
@@ -1,10 +1,28 @@
-<?php  //$Id$
+<?php
+
+// This file is part of Moodle - http://moodle.org/
+//
+// Moodle 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
+// (at your option) any later version.
+//
+// Moodle 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 Moodle.  If not, see <http://www.gnu.org/licenses/>.
+
 
 /**
- * General database import classes
- * @author Andrei Bautu
- * @license http://www.gnu.org/copyleft/gpl.html GNU Public License
- * @package dbtransfer
+ * General database importer class
+ *
+ * @package    moodlecore
+ * @subpackage DTL
+ * @copyright  2008 Andrei Bautu
+ * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  */
 
 /**
index 3856a520fdc522df47bbd0f557ab1088ed909bd4..dfe01e11b413320d85dce6f90a40bc424709816e 100644 (file)
@@ -1,4 +1,29 @@
-<?php  //$Id$
+<?php
+
+// This file is part of Moodle - http://moodle.org/
+//
+// Moodle 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
+// (at your option) any later version.
+//
+// Moodle 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 Moodle.  If not, see <http://www.gnu.org/licenses/>.
+
+
+/**
+ * General database mover class
+ *
+ * @package    moodlecore
+ * @subpackage DTL
+ * @copyright  2008 Andrei Bautu
+ * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
+ */
 
 class database_mover extends database_exporter {
     /** Importer object used to transfer data. */
index e0f5c3e268a63b6349e744ddec351fe49e83bb88..a3adbc76a39fe4e46ea503a2e891c7d2827210cd 100644 (file)
@@ -1,4 +1,29 @@
-<?php  //$Id$
+<?php
+
+// This file is part of Moodle - http://moodle.org/
+//
+// Moodle 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
+// (at your option) any later version.
+//
+// Moodle 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 Moodle.  If not, see <http://www.gnu.org/licenses/>.
+
+
+/**
+ * XML format exporter class to file storage
+ *
+ * @package    moodlecore
+ * @subpackage DTL
+ * @copyright  2008 Andrei Bautu
+ * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
+ */
 
 /**
  * XML format exporter class to file storage.
index 5a0ef0f22c9d6a56f4df0f033fab999d6eac667b..3f15746b86df91f17c3c72f0774b9d8f4d06dfcd 100644 (file)
@@ -1,4 +1,29 @@
-<?php  //$Id$
+<?php
+
+// This file is part of Moodle - http://moodle.org/
+//
+// Moodle 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
+// (at your option) any later version.
+//
+// Moodle 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 Moodle.  If not, see <http://www.gnu.org/licenses/>.
+
+
+/**
+ * XML format importer class from file storage
+ *
+ * @package    moodlecore
+ * @subpackage DTL
+ * @copyright  2008 Andrei Bautu
+ * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
+ */
 
 /**
  * XML format importer class from file storage.
index 3bc9e8e641efeb7f7555abd73389df32c92bdf52..5b0dff29d9b76778c63fbfe3516288fb1b3ee1ee 100644 (file)
@@ -1,4 +1,29 @@
-<?php  //$Id$
+<?php
+
+// This file is part of Moodle - http://moodle.org/
+//
+// Moodle 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
+// (at your option) any later version.
+//
+// Moodle 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 Moodle.  If not, see <http://www.gnu.org/licenses/>.
+
+
+/**
+ * XML format exporter class to memory storage
+ *
+ * @package    moodlecore
+ * @subpackage DTL
+ * @copyright  2008 Andrei Bautu
+ * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
+ */
 
 /**
  * XML format exporter class to memory storage (i.e. a string).
index 42e8a1391b585a09f10d37c06826bd3885b0b588..679b10a08c18906ab447ac6960ee291de51f62ff 100644 (file)
@@ -1,4 +1,29 @@
-<?php  //$Id$
+<?php
+
+// This file is part of Moodle - http://moodle.org/
+//
+// Moodle 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
+// (at your option) any later version.
+//
+// Moodle 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 Moodle.  If not, see <http://www.gnu.org/licenses/>.
+
+
+/**
+ * XML format importer class from memory storage
+ *
+ * @package    moodlecore
+ * @subpackage DTL
+ * @copyright  2008 Andrei Bautu
+ * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
+ */
 
 /**
  * XML format importer class from memory storage (i.e. string).
index e58e3391a647a4a2503b2b8bba0f1f965680b6b5..26d493517973a8074361f5efe440692e72f63eb8 100644 (file)
@@ -1,4 +1,29 @@
-<?php  //$Id$
+<?php
+
+// This file is part of Moodle - http://moodle.org/
+//
+// Moodle 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
+// (at your option) any later version.
+//
+// Moodle 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 Moodle.  If not, see <http://www.gnu.org/licenses/>.
+
+
+/**
+ * XML format exporter class
+ *
+ * @package    moodlecore
+ * @subpackage DTL
+ * @copyright  2008 Andrei Bautu
+ * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
+ */
 
 /**
  * XML format exporter class.
index 4f4e9c6f567000e24c0013117143a3f5282e427f..8506d973337b8de4fbae53f9ff6def9c8b1a077a 100644 (file)
@@ -1,4 +1,29 @@
-<?php  //$Id$
+<?php
+
+// This file is part of Moodle - http://moodle.org/
+//
+// Moodle 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
+// (at your option) any later version.
+//
+// Moodle 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 Moodle.  If not, see <http://www.gnu.org/licenses/>.
+
+
+/**
+ * XML format importer class
+ *
+ * @package    moodlecore
+ * @subpackage DTL
+ * @copyright  2008 Andrei Bautu
+ * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
+ */
 
 /**
  * XML format importer class (uses SAX for speed and low memory footprint).
index 507b0d7af7fdcfea4ac6d96da7544136870aba85..486508516cd4922983af03aa726e71ece8053444 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 
-// This file is part of Moodle - http://moodle.org/ 
-// 
+// This file is part of Moodle - http://moodle.org/
+//
 // Moodle 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
 // 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 Moodle.  If not, see <http://www.gnu.org/licenses/>.
 
+
 /**
  * DTL == Dtatabase Transfer Library
  *
  * This library includes all the required functions used to handle
  * transfer of data from one database to another.
- * 
- * @copyright 2008 onwards Andrei Bautu 
- * @license   http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
- * @package   moodlecore
+ *
+ * @package    moodlecore
+ * @subpackage DTL
+ * @copyright  2008 Andrei Bautu
+ * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
  */
 
- /** Require {@link ddllib.php} */
+// Require {@link ddllib.php}
 require_once($CFG->libdir.'/ddllib.php');
-/** Require {@link database_exporter.php} */
+// Require {@link database_exporter.php}
 require_once($CFG->libdir.'/dtl/database_exporter.php');
-/** Require {@link xml_database_exporter.php} */
+// Require {@link xml_database_exporter.php}
 require_once($CFG->libdir.'/dtl/xml_database_exporter.php');
-/** Require {@link file_xml_database_exporter.php} */
+// Require {@link file_xml_database_exporter.php}
 require_once($CFG->libdir.'/dtl/file_xml_database_exporter.php');
-/** Require {@link string_xml_database_exporter.php} */
+// Require {@link string_xml_database_exporter.php}
 require_once($CFG->libdir.'/dtl/string_xml_database_exporter.php');
-/** Require {@link database_mover.php} */
+// Require {@link database_mover.php}
 require_once($CFG->libdir.'/dtl/database_mover.php');
-/** Require {@link database_importer.php} */
+// Require {@link database_importer.php}
 require_once($CFG->libdir.'/dtl/database_importer.php');
-/** Require {@link xml_database_importer.php} */
+// Require {@link xml_database_importer.php}
 require_once($CFG->libdir.'/dtl/xml_database_importer.php');
-/** Require {@link file_xml_database_importer.php} */
+// Require {@link file_xml_database_importer.php}
 require_once($CFG->libdir.'/dtl/file_xml_database_importer.php');
-/** Require {@link string_xml_database_importer.php} */
+// Require {@link string_xml_database_importer.php}
 require_once($CFG->libdir.'/dtl/string_xml_database_importer.php');
 
 /**
  * Exception class for db transfer
  * @see moodle_exception
- *
- * @copyright 1999 onwards Martin Dougiamas  {@link http://moodle.com}
- * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
- * @package moodlecore
  */
 class dbtransfer_exception extends moodle_exception {
     /**