diff options
| author | 2014-10-05 12:14:22 +0200 | |
|---|---|---|
| committer | 2014-10-05 12:14:22 +0200 | |
| commit | febabccdd5e6db573ab80bd5c1758d136b91cd78 (patch) | |
| tree | e72478f423302904d995402fb03caf8871f933bd /extensions | |
| parent | 5474803aa7a05e4afa851c88bf21fd8383bf59d9 (diff) | |
Primitive extension system
https://github.com/marienfressinaud/FreshRSS/issues/252
I have been using this extension system for a little while, in
particular to include custom CSS and/or JavaScript (inclusion of PHP
code is not done yet).
There is very little code and it does not impact performances.
I hurry to post it before
https://github.com/marienfressinaud/FreshRSS/issues/655
Diffstat (limited to 'extensions')
| -rw-r--r-- | extensions/.gitignore | 1 | ||||
| -rw-r--r-- | extensions/Read-me.txt | 15 |
2 files changed, 16 insertions, 0 deletions
diff --git a/extensions/.gitignore b/extensions/.gitignore new file mode 100644 index 000000000..d93e5e396 --- /dev/null +++ b/extensions/.gitignore @@ -0,0 +1 @@ +/[xX] diff --git a/extensions/Read-me.txt b/extensions/Read-me.txt new file mode 100644 index 000000000..e7b66d5bc --- /dev/null +++ b/extensions/Read-me.txt @@ -0,0 +1,15 @@ +== FreshRSS extensions == + +You may place in this directory some custom extensions for FreshRSS. + +The structure must be: + +./FreshRSS/extensions/ + ./NameOfExtensionAlphanumeric/ + ./style.css + ./script.js + ./module.php + +Each file is optional. + +The name of non-official extensions should start by an 'x'. |
