Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save bobmcwhirter/72c903ef06ac064fe1d3999ef001647a to your computer and use it in GitHub Desktop.

Select an option

Save bobmcwhirter/72c903ef06ac064fe1d3999ef001647a to your computer and use it in GitHub Desktop.
./sphinx/cmd/quickstart.py:from sphinx import __display_version__, package_dir
./sphinx/cmd/quickstart.py: conf_path = os.path.join(package_dir, 'templates', 'quickstart', 'conf.py_t')
./sphinx/theming.py:from sphinx import package_dir
./sphinx/theming.py: themes = self.find_themes(path.join(package_dir, 'themes'))
./sphinx/locale/__init__.py: package_dir = os.path.abspath(os.path.dirname(__file__))
./sphinx/locale/__init__.py: locale_dir = os.path.join(package_dir, 'locales')
./sphinx/locale/__init__.py: ``${package_dir}/locales/${language}/LC_MESSAGES/myextension.mo``.
./sphinx/util/template.py:from sphinx import package_dir
./sphinx/util/template.py: template_path = os.path.join(package_dir, 'templates')
./sphinx/util/template.py: template_path = [os.path.join(package_dir, 'templates', 'latex')]
./sphinx/builders/texinfo.py:from sphinx import addnodes, package_dir
./sphinx/builders/texinfo.py:template_dir = os.path.join(package_dir, 'templates', 'texinfo')
./sphinx/builders/changes.py:from sphinx import package_dir
./sphinx/builders/changes.py: copy_asset_file(path.join(package_dir, 'themes', 'default', 'static', 'default.css_t'),
./sphinx/builders/changes.py: copy_asset_file(path.join(package_dir, 'themes', 'basic', 'static', 'basic.css'),
./sphinx/builders/gettext.py:from sphinx import addnodes, package_dir
./sphinx/builders/gettext.py: template_path = [path.join(package_dir, 'templates', 'gettext')]
./sphinx/builders/latex/__init__.py:from sphinx import addnodes, highlighting, package_dir
./sphinx/builders/latex/__init__.py: staticdirname = path.join(package_dir, 'texinputs')
./sphinx/builders/latex/__init__.py: staticdirname = path.join(package_dir, 'texinputs_win')
./sphinx/builders/latex/__init__.py: filename = path.join(package_dir, 'templates', 'latex', 'sphinxmessages.sty_t')
./sphinx/builders/html/__init__.py:from sphinx import __display_version__, package_dir
./sphinx/builders/html/__init__.py: [path.join(package_dir, 'locale', self.config.language,
./sphinx/builders/epub3.py:from sphinx import package_dir
./sphinx/builders/epub3.py: template_dir = path.join(package_dir, 'templates', 'epub3')
./sphinx/ext/apidoc.py:from sphinx import __display_version__, package_dir
./sphinx/ext/apidoc.py:template_dir = path.join(package_dir, 'templates', 'apidoc')
./sphinx/ext/graphviz.py: css_path = path.join(sphinx.package_dir, 'templates', 'graphviz', 'graphviz.css')
./sphinx/ext/imgmath.py:from sphinx import package_dir
./sphinx/ext/imgmath.py:templates_path = path.join(package_dir, 'templates', 'imgmath')
./sphinx/ext/autosummary/generate.py:from sphinx import __display_version__, package_dir
./sphinx/ext/autosummary/generate.py: system_templates_path = [os.path.join(package_dir, 'ext', 'autosummary', 'templates')]
./sphinx/__init__.py: package_dir = path.abspath(path.dirname(__file__))
./sphinx/__init__.py: cwd=package_dir,
./sphinx/search/__init__.py:from sphinx import addnodes, package_dir
./sphinx/search/__init__.py: path.join(package_dir, 'search', 'non-minified-js', fname)
./sphinx/search/__init__.py: js_dir = path.join(package_dir, 'search', 'minified-js')
./sphinx/application.py:from sphinx import locale, package_dir
./sphinx/application.py: locale_dirs += [path.join(package_dir, 'locale')]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment