mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Skeleton for PO builder.
This commit is contained in:
parent
b9a5a6791d
commit
d405575620
30
sphinx/builders/intl.py
Normal file
30
sphinx/builders/intl.py
Normal 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
|
Loading…
Reference in New Issue
Block a user