diff --git a/enode-lisp/enode-oracle.el b/enode-lisp/enode-oracle.el index e14fed5..679e97e 100755 --- a/enode-lisp/enode-oracle.el +++ b/enode-lisp/enode-oracle.el @@ -1,4 +1,21 @@ +;; Copyright 2013 Éibhear Ó hAnluain + +;; This file is part of ENODE. +;; +;; ENODE 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. +;; +;; ENODE 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 ENODE. If not, see . + (defun enode-oracle-connect (conn-user conn-pass conn-connection conn-prompt) "A function to connect to an oracle database." ;; Create a temporary buffer and go to it. diff --git a/enode-lisp/enode.el b/enode-lisp/enode.el index 4cf34bf..79886da 100755 --- a/enode-lisp/enode.el +++ b/enode-lisp/enode.el @@ -2,6 +2,23 @@ ;; A package and 'mode' for providing an interface for examining and ;; developing for relational databases. +;; Copyright 2013 Éibhear Ó hAnluain + +;; This file is part of ENODE. +;; +;; ENODE 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. +;; +;; ENODE 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 ENODE. If not, see . + ;; Drawing on TOAD by Quest Software as inspiration, this is provides an emacs ;; based interface to examine and develop for a relational database. It's ;; hoped that the following databases will ultimately supported: diff --git a/enode-lisp/pls-extras.el b/enode-lisp/pls-extras.el index 8040fda..b0b5d11 100755 --- a/enode-lisp/pls-extras.el +++ b/enode-lisp/pls-extras.el @@ -1,3 +1,21 @@ + +;; Copyright 2013 Éibhear Ó hAnluain + +;; This file is part of ENODE. +;; +;; ENODE 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. +;; +;; ENODE 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 ENODE. If not, see . + (require 'pls-mode) (defvar enode-pls-identifier-regexp diff --git a/enode-lisp/sql-extras.el b/enode-lisp/sql-extras.el index 20d2ec6..e91cac9 100755 --- a/enode-lisp/sql-extras.el +++ b/enode-lisp/sql-extras.el @@ -1,4 +1,21 @@ +;; Copyright 2013 Éibhear Ó hAnluain + +;; This file is part of ENODE. +;; +;; ENODE 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. +;; +;; ENODE 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 ENODE. If not, see . + (defun sql-area-add-table (table-name) "A simple function to add a new table to the SQL file." (interactive "sTable name: ")