Skip to content

Instantly share code, notes, and snippets.

Test 123 grgfrgfsdgsdf
commit 0954a59be189ea6313f93636603082043f1e1e3f
Author: Arjan Scherpenisse <arjan@scherpenisse.net>
Date: Tue Sep 21 20:05:42 2010 +0200
Updated Python defs to 1.2.13
diff --git a/clutter/clutter-base.defs b/clutter/clutter-base.defs
index 0752ebe..8122dac 100644
--- a/clutter/clutter-base.defs
+++ b/clutter/clutter-base.defs
Welcome to Zotonic!
Release 0.5.0, released on 2010-10-03
-------------------------------------
* New features:
** Simpler module system
Modules are simpler, do not have to be a fullblown
2010-10-16 13:55:25+0200 [XmlStream,client] RECV: "<iq from='pubsub.mediamatic.net' to='test@scherpenisse.net/aggregator' id='H_4' type='result'><pubsub xmlns='http://jabber.org/protocol/pubsub'><subscription node='ikcam/28344' jid='test@scherpenisse.net/aggregator' subscription='subscribed'/></pubsub></iq>"
2010-10-16 13:55:30+0200 [HTTPPageDownloader,client] Unhandled Error
Traceback (most recent call last):
File "/usr/lib/python2.6/dist-packages/twisted/application/app.py", line 311, in runReactorWithLogging
reactor.run()
File "/usr/lib/python2.6/dist-packages/twisted/internet/base.py", line 1165, in run
self.mainLoop()
File "/usr/lib/python2.6/dist-packages/twisted/internet/base.py", line 1177, in mainLoop
self.doIteration(t)
File "/usr/lib/python2.6/dist-packages/twisted/internet/selectreactor.py", line 140, in doSelect
Release 0.6.0, released on 2011-02-08
-------------------------------------
* New features:
** SSL support
Zotonic has gotten support for serving web pages over secure HTTPS
connections. When configured, it listens by default on port 8443.
@arjan
arjan / zotonic modules
Created February 13, 2011 20:20
List of zotonic modules
Core modules
mod_acl_adminonly
mod_acl_simple_roles
mod_admin
mod_admin_category
mod_admin_config
mod_admin_identity
mod_admin_modules
mod_admin_predicate
@arjan
arjan / z-backport
Created February 14, 2011 08:14
Backport latest zotonic commit to the most recent release branch
#!/bin/bash
if [ "`hg branch`" != "default" ]; then
echo "You need to be on the default branch."
exit
fi
REV="`hg parents |grep changeset|awk -F: '{print $2}'`"
REV=`echo $REV` # trim whitespace
TARGET=$1
@arjan
arjan / make-separate-zotonic-module.sh
Created February 15, 2011 19:21
convert zotonic repo to separate hg module
#!/bin/bash
GOOGLE_USERNAME="username"
GOOGLE_PASSWORD="xxx"
# note git-z is zotonic checkout in git
if [ "$1" = "" ]; then
echo "$0 <module>"
exit 1
<VirtualHost *:80>
ServerAdmin arjan@mediamatic.nl
ServerName identity.local
DocumentRoot /home/arjan/mm/identity/trunk/www
php_value memory_limit 64M
ErrorLog /var/log/apache2/identity-error.log
CustomLog /var/log/apache2/identity-access.log combined
@arjan
arjan / mod_google_blog_pinger.erl
Created March 5, 2011 13:44
Zotonic module to ping the Google blog pinger service whenever an article is updated.
%% @author Arjan Scherpenisse <arjan@scherpenisse.net>
%% @copyright 2011 Arjan Scherpenisse
%% Date: 2011-03-05
%% @doc Ping Google blog pinger service whenever an article is updated.
%% Copyright 2011 Arjan Scherpenisse
%%
%% Licensed under the Apache License, Version 2.0 (the "License");
%% you may not use this file except in compliance with the License.
%% You may obtain a copy of the License at