aboutsummaryrefslogtreecommitdiffstats
path: root/library/blueimp_upload/CONTRIBUTING.md
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-10-05 01:18:50 -0700
committerfriendica <info@friendica.com>2014-10-05 01:18:50 -0700
commit82ba42586cc9427b8a118c30462fc66d92cffecd (patch)
tree6b8866b0f357a4e7cff3b6c80f42c56ad44376c9 /library/blueimp_upload/CONTRIBUTING.md
parent191ef124cf6f6ec3978eededba13bd13463140a1 (diff)
downloadvolse-hubzilla-82ba42586cc9427b8a118c30462fc66d92cffecd.tar.gz
volse-hubzilla-82ba42586cc9427b8a118c30462fc66d92cffecd.tar.bz2
volse-hubzilla-82ba42586cc9427b8a118c30462fc66d92cffecd.zip
add blueimp-jquery-file-upload library
Diffstat (limited to 'library/blueimp_upload/CONTRIBUTING.md')
-rw-r--r--library/blueimp_upload/CONTRIBUTING.md42
1 files changed, 42 insertions, 0 deletions
diff --git a/library/blueimp_upload/CONTRIBUTING.md b/library/blueimp_upload/CONTRIBUTING.md
new file mode 100644
index 000000000..b8708f8b6
--- /dev/null
+++ b/library/blueimp_upload/CONTRIBUTING.md
@@ -0,0 +1,42 @@
+# Issue Guidelines
+
+The issues tracker should only be used for **bugs** or **feature requests**.
+
+Please post **support requests** and **general discussions** about this project to the [support forum](https://groups.google.com/d/forum/jquery-fileupload).
+
+## Bugs
+
+Please follow these guidelines before reporting a bug:
+
+1. **Update to the latest version** &mdash; Check if you can reproduce the issue with the latest version from the `master` branch.
+
+2. **Use the GitHub issue search** &mdash; check if the issue has already been reported. If it has been, please comment on the existing issue.
+
+3. **Isolate the demonstrable problem** &mdash; Try to reproduce the problem with the [Demo](https://blueimp.github.io/jQuery-File-Upload/) or with a reduced test case that includes the least amount of code necessary to reproduce the problem.
+
+4. **Provide a means to reproduce the problem** &mdash; Please provide as much details as possible, e.g. server information, browser and operating system versions, steps to reproduce the problem. If possible, provide a link to your reduced test case, e.g. via [JSFiddle](http://jsfiddle.net/).
+
+
+## Feature requests
+
+Please follow the bug guidelines above for feature requests, i.e. update to the latest version and search for exising issues before posting a new request.
+
+Generally, feature requests might be accepted if the implementation would benefit a broader use case or the project could be considered incomplete without that feature.
+
+If you need help integrating this project into another framework, please post your request to the [support forum](https://groups.google.com/d/forum/jquery-fileupload).
+
+## Pull requests
+
+[Pull requests](https://help.github.com/articles/using-pull-requests) are welcome and the preferred way of accepting code contributions.
+
+However, if you add a server-side upload handler implementation for another framework, please continue to maintain this version in your own fork without sending a pull request. You are welcome to add a link and possibly documentation about your implementation to the [Wiki](https://github.com/blueimp/jQuery-File-Upload/wiki).
+
+Please follow these guidelines before sending a pull request:
+
+1. Update your fork to the latest upstream version.
+
+2. Follow the coding conventions of the original repository. Changes to one of the JavaScript source files are required to pass the [JSHint](http://www.jshint.com/) validation tool.
+
+3. Keep your commits as atomar as possible, i.e. create a new commit for every single bug fix or feature added.
+
+4. Always add meaningfull commit messages.