openrat-cms

# OpenRat Content Management System
git clone http://git.code.weiherhei.de/openrat-cms.git
Log | Files | Refs

commit 0a0af9b9d663b32a3b1ab9fb109ab3235ed6d83c
parent f41621b47c75fa24ea3fa1b052e3aa5577bc87f1
Author: Jan Dankert <develop@jandankert.de>
Date:   Mon, 27 May 2019 21:38:14 +0200

New: Readme for development scripts

Diffstat:
dev-helper/README.md | 18++++++++++++++++++
dev-helper/update.html | 9+++++++++
webdav.php | 2+-
3 files changed, 28 insertions(+), 1 deletion(-)

diff --git a/dev-helper/README.md b/dev-helper/README.md @@ -0,0 +1,18 @@ +# Development Tools + +These files are only necessary for developers! + +## Generate output files + +This tool is generating output files and is fixing file permissions. + +`create-output-files.sh` + +## Creating a release tag + +`tag-version.sh <version>` + +- updates the file `version.php` with the new version +- creates a git tag +- updates the file `version.php` with the snapshot version + diff --git a/dev-helper/update.html b/dev-helper/update.html @@ -0,0 +1,9 @@ +<html> + +<body> + +<h1>XSD Generator</h1> +<a href="../modules/template-engine/components/XSDGenerator.php">XSD Generator</a> + +</body> +</html> diff --git a/webdav.php b/webdav.php @@ -2,7 +2,7 @@ // Direkte Umleitung auf die WebDAV-Aktionsklasse. // Diese Datei ist notwendig, um Parameter in der Webdav-Einstiegs-URL zu vermeiden. -$_GET['action' ] = 'webdav'; +$_GET['action' ] = 'WebDAV.class'; $_GET['subaction'] = strtolower($_SERVER['REQUEST_METHOD']); require( 'index.php' );