Changeset 4766

Show
Ignore:
Timestamp:
05/07/09 01:29:38 (4 years ago)
Author:
rcarvalho
Message:

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

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

r4188 | gpolo | 2009-02-23 20:23:55 -0300 (Seg, 23 Fev 2009) | 13 lines


Merged revisions 4186-4187 via svnmerge from
http://svn.umitproject.org/svnroot/umit/branch/NetworkInventory


........

r4186 | gpolo | 2009-02-23 18:05:03 -0300 (Mon, 23 Feb 2009) | 1 line


Fixed ticket #219

........

r4187 | gpolo | 2009-02-23 18:17:36 -0300 (Mon, 23 Feb 2009) | 1 line


Default to daily view in timeline

........

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

r4189 | gpolo | 2009-02-23 22:32:13 -0300 (Seg, 23 Fev 2009) | 1 line


test -> tests (so it doesn't conflict with python's test package)

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

Location:
branch/umitweb-ng
Files:
1 removed
3 modified
38 copied

Legend:

Unmodified
Added
Removed
  • branch/umitweb-ng

    • Property svnmerge-integrated changed from /trunk:1-3190,3263-3267,3269,3271-3278,3285,3307-3308,3366,3379,3383,3567,3628,3678-3679,3705,3720-3729,3735-3738,3742-3748,3765-3766,3771,3788-3789,3792,3794,3797-3804,3849,3858,3876-3877,3879-3880,3927-3930,3932,3936,3939-3940,3946-3948,3953-3954,3965-3966,3968,3972,3993,3995,4000,4006-4007,4010,4012-4013,4015,4017-4019,4021-4025,4027,4029-4031,4033,4035-4038,4040-4042,4044-4045,4049,4054-4064,4073,4087-4092,4095-4099,4101-4103,4106-4110,4113,4118-4123,4128-4137,4140-4144,4146,4152-4156,4158-4168,4174-4175,4184 to /trunk:1-3190,3263-3267,3269,3271-3278,3285,3307-3308,3366,3379,3383,3567,3628,3678-3679,3705,3720-3729,3735-3738,3742-3748,3765-3766,3771,3788-3789,3792,3794,3797-3804,3849,3858,3876-3877,3879-3880,3927-3930,3932,3936,3939-3940,3946-3948,3953-3954,3965-3966,3968,3972,3993,3995,4000,4006-4007,4010,4012-4013,4015,4017-4019,4021-4025,4027,4029-4031,4033,4035-4038,4040-4042,4044-4045,4049,4054-4064,4073,4087-4092,4095-4099,4101-4103,4106-4110,4113,4118-4123,4128-4137,4140-4144,4146,4152-4156,4158-4168,4174-4175,4184,4188-4189
  • branch/umitweb-ng/share/umit/config/timeline-settings.conf

    r4683 r4766  
    1818[Startup] 
    1919date =  
    20 mode = hourly 
     20mode = daily 
    2121kind = category 
    2222 
  • branch/umitweb-ng/umitDB/InventoryChanges.py

    r4721 r4766  
    140140                pcdata2 = self.invdb.get_portid_and_fks_for_host_from_db( 
    141141                    hostB[1]) 
    142                  
     142 
    143143                # compare old data against new data 
    144144                category, diff_text = self._compare_data(pdata2, fpinfo2, 
     
    259259        # dont consider uptime and lastboot in fingerprint (will probably 
    260260        # not consider others too) 
    261         if fpinfo1 and (fpinfo1[2:] != fpinfo2[2:]): 
     261        if (fpinfo1 and not fpinfo2) or (not fpinfo1 and fpinfo2) or \ 
     262                (fpinfo1 and fpinfo2 and fpinfo1[2:] != fpinfo2[2:]): 
    262263            space = host_diff and ' ' or '' 
    263264            common_text = space + _("Fingerprint, ") 
     
    284285            fp_only = False 
    285286            ports_only = False 
    286                  
     287 
    287288        if common_text: 
    288289            if fp_only or len(common_text) == len(" Fingerprint, "): 
     
    304305            # changes in extraports for example. 
    305306            affected = 'nothing' 
    306             host_diff = _("No noticeables changes since last sucessfull scan.") 
     307            host_diff = _("No noticeables changes since last sucessful scan.") 
    307308 
    308309