cesnet-service-path-plugin 5.2.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (137) hide show
  1. cesnet_service_path_plugin-5.2.2/CONTRIBUTING.md +121 -0
  2. cesnet_service_path_plugin-5.2.2/LICENSE +203 -0
  3. cesnet_service_path_plugin-5.2.2/MANIFEST.in +14 -0
  4. cesnet_service_path_plugin-5.2.2/PKG-INFO +838 -0
  5. cesnet_service_path_plugin-5.2.2/README.md +804 -0
  6. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/__init__.py +26 -0
  7. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/api/__init__.py +0 -0
  8. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/api/serializers/__init__.py +18 -0
  9. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/api/serializers/segment.py +272 -0
  10. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/api/serializers/segment_circuit_mapping.py +36 -0
  11. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/api/serializers/segment_financial_info.py +94 -0
  12. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/api/serializers/service_path.py +39 -0
  13. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/api/serializers/service_path_segment_mapping.py +42 -0
  14. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/api/urls.py +14 -0
  15. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/api/views/__init__.py +13 -0
  16. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/api/views/segment.py +24 -0
  17. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/api/views/segment_circuit_mapping.py +12 -0
  18. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/api/views/segment_financial_info.py +10 -0
  19. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/api/views/service_path.py +12 -0
  20. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/api/views/service_path_segment_mapping.py +12 -0
  21. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/filtersets/__init__.py +11 -0
  22. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/filtersets/segment.py +536 -0
  23. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/filtersets/segment_circuit_mapping.py +47 -0
  24. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/filtersets/service_path.py +26 -0
  25. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/filtersets/service_path_segment_mapping.py +51 -0
  26. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/forms/__init__.py +31 -0
  27. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/forms/segment.py +756 -0
  28. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/forms/segment_circuit_mapping.py +25 -0
  29. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/forms/segment_financial_info.py +73 -0
  30. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/forms/service_path.py +63 -0
  31. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/forms/service_path_segment_mapping.py +52 -0
  32. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/graphql/__init__.py +3 -0
  33. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/graphql/filters.py +159 -0
  34. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/graphql/schema.py +35 -0
  35. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/graphql/types.py +225 -0
  36. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/migrations/0001_segment.py +147 -0
  37. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/migrations/0002_servicepath.py +44 -0
  38. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/migrations/0003_servicepathsegmentmapping.py +66 -0
  39. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/migrations/0004_add_komora_id_and_imported_data_to_models.py +37 -0
  40. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/migrations/0005_segmentcircuitmapping_segment_circuits_and_more.py +118 -0
  41. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/migrations/0006_remove_servicepath_circuits_and_more.py +22 -0
  42. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/migrations/0007_segment_comments.py +17 -0
  43. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/migrations/0008_servicepath_comments.py +17 -0
  44. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/migrations/0009_rename_supplier_segment_contract_segment_provider_segment_contract_and_more.py +52 -0
  45. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/migrations/0010_replace_supplier_with_provider.py +32 -0
  46. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/migrations/0011_remove_segment_supplier_alter_segment_provider.py +27 -0
  47. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/migrations/0012_segment_sync_status_servicepath_sync_status.py +25 -0
  48. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/migrations/0013_alter_segment_table_and_more.py +41 -0
  49. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/migrations/0014_remove_segment_imported_data_and_more.py +36 -0
  50. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/migrations/0015_merge_notes_to_comments.py +43 -0
  51. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/migrations/0016_remove_segment_note_a_remove_segment_note_b.py +20 -0
  52. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/migrations/0017_remove_segment_device_a_remove_segment_device_b_and_more.py +31 -0
  53. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/migrations/0018_remove_segment_sync_status_and_more.py +23 -0
  54. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/migrations/0019_alter_servicepathsegmentmapping_options_and_more.py +24 -0
  55. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/migrations/0020_add_field_status_to_segment_and_servicepath.py +29 -0
  56. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/migrations/0021_copy_service_path_state_to_status.py +46 -0
  57. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/migrations/0022_remove_field_state_from_servicepath.py +20 -0
  58. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/migrations/0023_alter_servicepath_kind.py +48 -0
  59. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/migrations/0024_segment_path_geometry_segment_path_length_km_and_more.py +33 -0
  60. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/migrations/0025_alter_segment_path_geometry.py +18 -0
  61. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/migrations/0026_segment_segment_type_segment_type_specific_data.py +22 -0
  62. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/migrations/0027_segmentfinancialinfo.py +54 -0
  63. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/migrations/0028_alter_segmentfinancialinfo_options.py +16 -0
  64. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/migrations/0029_remove_segment_provider_segment_contract_and_more.py +20 -0
  65. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/migrations/0030_alter_segment_location_a_alter_segment_location_b.py +28 -0
  66. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/migrations/0031_alter_segmentfinancialinfo_charge_currency.py +18 -0
  67. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/migrations/__init__.py +0 -0
  68. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/models/__init__.py +29 -0
  69. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/models/custom_choices.py +29 -0
  70. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/models/segment.py +320 -0
  71. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/models/segment_circuit_mapping.py +21 -0
  72. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/models/segment_financial_info.py +123 -0
  73. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/models/segment_types.py +291 -0
  74. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/models/service_path.py +43 -0
  75. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/models/service_path_segment_mapping.py +24 -0
  76. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/navigation.py +81 -0
  77. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/search.py +26 -0
  78. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/static/cesnet_service_path_plugin/css/segment_form.css +16 -0
  79. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/static/cesnet_service_path_plugin/js/segment_form.js +67 -0
  80. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/tables/__init__.py +11 -0
  81. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/tables/segment.py +82 -0
  82. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/tables/segment_circuit_mapping.py +67 -0
  83. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/tables/service_path.py +23 -0
  84. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/tables/service_path_segment_mapping.py +37 -0
  85. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/template_content.py +128 -0
  86. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/templates/cesnet_service_path_plugin/circuit_segments_extension.html +24 -0
  87. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/templates/cesnet_service_path_plugin/circuit_segments_template_column.html +7 -0
  88. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/templates/cesnet_service_path_plugin/inc/cytoscape_includes.html +2 -0
  89. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/templates/cesnet_service_path_plugin/inc/date_status_badge.html +9 -0
  90. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/templates/cesnet_service_path_plugin/inc/leaflet_includes.html +3 -0
  91. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/templates/cesnet_service_path_plugin/inc/map_layer_dropdown.html +35 -0
  92. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/templates/cesnet_service_path_plugin/inc/map_layers_config.html +129 -0
  93. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/templates/cesnet_service_path_plugin/inc/map_layers_styles.html +55 -0
  94. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/templates/cesnet_service_path_plugin/inc/map_status_colors.html +10 -0
  95. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/templates/cesnet_service_path_plugin/inc/path_data_badge.html +9 -0
  96. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/templates/cesnet_service_path_plugin/inc/path_length.html +5 -0
  97. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/templates/cesnet_service_path_plugin/inc/topology_segment_card.html +111 -0
  98. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/templates/cesnet_service_path_plugin/inc/topology_styles.html +37 -0
  99. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/templates/cesnet_service_path_plugin/inc/topology_visualization.html +508 -0
  100. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/templates/cesnet_service_path_plugin/location_segments_extension.html +7 -0
  101. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/templates/cesnet_service_path_plugin/provider_segments_extension.html +7 -0
  102. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/templates/cesnet_service_path_plugin/segment.html +408 -0
  103. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/templates/cesnet_service_path_plugin/segment_edit.html +9 -0
  104. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/templates/cesnet_service_path_plugin/segment_list.html +15 -0
  105. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/templates/cesnet_service_path_plugin/segment_map.html +250 -0
  106. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/templates/cesnet_service_path_plugin/segment_path_clear_confirm.html +88 -0
  107. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/templates/cesnet_service_path_plugin/segmentcircuitmapping.html +33 -0
  108. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/templates/cesnet_service_path_plugin/segments_map.html +832 -0
  109. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/templates/cesnet_service_path_plugin/servicepath.html +94 -0
  110. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/templates/cesnet_service_path_plugin/servicepathsegmentmapping.html +28 -0
  111. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/templates/cesnet_service_path_plugin/site_segments_extension.html +7 -0
  112. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/templates/cesnet_service_path_plugin/tenant_provider_extension.html +29 -0
  113. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/templatetags/__init__.py +0 -0
  114. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/templatetags/custom_filters.py +20 -0
  115. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/urls.py +68 -0
  116. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/utils/__init__.py +34 -0
  117. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/utils/utils_gis.py +600 -0
  118. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/utils/utils_topology.py +604 -0
  119. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/views/__init__.py +87 -0
  120. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/views/segment.py +525 -0
  121. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/views/segment_circuit_mapping.py +59 -0
  122. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/views/segment_financial_info.py +62 -0
  123. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/views/service_path.py +75 -0
  124. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin/views/service_path_segment_mapping.py +65 -0
  125. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin.egg-info/PKG-INFO +838 -0
  126. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin.egg-info/SOURCES.txt +135 -0
  127. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin.egg-info/dependency_links.txt +1 -0
  128. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin.egg-info/requires.txt +12 -0
  129. cesnet_service_path_plugin-5.2.2/cesnet_service_path_plugin.egg-info/top_level.txt +1 -0
  130. cesnet_service_path_plugin-5.2.2/docs/sample_path.png +0 -0
  131. cesnet_service_path_plugin-5.2.2/pyproject.toml +57 -0
  132. cesnet_service_path_plugin-5.2.2/setup.cfg +4 -0
  133. cesnet_service_path_plugin-5.2.2/tests/.env.sample +3 -0
  134. cesnet_service_path_plugin-5.2.2/tests/__init__.py +1 -0
  135. cesnet_service_path_plugin-5.2.2/tests/test_integration_segment_financial_info_api.py +121 -0
  136. cesnet_service_path_plugin-5.2.2/tests/test_integration_segment_type_specific_data.py +260 -0
  137. cesnet_service_path_plugin-5.2.2/tests/test_komora_service_path_plugin.py +4 -0
