Skip to content
This repository was archived by the owner on Feb 27, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright 2023 Xena Networks
Copyright 2024 Teledyne LeCroy Xena

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
2 changes: 1 addition & 1 deletion docs/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# Defining the exact version will make sure things don't break
sphinx==7.2.2
readthedocs-sphinx-search==0.3.1
readthedocs-sphinx-search==0.3.2
sphinx-inline-tabs==2023.4.21
loguru==0.7.0
furo==2023.8.17
Expand Down
2 changes: 1 addition & 1 deletion docs/source/api_ref/hlapiv1/index.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
🚀 High-Level API
High-Level API
========================

HL-API uses the classes defined in LL-API and lets you quickly develop scripts or program in an **object-oriented** fashion with explicit definition of commands of different *tester*, *module*, *port* types. In addition, the HL-API layer provides functionalities such as:
Expand Down
2 changes: 1 addition & 1 deletion docs/source/api_ref/hlapiv1/module/vulcan/index.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Vulcan
L47
=========================

.. note::
Expand Down
2 changes: 1 addition & 1 deletion docs/source/api_ref/hlapiv1/port/vulcan/index.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Vulcan
L47
=========================

.. note::
Expand Down
2 changes: 1 addition & 1 deletion docs/source/api_ref/hlfunc/index.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
🎨 High-Level Functions
High-Level Functions
===============================

HL-FUNC provides high-level abstraction functions on top of the object-oriented HL-API, aiming to help you simplify code logics and increase readability and maintainability.
Expand Down
2 changes: 1 addition & 1 deletion docs/source/api_ref/llapi/impairment/index.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Chimera
Impairment
=============================

.. toctree::
Expand Down
2 changes: 1 addition & 1 deletion docs/source/api_ref/llapi/index.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
🧱 Low-Level API
Low-Level API
=========================

LL-API contains low-level API classes, giving you the direct control of the tester. The names of the classes are the same as the the CLI commands in :term:`XOA CLI`, making it easy for you to understand the Python API if you are already familiar with XOA CLI.
Expand Down
2 changes: 1 addition & 1 deletion docs/source/api_ref/llapi/l23/index.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Valkyrie
TGA & L1
=========================

.. toctree::
Expand Down
2 changes: 1 addition & 1 deletion docs/source/api_ref/llapi/l47/index.rst
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Vulcan
L47
=========================

.. toctree::
Expand Down
4 changes: 2 additions & 2 deletions xoa_driver/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "2.4.3"
__short_version__ = "2.0"
__version__ = "2.5.0"
__short_version__ = "2.5"
30 changes: 28 additions & 2 deletions xoa_driver/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,20 @@
StreamOption,
DhcpState,
DhcpVlanState,
VlanType
VlanType,
ChassisModelNumber,
ChassisModelName,
ModuleModelName,
FreyaAutonegMode,
FreyaLinkTrainingMode,
FreyaTecAbility,
FreyaFECAbility,
FreyaPauseAbility,
FreyaTechAbilityHCDStatus,
FreyaOutOfSyncPreset,
Layer1Control,
FreyaPCSVariant,
FreyaTecAbilityHCD,
)

__all__ = (
Expand Down Expand Up @@ -341,5 +354,18 @@
"StreamOption",
"DhcpState",
"DhcpVlanState",
"VlanType"
"VlanType",
"ChassisModelNumber",
"ChassisModelName",
"ModuleModelName",
"FreyaAutonegMode",
"FreyaLinkTrainingMode",
"FreyaTecAbility",
"FreyaFECAbility",
"FreyaPauseAbility",
"FreyaTechAbilityHCDStatus",
"FreyaOutOfSyncPreset",
"Layer1Control",
"FreyaPCSVariant",
"FreyaTecAbilityHCD",
)
Loading