Adding copyright notice and copy permission statement
This commit is contained in:
parent
0141a71e35
commit
20d015dda5
4 changed files with 69 additions and 0 deletions
|
@ -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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
(defun enode-oracle-connect (conn-user conn-pass conn-connection conn-prompt)
|
(defun enode-oracle-connect (conn-user conn-pass conn-connection conn-prompt)
|
||||||
"A function to connect to an oracle database."
|
"A function to connect to an oracle database."
|
||||||
;; Create a temporary buffer and go to it.
|
;; Create a temporary buffer and go to it.
|
||||||
|
|
|
@ -2,6 +2,23 @@
|
||||||
;; A package and 'mode' for providing an interface for examining and
|
;; A package and 'mode' for providing an interface for examining and
|
||||||
;; developing for relational databases.
|
;; 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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
;; Drawing on TOAD by Quest Software as inspiration, this is provides an emacs
|
;; 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
|
;; based interface to examine and develop for a relational database. It's
|
||||||
;; hoped that the following databases will ultimately supported:
|
;; hoped that the following databases will ultimately supported:
|
||||||
|
|
|
@ -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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
(require 'pls-mode)
|
(require 'pls-mode)
|
||||||
|
|
||||||
(defvar enode-pls-identifier-regexp
|
(defvar enode-pls-identifier-regexp
|
||||||
|
|
|
@ -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 <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
(defun sql-area-add-table (table-name)
|
(defun sql-area-add-table (table-name)
|
||||||
"A simple function to add a new table to the SQL file."
|
"A simple function to add a new table to the SQL file."
|
||||||
(interactive "sTable name: ")
|
(interactive "sTable name: ")
|
||||||
|
|
Loading…
Reference in a new issue