22 Apr, 2015

6 commits


11 Mar, 2015

1 commit

  • From those commits:
    r4826 CR-5995 - OPENIDM-2828 - This is the first piece of the OPENIDM bootstrap conversion. This committ fully converts the user porition of the UI.
    r4833 CR-6069 - OPENIDM-2900 - Resource view bootstrap conversion
    r4834 CR-6069 - OPENIDM-2900 - Resource view bootstrap conversion
    r4835 CR-6075 - OPENIDM-2903 - Additional in person review by Jason Browne.
    r4836 CR-6069 - OPENIDM-2900 - Main js fix for user (change bootstap variable name)
    r4856 CR-6126 - OPENIDM-2906 - mappingBaseView conversion
    r4857 CR-6135 - OPENIDM-2904 - Convert add mapping view
    r4864 CR-6141 - OPENIDM-2902 - Add/Edit Connector Bootstrap conversion.
    r4865 CR-6152 - OPENIDM-2920 - Dashboard message consistancy fixed
    r4867 Missed commit for add/edit connector
    r4880 CR-6140 - OPENIDM-2931 - Enhance AppConfig.js to have the ability to create a list of main nav menu items
    r4883 CR-6157 - OPENIDM-2907 - Mapping properties tab updated to use bootstrap.
    r4884 OPENIDM-2911 - Pre commit for 2911 to move ROBOTO font local.
    r4885 CR-6170 - OPENIDM-2928 - managed objects admin/enduser ui conversion
    r4886 CR-6173 - OPENIDM-2911 - Bootstrap conversion Script Editor and general layout fixes
    r4887 Minor visual fix to remove excess body padding for collapse groups.
    r4891 Updating openidm-ui to use the forgerock-ui 2.0-SNAPSHOT dependency
    r4892 Approved in HipChat - Minor CSS enhancment to have dropdowns in admin have a better color for hover state.
    r4896 Approved in HipChat - Minor CSS enhancment to ensure collapse panel border consistancy and dialog button placement.
    r4897 quick fix...mistakenly removed a class
    r4898 Page header buttons full width when small screen size, fixes translation and a style bug on mapping page when no connectors are available.
    r4899 update copyright year range
    r4900 Renaming link on user nav menu from "Admin" to "Admin View"
    r4901 CSS Refactor
    r4906 OPENIDM-2971...added ScriptList widget and replaced all of the places that needed it also style fix for enduser ui wrt managed objects list and edit
    r4911 CR-6230 - OPENIDM-2908 and OPENIDM-2912 - Conver correlation tab in mapping properties along with all associated dialogs.
    r4920 CR-6240 - Ported over a fix from commons for an admin window.
    r4921 CR-6246 - OPENIDM-2843 - LinkedView not changing in FireFox
    r4927 OPENIDM-2905 - CR-6255 - Admin settings page converted to bootstrap.
    r4928 OPENIDM-3017 - CR-6268 - Mapping page to use tabdrop
    r4929 OPENIDM-2910 - CR-6269 - Schedule tab conversion to Bootstrap
    r4934 CR-6721 - OPENIDM-2930 - property mapping dialog conversion this should also fix OPENIDM-2805 and OPENIDM-2930
    r4935 CR-6288 - OPENIDM-3015 - Update query filter widget with new look and feel.
    r4938 CR-6291 - OPENIDM-2897 - Added messaging back into connectors.
    r4945 OPENIDM-3022 - changes to admin version of translation.json
    r4947 Typos - your -> you
    r4960 CR-6311 - Fix QUnit tests to return to a stable state.
    r4961 CR-6322 - fixed subtle bugs caused by bootstrap conversion
    r4963 CR-6310 - OPENIDM-2909 - Convert Recon tab to bootstrap.
    r4965 CR-6327 - fix for infinite loop on password validation...found while working on OPENIDM-2990
    r4968 CR-6326 - OPENIDM-2991 - Minor text changes.
    
    
    
    git-svn-id: https://svn.forgerock.org/openidm/trunk@4982 d98387aa-ee2c-4292-a9e6-504d2a719fd3
    jake.feasel
     

10 Feb, 2015

1 commit


04 Feb, 2015

1 commit


05 Dec, 2014

1 commit


03 Dec, 2014

2 commits


26 Nov, 2014

1 commit


24 Nov, 2014

1 commit


19 Nov, 2014

1 commit


05 Nov, 2014

2 commits


31 Oct, 2014

1 commit


30 Oct, 2014

4 commits


27 Oct, 2014

1 commit


22 Oct, 2014

1 commit


22 Sep, 2014

2 commits

  • Reviewed by Alin over Skype.
    
    git-svn-id: https://svn.forgerock.org/openidm/trunk@3925 d98387aa-ee2c-4292-a9e6-504d2a719fd3
    Lana
     
  • - fix a typo
     - use the secure port in REST commands
     - remove the Content-Type header, not required in GET requests
     
     Reviewed by Laurent over Skype
    
    git-svn-id: https://svn.forgerock.org/openidm/trunk@3924 d98387aa-ee2c-4292-a9e6-504d2a719fd3
    Lana
     

11 Sep, 2014

1 commit


02 Jun, 2014

1 commit


30 May, 2014

1 commit

  • Support reauth for any auth module configured in authentication.json.
     * AuthenticationService now handles requests on /authentication, replaciing
       AuthFilter which was not a filter, and did not fully handle reauth.
     * Authenticators are used from both JASPI auth modules and AuthenticationService
       to provide the authentication--either with Http headers in the case of the 
       auth modules, or from the authcid in the HttpContext and the reauth header 
       in the case of reauthentication.
     * AuthenticationService now satisfies the AuthenticationConfig service for 
       the purposes of OSGiAuthFilterBuilder's access to the config to build the 
       JASPI CAF.
     * The duplicative managed/user config at the top of the sample authentication.json 
       files are now removed, thus satisfying OPENIDM-1781.
    
    
    
    git-svn-id: https://svn.forgerock.org/openidm/trunk@3282 d98387aa-ee2c-4292-a9e6-504d2a719fd3
    brmiller
     

28 May, 2014

1 commit


27 May, 2014

1 commit

  • Additional decoupling of auth module role calculation and security context 
    population from auth module validation code.  Notably:
    
     * factor out basic auth code to allow PassthroughModule to support both basic auth and X-OpenIDM- header auth.
     * remove IWAPassthroughModule in favor of using auth module configuration to control order of execution
     * separate client cert auth into its own module, supporting an list of "allowedAuthenticationIdPatterns" 
       to compare against the subject DN
     * remove static dependency on OSGIAuthnFilterBuilder for injection of OSGi artifacts - improves testability
    
    
    
    git-svn-id: https://svn.forgerock.org/openidm/trunk@3261 d98387aa-ee2c-4292-a9e6-504d2a719fd3
    brmiller
     

14 May, 2014

2 commits


12 May, 2014

1 commit


23 Apr, 2014

1 commit


07 Apr, 2014

1 commit


03 Apr, 2014

1 commit


17 Mar, 2014

1 commit


17 Dec, 2013

1 commit


21 Aug, 2013

1 commit