--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2010-2719
2010-05-06 00:03:28
--------------------------------------------------------------------------------
Name : python-repoze-who
Product : Fedora EPEL 5
Version : 1.0.18
Release : 2.el5
URL : http://pypi.python.org/pypi/repoze.who
Summary : An identification and authentication framework for WSGI
Description :
repoze.who is an identification and authentication framework for arbitrary WSGI
applications. It acts as WSGI middleware.
repoze.who is inspired by Zope 2's Pluggable Authentication Service (PAS) (but
repoze.who is not dependent on Zope in any way; it is useful for any WSGI
application). It provides no facility for authorization (ensuring whether a
user can or cannot perform the operation implied by the request). This is
considered to be the domain of the WSGI application.
--------------------------------------------------------------------------------
Update Information:
1.0.18 (2009-11-05) * Issue #104: AuthTkt plugin was passing an invalid
cookie value in headers from forget, and was not setting the Max-Age and Expires
attributes of those cookies. 1.0.17 (2009-11-05) * Fixed the
repoze.who.plugins.form.make_plugin factory's formcallable argument handling, to
allow passing in a dotted name (e.g., from a config file). 1.0.16
(2009-11-04) * Exposed formcallable argument for
repoze.who.plugins.form.FormPlugin to the callers of the
repoze.who.plugins.form.make_plugin factory. Thanks to Roland Hedburg for the
report. * Fixed an issue that caused the following symptom when using the ini
configuration parser: TypeError: _makePlugin() got multiple values for keyword
argument 'name' See http://bugs.repoze.org/issue92 for more details. Thanks to
vaab for the bug report and initial fix. 1.0.15 (2009-06-25) * If the form
post value max_age exists while in the identify method is handling the
login_handler_path, pass the max_age value in the returned identity dictionary
as max_age. See the below bullet point for why. * If the identity dict passed
to the auth_tkt remember method contains a max_age key with a string (or
integer) value, treat it as a cue to set the Max-Age and Expires headers in the
returned cookies. The cookie Max-Age is set to the value and the Expires is
computed from the current time. 1.0.14 (2009-06-17) * Fix test breakage on
Windows. See http://bugs.repoze.org/issue79 . * Documented issue with using
include_ip setting in the auth_tkt plugin. See http://bugs.repoze.org/issue81 .
* Added 'passthrough_challenge_decider', which avoids re-challenging 401
responses which have been "pre-challenged" by the application. * One-hundred
percent unit test coverage. * Add timeout and reissue_time arguments to the
auth_tkt identifier plugin, courtesty of Paul Johnston. * Add a userid_checker
argument to the auth_tkt identifier plugin, courtesty of Gustavo Narea. If
userid_checker is provided, it must be a dotted Python name that resolves to a
function which accepts a userid and returns a boolean True or False, indicating
whether that user exists in a database. This is a workaround. Due to a design
bug in repoze.who, the only way who can check for user existence is to use one
or more IAuthenticator plugin authenticate methods. If an IAuthenticator's
authenticate method returns true, it means that the user exists. However most
IAuthenticator plugins expect both a username and a password, and will return
False unconditionally if both aren't supplied. This means that an authenticator
can't be used to check if the user "only" exists. The identity provided by an
auth_tkt does not contain a password to check against. The actual design bug in
repoze.who is this: when a user presents credentials from an auth_tkt, he is
considered "preauthenticated". IAuthenticator.authenticate is just never called
for a "preauthenticated" identity, which works fine, but it means that the user
will be considered authenticated even if you deleted the user's record from
whatever database you happen to be using. However, if you use a userid_checker,
you can ensure that a user exists for the auth_tkt supplied userid. If the
userid_checker returns False, the auth_tkt credentials are considered "no good".
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update python-repoze-who' at the command line.
For more information, refer to "Managing Software with yum",
available at http://docs.fedoraproject.org/yum/.
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2010-2738
2010-05-06 00:04:16
--------------------------------------------------------------------------------
Name : python-repoze-what-quickstart
Product : Fedora EPEL 5
Version : 1.0.6
Release : 1.el5
URL : http://code.gustavonarea.net/repoze.what-pylons/
Summary : A plugin for a simple authentication system with repoze.who/what
Description :
This plugin allows you to take advantage of a rather simple, and usual,
authentication and authorization setup, in which the users’ data, the groups
and the permissions used in the application are all stored in a SQLAlchemy
or Elixir-managed database.
Put simply, it configures repoze.who and repoze.what in one go so that you
can have an authentication and authorization system working quickly – hence
the name.
--------------------------------------------------------------------------------
Update Information:
Version 1.0.6 (2010-01-31) * Added the ability to make FriendlyFormPlugin use
a character encoding other than the default one (ISO-8859-1/Latin-1). Version
1.0.5 (2010-01-27) * Added support for custom Max-Age values as requested on
pylons-discuss. To use it, you can pass the cookie_timeout and
cookie_reissue_time to setup_sql_auth(). This is also supported in the Ini
configuration files. Version 1.0.4 (2009-12-07) * Added the options
log_file and log_level to the [authentication] section in the configuration
file. Thanks to Darryl Cousins. Version 1.0.2 and 1.0.3 (2009-10-09) *
Synchronized with the latest version of repoze.what-pylons. Thanks to Chris
Perkins.
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update python-repoze-what-quickstart' at the command line.
For more information, refer to "Managing Software with yum",
available at http://docs.fedoraproject.org/yum/.
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2010-2747
2010-05-07 17:08:32
--------------------------------------------------------------------------------
Name : python-nose
Product : Fedora EPEL 5
Version : 0.11.3
Release : 2.el5
URL : http://somethingaboutorange.com/mrl/projects/nose/
Summary : A discovery-based unittest extension for Python
Description :
nose: a discovery-based unittest extension.
nose provides an alternate test discovery and running process for unittest,
one that is intended to mimic the behavior of py.test as much as is
reasonably possible without resorting to too much magic.
--------------------------------------------------------------------------------
Update Information:
***0.11.3*** * Fixed default plugin manager’s use of plugin overriding.
Thanks to rob.daylife for the bug report and patch. (#323). ***0.11.2*** *
Changed plugin loading so that external plugins loaded via extension points can
override builtin plugins with the same name. * Updated multiprocess plugin and
nose’s packaging to allow multiprocess plugin to work on Windows (#265). *
Fixed bug in xunit plugin’s interaction with suites and errors in module-level
setup. Thanks to Mark McCague for the bug report (#279). * Fixed bug in
nose.loader.TestLoader that allowed Test classes that raise exceptions in
__init__ to crash the test run (#269). * Fixed bugs in nose’s test suite that
caused spurious failures on Windows. * Fixed bug in twisted tools: delayed
calls were not shut down on reactor stop. Thanks to abbeyj for the patch (#278).
* Fixed bug where root log handlers were not cleared. For example, this was
emitting unwanted messages when testing Google App Engine websites. * Fixed bug
in test names output by xunit plugin. Thanks to Philip Jenvey for the bug report
and patch (#280). * Fixed bug in profile plugin that caused stats to fail to
print under Python 2.5 and later. Thanks to djs at n-cube dot org for the bug
report (#285). * Improved logcapture filtering, with default setting to filter
out log messages from nose itself. Thanks to gfxmonk for the patch (#277). *
The xunit plugin now tags skipped tests with a <skipped> testcase tag, and
prevents the XML from containing invalid control characters. * Updated nose to
be compatible with python 2.7 (#305). * Updated loading of usage document to
allow nose to run from within an egg archive (#288). * Fixed IronPython checks
to make nose compatible with more versions of IronPython. Thanks to Kevin
Mitchell for the patch (#316). ***0.11.1*** * Fixed bug in xunit plugin
xml escaping. Thanks to Nat Williams for the bug report (#266). * Fixed bug in
xunit plugin that could cause test run to crash after certain types of errors or
actions by other plugins. * Fixed bug in testid plugin that could cause test
run to crash after certain types of errors or actions by other plugins. * Fixed
bug in collect only plugin that caused it to fail when collecting from test
generators. * Fixed some broken html in docs. ***0.11*** * Added
multiprocess plugin that allows tests to be run in parallel across multiple
processes. * Added logcapture plugin that captures logging messages and prints
them with failing tests. Thanks to Max Ischenko for the implementation. * Added
optional HTML coverage reports to coverage plugin. Thanks to Augie Fackler for
the patch. * Added plugin that enables collection of tests in all modules.
Thanks to Peter Fein for the patch (#137). * Added –failed option to testid
plugin. When this option is in effect, if any tests failed in the previous test
run (so long as testid was active for that test run) only the failed tests will
run. * Made it possible to ‘yield test’ in addition to ‘yield test,’ from test
generators. Thanks to Chad Whitacre for the patch (#230). * Fixed bug that
caused traceback inspector to fail when source code file could not be found.
Thanks to Philip Jenvey for the bug report and patch (#236). * Fixed some
issues limiting compatibility with IronPython. Thanks to Kevin Mitchell for the
patch. * Added support for module and test case fixtures in doctest files
(#60). * Added –traverse-namespace commandline option that restores old default
behavior of following all package __path__ entries when loading tests from
packages. Thanks to Philip Jenvey for the patch (#167). * Added –first-package-
wins commandline option to better support testing parts of namespace packages.
Thanks to Jason Coombs for the bug report (#197). * Added versioned nosetests
scripts (#123). * Fixed bug that would cause context teardown to fail to run in
some cases. Thanks to John Shaw for the bug report and patch (#234). * Enabled
doctest plugin to use variable other than “_” as the default result variable.
Thanks to Matt Good for the patch (#163). * Fixed bug that would cause unicode
output to crash output capture. Thanks to schickb for the bug report (#227). *
Added setUp and tearDown as valid names for module-level fixtures. Thanks to
AgilityNerd for the patch (#211). * Fixed bug in list of valid names for
package-level fixtures. Thanks to Philip Jenvey for the patch (#237). * Updated
man page generation using hacked up manpage writer from docutils sandbox. Thanks
grubert(a)users.sourceforge.net for the original module.
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update python-nose' at the command line.
For more information, refer to "Managing Software with yum",
available at http://docs.fedoraproject.org/yum/.
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2010-2730
2010-05-06 00:03:57
--------------------------------------------------------------------------------
Name : python-repoze-who-plugins-sa
Product : Fedora EPEL 5
Version : 1.0
Release : 0.5.rc2.el5
URL : http://code.gustavonarea.net/repoze.who.plugins.sa
Summary : The repoze.who SQLAlchemy plugin
Description :
This plugin provides one repoze.who authenticator which works with SQLAlchemy
or Elixir-based models.
--------------------------------------------------------------------------------
Update Information:
***repoze.who.plugins.sa 1.0rc2 (2009-06-27)*** * Added
repoze.who.plugins.sa.SQLAlchemyUserChecker, a user checker for
repoze.who.plugins.auth_tkt.AuthTktCookiePlugin.
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update python-repoze-who-plugins-sa' at the command line.
For more information, refer to "Managing Software with yum",
available at http://docs.fedoraproject.org/yum/.
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2010-2775
2010-05-12 01:17:27
--------------------------------------------------------------------------------
Name : python-webhelpers
Product : Fedora EPEL 5
Version : 1.0
Release : 0.1.b6.el5
URL : http://pylonshq.com/WebHelpers/
Summary : Helper library for aiding the writing of web templates in Python
Description :
Web Helpers is a library of helper functions intended to make writing templates
in web applications easier.
One of the sub-sections of Web Helpers contains a full port of the template
helpers that are provided by Ruby on Rails with slight adaptations on occasion
to accommodate for Python.
--------------------------------------------------------------------------------
Update Information:
1.0b6 ----- * webhelpers.containers / webhelpers.misc: - ``NotGiven``
moved to webhelpers.misc. * webhelpers.html.grid / webhelpers.pylonslib.grid:
- Updates by Ergo, including SQLAlchemy grid classes. * webhelpers.misc:
- New function ``deprecate``. * webhelpers.number: - New functions
``format_data_size``, ``format_byte_size``, and ``format_bit_size`` for
displaying numbers in SI units ("1.2 kilobytes", "1.2 kB", "1.0 KiB").
Contributed by Wojciech Malinowski. 1.0b5 (2010-03-18)
------------------ * webhelpers.html.converters: - Re-add import of
``render`` and ``sanitize`` from ``webhelpers.html.render``. That module
is not public. * webhelpers.misc: - New exception ``OverwriteError``.
- Add ``exclude`` argument to ``subclasses_only``. * webhelpers.text: -
Disable ``convert_misc_characters``: it fails its doctests and there's no
consensus on what it should do. * "number_to_human_size.py" is in unfinished
directory. This is an old rails helper from WebHelpers 0.6.4. It's here
pending a more comprehensive helper; see
http://bitbucket.org/bbangert/webhelpers/issue/2/reinstate-number_to_human_…
1.0b4 (2010-01-24) ------------------ * Delete ``webhelpers.string24``.
WebHelpers no longer supports Python 2.3. * webhelpers.feedgenerator: -
Add a basic ``Geometry`` class for the Geo helpers. *
webhelpers.html.grid_demo: - Demonstrates ``webhelpers.html.grid``. Run as
"python -m webhelpers.html.grid_demo OUTPUT_DIRECTORY". *
webhelpers.html.converters: - Don't import ``render`` and ``sanitize`` to
converters module. (Reversed in 1.0b5.) * webhelpers.html.secure_form:
- Move module to ``webhelpers.pylonslib.secure_form`` because it depends on
``pylons.session``. * webhelpers.misc: - New helper ``flatten`` to
interpolate embedded lists and tuples. - New helper ``subclasses_only`` to
extract the subclasses of an abstract base class from a module or iterable.
* webhelpers.pylonslib.flash: - Moved to its own module. - Changed
``Flash.__html__()`` implementation. - Categories may be specified in
constructor. Patch by Eli Collins. * webhelpers.pylonslib.grid: -
Bugfixes. * webhelpers.pylonslib.minify: - Bugfix. * webhelpers.util:
- Bugfix: ``parse_qs`` moved from ``cgi`` to ``urlparse`` in Python 2.6.
Patch by Mike Verdone. 1.0b3 (2009-12-29) ------------------ *
webhelpers.feedgenerator: - Allow either lat-lon and lon-lat formats in
geometry data. The default is lat-lon. For lon-lat, set
``GeoFeedMixin.is_input_latitude_first`` to false. (You can set in a
subclass or instance before writing the output.) lat-lon is the most common
format but GeoDjango and some other libraries use lon-lat. The XML output
is always lat-lon per the GeoRSS spec. * webhelpers.html.grid: - New
module to create an HTML table from a list of records. *
webhelpers.html.tags: - New helpers ``Doctype`` (class) and
``xml_declaration``. - Python 2.5 compatibility fix by Yuen Ho Wong. (#20)
* webhelpers.html.tools: - New helper ``js_obfuscate`` implements the old
rails helpers. * webhelpers.util: - New helper ``update_params`` to
update query parameters in a URL. 1.0b2 (2009-12-21) ------------------ *
webhelpers.constants: - Fix spelling of Massachusetts. *
webhelpers.feedgenerator: - Sync with Django rev 11910. This adds GeoRSS
and makes the API more extensible, as well as fixing a few bugs. (Re-
added the Atom1 'published' property.) (The 'generator' and 'source'
properties were lost, but they weren't working correctly anyway.)
GeoRSS usage: use the Geo\* classes and add ``geometry=(lat, lon)`` to
each news item. Other shapes and a (not yet implemented) Geometry class are
allowed; see the source. * webhelpers.html: - New ``HTML.cdata()``
method for producing "<!![CDATA[ ... ]]>" sections. - The basic tag builders
(``HTML.a()`` and ``HTML.tag("a")``) now have a ``_nl`` arg which, if true,
inserts a newline between content elements and at the end of the tag for
readability. Example:: HTML.a("A", "B", href="/") => '<a
href="/">AB</a>' HTML.a("A", "B", href="/", _nl=True) => '<a
href="/">\nA\nB\n</a>\n' This does not affect HTML attributes nor the
higher-level tag helpers. The exact spacing is subject to change. The tag
building code has been refactored to accommodate this. *
webhelpers.html.tags: - ``form()`` puts its hidden "_method" field in a
'<div style="display:none">' to conform to XHTML syntax. The style prevents
the div from being displayed or affecting the layout. A new arg
``hidden_fields`` may be a dict or iterable of additional hidden fields,
which will be added to the div. - Set magic ID attribute in ``hidden`` helper
to match behavior of the other tag helpers. - ``image()`` can now
calculate the width and height automatically from an image file, using
either the PIL algorithm or the pure Python algorithm in
``webhelpers.media``. It also logs the dimensions to the debug log for
troubleshooting. * webhelpers.html.tools: - Reimplement ``highlight()``
using the HTML builder. New arguments add flexibility. Deprecate the
``highlighter`` argument, which creates tags via string interpolation. -
Fixed ``auto_link()`` to parse slash characters in query string. Patch by
hanula; Bitbucket issue #10. - Fix HTML overescaping and underescaping in
auto_link(). Patch by Marius Gedminas. A parsing bug remains:
http://pylonshq.com/project/pylonshq/ticket/657 * webhelpers.markdown /
webhelpers.html.converters: - ``webhelpers.markdown`` will not be upgraded
to the version 2 series but will remain at 1.7. Users who want the latest
bugfixes and extensions should download the full Markdown package or the
alternative Markdown2 from PyPI. - The ``markdown()`` helper in
``webhelpers.html.converters`` now has support for external Markdown
implementations. You can pass a specific module via the ``markdown``
argument, otherwise it will attempt to import ``markdown`` or fall back to
``webhelpers.markdown``. - To see which version is autoloaded, call
``_get_markdown_module()`` and inspect the ``.__file__``, ``.version``,
and/or ``.version_info`` attributes of the return value. * webhelpers.media:
- Bugfix in ``get_dimensions_pil``. * webhelpers.paginate: - Change for
SQLAlchemy 0.6. (bug #11) * webhelpers.pylonslib: - Fix HTML
overescaping. Patch by Marius Gedminas. 1.0b1 (2009-11-20)
------------------ * Delete deprecated subpackage: rails. These are replaced
by new helpers in date, html, misc, number, text. * Delete other deprecated
subpackages: commands, hinclude, htmlgen, pagination. Pagination is replaced
by paginate. * webhelpers.constants: - ``uk_counties`` returns tuples
rather than strings. * webhelpers.feedgenerator: - ``rfc3339_date`` now
accepts date objects without crashing. - Add 'generator' and 'source'
properties to RSS2 feeds. Patch by Vince Spicer. (Removed in 1.0b2 due to
bugs.) - Add 'published' property to Atom1 feeds. *
webhelpers.html.converters: - New helper ``render()`` formats HTML to text.
- New helper ``sanitize()`` strips HTML tags from user input. *
webhelprs.html.tags: - New helper ``css_classes()`` to add classes to a tag
programmatically. - Fix bug in tag helpers when passing ``id_`` argument
(although ``id`` is recommended instead). - Add OptionGroup class and
optgroup support to select(). Patch by Alexandre Bourget. *
webhelpers.html.tools: - New helper ``strip_tags()`` deletes HTML tags in a
string. * webhelpers.paginate: - Allow all versions of SQLAlchemy > 0.3.
- convert "_range" and "_pagelink" function to Page class method so that they
can be overridden - pager "onclick" argument use template string value. So,
javascript code can use "partial_url" or "page" value or any. Backward
compatibility is considered. - Add presliced list option to avoid
slicing when list is already. * webhelpers.pylonslib: - is now a
package. - The ``Flash`` class now accepts severity categories, thanks to
Wichert Akkerman. The docstring shows how to set up auto-fading messages
using Javascript a la Mac OSX's "Growl" feature. This is backward
compatible although you should delete existing sessions when upgrading
from 0.6.x. - ``webhelpers.pylonslib.minify`` contains enhanced versions of
``javascript_link`` and ``stylesheet_link`` to minify (shrink) files for
more efficient transmission. (EXPERIMENTAL: tests fail in
unfinished/disabled_test_pylonslib_minify.py; see
http://pylonshq.com/project/pylonshq/ticket/466 .) * webhelpers.text: -
Port several helpers from Ruby's "stringex" package. + ``urlify()``
converts any string to a URL-friendly equivalent. +
``remove_formatting()``. + If the ``unidecode`` package is installed, these
two helpers will also transliterate non-ASCII characters to their closest
pronounciation equvivalent in ASCII. + Four other helpers reduce
HTML entities or whitespace.
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #590628 - Pagination breaks with new python-routes
https://bugzilla.redhat.com/show_bug.cgi?id=590628
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update python-webhelpers' at the command line.
For more information, refer to "Managing Software with yum",
available at http://docs.fedoraproject.org/yum/.
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2010-2721
2010-05-06 00:03:32
--------------------------------------------------------------------------------
Name : python-repoze-who-testutil
Product : Fedora EPEL 5
Version : 1.0
Release : 1.el5
URL : http://code.gustavonarea.net/repoze.who-testutil/
Summary : Test utilities for repoze.who-powered applications
Description :
repoze.who-testutil is a repoze.who plugin which modifies repoze.who‘s
original middleware to make it easier to forge authentication, without
bypassing identification (this is, running the metadata providers).
It’s been created in order to ease testing of repoze.who-powered
applications, in a way independent of the identifiers, authenticators
and challengers used originally by your application, so that you won’t have
to update your test suite as your application grows and the authentication
method changes.
--------------------------------------------------------------------------------
Update Information:
***repoze.who-testutil 1.0 (2010-02-22)*** * Fixed typo in a code sample of
the home page. * Explained how to use it with repoze.what. * Fixed a bug
related to the Content-Length, thanks to Ian Bicking and Christopher Perkins.
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update python-repoze-who-testutil' at the command line.
For more information, refer to "Managing Software with yum",
available at http://docs.fedoraproject.org/yum/.
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2010-3133
2010-08-02 14:43:21
--------------------------------------------------------------------------------
Name : perl-Package-DeprecationManager
Product : Fedora EPEL 5
Version : 0.04
Release : 2.el5
URL : http://search.cpan.org/dist/Package-DeprecationManager/
Summary : Manage deprecation warnings for your distribution
Description :
This module allows you to manage a set of deprecations for one or more modules.
When you import Package::DeprecationManager, you must provide a set of
-deprecations as a hash ref. The keys are "feature" names, and the values are
the version when that feature was deprecated.
--------------------------------------------------------------------------------
Update Information:
This module allows you to manage a set of deprecations for one or more modules.
This package is needed for Class::MOP 1.04.
--------------------------------------------------------------------------------
References:
[ 1 ] Bug #618638 - Review Request: perl-Package-DeprecationManager - Manage deprecation warnings for your distribution
https://bugzilla.redhat.com/show_bug.cgi?id=618638
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update perl-Package-DeprecationManager' at the command line.
For more information, refer to "Managing Software with yum",
available at http://docs.fedoraproject.org/yum/.
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2010-2737
2010-05-06 00:04:14
--------------------------------------------------------------------------------
Name : python-sprox
Product : Fedora EPEL 5
Version : 0.6.10
Release : 1.el5
URL : http://sprox.org
Summary : A package for creation of web widgets directly from database schema
Description :
Sprox is a widget generation library that has a slightly different take on the
problem of creating custom web content directly from database schemas. Sprox
provides an easy way to create forms for web content which are: automatically
generated, easy to customize, and validated. Sprox also has powerful tools to
help you display your content the way you want to with table and record
viewers. Sprox provides a way to fill your widgets, whether they are forms or
other content with customizable data.
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update python-sprox' at the command line.
For more information, refer to "Managing Software with yum",
available at http://docs.fedoraproject.org/yum/.
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2010-2752
2010-05-07 17:08:43
--------------------------------------------------------------------------------
Name : python-tg-devtools
Product : Fedora EPEL 5
Version : 2.1
Release : 0.1.b2.el5
URL : http://www.turbogears.org
Summary : Development tools and templates for TurboGears2
Description :
This package contains various paster commands and templates used for
TurboGears2 development.
--------------------------------------------------------------------------------
Update Information:
TurboGears 2.1b2 represents the final changes to the API for feature freeze. At
this point, only fixes will go into the codebase, so now would be a good time to
test your app if you are migrating from 2.0.x. The only major API change for
this release was in RestController, you can now use custom actions. The rest of
the changes were bugfix, and there was a ton of effort there (20 tickets
closed!) See the Change Log for details:
http://trac.turbogears.org/wiki/2.0/ChangeLog
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update python-tg-devtools' at the command line.
For more information, refer to "Managing Software with yum",
available at http://docs.fedoraproject.org/yum/.
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------
--------------------------------------------------------------------------------
Fedora EPEL Update Notification
FEDORA-EPEL-2010-2752
2010-05-07 17:08:43
--------------------------------------------------------------------------------
Name : TurboGears2
Product : Fedora EPEL 5
Version : 2.1
Release : 0.1.b2.el5
URL : http://www.turbogears.org
Summary : Next generation Front-to-back web development megaframework built on Pylons
Description :
TurboGears2, provides a comprehensive web development toolkit. It is designed
to help you create the basic outline of a database-driven web application in
minutes.
TurboGears provides you with sane default for designer friendly templates,
tools to make AJAX, and dynamic Javascript driven pages easy on both the
browser side and the server side.
TurboGears is a project that is built upon a foundation of reuse and building
up. In retrospect, much of the code that was home grown in the TurboGears
project should have been released as independent projects that integrate with
TurboGears.
--------------------------------------------------------------------------------
Update Information:
TurboGears 2.1b2 represents the final changes to the API for feature freeze. At
this point, only fixes will go into the codebase, so now would be a good time to
test your app if you are migrating from 2.0.x. The only major API change for
this release was in RestController, you can now use custom actions. The rest of
the changes were bugfix, and there was a ton of effort there (20 tickets
closed!) See the Change Log for details:
http://trac.turbogears.org/wiki/2.0/ChangeLog
--------------------------------------------------------------------------------
This update can be installed with the "yum" update programs. Use
su -c 'yum update TurboGears2' at the command line.
For more information, refer to "Managing Software with yum",
available at http://docs.fedoraproject.org/yum/.
All packages are signed with the Fedora EPEL GPG key. More details on the
GPG keys used by the Fedora Project can be found at
https://fedoraproject.org/keys
--------------------------------------------------------------------------------