-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
281 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,17 @@ | ||
2015-22-05 NETCONF Team <[email protected]> | ||
* first version v0.01 | ||
* second version v1.00 | ||
* latest version v1.02 | ||
Revision history for Perl Module Net::Netconf | ||
|
||
1.04 2016-07-26 NETCONF Team <[email protected]> | ||
* Updated LICENSE | ||
* Corrected examples for Toggle field specification | ||
* Corrected the implementation of Toggle field | ||
* Cleaned up for CPAN release | ||
|
||
1.02 2015-05-22 NETCONF Team <[email protected]> | ||
* Minor fixes | ||
|
||
1.01 2015-05-21 NETCONF Team <[email protected]> | ||
* first stable release | ||
|
||
0.01 2014-06-11 NETCONF Team <[email protected]> | ||
* First release to CPAN | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,28 @@ | ||
README | ||
MANIFEST | ||
CHANGES | ||
Makefile.PL | ||
examples/collect_show_interface.pl | ||
examples/diagnose_bgp/bgp.xml | ||
examples/diagnose_bgp/diagnose_bgp.pl | ||
examples/edit_configuration/config.txt | ||
examples/edit_configuration/config.xml | ||
examples/edit_configuration/edit_configuration.pl | ||
examples/get_chassis_inventory/chassis_inventory.xml | ||
examples/get_chassis_inventory/get_chassis_inventory.pl | ||
examples/get_system_information.pl | ||
lib/Net/Netconf.pm | ||
lib/Net/Netconf/EzEditXML.pm | ||
lib/Net/Netconf/Access.pm | ||
lib/Net/Netconf/Access/ssh.pm | ||
lib/Net/Netconf/Constants.pm | ||
lib/Net/Netconf/Device.pm | ||
lib/Net/Netconf/EzEditXML.pm | ||
lib/Net/Netconf/Manager.pm | ||
lib/Net/Netconf/SAXHandler.pm | ||
lib/Net/Netconf/Trace.pm | ||
lib/Net/Netconf/Access/ssh.pm | ||
examples/Diaganose_bgp/diagnose_bgp.pl | ||
examples/Diaganose_bgp/bgp.xml | ||
examples/chassis_inventory/chassis_inventory.xml | ||
examples/chassis_inventory/get_chassis_inventory.pl | ||
examples/edit_configuration/config.txt | ||
examples/edit_configuration/config.xml | ||
examples/edit_configuration/edit_configuration.pl | ||
examples/get_system_information.pl | ||
LICENSE | ||
Makefile.PL | ||
MANIFEST | ||
META.json | ||
META.yml | ||
README | ||
README.md | ||
tests/unit/Test.t | ||
tests/unit/TestDevice.pm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"abstract" : "NETCONF client library for Perl", | ||
"author" : [ | ||
"Juniper Networks, Inc" | ||
], | ||
"dynamic_config" : 1, | ||
"generated_by" : "ExtUtils::MakeMaker version 6.66, CPAN::Meta::Converter version 2.133380", | ||
"license" : [ | ||
"apache_2_0" | ||
], | ||
"meta-spec" : { | ||
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec", | ||
"version" : "2" | ||
}, | ||
"name" : "Net-Netconf", | ||
"no_index" : { | ||
"directory" : [ | ||
"t", | ||
"inc" | ||
] | ||
}, | ||
"release_status" : "stable", | ||
"resources" : { | ||
"repository" : { | ||
"type" : "git", | ||
"url" : "https://github.com/Juniper/netconf-perl.git", | ||
"web" : "https://github.com/Juniper/netconf-perl" | ||
} | ||
}, | ||
"version" : "1.04" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
abstract: 'NETCONF client library for Perl' | ||
author: | ||
- 'Juniper Networks, Inc' | ||
build_requires: {} | ||
dynamic_config: 1 | ||
generated_by: 'ExtUtils::MakeMaker version 6.66, CPAN::Meta::Converter version 2.133380' | ||
license: apache | ||
meta-spec: | ||
url: http://module-build.sourceforge.net/META-spec-v1.4.html | ||
version: 1.4 | ||
name: Net-Netconf | ||
no_index: | ||
directory: | ||
- t | ||
- inc | ||
resources: | ||
repository: https://github.com/Juniper/netconf-perl.git | ||
version: 1.04 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters