Rename Cretonne to Cranelift!

This commit is contained in:
Dan Gohman
2018-07-13 09:01:28 -07:00
parent 19a636af96
commit f4dbd38a4c
306 changed files with 977 additions and 975 deletions

View File

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
#
# cretonne documentation build configuration file, created by
# cranelift documentation build configuration file, created by
# sphinx-quickstart on Fri Mar 2 12:49:24 2018.
#
# This file is execfile()d with the current directory set to its
@@ -21,7 +21,7 @@ import os
import sys
sys.path.insert(0, os.path.abspath('.'))
# Also add the meta directory to sys.path so autodoc can find the Cretonne meta
# Also add the meta directory to sys.path so autodoc can find the Cranelift meta
# language definitions.
sys.path.insert(0, os.path.abspath('../lib/codegen/meta'))
@@ -41,8 +41,8 @@ extensions = [
'sphinx.ext.ifconfig',
'sphinx.ext.graphviz',
'sphinx.ext.inheritance_diagram',
'cton_domain',
'cton_lexer',
'clif_domain',
'clif_lexer',
]
# Add any paths that contain templates here, relative to this directory.
@@ -58,9 +58,9 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
project = u'cretonne'
copyright = u'2018, Cretonne Developers'
author = u'Cretonne Developers'
project = u'cranelift'
copyright = u'2018, Cranelift Developers'
author = u'Cranelift Developers'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
@@ -113,7 +113,7 @@ html_theme = 'sphinx_rtd_theme'
# -- Options for HTMLHelp output ------------------------------------------
# Output file base name for HTML help builder.
htmlhelp_basename = 'cretonnedoc'
htmlhelp_basename = 'craneliftdoc'
# -- Options for LaTeX output ---------------------------------------------
@@ -140,7 +140,7 @@ latex_elements = {
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
(master_doc, 'cretonne.tex', u'cretonne Documentation',
(master_doc, 'cranelift.tex', u'cranelift Documentation',
author, 'manual'),
]
@@ -150,7 +150,7 @@ latex_documents = [
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
(master_doc, 'cretonne', u'cretonne Documentation',
(master_doc, 'cranelift', u'cranelift Documentation',
[author], 1)
]
@@ -161,8 +161,8 @@ man_pages = [
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
(master_doc, 'cretonne', u'cretonne Documentation',
author, 'cretonne', 'One line description of project.',
(master_doc, 'cranelift', u'cranelift Documentation',
author, 'cranelift', 'One line description of project.',
'Miscellaneous'),
]