From mboxrd@z Thu Jan 1 00:00:00 1970 From: kupcevic@sourceware.org Date: 26 Jul 2006 18:04:01 -0000 Subject: [Cluster-devel] conga ./conga.spec.in.in luci/plone-custom/bas ... Message-ID: <20060726180401.10523.qmail@sourceware.org> List-Id: To: cluster-devel.redhat.com MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit CVSROOT: /cvs/cluster Module name: conga Changes by: kupcevic at sourceware.org 2006-07-26 18:03:57 Modified files: . : conga.spec.in.in luci/plone-custom: base.css custom.xml failsafe_login_form login_form login_form_validate login_password login_success portlet_login luci/site/luci/var: Data.fs make : version.in Added files: luci/plone-custom: join_form_validate logged_out Removed files: luci/plone-custom: login_initial login_next registered Log message: Update Luci to Plone 2.5 New build: conga-0.8-9 Patches: http://sourceware.org/cgi-bin/cvsweb.cgi/conga/conga.spec.in.in.diff?cvsroot=cluster&r1=1.19&r2=1.20 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/plone-custom/join_form_validate.diff?cvsroot=cluster&r1=NONE&r2=1.1 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/plone-custom/logged_out.diff?cvsroot=cluster&r1=NONE&r2=1.1 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/plone-custom/base.css.diff?cvsroot=cluster&r1=1.1&r2=1.2 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/plone-custom/custom.xml.diff?cvsroot=cluster&r1=1.2&r2=1.3 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/plone-custom/failsafe_login_form.diff?cvsroot=cluster&r1=1.1&r2=1.2 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/plone-custom/login_form.diff?cvsroot=cluster&r1=1.1&r2=1.2 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/plone-custom/login_form_validate.diff?cvsroot=cluster&r1=1.1&r2=1.2 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/plone-custom/login_password.diff?cvsroot=cluster&r1=1.1&r2=1.2 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/plone-custom/login_success.diff?cvsroot=cluster&r1=1.1&r2=1.2 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/plone-custom/portlet_login.diff?cvsroot=cluster&r1=1.1&r2=1.2 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/plone-custom/login_initial.diff?cvsroot=cluster&r1=1.1&r2=NONE http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/plone-custom/login_next.diff?cvsroot=cluster&r1=1.1&r2=NONE http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/plone-custom/registered.diff?cvsroot=cluster&r1=1.1&r2=NONE http://sourceware.org/cgi-bin/cvsweb.cgi/conga/luci/site/luci/var/Data.fs.diff?cvsroot=cluster&r1=1.7&r2=1.8 http://sourceware.org/cgi-bin/cvsweb.cgi/conga/make/version.in.diff?cvsroot=cluster&r1=1.9&r2=1.10 --- conga/conga.spec.in.in 2006/07/25 21:00:40 1.19 +++ conga/conga.spec.in.in 2006/07/26 18:03:55 1.20 @@ -119,7 +119,7 @@ %else Requires: python Requires: zope -Requires: plone +Requires: plone >= 2.5 %endif Requires: openssl mailcap stunnel Requires: sed util-linux @@ -472,6 +472,8 @@ %changelog +* Wed Jul 26 2006 Stanko Kupcevic 0.8-9 +- Update Luci to Plone 2.5 * Tue Jul 25 2006 Stanko Kupcevic 0.8-8 - New build with a lot of implementation details on Luci - Last build with plone 2.1.2 /cvs/cluster/conga/luci/plone-custom/join_form_validate,v --> standard output revision 1.1 --- conga/luci/plone-custom/join_form_validate +++ - 2006-07-26 18:03:58.840615000 +0000 @@ -0,0 +1,57 @@ +## Controller Validator "join_form_validate" +##bind container=container +##bind context=context +##bind namespace= +##bind script=script +##bind state=state +##bind subpath=traverse_subpath +##parameters=username='',email='',password='',password_confirm='' +##title=validates the Registration of a User +## +from Products.CMFPlone import PloneMessageFactory as _ + +return state.set(status='failure') + +reg_tool=context.portal_registration +def missing(field): + state.setError(field, _(u'This field is required, please provide some information.'), 'input_required') +def nomatch(field): + state.setError(field, _(u'Passwords do not match.'), 'nomatch_password') +def minlimit(field): + state.setError(field, _(u'Passwords must contain at least 5 letters.'), 'min_password') +def notallowed(field): + state.setError(field, _(u'This username is reserved. Please choose a different name.'), 'not_allowed') + +if not username: + missing('username') +if not email: + missing('email') +if username and username == context.portal_url.getPortalObject().getId(): + notallowed('username') + +properties = context.portal_properties.site_properties +if not properties.validate_email: + if password!=password_confirm: + nomatch('password') + nomatch('password_confirm') + + if not password: + missing('password') + if not password_confirm: + missing('password_confirm') + + if not state.getError('password') and len(password) < 5: + minlimit('password') + minlimit('password_confirm') + +if not state.getError('username') and not reg_tool.isMemberIdAllowed(username): + state.setError('username', + _(u'The login name you selected is already in use or is not valid. Please choose another.'), + 'username_invalid' ) + +if state.getErrors(): + context.plone_utils.addPortalMessage(_(u'Please correct the indicated errors.')) + return state.set(status='failure') +else: + context.plone_utils.addPortalMessage(_(u'You have been registered.')) + return state /cvs/cluster/conga/luci/plone-custom/logged_out,v --> standard output revision 1.1 --- conga/luci/plone-custom/logged_out +++ - 2006-07-26 18:03:58.932797000 +0000 @@ -0,0 +1,35 @@ + + + + +
+ + +

You are now logged out

+ +
+

We hope you enjoyed using our services. We look forward to seeing you again.

+ +

Best Regards from the + portal title + team. +

+
+
+ + +

Quit your web browser to log out

+ +

+ Because you are logged in via HTTP authentication, the only + way to log out is to quit your web browser. +

+
+ +
+ + --- conga/luci/plone-custom/base.css 2006/07/26 16:55:37 1.1 +++ conga/luci/plone-custom/base.css 2006/07/26 18:03:55 1.2 @@ -235,5 +235,37 @@ display: none; } +/* Accessibility and visual enhancement elements */ + +.hiddenStructure { + display: block; + background: transparent; + background-image: none; /* safari bug */ + border: none; + height: 1px; + overflow: hidden; + padding: 0; + margin: -1px 0 0 -1px; + width: 1px; +} + +.contentViews .hiddenStructure, +.contentActions .hiddenStructure { + position: absolute; + top: -200px; + left: -200px; +} + +.hiddenLabel { + display: block; + background: transparent; + background-image: none; /* safari bug */ + border: none; + height: 1px; + overflow: hidden; + padding: 0; + margin: -1px 0 0 -1px; + width: 1px; +} /* */ --- conga/luci/plone-custom/custom.xml 2006/07/26 11:24:02 1.2 +++ conga/luci/plone-custom/custom.xml 2006/07/26 18:03:55 1.3 @@ -1,358 +1,390 @@ - + - - + + - + - colophon + colophon - AAAAAAAAYfM= + AAAAAAAAYd8= - login_form + default_error_message_CUSTOM - AAAAAAAAYfQ= + AAAAAAAAYeE= - id - custom + logged_out + + AAAAAAAAYkA= + - default_error_message + login_form - AAAAAAAAYfU= + AAAAAAAAYkM= - title + id + custom + + + title - document_edit_form_TEST + document_edit_form_TEST - AAAAAAAAYfY= + AAAAAAAAYeI= - failsafe_login_form + failsafe_login_form - AAAAAAAAYfc= + AAAAAAAAYeM= - logo.jpg + logo.jpg - AAAAAAAAYfg= + AAAAAAAAYeQ= - _objects + _objects - - + + + + meta_type + Controller Page Template + + + id + + + + + + + File + + + + dropdown.js_TEST + + + - meta_type - Controller Page Template + + - id - + + highlightsearchterms.js_TEST - + - - File + + - - dropdown.js_TEST + + login.js_TEST - + - - + + - - highlightsearchterms.js_TEST + + login_form_TEST - + - - + meta_type + Image - - login.js_TEST + id + - + - - + meta_type + Page Template - - login_form_TEST + id + footer - + - meta_type - Image + meta_type + External Method - id - + id + siteIsSetup - + - meta_type - Page Template + meta_type + Page Template - id - footer + id + - + - meta_type - External Method + meta_type + Controller Page Template - id - siteIsSetup + id + failsafe_login_form - + - meta_type - Page Template + + - id - + + login_password - + - meta_type - Page Template + meta_type + Page Template - id - + id + login_success - + - meta_type - Controller Page Template + + Controller Validator - id - failsafe_login_form + + login_form_validate - + - - + + - - login_form + + join_form_validate - + - - + meta_type + Page Template - - login_password + id + global_searchbox - + - meta_type - Page Template + + - id - login_success + + main_template - + - - Controller Validator + meta_type + DTML Method - - login_form_validate + id + base.css - + - - + meta_type + Page Template - - join_form_validate + id + logged_out - + - - + meta_type + Page Template - - login_failed + id + portlet_login - + - meta_type - Page Template + + - id - global_searchbox + + login_failed - + - - + + Controller Page Template - - main_template + + login_form - + - meta_type - DTML Method + meta_type + Page Template - id - base.css + id + - + + + AAAAAAAAYeU= + + + + global_searchbox - AAAAAAAAYfk= + AAAAAAAAYeY= - global_searchbox + - AAAAAAAAYfo= + AAAAAAAAYec= - + login_form_validate - AAAAAAAAYfs= + AAAAAAAAYeg= - login_form_validate + - AAAAAAAAYfw= + AAAAAAAAYek= - + - AAAAAAAAYf0= + AAAAAAAAYeo= - + login_success - AAAAAAAAYf4= + AAAAAAAAYes= - login_success + login_password - AAAAAAAAYf8= + AAAAAAAAYew= - login_password + - AAAAAAAAYgA= + AAAAAAAAYe0= - + footer - AAAAAAAAYgE= + AAAAAAAAYe4= - footer + - AAAAAAAAYgI= + AAAAAAAAYkE= - + - AAAAAAAAYgM= + AAAAAAAAYe8= - login_failed + login_failed - AAAAAAAAYgQ= + AAAAAAAAYkI= - main_template + main_template - AAAAAAAAYgU= + AAAAAAAAYfE= - siteIsSetup + siteIsSetup - AAAAAAAAYgY= + AAAAAAAAYfI= - __ac_local_roles__ + __ac_local_roles__ - + - admin + admin - - Owner + + Owner @@ -362,86 +394,86 @@ - + - - + + - + - _Take_ownership_Permission + _Take_ownership_Permission - - Manager + + Manager - _WebDAV_access_Permission + _WebDAV_access_Permission - - + + - _Change_bindings_Permission + _Change_bindings_Permission - - + + - _Access_contents_information_Permission + _Access_contents_information_Permission - - + + - id - colophon + id + colophon - title + title - _Delete_objects_Permission + _Delete_objects_Permission - - + + - _View_Permission + _View_Permission - - + + - _Copy_or_Move_Permission + _Copy_or_Move_Permission - - + + - content_type - text/html + content_type + text/html - _text - _text + - _View_management_screens_Permission + _View_management_screens_Permission - - + + - _Change_cache_settings_Permission + _Change_cache_settings_Permission - - + + - expand + expand 0 - _WebDAV_Unlock_items_Permission + _WebDAV_Unlock_items_Permission - - + + - _Manage_properties_Permission + _Manage_properties_Permission - - + + - _WebDAV_Lock_items_Permission + _WebDAV_Lock_items_Permission - - + + - _Undo_changes_Permission + _Undo_changes_Permission - - + + - _FTP_access_Permission + _FTP_access_Permission - - + + - _Manage_WebDAV_Locks_Permission + _Manage_WebDAV_Locks_Permission - - + + - _bind_names + _bind_names - + - + - + - _asgns + _asgns - + - name_subpath - traverse_subpath + name_subpath + traverse_subpath @@ -554,22 +586,22 @@ - _Change_permissions_Permission + _Change_permissions_Permission - - + + - __ac_local_roles__ + __ac_local_roles__ - + - admin + admin - - Owner + + Owner @@ -579,355 +611,181 @@ - + - - + + - + - _Take_ownership_Permission + _Take_ownership_Permission - - Manager + + Manager - _WebDAV_access_Permission + _WebDAV_access_Permission - - + + - actions - - AAAAAAAAYgc= - - - - _Change_bindings_Permission + _Change_bindings_Permission - - + + - validators - - AAAAAAAAYgg= - - - - _Access_contents_information_Permission + _Access_contents_information_Permission - - + + - id - login_form + id + default_error_message_CUSTOM - title + title - _Delete_objects_Permission + _Delete_objects_Permission - - + + - expand - 0 - - - _Manage_portal_Permission + _View_Permission - - + + - _Copy_or_Move_Permission + _Copy_or_Move_Permission - - + + - content_type - text/html + content_type + text/html - _text - _text + \n -\n -\n - \n - \n -\n -\n -\n -\n -
\n -\n -

