aboutsummaryrefslogtreecommitdiff
path: root/extensions
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2014-10-05 12:14:22 +0200
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2014-10-05 12:14:22 +0200
commitfebabccdd5e6db573ab80bd5c1758d136b91cd78 (patch)
treee72478f423302904d995402fb03caf8871f933bd /extensions
parent5474803aa7a05e4afa851c88bf21fd8383bf59d9 (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/.gitignore1
-rw-r--r--extensions/Read-me.txt15
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'.