removed copyright header from all files for core-python and corens3
This commit is contained in:
parent
f7cb269a11
commit
f55d241b36
7 changed files with 8 additions and 43 deletions
|
@ -1,11 +1,3 @@
|
|||
#
|
||||
# CORE
|
||||
# Copyright (c)2010-2012 the Boeing Company.
|
||||
# See the LICENSE file included in this distribution.
|
||||
#
|
||||
# authors: core-dev@pf.itd.nrl.navy.mil
|
||||
#
|
||||
|
||||
"""
|
||||
netgraph.py: Netgraph helper functions; for now these are wrappers around
|
||||
ngctl commands.
|
||||
|
|
|
@ -1,11 +1,3 @@
|
|||
#
|
||||
# CORE
|
||||
# Copyright (c)2010-2013 the Boeing Company.
|
||||
# See the LICENSE file included in this distribution.
|
||||
#
|
||||
# author: core-dev@pf.itd.nrl.navy.mil
|
||||
#
|
||||
|
||||
"""
|
||||
nodes.py: definition of CoreNode classes and other node classes that inherit
|
||||
from the CoreNode, implementing specific node types.
|
||||
|
|
|
@ -1,11 +1,3 @@
|
|||
#
|
||||
# CORE
|
||||
# Copyright (c)2010-2012 the Boeing Company.
|
||||
# See the LICENSE file included in this distribution.
|
||||
#
|
||||
# authors: core-dev@pf.itd.nrl.navy.mil
|
||||
#
|
||||
|
||||
"""
|
||||
vnet.py: NetgraphNet and NetgraphPipeNet classes that implement virtual networks
|
||||
using the FreeBSD Netgraph subsystem.
|
||||
|
|
|
@ -1,11 +1,3 @@
|
|||
#
|
||||
# CORE
|
||||
# Copyright (c)2010-2012 the Boeing Company.
|
||||
# See the LICENSE file included in this distribution.
|
||||
#
|
||||
# authors: core-dev@pf.itd.nrl.navy.mil
|
||||
#
|
||||
|
||||
"""
|
||||
vnode.py: SimpleJailNode and JailNode classes that implement the FreeBSD
|
||||
jail-based virtual node.
|
||||
|
|
|
@ -1,11 +1,3 @@
|
|||
#
|
||||
# CORE
|
||||
# Copyright (c)2010-2012 the Boeing Company.
|
||||
# See the LICENSE file included in this distribution.
|
||||
#
|
||||
# author: Tom Goff <thomas.goff@boeing.com>
|
||||
#
|
||||
|
||||
"""
|
||||
quagga.py: helper class for generating Quagga configuration.
|
||||
"""
|
||||
|
|
|
@ -34,6 +34,14 @@ class CoreVersionParser(object):
|
|||
|
||||
|
||||
def core_document_parser(session, filename, options):
|
||||
"""
|
||||
Retrieves the xml document parser.
|
||||
|
||||
:param core.session.Session session: core
|
||||
:param str filename: name of file to save to or load from
|
||||
:param dict options: parsing options
|
||||
:return: xml document parser
|
||||
"""
|
||||
vp = CoreVersionParser(filename, options)
|
||||
if 'dom' not in options:
|
||||
options['dom'] = vp.dom
|
||||
|
|
|
@ -1,6 +1,3 @@
|
|||
# Copyright (c)2010-2012 the Boeing Company.
|
||||
# See the LICENSE file included in this distribution.
|
||||
|
||||
"""
|
||||
Defines how CORE will be built for installation.
|
||||
"""
|
||||
|
|
Loading…
Reference in a new issue