Please log in

\n -\n -\n -\n -
\n - While cookie authentication is disabled, cookie-based login is not available.\n -
\n -\n -
\n -

This site has not yet been initialized.

\n -

Please login to the server as root and run the command luci_admin init to initialize it.\n -

\n -\n -
\n -If you have forgotten your password, you can reset the password by logging in to the server as root and running the command luci_admin password.\n -
\n -\n -
\n -\n -
\n -\n - Account details\n -\n - \n -\n - \n - \n - \n - \n - \n -\n -
\n -\n - \n -\n -
\n - Login names are case sensitive, make sure the caps lock key is not enabled.\n -
\n -\n -
Validation error output
\n -\n - \n -\n -
\n -\n -
\n -\n - \n -\n -
\n -
\n - Case sensitive, make sure caps lock is not enabled.\n -
\n -
\n -\n -
Validation error output
\n -\n - \n -
\n -\n -
\n -\n - \n -\n - \n -\n -
\n - Check this to have your user name filled in automatically when you log in later.\n -
\n -\n -
\n -\n -
\n -\n - \n -\n -
\n -\n -

\n - Please log out or exit your browser when you\'re done.\n -

\n -\n -
\n +\n \n -
\n -
\n +Sorry, some internal error has occured :(\n \n -\n - +\n + ]]>
- _View_management_screens_Permission + _View_management_screens_Permission - - + + - _Change_cache_settings_Permission + _Change_cache_settings_Permission - - + + - _View_Permission - - - - - + expand + 0 - _WebDAV_Unlock_items_Permission + _WebDAV_Unlock_items_Permission - - + + - _Manage_properties_Permission + _Manage_properties_Permission - - + + - _WebDAV_Lock_items_Permission + _WebDAV_Lock_items_Permission - - + + - _Undo_changes_Permission + _Undo_changes_Permission - - + + - _FTP_access_Permission + _FTP_access_Permission - - + + - _Manage_WebDAV_Locks_Permission + _Manage_WebDAV_Locks_Permission - - + + - _bind_names + _bind_names - + - + - + - _asgns + _asgns - + - name_subpath - traverse_subpath + name_subpath + traverse_subpath @@ -938,22 +796,22 @@ - _Change_permissions_Permission + _Change_permissions_Permission - - + + - __ac_local_roles__ + __ac_local_roles__ - + - admin + admin - - Owner + + Owner @@ -963,90 +821,120 @@ - + - - + + - + - _Take_ownership_Permission + _Take_ownership_Permission - - Manager + + Manager - _WebDAV_access_Permission + _WebDAV_access_Permission - - + + - _Change_bindings_Permission + _Change_bindings_Permission - - + + - _Access_contents_information_Permission + _Access_contents_information_Permission - - + + - id - default_error_message + id + logged_out - title + title - _Delete_objects_Permission + _Delete_objects_Permission - - + + - _View_Permission + _View_Permission - - + + - _Copy_or_Move_Permission + _Copy_or_Move_Permission - - + + - content_type - text/html + content_type + text/html - _text - _text + \n +\n \n -Sorry, some internal error has occured :(\n + \n +\n +
\n +\n +\n +

You are now logged out

\n +\n +
\n +

We hope you enjoyed using our services. We look forward to seeing you again.

\n +\n +

Best Regards from the\n + portal title\n + team.\n +

\n +
\n +
\n +\n +\n +

Quit your web browser to log out

\n + \n +

\n + Because you are logged in via HTTP authentication, the only\n + way to log out is to quit your web browser.\n +

\n +
\n +\n +
\n \n \n @@ -1054,90 +942,90 @@ ]]>
- _View_management_screens_Permission + _View_management_screens_Permission - - + + - _Change_cache_settings_Permission + _Change_cache_settings_Permission - - + + - expand + expand 0 - _WebDAV_Unlock_items_Permission + _WebDAV_Unlock_items_Permission - - + + - _Manage_properties_Permission + _Manage_properties_Permission - - + + - _WebDAV_Lock_items_Permission + _WebDAV_Lock_items_Permission - - + + - _Undo_changes_Permission + _Undo_changes_Permission - - + + - _FTP_access_Permission + _FTP_access_Permission - - + + - _Manage_WebDAV_Locks_Permission + _Manage_WebDAV_Locks_Permission - - + + - _bind_names + _bind_names - + - + - + - _asgns + _asgns - + - name_subpath - traverse_subpath + name_subpath + traverse_subpath @@ -1148,22 +1036,22 @@ - _Change_permissions_Permission + _Change_permissions_Permission - - + + - __ac_local_roles__ + __ac_local_roles__ - + - admin + admin - - Owner + + Owner @@ -1173,122 +1061,525 @@ - + - - + + - + - _Take_ownership_Permission + _Take_ownership_Permission - - Manager + + Manager - _WebDAV_access_Permission + _WebDAV_access_Permission - - + + - actions + actions - AAAAAAAAYgk= + AAAAAAAAYkQ= - _Change_bindings_Permission + _Change_bindings_Permission - - + + - validators + validators - AAAAAAAAYgo= + AAAAAAAAYkU= - _Access_contents_information_Permission + _Access_contents_information_Permission - - + + - id - document_edit_form_TEST + id + login_form + + + title + - _Delete_objects_Permission + _Delete_objects_Permission - - + + - _View_Permission - - - Authenticated - - + expand + 0 - _Manage_portal_Permission + _Manage_portal_Permission - - + + - _Copy_or_Move_Permission + _Copy_or_Move_Permission - - + + - content_type - text/html + content_type + text/html - _text - _text + \n \n - \n +\n + \n + \n +\n \n -
\n +\n \n -

\n - Edit\n - \n - \n +\n +
\n +

This site has not yet been initialized.

\n +

Please login to the server as root and run the command luci_admin init to initialize it.\n +

\n +\n +
\n +

Please log in

\n +\n +

\n +To access this part of the site, you need to log in with your user name and password.\n +

\n +\n +

\n +\n +If you do not have an account here, head over to the\n +\n +\n + \n + registration form.\n +\n +

\n +\n +\n +\n +
\n + While cookie authentication is disabled, cookie-based login is not available.\n +
\n +\n +
\n +\n +
\n +\n + Account details\n +\n + \n +\n + \n + \n + \n + \n + \n +\n +
\n +\n + \n +\n +
\n + Login names are case sensitive, make sure the caps lock key is not enabled.\n +
\n +\n +
Validation error output
\n +\n + \n +\n +
\n +\n +
\n +\n + \n +\n +
\n +
\n + Case sensitive, make sure caps lock is not enabled.\n +
\n +
\n +\n +
Validation error output
\n +\n + \n +
\n +\n +
\n +\n + \n +\n + \n +\n +
\n + Check this to have your user name filled in automatically when you log in later.\n +
\n +\n +
\n +\n +
\n +\n + \n +\n +
\n +\n +

\n + Please log out or exit your browser when you\'re done.\n +

\n +\n +
\n +\n +
\n +
\n +

\n +\n +\n +\n + + +]]>
+
+ + _View_management_screens_Permission + + + + + + + + _Change_cache_settings_Permission + + + + + + + + _View_Permission + + + + + + + + _WebDAV_Unlock_items_Permission + + + + + + + + _Manage_properties_Permission + + + + + + + + _WebDAV_Lock_items_Permission + + + + + + + + _Undo_changes_Permission + + + + + + + + _FTP_access_Permission + + + + + + + + _Manage_WebDAV_Locks_Permission + + + + + + + + _bind_names + + + + + + + + + + _asgns + + + + name_subpath + traverse_subpath + + + + + + + + + + + _Change_permissions_Permission + + + + + + + + __ac_local_roles__ + + + + admin + + + Owner + + + + + + +
+
+
+ + + + + + + + + + + _Take_ownership_Permission + + + Manager + + + + + _WebDAV_access_Permission + + + + + + + + actions + + AAAAAAAAYfU= + + + + _Change_bindings_Permission + + + + + + + + validators + + AAAAAAAAYfY= + + + + _Access_contents_information_Permission + + + + + + + + id + document_edit_form_TEST + + + _Delete_objects_Permission + + + + + + + + _View_Permission + + + Authenticated + + + + + _Manage_portal_Permission + + + + + + + + _Copy_or_Move_Permission + + + + + + + + content_type + text/html + + + _text + \n +\n + \n +\n +
\n +\n +

\n + Edit\n + \n + Item type\n \n

\n @@ -1460,90 +1751,90 @@ ]]> - _View_management_screens_Permission + _View_management_screens_Permission - - + + - _Change_cache_settings_Permission + _Change_cache_settings_Permission - - + + - expand + expand 0 - _WebDAV_Unlock_items_Permission + _WebDAV_Unlock_items_Permission - - + + - _Manage_properties_Permission + _Manage_properties_Permission - - + + - _WebDAV_Lock_items_Permission + _WebDAV_Lock_items_Permission - - + + - _Undo_changes_Permission + _Undo_changes_Permission - - + + - _FTP_access_Permission + _FTP_access_Permission - - + + - _Manage_WebDAV_Locks_Permission + _Manage_WebDAV_Locks_Permission - - + + - _bind_names + _bind_names - + - + - + - _asgns + _asgns - + - name_subpath - traverse_subpath + name_subpath + traverse_subpath @@ -1554,22 +1845,22 @@ - _Change_permissions_Permission + _Change_permissions_Permission - - + + - __ac_local_roles__ + __ac_local_roles__ - + - admin + admin - - Owner + + Owner @@ -1579,102 +1870,102 @@ - + - - + + - + - _Take_ownership_Permission + _Take_ownership_Permission - - Manager + + Manager - _WebDAV_access_Permission + _WebDAV_access_Permission - - + + - actions + actions - AAAAAAAAYgs= + AAAAAAAAYfc= - _Change_bindings_Permission + _Change_bindings_Permission - - + + - validators + validators - AAAAAAAAYgw= + AAAAAAAAYfg= - _Access_contents_information_Permission + _Access_contents_information_Permission - - + + - id - failsafe_login_form + id + failsafe_login_form - title + title - _Delete_objects_Permission + _Delete_objects_Permission - - + + - expand + expand 0 - _Manage_portal_Permission + _Manage_portal_Permission - - + + - _Copy_or_Move_Permission + _Copy_or_Move_Permission - - + + - content_type - text/html + content_type + text/html - _text - _text + \n @@ -1694,7 +1985,7 @@ ztutils modules/ZTUtils;\n errors options/state/getErrors;">\n \n -

Please log in

\n +

Log in

\n \n

\n To access this part of the site, you need to log in with your user name and password.\n @@ -1709,6 +2000,11 @@ While cookie authentication is disabled, cookie-based login is not available.\n \n \n +

