Updated CMS:

Extract email service as a library.
Updated modules to use the email library.
Fixed compilation issue with database_connection_null.e
This commit is contained in:
jvelilla
2015-06-24 11:17:17 -03:00
parent fa5efede2c
commit 7c0032ada4
6 changed files with 23 additions and 4 deletions

View File

@@ -23,9 +23,9 @@ feature -- Initialization
-- Create a database handler for ODBC with common settings.
do
create database_error_handler.make
create db_application.login (username, password)
db_application.set_hostname (hostname)
db_application.set_data_source (database_name)
create db_application.login (default_username, default_password)
db_application.set_hostname (default_username)
db_application.set_data_source (default_database_name)
db_application.set_base
create db_control.make
end