diff options
author | John Dennis <jdennis@redhat.com> | 2011-08-24 22:48:30 -0400 |
---|---|---|
committer | Rob Crittenden <rcritten@redhat.com> | 2011-08-24 23:13:16 -0400 |
commit | 1b4eab0411cd4e669e3bd18541f5736c9aa81467 (patch) | |
tree | 55e54f7879165508f770adb9615b1b5bd8c4c885 /ipalib/plugins/service.py | |
parent | 7746e22fe7da42d6e221770c93f1926e92343965 (diff) | |
download | freeipa-1b4eab0411cd4e669e3bd18541f5736c9aa81467.tar.gz freeipa-1b4eab0411cd4e669e3bd18541f5736c9aa81467.tar.xz freeipa-1b4eab0411cd4e669e3bd18541f5736c9aa81467.zip |
ticket 1669 - improve i18n docstring extraction
This patch reverts the use of pygettext for i18n string extraction. It
was originally introduced because the help documentation for commands
are in the class docstring and module docstring.
Docstrings are a Python construct whereby any string which immediately
follows a class declaration, function/method declaration or appears
first in a module is taken to be the documentation for that
object. Python automatically assigns that string to the __doc__
variable associated with the object. Explicitly assigning to the
__doc__ variable is equivalent and permitted.
We mark strings in the source for i18n translation by embedding them
in _() or ngettext(). Specialized extraction tools (e.g. xgettext)
scan the source code looking for strings with those markers and
extracts the string for inclusion in a translation catalog.
It was mistakingly assumed one could not mark for translation Python
docstrings. Since some docstrings are vital for our command help
system some method had to be devised to extract docstrings for the
translation catalog. pygettext has the ability to locate and extract
docstrings and it was introduced to acquire the documentation for our
commands located in module and class docstrings.
However pygettext was too large a hammer for this task, it lacked any
fined grained ability to extract only the docstrings we were
interested in. In practice it extracted EVERY docstring in each file
it was presented with. This caused a large number strings to be
extracted for translation which had no reason to be translated, the
string might have been internal code documentation never meant to be
seen by users. Often the superfluous docstrings were long, complex and
likely difficult to translate. This placed an unnecessary burden on
our volunteer translators.
Instead what is needed is some method to extract only those strings
intended for translation. We already have such a mechanism and it is
already widely used, namely wrapping strings intended for translation
in calls to _() or _negettext(), i.e. marking a string for i18n
translation. Thus the solution to the docstring translation problem is
to mark the docstrings exactly as we have been doing, it only requires
that instead of a bare Python docstring we instead assign the marked
string to the __doc__ variable. Using the hypothetical class foo as
an example.
class foo(Command):
'''
The foo command takes out the garbage.
'''
Would become:
class foo(Command):
__doc__ = _('The foo command takes out the garbage.')
But which docstrings need to be marked for translation? The makeapi
tool knows how to iterate over every command in our public API. It was
extended to validate every command's documentation and report if any
documentation is missing or not marked for translation. That
information was then used to identify each docstring in the code which
needed to be transformed.
In summary what this patch does is:
* Remove the use of pygettext (modification to install/po/Makefile.in)
* Replace every docstring with an explicit assignment to __doc__ where
the rhs of the assignment is an i18n marking function.
* Single line docstrings appearing in multi-line string literals
(e.g. ''' or """) were replaced with single line string literals
because the multi-line literals were introducing unnecessary
whitespace and newlines in the string extracted for translation. For
example:
'''
The foo command takes out the garbage.
'''
Would appear in the translation catalog as:
"\n
The foo command takes out the garbage.\n
"
The superfluous whitespace and newlines are confusing to translators
and requires us to strip leading and trailing whitespace from the
translation at run time.
* Import statements were moved from below the docstring to above
it. This was necessary because the i18n markers are imported
functions and must be available before the the doc is
parsed. Technically only the import of the i18n markers had to
appear before the doc but stylistically it's better to keep all the
imports together.
* It was observed during the docstring editing process that the
command documentation was inconsistent with respect to the use of
periods to terminate a sentence. Some doc had a trailing period,
others didn't. Consistency was enforced by adding a period to end of
every docstring if one was missing.
Diffstat (limited to 'ipalib/plugins/service.py')
-rw-r--r-- | ipalib/plugins/service.py | 71 |
1 files changed, 32 insertions, 39 deletions
diff --git a/ipalib/plugins/service.py b/ipalib/plugins/service.py index bcaa76afb..87d25d6bb 100644 --- a/ipalib/plugins/service.py +++ b/ipalib/plugins/service.py @@ -18,7 +18,21 @@ # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. -""" + +import base64 +import os + +from ipalib import api, errors, util +from ipalib import Str, Flag, Bytes +from ipalib.plugins.baseldap import * +from ipalib import x509 +from ipalib import _, ngettext +from ipalib import util +import nss.nss as nss +from nss.error import NSPRError +from ipapython.ipautil import file_exists + +__doc__ = _(""" Services A IPA service represents a service that runs on a host. The IPA service @@ -67,20 +81,7 @@ EXAMPLES: Generate and retrieve a keytab for an IPA service: ipa-getkeytab -s ipa.example.com -p HTTP/web.example.com -k /etc/httpd/httpd.keytab -""" -import base64 -import os - -from ipalib import api, errors, util -from ipalib import Str, Flag, Bytes -from ipalib.plugins.baseldap import * -from ipalib import x509 -from ipalib import _, ngettext -from ipalib import util -import nss.nss as nss -from nss.error import NSPRError -from ipapython.ipautil import file_exists - +""") output_params = ( Str('managedby_host', @@ -238,9 +239,8 @@ api.register(service) class service_add(LDAPCreate): - """ - Add a new IPA new service. - """ + __doc__ = _('Add a new IPA new service.') + msg_summary = _('Added service "%(value)s"') member_attributes = ['managedby'] has_output_params = LDAPCreate.has_output_params + output_params @@ -280,9 +280,8 @@ api.register(service_add) class service_del(LDAPDelete): - """ - Delete an IPA service. - """ + __doc__ = _('Delete an IPA service.') + msg_summary = _('Deleted service "%(value)s"') member_attributes = ['managedby'] def pre_callback(self, ldap, dn, *keys, **options): @@ -317,9 +316,8 @@ api.register(service_del) class service_mod(LDAPUpdate): - """ - Modify an existing IPA service. - """ + __doc__ = _('Modify an existing IPA service.') + msg_summary = _('Modified service "%(value)s"') takes_options = LDAPUpdate.takes_options has_output_params = LDAPUpdate.has_output_params + output_params @@ -352,9 +350,8 @@ api.register(service_mod) class service_find(LDAPSearch): - """ - Search for IPA services. - """ + __doc__ = _('Search for IPA services.') + msg_summary = ngettext( '%(count)d service matched', '%(count)d services matched', 0 ) @@ -385,9 +382,8 @@ api.register(service_find) class service_show(LDAPRetrieve): - """ - Display information about an IPA service. - """ + __doc__ = _('Display information about an IPA service.') + member_attributes = ['managedby'] takes_options = LDAPRetrieve.takes_options + ( Str('out?', @@ -418,9 +414,8 @@ class service_show(LDAPRetrieve): api.register(service_show) class service_add_host(LDAPAddMember): - """ - Add hosts that can manage this service. - """ + __doc__ = _('Add hosts that can manage this service.') + member_attributes = ['managedby'] has_output_params = LDAPAddMember.has_output_params + output_params @@ -428,9 +423,8 @@ api.register(service_add_host) class service_remove_host(LDAPRemoveMember): - """ - Remove hosts that can manage this service. - """ + __doc__ = _('Remove hosts that can manage this service.') + member_attributes = ['managedby'] has_output_params = LDAPRemoveMember.has_output_params + output_params @@ -438,9 +432,8 @@ api.register(service_remove_host) class service_disable(LDAPQuery): - """ - Disable the Kerberos key and SSL certificate of a service. - """ + __doc__ = _('Disable the Kerberos key and SSL certificate of a service.') + has_output = output.standard_value msg_summary = _('Disabled service "%(value)s"') has_output_params = LDAPQuery.has_output_params + output_params |