You can subscribe to this list here.
2005 |
Jan
|
Feb
(1) |
Mar
(45) |
Apr
(150) |
May
(145) |
Jun
(150) |
Jul
(79) |
Aug
(313) |
Sep
(160) |
Oct
(309) |
Nov
(115) |
Dec
(60) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
(160) |
Feb
(144) |
Mar
(127) |
Apr
(48) |
May
(102) |
Jun
(54) |
Jul
(245) |
Aug
(94) |
Sep
(152) |
Oct
(162) |
Nov
(166) |
Dec
(740) |
2007 |
Jan
(752) |
Feb
(437) |
Mar
(328) |
Apr
(373) |
May
(569) |
Jun
(399) |
Jul
(369) |
Aug
(627) |
Sep
(100) |
Oct
(306) |
Nov
(166) |
Dec
(282) |
2008 |
Jan
(68) |
Feb
(145) |
Mar
(180) |
Apr
(160) |
May
(277) |
Jun
(229) |
Jul
(1188) |
Aug
(51) |
Sep
(97) |
Oct
(99) |
Nov
(95) |
Dec
(170) |
2009 |
Jan
(39) |
Feb
(73) |
Mar
(120) |
Apr
(121) |
May
(104) |
Jun
(262) |
Jul
(57) |
Aug
(171) |
Sep
(131) |
Oct
(88) |
Nov
(64) |
Dec
(83) |
2010 |
Jan
(55) |
Feb
(67) |
Mar
(124) |
Apr
(64) |
May
(130) |
Jun
(75) |
Jul
(164) |
Aug
(64) |
Sep
(44) |
Oct
(17) |
Nov
(43) |
Dec
(31) |
2011 |
Jan
(21) |
Feb
(10) |
Mar
(43) |
Apr
(46) |
May
(52) |
Jun
(71) |
Jul
(7) |
Aug
(16) |
Sep
(51) |
Oct
(14) |
Nov
(33) |
Dec
(15) |
2012 |
Jan
(12) |
Feb
(61) |
Mar
(129) |
Apr
(76) |
May
(70) |
Jun
(52) |
Jul
(29) |
Aug
(41) |
Sep
(32) |
Oct
(23) |
Nov
(38) |
Dec
(26) |
2013 |
Jan
(35) |
Feb
(37) |
Mar
(51) |
Apr
(15) |
May
(52) |
Jun
(15) |
Jul
(23) |
Aug
(21) |
Sep
(46) |
Oct
(69) |
Nov
(57) |
Dec
(26) |
2014 |
Jan
(5) |
Feb
(13) |
Mar
(17) |
Apr
(1) |
May
(5) |
Jun
|
Jul
(2) |
Aug
(2) |
Sep
(1) |
Oct
(16) |
Nov
(8) |
Dec
(4) |
2015 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
(1) |
Jun
(4) |
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
From: Chris B. <buc...@us...> - 2010-12-23 20:39:56
|
Update of /cvsroot/sblim/sfcb In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv27546 Modified Files: mofpp.c ChangeLog NEWS Log Message: [ 3054618 ] mofpp is overaggressive when detecting comments Index: mofpp.c =================================================================== RCS file: /cvsroot/sblim/sfcb/mofpp.c,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- mofpp.c 29 Nov 2010 20:15:54 -0000 1.8 +++ mofpp.c 23 Dec 2010 20:39:48 -0000 1.9 @@ -68,9 +68,19 @@ return 0; } +char* getLineEnding(char* s) { + char* e = NULL; + if ((e = strstr(s, "\r\n"))) { + e+=2; + } else if ((e = strstr(s, "\n"))) { + e+=1; + } + return e; +} + void processFile(char *fn, FILE *in, FILE *out) { - char *s,*e,rec[10000],*ifn=NULL; + char *s,*e,*es,rec[10000],*ifn=NULL; FILE *incFile; int comment=0; int nl=0; @@ -90,47 +100,57 @@ else { s = rec; - if (comment == 1) { - if ((e=strstr(s,"\r\n"))) { - strcpy(s,e+2); - comment=0; - } else if ((e=strstr(s,"\n"))) { - strcpy(s,e+1); - comment=0; - } - } else if (comment == 2) { - if ((e=strstr(s,"*/"))) { - strcpy(s,e+2); - comment=0; - } - else { - continue; - } + if (comment == 1) { /* check for single-line comment */ + e = getLineEnding(s); + if (e) { + strcpy(s, e); + comment = 0; + } + } else if (comment == 2) { /* check for block comment */ + if ((e = strstr(s, "*/"))) { + strcpy(s, getLineEnding(e)); + comment = 0; + } else { + continue; + } } - while ((s = strstr(s,"/"))) { - if (*(s+1) == '/') { - if ((e = strstr(s+2,"\r\n"))) { - strcpy(s,e+2); - } else if ((e = strstr(s+2,"\n"))) { - strcpy(s,e+1); - } else { - *s = 0; - comment = 1; - break; - } - } else if (*(s+1) == '*') { - if ((e = strstr(s+2,"*/"))) { - strcpy(s,e+2); - } else { - *s = 0; - comment = 2; - break; - } - } else { - s++; - } + /* skip whitespace */ + while ((*s == ' ') || (*s == '\t')) { + s++; } + es = s; + /* is this line a quoted string? */ + if (*s == '"') { + /* find end of the string */ + es++; + while ((s = strstr(es, "\""))) { + es = s+1; /* end of quoted string */ + } + } + + while ((s = strstr(es, "/"))) { + if (*(s + 1) == '/') { + e = getLineEnding(s); + if (e) { + strcpy(s, e); + } else { + *s = 0; + comment = 1; + break; + } + } else if (*(s + 1) == '*') { + if ((e = strstr(s + 2, "*/"))) { + strcpy(s, getLineEnding(e)); + } else { + *s = 0; + comment = 2; + break; + } + } else { + es++; + } + } fprintf(out,"%s",rec); } Index: NEWS =================================================================== RCS file: /cvsroot/sblim/sfcb/NEWS,v retrieving revision 1.567 retrieving revision 1.568 diff -u -d -r1.567 -r1.568 --- NEWS 21 Dec 2010 23:01:49 -0000 1.567 +++ NEWS 23 Dec 2010 20:39:48 -0000 1.568 @@ -4,6 +4,7 @@ Bugs fixed: - 3130727 CMPIPropertyMIFT.setProperty() missing objectpath keys +- 3054618 mofpp is overaggressive when detecting comments Changes in 1.3.10 ================= Index: ChangeLog =================================================================== RCS file: /cvsroot/sblim/sfcb/ChangeLog,v retrieving revision 1.640 retrieving revision 1.641 diff -u -d -r1.640 -r1.641 --- ChangeLog 21 Dec 2010 23:01:49 -0000 1.640 +++ ChangeLog 23 Dec 2010 20:39:48 -0000 1.641 @@ -1,3 +1,8 @@ +2010-12-23 Chris Buccella <buc...@li...> + + * mofpp.c: + [ 3054618 ] mofpp is overaggressive when detecting comments + 2010-12-21 Chris Buccella <buc...@li...> * cimXmlRequest.c: |
From: Chris B. <buc...@us...> - 2010-12-23 19:43:40
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "SFCB - Small Footprint CIM Broker". The branch, master has been updated via 69de96440809a08718889528b85a052c8c6e579c (commit) from 449d1926c465cfb275320060d090c9729f615daa (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 69de96440809a08718889528b85a052c8c6e579c Author: buccella <buc...@li...> Date: Thu Dec 23 14:43:27 2010 -0500 [ 3054618 ] mofpp is overaggressive when detecting comments ----------------------------------------------------------------------- Summary of changes: ChangeLog | 6 ++++++ NEWS | 1 + mofpp.c | 48 ++++++++++++++++++++++++++---------------------- 3 files changed, 33 insertions(+), 22 deletions(-) hooks/post-receive -- SFCB - Small Footprint CIM Broker |
From: Michael Chase-S. <mc...@us...> - 2010-12-22 19:47:05
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "SFCB - Small Footprint CIM Broker". The branch, master has been updated via 449d1926c465cfb275320060d090c9729f615daa (commit) via 3d7af3c1fed7b17f7d9f3e6ae0cef4d6f7a8b5fa (commit) from 48d5e65b4051f8ad7dfd8568c586263a0c846de6 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 449d1926c465cfb275320060d090c9729f615daa Merge: 3d7af3c1fed7b17f7d9f3e6ae0cef4d6f7a8b5fa 48d5e65b4051f8ad7dfd8568c586263a0c846de6 Author: Michael Chase-Salerno <br...@li...> Date: Wed Dec 22 14:46:35 2010 -0500 Merge branch 'master' of ssh://sblim.git.sourceforge.net/gitroot/sblim/sfcb commit 3d7af3c1fed7b17f7d9f3e6ae0cef4d6f7a8b5fa Author: Michael Chase-Salerno <br...@li...> Date: Wed Dec 22 14:45:37 2010 -0500 Cleaning up some debug printfs ----------------------------------------------------------------------- Summary of changes: cimRequest.c | 2 -- cimRsRequest.c | 8 +++----- cimXmlGen.c | 6 +++--- cimXmlParser.c | 2 +- 4 files changed, 7 insertions(+), 11 deletions(-) hooks/post-receive -- SFCB - Small Footprint CIM Broker |
From: Chris B. <buc...@us...> - 2010-12-21 23:35:06
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "SFCB - Small Footprint CIM Broker". The branch, master has been updated via 48d5e65b4051f8ad7dfd8568c586263a0c846de6 (commit) from 14b9b3ca61b3fe3f117c979e18d00bf6ca230f79 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 48d5e65b4051f8ad7dfd8568c586263a0c846de6 Author: buccella <buc...@li...> Date: Tue Dec 21 18:34:50 2010 -0500 [ 3130727 ] CMPIPropertyMIFT.setProperty() missing objectpath keys ----------------------------------------------------------------------- Summary of changes: ChangeLog | 5 +++++ NEWS | 10 ++++++++++ cimXmlOps.y | 12 ++++++++++-- 3 files changed, 25 insertions(+), 2 deletions(-) hooks/post-receive -- SFCB - Small Footprint CIM Broker |
From: Chris B. <buc...@us...> - 2010-12-21 23:01:57
|
Update of /cvsroot/sblim/sfcb In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv2837 Modified Files: cimXmlRequest.c ChangeLog NEWS Log Message: [ 3130727 ] CMPIPropertyMIFT.setProperty() missing objectpath keys Index: NEWS =================================================================== RCS file: /cvsroot/sblim/sfcb/NEWS,v retrieving revision 1.566 retrieving revision 1.567 diff -u -d -r1.566 -r1.567 --- NEWS 29 Nov 2010 21:15:09 -0000 1.566 +++ NEWS 21 Dec 2010 23:01:49 -0000 1.567 @@ -1,3 +1,10 @@ +Changes in 1.3.11 +================= + +Bugs fixed: + +- 3130727 CMPIPropertyMIFT.setProperty() missing objectpath keys + Changes in 1.3.10 ================= Index: cimXmlRequest.c =================================================================== RCS file: /cvsroot/sblim/sfcb/cimXmlRequest.c,v retrieving revision 1.60 retrieving revision 1.61 diff -u -d -r1.60 -r1.61 --- cimXmlRequest.c 20 Aug 2010 19:25:38 -0000 1.60 +++ cimXmlRequest.c 21 Dec 2010 23:01:49 -0000 1.61 @@ -2234,10 +2234,10 @@ _SFCB_ENTER(TRACE_CIMXMLPROC, "setProperty"); CMPIObjectPath *path; CMPIInstance *inst; - CMPIType t; + CMPIType t, type; CMPIStatus rc; - CMPIValue val; - int irc; + CMPIValue val, *valp; + int irc, i, m; BinRequestContext binCtx; BinResponseHdr *resp; SetPropertyReq sreq = BINREQ(OPS_SetProperty, 3); @@ -2247,6 +2247,13 @@ hdr->className=req->op.className.data; path = TrackedCMPIObjectPath(req->op.nameSpace.data, req->instanceName.className, &rc); + for (i = 0, m = req->instanceName.bindings.next; i < m; i++) { + valp = getKeyValueTypePtr(req->instanceName.bindings.keyBindings[i].type, + req->instanceName.bindings.keyBindings[i].value, + &req->instanceName.bindings.keyBindings[i].ref, + &val, &type, req->op.nameSpace.data); + CMAddKey(path, req->instanceName.bindings.keyBindings[i].name, valp, type); + } inst = internal_new_CMPIInstance(MEM_TRACKED, NULL, NULL, 1); Index: ChangeLog =================================================================== RCS file: /cvsroot/sblim/sfcb/ChangeLog,v retrieving revision 1.639 retrieving revision 1.640 diff -u -d -r1.639 -r1.640 --- ChangeLog 29 Nov 2010 21:15:09 -0000 1.639 +++ ChangeLog 21 Dec 2010 23:01:49 -0000 1.640 @@ -1,3 +1,8 @@ +2010-12-21 Chris Buccella <buc...@li...> + + * cimXmlRequest.c: + [ 3130727 ] CMPIPropertyMIFT.setProperty() missing objectpath keys + 2010-11-29 Chris Buccella <buc...@li...> * queryLexer.l, test/TestProviders/cmpiTestMethodProvider.c, |
From: Michael Chase-S. <mc...@us...> - 2010-12-21 21:42:37
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "SFCB - Small Footprint CIM Broker". The branch, master has been updated via 14b9b3ca61b3fe3f117c979e18d00bf6ca230f79 (commit) from db386642d5eeacdcc2b20e4a8e1718163d9658e1 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 14b9b3ca61b3fe3f117c979e18d00bf6ca230f79 Author: Michael Chase-Salerno <br...@li...> Date: Tue Dec 21 16:41:56 2010 -0500 Completing 3095225 ----------------------------------------------------------------------- Summary of changes: NEWS | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) hooks/post-receive -- SFCB - Small Footprint CIM Broker |
From: Michael Chase-S. <mc...@us...> - 2010-12-21 21:29:51
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "SFCB - Small Footprint CIM Broker". The branch, master has been updated via db386642d5eeacdcc2b20e4a8e1718163d9658e1 (commit) from a082f3257d3468562ad4e22d7f9398326c02f623 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit db386642d5eeacdcc2b20e4a8e1718163d9658e1 Author: Michael Chase-Salerno <br...@li...> Date: Tue Dec 21 16:29:16 2010 -0500 Correction to NEWS file ----------------------------------------------------------------------- Summary of changes: NEWS | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) hooks/post-receive -- SFCB - Small Footprint CIM Broker |
From: Tyrel D. <ty...@us...> - 2010-12-21 02:48:17
|
Update of /cvsroot/sblim/cmpi-base In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv4988 Modified Files: NEWS OSBase_Processor.c OSBase_Processor.h cmpiOSBase_ProcessorProvider.c Log Message: Fixed 2610775: ProcessorProvider crashes on exit Index: NEWS =================================================================== RCS file: /cvsroot/sblim/cmpi-base/NEWS,v retrieving revision 1.40 retrieving revision 1.41 diff -u -d -r1.40 -r1.41 --- NEWS 21 Dec 2010 02:44:26 -0000 1.40 +++ NEWS 21 Dec 2010 02:48:09 -0000 1.41 @@ -2,6 +2,7 @@ - 2843613 Missing fclose in sblim-cmpi-base - 2882514 leak in sblim-cmpi-base-1.5.9/cmpiOSBase_OperatingSystem.c - 2836926 _osbase_common_init unreliable +- 2610775 ProcessorProvider crashes on exit Changes in Version 1.6.0 ======================== Index: cmpiOSBase_ProcessorProvider.c =================================================================== RCS file: /cvsroot/sblim/cmpi-base/cmpiOSBase_ProcessorProvider.c,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- cmpiOSBase_ProcessorProvider.c 25 Jul 2009 00:37:30 -0000 1.11 +++ cmpiOSBase_ProcessorProvider.c 21 Dec 2010 02:48:09 -0000 1.12 @@ -30,6 +30,7 @@ #include "OSBase_Common.h" #include "cmpiOSBase_Common.h" #include "cmpiOSBase_Processor.h" +#include "OSBase_Processor.h" static const CMPIBroker * _broker; @@ -51,6 +52,7 @@ CMPIStatus OSBase_ProcessorProviderCleanup( CMPIInstanceMI * mi, const CMPIContext * ctx, CMPIBoolean terminate) { _OSBASE_TRACE(1,("--- %s CMPI Cleanup() called",_ClassName)); + proc_cancel_thread(); _OSBASE_TRACE(1,("--- %s CMPI Cleanup() exited",_ClassName)); CMReturn(CMPI_RC_OK); } Index: OSBase_Processor.h =================================================================== RCS file: /cvsroot/sblim/cmpi-base/OSBase_Processor.h,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- OSBase_Processor.h 25 Jul 2009 00:37:30 -0000 1.6 +++ OSBase_Processor.h 21 Dec 2010 02:48:09 -0000 1.7 @@ -58,6 +58,8 @@ void free_processorlist( struct processorlist * ); void free_processor( struct cim_processor * ); +int proc_cancel_thread(); + /* ---------------------------------------------------------------------------*/ #ifdef __cplusplus Index: OSBase_Processor.c =================================================================== RCS file: /cvsroot/sblim/cmpi-base/OSBase_Processor.c,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- OSBase_Processor.c 25 Jul 2009 00:37:30 -0000 1.16 +++ OSBase_Processor.c 21 Dec 2010 02:48:09 -0000 1.17 @@ -56,6 +56,7 @@ #define SAMPLE_PERIOD 60 #define SAMPLE_INTERVAL 10 static int SAMPLE_CPU = 1; +static int running = 1; static pthread_t tid; @@ -123,12 +124,6 @@ struct cpu_sample * cur_ptr; int i; - /* SAMPLE_CPU = 0; */ - /* pthread_join(tid, NULL); */ - - pthread_cancel(tid); - /* sleep(1); */ - for (i = 0; i < num_cpus; i++) { cur_ptr = cpu_samples[i]->next; cpu_samples[i]->next = NULL; @@ -143,6 +138,13 @@ /* free(cpu_loads); */ } +int proc_cancel_thread() { + running = 0; + pthread_join(tid, NULL); + + return 1; +} + int enum_all_processor( struct processorlist ** lptr ) { struct processorlist * lptrhelp = NULL; char ** hdout = NULL; @@ -555,7 +557,7 @@ int count = 0; int i; - while (1) { + while (running) { sleep(SAMPLE_INTERVAL); for (i = 0; i < num_cpus; i++) { |
From: Tyrel D. <ty...@us...> - 2010-12-21 02:44:37
|
Update of /cvsroot/sblim/cmpi-base In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv4282 Modified Files: NEWS OSBase_Common.c Log Message: Fixed 2836926: _osbase_common_init unreliable Index: OSBase_Common.c =================================================================== RCS file: /cvsroot/sblim/cmpi-base/OSBase_Common.c,v retrieving revision 1.22 retrieving revision 1.23 diff -u -d -r1.22 -r1.23 --- OSBase_Common.c 25 Jul 2009 00:37:30 -0000 1.22 +++ OSBase_Common.c 21 Dec 2010 02:44:26 -0000 1.23 @@ -42,6 +42,7 @@ /* ---------------------------------------------------------------------------*/ +#define DEFAULT_HOST_NAME "localhost.localdomain" char * CIM_HOST_NAME = NULL; char * CIM_OS_NAME = NULL; int CIM_OS_TIMEZONE = 999; @@ -155,7 +156,9 @@ _OSBASE_TRACE(4,("--- _init_system_name() called : init")); host = calloc(1,255); - if ( gethostname(host, 255 ) == -1 ) { return; } + if ( gethostname(host, 255 ) == -1 ) { + _OSBASE_TRACE(4,("--- _init_system_name() : gethostname returned -1")); + } /* if host does not contain a '.' we can suppose, that the domain is not * available in the current value. but we try to get the full qualified * hostname. @@ -185,6 +188,9 @@ strcat( CIM_HOST_NAME, "."); strcat( CIM_HOST_NAME, domain ); } + } else { + CIM_HOST_NAME = calloc(1, (strlen(DEFAULT_HOST_NAME) + 1)); + strcpy(CIM_HOST_NAME, DEFAULT_HOST_NAME); } if(host) free(host); Index: NEWS =================================================================== RCS file: /cvsroot/sblim/cmpi-base/NEWS,v retrieving revision 1.39 retrieving revision 1.40 diff -u -d -r1.39 -r1.40 --- NEWS 15 Dec 2009 20:30:06 -0000 1.39 +++ NEWS 21 Dec 2010 02:44:26 -0000 1.40 @@ -1,6 +1,7 @@ Bugs Fixed: - 2843613 Missing fclose in sblim-cmpi-base - 2882514 leak in sblim-cmpi-base-1.5.9/cmpiOSBase_OperatingSystem.c +- 2836926 _osbase_common_init unreliable Changes in Version 1.6.0 ======================== |
From: Dave B. <bla...@us...> - 2010-12-15 12:26:23
|
Update of /cvsroot/sblim/jsr48-client In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv9362 Modified Files: Tag: CIM_CLIENT_2_1_7_M build.xml sblim-cim-client2.spec Log Message: 2.1.7 release work Index: sblim-cim-client2.spec =================================================================== RCS file: /cvsroot/sblim/jsr48-client/sblim-cim-client2.spec,v retrieving revision 1.20 retrieving revision 1.20.2.1 diff -u -d -r1.20 -r1.20.2.1 --- sblim-cim-client2.spec 15 Dec 2010 10:57:15 -0000 1.20 +++ sblim-cim-client2.spec 15 Dec 2010 12:26:14 -0000 1.20.2.1 @@ -1,7 +1,7 @@ %define name sblim-cim-client2 %define project_folder %{name}-%{version}-src %define archive_folder build -%define version HEAD +%define version 2.1.7 %define release 1jpp %define section free Index: build.xml =================================================================== RCS file: /cvsroot/sblim/jsr48-client/build.xml,v retrieving revision 1.42 retrieving revision 1.42.2.1 diff -u -d -r1.42 -r1.42.2.1 --- build.xml 6 Dec 2010 19:22:30 -0000 1.42 +++ build.xml 15 Dec 2010 12:26:13 -0000 1.42.2.1 @@ -36,7 +36,7 @@ <property name="Manifest.name" value="SBLIM CIM Client for Java" /> <property name="Manifest.title" value="SBLIM CIM Client for Java" /> <property name="Manifest.vendor" value="IBM Corporation 2005, 2010" /> - <property name="Manifest.version" value="HEAD" /> + <property name="Manifest.version" value="2.1.7" /> <property name="Directory.source.core" value="${basedir}/src" /> <property name="Directory.source.samples" value="${basedir}/smpl" /> |
From: Dave B. <bla...@us...> - 2010-12-15 10:57:23
|
Update of /cvsroot/sblim/jsr48-client In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv25443 Modified Files: ChangeLog sblim-cim-client2.spec NEWS Log Message: 2.1.7 release work Index: sblim-cim-client2.spec =================================================================== RCS file: /cvsroot/sblim/jsr48-client/sblim-cim-client2.spec,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- sblim-cim-client2.spec 15 Sep 2010 12:14:30 -0000 1.19 +++ sblim-cim-client2.spec 15 Dec 2010 10:57:15 -0000 1.20 @@ -158,6 +158,13 @@ # ----------------------------------------------------------------------------- %changelog +* Wed Dec 15 2010 Dave Blaschke <bla...@us...> +- New release 2.1.7 + o 3111718 org.sblim.cimclient SSL Code is using the wrong SSL Property + o 3109824 Move Java link from Sun to Oracle + o 3078280 Fix for a null pointer exception in 1.3.9.1 + o 3062747 SblimCIMClient does not log all CIM-XML responces. + * Wed Sep 15 2010 Dave Blaschke <bla...@us...> - New release 2.1.6 o 3046073 Performance hit due to socket conn. creation with timeout Index: NEWS =================================================================== RCS file: /cvsroot/sblim/jsr48-client/NEWS,v retrieving revision 1.202 retrieving revision 1.203 diff -u -d -r1.202 -r1.203 --- NEWS 6 Dec 2010 19:43:02 -0000 1.202 +++ NEWS 15 Dec 2010 10:57:15 -0000 1.203 @@ -1,4 +1,4 @@ -Changes in HEAD +Version 2.1.7 ================ 3111718 org.sblim.cimclient SSL Code is using the wrong SSL Property 3109824 Move Java link from Sun to Oracle Index: ChangeLog =================================================================== RCS file: /cvsroot/sblim/jsr48-client/ChangeLog,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- ChangeLog 15 Sep 2010 12:14:30 -0000 1.18 +++ ChangeLog 15 Dec 2010 10:57:15 -0000 1.19 @@ -1,3 +1,39 @@ +Release 2.1.7 +============= + +Mon Dec 06 13:43:02 CST 2010 blaschke-oss + + 3111718 org.sblim.cimclient SSL Code is using the wrong SSL Property + + WBEMConfiguration.java 1.33 + HttpSocketFactory.java 1.19 + WBEMConfigurationProperties.java 1.32 + sblim-cim-client2.properties 1.16 + NEWS 1.202 + +Mon Dec 06 13:22:30 CST 2010 blaschke-oss + + 3109824 Move Java link from Sun to Oracle + + build.xml 1.42 + NEWS 1.201 + +Tue Nov 09 16:49:15 CST 2010 blaschke-oss + + 3078280 Fix for a null pointer exception in 1.3.9.1 + + WBEMConfiguration.java 1.32 + NEWS 1.200 + +Tue Nov 09 16:42:20 CST 2010 blaschke-oss + + 3062747 SblimCIMClient does not log all CIM-XML responces. + + TimeStamp.java 1.7 + DebugInputStream.java 1.7 + CIMClientXML_HelperImpl.java 1.39 + NEWS 1.199 + Release 2.1.6 ============= |
From: Tyrel D. <ty...@us...> - 2010-12-15 00:41:17
|
Update of /cvsroot/sblim/gather In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv9833 Modified Files: repos.c Log Message: Fixed 3109852: TimeStamp property should be end of interval Index: repos.c =================================================================== RCS file: /cvsroot/sblim/gather/repos.c,v retrieving revision 1.28 retrieving revision 1.29 diff -u -d -r1.28 -r1.29 --- repos.c 20 Aug 2010 23:44:23 -0000 1.28 +++ repos.c 15 Dec 2010 00:41:09 -0000 1.29 @@ -371,7 +371,7 @@ syslen=strlen(mv[j][numv[j]-1].mvSystemId) + 1; reslen=strlen(mv[j][numv[j]-1].mvResource) + 1; if (useIntervals) { - vs->vsValues[actnum].viCaptureTime=mv[j][numv[j]-1].mvTimeStamp; + vs->vsValues[actnum].viCaptureTime=mv[j][0].mvTimeStamp; vs->vsValues[actnum].viDuration= mv[j][0].mvTimeStamp - vs->vsValues[actnum].viCaptureTime; |
From: Tyrel D. <ty...@us...> - 2010-12-15 00:33:56
|
Update of /cvsroot/sblim/gather/util In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv7942/util Modified Files: mlog.c Log Message: Updated fix 3109840: mlog with arguments segfaults on M_SHOW Index: mlog.c =================================================================== RCS file: /cvsroot/sblim/gather/util/mlog.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- mlog.c 15 Nov 2010 23:36:17 -0000 1.4 +++ mlog.c 15 Dec 2010 00:33:48 -0000 1.5 @@ -55,7 +55,7 @@ syslog(priosysl,buf); if (errout) { - vfprintf(stderr,buf); + fprintf(stderr,buf); } va_end(ap); } |
From: Waiki W. <wa...@us...> - 2010-12-10 02:42:49
|
Update of /cvsroot/sblim/ecute_2.3/Docs In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv28747/Docs Added Files: MOFParser Design.doc Log Message: documentation update --- NEW FILE: MOFParser Design.doc --- (This appears to be a binary file; contents omitted.) |
From: Waiki W. <wa...@us...> - 2010-12-10 02:42:38
|
Update of /cvsroot/sblim/ecute_2.3/Docs In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv28722/Docs Added Files: MOF Format Rules.pdf Log Message: documentation update --- NEW FILE: MOF Format Rules.pdf --- (This appears to be a binary file; contents omitted.) |
From: Waiki W. <wa...@us...> - 2010-12-10 02:42:26
|
Update of /cvsroot/sblim/ecute_2.3/Docs In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv28700/Docs Added Files: ECUTE Modeler-CIM MOF Import & Export userguide.pdf Log Message: documentation update --- NEW FILE: ECUTE Modeler-CIM MOF Import & Export userguide.pdf --- (This appears to be a binary file; contents omitted.) |
From: Waiki W. <wa...@us...> - 2010-12-10 02:42:14
|
Update of /cvsroot/sblim/ecute_2.3/Docs In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv28668/Docs Added Files: ECUTE Modeler-CIM MOF Import & Export userguide.doc Log Message: documentation update --- NEW FILE: ECUTE Modeler-CIM MOF Import & Export userguide.doc --- (This appears to be a binary file; contents omitted.) |
From: Waiki W. <wa...@us...> - 2010-12-10 02:42:02
|
Update of /cvsroot/sblim/ecute_2.3/Docs In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv28646/Docs Added Files: ECUTE Build Process_1009.doc Log Message: documentation update --- NEW FILE: ECUTE Build Process_1009.doc --- (This appears to be a binary file; contents omitted.) |
From: Waiki W. <wa...@us...> - 2010-12-10 02:41:49
|
Update of /cvsroot/sblim/ecute_2.3/Docs In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv28615/Docs Added Files: Design change for supporting UMLPackagePath_WW_0811.doc Log Message: documentation update --- NEW FILE: Design change for supporting UMLPackagePath_WW_0811.doc --- (This appears to be a binary file; contents omitted.) |
From: Waiki W. <wa...@us...> - 2010-12-10 02:41:38
|
Update of /cvsroot/sblim/ecute_2.3/Docs In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv28600/Docs Added Files: Design change for reparing broken references.doc Log Message: documentation update --- NEW FILE: Design change for reparing broken references.doc --- (This appears to be a binary file; contents omitted.) |
From: Waiki W. <wa...@us...> - 2010-12-10 02:41:17
|
Update of /cvsroot/sblim/ecute_2.3/Docs In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv28568/Docs Added Files: Design change for removing the QualifiersList.pdf Log Message: documentation update --- NEW FILE: Design change for removing the QualifiersList.pdf --- (This appears to be a binary file; contents omitted.) |
From: Michael Chase-S. <mc...@us...> - 2010-12-09 20:31:50
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "SFCB - Small Footprint CIM Broker". The branch, master has been updated via a082f3257d3468562ad4e22d7f9398326c02f623 (commit) via f42a964445f192f04a1054e840354a68b4712ed3 (commit) from c041f187a80481548ea4fc875ae061e2bcbe1fa1 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit a082f3257d3468562ad4e22d7f9398326c02f623 Merge: c041f187a80481548ea4fc875ae061e2bcbe1fa1 f42a964445f192f04a1054e840354a68b4712ed3 Author: Michael Chase-Salerno <br...@li...> Date: Thu Dec 9 15:30:45 2010 -0500 Merge branch 'rest' commit f42a964445f192f04a1054e840354a68b4712ed3 Author: Michael Chase-Salerno <br...@li...> Date: Thu Dec 9 15:30:15 2010 -0500 Grouping interim tests ----------------------------------------------------------------------- Summary of changes: ...GET => Interim_ec_interop_class_collection.GET} | 0 ...s => Interim_ec_interop_class_collection.lines} | 0 ...PersonInterim.GET => Interim_gi_TestPerson.GET} | 0 ...onInterim.lines => Interim_gi_TestPerson.lines} | 0 4 files changed, 0 insertions(+), 0 deletions(-) rename test/cimrstest/{ec_interop_class_collectionInterim.GET => Interim_ec_interop_class_collection.GET} (100%) rename test/cimrstest/{ec_interop_class_collectionInterim.lines => Interim_ec_interop_class_collection.lines} (100%) rename test/cimrstest/{gi_TestPersonInterim.GET => Interim_gi_TestPerson.GET} (100%) rename test/cimrstest/{gi_TestPersonInterim.lines => Interim_gi_TestPerson.lines} (100%) hooks/post-receive -- SFCB - Small Footprint CIM Broker |
From: Michael Chase-S. <mc...@us...> - 2010-12-08 22:04:07
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "SFCB - Small Footprint CIM Broker". The branch, master has been updated via c041f187a80481548ea4fc875ae061e2bcbe1fa1 (commit) via dd831c147526f2a4181beb7b6d2f75946721d3b8 (commit) via 9ff0af3e5d2352c91d37e6c6ddc20c9c05c710d5 (commit) from 45685ca43db75bb786ce65790091ec6c08e0e5ca (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit c041f187a80481548ea4fc875ae061e2bcbe1fa1 Author: Michael Chase-Salerno <br...@li...> Date: Wed Dec 8 17:03:02 2010 -0500 [3095225] Implement Simple REST Requests GetInstanceCollection (EnumInstances) support commit dd831c147526f2a4181beb7b6d2f75946721d3b8 Merge: 45685ca43db75bb786ce65790091ec6c08e0e5ca 9ff0af3e5d2352c91d37e6c6ddc20c9c05c710d5 Author: Michael Chase-Salerno <br...@li...> Date: Wed Dec 8 16:55:37 2010 -0500 Merge branch 'rest' commit 9ff0af3e5d2352c91d37e6c6ddc20c9c05c710d5 Author: Michael Chase-Salerno <br...@li...> Date: Wed Dec 8 16:38:54 2010 -0500 [3095225] Implement Simple REST Requests GetInstance Collection (enuminstance) support ----------------------------------------------------------------------- Summary of changes: ChangeLog | 11 +- cimRsRequest.c | 42 +++++- ...GET => Interim_enum_instcoll_CIM_Namespace.GET} | 2 +- .../Interim_enum_instcoll_CIM_Namespace.lines | 179 ++++++++++++++++++++ 4 files changed, 230 insertions(+), 4 deletions(-) copy test/cimrstest/{ei_CIMNamespace.GET => Interim_enum_instcoll_CIM_Namespace.GET} (96%) create mode 100644 test/cimrstest/Interim_enum_instcoll_CIM_Namespace.lines hooks/post-receive -- SFCB - Small Footprint CIM Broker |
From: Michael Chase-S. <mc...@us...> - 2010-12-06 23:03:10
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "SFCB - Small Footprint CIM Broker". The branch, master has been updated via 45685ca43db75bb786ce65790091ec6c08e0e5ca (commit) via 76391d38ea6f66336280044d8748a66bdfdee044 (commit) from feb5261516c45b254b534e8bc13d526067ae1aa4 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 45685ca43db75bb786ce65790091ec6c08e0e5ca Author: Michael Chase-Salerno <br...@li...> Date: Mon Dec 6 18:01:48 2010 -0500 [3095225] Implement Simple REST Requests commit 76391d38ea6f66336280044d8748a66bdfdee044 Author: Michael Chase-Salerno <br...@li...> Date: Mon Dec 6 17:57:11 2010 -0500 [3095225] Implement Simple REST Requests GetClass (EnumClasses) support ----------------------------------------------------------------------- Summary of changes: ChangeLog | 7 +++ cimRsRequest.c | 51 ++++++++++++++++++-- ....GET => ec_interop_class_collectionInterim.GET} | 0 .../ec_interop_class_collectionInterim.lines | 12 +++++ 4 files changed, 65 insertions(+), 5 deletions(-) copy test/cimrstest/{ecn_interop_class_collection.GET => ec_interop_class_collectionInterim.GET} (100%) create mode 100644 test/cimrstest/ec_interop_class_collectionInterim.lines hooks/post-receive -- SFCB - Small Footprint CIM Broker |
From: Dave B. <bla...@us...> - 2010-12-06 19:43:10
|
Update of /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv9388/src/org/sblim/cimclient Modified Files: WBEMConfigurationProperties.java Log Message: 3111718 - org.sblim.cimclient SSL Code is using the wrong SSL Property Index: WBEMConfigurationProperties.java =================================================================== RCS file: /cvsroot/sblim/jsr48-client/src/org/sblim/cimclient/WBEMConfigurationProperties.java,v retrieving revision 1.31 retrieving revision 1.32 diff -u -d -r1.31 -r1.32 --- WBEMConfigurationProperties.java 15 Sep 2010 11:21:26 -0000 1.31 +++ WBEMConfigurationProperties.java 6 Dec 2010 19:43:02 -0000 1.32 @@ -26,6 +26,7 @@ * 2957387 2010-03-03 blaschke-oss EmbededObject XML attribute must not be all uppercases * 2970881 2010-03-15 blaschke-oss Add property to control EmbeddedObject case * 3046073 2010-09-07 blaschke-oss Performance hit due to socket conn. creation with timeout + * 3111718 2010-11-18 blaschke-oss org.sblim.cimclient SSL Code is using the wrong SSL Property */ package org.sblim.cimclient; @@ -407,7 +408,7 @@ * Recognition: <code>On next SSL connection</code><br /> * Default: <code>Security.getProviders("SSLContext.SSL")</code><br /> */ - public static final String SSL_SOCKET_PROVIDER = "ssl.SocketFactory.provider"; + public static final String SSL_SOCKET_PROVIDER = "sblim.wbem.sslSocketProvider"; /** * The provider to use for creation of SSL server sockets.<br /> @@ -419,7 +420,7 @@ * Recognition: <code>On next SSL connection</code><br /> * Default: <code>Security.getProviders("SSLContext.SSL")</code><br /> */ - public static final String SSL_SERVER_SOCKET_PROVIDER = "ssl.ServerSocketFactory.provider"; + public static final String SSL_SERVER_SOCKET_PROVIDER = "sblim.wbem.sslServerSocketProvider"; /** * The protocol used for SSLContext.getInstance(String protocol). For |