Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions auth_from_http_remote_user/controllers/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ def _bind_http_remote_user(self, db_name):
exc_info=True)
raise e


randrange = random.SystemRandom().randrange


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ def _fields_find(self, obj):
res = modobj.fields_get(self.cr, self.uid).items()
return res


report_sxw.report_sxw(
'report.ir.module.reference.graph',
'ir.module.module',
Expand Down
1 change: 1 addition & 0 deletions base_module_doc_rst/report/report_proximity_graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,4 +118,5 @@ def create(self, cr, uid, ids, data, context=None):
)
return (pdf_string, 'pdf')


ReportGraph('report.proximity.graph', 'ir.module.module')
2 changes: 1 addition & 1 deletion fetchmail_notify_error_to_sender/__openerp__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
{
'name': 'Send notice on fetchmail errors',
'summary': 'If fetching mails gives error, send an email to sender',
'version': '8.0.1.0.0',
'version': '8.0.1.0.1',
'category': 'Tools',
'author': "Agile Business Group,Odoo Community Association (OCA)",
'website': 'http://www.agilebg.com',
Expand Down
6 changes: 3 additions & 3 deletions fetchmail_notify_error_to_sender/fetchmail_view.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
<field name="model">fetchmail.server</field>
<field name="inherit_id" ref="fetchmail.view_email_server_form"></field>
<field name="arch" type="xml">
<field name="active" position="after">
<field name="error_notice_template_id"></field>
</field>
<xpath expr="//page[@string='Advanced']/group/field[@name='active']" position="after">
<field name="error_notice_template_id"/>
</xpath>
</field>
</record>
</data>
Expand Down
1 change: 1 addition & 0 deletions server_environment/serv_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ def _load_config():

return config_p


serv_config = _load_config()


Expand Down