summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* Finish deferred translation mechanismJason Gerard DeRose2010-03-166-41/+560
|
* Update Spanish translationsJohn Dennis2010-03-091-75/+900
|
* Add Chinese Simplified (zh_CN) translationJohn Dennis2010-03-094-0/+1607
|
* Provide more detailed NotFound error messages from baseldap classes.Pavel Zuna2010-03-091-7/+55
|
* localize doc stringsJohn Dennis2010-03-0820-56/+61
| | | | | | | | | | | | A number of doc strings were not localized, wrap them in _(). Some messages were not localized, wrap them in _() Fix a couple of failing tests: The method name in RPC should not be unicode. The doc attribute must use the .msg attribute for comparison. Also clean up imports of _() The import should come from ipalib or ipalib.text, not ugettext from request.
* Don't create /var/log/ipa_error.log since we aren't using TurboGears any more.Rob Crittenden2010-03-081-4/+4
|
* When raising an error about a required attribute, use cli_name not name.Rob Crittenden2010-03-071-1/+1
| | | | name is an LDAP attribute and may not be easily identifiable (e.g. sn).
* Don't calculate min/max lifetime if None is passed in.Rob Crittenden2010-03-071-2/+2
| | | | | | | | None is passed if the option is set with --minlife=''. This is a valid use case to delete a non-required attribute. In this case we simply don't do the math on None and things work as expected. 569847
* fix bug 570392, command help tracebackJohn Dennis2010-03-051-1/+1
| | | | | | | | | | | | | | | | | | | As a consequence of using doc=_('some message') the _() method was returning a Gettext instance, thus when optparse was handed the help text it received a Gettext instance instead of a basestring. optparse tried to operate on the Gettext instance as if it were a basestring and since it wasn't threw an exception. The fix is to promote (e.g. cast) the option.doc to unicode. If the option.doc was a str it becomes unicode, if it was unicode nothing happens, if it was Gettext (or any other object implementing the __unicode__() method) object is converted to unicode via the objects rules. By the way, while debugging this I discovered strings which were not localized, sometimes option.doc would be a str and sometimes a Gettext object. In a subsequent patch I'll fix all those unlocalized doc strings, but I don't want to bury this fix along with a load of string fixes.
* Fix JSON binary encode and decode errorsJohn Dennis2010-03-041-2/+99
| | | | | | | | | Traverse the objects passed to JSON for encoding and decoding. When binary data is seen during encode replace the binary data with a dict {'__base64__' : base64_encoding_of_binary_value}. On decode if a dict is seen whose single key is '__base64__' replace that dict with the base64 decoded value of the key's value.
* Install Contributors.txtJohn Dennis2010-03-041-6/+6
|
* Rework contributors list from Simo's inputJohn Dennis2010-03-041-11/+12
|
* update POTJohn Dennis2010-03-021-72/+867
|
* Make the CA a required component and configured by default.Rob Crittenden2010-03-022-26/+12
| | | | | | | | To install IPA without dogtag use the --selfsign option. The --ca option is now deprecated. 552995
* Add the popt auto-help/usage macro for enhanced help output.Rob Crittenden2010-03-023-3/+6
|
* Update available options and descriptions in client man pagesRob Crittenden2010-03-023-14/+50
|
* Fixed ipa.spec.in to include share/ipa/wsgi.py*Jason Gerard DeRose2010-03-011-1/+4
|
* Run ipaserver under mod_wsgiJason Gerard DeRose2010-03-015-269/+59
|
* Consolidate to single WSGI entry pointJason Gerard DeRose2010-03-018-83/+276
|
* More Kannada translationsJohn Dennis2010-03-011-131/+138
|
* full Spanish translations as of 20100225John Dennis2010-03-011-20/+21
|
* Code cleanup: remove unused stuff, take 1.Pavel Zuna2010-03-0113-245/+12
|
* Add more Spanish translationsJohn Dennis2010-02-261-83/+83
|
* Fix unicode failures in Env tests and dn failures in XML-RPC testsRob Crittenden2010-02-2610-54/+55
|
* Don't try to revoke a cert that is already revoked.Rob Crittenden2010-02-262-5/+22
| | | | | We get a bit of an unusual error message back from dogtag when trying to revoke a revoked cert so check its status first.
* Add contributors file.John Dennis2010-02-241-0/+65
| | | | | This gets installed along side the LICENSE and README files in the doc dir for each rpm package.
* Make the --all option work in Add/Remove Member commands.Pavel Zuna2010-02-245-8/+52
|
* Translatable Param.label, Param.docJason Gerard DeRose2010-02-2423-277/+363
|
* Set proper dn in default automount locationNalin Dahyabhai2010-02-231-1/+1
|
* Complete netgroup attributes.Pavel Zuna2010-02-231-1/+22
|
* Replace incorrect use of str.index with str.find in host plugin.Pavel Zuna2010-02-231-1/+1
|
* Fix bug where parameter cloning didn't clone validation rules.Pavel Zuna2010-02-231-1/+1
|
* minor makefile cleanupJohn Dennis2010-02-221-2/+1
|
* fix i18n build problemJohn Dennis2010-02-221-2/+5
| | | | | | | | | | | | | | | There was a typo in install/po/Makefile.in which caused (some) of the .po files to be overwritten because the test to see if a po file existed had a typo in it. This patch also removes the unnecessary rebuilding of the pot which was happening when using the "all" target (the default). The pot file now must be manually remade, which is what we want. Added a new target "mo-files" to manually generate the .mo files. This is useful to run before checking in a new .po file just to assure it "compiles" and we don't have to discover this during a build.
* Add Spanish translationJohn Dennis2010-02-223-0/+659
|
* Add more Kannada translationsJohn Dennis2010-02-221-82/+127
|
* make update-pot will not touch pot file if msgid's are unmodifiedJohn Dennis2010-02-221-9/+16
| | | | | | | | | | | | | | | | | Formerly running 'make update-pot' would write an insignificantly different pot file even if the msgid's xgettext found were unmodfied. Now the result of running xgettext is compared to the existing pot file after adjusting for things like timestamps, and only copies the result of xgettext to the new pot file if there were differences. This will help eliminate git commits on the pot file if all one did was see if the pot file was up to date, if it was up to date git won't see any modifications. It used to be that timestamps would be different in the pot file just by virtue of checking if the pot file was current. fix exit status; replace POT with $(DOMAN).pot
* Add new Russian translation, update PolishJohn Dennis2010-02-225-52/+732
| | | | | | | | | | | | | | | Add new Russian translation. Update the Polish translation. Add count of how many po translations we have in msg-stats. Current translation statistics with this patch: ipa.pot has 133 messages. There are 5 po translation files. bn_IN: 14/133 10.5% 106 po untranslated, 13 missing, 119 untranslated id: 107/133 80.5% 13 po untranslated, 13 missing, 26 untranslated kn: 4/133 3.0% 116 po untranslated, 13 missing, 129 untranslated pl: 133/133 100.0% 0 po untranslated, 0 missing, 0 untranslated ru: 120/133 90.2% 0 po untranslated, 13 missing, 13 untranslated
* Fix non XML-RPC testsJason Gerard DeRose2010-02-193-19/+15
|
* Remove bugfix widgetsJason Gerard DeRose2010-02-191-152/+0
|
* strip .po file suffix in translation statisticsJohn Dennis2010-02-191-3/+3
| | | | | | | | The goal is to get the statistics to line up in columns and not exceed an 80 character line which might cause wrapping. Removing .po suffix from the translation name gives us 3 extra characters. Formatting problems were observed when bn_IN.po was added.
* add Bengali India translationJohn Dennis2010-02-193-0/+608
|
* Add translation statisticsJohn Dennis2010-02-192-5/+33
| | | | | | | | | | | | | | The Makefile in install/po has a new target "msg-stats" which prints out statistics concerning the current pot and po files. Here is an example: % make msg-stats ipa.pot has 133 messages id.po: 107/133 80.5% 13 po untranslated, 13 missing, 26 untranslated kn.po: 4/133 3.0% 116 po untranslated, 13 missing, 129 untranslated pl.po: 120/133 90.2% 0 po untranslated, 13 missing, 13 untranslated Also update configure.ac to search for msgcmp, awk & sed programs.
* Add new translations (Polish,Indonesian,Kannada)John Dennis2010-02-196-80/+1363
| | | | | | | | | | Add 3 new translations for Polish, Indonesian, Kannada. Remove the dummy Italian translation (it.po), it's only purpose was to have some translation in the tarball so %{find_lang} wouldn't fail. Add a new file contributing_translators.txt so we can track our translators contributions and give them credit.
* Use unicode instead of str for environmental variables in Env.Pavel Zuna2010-02-191-2/+4
|
* Don't assume local directory is valid or writable.Rob Crittenden2010-02-191-1/+6
| | | | | | | | certutil writes to the local directory when issuing a certificate. Change to the security database directory when issuing the self-signed CA. Also handle the case where a user is in a non-existent directory when doing the install.
* Fix command-line options convention in ipa-getkeytab man pageRob Crittenden2010-02-191-1/+1
| | | | Resolves #481230
* Become IPA v2 alpha 2 (1.9.0.pre2)Rob Crittenden2010-02-181-1/+1
|
* Make error message in migration plugin unicode.Pavel Zuna2010-02-171-2/+2
|
* Expand the types of groups that can be migrated to support IPA v1 migrationsRob Crittenden2010-02-171-1/+1
|