Skip to content
This repository has been archived by the owner on May 4, 2022. It is now read-only.

Great additions, and some cleanup

Compare
Choose a tag to compare
@timlevett timlevett released this 12 Nov 20:07
· 2871 commits to master since this release
  • Create basic <frame-page> directive #59
  • Added short cut for /web for the home link #62
  • Created standard access denied page for apps #63
  • added a ngView based class, depending on your route, naturally #64 #65
  • Added ng-aria #66
  • Modified some aria roles #67
  • Added feature to truncate the title of a circle-button #68
  • Simplified and refactored the styling on circle-button #69
  • Updated documentation

Thanks to all the devs who helped put this release together

@apetro
@jhanstra
@smargovsky
@timlevett
@vertein

Upgrade path from 1.3.2

Configuring access-denied

  • Add 'portal/main/routes' and mainRoutes to require on my-app/main.js
  • Add when('/access-denied', main.accessDenied). to your route config to enable accessDenied
  • add /access-denied to web.xml if you want to utilize that path

App-config changes

@@ -5,7 +5,8 @@ define(['angular'], function(angular) {
         .constant('APP_FLAGS', {
             'features' : false,
             'showSidebar' : true,
-            'showSearch' : true
+            'showSearch' : true,
+            'isWeb' : false
         })
         .constant('SERVICE_LOC', {
             'aboutURL' : null,
@@ -25,7 +26,6 @@ define(['angular'], function(angular) {
             'guestUserName' : 'guest'
         })
         .constant('SEARCH',{
-            'isWeb' : false,
             'searchURL' : 'https://my.wisc.edu/web/apps/search/'
         })
         .constant('NOTIFICATION', {
@@ -34,11 +34,14 @@ define(['angular'], function(angular) {
             'notificationFullURL' : 'notifications'
         })
         .constant('MISC_URLS',{
-            'feedbackURL' : 'https://my.wisc.edu/portal/p/feedback',
             'back2ClassicURL' : null,
-            'whatsNewURL' : null,
+            'feedbackURL' : 'https://my.wisc.edu/portal/p/feedback',
+            'helpdeskURL' : 'https://kb.wisc.edu/helpdesk/',
             'loginURL' : '/portal/Login?profile=bucky',
-            'logoutURL' : '/portal/Logout'
+            'logoutURL' : '/portal/Logout',
+            'myuwHome' : 'https://my.wisc.edu',
+            'whatsNewURL' : null
+            
         });