[rkward-cvs] SF.net SVN: rkward-code:[4767] trunk/rkward/packages/XiMpLe

m-eik at users.sf.net m-eik at users.sf.net
Mon Nov 11 19:45:51 UTC 2013


Revision: 4767
          http://sourceforge.net/p/rkward/code/4767
Author:   m-eik
Date:     2013-11-11 19:45:49 +0000 (Mon, 11 Nov 2013)
Log Message:
-----------
XiMpLe: added proper GPL notice to each R file

Modified Paths:
--------------
    trunk/rkward/packages/XiMpLe/ChangeLog
    trunk/rkward/packages/XiMpLe/R/XMLNode.R
    trunk/rkward/packages/XiMpLe/R/XMLTree.R
    trunk/rkward/packages/XiMpLe/R/XiMpLe-internal.R
    trunk/rkward/packages/XiMpLe/R/XiMpLe-internal.roxy.all.R
    trunk/rkward/packages/XiMpLe/R/XiMpLe-package.R
    trunk/rkward/packages/XiMpLe/R/XiMpLe.doc-class.R
    trunk/rkward/packages/XiMpLe/R/XiMpLe.node-class.R
    trunk/rkward/packages/XiMpLe/R/node.R
    trunk/rkward/packages/XiMpLe/R/parseXMLTree.R
    trunk/rkward/packages/XiMpLe/R/pasteXML-methods.R
    trunk/rkward/packages/XiMpLe/R/pasteXMLTag.R
    trunk/rkward/packages/XiMpLe/R/show-methods.R
    trunk/rkward/packages/XiMpLe/R/zzz_is_get_utils.R

Modified: trunk/rkward/packages/XiMpLe/ChangeLog
===================================================================
--- trunk/rkward/packages/XiMpLe/ChangeLog	2013-10-28 13:34:05 UTC (rev 4766)
+++ trunk/rkward/packages/XiMpLe/ChangeLog	2013-11-11 19:45:49 UTC (rev 4767)
@@ -1,10 +1,12 @@
 ChangeLog for package XiMpLe
 
-changes in version 0.03-21 (2013-05-24)
+changes in version 0.03-21 (2013-11-11)
 added:
   - new attribute "as.list" added to XMLScan(), if TRUE forces the return
     value to be a list of length 1 (default is still to directly return the
     single node).
+changed:
+  - added a proper GPL notice at the beginning of each R file
 
 changes in version 0.03-20 (2013-03-30)
 changed:

Modified: trunk/rkward/packages/XiMpLe/R/XMLNode.R
===================================================================
--- trunk/rkward/packages/XiMpLe/R/XMLNode.R	2013-10-28 13:34:05 UTC (rev 4766)
+++ trunk/rkward/packages/XiMpLe/R/XMLNode.R	2013-11-11 19:45:49 UTC (rev 4767)
@@ -1,3 +1,21 @@
+# Copyright 2011-2013 Meik Michalke <meik.michalke at hhu.de>
+#
+# This file is part of the R package XiMpLe.
+#
+# XiMpLe 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.
+#
+# XiMpLe 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 XiMpLe.  If not, see <http://www.gnu.org/licenses/>.
+
+
 #' Constructor function for XiMpLe.node objects
 #' 
 #' Can be used to create XML nodes.

Modified: trunk/rkward/packages/XiMpLe/R/XMLTree.R
===================================================================
--- trunk/rkward/packages/XiMpLe/R/XMLTree.R	2013-10-28 13:34:05 UTC (rev 4766)
+++ trunk/rkward/packages/XiMpLe/R/XMLTree.R	2013-11-11 19:45:49 UTC (rev 4767)
@@ -1,3 +1,21 @@
+# Copyright 2011-2013 Meik Michalke <meik.michalke at hhu.de>
+#
+# This file is part of the R package XiMpLe.
+#
+# XiMpLe 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.
+#
+# XiMpLe 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 XiMpLe.  If not, see <http://www.gnu.org/licenses/>.
+
+
 #' Constructor function for XiMpLe.doc objects
 #'
 #' Can be used to create full XML trees.

Modified: trunk/rkward/packages/XiMpLe/R/XiMpLe-internal.R
===================================================================
--- trunk/rkward/packages/XiMpLe/R/XiMpLe-internal.R	2013-10-28 13:34:05 UTC (rev 4766)
+++ trunk/rkward/packages/XiMpLe/R/XiMpLe-internal.R	2013-11-11 19:45:49 UTC (rev 4767)
@@ -1,3 +1,21 @@
+# Copyright 2011-2013 Meik Michalke <meik.michalke at hhu.de>
+#
+# This file is part of the R package XiMpLe.
+#
+# XiMpLe 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.
+#
+# XiMpLe 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 XiMpLe.  If not, see <http://www.gnu.org/licenses/>.
+
+
 ## internal functions, not exported
 
 ## wrapper for paste0() needed?

