-
Notifications
You must be signed in to change notification settings - Fork 13
/
README
43 lines (30 loc) · 1.28 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
PHP SVN HOOKS
=============
This micro projet allow you to easily write SVN pre_commit hook in PHP.
Installation
------------
* Just deploy this project to your server.
* Copy the pre_commit.tmpl to the repository of your choice, rename it to pre_commit
* Edit and adapt the pre_commmit script to match the project directory
Create your own hook
--------------------
* Add a new file XXXCheck.class.php in the checks directory
* Extend the class BasePreCommitCheck
* Override the mandatory methods:
* getTitle();
* renderErrorSummary();
* Override the methods of your choice, according to what you wanna test:
* checkSvnComment($comment);
* checkFileLine($file, $pos, $content);
* checkFullFile($lines, $filename)
Testing
-------
As it's can be panful to process a commit each time you wanna test, there is test suite avaliable based on lime.
Just go to the root folder and run
php test/run_all.php
To run a specific check test, call directly the test file, for exemple:
php test/checks/NoTabCheckTest.php
To write your own test, just copy and paste and existing test file, and adapt it!
How to contribute
-----------------
If you want to contribute please fell to fork or to send your comment. I will be happy to complete this repo according to your needs...