Skip to content
This repository was archived by the owner on Sep 23, 2025. It is now read-only.

Commit 1cd64dc

Browse files
committed
UWC-specific version of eT v1
1 parent e62183c commit 1cd64dc

File tree

5 files changed

+10
-9
lines changed

5 files changed

+10
-9
lines changed

app/car.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
2-
"identifier": "com.learningobjects.etui",
3-
"name": "Extended Transcript",
2+
"identifier": "com.learningobjects.etui.uwc",
3+
"name": "Extended Transcript - UWC",
44
"version": "1.0.0",
55
"components": [{
6-
"identifier": "loi.cp.ExtendedTranscriptUI",
7-
"name": "Extended Transcript UI",
6+
"identifier": "loi.cp.ExtendedTranscriptUI.UWC",
7+
"name": "Extended Transcript UI - UWC",
88
"description": "View standardized transcripts.",
99
"implementation": "loi.cp.generic.GenericServlet",
1010
"annotations": {
1111
"com.learningobjects.cpxp.component.web.ServletBinding": {
12-
"path": "/extended-transcript"
12+
"path": "/extended-transcript/uwc"
1313
}
1414
}
1515
}],

app/components/rop.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
"created_at": "2015-05-05T04:00:00.000Z",
88
"organization": {
99
"@id": "http://purl.kinexis.com:8888/organizations/7",
10-
"legal_name": "Atlas University",
11-
"website": "ili.imsglobal.org"
10+
"legal_name": "University of Wisconsin Colleges",
11+
"website": "https://www.uwc.edu/about"
1212
},
1313
"program": {
1414
"@id": "http://purl.kinexis.com:8888/programs/7",

app/components/transcript/transcript.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
</div>
1818

1919
<div class="transcript-header">
20-
<img ng-src="{{domain_logo_secondary}}" class="logo"/>
20+
<a href="{{domain_website}}"><img ng-src="{{domain_logo_secondary}}" class="logo"/></a>
2121
<div class="right">
2222
<div class="user-name">{{transcript.user.givenName}} {{transcript.user.familyName}}</div>
2323
<div class="user-id">Student Id: {{transcript.user.sourced_id}}</div>

app/components/transcript/transcript.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import request from 'superagent';
33

44
import template from './transcript.html';
5-
import domain_logo from '../../images/Atlas.png';
5+
import domain_logo from '../../images/uwc.png';
66
import moment from "moment";
77
import _ from 'lodash';
88

@@ -34,6 +34,7 @@ export default ['$http', function($http){
3434
.then(function(res){
3535
scope.transcriptLoading = false;
3636
scope.transcript = res.data;
37+
scope.domain_website = scope.transcript.organization.website;
3738
scope.transcript.created_at = moment(scope.transcript.created_at).format('l');
3839
scope.outcomes = _.chain(scope.transcript.program.courses)
3940
.pluck("competencies")

app/images/uwc.png

5.73 KB
Loading

0 commit comments

Comments
 (0)