Commit 19479af1 authored by Kevin Deldycke's avatar Kevin Deldycke

Update ZMySQLDDA string.

Replace some Tabs with Spaces.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@7701 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 197db67b
Z MySQL DDA Releases Z MySQL Deferred DA Releases
2.0.9 2.0.9
......
...@@ -101,7 +101,7 @@ class DeferredConnection(Connection): ...@@ -101,7 +101,7 @@ class DeferredConnection(Connection):
Experimental MySQL DA which implements Experimental MySQL DA which implements
deferred SQL code execution to reduce locking issues deferred SQL code execution to reduce locking issues
""" """
meta_type=title='Z %s Database Deferred Connection' % database_type meta_type=title='Z %s Deferred Database Connection' % database_type
def factory(self): return DeferredDB def factory(self): return DeferredDB
...@@ -118,7 +118,7 @@ class DeferredConnection(Connection): ...@@ -118,7 +118,7 @@ class DeferredConnection(Connection):
classes=('DA.DeferredConnection') classes=('DA.DeferredConnection')
meta_types=( meta_types=(
{'name':'Z %s Database Deferred Connection' % database_type, {'name':'Z %s Deferred Database Connection' % database_type,
'action':'manage_addZ%sDeferredConnectionForm' % database_type, 'action':'manage_addZ%sDeferredConnectionForm' % database_type,
}, },
) )
......
...@@ -97,7 +97,7 @@ def initialize(context): ...@@ -97,7 +97,7 @@ def initialize(context):
context.registerClass( context.registerClass(
DA.DeferredConnection, DA.DeferredConnection,
permission='Add Z MySQL Database Deferred Connections', permission='Add Z MySQL Deferred Database Connections',
constructors=(DA.manage_addZMySQLDeferredConnectionForm, constructors=(DA.manage_addZMySQLDeferredConnectionForm,
DA.manage_addZMySQLDeferredConnection,) DA.manage_addZMySQLDeferredConnection,)
) )
......
<html> <html>
<head><title>Add Z MySQL Database Connection</title></head> <head><title>Add Z MySQL Deferred Database Connection</title></head>
<body bgcolor="#FFFFFF" link="#000099" vlink="#555555" alink="#77003B"> <body bgcolor="#FFFFFF" link="#000099" vlink="#555555" alink="#77003B">
<h2>Add Z MySQL Database Deferred Connection</h2> <h2>Add Z MySQL Database Deferred Connection</h2>
......
<html> <html>
<head><title>Add Z MySQL Database Connection</title></head> <head><title>Add Z MySQL Deferred Database Connection</title></head>
<body bgcolor="#FFFFFF" link="#000099" vlink="#555555" alink="#77003B"> <body bgcolor="#FFFFFF" link="#000099" vlink="#555555" alink="#77003B">
<h2>Add Z MySQL Database Connection</h2> <h2>Add Z MySQL Deferred Database Connection</h2>
<form action="manage_addZMySQLDeferredConnection" method="POST"> <form action="manage_addZMySQLDeferredConnection" method="POST">
<table cellspacing="2"> <table cellspacing="2">
......
class DB: class DB:
"""This is the ZMySQLDDA Database Deferred Connection Object.""" """This is the ZMySQLDDA Deferred Database Connection Object."""
def __init__(self,connection): def __init__(self,connection):
""" """
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment