From 6e6a719b569f93a77160b5933c64a36f2de202e1 Mon Sep 17 00:00:00 2001
From: Yoshinori Okuji <yo@nexedi.com>
Date: Wed, 8 Sep 2004 13:20:15 +0000
Subject: [PATCH] Renamed from organisation_edit.py to Organisation_edit.py.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@1628 20353a03-c40f-0410-a6d1-a30d3c3de9de
---
 .../{organisation_edit.py => Organisation_edit.py}     | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
 rename product/ERP5/skins/erp5_crm/{organisation_edit.py => Organisation_edit.py} (73%)

diff --git a/product/ERP5/skins/erp5_crm/organisation_edit.py b/product/ERP5/skins/erp5_crm/Organisation_edit.py
similarity index 73%
rename from product/ERP5/skins/erp5_crm/organisation_edit.py
rename to product/ERP5/skins/erp5_crm/Organisation_edit.py
index 465fd83ef2..47055f7a4e 100755
--- a/product/ERP5/skins/erp5_crm/organisation_edit.py
+++ b/product/ERP5/skins/erp5_crm/Organisation_edit.py
@@ -1,4 +1,4 @@
-## Script (Python) "organisation_edit"
+## Script (Python) "Organisation_edit"
 ##bind container=container
 ##bind context=context
 ##bind namespace=
@@ -13,18 +13,18 @@ request=context.REQUEST
 
 try:
   # Validate the form
-  context.organisation_view.validate_all_to_request(request)
+  context.Organisation_view.validate_all_to_request(request)
   context.edit(id=request.my_id
              , title=request.my_title
              , corporate_name = request.my_corporate_name
       , description = request.my_description)
 except FormValidationError, validation_errors:
   # Pack errors into the request
-  field_errors = context.organisation_view.ErrorFields(validation_errors)
+  field_errors = context.Organisation_view.ErrorFields(validation_errors)
   request.set('field_errors', field_errors)
-  return context.organisation_view(request)
+  return context.Organisation_view(request)
 else:
-  redirect_url = '%s/organisation_view?%s' % ( context.absolute_url()
+  redirect_url = '%s/Organisation_view?%s' % ( context.absolute_url()
                                   , 'portal_status_message=Data+Updated.'
                                   )
 
-- 
2.30.9