@@ -0,0 +1,121 @@
1
+ # Contributing
2
+
3
+ Contributions are welcome, and they are greatly appreciated! Every little bit
4
+ helps, and credit will always be given.
5
+
6
+ We love your input! We want to make contributing to this project as easy and transparent as possible, whether it's:
7
+
8
+ - Reporting a bug
9
+ - Discussing the current state of the code
10
+ - Submitting a fix
11
+ - Proposing new features
12
+ - Becoming a maintainer
13
+
14
+ ## General Tips for Working on GitHub
15
+
16
+ * Register for a free [GitHub account](https://github.com/signup) if you haven't already.
17
+ * You can use [GitHub Markdown](https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax) for formatting text and adding images.
18
+ * To help mitigate notification spam, please avoid "bumping" issues with no activity. (To vote an issue up or down, use a :thumbsup: or :thumbsdown: reaction.)
19
+ * Please avoid pinging members with `@` unless they've previously expressed interest or involvement with that particular issue.
20
+ * Familiarize yourself with [this list of discussion anti-patterns](https://github.com/bradfitz/issue-tracker-behaviors) and make every effort to avoid them.
21
+
22
+ ## Types of Contributions
23
+
24
+ ### Report Bugs
25
+
26
+ Report bugs at https://github.com/Jan.Krupa/komora-service-path-plugin/issues.
27
+
28
+ If you are reporting a bug, please include:
29
+
30
+ * Your operating system name and version.
31
+ * Any details about your local setup that might be helpful in troubleshooting.
32
+ * Detailed steps to reproduce the bug.
33
+
34
+ ### Fix Bugs
35
+
36
+ Look through the GitHub issues for bugs. Anything tagged with "bug" and "help
37
+ wanted" is open to whoever wants to implement it.
38
+
39
+ ### Implement Features
40
+
41
+ Look through the GitHub issues for features. Anything tagged with "enhancement"
42
+ and "help wanted" is open to whoever wants to implement it.
43
+
44
+ ### Write Documentation
45
+
46
+ Cesnet ServicePath Plugin could always use more documentation, whether as part of the
47
+ official Cesnet ServicePath Plugin docs, in docstrings, or even on the web in blog posts,
48
+ articles, and such.
49
+
50
+ ### Submit Feedback
51
+
52
+ The best way to send feedback is to file an issue at https://github.com/Jan.Krupa/komora-service-path-plugin/issues.
53
+
54
+ If you are proposing a feature:
55
+
56
+ * Explain in detail how it would work.
57
+ * Keep the scope as narrow as possible, to make it easier to implement.
58
+ * Remember that this is a volunteer-driven project, and that contributions
59
+ are welcome :)
60
+
61
+ ## Get Started!
62
+
63
+ Ready to contribute? Here's how to set up `komora-service-path-plugin` for local development.
64
+
65
+ 1. Fork the `komora-service-path-plugin` repo on GitHub.
66
+ 2. Clone your fork locally
67
+
68
+ ```
69
+ $ git clone git@github.com:your_name_here/komora-service-path-plugin.git
70
+ ```
71
+
72
+ 3. Activate the NetBox virtual environment (see the NetBox documentation under [Setting up a Development Environment](https://docs.netbox.dev/en/stable/development/getting-started/)):
73
+
74
+ ```
75
+ $ source ~/.venv/netbox/bin/activate
76
+ ```
77
+
78
+ 4. Add the plugin to NetBox virtual environment in Develop mode (see [Plugins Development](https://docs.netbox.dev/en/stable/plugins/development/)):
79
+
80
+ To ease development, it is recommended to go ahead and install the plugin at this point using setuptools' develop mode. This will create symbolic links within your Python environment to the plugin development directory. Call setup.py from the plugin's root directory with the develop argument (instead of install):
81
+
82
+ ```
83
+ $ python setup.py develop
84
+ ```
85
+
86
+ 5. Create a branch for local development:
87
+
88
+ ```
89
+ $ git checkout -b name-of-your-bugfix-or-feature
90
+ ```
91
+
92
+ Now you can make your changes locally.
93
+
94
+ 6. Commit your changes and push your branch to GitHub:
95
+
96
+ ```
97
+ $ git add .
98
+ $ git commit -m "Your detailed description of your changes."
99
+ $ git push origin name-of-your-bugfix-or-feature
100
+ ```
101
+
102
+ 7. Submit a pull request through the GitHub website.
103
+
104
+ ## Pull Request Guidelines
105
+
106
+ Before you submit a pull request, check that it meets these guidelines:
107
+
108
+ 1. The pull request should include tests.
109
+ 2. If the pull request adds functionality, the docs should be updated. Put
110
+ your new functionality into a function with a docstring, and add the
111
+ feature to the list in README.md.
112
+ 3. The pull request should work for Python 3.8, 3.9, 3.10 and 3.11. Check
113
+ https://github.com/Jan.Krupa/komora-service-path-plugin/actions
114
+ and make sure that the tests pass for all supported Python versions.
115
+
116
+
117
+ ## Deploying
118
+
119
+ A reminder for the maintainers on how to deploy.
120
+ Make sure all your changes are committed (including an entry in CHANGELOG.md) and that all tests pass.
121
+ Then in the github project go to `Releases` and create a new release with a new tag. This will automatically upload the release to pypi:
@@ -0,0 +1,203 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity granting the License.
13
+
14
+ "Legal Entity" shall mean the union of the acting entity and all
15
+ other entities that control, are controlled by, or are under common
16
+ control with that entity. For the purposes of this definition,
17
+ "control" means (i) the power, direct or indirect, to cause the
18
+ direction or management of such entity, whether by contract or
19
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
20
+ outstanding shares, or (iii) beneficial ownership of such entity.
21
+
22
+ "You" (or "Your") shall mean an individual or Legal Entity
23
+ exercising permissions granted by this License.
24
+
25
+ "Source" form shall mean the preferred form for making modifications,
26
+ including but not limited to software source code, documentation
27
+ source, and configuration files.
28
+
29
+ "Object" form shall mean any form resulting from mechanical
30
+ transformation or translation of a Source form, including but
31
+ not limited to compiled object code, generated documentation,
32
+ and conversions to other media types.
33
+
34
+ "Work" shall mean the work of authorship covered by this License,
35
+ whether in Source or Object form, made available under the License,
36
+ as indicated by a copyright notice that is included in or attached
37
+ to the work. (For the purposes of this definition, a work that
38
+ constitutes a collective work, such as a journal issue, anthology,
39
+ or encyclopedia, is not itself a "Work" under this License.)
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based upon (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and derivative works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control
58
+ systems, and issue tracking systems that are managed by, or on behalf
59
+ of, the Licensor for the purpose of discussing and improving the Work,
60
+ but excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to use, reproduce, modify, display, perform,
71
+ sublicense, and distribute the Work and such Derivative Works in
72
+ Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You must retain, in any redistribution of the Work
91
+ or Derivative Works thereof, the following:
92
+
93
+ (a) The copyright notice as provided in Section 6 below;
94
+
95
+ (b) A copy of this License;
96
+
97
+ (c) If the Work includes a "NOTICE" text file as part of its
98
+ distribution, then any Derivative Works that You distribute must
99
+ include a readable copy of the attribution notices contained
100
+ within such NOTICE file, excluding those notices that do not
101
+ pertain to any part of the Derivative Works, in at least one
102
+ of the following places: within a NOTICE text file distributed
103
+ as part of the Derivative Works; within the Source form or
104
+ documentation, if provided along with the Derivative Works; or,
105
+ within a display generated by the Derivative Works, if and
106
+ wherever such third-party notices normally appear. The contents
107
+ of the NOTICE file are for informational purposes only and
108
+ do not modify the License. You may add Your own attribution
109
+ notices within Derivative Works that You distribute, alongside
110
+ or as an addendum to the NOTICE text from the Work, provided
111
+ that such additional attribution notices cannot be construed
112
+ as modifying the License.
113
+
114
+ You may add Your own copyright notice to Your modifications and
115
+ may provide additional or different license terms and conditions
116
+ for use, reproduction, or distribution of Your modifications, or
117
+ for any such Derivative Works as a whole, provided Your use,
118
+ reproduction, and distribution of the Work otherwise complies with
119
+ the conditions stated in this License.
120
+
121
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
122
+ any Contribution intentionally submitted for inclusion in the Work
123
+ by You to the Licensor shall be under the terms and conditions of
124
+ this License, without any additional terms or conditions.
125
+ Notwithstanding the above, nothing herein shall supersede or modify
126
+ the terms of any separate contributor license agreement you may have
127
+ executed with Licensor regarding such Contributions.
128
+
129
+ 6. Trademarks. This License does not grant permission to use the trade
130
+ names, trademarks, service marks, or product names of the Licensor,
131
+ except as required for reasonable and customary use in describing the
132
+ origin of the Work and reproducing the content of the NOTICE file.
133
+
134
+ 7. Disclaimer of Warranty. Unless required by applicable law or
135
+ agreed to in writing, Licensor provides the Work (and each
136
+ Contributor provides its Contributions) on an "AS IS" BASIS,
137
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
138
+ implied, including, without limitation, any warranties or conditions
139
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
140
+ PARTICULAR PURPOSE. You are solely responsible for determining the
141
+ appropriateness of using or redistributing the Work and assume any
142
+ risks associated with Your exercise of permissions under this License.
143
+
144
+ 8. Limitation of Liability. In no event and under no legal theory,
145
+ whether in tort (including negligence), contract, or otherwise,
146
+ unless required by applicable law (such as deliberate and grossly
147
+ negligent acts) or agreed to in writing, shall any Contributor be
148
+ liable to You for damages, including any direct, indirect, special,
149
+ incidental, or consequential damages of any character arising as a
150
+ result of this License or out of the use or inability to use the
151
+ Work (including but not limited to damages for loss of goodwill,
152
+ work stoppage, computer failure or malfunction, or any and all
153
+ other commercial damages or losses), even if such Contributor
154
+ has been advised of the possibility of such damages.
155
+
156
+ 9. Accepting Warranty or Support. You may choose to offer, and to charge a
157
+ fee for, warranty, support, indemnity or other liability obligations
158
+ and/or rights consistent with this License. However, in accepting such
159
+ obligations, You may act only on Your own behalf and on Your sole
160
+ responsibility, not on behalf of any other Contributor, and only if You
161
+ agree to indemnify, defend, and hold each Contributor harmless for any
162
+ liability incurred by, or claims asserted against, such Contributor by
163
+ reason of your accepting any such warranty or support.
164
+
165
+ END OF TERMS AND CONDITIONS
166
+
167
+ APPENDIX: How to apply the Apache License to your work.
168
+
169
+ To apply the Apache License to your work, attach the following
170
+ boilerplate notice, with the fields enclosed by brackets "[]"
171
+ replaced with your own identifying information. (Don't include
172
+ the brackets!) The text should be enclosed in comments for
173
+ the particular language format. And don't forget to change the
174
+ "[yyyy]" to the year when the file was created.
175
+
176
+ Copyright [yyyy] [name of copyright owner]
177
+
178
+ Licensed under the Apache License, Version 2.0 (the "License");
179
+ you may not use this file except in compliance with the License.
180
+ You may obtain a copy of the License at
181
+
182
+ http://www.apache.org/licenses/LICENSE-2.0
183
+
184
+ Unless required by applicable law or agreed to in writing, software
185
+ distributed under the License is distributed on an "AS IS" BASIS,
186
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
187
+ See the License for the specific language governing permissions and
188
+ limitations under the License.
189
+
190
+
191
+ Copyright 2024 CESNET, z. s. p. o.
192
+
193
+ Licensed under the Apache License, Version 2.0 (the "License");
194
+ you may not use this file except in compliance with the License.
195
+ You may obtain a copy of the License at
196
+
197
+ http://www.apache.org/licenses/LICENSE-2.0
198
+
199
+ Unless required by applicable law or agreed to in writing, software
200
+ distributed under the License is distributed on an "AS IS" BASIS,
201
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
202
+ See the License for the specific language governing permissions and
203
+ limitations under the License.
@@ -0,0 +1,14 @@
1
+ include CONTRIBUTING.md
2
+ include LICENSE
3
+ include README.md
4
+
5
+ recursive-include tests *
6
+ recursive-include cesnet_service_path_plugin/templates *
7
+ recursive-include cesnet_service_path_plugin/static *
8
+ recursive-exclude * __pycache__
9
+ recursive-exclude * *.py[co]
10
+
11
+
12
+ recursive-include docs *.rst conf.py Makefile make.bat *.jpg *.png *.gif
13
+
14
+ graft templates