aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2012-12-28 20:45:32 +0100
committerGravatar Tom Willemsen2012-12-28 20:45:32 +0100
commite72e942eca4690e8c733ac9fdafeac9b33c9f3f4 (patch)
treed226c43dc239f42eda5e718a675e012d0dac1098 /src
parent5535308fffdd58ac17937d676c096fe889acb77e (diff)
downloadmarkam-e72e942eca4690e8c733ac9fdafeac9b33c9f3f4.tar.gz
markam-e72e942eca4690e8c733ac9fdafeac9b33c9f3f4.zip
Add GPLv3
Diffstat (limited to 'src')
-rw-r--r--src/convert.scm25
-rw-r--r--src/linkwave.scm23
-rw-r--r--src/paths.scm23
3 files changed, 69 insertions, 2 deletions
diff --git a/src/convert.scm b/src/convert.scm
index cb38385..3229823 100644
--- a/src/convert.scm
+++ b/src/convert.scm
@@ -1,4 +1,27 @@
-;;; convert.scm -- Convert the old database into a new one
+;;; linkwave -- Store/retrieve/manage bookmarks
+;; Copyright (C) 2012 Tom Willemsen <tom at ryuslash dot org>
+
+;; 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 3 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, see <http://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;; Convert any old database file to one usable with this version of
+;; linkwave. If you're just starting to use linkwave there should be
+;; no need to use this.
+
+;;; Code:
+
(declare (uses paths))
(require-extension sqlite3)
diff --git a/src/linkwave.scm b/src/linkwave.scm
index 85e2d20..0783485 100644
--- a/src/linkwave.scm
+++ b/src/linkwave.scm
@@ -1,3 +1,26 @@
+;;; linkwave -- Store/retrieve/manage bookmarks
+;; Copyright (C) 2012 Tom Willemsen <tom at ryuslash dot org>
+
+;; 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 3 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, see <http://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;; The main program. For documentation you should consult the
+;; README.org and/or any Texinfo documentation provided.
+
+;;; Code:
+
(declare (uses paths))
(require-extension sqlite3)
diff --git a/src/paths.scm b/src/paths.scm
index 50bd622..af2fe2e 100644
--- a/src/paths.scm
+++ b/src/paths.scm
@@ -1,4 +1,25 @@
-;;; paths.scm -- Functions which work with/on paths
+;;; linkwave -- Store/retrieve/manage bookmarks
+;; Copyright (C) 2012 Tom Willemsen <tom at ryuslash dot org>
+
+;; 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 3 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, see <http://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;; Path-related functions.
+
+;;; Code:
+
(declare (unit paths))
(define (stored-file xdg-env file)