summaryrefslogtreecommitdiff
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
* - updated authors detailsnetaddr_pytestDavid Moss2015-06-221-4/+1
|
* - moved tutorials and removed old testsDavid Moss2015-06-213-3/+3
|
* Fix typo in docsAlex Chan2015-05-281-1/+1
|
* - updated version numbers for release 0.7.14David Moss2015-03-313-4/+4
|
* - updated copyright notices for 2015David Moss2014-12-312-2/+2
|
* - updated versions and CHANGELOG for release 0.7.13David Moss2014-12-313-4/+4
|
* - setting release version to 0.7.12David Moss2014-07-063-4/+4
|
* - bumped release versions in documentationrelease-0.7.11David Moss2014-03-203-4/+4
|
* - updated copyright for new releaseDavid Moss2014-03-192-2/+2
|
* - updated copyright noticeDavid Moss2013-03-202-2/+2
|
* - minor tweak to test readthedocs web hookDavid Moss2012-09-071-1/+1
|
* - release of netaddr 0.7.10release-0.7.10David Moss2012-09-073-8/+8
|
* - re-release to remove Sphinx from build metadataDavid Moss2012-08-293-4/+4
|
* - releasing 0.7.8David Moss2012-08-293-8/+8
|
* - fixed a typo in include path.David Moss2012-05-311-1/+1
|
* - final tweak to documentation before releaseDavid Moss2012-05-318-32/+31
|
* - upgraded project documentation to use SphinxDavid Moss2012-05-3016-0/+927
|
* - updated copyright notice for 2012David Moss2012-05-241-1/+1
|
* - updated copyright datesDavid Moss2011-09-131-1/+1
|
* Added 0.7.5-rc1 release related changes.David P. D. Moss2010-09-261-1/+1
|
* Updated all copyright notices for 2010.David P. D. Moss2010-04-281-1/+1
|
* Improved setuptools support. Added some additional unit tests.David P. D. Moss2009-08-051-1/+1
|
* Transition of old trunk to new refactored codebase.David P. D. Moss2009-06-2167-28180/+0
|
* Merge of 0.6.2 release into trunk.David P. D. Moss2009-04-132-154/+162
|
* - removed conditional setuptool support from setup.py (now only requiresDavid P. D. Moss2009-02-102-0/+476
| | | | | | | | | | | | | | | distutils) - fixed setup_egg.py which incorrect specified setuptools option 'zip_safe' as True (must be False to support data file lookups) - added egg builds to release.sh - epydoc now uses a config file and a custom CSS stylesheet - added attribution for Python Cookbook recipe
* Final changes required to complete release 0.6David P. D. Moss2009-01-2252-2095/+2116
|
* This checkin makes up release 0.6. See CHANGELOG for details.David P. D. Moss2009-01-2160-5107/+15899
|
* Check in for release 0.5.2 that fixes the following bugs and issues :-David P. D. Moss2008-09-2929-2066/+2164
| | | | | | | | | | | | | | - Fixed Issue 15 in bug tracker. Bad validation and conversion of IPv4 mapped IPv6 address values in IPv6Strategy class. Covered with unit test cases. - Updated PrefixLenDescriptor() class so that modifications to the property CIDR.prefixlen also update CIDR.first and CIDR.last keeping them in sync. Covered by unit test cases. - IP.hostname() method returns None when DNS lookup fails.
* Documentation changes for 0.5.1 release.David P. D. Moss2008-09-2228-34/+34
|
* Updated API docs for release 0.5.David P. D. Moss2008-09-2031-3090/+7221
|
* Major changes since 0.3.xDavid P. D. Moss2008-08-0729-2766/+5663
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ========================= - all general Exception raising has been replaced with more specific exceptions such as TypeError and ValueError and with the addition of two custom exception classes, AddrFormatError and AddrConversionError. - The IP class now accepts a subnet prefix. It is *NOT* strict about non-zero bits to the right of implied subnet mask, unlike the CIDR class (see below). - The CIDR class is now completely strict about non-zero bits to the right of the implied subnet netmask and raises a ValueError if they exist, with a handy hint as to the correct CIDR to be used based on the supplied subnet prefix. - The CIDR class now also supports abbreviated CIDR ranges and uses older classful network address rules to decided on a subnet prefix if one is not explicitly provided. Supported forms now include 10, 10/8 and 192.168/16. Currently only supports these options for IPv4 CIDR address ranges. - __repr__() methods have been defined for all classes in the netaddr module producing executable Python statements that can be used to re-create the state of any object. - CIDR and Wildcard classes now have methods that support conversions between these two aggregate types :- * CIDR -> Wildcard * Wildcard -> CIDR Housekeeping Changes ==================== - massive docstring review and tidy up with the inclusino of epydoc specific syntax to spruce up auto-generated API documentation. - Thorough review of code using pylint. - netaddr module now has the special __version__ variable defined which is also referenced by setup.py. - Some minor changes to setup.py and MANIFEST.in. - constants and custom Exception classes have been moved to __init__.py from strategy.py - An import * friendly __all__ has been defined for the netaddr namespace which should remove the need to delve too much into the address and strategy submodules. - fixed a number of line-ending issues in several files.
* Initial revision.David P. D. Moss2008-08-072-0/+354
|
* Updated docs with details on setup.py script. Docs confirm with ReST David P. D. Moss2008-07-1229-3660/+1177
| | | | | | notation now. API docs regenerated automatically by release script using epydoc command line script.
* - Removed addr_type() method from Addr() class. Now a property instead.David P. D. Moss2008-07-1021-1939/+1997
| | | | | | | | | | | | | | | | | | | - Added ipv6_link_local() method to EUI() class. - Introduced private _retval() method in AddrRange() to save on some code duplication in this and subclasses. - Improved __contains__() tests on AddrRange class. - Fixed some long overly long docstring lines. - Fixed all epydoc indentation errors messages. - Regenerated API docs. - Added new features to unit tests.
* Initial revision.David P. D. Moss2008-07-0732-0/+12312