Skip to content

Instantly share code, notes, and snippets.

View lupo49's full-sized avatar

Matthias Schulte lupo49

  • DE, NRW, Sauerland
View GitHub Profile
@lupo49
lupo49 / pagelist-simplelist.diff
Created January 8, 2012 22:31
Patch for pagelist-plugin which allows displaying just a simple list of pages
diff --git a/helper.php b/helper.php
index 63e8b92..fd0b26e 100644
--- a/helper.php
+++ b/helper.php
@@ -125,6 +125,9 @@ class helper_plugin_pagelist extends DokuWiki_Plugin {
case 'list':
$this->style = 'list';
break;
+ case 'simplelist':
+ $this->style = 'simplelist'; // Displays pagenames only, no other information
@lupo49
lupo49 / evernote_dump_notes.php
Created January 1, 2012 14:35
Evernote - Dump content of Notes through PHP
<?php
// API documentation: https://www.evernote.com/about/developer/api/ref/
define("NE", "<br />");
require_once("autoload.php");
require_once("Thrift.php");
require_once("transport/TTransport.php");
require_once("transport/THttpClient.php");