Skeleton for PO builder.

This commit is contained in:
Robert Lehmann 2010-05-29 18:14:42 +02:00
parent b9a5a6791d
commit d405575620

30
sphinx/builders/intl.py Normal file
View File

@ -0,0 +1,30 @@
# -*- coding: utf-8 -*-
"""
sphinx.builders.intl
~~~~~~~~~~~~~~~~~~~~
The MessageCatalogBuilder class.
:copyright: Copyright 2010 by the Sphinx team, see AUTHORS.
:license: BSD, see LICENSE for details.
"""
from sphinx.builders import Builder
class MessageCatalogBuilder(Builder):
pass
def get_target_uri(self, docname, typ=None):
return ''
def get_outdated_docs(self):
return self.env.found_docs
def prepare_writing(self, docnames):
return
def write_doc(self, docname, doctree):
return
def finish(self):
return