Dokuwiki Plugin, um Benachrichtigungen zu Mattermost zu senden

Für Mattermost gibt es bei Dokuwiki selbst kein Notifier Plugin. Das schöne ist aber, dass man stattdessen einfach das Slack Notifier Plugin nutzen kann. Man konfiguriert dann in den Plugin-Einstellungen die Slack Incoming Webhook URL auf einen Webhook, den man in Mattermost angelegt hat.

Oktober 31, 2024 · 1 Minute

Gource und Dokuwiki – Bearbeitungen visualisieren

In Anlehnung an den französischen Blogeintrag von Wolverine will ich hier einmal auf deutsch erklären, wie man die Änderungen aus einem Dokuwiki mit Gource unter Ubuntu visualisiert. Zunächst installiert man, sofern noch nicht vorhanden, Gource: sudo aptitude install gource Anschließend muss das folgende Python-Script in eine Datei verfrachtet werden und ausführbar gemacht werden. Es dient dazu die *.changes$-Dateien vom Dokuwiki in ein für Gource lesbares Format zu bringen. #!/usr/bin/python """ This program parse logs of a dokuwiki and tranform them for gource (a log viewer) http://code.google.com/p/gource/ developped by WolverineX02 site : http://wolverinex02.blogspot.com """ import os.path import getopt import sys import re def listdirectory2(path): """list all the files like *.changes, read them and output them in gource's log syntax """ for root, dirs, files in os.walk(path): for i in files: if (re.search('\.changes$', i)): fichier = os.path.join(root, i) myfile = open(fichier, 'r') for line in myfile.readlines(): mots = line.split() if len(mots)>=5: resultat = mots[0] + "|" resultat += mots[4] + "|" resultat += translate(mots[2]) + "|" resultat += fichier print resultat elif len(mots)==4: resultat = mots[0] + "|Anonymous|" resultat += translate(mots[2]) + "|" resultat += fichier print resultat myfile.close() def translate(mot): """translate the dokuwiki vocabulary to the gource one C -> A E -> M other -> M """ if mot == "C": return "A" elif mot == "E": return "M" else: return "M" def main(argv): """principal function """ try: opts, args = getopt.getopt(argv, "hd:", ["help", "dokuwiki="]) except getopt.GetoptError: usage() sys.exit(2) for opt, arg in opts: if opt in ("-h","--help"): usage() sys.exit() elif opt in ("-d","--dokuwiki"): print listdirectory2(arg) def usage(): """this function will display how to use this script """ print "This script will output change logs of a dokuwiki" print "in a friendly way for gource" print "how to use it :" print "python gourcedoku.py -d ~/Sites/MyDokuwiki/ | sort > dokusort.log" print "and then :" print "gource --log-format custom dokusort.log --stop-position 1.0 \ " print "--stop-on-idle --file-idle-time 10000000" print "---" print "-h : help " print "-d : meta directory of your dokuwiki" #print listdirectory2(sys.argv[1]) if __name__ == "__main__": main(sys.argv[1:]) Nachdem man nun die Pythondatei (Bsp.name hier: doku2gource.py) hat, führt man folgenden Befehl aus: ...

Mai 15, 2010 · 2 Minuten

Authentifizierung für Dokuwiki am Woltlab Burning Board 3.1

Da ich die aktuelle Version “Lemming” eines Dokuwikis an meinem WBB-Forum authentifizieren lassen möchte, damit sich alle User, die bereits im Forum registriert sind, nicht noch einmal im Wiki registrieren müssen, habe ich meine Änderungen am Dokuwiki dokumentiert. Ich werde die Informationen, die dazu notwendig sind jedoch nicht hier pflegen, sondern im Dokuwiki an der entsprechenden Stelle, die hier wäre: http://www.dokuwiki.org/auth:mysql_wbb Ob diese Lösung auch für WBB-3.0 klappt, weiß ich nicht. Vielleicht kann das mal jemand testen und berichten. Ich hoffe ich konnte noch jemanden damit helfen. Update: Umsetzung nun ohne Gefusche im Core. :) Thanks to Splitbrain.

April 2, 2010 · 1 Minute