root/branch/NetworkInventory/umit/db/_database.py @ 4278

Revision 4278, 0.9 kB (checked in by gpolo, 4 years ago)

Merged revisions 4269-4277 via svnmerge from
http://svn.umitproject.org/svnroot/umit/trunk

................

r4269 | luis | 2009-03-04 14:41:02 -0300 (Wed, 04 Mar 2009) | 17 lines


Merged revisions 4093,4267-4268 via svnmerge from
http://svn.umitproject.org/svnroot/umit/branch/InterfaceEditor


........

r4093 | luis | 2009-02-17 19:30:33 +0000 (Tue, 17 Feb 2009) | 1 line


Added tests to InterfaceEditor?

........

r4267 | luis | 2009-03-04 17:35:48 +0000 (Wed, 04 Mar 2009) | 1 line


Keep update bin - fixing what happens during merge

........

r4268 | luis | 2009-03-04 17:36:33 +0000 (Wed, 04 Mar 2009) | 1 line


Rename a class name and change title of InterfaceEditor?

........

................

r4270 | gpolo | 2009-03-04 19:12:47 -0300 (Wed, 04 Mar 2009) | 1 line


Fixed ticket #125: Update the recent scans listing without needing to restart Umit.

................

r4271 | gpolo | 2009-03-04 20:01:40 -0300 (Wed, 04 Mar 2009) | 1 line


Cleaning up the installers, fixing most of ticket #235.

................

r4272 | gpolo | 2009-03-04 20:20:04 -0300 (Wed, 04 Mar 2009) | 1 line


Moved common paths between the installers to install_scripts/common.py

................

r4273 | gpolo | 2009-03-04 20:29:20 -0300 (Wed, 04 Mar 2009) | 1 line


typo fix

................

r4274 | gpolo | 2009-03-04 20:38:11 -0300 (Wed, 04 Mar 2009) | 1 line


Added missing import and fixed path to umit's root.

................

r4275 | gpolo | 2009-03-04 22:22:36 -0300 (Wed, 04 Mar 2009) | 1 line


Some tweaks.

................

r4276 | gpolo | 2009-03-04 22:37:45 -0300 (Wed, 04 Mar 2009) | 1 line


Removed trailing whitespaces, reformated to < 80 columns.

................

r4277 | gpolo | 2009-03-04 22:40:36 -0300 (Wed, 04 Mar 2009) | 2 lines


Ran reindent.py on umit/db and umit/inventory.

................

Line 
1# Copyright (C) 2007 Adriano Monteiro Marques
2#
3# Author:  Guilherme Polo <ggpolo@gmail.com>
4#
5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; either version 2 of the License, or
8# (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with this program; if not, write to the Free Software
17# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
18# USA
19
20"""
21Load correct module(s) for specific database.
22"""
23
24database = 'sqlite'
25
26if database == 'sqlite':
27    from umit.db._sqlite import sqlite as sql
Note: See TracBrowser for help on using the browser.