Compare commits
4 Commits
add-latex-
...
fix-issue
Author | SHA1 | Date | |
---|---|---|---|
af344cd4d8 | |||
7ec0772602 | |||
0cc28b7d0b | |||
406302b448 |
@ -1,4 +1,5 @@
|
|||||||
---
|
---
|
||||||
|
environment: internal
|
||||||
hc_location: api_swift/obs
|
hc_location: api_swift/obs
|
||||||
html_location: docs/obs/api-swift
|
html_location: docs/obs/api-swift
|
||||||
link: /object-storage-service/swiftapi/
|
link: /object-storage-service/swiftapi/
|
||||||
|
10
otc_metadata/data/documents/rfs-api-ref.yaml
Normal file
10
otc_metadata/data/documents/rfs-api-ref.yaml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
hc_location: api/rfs
|
||||||
|
environment: internal
|
||||||
|
html_location: docs/rfs/api-ref
|
||||||
|
link: /resource-formation-service/api-ref/
|
||||||
|
pdf_name: rfs-api-ref
|
||||||
|
rst_location: api-ref/source
|
||||||
|
service_type: rfs
|
||||||
|
title: API Reference
|
||||||
|
type: api-ref
|
10
otc_metadata/data/documents/rfs-umn.yaml
Normal file
10
otc_metadata/data/documents/rfs-umn.yaml
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
hc_location: usermanual/aos
|
||||||
|
environment: internal
|
||||||
|
html_location: docs/rfs/umn
|
||||||
|
link: /resource-formation-service/umn/
|
||||||
|
pdf_name: rfs-umn
|
||||||
|
rst_location: umn/source
|
||||||
|
service_type: rfs
|
||||||
|
title: User Guide
|
||||||
|
type: umn
|
16
otc_metadata/data/services/rfs.yaml
Normal file
16
otc_metadata/data/services/rfs.yaml
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
---
|
||||||
|
environment: internal
|
||||||
|
repositories:
|
||||||
|
- environment: internal
|
||||||
|
repo: docs/resource-formation-service
|
||||||
|
type: gitea
|
||||||
|
- environment: public
|
||||||
|
repo: opentelekomcloud-docs/resource-formation-service
|
||||||
|
type: github
|
||||||
|
service_category: application
|
||||||
|
service_title: Resource Formation Service
|
||||||
|
service_type: rfs
|
||||||
|
service_uri: resource-formation-service
|
||||||
|
teams:
|
||||||
|
- name: docs-orchestration-rw
|
||||||
|
permission: write
|
@ -16,6 +16,8 @@
|
|||||||
|
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
from git import Repo
|
||||||
|
from datetime import datetime
|
||||||
|
|
||||||
extensions = [
|
extensions = [
|
||||||
'otcdocstheme',
|
'otcdocstheme',
|
||||||
@ -131,5 +133,8 @@ latex_documents = [
|
|||||||
{% endif -%}
|
{% endif -%}
|
||||||
]
|
]
|
||||||
|
|
||||||
# Path for the latex templates
|
# Get the Git commit values for last updated timestamp on each page
|
||||||
templates_path = ['_templates']
|
repo = Repo(search_parent_directories=True)
|
||||||
|
commit = repo.head.commit
|
||||||
|
current_commit_hash = commit.hexsha
|
||||||
|
current_commit_time = commit.committed_datetime.strftime('%Y-%m-%d %H:%M')
|
||||||
|
@ -12,4 +12,5 @@ reno>=3.1.0 # Apache-2.0
|
|||||||
otc-sphinx-directives>=0.1.0
|
otc-sphinx-directives>=0.1.0
|
||||||
sphinx-minify>=0.0.1 # Apache-2.0
|
sphinx-minify>=0.0.1 # Apache-2.0
|
||||||
git+https://gitea.eco.tsi-dev.otc-service.com/infra/otc-metadata.git#egg=otc_metadata
|
git+https://gitea.eco.tsi-dev.otc-service.com/infra/otc-metadata.git#egg=otc_metadata
|
||||||
setuptools
|
setuptools
|
||||||
|
gitpython
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -1,74 +0,0 @@
|
|||||||
\begin{savenotes}
|
|
||||||
\sphinxatlongtablestart
|
|
||||||
\sphinxthistablewithglobalstyle
|
|
||||||
<% if 'booktabs' in table.styles -%>
|
|
||||||
\sphinxthistablewithbooktabsstyle
|
|
||||||
<% endif -%>
|
|
||||||
<% if 'borderless' in table.styles -%>
|
|
||||||
\sphinxthistablewithborderlessstyle
|
|
||||||
<% endif -%>
|
|
||||||
<% if 'standard' in table.styles -%>
|
|
||||||
\sphinxthistablewithstandardstyle
|
|
||||||
<% endif -%>
|
|
||||||
<% if 'vlines' in table.styles -%>
|
|
||||||
\sphinxthistablewithvlinesstyle
|
|
||||||
<% endif -%>
|
|
||||||
<% if 'novlines' in table.styles -%>
|
|
||||||
\sphinxthistablewithnovlinesstyle
|
|
||||||
<% endif -%>
|
|
||||||
<% if 'colorrows' in table.styles -%>
|
|
||||||
\sphinxthistablewithcolorrowsstyle
|
|
||||||
<% endif -%>
|
|
||||||
<% if 'nocolorrows' in table.styles -%>
|
|
||||||
\sphinxthistablewithnocolorrowsstyle
|
|
||||||
<% endif -%>
|
|
||||||
\makeatletter
|
|
||||||
<%- if table.align in ('center', 'default') %>
|
|
||||||
\LTleft \@totalleftmargin plus1fill
|
|
||||||
\LTright\dimexpr\columnwidth-\@totalleftmargin-\linewidth\relax plus1fill
|
|
||||||
<%- elif table.align == 'left' %>
|
|
||||||
\LTleft \@totalleftmargin
|
|
||||||
\LTright\dimexpr\columnwidth-\@totalleftmargin-\linewidth\relax plus1fill
|
|
||||||
<%- elif table.align == 'right' %>
|
|
||||||
\LTleft \@totalleftmargin plus1fill
|
|
||||||
\LTright\dimexpr\columnwidth-\@totalleftmargin-\linewidth\relax
|
|
||||||
<%- endif %>
|
|
||||||
\makeatother
|
|
||||||
\begin{longtable}<%= table.get_colspec() %>
|
|
||||||
<%- if table.caption -%>
|
|
||||||
\sphinxthelongtablecaptionisattop
|
|
||||||
\caption{<%= ''.join(table.caption) %>\strut}<%= labels %>\\*[\sphinxlongtablecapskipadjust]
|
|
||||||
<% elif labels -%>
|
|
||||||
\noalign{\phantomsection<%= labels %>}%
|
|
||||||
<% endif -%>
|
|
||||||
\sphinxtoprule
|
|
||||||
<%= ''.join(table.header) -%>
|
|
||||||
<%- if table.header -%>
|
|
||||||
\sphinxmidrule
|
|
||||||
<% endif -%>
|
|
||||||
\endfirsthead
|
|
||||||
|
|
||||||
\multicolumn{<%= table.colcount %>}{c}{\sphinxnorowcolor
|
|
||||||
\makebox[0pt]{\sphinxtablecontinued{\tablename\ \thetable{} \textendash{} <%= _('continued from previous page') %>}}%
|
|
||||||
}\\
|
|
||||||
\sphinxtoprule
|
|
||||||
<%= ''.join(table.header) -%>
|
|
||||||
<%- if table.header -%>
|
|
||||||
\sphinxmidrule
|
|
||||||
<% endif -%>
|
|
||||||
\endhead
|
|
||||||
|
|
||||||
\sphinxbottomrule
|
|
||||||
\multicolumn{<%= table.colcount %>}{r}{\sphinxnorowcolor
|
|
||||||
\makebox[0pt][r]{\sphinxtablecontinued{<%= _('continues on next page') %>}}%
|
|
||||||
}\\
|
|
||||||
\endfoot
|
|
||||||
|
|
||||||
\endlastfoot
|
|
||||||
\sphinxtableatstartofbodyhook
|
|
||||||
<%= ''.join(table.body) -%>
|
|
||||||
\sphinxbottomrule
|
|
||||||
\end{longtable}
|
|
||||||
\sphinxtableafterendhook
|
|
||||||
\sphinxatlongtableend
|
|
||||||
\end{savenotes}
|
|
@ -1,21 +0,0 @@
|
|||||||
%
|
|
||||||
% sphinxmessages.sty
|
|
||||||
%
|
|
||||||
% message resources for Sphinx
|
|
||||||
%
|
|
||||||
\ProvidesPackage{sphinxmessages}[2019/01/04 v2.0 Localized LaTeX macros (Sphinx team)]
|
|
||||||
|
|
||||||
\renewcommand{\literalblockcontinuedname}{<%= _('continued from previous page') | e %>}
|
|
||||||
\renewcommand{\literalblockcontinuesname}{<%= _('continues on next page') | e %>}
|
|
||||||
\renewcommand{\sphinxnonalphabeticalgroupname}{<%= _('Non-alphabetical') | e %>}
|
|
||||||
\renewcommand{\sphinxsymbolsname}{<%= _('Symbols') | e %>}
|
|
||||||
\renewcommand{\sphinxnumbersname}{<%= _('Numbers') | e %>}
|
|
||||||
\def\pageautorefname{<%= _('page') | e %>}
|
|
||||||
|
|
||||||
<%= addtocaptions %>{\renewcommand{\figurename}{<%= figurename[0] | e | eabbr %>}}
|
|
||||||
\def\fnum@figure{\figurename\thefigure{}<%= figurename[1] | e %>}
|
|
||||||
|
|
||||||
<%= addtocaptions %>{\renewcommand{\tablename}{<%= tablename[0] | e | eabbr %>}}
|
|
||||||
\def\fnum@table{\tablename\thetable{}<%= tablename[1] | e %>}
|
|
||||||
|
|
||||||
<%= addtocaptions %>{\renewcommand{\literalblockname}{<%= literalblockname[0].strip() %>}}
|
|
@ -1,54 +0,0 @@
|
|||||||
\begin{savenotes}\sphinxattablestart
|
|
||||||
\sphinxthistablewithglobalstyle
|
|
||||||
<% if 'booktabs' in table.styles -%>
|
|
||||||
\sphinxthistablewithbooktabsstyle
|
|
||||||
<% endif -%>
|
|
||||||
<% if 'borderless' in table.styles -%>
|
|
||||||
\sphinxthistablewithborderlessstyle
|
|
||||||
<% endif -%>
|
|
||||||
<% if 'standard' in table.styles -%>
|
|
||||||
\sphinxthistablewithstandardstyle
|
|
||||||
<% endif -%>
|
|
||||||
<% if 'vlines' in table.styles -%>
|
|
||||||
\sphinxthistablewithvlinesstyle
|
|
||||||
<% endif -%>
|
|
||||||
<% if 'novlines' in table.styles -%>
|
|
||||||
\sphinxthistablewithnovlinesstyle
|
|
||||||
<% endif -%>
|
|
||||||
<% if 'colorrows' in table.styles -%>
|
|
||||||
\sphinxthistablewithcolorrowsstyle
|
|
||||||
<% endif -%>
|
|
||||||
<% if 'nocolorrows' in table.styles -%>
|
|
||||||
\sphinxthistablewithnocolorrowsstyle
|
|
||||||
<% endif -%>
|
|
||||||
<% if table.align -%>
|
|
||||||
<%- if table.align in ('center', 'default') -%>
|
|
||||||
\centering
|
|
||||||
<%- elif table.align == 'left' -%>
|
|
||||||
\raggedright
|
|
||||||
<%- else -%>
|
|
||||||
\raggedleft
|
|
||||||
<%- endif %>
|
|
||||||
<%- else -%>
|
|
||||||
\centering
|
|
||||||
<%- endif %>
|
|
||||||
<% if table.caption -%>
|
|
||||||
\sphinxcapstartof{table}
|
|
||||||
\sphinxthecaptionisattop
|
|
||||||
\sphinxcaption{<%= ''.join(table.caption) %>}<%= labels %>
|
|
||||||
\sphinxaftertopcaption
|
|
||||||
<% elif labels -%>
|
|
||||||
\phantomsection<%= labels %>\nobreak
|
|
||||||
<% endif -%>
|
|
||||||
\begin{tabular}[t]<%= table.get_colspec() -%>
|
|
||||||
\sphinxtoprule
|
|
||||||
<%= ''.join(table.header) -%>
|
|
||||||
<%- if table.header -%>
|
|
||||||
\sphinxmidrule
|
|
||||||
<% endif -%>
|
|
||||||
\sphinxtableatstartofbodyhook
|
|
||||||
<%=- ''.join(table.body) -%>
|
|
||||||
\sphinxbottomrule
|
|
||||||
\end{tabular}
|
|
||||||
\sphinxtableafterendhook\par
|
|
||||||
\sphinxattableend\end{savenotes}
|
|
@ -1,54 +0,0 @@
|
|||||||
\begin{savenotes}\sphinxattablestart
|
|
||||||
\sphinxthistablewithglobalstyle
|
|
||||||
<% if 'booktabs' in table.styles -%>
|
|
||||||
\sphinxthistablewithbooktabsstyle
|
|
||||||
<% endif -%>
|
|
||||||
<% if 'borderless' in table.styles -%>
|
|
||||||
\sphinxthistablewithborderlessstyle
|
|
||||||
<% endif -%>
|
|
||||||
<% if 'standard' in table.styles -%>
|
|
||||||
\sphinxthistablewithstandardstyle
|
|
||||||
<% endif -%>
|
|
||||||
<% if 'vlines' in table.styles -%>
|
|
||||||
\sphinxthistablewithvlinesstyle
|
|
||||||
<% endif -%>
|
|
||||||
<% if 'novlines' in table.styles -%>
|
|
||||||
\sphinxthistablewithnovlinesstyle
|
|
||||||
<% endif -%>
|
|
||||||
<% if 'colorrows' in table.styles -%>
|
|
||||||
\sphinxthistablewithcolorrowsstyle
|
|
||||||
<% endif -%>
|
|
||||||
<% if 'nocolorrows' in table.styles -%>
|
|
||||||
\sphinxthistablewithnocolorrowsstyle
|
|
||||||
<% endif -%>
|
|
||||||
<% if table.align -%>
|
|
||||||
<%- if table.align in ('center', 'default') -%>
|
|
||||||
\centering
|
|
||||||
<%- elif table.align == 'left' -%>
|
|
||||||
\raggedright
|
|
||||||
<%- else -%>
|
|
||||||
\raggedleft
|
|
||||||
<%- endif %>
|
|
||||||
<%- else -%>
|
|
||||||
\centering
|
|
||||||
<%- endif %>
|
|
||||||
<% if table.caption -%>
|
|
||||||
\sphinxcapstartof{table}
|
|
||||||
\sphinxthecaptionisattop
|
|
||||||
\sphinxcaption{<%= ''.join(table.caption) %>}<%= labels %>
|
|
||||||
\sphinxaftertopcaption
|
|
||||||
<% elif labels -%>
|
|
||||||
\phantomsection<%= labels %>\nobreak
|
|
||||||
<% endif -%>
|
|
||||||
\begin{tabulary}{\linewidth}[t]<%= table.get_colspec() -%>
|
|
||||||
\sphinxtoprule
|
|
||||||
<%= ''.join(table.header) -%>
|
|
||||||
<%- if table.header -%>
|
|
||||||
\sphinxmidrule
|
|
||||||
<% endif -%>
|
|
||||||
\sphinxtableatstartofbodyhook
|
|
||||||
<%=- ''.join(table.body) -%>
|
|
||||||
\sphinxbottomrule
|
|
||||||
\end{tabulary}
|
|
||||||
\sphinxtableafterendhook\par
|
|
||||||
\sphinxattableend\end{savenotes}
|
|
@ -15,10 +15,8 @@
|
|||||||
|
|
||||||
import argparse
|
import argparse
|
||||||
import logging
|
import logging
|
||||||
import os.path
|
|
||||||
import pathlib
|
import pathlib
|
||||||
import requests
|
import requests
|
||||||
import shutil
|
|
||||||
import subprocess
|
import subprocess
|
||||||
|
|
||||||
from git import exc
|
from git import exc
|
||||||
@ -50,7 +48,6 @@ def process_repositories(args, service):
|
|||||||
env = Environment(
|
env = Environment(
|
||||||
loader=PackageLoader("otc_metadata"), autoescape=select_autoescape()
|
loader=PackageLoader("otc_metadata"), autoescape=select_autoescape()
|
||||||
)
|
)
|
||||||
metadata_path = os.path.dirname(os.path.abspath(os.path.dirname(__file__)))
|
|
||||||
conf_py_template = env.get_template("conf.py.j2")
|
conf_py_template = env.get_template("conf.py.j2")
|
||||||
tox_ini_template = env.get_template("tox.ini.j2")
|
tox_ini_template = env.get_template("tox.ini.j2")
|
||||||
zuul_yaml_template = env.get_template("zuul.yaml.j2")
|
zuul_yaml_template = env.get_template("zuul.yaml.j2")
|
||||||
@ -133,23 +130,6 @@ def process_repositories(args, service):
|
|||||||
logging.debug(f"Analyzing document {doc}")
|
logging.debug(f"Analyzing document {doc}")
|
||||||
|
|
||||||
conf_py_path = pathlib.Path(copy_to, doc["rst_location"], "conf.py")
|
conf_py_path = pathlib.Path(copy_to, doc["rst_location"], "conf.py")
|
||||||
latex_templates_src_path = pathlib.Path(metadata_path, "otc_metadata", "templates", "latex_templates")
|
|
||||||
latex_templates_dest_path = pathlib.Path(copy_to, doc["rst_location"], "_templates")
|
|
||||||
|
|
||||||
# Check if the latex destination path exists and is a directory
|
|
||||||
if not latex_templates_dest_path.exists():
|
|
||||||
logging.info(f"Path for latex templates in {doc['title']} does not exist")
|
|
||||||
latex_templates_dest_path.mkdir(parents=True, exist_ok=True)
|
|
||||||
|
|
||||||
# Delete all files in the latex destination directory
|
|
||||||
for file in latex_templates_dest_path.iterdir():
|
|
||||||
if file.is_file():
|
|
||||||
file.unlink()
|
|
||||||
|
|
||||||
# Add the new templates
|
|
||||||
for file in latex_templates_src_path.iterdir():
|
|
||||||
shutil.copy2(file, latex_templates_dest_path)
|
|
||||||
|
|
||||||
if not conf_py_path.exists():
|
if not conf_py_path.exists():
|
||||||
logging.info(f"Path for document {doc['title']} does not exist")
|
logging.info(f"Path for document {doc['title']} does not exist")
|
||||||
conf_py_path.parent.mkdir(parents=True, exist_ok=True)
|
conf_py_path.parent.mkdir(parents=True, exist_ok=True)
|
||||||
|
Reference in New Issue
Block a user