summaryrefslogtreecommitdiffstats
path: root/install
Commit message (Collapse)AuthorAgeFilesLines
* Fix regression: missing facet tab group labelsPetr Vobornik2013-06-052-10/+15
| | | | | | | | Currently there is only empty space between facet tabs and facet title. It's a regression caused by recent refactoring. https://fedorahosted.org/freeipa/ticket/3688
* Use private ccache in ipa install toolsTomas Babej2013-06-054-16/+22
| | | | | | | | All installers that handle Kerberos auth, have been altered to use private ccache, that is ipa-server-install, ipa-dns-install, ipa-replica-install, ipa-ca-install. https://fedorahosted.org/freeipa/ticket/3666
* Make ssbrowser.html work in IE 10Petr Vobornik2013-06-041-3/+9
| | | | | | | | Manual configuration page for other browsers (ssbrowser.html) doesn't work in IE 10 - error page is displayed. This patch is conditioning creation of Firefox configuration object so that configure.jar is requested only in Firefox. IE doesn't request it and so it does not fail. https://fedorahosted.org/freeipa/ticket/3645
* Regression fix: missing control buttons in nested search facetsPetr Vobornik2013-06-031-16/+24
| | | | | | Regression introduced by 6e90920233cc9a7c9feb040dea22cda837715c39 - 'Move spec modifications from facet factories to pre_ops'. https://fedorahosted.org/freeipa/ticket/3605
* Remove code to install Dogtag 9Petr Viktorin2013-05-314-38/+11
| | | | | | | | | Since we depend on Dogtag 10 now, there is no need to keep code that installs a Dogtag 9 CA. Support for upgraded Dogtag-9-style instances is left in. https://fedorahosted.org/freeipa/ticket/3529
* Web UI: move ./_base/metadata_provider.js to ./metadata.jsPetr Vobornik2013-05-1712-15/+18
| | | | | | Metadata provider is IPA specific object, not a framework object, so it should not be in _base directory. https://fedorahosted.org/freeipa/ticket/3604
* Unite and move facet pre_ops to related modulesPetr Vobornik2013-05-174-123/+90
| | | | | | | | | | Facet pre_ops defined in ./facet module were moved to modules where facet are actually defined. Moved pre_ops were united with the ones defined for the facets in these modules. The move simplifies module dependencies - there is no reason to have general facet module dependent on specialized facet modules. Pre_ops uniting makes the code simpler. https://fedorahosted.org/freeipa/ticket/3605
* Move spec modifications from facet factories to pre_opsPetr Vobornik2013-05-176-85/+99
| | | | | | | | Spec modifications in factories makes inheritance and extensibility more difficult. Moving them to pre_ops allows modification of their output by other pre_ops. https://fedorahosted.org/freeipa/ticket/3605
* Do not display success message on failure in web UIAna Krivokapic2013-05-174-16/+47
| | | | https://fedorahosted.org/freeipa/ticket/3591
* Add IPA OTP schema and ACLsNathaniel McCallum2013-05-177-2/+76
| | | | | | | | | | This commit adds schema support for two factor authentication via OTP devices, including RADIUS or TOTP. This schema will be used by future patches which will enable two factor authentication directly. https://fedorahosted.org/freeipa/ticket/3365 http://freeipa.org/page/V3/OTP
* Add ipaUserAuthType and ipaUserAuthTypeClassNathaniel McCallum2013-05-172-0/+6
| | | | | | | | | | This schema addition will be useful for future commits. It allows us to define permitted external authentication methods on both the user and global config. The implementation is generic, but the immediate usage is for otp support. https://fedorahosted.org/freeipa/ticket/3365 http://freeipa.org/page/V3/OTP
* Prompt for nameserver IP address in dnszone-addAna Krivokapic2013-05-163-0/+73
| | | | | | | | | | | | | | Prompt for nameserver IP address in interactive mode of dnszone-add. Add a corresponding field to dnszone creation dialog in the web UI. This parameter is required if and only if: * New zone is a forward zone * Nameserver is defined inside the new zone Add a new unit test to cover this functionality. https://fedorahosted.org/freeipa/ticket/3603
* Set KRB5CCNAME so that dirsrv can work with newer krb5-serverMartin Kosek2013-05-141-0/+1
| | | | | | | | | | | The DIR ccache format is now the default in krb5-server 1.11.2-4 but /run/user/<uid> isn't created for Apache by anything so it has no ccache (and it doesn't have SELinux permissions to write here either). Use KRB5CCNAME to set a file path instead in /etc/sysconfig/dirsrv. https://fedorahosted.org/freeipa/ticket/3628
* Fix: HBAC Test tab is missingPetr Vobornik2013-05-141-1/+1
| | | | | | | | Caused by typo in metadata provider source path. No metadata -> no HBAC test entity -> no tab https://fedorahosted.org/freeipa/ticket/3627
* Update translations from TransifexPetr Viktorin2013-05-0917-637/+3597
|
* Set KRB5CCNAME so httpd s4u2proxy can with with newer krb5-serverRob Crittenden2013-05-091-0/+1
| | | | | | | | | | | The DIR ccache format is now the default in krb5-server 1.11.2-4 but /run/user/<uid> isn't created for Apache by anything so it has no ccache (and it doesn't have SELinux permissions to write here either). Use KRB5CCNAME to set a file path instead in /etc/sysconfig/httpd. https://fedorahosted.org/freeipa/ticket/3607
* Resolve SIDs in Web UIAlexander Bokovoy2013-05-064-6/+79
| | | | | | | | | | | | | | | | | Introduce new command, 'trust-resolve', to aid resolving SIDs to names in the Web UI. The command uses new SSSD interface, nss_idmap, to resolve actual SIDs. SSSD caches resolved data so that future requests to resolve same SIDs are returned from a memory cache. Web UI code is using Dojo/Deferred to deliver result of SID resolution out of band. Once resolved names are available, they replace SID values. Since Web UI only shows ~20 records per page, up to 20 SIDs are resolved at the same time. They all sent within the single request to the server. https://fedorahosted.org/freeipa/ticket/3302
* Enable standalone facets in menu.add_itemPetr Vobornik2013-05-061-14/+14
| | | | https://fedorahosted.org/freeipa/ticket/3235
* Fix crash on host deleletionPetr Vobornik2013-05-061-1/+1
| | | | https://fedorahosted.org/freeipa/ticket/3235
* Fix crash on ssh key addPetr Vobornik2013-05-061-7/+7
| | | | https://fedorahosted.org/freeipa/ticket/3235
* Fix WebUI crash when server installed as CA-lessPetr Vobornik2013-05-061-0/+2
| | | | https://fedorahosted.org/freeipa/ticket/3235
* Fix trustconfig specificationPetr Vobornik2013-05-064-4/+118
| | | | https://fedorahosted.org/freeipa/ticket/3235
* Navigation: handle invalid routesPetr Vobornik2013-05-062-11/+69
| | | | https://fedorahosted.org/freeipa/ticket/3235
* Builder: Singleton_registry: return null when construction spec not availablePetr Vobornik2013-05-062-6/+6
| | | | https://fedorahosted.org/freeipa/ticket/3235
* Fix: make association facets in selfservice readonlyPetr Vobornik2013-05-061-7/+7
| | | | https://fedorahosted.org/freeipa/ticket/3235
* Builder: fix join of pre_ops and post_ops arraysPetr Vobornik2013-05-064-5/+107
| | | | https://fedorahosted.org/freeipa/ticket/3235
* Do not offer already added members in association dialogs when different casingPetr Vobornik2013-05-061-2/+12
| | | | https://fedorahosted.org/freeipa/ticket/3235
* Switch customization and registration phasePetr Vobornik2013-05-061-1/+1
| | | | https://fedorahosted.org/freeipa/ticket/3235
* Generate plugin index dynamicallyPetr Vobornik2013-05-068-70/+84
| | | | https://fedorahosted.org/freeipa/ticket/3235
* Remove entities.js, facets.jsPetr Vobornik2013-05-062-104/+0
| | | | https://fedorahosted.org/freeipa/ticket/3235
* Replace ./facets with reg.facetPetr Vobornik2013-05-066-45/+39
| | | | https://fedorahosted.org/freeipa/ticket/3235
* Fix rule table add/delete button enablementPetr Vobornik2013-05-061-0/+1
| | | | https://fedorahosted.org/freeipa/ticket/3235
* Add widget updated eventPetr Vobornik2013-05-067-1/+23
| | | | https://fedorahosted.org/freeipa/ticket/3235
* Removal of IPA.metadata usagesPetr Vobornik2013-05-067-23/+31
| | | | https://fedorahosted.org/freeipa/ticket/3235
* Move spec creations of sudorule, hbacrule, netgroup and selinuxusermap ↵Petr Vobornik2013-05-064-58/+99
| | | | | | details facet from their factories https://fedorahosted.org/freeipa/ticket/3235
* Don't automatically refresh facet after action successPetr Vobornik2013-05-062-4/+2
| | | | https://fedorahosted.org/freeipa/ticket/3235
* Remove cert menu item when disabledPetr Vobornik2013-05-061-2/+8
| | | | https://fedorahosted.org/freeipa/ticket/3235
* Replace IPA.metadata.objects... with declarative definitionsPetr Vobornik2013-05-066-14/+14
| | | | https://fedorahosted.org/freeipa/ticket/3235
* Convert definitions of entities to spec objectsPetr Vobornik2013-05-0622-1634/+1751
| | | | https://fedorahosted.org/freeipa/ticket/3235
* Entity build: test for enabled in post_opPetr Vobornik2013-05-061-0/+5
| | | | https://fedorahosted.org/freeipa/ticket/3235
* Builder: handle expected errors in post_opsPetr Vobornik2013-05-061-5/+5
| | | | https://fedorahosted.org/freeipa/ticket/3235
* Entity: allow definition of facet_groups in entity specsPetr Vobornik2013-05-061-6/+9
| | | | https://fedorahosted.org/freeipa/ticket/3235
* Entity registry and builder which allow definition by specPetr Vobornik2013-05-062-15/+75
| | | | https://fedorahosted.org/freeipa/ticket/3235
* Fix trustconfig after rebasePetr Vobornik2013-05-062-9/+33
| | | | https://fedorahosted.org/freeipa/ticket/3235
* Fix hbactest after rebasePetr Vobornik2013-05-061-1/+1
| | | | https://fedorahosted.org/freeipa/ticket/3235
* Builder: allow registration without factory or ctorPetr Vobornik2013-05-061-4/+0
| | | | https://fedorahosted.org/freeipa/ticket/3235
* Use builder for entity dialogsPetr Vobornik2013-05-061-34/+34
| | | | https://fedorahosted.org/freeipa/ticket/3235
* Builders: allow pre_ops and post_ops in build overridesPetr Vobornik2013-05-061-3/+26
| | | | https://fedorahosted.org/freeipa/ticket/3235
* Replace IPA.get_command_arg calls in specs with provider stringsPetr Vobornik2013-05-061-5/+5
| | | | https://fedorahosted.org/freeipa/ticket/3235
* Replace IPA.get_command_option calls in specs with provider stringsPetr Vobornik2013-05-067-13/+11
| | | | https://fedorahosted.org/freeipa/ticket/3235