diff options
| author | 2011-06-04 00:38:07 -0400 | |
|---|---|---|
| committer | 2011-06-04 00:38:07 -0400 | |
| commit | b628e63e015bc3b2eadc712feaa6c4d05cf75bbd (patch) | |
| tree | ebdcec5c8133a3b6f86d06dc3f6fb3de46609f04 /doc/developers/rules | |
| parent | 84e603aa91a303a1419962ff3ff6086710a7b1a9 (diff) | |
| parent | 4c8a53c5bc632302aaf8978e711eb53a03166db5 (diff) | |
| download | scuttle-b628e63e015bc3b2eadc712feaa6c4d05cf75bbd.tar.gz scuttle-b628e63e015bc3b2eadc712feaa6c4d05cf75bbd.zip | |
Merge branch 'master' into privatekey2
Conflicts:
data/templates/default/bookmarks.tpl.php
Diffstat (limited to 'doc/developers/rules')
| -rw-r--r-- | doc/developers/rules | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/doc/developers/rules b/doc/developers/rules deleted file mode 100644 index 701a215..0000000 --- a/doc/developers/rules +++ /dev/null @@ -1,30 +0,0 @@ -Rules for developers -==================== - -1. Coding style ---------------- -SemanticScuttle uses the PEAR Coding Standards. -While quite some parts still do not follow them, all of the -code will be coverted to them. When developing new code, -adhere to it. - -A helpful tool to check your coding style is PHP CodeSniffer, -http://pear.php.net/package/PHP_CodeSniffer - - -2. Unit tests -------------- -At least the service and model classes have unit tests. -If you fix things in there, make sure you -a) do not break the tests or -b) fix the tests if the old behavior was broken - - -3. Keep security in mind ------------------------- -As a web application, there are several attack vectors to SemanticScuttle. -When processing user input (form variables, URL parameters) -be sure to convert and validate them. If you expect a bookmark id, -there is no reason not to cast the variable to (int). - -Filter input, escape output. |