]> 91.132.146.200 Git - aranea.git/commitdiff
code license and config update
authorBanana <mail@bananas-playground.net>
Wed, 9 Oct 2024 21:36:37 +0000 (23:36 +0200)
committerBanana <mail@bananas-playground.net>
Wed, 9 Oct 2024 21:36:37 +0000 (23:36 +0200)
Signed-off-by: Banana <mail@bananas-playground.net>
CHANGELOG
TODO
webroot/.gitignore [new file with mode: 0644]
webroot/config.default.php
webroot/config.php [deleted file]
webroot/view/system/menu.php
webroot/view/system/message.php

index 05f786a45fd00b00b8e7cb3cbfb7666068c73157..da9ae536eeb920bd5ce130aca5baf0881903e2ae 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,9 @@
+0.3
++ Add: Web interface
++ Folder structure to separate crawler and web interface.
++ Setup sql file changed. Creation of the database needs to be done beforehand.
++ Updated documentation.
+
 0.2
 + Cleanups
 + License change
diff --git a/TODO b/TODO
index c51e172d62a48775d20ea632125a90ef7770bdd6..f7a6f7922c2c46ea7430affe26a0d9ab53b360f1 100644 (file)
--- a/TODO
+++ b/TODO
@@ -1,3 +1,3 @@
 Set correct timezone. Maybe in config?
 Some sort of matching against spam domain list?
-A web view for the results?
+Documentation for web interface and installation.
diff --git a/webroot/.gitignore b/webroot/.gitignore
new file mode 100644 (file)
index 0000000..4f4773f
--- /dev/null
@@ -0,0 +1 @@
+config.php
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..43ff6257a20c3417ccfe2b27fd87e5802d8dafd1 100644 (file)
@@ -0,0 +1,36 @@
+<?php
+/**
+ * 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/gpl-3.0.
+ *
+ * 2022 - 2024 https://www.bananas-playground.net/projekt/aranea
+ */
+
+# set to true if you need debug messages in error log file
+const DEBUG = true;
+# set to ture if you need query log messages in error log file.
+const QUERY_DEBUG = true;
+
+# timezone settings
+const TIMEZONE = 'Europe/Berlin';
+
+# path settings
+const PATH_ABSOLUTE = '/path/to/aranea/webroot';
+const PATH_LOG = PATH_ABSOLUTE.'/log';
+const LOGFILE = PATH_LOG.'/aranea.log';
+
+# db settings
+const DB_HOST = 'localhost';
+const DB_USERNAME = 'user';
+const DB_PASSWORD = 'test';
+const DB_NAME = 'aranea';
diff --git a/webroot/config.php b/webroot/config.php
deleted file mode 100644 (file)
index 4beadda..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-<?php
-/**
- * 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/gpl-3.0.
- *
- * 2022 - 2024 https://www.bananas-playground.net/projekt/aranea
- */
-
-# set to true if you need debug messages in error log file
-const DEBUG = true;
-# set to ture if you need query log messages in error log file.
-const QUERY_DEBUG = true;
-
-# timezone settings
-const TIMEZONE = 'Europe/Berlin';
-
-# path settings
-const PATH_ABSOLUTE = '/home/banana/code/aranea/webroot';
-const PATH_LOG = PATH_ABSOLUTE.'/log';
-const LOGFILE = PATH_LOG.'/aranea.log';
-
-# db settings
-const DB_HOST = 'localhost';
-const DB_USERNAME = 'user';
-const DB_PASSWORD = 'test';
-const DB_NAME = 'aranea';
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..e6ecffe8a4f92178b7560544fa57173e6e35c000 100644 (file)
@@ -0,0 +1,17 @@
+<?php
+/**
+ * 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/gpl-3.0.
+ *
+ * 2022 - 2024 https://www.bananas-playground.net/projekt/aranea
+ */
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..e6ecffe8a4f92178b7560544fa57173e6e35c000 100644 (file)
@@ -0,0 +1,17 @@
+<?php
+/**
+ * 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/gpl-3.0.
+ *
+ * 2022 - 2024 https://www.bananas-playground.net/projekt/aranea
+ */