1. 03 Nov, 2016 1 commit
    • Prevent application info from overflowing · d6c97130
      Johannes Edmeier authored
      Change the application list to a fixed table layout to prevent it from
      overflowing in the window and limit the info column to a max width.
      Also limit the info column in the detail view.
      
      fixes #316
  2. 02 Nov, 2016 1 commit
  3. 12 Oct, 2016 2 commits
  4. 10 Sep, 2016 1 commit
  5. 22 Jun, 2016 1 commit
    • Detect URLs in /info and render them as links · 9086e00c
      Johannes Edmeier authored
      With this commit urls form the /info endpoint are deteceted and rendered as
      links.
      The downside is to make that work I had to drop the collapsible info section in
      the overview list and replaced it with an resizable/scrollabe <pre> section.
  6. 03 Jun, 2016 1 commit
  7. 25 May, 2016 1 commit
    • Use FontAwsome, Remove Sidebar · 7861033b
      Johannes Edmeier authored
      With this commit the icons from FontAwesome are used. To achive this the
      webpack css-loader is used and the location for the module.css has slightly
      changed.
      Also I removed the ugly sidebar (what a short life) and added a slim navbar at
      the top for the detail views.
  8. 18 May, 2016 2 commits
    • Add sidebar and fix threads view · 6866b541
      Johannes Edmeier authored
    • Make ui modular and extensible · eae1ff46
      Johannes Edmeier authored
       - Updated Angular to 1.5.3
       - Removed Angular UI Bootstrap, to make the Angular update possible without
         updating Bootstrap
       - Moved every view into its own module
       - Added concatenation of the module js and css assets to the webserver
       - Created directives/components for the various visual components and trimmed
         down the controllers
       - Removed unecessary ngRoute
       - Removed classpath section in details (it is included in environment)
       - Moved the counters and gauges to a separated metrics view
       - Added target="_blank" for the logfile
       - Added information about version, loaded ui modules to the about page
       - Extracted the activiti view to a separate maven artifact
      
      With this commit it is now possible to add your own ui modules to the servers
      classpath and they will show up in the ui.
      Every module needs an "entry" script file in the classpath located under
      `META-INF/spring-boot-admin-server-ui/<modulename>/module.js`.
      The module is be implemented as angular module and needs to be added to
      the global `uiModules` list.
      The spring-boot-admin-server-ui-activiti module is a simple sample for
      adding a application view but it is also possible to add main-views.
      Please have a look at the events module in spring-boot-admin-server-ui/modules.
      
      Please note that the internals of the ui can change anytime.