core

core.admin

Django admin interface for core models.

core.middleware

core.middleware.replace_insensitive(string, target, replacement)

Similar to string.replace() but is case insensitive Code borrowed from: http://forums.devshed.com/python-programming-11/case-insensitive-string-replace-490921.html

core.models

class core.models.UserProfile(*args, **kwargs)

Additional information about a User.

get_contribution_details()

Gets the line to put into commits to attribute the author.

Returns a tuple (name, email)

core.views

Core views, including the main homepage, post-commit build hook, documentation and header rendering, and server errors.

core.views.github_build(*args, **kwargs)

A post-commit hook for github.

core.views.server_error(request, template_name='500.html')

A simple 500 handler so we get media

core.views.server_error_404(request, template_name='404.html')

A simple 500 handler so we get media

core.management.commands

ここにはカスタム manage.py コマンドが定義されています。

class core.management.commands.update_repos.Command

Custom management command to rebuild documentation for all projects on the site. Invoked via ./manage.py update_repos.

Project Versions

Table Of Contents

Previous topic

builds

Next topic

projects

This Page