You can subscribe to this list here.
| 2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(26) |
Dec
(13) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2007 |
Jan
(5) |
Feb
(16) |
Mar
(5) |
Apr
(5) |
May
(13) |
Jun
(12) |
Jul
(1) |
Aug
(2) |
Sep
(13) |
Oct
(6) |
Nov
(1) |
Dec
(29) |
| 2008 |
Jan
(2) |
Feb
(2) |
Mar
(2) |
Apr
(57) |
May
(35) |
Jun
(45) |
Jul
(132) |
Aug
(87) |
Sep
(141) |
Oct
(86) |
Nov
(17) |
Dec
(2) |
| 2009 |
Jan
(3) |
Feb
(2) |
Mar
(3) |
Apr
(3) |
May
(1) |
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
(1) |
Dec
|
| 2010 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
| S | M | T | W | T | F | S |
|---|---|---|---|---|---|---|
|
|
|
|
|
|
1
|
2
|
|
3
|
4
|
5
|
6
|
7
|
8
|
9
|
|
10
|
11
|
12
|
13
(1) |
14
(1) |
15
|
16
|
|
17
|
18
|
19
|
20
|
21
|
22
|
23
|
|
24
|
25
|
26
|
27
|
28
|
29
|
|
|
From: <ba...@us...> - 2008-02-14 03:50:03
|
Revision: 536
http://omc.svn.sourceforge.net/omc/?rev=536&view=rev
Author: bartw
Date: 2008-02-13 19:50:09 -0800 (Wed, 13 Feb 2008)
Log Message:
-----------
fixed FileIdentity assoc. to not require all of the keys of the target object
Modified Paths:
--------------
pybase/trunk/OMC_LogicalFile.py
Modified: pybase/trunk/OMC_LogicalFile.py
===================================================================
--- pybase/trunk/OMC_LogicalFile.py 2008-02-13 20:18:47 UTC (rev 535)
+++ pybase/trunk/OMC_LogicalFile.py 2008-02-14 03:50:09 UTC (rev 536)
@@ -713,29 +713,39 @@
if object_name.classname.lower() == 'omc_linuxfile':
model['SameElement'] = object_name
+ try:
+ keybindings = {
+ 'Name':object_name['LFName'],
+ 'FSName':object_name['FSName'],
+ 'FSCreationClassName':object_name['FSCreationClassName'],
+ 'CSName':getfqdn(),
+ 'CSCreationClassName':object_name['CSCreationClassName'],
+ 'CreationClassName':object_name['LFCreationClassName']}
+ except KeyError:
+ keybindings = {}
+ get_file_keys(object_name['LFname'], keybindings)
model['SystemElement'] = pywbem.CIMInstanceName(
classname=object_name['LFCreationClassName'],
namespace=object_name.namespace,
- keybindings={
- 'Name':object_name['LFName'],
- 'FSName':object_name['FSName'],
- 'FSCreationClassName':object_name['FSCreationClassName'],
- 'CSName':getfqdn(),
- 'CSCreationClassName':object_name['CSCreationClassName'],
- 'CreationClassName':object_name['LFCreationClassName']})
+ keybindings=keybindings)
yield model
else:
model['SystemElement'] = object_name
- model['SameElement'] = pywbem.CIMInstanceName(
- classname='OMC_LinuxFile',
- namespace=object_name.namespace,
- keybindings={
+ try:
+ keybindings = {
'LFName':object_name['Name'],
'FSName':object_name['FSName'],
'FSCreationClassName':object_name['FSCreationClassName'],
'CSName':getfqdn(),
'CSCreationClassName':object_name['CSCreationClassName'],
- 'LFCreationClassName':object_name['CreationClassName']})
+ 'LFCreationClassName':object_name['CreationClassName']}
+ except KeyError:
+ keybindings = {}
+ get_file_keys(object_name['Name'], keybindings, linux_file=True)
+ model['SameElement'] = pywbem.CIMInstanceName(
+ classname='OMC_LinuxFile',
+ namespace=object_name.namespace,
+ keybindings=keybindings)
yield model
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ba...@us...> - 2008-02-13 20:18:43
|
Revision: 535
http://omc.svn.sourceforge.net/omc/?rev=535&view=rev
Author: bartw
Date: 2008-02-13 12:18:47 -0800 (Wed, 13 Feb 2008)
Log Message:
-----------
minor fix
Modified Paths:
--------------
pybase/trunk/OMC_LogicalFile.py
Modified: pybase/trunk/OMC_LogicalFile.py
===================================================================
--- pybase/trunk/OMC_LogicalFile.py 2008-01-07 17:49:30 UTC (rev 534)
+++ pybase/trunk/OMC_LogicalFile.py 2008-02-13 20:18:47 UTC (rev 535)
@@ -541,6 +541,8 @@
dirs = ['/' + dir for dir in os.listdir('/')]
for dir in ['/'] + dirs:
stat = os.lstat(dir)
+ if not S_ISDIR(stat.st_mode):
+ continue
get_file_keys(dir, model, stat=stat)
if keys_only:
yield model
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|