Skip to content

Commit

Permalink
Change all references from Zuul to Clortho (renaming the project)
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Lawson committed Jan 28, 2013
1 parent 12fa63a commit 19ab5d5
Show file tree
Hide file tree
Showing 13 changed files with 28 additions and 28 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
include .gitignore
include README.md
recursive-include zuul *.py
recursive-include clortho *.py
recursive-include docs *
prune docs/_*
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
zuul
====
clortho
=======

There is no authentication, there is only ZUUL
The Keymaster
2 changes: 2 additions & 0 deletions clortho/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@

from clortho.auth import UserBase
File renamed without changes.
2 changes: 1 addition & 1 deletion zuul/tests/example.py → clortho/tests/example.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
from sqlalchemy import create_engine
from sqlalchemy.exc import IntegrityError

from zuul.auth import UserBase, ActivationError
from clortho.auth import UserBase, ActivationError

class SimpleUser(UserBase):
__tablename__ = 'simple_users'
Expand Down
2 changes: 1 addition & 1 deletion zuul/tests/test_auth.py → clortho/tests/test_auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
from sqlalchemy import create_engine
from sqlalchemy.exc import IntegrityError

from zuul.auth import UserBase
from clortho.auth import UserBase

class TestUser(UserBase):
__tablename__ = 'test_users'
Expand Down
8 changes: 4 additions & 4 deletions docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -77,17 +77,17 @@ qthelp:
@echo
@echo "Build finished; now you can run "qcollectiongenerator" with the" \
".qhcp project file in $(BUILDDIR)/qthelp, like this:"
@echo "# qcollectiongenerator $(BUILDDIR)/qthelp/Zuul.qhcp"
@echo "# qcollectiongenerator $(BUILDDIR)/qthelp/Clortho.qhcp"
@echo "To view the help file:"
@echo "# assistant -collectionFile $(BUILDDIR)/qthelp/Zuul.qhc"
@echo "# assistant -collectionFile $(BUILDDIR)/qthelp/Clortho.qhc"

devhelp:
$(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp
@echo
@echo "Build finished."
@echo "To view the help file:"
@echo "# mkdir -p $$HOME/.local/share/devhelp/Zuul"
@echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/Zuul"
@echo "# mkdir -p $$HOME/.local/share/devhelp/Clortho"
@echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/Clortho"
@echo "# devhelp"

epub:
Expand Down
2 changes: 1 addition & 1 deletion docs/auth.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
The Authentication Module
================================

.. automodule:: zuul.auth
.. automodule:: clortho.auth
:members:
:undoc-members:
14 changes: 7 additions & 7 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#


# Zuul documentation build configuration file, created by
# Clortho documentation build configuration file, created by
# sphinx-quickstart on Fri Aug 3 14:10:24 2012.
#
# This file is execfile()d with the current directory set to its containing dir.
Expand Down Expand Up @@ -78,7 +78,7 @@ def setup(app):
master_doc = 'index'

# General information about the project.
project = u'Zuul'
project = u'Clortho'
copyright = u'2012, Patrick Lawson (ShopWiki)'

# The version info for the project you're documenting, acts as replacement for
Expand Down Expand Up @@ -202,7 +202,7 @@ def setup(app):
#html_file_suffix = None

# Output file base name for HTML help builder.
htmlhelp_basename = 'Zuuldoc'
htmlhelp_basename = 'Clorthodoc'


# -- Options for LaTeX output --------------------------------------------------
Expand All @@ -221,7 +221,7 @@ def setup(app):
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, documentclass [howto/manual]).
latex_documents = [
('index', 'Zuul.tex', u'Zuul Documentation',
('index', 'Clortho.tex', u'Clortho Documentation',
u'Patrick Lawson (ShopWiki)', 'manual'),
]

Expand Down Expand Up @@ -251,7 +251,7 @@ def setup(app):
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
('index', 'zuul', u'Zuul Documentation',
('index', 'clortho', u'Clortho Documentation',
[u'Patrick Lawson (ShopWiki)'], 1)
]

Expand All @@ -265,8 +265,8 @@ def setup(app):
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
('index', 'Zuul', u'Zuul Documentation',
u'Patrick Lawson (ShopWiki)', 'Zuul', 'One line description of project.',
('index', 'Clortho', u'Clortho Documentation',
u'Patrick Lawson (ShopWiki)', 'Clortho', 'One line description of project.',
'Miscellaneous'),
]

Expand Down
6 changes: 3 additions & 3 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
See the License for the specific language governing permissions and
limitations under the License.
.. Zuul documentation master file, created by
.. Clortho documentation master file, created by
sphinx-quickstart on Mon Dec 3 11:32:23 2012.
You can adapt this file completely to your liking, but it should at least
contain the root `toctree` directive.
Welcome to Zuul's documentation!
Welcome to Clortho's documentation!
================================

Contents:
Expand All @@ -25,7 +25,7 @@ Contents:

Quick Start
================================
.. literalinclude:: ../zuul/tests/example.py
.. literalinclude:: ../clortho/tests/example.py
:lines: 20-
:linenos:

Expand Down
4 changes: 2 additions & 2 deletions docs/make.bat
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,9 @@ if "%1" == "qthelp" (
echo.
echo.Build finished; now you can run "qcollectiongenerator" with the ^
.qhcp project file in %BUILDDIR%/qthelp, like this:
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\Zuul.qhcp
echo.^> qcollectiongenerator %BUILDDIR%\qthelp\Clortho.qhcp
echo.To view the help file:
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\Zuul.ghc
echo.^> assistant -collectionFile %BUILDDIR%\qthelp\Clortho.ghc
goto end
)

Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@
DESCRIPTION = 'Web Authentication with SQLAlchemy'

setup(
name='Zuul',
name='Clortho',
version=VERSION,
description=DESCRIPTION,
author='Patrick Lawson',
license='Apache 2',
author_email='[email protected]',
url='http://github.com/shopwiki/zuul',
packages=['zuul'],
url='http://github.com/shopwiki/clortho',
packages=['clortho'],
install_requires=['sqlalchemy', 'py-bcrypt'],
classifiers = [
'Development Status :: 2 - Pre-Alpha',
Expand Down
2 changes: 0 additions & 2 deletions zuul/__init__.py

This file was deleted.

0 comments on commit 19ab5d5

Please sign in to comment.