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
(1) |
3
|
4
|
5
|
6
|
|
7
|
8
|
9
|
10
|
11
|
12
|
13
|
|
14
|
15
|
16
|
17
|
18
(1) |
19
|
20
|
|
21
|
22
|
23
|
24
|
25
|
26
|
27
|
|
28
|
29
|
30
|
31
|
|
|
|
|
From: <ba...@us...> - 2008-12-18 23:30:45
|
Revision: 1161
http://omc.svn.sourceforge.net/omc/?rev=1161&view=rev
Author: bartw
Date: 2008-12-18 23:30:39 +0000 (Thu, 18 Dec 2008)
Log Message:
-----------
changed version to prepare for release
Modified Paths:
--------------
cmpi-bindings/trunk/VERSION.cmake
Modified: cmpi-bindings/trunk/VERSION.cmake
===================================================================
--- cmpi-bindings/trunk/VERSION.cmake 2008-12-02 02:04:19 UTC (rev 1160)
+++ cmpi-bindings/trunk/VERSION.cmake 2008-12-18 23:30:39 UTC (rev 1161)
@@ -1,3 +1,3 @@
SET(VERSION_MAJOR "0")
SET(VERSION_MINOR "4")
-SET(VERSION_PATCH "0rc1")
+SET(VERSION_PATCH "0")
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ba...@us...> - 2008-12-02 02:04:21
|
Revision: 1160
http://omc.svn.sourceforge.net/omc/?rev=1160&view=rev
Author: bartw
Date: 2008-12-02 02:04:19 +0000 (Tue, 02 Dec 2008)
Log Message:
-----------
added
Added Paths:
-----------
cmpi-bindings/trunk/test/python/start.py
Added: cmpi-bindings/trunk/test/python/start.py
===================================================================
--- cmpi-bindings/trunk/test/python/start.py (rev 0)
+++ cmpi-bindings/trunk/test/python/start.py 2008-12-02 02:04:19 UTC (rev 1160)
@@ -0,0 +1,42 @@
+#!/usr/bin/env python
+
+import pywbem
+from subprocess import call, Popen, PIPE
+from time import sleep
+import sys
+
+conn = pywbem.SFCBUDSConnection()
+conn.default_namespace = 'root/interop'
+
+cnt = 0
+while True:
+ call('/etc/init.d/sfcb start', shell=True)
+ for i in xrange(0,20):
+ sleep(1)
+ try:
+ cnames = conn.EnumerateClassNames()
+ break;
+ except:
+ exc_class, exc, tb = sys.exc_info()
+ sys.stdout.write('.'); sys.stdout.flush()
+ sleep(1)
+ else:
+ raise exc_class, exc, tb
+ print '\nfetched %s classes' % len(cnames)
+ print cnt
+ cnt+= 1
+ call('/etc/init.d/sfcb stop', shell=True)
+ for i in xrange(0,20):
+ po = Popen('ps ax | grep sfcbd | grep -v grep', shell=True, stdout=PIPE)
+ procs = po.stdout.read()
+ if po.wait() != 0:
+ break
+ sys.stdout.write('.'); sys.stdout.flush()
+ sleep(1)
+ else:
+ print '\nError: not all sfcbd processes stopped'
+ print procs
+ sys.exit(1)
+
+
+
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|