This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from log import setup_logger | |
class Communicator(object): | |
def __init__(self, logger=None): | |
if logger is None: | |
logger = setup_logger(__name__) | |
self.log = logger |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
urls = ['https://en.wikipedia.org/wiki/%s' % n for n in range(100)] | |
# Code that creates a new connection for every request | |
for url in urls: | |
r = requests.get(url) | |
data = r.text | |
print len(data) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<configure | |
xmlns:browser="http://namespaces.zope.org/browser"> | |
<browser:page | |
name="trigger-csrf" | |
for="Products.CMFPlone.interfaces.IPloneSiteRoot" | |
class=".trigger.TriggerCSRFProtection" | |
permission="cmf.ManagePortal" | |
/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""Helper to trace ZODB object registrations in order to debug CSRF false | |
positives with plone.protect. | |
This helper is intended for DEBUGGING, not for use in production! | |
""" | |
from collections import namedtuple | |
from functools import partial | |
from threading import local | |
from ZODB.utils import u64 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
from ftw.shop.interfaces import IPaymentProcessor | |
from ftw.shop.interfaces import IShoppingCart | |
from ftwshop.adminpay.interfaces import IAdminpayAccountConfig | |
from ftwshop.adminpay.interfaces import IGlobalAdminpaySettings | |
from plone.registry.interfaces import IRegistry | |
from Products.Five.browser import BrowserView | |
from Products.Five.browser.pagetemplatefile import ViewPageTemplateFile | |
from zope.component import adapts | |
from zope.component import getMultiAdapter |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
lukasgraf@helios ~/Plone/buildouts/opengever/og-core-4.x $ bin/buildout -vvvvvvv | |
Installing 'mr.developer', 'lovely.buildouthttp'. | |
We have the distribution that satisfies 'mr.developer==1.21'. | |
We have the best distribution that satisfies 'lovely.buildouthttp'. | |
Picked: lovely.buildouthttp = 0.5.0 | |
mr.developer: Queued 'opengever.maintenance' for checkout. | |
mr.developer: Updated 'opengever.maintenance' with git. | |
lovely.buildouthttp: Added credentials 'foo', 'http://psc.4teamwork.ch' | |
lovely.buildouthttp: Added credentials 'bar', 'https://svn.4teamwork.ch' | |
Installing 'zc.buildout', 'setuptools'. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
lukasgraf@helios ~/Plone/buildouts/opengever/og-core-4.x $ md5 bootstrap.py | |
MD5 (bootstrap.py) = dcf4d3aa7102eb3885a7cea1f6b50a23 | |
lukasgraf@helios ~/Plone/buildouts/opengever/og-core-4.x $ python2.7 bootstrap.py | |
Downloading https://pypi.python.org/packages/source/s/setuptools/setuptools-7.0.zip | |
Extracting in /var/folders/d5/8djs4qxd78lb98g8r7hyp7wr0000gn/T/tmpDoh09p | |
Now working in /var/folders/d5/8djs4qxd78lb98g8r7hyp7wr0000gn/T/tmpDoh09p/setuptools-7.0 | |
Building a Setuptools egg in /var/folders/d5/8djs4qxd78lb98g8r7hyp7wr0000gn/T/tmpt3fsyg | |
/var/folders/d5/8djs4qxd78lb98g8r7hyp7wr0000gn/T/tmpt3fsyg/setuptools-7.0-py2.7.egg |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from http.server import BaseHTTPRequestHandler, HTTPServer | |
from socket import socket | |
from socketserver import ThreadingMixIn | |
from threading import Thread | |
import logging | |
import ssl | |
class LoggingSSLSocket(ssl.SSLSocket): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<rules | |
xmlns="http://namespaces.plone.org/diazo" | |
xmlns:css="http://namespaces.plone.org/diazo/css" | |
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | |
<rules css:if-not-content="body.template-mail_password_form, body.template-mail_password_response, body.template-pwreset_form, body.template-register, body.template-registered"> | |
<drop css:content="#hugo" /> | |
</rules> | |
</rules> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" ?> | |
<ldapplugins> | |
<ldapplugin title="Example LDAP" id="ldap" meta_type="Plone LDAP plugin" update="False"> | |
<interface value="IAuthenticationPlugin"/> | |
<interface value="ICredentialsResetPlugin"/> | |
<interface value="IGroupEnumerationPlugin"/> | |
<interface value="IGroupIntrospection"/> | |
<interface value="IGroupManagement"/> |
NewerOlder