Review Request 430: openlmi-locale [1/1] New provider: Locale
by Stephen Gallagher
-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
http://reviewboard-openlmi.rhcloud.com/r/430/
-----------------------------------------------------------
Review request for OpenLMI Developers.
Repository: openlmi-providers
Description
-------
New provider: Locale
Diffs
-----
CMakeLists.txt c5a5c7c8fd1b24f76c4953e8a3cc8257bbe58d8e
README a80a1d2624c80367ed53e06f50804ed39b3103da
mof/60_LMI_Locale.mof PRE-CREATION
openlmi-providers.spec 6e75e6f8332df807be4c2c5260211fce3339db89
src/CMakeLists.txt 27bd416e1545725af0975e806975ca2119b4388b
src/locale/CMakeLists.txt PRE-CREATION
src/locale/LMI_LocaleProvider.c PRE-CREATION
src/locale/localed.h PRE-CREATION
src/locale/localed.c PRE-CREATION
Diff: http://reviewboard-openlmi.rhcloud.com/r/430/diff/
Testing
-------
Thanks,
Vitezslav Crhonek
9 years, 6 months
Re: Review Request 314: [openlmi-storage] Add .reviewboardrc configuration file
by Stephen Gallagher
-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
http://reviewboard-openlmi.rhcloud.com/r/314/
-----------------------------------------------------------
(Updated July 3, 2013, 12:03 p.m.)
Status
------
This change has been marked as submitted.
Review request for OpenLMI Developers.
Repository: openlmi-storage
Description
-------
Add .reviewboardrc configuration file
Also removes the overly-agressive .* entry in .gitignore, since it prevents updates to the .gitignore and .reviewboardrc files.
Diffs
-----
.gitignore 5c8cb4947de0a5845db267b5490de2bd29f4b35f
.reviewboardrc PRE-CREATION
Diff: http://reviewboard-openlmi.rhcloud.com/r/314/diff/
Testing
-------
Submitted this review via post-review using this configuration file.
Thanks,
Stephen Gallagher
9 years, 10 months
Review Request 723: Rewrite the registration script in preparation for further improvements
by Stephen Gallagher
-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
http://reviewboard-openlmi.rhcloud.com/r/723/
-----------------------------------------------------------
Review request for OpenLMI Developers.
Repository: openlmi-providers
Description
-------
Here's a new registration script. It's a merge of the existing openlmi-mof-register and openlmi-register pegasus and should work as drop-in replacement for the openlmi-mof-register. The only slight difference is that the Pegasus interop namespace is not hard coded into the Pegasus registration calls but now there's an attempt to detect the right one. And the whole thing is now written in (sort of) Python.
This is only the first step in the registration rewrite: Python should make it easier for manipulating a "side database" that would keep the registration data independently of the CIMOMs and eventually allow for re-registration when a new CIMOM is installed or upgraded. This will also make possible for the providers package not to depend on a CIMOM. I will prepare some design sketches of the registration process I envision to gather feedback and ideas: doing this correctly and robustly enough is going to be rather difficult.
Diffs
-----
openlmi-mof-register.py PRE-CREATION
Diff: http://reviewboard-openlmi.rhcloud.com/r/723/diff/
Testing
-------
Thanks,
Tomas Smetana
10 years, 2 months
Review Request 687: lmishell, verify server side certificate
by Stephen Gallagher
-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
http://reviewboard-openlmi.rhcloud.com/r/687/
-----------------------------------------------------------
Review request for OpenLMI Developers.
Repository: openlmi-tools
Description
-------
This patch introduces server side certificate check, if SSL used. LMIShell can be told not to verify the certificate by CLI option -n, --noverify.
Diffs
-----
cli/lmi/shell/LMIBaseClient.py a8ecbcb116de488c6099e6da71631323e98610b7
cli/lmi/shell/LMIConnection.py c1ecaea86a7a02479eaae37cfc1720203bf97202
cli/lmi/shell/LMIConsole.py f81099fa84f1dadf3ac59597f3f020a521320899
cli/lmi/shell/LMIShellClient.py ca9a927464de4e67a5331cb095be34ab0b01e903
cli/lmi/shell/LMIShellOptions.py 3e182a7e8ebcbebd78d526b2c938f20455dd1a29
cli/lmishell a49a2fa29342ecefbf48626e1caa285df1cfa16b
Diff: http://reviewboard-openlmi.rhcloud.com/r/687/diff/
Testing
-------
Thanks,
Peter Hatina
10 years, 2 months
Review Request 702: lmishell, introduce help() method
by Stephen Gallagher
-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
http://reviewboard-openlmi.rhcloud.com/r/702/
-----------------------------------------------------------
Review request for OpenLMI Developers.
Repository: openlmi-tools
Description
-------
This patch introduces simple help() function, which can either display man page for lmishell (if installed), or pydoc help for an object.
See following example:
> help
Type help() to see man page for lmishell, or help(object) for help about object.
> help()
... man page ...
or
Man page for lmishell can not be found, refer to Wiki page instead.
Available at: https://fedorahosted.org/openlmi/wiki/shell
> help(some_function)
... pydoc help ...
Diffs
-----
cli/lmi/shell/LMIConsole.py 31cecd6aaf7d2f49f6ce27122b464278a5dfc139
cli/lmi/shell/LMIHelper.py PRE-CREATION
cli/lmi/shell/LMIUtil.py 990ac8d1b5fac27cb21ad5f8796b68f08cf89432
Diff: http://reviewboard-openlmi.rhcloud.com/r/702/diff/
Testing
-------
Thanks,
Peter Hatina
10 years, 2 months
Review Request 699: lmishell, introduce lmi_isinstance
by Stephen Gallagher
-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
http://reviewboard-openlmi.rhcloud.com/r/699/
-----------------------------------------------------------
Review request for OpenLMI Developers.
Repository: openlmi-tools
Description
-------
lmi_isinstance is a LMIShell helper function, which checks if provided LMIInstance/LMIInstanceName is instance of provided LMIClass.
Example usage:
> cimv2 = c.root.cimv2
> se = cimv2.LMI_StorageExtent.first_instance()
> lmi_isinstance(se, cimv2.LMI_StorageExtent)
True
> lmi_isinstance(se, cimv2.CIM_StorageExtent)
True
> lmi_isinstance(se, cimv2.CIM_FileSystem)
False
Diffs
-----
cli/lmi/shell/LMIConsole.py 2c28d36fcc47d5cf1f1cc9959ba77c002c458f0b
cli/lmi/shell/LMIInstanceName.py 91406c453091c094f10a91e34a07667f1660b2c4
cli/lmi/shell/LMIShellClient.py eb850600d1d527ffc843f4fd233616259c7a2013
cli/lmi/shell/LMIUtil.py 618ee42634e70390d85a23c5a0b1d6c77c62db33
Diff: http://reviewboard-openlmi.rhcloud.com/r/699/diff/
Testing
-------
Thanks,
Peter Hatina
10 years, 2 months