Skip to content

Commit

Permalink
changed instances of PKG_NAME and APP_NAME to SITE_NAME in skel
Browse files Browse the repository at this point in the history
  • Loading branch information
trey0 committed Feb 24, 2011
1 parent 455ea21 commit 95fd855
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions skel/doc_src/conf.py
Expand Up @@ -23,7 +23,7 @@
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
sys.path.append(os.path.abspath('..'))
import $$$$PKG_NAME$$$$
import $$$$SITE_NAME$$$$
os.environ['DJANGO_SETTINGS_MODULE'] = 'example.settings'

# -- General configuration -----------------------------------------------------
Expand All @@ -45,17 +45,17 @@
master_doc = 'index'

# General information about the project.
project = u'$$$$APP_NAME$$$$'
project = u'$$$$SITE_NAME$$$$'
copyright = u'2008-2010 United States Government as represented by the Administrator of the National Aeronautics and Space Administration. All Rights Reserved'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
version = $$$$PKG_NAME$$$$.get_version()
version = $$$$SITE_NAME$$$$.get_version()
# The full version, including alpha/beta/rc tags.
release = $$$$PKG_NAME$$$$.get_version()
release = $$$$SITE_NAME$$$$.get_version()

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down Expand Up @@ -166,7 +166,7 @@
#html_file_suffix = ''

# Output file base name for HTML help builder.
htmlhelp_basename = '$$$$APP_NAME$$$$doc'
htmlhelp_basename = '$$$$SITE_NAME$$$$doc'


# -- Options for LaTeX output --------------------------------------------------
Expand All @@ -180,7 +180,7 @@
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
('index', 'app.tex', u'$$$$APP_NAME$$$$ Documentation',
('index', 'app.tex', u'$$$$SITE_NAME$$$$ Documentation',
u'$$$$AUTHOR$$$$', 'manual'),
]

Expand Down
6 changes: 3 additions & 3 deletions skel/setup.py
Expand Up @@ -20,7 +20,7 @@ def read_file(filename):
return ''

# Use the docstring of the __init__ file to be the description
#DESC = " ".join(__import__('$$$$PKG_NAME$$$$').__doc__.splitlines()).strip()
#DESC = " ".join(__import__('$$$$SITE_NAME$$$$').__doc__.splitlines()).strip()
DESC = ""

PROJ_ROOT = op.abspath(op.dirname(__file__))
Expand Down Expand Up @@ -166,8 +166,8 @@ def run(self):


setup(
name = "$$$$APP_NAME$$$$",
version = '1.0', #__import__('$$$$PKG_NAME$$$$').get_version().replace(' ', '-'),
name = "$$$$SITE_NAME$$$$",
version = '1.0', #__import__('$$$$SITE_NAME$$$$').get_version().replace(' ', '-'),
url = '',
author = '$$$$AUTHOR$$$$',
author_email = '',
Expand Down

0 comments on commit 95fd855

Please sign in to comment.