File: README

package info (click to toggle)
rhnlib 2.5.72-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 368 kB
  • ctags: 445
  • sloc: python: 2,578; sh: 39; makefile: 25
file content (27 lines) | stat: -rw-r--r-- 1,061 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
rhnlib - A collection of python modules used by the Spacewalk
(http://spacewalk.redhat.com) software.

Copyright (C) 2002--2013 Red Hat, Inc.

This library is distributed under the terms of the GNU Public License (GPL).


0. HISTORY

Traditionally, rhn used a patched version of Fredrik Lundh's xmlrpclib, 
shipped with Red Hat 6.2, 7.0, 7.1, 7.2 and 7.3 in a package called 
python-xmlrpc.

The additions included improved transport objects (proxy support, a 
better SSL framework, encodings and transfers), most of them part of a module
called cgiwrap.

Since python 2.2 (and previous python 2 releases) ships Fredrik Lundh's
xmlrpclib as a standard library, maintaining a patched version of xmlrpclib
was no longer feasible. SSL support in python 2.2 is also hopelessly
incomplete, so using an external module seems to be a better approach. We
chose pyOpenSSL instead of m2crypto, partly because swig seems to change
rather quickly.

rhnlib tries to reuse as much as possible from the old cgiwrap, as well as
from what the standard python libraries provide.