update sphinx example config files 95/130295/1
authorthmsdt <thomas.kulik@telekom.de>
Tue, 16 Aug 2022 11:10:56 +0000 (13:10 +0200)
committerthmsdt <thomas.kulik@telekom.de>
Tue, 16 Aug 2022 11:12:20 +0000 (13:12 +0200)
Issue-ID: DOC-798

Signed-off-by: thmsdt <thomas.kulik@telekom.de>
Change-Id: I74a213993ada2b3697b58270c30c61326b151f7b

examples/sphinx/README.md
examples/sphinx/istanbul/_static/css/ribbon.css [deleted file]
examples/sphinx/release/_static/css/ribbon.css [new file with mode: 0644]
examples/sphinx/release/_static/favicon.ico [moved from examples/sphinx/istanbul/_static/favicon.ico with 100% similarity]
examples/sphinx/release/_static/logo_onap_2017.png [moved from examples/sphinx/istanbul/_static/logo_onap_2017.png with 100% similarity]
examples/sphinx/release/conf.py [moved from examples/sphinx/istanbul/conf.py with 94% similarity]
examples/sphinx/release/images/biohazard.png [moved from examples/sphinx/istanbul/images/biohazard.png with 100% similarity]
examples/sphinx/release/index.rst [moved from examples/sphinx/istanbul/index.rst with 100% similarity]
examples/sphinx/release/requirements-docs.txt [moved from examples/sphinx/istanbul/requirements-docs.txt with 100% similarity]
examples/sphinx/release/tox.ini [moved from examples/sphinx/istanbul/tox.ini with 100% similarity]

index ec94cd0..8c1e339 100644 (file)
@@ -6,9 +6,9 @@ in your project. **Important:** The files relate on each other. Change them care
 
 We provide two directories:
 - **master**: Contains configuration files used in the **development branch**.
-- **istanbul**: Contains configuration files used in the **release branch**
-   (e.g.'istanbul'). **Important:** You need to change the 'istanbul' entries
-   in the files! Replace them with the name of the new release branch (e.g. 'jakarta').
+- **release**: Contains configuration files used in the **release branch**
+   (e.g.'kohn'). **Important:** You need to change the 'kohn' entries
+   in the files! Replace them with the name of the new release branch.
 
 The additional directories named *_static* and *images* and the file
 *index.rst* are required to make the examples buildable. In the respective
diff --git a/examples/sphinx/istanbul/_static/css/ribbon.css b/examples/sphinx/istanbul/_static/css/ribbon.css
deleted file mode 100644 (file)
index 6008cb1..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-.ribbon {
-  z-index: 1000;
-  background-color: #a00;
-  overflow: hidden;
-  white-space: nowrap;
-  position: fixed;
-  top: 25px;
-  right: -50px;
-  -webkit-transform: rotate(45deg);
-     -moz-transform: rotate(45deg);
-      -ms-transform: rotate(45deg);
-       -o-transform: rotate(45deg);
-          transform: rotate(45deg);
-  -webkit-box-shadow: 0 0 10px #888;
-     -moz-box-shadow: 0 0 10px #888;
-          box-shadow: 0 0 10px #888;
-
-}
-
-.ribbon a {
-  border: 1px solid #faa;
-  color: #fff;
-  display: block;
-  font: bold 81.25% 'Helvetica Neue', Helvetica, Arial, sans-serif;
-  margin: 1px 0;
-  padding: 10px 50px;
-  text-align: center;
-  text-decoration: none;
-  text-shadow: 0 0 5px #444;
-  transition: 0.5s;
-}
-
-.ribbon a:hover {
-  background: #c11;
-  color: #fff;
-}
-
-
-/* override table width restrictions */
-@media screen and (min-width: 767px) {
-
-   .wy-table-responsive table td, .wy-table-responsive table th {
-      /* !important prevents the common CSS stylesheets from overriding
-         this as on RTD they are loaded after this stylesheet */
-      white-space: normal !important;
-   }
-
-   .wy-table-responsive {
-      overflow: visible !important;
-   }
-}
-
-@media screen and (max-width: 767px) {
-    .wy-table-responsive table td {
-        white-space: nowrap;
-    }
-}
-
-/* fix width of the screen */
-
-.wy-nav-content {
-    max-width: none;
-}
diff --git a/examples/sphinx/release/_static/css/ribbon.css b/examples/sphinx/release/_static/css/ribbon.css
new file mode 100644 (file)
index 0000000..d03a26b
--- /dev/null
@@ -0,0 +1,63 @@
+.ribbon {
+   z-index: 1000;
+   background-color: #a00;
+   overflow: hidden;
+   white-space: nowrap;
+   position: fixed;
+   top: 25px;
+   right: -50px;
+   -webkit-transform: rotate(45deg);
+      -moz-transform: rotate(45deg);
+       -ms-transform: rotate(45deg);
+        -o-transform: rotate(45deg);
+           transform: rotate(45deg);
+   -webkit-box-shadow: 0 0 10px #888;
+      -moz-box-shadow: 0 0 10px #888;
+           box-shadow: 0 0 10px #888;
+ }
+ .ribbon a {
+   border: 1px solid #faa;
+   color: #fff;
+   display: block;
+   font: bold 81.25% 'Helvetica Neue', Helvetica, Arial, sans-serif;
+   margin: 1px 0;
+   padding: 10px 50px;
+   text-align: center;
+   text-decoration: none;
+   text-shadow: 0 0 5px #444;
+   transition: 0.5s;
+ }
+ .ribbon a:hover {
+   background: #c11;
+   color: #fff;
+ }
+ /* override table width restrictions */
+ @media screen and (min-width: 767px) {
+    .wy-table-responsive table td, .wy-table-responsive table th {
+       /* !important prevents the common CSS stylesheets from overriding
+          this as on RTD they are loaded after this stylesheet */
+       white-space: normal !important;
+    }
+    .wy-table-responsive {
+       overflow: visible !important;
+    }
+ }
+ @media screen and (max-width: 767px) {
+     .wy-table-responsive table td {
+         white-space: nowrap;
+     }
+ }
+ /* fix width of the screen */
+ .wy-nav-content {
+     max-width: 800px;
+ }
\ No newline at end of file
similarity index 94%
rename from examples/sphinx/istanbul/conf.py
rename to examples/sphinx/release/conf.py
index 67944be..b2ba932 100644 (file)
@@ -1,6 +1,6 @@
 project = "onap"
-release = "istanbul"
-version = "istanbul"
+release = "kohn"
+version = "kohn"
 
 author = "Open Network Automation Platform"
 # yamllint disable-line rule:line-length
@@ -25,7 +25,7 @@ extensions = [
 # Change to {releasename} after you have created the new 'doc' branch.
 #
 
-branch = 'istanbul'
+branch = 'kohn'
 
 intersphinx_mapping = {}
 doc_url = 'https://docs.onap.org/projects'