readthedocs.builds

readthedocs.builds.admin

Django admin interface for Build and related models.

readthedocs.builds.models

Models for the builds app.

class readthedocs.builds.models.Build(*args, **kwargs)

Build data.

finished

Return if build has a finished state

class readthedocs.builds.models.BuildCommandResult(*args, **kwargs)

Build command for a Build.

run_time

Total command runtime in seconds

class readthedocs.builds.models.BuildCommandResultMixin

Mixin for common command result methods/properties

Shared methods between the database model BuildCommandResult and non-model respresentations of build command results from the API

failed

Did the command exit with a failing exit code

Helper for inverse of successful()

successful

Did the command exit with a successful exit code

class readthedocs.builds.models.Version(*args, **kwargs)

Version of a Project.

clean_build_path()

Clean build path for project version

Ensure build path is clean for project version. Used to ensure stale build checkouts for each project version are removed.

commit_name

Return the branch name, the tag name or the revision identifier.

The result could be used as ref in a git repo, e.g. for linking to GitHub or Bitbucket.

get_build_path()

Return version build path if path exists, otherwise None

get_github_url(docroot, filename, source_suffix='.rst', action='view')

Return a GitHub URL for a given filename.

docroot
Location of documentation in repository
filename
Name of file
source_suffix
File suffix of documentation format
action
view (default) or edit
identifier = None

The identifier is the ID for the revision this is version is for. This might be the revision number (e.g. in SVN), or the commit hash (e.g. in Git). If the this version is pointing to a branch, then identifier will contain the branch name.

identifier_friendly

Return display friendly identifier

save(*args, **kwargs)

Add permissions to the Version for all owners on save.

slug = None

The slug is the slugified version of verbose_name that can be used in the URL to identify this version in a project. It’s also used in the filesystem to determine how the paths for this version are called. It must not be used for any other identifying purposes.

verbose_name = None

This is the actual name that we got for the commit stored in identifier. This might be the tag or branch name like "v1.0.4". However this might also hold special version names like "latest" and "stable".

class readthedocs.builds.models.VersionAlias(*args, **kwargs)

Alias for a Version.

readthedocs.builds.urls

URL configuration for builds app.

readthedocs.builds.views

Views for builds app.