Modified: trunk/rkward/packages/XiMpLe/R/XiMpLe-internal.roxy.all.R
===================================================================
--- trunk/rkward/packages/XiMpLe/R/XiMpLe-internal.roxy.all.R	2013-10-28 13:34:05 UTC (rev 4766)
+++ trunk/rkward/packages/XiMpLe/R/XiMpLe-internal.roxy.all.R	2013-11-11 19:45:49 UTC (rev 4767)
@@ -1,3 +1,21 @@
+# Copyright 2011-2013 Meik Michalke <meik.michalke at hhu.de>
+#
+# This file is part of the R package XiMpLe.
+#
+# XiMpLe 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.
+#
+# XiMpLe 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 XiMpLe.  If not, see <http://www.gnu.org/licenses/>.
+
+
 # package description files
 # this internal object can be used by the package roxyPackage to
 # automatically create/update DESCRIPTION and CITATION files

Modified: trunk/rkward/packages/XiMpLe/R/XiMpLe-package.R
===================================================================
--- trunk/rkward/packages/XiMpLe/R/XiMpLe-package.R	2013-10-28 13:34:05 UTC (rev 4766)
+++ trunk/rkward/packages/XiMpLe/R/XiMpLe-package.R	2013-11-11 19:45:49 UTC (rev 4767)
@@ -1,3 +1,21 @@
+# Copyright 2011-2013 Meik Michalke <meik.michalke at hhu.de>
+#
+# This file is part of the R package XiMpLe.
+#
+# XiMpLe 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.
+#
+# XiMpLe 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 XiMpLe.  If not, see <http://www.gnu.org/licenses/>.
+
+
 #' A simple XML tree parser and generator.
 #'
 #' \tabular{ll}{

Modified: trunk/rkward/packages/XiMpLe/R/XiMpLe.doc-class.R
===================================================================
--- trunk/rkward/packages/XiMpLe/R/XiMpLe.doc-class.R	2013-10-28 13:34:05 UTC (rev 4766)
+++ trunk/rkward/packages/XiMpLe/R/XiMpLe.doc-class.R	2013-11-11 19:45:49 UTC (rev 4767)
@@ -1,3 +1,21 @@
+# Copyright 2011-2013 Meik Michalke <meik.michalke at hhu.de>
+#
+# This file is part of the R package XiMpLe.
+#
+# XiMpLe 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.
+#
+# XiMpLe 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 XiMpLe.  If not, see <http://www.gnu.org/licenses/>.
+
+
 ## temporarily turned off most of the roxygen comments
 ## class docs will remain static until roxygen2 supports "@slot"
 

Modified: trunk/rkward/packages/XiMpLe/R/XiMpLe.node-class.R
===================================================================
--- trunk/rkward/packages/XiMpLe/R/XiMpLe.node-class.R	2013-10-28 13:34:05 UTC (rev 4766)
+++ trunk/rkward/packages/XiMpLe/R/XiMpLe.node-class.R	2013-11-11 19:45:49 UTC (rev 4767)
@@ -1,3 +1,21 @@
+# Copyright 2011-2013 Meik Michalke <meik.michalke at hhu.de>
+#
+# This file is part of the R package XiMpLe.
+#
+# XiMpLe 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.
+#
+# XiMpLe 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 XiMpLe.  If not, see <http://www.gnu.org/licenses/>.
+
+
 # Class XiMpLe.node
 #
 # This class is used to create DOM trees of XML documents, like objects that are returned

Modified: trunk/rkward/packages/XiMpLe/R/node.R
===================================================================
--- trunk/rkward/packages/XiMpLe/R/node.R	2013-10-28 13:34:05 UTC (rev 4766)
+++ trunk/rkward/packages/XiMpLe/R/node.R	2013-11-11 19:45:49 UTC (rev 4767)
@@ -1,3 +1,21 @@
+# Copyright 2011-2013 Meik Michalke <meik.michalke at hhu.de>
+#
+# This file is part of the R package XiMpLe.
+#
+# XiMpLe 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.
+#
+# XiMpLe 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 XiMpLe.  If not, see <http://www.gnu.org/licenses/>.
+
+
 #' Extract/manipulate a node or parts of it from an XML tree
 #'
 #' This method can be used to get parts of a parsed XML tree object, or to fill it with new values.

