From b03203c8cb991c16ac8a3d74c8c4078182d0bb48 Mon Sep 17 00:00:00 2001 From: Nishanth Amuluru Date: Tue, 11 Jan 2011 22:41:51 +0530 Subject: removed all the buildout files --- parts/django/extras/csrf_migration_helper.py | 357 --------------------------- 1 file changed, 357 deletions(-) delete mode 100644 parts/django/extras/csrf_migration_helper.py (limited to 'parts/django/extras/csrf_migration_helper.py') diff --git a/parts/django/extras/csrf_migration_helper.py b/parts/django/extras/csrf_migration_helper.py deleted file mode 100644 index 6416193..0000000 --- a/parts/django/extras/csrf_migration_helper.py +++ /dev/null @@ -1,357 +0,0 @@ -#!/usr/bin/env python - -# This script aims to help developers locate forms and view code that needs to -# use the new CSRF protection in Django 1.2. It tries to find all the code that -# may need the steps described in the CSRF documentation. It does not modify -# any code directly, it merely attempts to locate it. Developers should be -# aware of its limitations, described below. -# -# For each template that contains at least one POST form, the following info is printed: -# -# -# AKA: -# POST forms: -# With token: -# Without token: -# -# -# Searching for: -#