### Untitled No description -------------------------------- ### Untitled No description -------------------------------- ### Untitled No description -------------------------------- ### Untitled No description -------------------------------- ### Untitled No description -------------------------------- ### Untitled No description -------------------------------- ### Sphinx Python Configuration for OTOBO Documentation Source: https://context7.com/rotheross/doc-otobo-user/llms.txt This Python script configures Sphinx for building the OTOBO User Manual. It defines project metadata, extensions, RST variable substitutions for branding and versioning, and settings for HTML and PDF output formats, including theme and logo paths. ```python # conf.py - Core configuration project = 'OTOBO User Manual' version = '11.0' release = '11.0' language = None # Set via command line for translations locale_dirs = ['locale/'] gettext_compact = True # RST variable substitution doc_datestamp = '2024-10-08' doc_name = 'OTOBO User Manual' doc_version = '11.0' doc_vendor = 'Rother OSS GmbH' doc_url = 'https://otobo.org' rst_prolog = """ .. |doc-name| replace:: {0} .. |doc-version| replace:: {1} """.format(doc_name, doc_version) # Required extensions extensions = [ 'sphinx.ext.autosectionlabel', # Auto-generate section labels 'sphinx.ext.extlinks' # External link shorthand ] # Link to system configuration reference extlinks = { 'sysconfig': ( 'https://doc.otobo.org/doc/manual/config-reference/11.0/en/content/%s', '' ) } # Build HTML with RTD theme html_theme = 'sphinx_rtd_theme' html_theme_path = ['/opt/otrs/var/thirdparty/_sphinx-themes'] html_logo = '/opt/otrs/var/thirdparty/_static/images/otobo-logo.png' # Build PDF with XeLaTeX latex_engine = 'xelatex' latex_documents = [ ('content/index', 'doc-otobo-doc-otobo-user.tex', 'OTOBO User Manual', 'Rother OSS GmbH', 'manual') ] # GitHub integration html_context = { "display_github": True, "github_user": "RotherOSS", "github_repo": "doc-otobo-doc-otobo-user", "github_version": "master", "conf_py_path": "/", } ``` -------------------------------- ### Untitled No description -------------------------------- ### Untitled No description -------------------------------- ### OTOBO Documentation YAML Configuration Source: https://context7.com/rotheross/doc-otobo-user/llms.txt This YAML file defines project metadata and publishing settings for OTOBO documentation. It specifies variables like name, version, and vendor, lists required Sphinx extensions, and configures output paths and filenames for PDF and EPUB formats. ```yaml # documentation.yml Variables: doc_name: OTOBO User Manual doc_version: 11.0 doc_vendor: Rother OSS GmbH doc_url: https://otobo.org doc_license: GNU Free Documentation License ProjectName: OTOBO User Manual Version: 11.0 Release: 11.0 Extensions: - sphinx.ext.autosectionlabel - sphinx.ext.extlinks # Feature flags DisplayGitHubEditButton: 1 Stable: 1 Publish: 1 # Output configuration PDFOutputPath: doc-user/{{Version}}/{{Language}}/ PDFFilename: otobo_user_manual_{{Version}}_{{Language}}.pdf EPUBOutputPath: doc-user/{{Version}}/{{Language}}/ EPUBFilename: otobo_user_manual_{{Version}}_{{Language}}.epub ``` -------------------------------- ### Untitled No description -------------------------------- ### Untitled No description -------------------------------- ### Untitled No description -------------------------------- ### Untitled No description -------------------------------- ### Untitled No description -------------------------------- ### OTOBO Agent Interface Access URL Source: https://context7.com/rotheross/doc-otobo-user/llms.txt This reStructuredText snippet provides the URL for accessing the OTOBO agent interface. It includes a note to replace a placeholder with the actual OTOBO host domain and details on how to recover a lost password. ```rst Login to Agent Interface ------------------------- The agent interface is available at the following location. .. note:: You have to replace ```` with your domain. .. code-block:: none https:///otobo/index.pl You need an agent account to be able to use OTOBO. If you have no account yet, please contact your administrator. Password recovery: - Click "Lost your password?" link - Enter username or email - Follow instructions in recovery email ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.