\n +If you have forgotten your password, you can reset the password by logging in to the server as root and running the command luci_admin password.\n +
\n +\n
- _View_management_screens_Permission + _View_management_screens_Permission - - + + - _Change_cache_settings_Permission + _Change_cache_settings_Permission - - + + - _View_Permission + _View_Permission - - + + - _WebDAV_Unlock_items_Permission + _WebDAV_Unlock_items_Permission - - + + - _Manage_properties_Permission + _Manage_properties_Permission - - + + - _WebDAV_Lock_items_Permission + _WebDAV_Lock_items_Permission - - + + - _Undo_changes_Permission + _Undo_changes_Permission - - + + - _FTP_access_Permission + _FTP_access_Permission - - + + - _Manage_WebDAV_Locks_Permission + _Manage_WebDAV_Locks_Permission - - + + - _bind_names + _bind_names - + - + - + - _asgns + _asgns - + - name_subpath - traverse_subpath + name_subpath + traverse_subpath @@ -1929,22 +2225,22 @@ - _Change_permissions_Permission + _Change_permissions_Permission - - + + - __ac_local_roles__ + __ac_local_roles__ - + - admin + admin - - Owner + + Owner @@ -1954,102 +2250,102 @@ - + - - + + - + - precondition + precondition - _Take_ownership_Permission + _Take_ownership_Permission - - Manager + + Manager - _WebDAV_access_Permission + _WebDAV_access_Permission - - + + - height + height 50 - _View_management_screens_Permission + _View_management_screens_Permission - - + + - _Access_contents_information_Permission + _Access_contents_information_Permission - - + + - size + size 21557 - title - clusterbanner + title + clusterbanner - _Cacheable__manager_id - HTTPCache + _Cacheable__manager_id + HTTPCache - _Delete_objects_Permission + _Delete_objects_Permission - - + + - _Copy_or_Move_Permission + _Copy_or_Move_Permission - - + + - content_type - image/png + content_type + image/png - __name__ - logo.jpg + __name__ + logo.jpg - _Change_cache_settings_Permission + _Change_cache_settings_Permission - - + + - data - iVBORw0KGgoAAAANSUhEUgAAAcIAAAAyCAIAAABAn0y/AAAACXBIWXMAAAsTAAALEwEAmpwYAAAA + data + iVBORw0KGgoAAAANSUhEUgAAAcIAAAAyCAIAAABAn0y/AAAACXBIWXMAAAsTAAALEwEAmpwYAAAA B3RJTUUH1gMUDyQAatxJEQAAIABJREFUeF7tnQdgHcW1sO/u3q7eiyVbknuvGGMb22A6pobyEiAk 5L0k/wshPS9/ykuBhEB6ISHkpUEIoYbfEAjNBuNece+SLcnqvd2++39n9kq6kiVshxKSp0Vc7907 O3PmzMyZ00ezLMvxr34l9vFM7x0OnVfstxIxlViPaZqDUDhEK+qR1DAQ4YNfHVisv13esn/SNYFG @@ -2430,78 +2726,78 @@ AAAASUVORK5CYII= - _View_Permission + _View_Permission - - + + - _WebDAV_Unlock_items_Permission + _WebDAV_Unlock_items_Permission - - + + - _Manage_properties_Permission + _Manage_properties_Permission - - + + - _WebDAV_Lock_items_Permission + _WebDAV_Lock_items_Permission - - + + - _Undo_changes_Permission + _Undo_changes_Permission - - + + - _FTP_access_Permission + _FTP_access_Permission - - + + - _Manage_WebDAV_Locks_Permission + _Manage_WebDAV_Locks_Permission - - + + - _Change_permissions_Permission + _Change_permissions_Permission - - + + - __ac_local_roles__ + __ac_local_roles__ - + - admin + admin - - Owner + + Owner @@ -2509,104 +2805,104 @@ - width + width 450 - + - - + + - + - precondition + precondition - _Take_ownership_Permission + _Take_ownership_Permission - - Manager + + Manager - _WebDAV_access_Permission + _WebDAV_access_Permission - - + + - _View_management_screens_Permission + _View_management_screens_Permission - - + + - _Access_contents_information_Permission + _Access_contents_information_Permission - - + + - size + size 2841 - title + title - _Delete_objects_Permission + _Delete_objects_Permission - - + + - _EtagSupport__etag - ts48383847.59 + _EtagSupport__etag + ts48383847.59 - _Copy_or_Move_Permission + _Copy_or_Move_Permission - - + + - content_type - application/x-javascript + content_type + application/x-javascript - __name__ - highlightsearchterms.js_TEST + __name__ + highlightsearchterms.js_TEST - _Change_cache_settings_Permission + _Change_cache_settings_Permission - - + + - data - data + - _View_Permission + _View_Permission - - + + - _WebDAV_Unlock_items_Permission + _WebDAV_Unlock_items_Permission - - + + - _Manage_properties_Permission + _Manage_properties_Permission - - + + - _WebDAV_Lock_items_Permission + _WebDAV_Lock_items_Permission - - + + - _Undo_changes_Permission + _Undo_changes_Permission - - + + - _FTP_access_Permission + _FTP_access_Permission - - + + - _Manage_WebDAV_Locks_Permission + _Manage_WebDAV_Locks_Permission - - + + - _Change_permissions_Permission + _Change_permissions_Permission - - + + - __ac_local_roles__ + __ac_local_roles__ - + - admin + admin - - Owner + + Owner @@ -2773,86 +3069,86 @@ - + - - + + - + - _Take_ownership_Permission + _Take_ownership_Permission - - Manager + + Manager - _WebDAV_access_Permission + _WebDAV_access_Permission - - + + - _Change_bindings_Permission + _Change_bindings_Permission - - + + - _Access_contents_information_Permission + _Access_contents_information_Permission - - + + - id - global_searchbox + id + global_searchbox - title + title - _Delete_objects_Permission + _Delete_objects_Permission - - + + - _View_Permission + _View_Permission - - + + - _Copy_or_Move_Permission + _Copy_or_Move_Permission - - + + - content_type - text/html + content_type + text/html - _text - _text + \n @@ -2915,90 +3211,90 @@ ]]> - _View_management_screens_Permission + _View_management_screens_Permission - - + + - _Change_cache_settings_Permission + _Change_cache_settings_Permission - - + + - expand + expand 0 - _WebDAV_Unlock_items_Permission + _WebDAV_Unlock_items_Permission - - + + - _Manage_properties_Permission + _Manage_properties_Permission - - + + - _WebDAV_Lock_items_Permission + _WebDAV_Lock_items_Permission - - + + - _Undo_changes_Permission + _Undo_changes_Permission - - + + - _FTP_access_Permission + _FTP_access_Permission - - + + - _Manage_WebDAV_Locks_Permission + _Manage_WebDAV_Locks_Permission - - + + - _bind_names + _bind_names - + - + - + - _asgns + _asgns - + - name_subpath - traverse_subpath + name_subpath + traverse_subpath @@ -3009,22 +3305,22 @@ - _Change_permissions_Permission + _Change_permissions_Permission - - + + - __ac_local_roles__ + __ac_local_roles__ - + - admin + admin - - Owner + + Owner @@ -3034,26 +3330,26 @@ - + - - + + - + - _Take_ownership_Permission + _Take_ownership_Permission - - Manager + + Manager - _body - _body + - _WebDAV_access_Permission + _WebDAV_access_Permission - - + + - _View_History_Permission + _View_History_Permission - - + + - _Change_bindings_Permission + _Change_bindings_Permission - - + + - _Access_contents_information_Permission + _Access_contents_information_Permission - - + + - id - join_form_validate + id + join_form_validate - func_code + func_code - + - + - + - co_argcount + co_argcount 4 - co_varnames + co_varnames - - username - email - password - password_confirm - Products.CMFPlone - PloneMessageFactory + + username + email + password + password_confirm + Products.CMFPlone + PloneMessageFactory _ - _getattr_ - state - context - reg_tool - missing - nomatch - minlimit - notallowed - properties - len + _getattr_ + state + context + reg_tool + missing + nomatch + minlimit + notallowed + properties + len @@ -3186,38 +3482,38 @@ - _Change_Python_Scripts_Permission + _Change_Python_Scripts_Permission - - + + - errors + errors - _Delete_objects_Permission + _Delete_objects_Permission - - + + - title - validates the Registration of a User + title + validates the Registration of a User - Script_magic + Script_magic 3 - _code - YwAAAAAAAAAABQAAAEAAAABzGQAAAGQBAGQBAGQBAGQBAGQCAIQEAFoAAGQAAFMoAwAAAE50AAAA + _code + YwAAAAAAAAAABQAAAEAAAABzGQAAAGQBAGQBAGQBAGQBAGQCAIQEAFoAAGQAAFMoAwAAAE50AAAA AGMEAAAAEQAAABUAAAADAAAAc1sCAABkAQBrAABsAQCJAAABdAMAdAQAZAIAgwIAZAMAZAQAgwAB U3QDAHQFAGQFAIMCAH0KAIcAAGQGAIYAAH0LAIcAAGQHAIYAAH0MAIcAAGQIAIYAAH0NAIcAAGQJ AIYAAH0OAHwAAAxvDgABfAsAZAoAgwEAAW4BAAF8AQAMbw4AAXwLAGQLAIMBAAFuAQABfAAAbysA @@ -3267,113 +3563,113 @@ KAAAAABzFAAAAENvbnRyb2xsZXIgVmFsaWRhdG9ycwgAAAA8bW9kdWxlPgEAAABSAAAAAA== - _View_Permission - - - - - + _params + username=\'\',email=\'\',password=\'\',password_confirm=\'\' - Python_magic - bfINCg== + Python_magic + bfINCg== - _proxy_roles + _proxy_roles - _Manage_portal_Permission + _Manage_portal_Permission - - + + - warnings + warnings - _Change_proxy_roles_Permission + _Change_proxy_roles_Permission - - + + - _Copy_or_Move_Permission + _Copy_or_Move_Permission - - + + - _View_management_screens_Permission + _View_management_screens_Permission - - + + - _Change_cache_settings_Permission + _Change_cache_settings_Permission - - + + - _filepath - Controller Validator:/luci/portal_skins/custom/join_form_validate + _filepath + Controller Validator:/luci/portal_skins/custom/join_form_validate - _params - username=\'\',email=\'\',password=\'\',password_confirm=\'\' + _View_Permission + + + + + - _WebDAV_Unlock_items_Permission + _WebDAV_Unlock_items_Permission - - + + - _Manage_properties_Permission + _Manage_properties_Permission - - + + - _WebDAV_Lock_items_Permission + _WebDAV_Lock_items_Permission - - + + - _Undo_changes_Permission + _Undo_changes_Permission - - + + - func_defaults + func_defaults - + @@ -3382,46 +3678,46 @@ - _Manage_WebDAV_Locks_Permission + _Manage_WebDAV_Locks_Permission - - + + - _bind_names + _bind_names - + - + - + - _asgns + _asgns - + - name_container - container + name_context + - name_context - + name_subpath + traverse_subpath - name_subpath - traverse_subpath + name_state + - name_m_self - script + name_m_self + script - name_state - + name_container + container @@ -3432,22 +3728,22 @@ - _Change_permissions_Permission + _Change_permissions_Permission - - + + - __ac_local_roles__ + __ac_local_roles__ - + - admin + admin - - Owner + + Owner @@ -3457,26 +3753,26 @@ - + - - + + - + - _Take_ownership_Permission + _Take_ownership_Permission - - Manager + + Manager - _body - from Products.CMFPlone import PloneMessageFactory as _\n + _body + from Products.CMFPlone import PloneMessageFactory as _\n \n LOGIN_FAILED_MESSAGE = _(u\'Login failed\')\n \n @@ -3523,78 +3819,78 @@ - _WebDAV_access_Permission + _WebDAV_access_Permission - - + + - _View_History_Permission + _View_History_Permission - - + + - _Change_bindings_Permission + _Change_bindings_Permission - - + + - _Access_contents_information_Permission + _Access_contents_information_Permission - - + + - id - login_form_validate + id + login_form_validate - func_code + func_code - + - + - + - co_argcount + co_argcount 0 - co_varnames + co_varnames - - Products.CMFPlone - PloneMessageFactory + + Products.CMFPlone + PloneMessageFactory _ - LOGIN_FAILED_MESSAGE - _getattr_ - context - request - js_enabled - cookies_enabled - state - mt - getattr - None - auth - user_name - password_empty - ac_name - ac_password - verify_login_name + LOGIN_FAILED_MESSAGE + _getattr_ + context + request + js_enabled + cookies_enabled + state + mt + getattr + None + auth + user_name + password_empty + ac_name + ac_password + verify_login_name @@ -3604,38 +3900,38 @@ - _Change_Python_Scripts_Permission + _Change_Python_Scripts_Permission - - + + - errors + errors - _Delete_objects_Permission + _Delete_objects_Permission - - + + - title - Validate login + title + Validate login - Script_magic + Script_magic 3 - _code - YwAAAAAAAAAAAQAAAEAAAABzDQAAAGQBAIQAAFoAAGQAAFMoAgAAAE5jAAAAABMAAAAYAAAAQwAA + _code + YwAAAAAAAAAAAQAAAEAAAABzDQAAAGQBAIQAAFoAAGQAAFMoAgAAAE5jAAAAABMAAAAYAAAAQwAA AHPWAgAAZAEAawAAbAEAfQIAAXwCAGQCAIMBAH0DAHQEAHQFAGQDAIMCAH0GAHQEAHwGAGQEAIMC AGQFAGQGAIMCAH0HAHwHAGQHAGoCAHAKAAF8BwBkCABqAgB9BwB0BAB8BgBkBACDAgBkCQBkBgCD AgB9CAB8CABkBwBqAgBwCgABfAgAZAgAagIAfQgAfAcAbwUAAXwIAAxvQAABdAQAdAQAdAUAZAoA @@ -3673,158 +3969,158 @@ AAA8bW9kdWxlPgEAAAB0AAAAAA== - _params - + _View_Permission + + + + + - Python_magic - bfINCg== + Python_magic + bfINCg== - _proxy_roles + _proxy_roles - - Manager + + Manager - _Manage_portal_Permission + _Manage_portal_Permission - - + + - warnings + warnings - _Change_proxy_roles_Permission + _Change_proxy_roles_Permission - - + + - _Copy_or_Move_Permission + _Copy_or_Move_Permission - - + + - _View_management_screens_Permission + _View_management_screens_Permission - - + + - _Change_cache_settings_Permission + _Change_cache_settings_Permission - - + + - _filepath - Controller Validator:/luci/portal_skins/custom/login_form_validate + _filepath + Controller Validator:/luci/portal_skins/custom/login_form_validate - _View_Permission - - - - - + _params + - _WebDAV_Unlock_items_Permission + _WebDAV_Unlock_items_Permission - - + + - _Manage_properties_Permission + _Manage_properties_Permission - - + + - _WebDAV_Lock_items_Permission + _WebDAV_Lock_items_Permission - - + + - _Undo_changes_Permission + _Undo_changes_Permission - - + + - func_defaults + func_defaults - _Manage_WebDAV_Locks_Permission + _Manage_WebDAV_Locks_Permission - - + + - _bind_names + _bind_names - + - + - + - _asgns + _asgns - + - name_container - container + name_context + - name_context - + name_subpath + traverse_subpath - name_subpath - traverse_subpath + name_state + - name_m_self - script + name_m_self + script - name_state - + name_container + container @@ -3835,22 +4131,22 @@ - _Change_permissions_Permission + _Change_permissions_Permission - - + + - __ac_local_roles__ + __ac_local_roles__ - + - admin + admin - - Owner + + Owner @@ -3860,42 +4156,42 @@ - + - - + + - + - _FTP_access_Permission + _FTP_access_Permission - - Manager + + Manager - _WebDAV_access_Permission + _WebDAV_access_Permission - - + + - _Take_ownership_Permission + _Take_ownership_Permission - - + + - raw - raw + - globals + globals - + - __name__ - base.css + __name__ + base.css - _Access_contents_information_Permission + _Access_contents_information_Permission - - + + - title + title - _Delete_objects_Permission + _Delete_objects_Permission - - + + - _vars + _vars - + - _proxy_roles + _proxy_roles - _Copy_or_Move_Permission + _Copy_or_Move_Permission - - + + - _View_management_screens_Permission + _View_management_screens_Permission - - + + - _Change_cache_settings_Permission + _Change_cache_settings_Permission - - + + - _View_Permission + _View_Permission - - + + - _WebDAV_Unlock_items_Permission + _WebDAV_Unlock_items_Permission - - + + - _Manage_properties_Permission + _Manage_properties_Permission - - + + - _WebDAV_Lock_items_Permission + _WebDAV_Lock_items_Permission - - + + - _Undo_changes_Permission + _Undo_changes_Permission - - + + - _Manage_WebDAV_Locks_Permission + _Manage_WebDAV_Locks_Permission - - + + - _Change_permissions_Permission + _Change_permissions_Permission - - + + - __ac_local_roles__ + __ac_local_roles__ - + - admin + admin - - Owner + + Owner @@ -4312,98 +4608,98 @@ - + - - + + - + - precondition + precondition - _Take_ownership_Permission + _Take_ownership_Permission - - Manager + + Manager - _WebDAV_access_Permission + _WebDAV_access_Permission - - + + - _View_management_screens_Permission + _View_management_screens_Permission - - + + - _Access_contents_information_Permission + _Access_contents_information_Permission - - + + - size + size 4826 - title + title - _Delete_objects_Permission + _Delete_objects_Permission - - + + - _EtagSupport__etag - ts48383879.63 + _EtagSupport__etag + ts48383879.63 - _Copy_or_Move_Permission + _Copy_or_Move_Permission - - + + - content_type - application/x-javascript + content_type + application/x-javascript - __name__ - dropdown.js_TEST + __name__ + dropdown.js_TEST - _Change_cache_settings_Permission + _Change_cache_settings_Permission - - + + - data - data + - _View_Permission + _View_Permission - - + + - _WebDAV_Unlock_items_Permission + _WebDAV_Unlock_items_Permission - - + + - _Manage_properties_Permission + _Manage_properties_Permission - - + + - _WebDAV_Lock_items_Permission + _WebDAV_Lock_items_Permission - - + + - _Undo_changes_Permission + _Undo_changes_Permission - - + + - _FTP_access_Permission + _FTP_access_Permission - - + + - _Manage_WebDAV_Locks_Permission + _Manage_WebDAV_Locks_Permission - - + + - _Change_permissions_Permission + _Change_permissions_Permission - - + + - __ac_local_roles__ + __ac_local_roles__ - + - admin + admin - - Owner + + Owner @@ -4661,86 +4957,86 @@ - + - - + + - + - _Take_ownership_Permission + _Take_ownership_Permission - - Manager + + Manager - _WebDAV_access_Permission + _WebDAV_access_Permission - - + + - _Change_bindings_Permission + _Change_bindings_Permission - - + + - _Access_contents_information_Permission + _Access_contents_information_Permission - - + + - id - login_success + id + login_success - title + title - _Delete_objects_Permission + _Delete_objects_Permission - - + + - _View_Permission + _View_Permission - - + + - _Copy_or_Move_Permission + _Copy_or_Move_Permission - - + + - content_type - text/html + content_type + text/html - _text - _text + - _View_management_screens_Permission + _View_management_screens_Permission - - + + - _Change_cache_settings_Permission + _Change_cache_settings_Permission - - + + - expand + expand 0 - _WebDAV_Unlock_items_Permission + _WebDAV_Unlock_items_Permission - - + + - _Manage_properties_Permission + _Manage_properties_Permission - - + + - _WebDAV_Lock_items_Permission + _WebDAV_Lock_items_Permission - - + + - _Undo_changes_Permission + _Undo_changes_Permission - - + + - _FTP_access_Permission + _FTP_access_Permission - - + + - _Manage_WebDAV_Locks_Permission + _Manage_WebDAV_Locks_Permission - - + + - _bind_names + _bind_names - + - + - + - _asgns + _asgns - + - name_subpath - traverse_subpath + name_subpath + traverse_subpath @@ -4914,22 +5210,22 @@ - _Change_permissions_Permission + _Change_permissions_Permission - - + + - __ac_local_roles__ + __ac_local_roles__ - + - admin + admin - - Owner + + Owner @@ -4939,102 +5235,102 @@ - + - - + + - + - _Take_ownership_Permission + _Take_ownership_Permission - - Manager + + Manager - _WebDAV_access_Permission + _WebDAV_access_Permission - - + + - actions + actions - AAAAAAAAYg0= + AAAAAAAAYfk= - _Change_bindings_Permission + _Change_bindings_Permission - - + + - validators + validators - AAAAAAAAYg4= + AAAAAAAAYfo= - _Access_contents_information_Permission + _Access_contents_information_Permission - - + + - id - login_password + id + login_password - _Delete_objects_Permission + _Delete_objects_Permission - - + + - _View_Permission + _View_Permission - - + + - _Manage_portal_Permission + _Manage_portal_Permission - - + + - _Copy_or_Move_Permission + _Copy_or_Move_Permission - - + + - content_type - text/html + content_type + text/html - _text - _text + - _View_management_screens_Permission + _View_management_screens_Permission - - + + - _Change_cache_settings_Permission + _Change_cache_settings_Permission - - + + - expand + expand 0 - _WebDAV_Unlock_items_Permission + _WebDAV_Unlock_items_Permission - - + + - _Manage_properties_Permission + _Manage_properties_Permission - - + + - _WebDAV_Lock_items_Permission + _WebDAV_Lock_items_Permission - - + + - _Undo_changes_Permission + _Undo_changes_Permission - - + + - _FTP_access_Permission + _FTP_access_Permission - - + + - _Manage_WebDAV_Locks_Permission + _Manage_WebDAV_Locks_Permission - - + + - _bind_names + _bind_names - + - + - + - _asgns + _asgns - + - name_subpath - traverse_subpath + name_subpath + traverse_subpath @@ -5252,22 +5548,22 @@ - _Change_permissions_Permission + _Change_permissions_Permission - - + + - __ac_local_roles__ + __ac_local_roles__ - + - admin + admin - - Owner + + Owner @@ -5277,98 +5573,98 @@ - + - - + + - + - precondition + precondition - _Take_ownership_Permission + _Take_ownership_Permission - - Manager + + Manager - _WebDAV_access_Permission + _WebDAV_access_Permission - - + + - __name__ - login.js_TEST + __name__ + login.js_TEST - _Access_contents_information_Permission + _Access_contents_information_Permission - - + + - size + size 2629 - title + title - _Delete_objects_Permission + _Delete_objects_Permission - - + + - _EtagSupport__etag - ts48383820.12 + _EtagSupport__etag + ts48383820.12 - _Copy_or_Move_Permission + _Copy_or_Move_Permission - - + + - content_type - application/x-javascript + content_type + application/x-javascript - _View_management_screens_Permission + _View_management_screens_Permission - - + + - _Change_cache_settings_Permission + _Change_cache_settings_Permission - - + + - data - data + - _View_Permission + _View_Permission - - + + - _WebDAV_Unlock_items_Permission + _WebDAV_Unlock_items_Permission - - + + - _Manage_properties_Permission + _Manage_properties_Permission - - + + - _WebDAV_Lock_items_Permission + _WebDAV_Lock_items_Permission - - + + - _Undo_changes_Permission + _Undo_changes_Permission - - + + - _FTP_access_Permission + _FTP_access_Permission - - + + - _Manage_WebDAV_Locks_Permission + _Manage_WebDAV_Locks_Permission - - + + - _Change_permissions_Permission + _Change_permissions_Permission - - + + - __ac_local_roles__ + __ac_local_roles__ - + - admin + admin - - Owner + + Owner @@ -5530,86 +5826,86 @@ - + - - + + - + - _Take_ownership_Permission + _Take_ownership_Permission - - Manager + + Manager - _WebDAV_access_Permission + _WebDAV_access_Permission - - + + - _Change_bindings_Permission + _Change_bindings_Permission - - + + - _Access_contents_information_Permission + _Access_contents_information_Permission - - + + - id - footer + id + footer - title + title - _Delete_objects_Permission + _Delete_objects_Permission - - + + - _View_Permission + _View_Permission - - + + - _Copy_or_Move_Permission + _Copy_or_Move_Permission - - + + - content_type - text/html + content_type + text/html - _text - _text + \n \n @@ -5646,90 +5942,429 @@ ]]> - _View_management_screens_Permission + _View_management_screens_Permission + + + + + + + + _Change_cache_settings_Permission + + + + + + + + expand + 0 + + + _WebDAV_Unlock_items_Permission + + + + + + + + _Manage_properties_Permission + + + + + + + + _WebDAV_Lock_items_Permission + + + + + + + + _Undo_changes_Permission + + + + + + + + _FTP_access_Permission + + + + + + + + _Manage_WebDAV_Locks_Permission + + + + + + + + _bind_names + + + + + + + + + + _asgns + + + + name_subpath + traverse_subpath + + + + + + + + + + + _Change_permissions_Permission + + + + + + + + __ac_local_roles__ + + + + admin + + + Owner + + + + + + + + + + + + + + + + + + + + _Take_ownership_Permission + + + Manager + + + + + _WebDAV_access_Permission + + + + + + + + _Change_bindings_Permission + + + + + + + + _Access_contents_information_Permission + + + + + + + + id + portlet_login + + + title + + + + _Delete_objects_Permission + + + + + + + + _View_Permission + + + + + + + + _Copy_or_Move_Permission + + + + + + + + content_type + text/html + + + _text + \n +\n +
\n +\n +
\n +If you have forgotten your password, you can reset the password by logging in to the server as root and running the command luci_admin password.\n +
\n +\n +
\n +\n +
\n + \n + Log in\n + \n +
\n +\n +
\n + \n +\n + \n + \n + \n + \n + \n + \n +\n +
\n + \n +
\n + \n +
\n + \n +
\n + \n +
\n + \n +
\n +\n + \n + \n +
\n + \n + \n +
\n + \n +
\n + \n +
\n + \n + \n + Forgot your password?\n + \n +
\n +
\n +\n +\n +
\n +\n +
\n + Log in\n +
\n +\n +
\n + Cookie authentication is disabled. \n + Login portlet not available.\n +
\n +\n +
\n +\n +\n +\n +
\n +\n +\n + + +]]>
+
+ + _View_management_screens_Permission - - + + - _Change_cache_settings_Permission + _Change_cache_settings_Permission - - + + - expand + expand 0 - _WebDAV_Unlock_items_Permission + _WebDAV_Unlock_items_Permission - - + + - _Manage_properties_Permission + _Manage_properties_Permission - - + + - _WebDAV_Lock_items_Permission + _WebDAV_Lock_items_Permission - - + + - _Undo_changes_Permission + _Undo_changes_Permission - - + + - _FTP_access_Permission + _FTP_access_Permission - - + + - _Manage_WebDAV_Locks_Permission + _Manage_WebDAV_Locks_Permission - - + + - _bind_names + _bind_names - + - + - + - _asgns + _asgns - + - name_subpath - traverse_subpath + name_subpath + traverse_subpath @@ -5740,22 +6375,22 @@ - _Change_permissions_Permission + _Change_permissions_Permission - - + + - __ac_local_roles__ + __ac_local_roles__ - + - admin + admin - - Owner + + Owner @@ -5765,102 +6400,102 @@ - + - - + + - + - _Take_ownership_Permission + _Take_ownership_Permission - - Manager + + Manager - _WebDAV_access_Permission + _WebDAV_access_Permission - - + + - actions + actions - AAAAAAAAYg8= + AAAAAAAAYfs= - _Change_bindings_Permission + _Change_bindings_Permission - - + + - validators + validators - AAAAAAAAYhA= + AAAAAAAAYfw= - _Access_contents_information_Permission + _Access_contents_information_Permission - - + + - id - login_form_TEST + id + login_form_TEST - _Delete_objects_Permission + _Delete_objects_Permission - - + + - _View_Permission + _View_Permission - - + + - _Manage_portal_Permission + _Manage_portal_Permission - - + + - _Copy_or_Move_Permission + _Copy_or_Move_Permission - - + + - content_type - text/html + content_type + text/html - _text - _text + - _View_management_screens_Permission + _View_management_screens_Permission - - + + - _Change_cache_settings_Permission + _Change_cache_settings_Permission - - + + - expand + expand 0 - _WebDAV_Unlock_items_Permission + _WebDAV_Unlock_items_Permission - - + + - _Manage_properties_Permission + _Manage_properties_Permission - - + + - _WebDAV_Lock_items_Permission + _WebDAV_Lock_items_Permission - - + + - _Undo_changes_Permission + _Undo_changes_Permission - - + + - _FTP_access_Permission + _FTP_access_Permission - - + + - _Manage_WebDAV_Locks_Permission + _Manage_WebDAV_Locks_Permission - - + + - _bind_names + _bind_names - + - + - + - _asgns + _asgns - + - name_subpath - traverse_subpath + name_subpath + traverse_subpath @@ -6139,22 +6774,22 @@ - _Change_permissions_Permission + _Change_permissions_Permission - - + + - __ac_local_roles__ + __ac_local_roles__ - + - admin + admin - - Owner + + Owner @@ -6164,86 +6799,86 @@ - + - - + + - + - _Take_ownership_Permission + _Take_ownership_Permission - - Manager + + Manager - _WebDAV_access_Permission + _WebDAV_access_Permission - - + + - _Change_bindings_Permission + _Change_bindings_Permission - - + + - _Access_contents_information_Permission + _Access_contents_information_Permission - - + + - id - login_failed + id + login_failed - title + title - _Delete_objects_Permission + _Delete_objects_Permission - - + + - _View_Permission + _View_Permission - - + + - _Copy_or_Move_Permission + _Copy_or_Move_Permission - - + + - content_type - text/html + content_type + text/html - _text - _text + Sign-in failure\n \n -
\n -If you have forgotten your password, you can reset the password by logging in to the server as root and running the command luci_admin password.\n -
\n -\n

