summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rw-r--r--plugins/no_url_hashes/init.js4
-rw-r--r--plugins/no_url_hashes/init.php25
2 files changed, 29 insertions, 0 deletions
diff --git a/plugins/no_url_hashes/init.js b/plugins/no_url_hashes/init.js
new file mode 100644
index 000000000..a437a1f3e
--- /dev/null
+++ b/plugins/no_url_hashes/init.js
@@ -0,0 +1,4 @@
+dojo.addOnLoad(function() {
+ hash_set = function() { };
+ hash_get = function() { };
+});
diff --git a/plugins/no_url_hashes/init.php b/plugins/no_url_hashes/init.php
new file mode 100644
index 000000000..da31267c2
--- /dev/null
+++ b/plugins/no_url_hashes/init.php
@@ -0,0 +1,25 @@
+<?php
+class No_URL_Hashes extends Plugin {
+ private $host;
+
+ function about() {
+ return array(1.0,
+ "Disable URL hash usage (e.g. #f=10, etc)",
+ "fox");
+ }
+
+ function init($host) {
+ $this->host = $host;
+
+ }
+
+ function get_js() {
+ return file_get_contents(__DIR__ . "/init.js");
+ }
+
+ function api_version() {
+ return 2;
+ }
+
+}
+?>