Modified: trunk/rkward/packages/XiMpLe/R/parseXMLTree.R
===================================================================
--- trunk/rkward/packages/XiMpLe/R/parseXMLTree.R	2013-10-28 13:34:05 UTC (rev 4766)
+++ trunk/rkward/packages/XiMpLe/R/parseXMLTree.R	2013-11-11 19:45:49 UTC (rev 4767)
@@ -1,3 +1,21 @@
+# Copyright 2011-2013 Meik Michalke <meik.michalke at hhu.de>
+#
+# This file is part of the R package XiMpLe.
+#
+# XiMpLe 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.
+#
+# XiMpLe 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 XiMpLe.  If not, see <http://www.gnu.org/licenses/>.
+
+
 #' Read an XML file into an R object
 #'
 #' @param file Character string, valid path to the XML file which should be parsed.

Modified: trunk/rkward/packages/XiMpLe/R/pasteXML-methods.R
===================================================================
--- trunk/rkward/packages/XiMpLe/R/pasteXML-methods.R	2013-10-28 13:34:05 UTC (rev 4766)
+++ trunk/rkward/packages/XiMpLe/R/pasteXML-methods.R	2013-11-11 19:45:49 UTC (rev 4767)
@@ -1,3 +1,21 @@
+# Copyright 2011-2013 Meik Michalke <meik.michalke at hhu.de>
+#
+# This file is part of the R package XiMpLe.
+#
+# XiMpLe 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.
+#
+# XiMpLe 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 XiMpLe.  If not, see <http://www.gnu.org/licenses/>.
+
+
 #' Paste methods for XiMpLe XML objects
 #' 
 #' These methods can be used to paste objects if class \code{\link[XiMpLe:XiMpLe.node-class]{XiMpLe.node}}

Modified: trunk/rkward/packages/XiMpLe/R/pasteXMLTag.R
===================================================================
--- trunk/rkward/packages/XiMpLe/R/pasteXMLTag.R	2013-10-28 13:34:05 UTC (rev 4766)
+++ trunk/rkward/packages/XiMpLe/R/pasteXMLTag.R	2013-11-11 19:45:49 UTC (rev 4767)
@@ -1,3 +1,21 @@
+# Copyright 2011-2013 Meik Michalke <meik.michalke at hhu.de>
+#
+# This file is part of the R package XiMpLe.
+#
+# XiMpLe 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.
+#
+# XiMpLe 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 XiMpLe.  If not, see <http://www.gnu.org/licenses/>.
+
+
 #' Write an XML tag
 #'
 #' Creates a whole XML tag with attributes and, if it is a pair of start and end tags,

Modified: trunk/rkward/packages/XiMpLe/R/show-methods.R
===================================================================
--- trunk/rkward/packages/XiMpLe/R/show-methods.R	2013-10-28 13:34:05 UTC (rev 4766)
+++ trunk/rkward/packages/XiMpLe/R/show-methods.R	2013-11-11 19:45:49 UTC (rev 4767)
@@ -1,3 +1,21 @@
+# Copyright 2011-2013 Meik Michalke <meik.michalke at hhu.de>
+#
+# This file is part of the R package XiMpLe.
+#
+# XiMpLe 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.
+#
+# XiMpLe 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 XiMpLe.  If not, see <http://www.gnu.org/licenses/>.
+
+
 #' Show method for S4 objects of XiMpLe XML classes
 #' 
 #' Used to display objects of class \code{\link[XiMpLe:XiMpLe.doc-class]{XiMpLe.doc}}

Modified: trunk/rkward/packages/XiMpLe/R/zzz_is_get_utils.R
===================================================================
--- trunk/rkward/packages/XiMpLe/R/zzz_is_get_utils.R	2013-10-28 13:34:05 UTC (rev 4766)
+++ trunk/rkward/packages/XiMpLe/R/zzz_is_get_utils.R	2013-11-11 19:45:49 UTC (rev 4767)
@@ -1,3 +1,21 @@
+# Copyright 2011-2013 Meik Michalke <meik.michalke at hhu.de>
+#
+# This file is part of the R package XiMpLe.
+#
+# XiMpLe 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.
+#
+# XiMpLe 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 XiMpLe.  If not, see <http://www.gnu.org/licenses/>.
+
+
 ## the name "zzz_*" is just to ensure roxygen doesn't parse it before XMLNode.R and XMLTree.R
 
 #' @param x An arbitrary \code{R} object.





More information about the rkward-tracker mailing list