Skip to content

Commit

Permalink
fix reference
Browse files Browse the repository at this point in the history
  • Loading branch information
djmitche committed Jan 2, 2013
2 parents 44c7cd5 + 3adb907 commit c00f91e
Show file tree
Hide file tree
Showing 13 changed files with 11 additions and 12 deletions.
1 change: 0 additions & 1 deletion README.md
Expand Up @@ -8,7 +8,6 @@ Right, this is the TODO list for Buildbot-0.9.0. We'll delete this once it's em

# Documentation #

* Rename ``masters/docs/developer/database.rst`` to ``db.rst`` for consistency.
* Put update methods in the appropriate resource-type files, rather than in ``data.rst``
* Move data API how-to guides

Expand Down
2 changes: 1 addition & 1 deletion master/buildbot/db/buildrequests.py
Expand Up @@ -30,7 +30,7 @@ class BrDict(dict):
pass

class BuildRequestsConnectorComponent(base.DBConnectorComponent):
# Documentation is in developer/database.rst
# Documentation is in developer/db.rst

def getBuildRequest(self, brid):
def thd(conn):
Expand Down
2 changes: 1 addition & 1 deletion master/buildbot/db/builds.py
Expand Up @@ -18,7 +18,7 @@
from buildbot.util import epoch2datetime

class BuildsConnectorComponent(base.DBConnectorComponent):
# Documentation is in developer/database.rst
# Documentation is in developer/db.rst

def getBuild(self, bid):
def thd(conn):
Expand Down
2 changes: 1 addition & 1 deletion master/buildbot/db/buildsets.py
Expand Up @@ -27,7 +27,7 @@ class BsDict(dict):
pass

class BuildsetsConnectorComponent(base.DBConnectorComponent):
# Documentation is in developer/database.rst
# Documentation is in developer/db.rst

def addBuildset(self, sourcestampsetid, reason, properties, builderNames,
external_idstring=None, submitted_at=None,
Expand Down
2 changes: 1 addition & 1 deletion master/buildbot/db/changes.py
Expand Up @@ -27,7 +27,7 @@ class ChDict(dict):
pass

class ChangesConnectorComponent(base.DBConnectorComponent):
# Documentation is in developer/database.rst
# Documentation is in developer/db.rst

def addChange(self, author=None, files=None, comments=None, is_dir=0,
revision=None, when_timestamp=None, branch=None,
Expand Down
2 changes: 1 addition & 1 deletion master/buildbot/db/schedulers.py
Expand Up @@ -23,7 +23,7 @@ class SchedulerAlreadyClaimedError(Exception):
pass

class SchedulersConnectorComponent(base.DBConnectorComponent):
# Documentation is in developer/database.rst
# Documentation is in developer/db.rst

def classifyChanges(self, schedulerid, classifications):
def thd(conn):
Expand Down
2 changes: 1 addition & 1 deletion master/buildbot/db/sourcestamps.py
Expand Up @@ -26,7 +26,7 @@ class SsList(list):
pass

class SourceStampsConnectorComponent(base.DBConnectorComponent):
# Documentation is in developer/database.rst
# Documentation is in developer/db.rst

def addSourceStamp(self, branch, revision, repository,
project, sourcestampsetid, codebase='',
Expand Down
2 changes: 1 addition & 1 deletion master/buildbot/db/sourcestampsets.py
Expand Up @@ -16,7 +16,7 @@
from buildbot.db import base

class SourceStampSetsConnectorComponent(base.DBConnectorComponent):
# Documentation is in developer/database.rst
# Documentation is in developer/db.rst

def addSourceStampSet(self):
def thd(conn):
Expand Down
2 changes: 1 addition & 1 deletion master/buildbot/db/state.py
Expand Up @@ -25,7 +25,7 @@ class ObjDict(dict):
pass

class StateConnectorComponent(base.DBConnectorComponent):
# Documentation is in developer/database.rst
# Documentation is in developer/db.rst

def getObjectId(self, name, class_name):
# defer to a cached method that only takes one parameter (a tuple)
Expand Down
2 changes: 1 addition & 1 deletion master/buildbot/db/users.py
Expand Up @@ -22,7 +22,7 @@ class UsDict(dict):
pass

class UsersConnectorComponent(base.DBConnectorComponent):
# Documentation is in developer/database.rst
# Documentation is in developer/db.rst

def findUserByAttr(self, identifier, attr_type, attr_data, _race_hook=None):
# note that since this involves two tables, self.findSomethingId is not
Expand Down
2 changes: 1 addition & 1 deletion master/docs/developer/apis.rst
Expand Up @@ -8,5 +8,5 @@ externally-maintained code should be written.
:maxdepth: 2

data
database
db
mq
File renamed without changes.
2 changes: 1 addition & 1 deletion master/docs/developer/mq.rst
Expand Up @@ -13,7 +13,7 @@ Overview

Buildbot is structured as a hybrid state- and event-based application, which
will probably offend adherents of either pattern. In particular, the most
current state is stored in the :doc:`Database <database>`, while any
current state is stored in the :doc:`Database <db>`, while any
changes to the state are announced in the form of a message. The content of
the messages is sufficient to reconstruct the updated state, allowing external
processes to represent "live" state without polling the database.
Expand Down

0 comments on commit c00f91e

Please sign in to comment.