Setting up my convoluted web parsing structure... in short:
[glcas.git] / plugins / repo.php
diff --git a/plugins/repo.php b/plugins/repo.php
new file mode 100644 (file)
index 0000000..804a5ce
--- /dev/null
@@ -0,0 +1,18 @@
+<?php
+$URL_HANDLERS["*"] = "GLCASRepo";
+
+class GLCASRepo {
+       function __construct($config)
+       {
+               $this->config = $config;
+       }
+       
+       function go($url)
+       {
+               echo "i am the repo man, i repo the repo";
+       }
+       
+       private $config;
+}
+
+?>
\ No newline at end of file