\n You are not currently logged in. Your user name and/or password\n may be incorrect.\n

\n \n +

\n +If you have forgotten your password, you can reset the password by logging in to the server as root and running the command luci_admin password.\n +

\n +\n

\n If your user name and password are correct, the problem may be that\n your browser is not configured to \n @@ -6305,90 +6940,90 @@ ]]> - _View_management_screens_Permission + _View_management_screens_Permission - - + + - _Change_cache_settings_Permission + _Change_cache_settings_Permission - - + + - expand + expand 0 - _WebDAV_Unlock_items_Permission + _WebDAV_Unlock_items_Permission - - + + - _Manage_properties_Permission + _Manage_properties_Permission - - + + - _WebDAV_Lock_items_Permission + _WebDAV_Lock_items_Permission - - + + - _Undo_changes_Permission + _Undo_changes_Permission - - + + - _FTP_access_Permission + _FTP_access_Permission - - + + - _Manage_WebDAV_Locks_Permission + _Manage_WebDAV_Locks_Permission - - + + - _bind_names + _bind_names - + - + - + - _asgns + _asgns - + - name_subpath - traverse_subpath + name_subpath + traverse_subpath @@ -6399,22 +7034,22 @@ - _Change_permissions_Permission + _Change_permissions_Permission - - + + - __ac_local_roles__ + __ac_local_roles__ - + - admin + admin - - Owner + + Owner @@ -6424,92 +7059,92 @@ - + - - + + - + - _Take_ownership_Permission + _Take_ownership_Permission - - Manager + + Manager - _WebDAV_access_Permission + _WebDAV_access_Permission - - + + - _Change_bindings_Permission + _Change_bindings_Permission - - + + - _Access_contents_information_Permission + _Access_contents_information_Permission - - + + - id - main_template + id + main_template - title + title - _Cacheable__manager_id + _Cacheable__manager_id - _Delete_objects_Permission + _Delete_objects_Permission - - + + - _View_Permission + _View_Permission - - + + - _Copy_or_Move_Permission + _Copy_or_Move_Permission - - + + - content_type - text/html + content_type + text/html - _text - _text + \n \n @@ -6716,90 +7351,90 @@ ]]> - _View_management_screens_Permission + _View_management_screens_Permission - - + + - _Change_cache_settings_Permission + _Change_cache_settings_Permission - - + + - expand + expand 0 - _WebDAV_Unlock_items_Permission + _WebDAV_Unlock_items_Permission - - + + - _Manage_properties_Permission + _Manage_properties_Permission - - + + - _WebDAV_Lock_items_Permission + _WebDAV_Lock_items_Permission - - + + - _Undo_changes_Permission + _Undo_changes_Permission - - + + - _FTP_access_Permission + _FTP_access_Permission - - + + - _Manage_WebDAV_Locks_Permission + _Manage_WebDAV_Locks_Permission - - + + - _bind_names + _bind_names - + - + - + - _asgns + _asgns - + - name_subpath - traverse_subpath + name_subpath + traverse_subpath @@ -6810,22 +7445,22 @@ - _Change_permissions_Permission + _Change_permissions_Permission - - + + - __ac_local_roles__ + __ac_local_roles__ - + - admin + admin - - Owner + + Owner @@ -6835,32 +7470,32 @@ - + - - + + - + - _module - homebase_adapters + _module + homebase_adapters - _function - siteIsSetup + _function + siteIsSetup - __ac_local_roles__ + __ac_local_roles__ - + - admin + admin - - Owner + + Owner @@ -6868,59 +7503,59 @@ - id - siteIsSetup + id + siteIsSetup - title - siteIsSetup + title + siteIsSetup - + - - + + - + - actions + actions - + - AAAAAAAAYhE= + AAAAAAAAYkg= - AAAAAAAAYhI= + AAAAAAAAYkk= - AAAAAAAAYhM= + AAAAAAAAYko= - AAAAAAAAYhQ= + AAAAAAAAYks= - AAAAAAAAYhU= + AAAAAAAAYkw= - AAAAAAAAYhY= + AAAAAAAAYk0= - AAAAAAAAYhc= + AAAAAAAAYk4= - AAAAAAAAYhg= + AAAAAAAAYk8= @@ -6929,25 +7564,25 @@ - + - - + + - + - validators + validators - + - AAAAAAAAYhk= + AAAAAAAAYkY= - AAAAAAAAYho= + AAAAAAAAYkc= @@ -6956,41 +7591,41 @@ - + - - + + - + - actions + actions - + - AAAAAAAAYhs= + AAAAAAAAYgc= - AAAAAAAAYhw= + AAAAAAAAYgg= - AAAAAAAAYh0= + AAAAAAAAYgk= - AAAAAAAAYh4= + AAAAAAAAYgo= - AAAAAAAAYh8= + AAAAAAAAYgs= - AAAAAAAAYiA= + AAAAAAAAYgw= @@ -6999,33 +7634,33 @@ - + - - + + - + - validators + validators - + - AAAAAAAAYiE= + AAAAAAAAYg0= - AAAAAAAAYiI= + AAAAAAAAYg4= - AAAAAAAAYiM= + AAAAAAAAYg8= - AAAAAAAAYiQ= + AAAAAAAAYhA= @@ -7034,49 +7669,49 @@ - + - - + + - + - actions + actions - + - AAAAAAAAYiU= + AAAAAAAAYhE= - AAAAAAAAYiY= + AAAAAAAAYhI= - AAAAAAAAYic= + AAAAAAAAYhM= - AAAAAAAAYig= + AAAAAAAAYhQ= - AAAAAAAAYis= + AAAAAAAAYhc= - AAAAAAAAYiw= + AAAAAAAAYhg= - AAAAAAAAYik= + AAAAAAAAYhU= - AAAAAAAAYio= + AAAAAAAAYhY= @@ -7085,25 +7720,25 @@ - + - - + + - + - validators + validators - + - AAAAAAAAYi0= + AAAAAAAAYhk= - AAAAAAAAYi4= + AAAAAAAAYho= @@ -7112,41 +7747,41 @@ - + - - + + - + - actions + actions - + - AAAAAAAAYi8= + AAAAAAAAYhs= - AAAAAAAAYjA= + AAAAAAAAYhw= - AAAAAAAAYjE= + AAAAAAAAYh0= - AAAAAAAAYjI= + AAAAAAAAYh4= - AAAAAAAAYjM= + AAAAAAAAYh8= - AAAAAAAAYjQ= + AAAAAAAAYiA= @@ -7155,25 +7790,25 @@ - + - - + + - + - validators + validators - + - AAAAAAAAYjU= + AAAAAAAAYiE= - AAAAAAAAYjY= + AAAAAAAAYiI= @@ -7182,49 +7817,49 @@ - + - - + + - + - actions + actions - + - AAAAAAAAYjc= + AAAAAAAAYiM= - AAAAAAAAYjg= + AAAAAAAAYiQ= - AAAAAAAAYjk= + AAAAAAAAYiU= - AAAAAAAAYjo= + AAAAAAAAYiY= - AAAAAAAAYj0= + AAAAAAAAYik= - AAAAAAAAYj4= + AAAAAAAAYio= - AAAAAAAAYjs= + AAAAAAAAYic= - AAAAAAAAYjw= + AAAAAAAAYig= @@ -7233,25 +7868,25 @@ - + - - + + - + - validators + validators - + - AAAAAAAAYj8= + AAAAAAAAYis= - AAAAAAAAYkA= + AAAAAAAAYiw= @@ -7260,21 +7895,21 @@ - + - - + + - + - key + key - - login_form - failure + + login_form + failure @@ -7283,31 +7918,31 @@ - + - - + + - + - action + action - + - + - + - + - expression + expression - AAAAAAAAYkE= + AAAAAAAAYlM= @@ -7316,37 +7951,37 @@ - action_type - traverse_to - - - key + key - AAAAAAAAYhE= + AAAAAAAAYkg= - action_arg - string:login_form + action_type + traverse_to + + + action_arg + string:login_form - + - - + + - + - key + key - - login_form - enable_cookies + + login_form + enable_cookies @@ -7355,31 +7990,31 @@ - + - - + + - + - action + action - + - + - + - + - expression + expression - AAAAAAAAYkI= + AAAAAAAAYlI= @@ -7388,37 +8023,37 @@ - action_type - traverse_to - - - key + key - AAAAAAAAYhM= + AAAAAAAAYko= - action_arg - string:enabling_cookies + action_type + traverse_to + + + action_arg + string:enabling_cookies - + - - + + - + - key + key - - login_form - success + + login_form + success @@ -7427,31 +8062,31 @@ - + - - + + - + - action + action - + - + - + - + - expression + expression - AAAAAAAAYkM= + AAAAAAAAYlE= @@ -7460,37 +8095,37 @@ - action_type - traverse_to - - - key + key - AAAAAAAAYhU= + AAAAAAAAYkw= - action_arg - string:logged_in + action_type + traverse_to + + + action_arg + string:logged_in - + - - + + - + - key + key - - login_form - failure_page + + login_form + failure_page @@ -7499,31 +8134,31 @@ - + - - + + - + - action + action - + - + - + - + - expression + expression - AAAAAAAAYkQ= + AAAAAAAAYlA= @@ -7532,36 +8167,36 @@ - action_type - traverse_to - - - key + key - AAAAAAAAYhc= + AAAAAAAAYk4= - action_arg - string:login_failed + action_type + traverse_to + + + action_arg + string:login_failed - + - - + + - + - key + key - - login_form + + login_form @@ -7570,47 +8205,47 @@ - + - - + + - + - key + key - AAAAAAAAYhk= + AAAAAAAAYkY= - validators + validators - - login_form_validate + + login_form_validate - + - - + + - + - key + key - - document_edit_form_TEST - failure + + document_edit_form_TEST + failure @@ -7619,31 +8254,31 @@ - + - - + + - + - action + action - + - + - + - + - expression + expression - AAAAAAAAYkU= + AAAAAAAAYjE= @@ -7652,37 +8287,37 @@ - action_type - traverse_to - - - key + key - AAAAAAAAYhs= + AAAAAAAAYgc= - action_arg - string:document_edit_form + action_type + traverse_to + + + action_arg + string:document_edit_form - + - - + + - + - key + key - - document_edit_form_TEST - success + + document_edit_form_TEST + success @@ -7691,31 +8326,31 @@ - + - - + + - + - action + action - + - + - + - + - expression + expression - AAAAAAAAYkY= + AAAAAAAAYjI= @@ -7724,70 +8359,70 @@ - action_type - traverse_to - - - key + key - AAAAAAAAYh0= + AAAAAAAAYgk= - action_arg - string:document_edit + action_type + traverse_to + + + action_arg + string:document_edit - + - - + + - + - key + key - - document_edit_form_TEST - success + + document_edit_form_TEST + success - Cancel + Cancel - + - - + + - + - action + action - + - + - + - + - expression + expression - AAAAAAAAYkc= + AAAAAAAAYjM= @@ -7796,82 +8431,82 @@ - action_type - redirect_to_action - - - key + key - AAAAAAAAYh8= + AAAAAAAAYgs= - action_arg - string:view + action_type + redirect_to_action + + + action_arg + string:view - + - - + + - + - key + key - - document_edit_form_TEST + + document_edit_form_TEST - Cancel + Cancel - + - - + + - + - key + key - AAAAAAAAYiE= + AAAAAAAAYg0= - validators + validators - + - + - - + + - + - key + key - - document_edit_form_TEST + + document_edit_form_TEST @@ -7880,49 +8515,49 @@ - + - - + + - + - key + key - AAAAAAAAYiM= + AAAAAAAAYg8= - validators + validators - - validate_id - validate_title - validate_document_edit + + validate_id + validate_title + validate_document_edit - + - - + + - + - key + key - - failsafe_login_form - failure + + failsafe_login_form + failure @@ -7931,31 +8566,31 @@ - + - - + + - + - action + action - + - + - + - + - expression + expression - AAAAAAAAYkg= + AAAAAAAAYjQ= @@ -7964,37 +8599,37 @@ - action_type - traverse_to - - - key + key - AAAAAAAAYiU= + AAAAAAAAYhE= - action_arg - string:login_form + action_type + traverse_to + + + action_arg + string:login_form - + - - + + - + - key + key - - failsafe_login_form - success + + failsafe_login_form + success @@ -8003,31 +8638,31 @@ - + - - + + - + - action + action - + - + - + - + - expression + expression - AAAAAAAAYkk= + AAAAAAAAYjU= @@ -8036,37 +8671,37 @@ - action_type - traverse_to - - - key + key - AAAAAAAAYic= + AAAAAAAAYhM= - action_arg - string:logged_in + action_type + traverse_to + + + action_arg + string:logged_in - + - - + + - + - key + key - - failsafe_login_form - failure_page + + failsafe_login_form + enable_cookies @@ -8075,31 +8710,31 @@ - + - - + + - + - action + action - + - + - + - + - expression + expression - AAAAAAAAYks= + AAAAAAAAYjc= @@ -8108,37 +8743,37 @@ - action_type - traverse_to - - - key + key - AAAAAAAAYis= + AAAAAAAAYhc= - action_arg - string:login_failed + action_type + traverse_to + + + action_arg + string:enabling_cookies - + - - + + - + - key + key - - failsafe_login_form - enable_cookies + + failsafe_login_form + failure_page @@ -8147,31 +8782,31 @@ - + - - + + - + - action + action - + - + - + - + - expression + expression - AAAAAAAAYko= + AAAAAAAAYjY= @@ -8180,36 +8815,36 @@ - action_type - traverse_to - - - key + key - AAAAAAAAYik= + AAAAAAAAYhU= - action_arg - string:enabling_cookies + action_type + traverse_to + + + action_arg + string:login_failed - + - - + + - + - key + key - - failsafe_login_form + + failsafe_login_form @@ -8218,47 +8853,47 @@ - + - - + + - + - key + key - AAAAAAAAYi0= + AAAAAAAAYhk= - validators + validators - - login_form_validate + + login_form_validate - + - - + + - + - key + key - - login_password - failure_anonymous + + login_password + failure_anonymous @@ -8267,31 +8902,31 @@ - + - - + + - + - action + action - + - + - + - + - expression + expression - AAAAAAAAYkw= + AAAAAAAAYjg= @@ -8300,37 +8935,37 @@ - action_type - traverse_to - - - key + key - AAAAAAAAYi8= + AAAAAAAAYhs= - action_arg - string:enabling_cookies + action_type + traverse_to + + + action_arg + string:enabling_cookies - + - - + + - + - key + key - - login_password - success + + login_password + success @@ -8339,31 +8974,31 @@ - + - - + + - + - action + action - + - + - + - + - expression + expression - AAAAAAAAYk0= + AAAAAAAAYjk= @@ -8372,37 +9007,37 @@ - action_type - traverse_to - - - key + key - AAAAAAAAYjE= + AAAAAAAAYh0= - action_arg - string:login_change_password + action_type + traverse_to + + + action_arg + string:login_change_password - + - - + + - + - key + key - - login_password - failure + + login_password + failure @@ -8411,31 +9046,31 @@ - + - - + + - + - action + action - + - + - + - + - expression + expression - AAAAAAAAYk4= + AAAAAAAAYjo= @@ -8444,36 +9079,36 @@ - action_type - traverse_to - - - key + key - AAAAAAAAYjM= + AAAAAAAAYh8= - action_arg - string:login_password + action_type + traverse_to + + + action_arg + string:login_password - + - - + + - + - key + key - - login_password + + login_password @@ -8482,47 +9117,47 @@ - + - - + + - + - key + key - AAAAAAAAYjU= + AAAAAAAAYiE= - validators + validators - - login_password_validate + + login_password_validate - + - - + + - + - key + key - - login_form_TEST - failure_page + + login_form_TEST + failure_page @@ -8531,31 +9166,31 @@ - + - - + + - + - action + action - + - + - + - + - expression + expression - AAAAAAAAYk8= + AAAAAAAAYjs= @@ -8564,37 +9199,37 @@ - action_type - traverse_to - - - key + key - AAAAAAAAYjc= + AAAAAAAAYiM= - action_arg - string:login_failed + action_type + traverse_to + + + action_arg + string:login_failed - + - - + + - + - key + key - - login_form_TEST - enable_cookies + + login_form_TEST + enable_cookies @@ -8603,31 +9238,31 @@ - + - - + + - + - action + action - + - + - + - + - expression + expression - AAAAAAAAYlA= + AAAAAAAAYjw= @@ -8636,37 +9271,37 @@ - action_type - traverse_to - - - key + key - AAAAAAAAYjk= + AAAAAAAAYiU= - action_arg - string:enabling_cookies + action_type + traverse_to + + + action_arg + string:enabling_cookies - + - - + + - + - key + key - - login_form_TEST - success + + login_form_TEST + failure @@ -8675,31 +9310,31 @@ - + - - + + - + - action + action - + - + - + - + - expression + expression - AAAAAAAAYlI= + AAAAAAAAYj4= @@ -8708,37 +9343,37 @@ - action_type - traverse_to - - - key + key - AAAAAAAAYj0= + AAAAAAAAYik= - action_arg - string:logged_in + action_type + traverse_to + + + action_arg + string:login_form - + - - + + - + - key + key - - login_form_TEST - failure + + login_form_TEST + success @@ -8747,31 +9382,31 @@ - + - - + + - + - action + action - + - + - + - + - expression + expression - AAAAAAAAYlE= + AAAAAAAAYj0= @@ -8780,36 +9415,36 @@ - action_type - traverse_to - - - key + key - AAAAAAAAYjs= + AAAAAAAAYic= - action_arg - string:login_form + action_type + traverse_to + + + action_arg + string:logged_in - + - - + + - + - key + key - - login_form_TEST + + login_form_TEST @@ -8818,316 +9453,316 @@ - + - - + + - + - key + key - AAAAAAAAYj8= + AAAAAAAAYis= - validators + validators - - login_form_validate + + login_form_validate - + - - + + - + - text - string:login_form + text + string:login_form - + - - + + - + - text - string:enabling_cookies + text + string:enabling_cookies - + - - + + - + - text - string:logged_in + text + string:logged_in - + - - + + - + - text - string:login_failed + text + string:login_failed - + - - + + - + - text - string:document_edit_form + text + string:document_edit_form - + - - + + - + - text - string:document_edit + text + string:document_edit - + - - + + - + - text - string:view + text + string:view - + - - + + - + - text - string:login_form + text + string:login_form - + - - + + - + - text - string:logged_in + text + string:logged_in - + - - + + - + - text - string:login_failed + text + string:enabling_cookies - + - - + + - + - text - string:enabling_cookies + text + string:login_failed - + - - + + - + - text - string:enabling_cookies + text + string:enabling_cookies - + - - + + - + - text - string:login_change_password + text + string:login_change_password - + - - + + - + - text - string:login_password + text + string:login_password - + - - + + - + - text - string:login_failed + text + string:login_failed - + - - + + - + - text - string:enabling_cookies + text + string:enabling_cookies - + - - + + - + - text - string:logged_in + text + string:login_form - + - - + + - + - text - string:login_form + text + string:logged_in --- conga/luci/plone-custom/failsafe_login_form 2006/07/26 16:55:37 1.1 +++ conga/luci/plone-custom/failsafe_login_form 2006/07/26 18:03:55 1.2 @@ -1,7 +1,7 @@ - - +
+ errors options/state/getErrors; + ac_name auth/name_cookie|string:__ac_name; + ac_password auth/pw_cookie|string:__ac_password; + ac_persist auth/persist_cookie|nothing; + login_name python:request.get('login_name', request.get(ac_name, ''));"> -

