Removed file/folder
authorAleksey Bragin <aleksey@reactos.org>
Sun, 2 Jan 2005 17:47:07 +0000 (17:47 +0000)
committerAleksey Bragin <aleksey@reactos.org>
Sun, 2 Jan 2005 17:47:07 +0000 (17:47 +0000)
svn path=/trunk/; revision=12727

reactos/hooks/post-commit.tmpl [deleted file]
reactos/hooks/post-revprop-change.tmpl [deleted file]
reactos/hooks/pre-commit.tmpl [deleted file]
reactos/hooks/pre-revprop-change.tmpl [deleted file]
reactos/hooks/start-commit.tmpl [deleted file]

diff --git a/reactos/hooks/post-commit.tmpl b/reactos/hooks/post-commit.tmpl
deleted file mode 100644 (file)
index 27d8032..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-#!/bin/sh\r
-\r
-# POST-COMMIT HOOK\r
-#\r
-# The post-commit hook is invoked after a commit.  Subversion runs\r
-# this hook by invoking a program (script, executable, binary, etc.)\r
-# named 'post-commit' (for which this file is a template) with the \r
-# following ordered arguments:\r
-#\r
-#   [1] REPOS-PATH   (the path to this repository)\r
-#   [2] REV          (the number of the revision just committed)\r
-#\r
-# The default working directory for the invocation is undefined, so\r
-# the program should set one explicitly if it cares.\r
-#\r
-# Because the commit has already completed and cannot be undone,\r
-# the exit code of the hook program is ignored.  The hook program\r
-# can use the 'svnlook' utility to help it examine the\r
-# newly-committed tree.\r
-#\r
-# On a Unix system, the normal procedure is to have 'post-commit'\r
-# invoke other programs to do the real work, though it may do the\r
-# work itself too.\r
-#\r
-# Note that 'post-commit' must be executable by the user(s) who will\r
-# invoke it (typically the user httpd runs as), and that user must\r
-# have filesystem-level permission to access the repository.\r
-#\r
-# On a Windows system, you should name the hook program\r
-# 'post-commit.bat' or 'post-commit.exe',\r
-# but the basic idea is the same.\r
-# \r
-# Here is an example hook script, for a Unix /bin/sh interpreter:\r
-\r
-REPOS="$1"\r
-REV="$2"\r
-\r
-commit-email.pl "$REPOS" "$REV" commit-watchers@example.org\r
-log-commit.py --repository "$REPOS" --revision "$REV"\r
diff --git a/reactos/hooks/post-revprop-change.tmpl b/reactos/hooks/post-revprop-change.tmpl
deleted file mode 100644 (file)
index 7d13ce5..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/bin/sh\r
-\r
-# POST-REVPROP-CHANGE HOOK\r
-#\r
-# The post-revprop-change hook is invoked after a revision property\r
-# has been changed. Subversion runs this hook by invoking a program\r
-# (script, executable, binary, etc.) named 'post-revprop-change'\r
-# (for which this file is a template), with the following ordered\r
-# arguments:\r
-#\r
-#   [1] REPOS-PATH   (the path to this repository)\r
-#   [2] REV          (the revision that was tweaked)\r
-#   [3] USER         (the username of the person tweaking the property)\r
-#   [4] PROPNAME     (the property that was changed)\r
-#\r
-# Because the propchange has already completed and cannot be undone,\r
-# the exit code of the hook program is ignored.  The hook program\r
-# can use the 'svnlook' utility to help it examine the\r
-# new property value.\r
-#\r
-# On a Unix system, the normal procedure is to have 'post-revprop-change'\r
-# invoke other programs to do the real work, though it may do the\r
-# work itself too.\r
-#\r
-# Note that 'post-revprop-change' must be executable by the user(s) who will\r
-# invoke it (typically the user httpd runs as), and that user must\r
-# have filesystem-level permission to access the repository.\r
-#\r
-# On a Windows system, you should name the hook program\r
-# 'post-revprop-change.bat' or 'post-revprop-change.exe',\r
-# but the basic idea is the same.\r
-# \r
-# Here is an example hook script, for a Unix /bin/sh interpreter:\r
-\r
-REPOS="$1"\r
-REV="$2"\r
-USER="$3"\r
-PROPNAME="$4"\r
-\r
-propchange-email.pl "$REPOS" "$REV" "$USER" "$PROPNAME" watchers@example.org\r
diff --git a/reactos/hooks/pre-commit.tmpl b/reactos/hooks/pre-commit.tmpl
deleted file mode 100644 (file)
index ce228d3..0000000
+++ /dev/null
@@ -1,58 +0,0 @@
-#!/bin/sh\r
-\r
-# PRE-COMMIT HOOK\r
-#\r
-# The pre-commit hook is invoked before a Subversion txn is\r
-# committed.  Subversion runs this hook by invoking a program\r
-# (script, executable, binary, etc.) named 'pre-commit' (for which\r
-# this file is a template), with the following ordered arguments:\r
-#\r
-#   [1] REPOS-PATH   (the path to this repository)\r
-#   [2] TXN-NAME     (the name of the txn about to be committed)\r
-#\r
-# The default working directory for the invocation is undefined, so\r
-# the program should set one explicitly if it cares.\r
-#\r
-# If the hook program exits with success, the txn is committed; but\r
-# if it exits with failure (non-zero), the txn is aborted, no commit\r
-# takes place, and STDERR is returned to the client.   The hook\r
-# program can use the 'svnlook' utility to help it examine the txn.\r
-#\r
-# On a Unix system, the normal procedure is to have 'pre-commit'\r
-# invoke other programs to do the real work, though it may do the\r
-# work itself too.\r
-#\r
-#   ***  NOTE: THE HOOK PROGRAM MUST NOT MODIFY THE TXN, EXCEPT  ***\r
-#   ***  FOR REVISION PROPERTIES (like svn:log or svn:author).   ***\r
-#\r
-#   This is why we recommend using the read-only 'svnlook' utility.\r
-#   In the future, Subversion may enforce the rule that pre-commit\r
-#   hooks should not modify the versioned data in txns, or else come\r
-#   up with a mechanism to make it safe to do so (by informing the\r
-#   committing client of the changes).  However, right now neither\r
-#   mechanism is implemented, so hook writers just have to be careful.\r
-#\r
-# Note that 'pre-commit' must be executable by the user(s) who will\r
-# invoke it (typically the user httpd runs as), and that user must\r
-# have filesystem-level permission to access the repository.\r
-#\r
-# On a Windows system, you should name the hook program\r
-# 'pre-commit.bat' or 'pre-commit.exe',\r
-# but the basic idea is the same.\r
-#\r
-# Here is an example hook script, for a Unix /bin/sh interpreter:\r
-\r
-REPOS="$1"\r
-TXN="$2"\r
-\r
-# Make sure that the log message contains some text.\r
-SVNLOOK=/usr/local/bin/svnlook\r
-$SVNLOOK log -t "$TXN" "$REPOS" | \\r
-   grep "[a-zA-Z0-9]" > /dev/null || exit 1\r
-\r
-# Check that the author of this commit has the rights to perform\r
-# the commit on the files and directories being modified.\r
-commit-access-control.pl "$REPOS" "$TXN" commit-access-control.cfg || exit 1\r
-\r
-# All checks passed, so allow the commit.\r
-exit 0\r
diff --git a/reactos/hooks/pre-revprop-change.tmpl b/reactos/hooks/pre-revprop-change.tmpl
deleted file mode 100644 (file)
index 78857a9..0000000
+++ /dev/null
@@ -1,49 +0,0 @@
-#!/bin/sh\r
-\r
-# PRE-REVPROP-CHANGE HOOK\r
-#\r
-# The pre-revprop-change hook is invoked before a revision property\r
-# is modified.  Subversion runs this hook by invoking a program\r
-# (script, executable, binary, etc.) named 'pre-revprop-change' (for which\r
-# this file is a template), with the following ordered arguments:\r
-#\r
-#   [1] REPOS-PATH   (the path to this repository)\r
-#   [2] REVISION     (the revision being tweaked)\r
-#   [3] USER         (the username of the person tweaking the property)\r
-#   [4] PROPNAME     (the property being set on the revision)\r
-#\r
-#   [STDIN] PROPVAL  ** the property value is passed via STDIN.\r
-#\r
-# If the hook program exits with success, the propchange happens; but\r
-# if it exits with failure (non-zero), the propchange doesn't happen.\r
-# The hook program can use the 'svnlook' utility to examine the \r
-# existing value of the revision property.\r
-#\r
-# WARNING: unlike other hooks, this hook MUST exist for revision\r
-# properties to be changed.  If the hook does not exist, Subversion \r
-# will behave as if the hook were present, but failed.  The reason\r
-# for this is that revision properties are UNVERSIONED, meaning that\r
-# a successful propchange is destructive;  the old value is gone\r
-# forever.  We recommend the hook back up the old value somewhere.\r
-#\r
-# On a Unix system, the normal procedure is to have 'pre-revprop-change'\r
-# invoke other programs to do the real work, though it may do the\r
-# work itself too.\r
-#\r
-# Note that 'pre-revprop-change' must be executable by the user(s) who will\r
-# invoke it (typically the user httpd runs as), and that user must\r
-# have filesystem-level permission to access the repository.\r
-#\r
-# On a Windows system, you should name the hook program\r
-# 'pre-revprop-change.bat' or 'pre-revprop-change.exe',\r
-# but the basic idea is the same.\r
-#\r
-# Here is an example hook script, for a Unix /bin/sh interpreter:\r
-\r
-REPOS="$1"\r
-REV="$2"\r
-USER="$3"\r
-PROPNAME="$4"\r
-\r
-if [ "$PROPNAME" = "svn:log" ]; then exit 0; fi\r
-exit 1\r
diff --git a/reactos/hooks/start-commit.tmpl b/reactos/hooks/start-commit.tmpl
deleted file mode 100644 (file)
index 2f26ea2..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-#!/bin/sh\r
-\r
-# START-COMMIT HOOK\r
-#\r
-# The start-commit hook is invoked before a Subversion txn is created\r
-# in the process of doing a commit.  Subversion runs this hook\r
-# by invoking a program (script, executable, binary, etc.) named\r
-# 'start-commit' (for which this file is a template)\r
-# with the following ordered arguments:\r
-#\r
-#   [1] REPOS-PATH   (the path to this repository)\r
-#   [2] USER         (the authenticated user attempting to commit)\r
-#\r
-# The default working directory for the invocation is undefined, so\r
-# the program should set one explicitly if it cares.\r
-#\r
-# If the hook program exits with success, the commit continues; but\r
-# if it exits with failure (non-zero), the commit is stopped before\r
-# a Subversion txn is created, and STDERR is returned to the client.\r
-#\r
-# On a Unix system, the normal procedure is to have 'start-commit'\r
-# invoke other programs to do the real work, though it may do the\r
-# work itself too.\r
-#\r
-# Note that 'start-commit' must be executable by the user(s) who will\r
-# invoke it (typically the user httpd runs as), and that user must\r
-# have filesystem-level permission to access the repository.\r
-#\r
-# On a Windows system, you should name the hook program\r
-# 'start-commit.bat' or 'start-commit.exe',\r
-# but the basic idea is the same.\r
-# \r
-# Here is an example hook script, for a Unix /bin/sh interpreter:\r
-\r
-REPOS="$1"\r
-USER="$2"\r
-\r
-commit-allower.pl --repository "$REPOS" --user "$USER" || exit 1\r
-special-auth-check.py --user "$USER" --auth-level 3 || exit 1\r
-\r
-# All checks passed, so allow the commit.\r
-exit 0\r