Please log in

+
+

This site has not yet been initialized.

+

Please login to the server as root and run the command luci_admin init to initialize it. +

+ +
+

Please log in

-

+

To access this part of the site, you need to log in with your user name and password.

+

+ +If you do not have an account here, head over to the + + + + registration form. + +

+ -
-

This site has not yet been initialized.

-

Please login to the server as root and run the command luci_admin init to initialize it. -

- -
-If you have forgotten your password, you can reset the password by logging in to the server as root and running the command luci_admin password. -
- - -
+ tal:condition="python:auth"> -
+
Account details @@ -96,6 +107,7 @@
+ @@ -116,7 +128,7 @@ />
-
+
+
--- conga/luci/plone-custom/login_form_validate 2006/07/26 16:55:37 1.1 +++ conga/luci/plone-custom/login_form_validate 2006/07/26 18:03:55 1.2 @@ -8,7 +8,9 @@ ##parameters= ##title=Validate login ## -LOGIN_FAILED_MESSAGE = 'Login failed' # TODO need a friendlier message here +from Products.CMFPlone import PloneMessageFactory as _ + +LOGIN_FAILED_MESSAGE = _(u'Login failed') request = context.REQUEST js_enabled = request.get('js_enabled',0) # is javascript enabled? @@ -17,9 +19,8 @@ cookies_enabled = cookies_enabled=='1' or cookies_enabled==1 if js_enabled and not cookies_enabled: - # auth cookie won't persist -- erase it so users aren't confused - context.portal_membership.immediateLogout() - state.set(status='enable_cookies', portal_status_message='You must enable cookies before you can log in') + context.plone_utils.addPortalMessage(_(u'You must enable cookies before you can log in')) + state.set(status='enable_cookies') return state mt=context.portal_membership @@ -34,17 +35,20 @@ if not user_name: # no user name - state.setError(ac_name, 'Please enter your login name.', 'login_name_required') + state.setError(ac_name, _(u'Please enter your login name.'), 'login_name_required') if password_empty: - state.setError(ac_password, 'Please enter your password.', 'password_required') + state.setError(ac_password, _(u'Please enter your password.'), 'password_required') verify_login_name = context.portal_properties.site_properties.getProperty('verify_login_name', 0) if user_name and verify_login_name: + # XXX mixing up username and loginname here if mt.getMemberById(user_name) is None: - state.setError(ac_name, 'Authentication Error.', 'password_incorrect') - elif not password_empty: - state.setError(ac_password, 'Authentication Error.', 'password_incorrect') - state.set(status='failure', portal_status_message=LOGIN_FAILED_MESSAGE) + state.setError(ac_password, LOGIN_FAILED_MESSAGE, 'password_incorrect') + elif not password_empty: + state.setError(ac_password, LOGIN_FAILED_MESSAGE, 'password_incorrect') + context.plone_utils.addPortalMessage(LOGIN_FAILED_MESSAGE) + state.set(status='failure') else: # no javascript - do low tech login failure - state.set(status='failure_page', portal_status_message=LOGIN_FAILED_MESSAGE) + context.plone_utils.addPortalMessage(LOGIN_FAILED_MESSAGE) + state.set(status='failure_page') return state --- conga/luci/plone-custom/login_password 2006/07/26 16:55:37 1.1 +++ conga/luci/plone-custom/login_password 2006/07/26 18:03:55 1.2 @@ -24,6 +24,10 @@ here. + + Before you start exploring, you need to change your original password. + This ensures that the password you received via email cannot be used in a malicious manner. +

@@ -52,7 +56,8 @@ tal:define="error python:errors.get('password', None);" tal:attributes="class python:test(error, 'field error', 'field')"> - +

Enter your new password. Minimum 5 characters. @@ -62,6 +67,7 @@ - +