Bugzilla – Bug 94160
VUL-0: CVE-2004-2302: kernel: buffer overflow in sysfs_read_file
Last modified: 2021-11-03 14:45:26 UTC
A kernel buffer overflow can be caused by reading from large offsets in sysfs files. This can crash an entire system just through reading a pseudo-file. We have already had a real instance of this problem with the "sophos" Virus filter software. The problem is solved with this patch: http://kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.10-rc1/2.6.10-rc1-mm1/broken-out/fix-race-in-sysfs_read_file-and-sysfs_write_file.patch
Security-team, Chris, would you mind looking into this as well? This looks like a potential true blocker for SLES9 SP2.
The patch looks good after a quick read. I'll validate the locking further. Greg, please give it a look as well (we need two reviews for something this late).
There are several security related changesets, including: http://linux.bkbits.net:8080/linux-2.6/cset%404186a4deVoR88JjTwMa3ZnIp-_YJsA?nav=index.html| src/.|src/fs|src/fs/sysfs|related/fs/sysfs/file.c http://linux.bkbits.net:8080/linux-2.6/cset%404186a4eeZTvuBkc2lLSHqgufJV_Bbg?nav=index.html| src/.|src/fs|src/fs/sysfs|related/fs/sysfs/file.c http://linux.bkbits.net:8080/linux-2.6/cset%40418a7ae7FkKuyn8B6e_qtKcfJdlwVQ?nav=index.html| src/.|src/fs|src/fs/sysfs|related/fs/sysfs/file.c http://linux.bkbits.net:8080/linux-2.6/cset%404225063b_XBBiTHw3im4dHappGw2zQ?nav=index.html| src/.|src/fs|src/fs/sysfs|related/fs/sysfs/file.c the first two are related to this bug, and are both in mainline.
I love the week of the gold master. On the surface, these all look valid to me.
Ugh, yeah, these are probably necessary. But, how would a virus checker catch this? What is it doing mucking around in sysfs files?
Greg, please confirm that you agree all of the patches agruen posted are required. Is there anything I should watch out for here? With GoldMaster tomorrow, there's not much margin for error.
Let me verify that these are the only patches needed, and that they work properly, I'll go dig through my archives...
Hm, no those aren't all correct. Problem is, sysfs and the driver core changed a bunch right around those patches (2.6.10 time), so I'll try to post all that are needed to the [kernel] list before committing them.
Ok, that last patch mentioned above, is already in the SLES 9 tree, so you don't have to worry about that one, I think that's the only "security" related issue. I'll work on the others now...
Patches sent to [kernel] for review. Right now I would not recommend applying them so late in the cycle. Again, what was the original report that caused this bug to be created?
Given Greg's concerns, I agree that we need to better understand the bug before we can take these patches. How exactly was the bug triggered?
looks to me like a reappaerance of the *ppos race conditions within the /proc file which we had a year ago or so.
No, it's a bit different. Here's the original thread on lkml about this issue: http://thread.gmane.org/gmane.linux.kernel/231721 I see a memory leak happening here, and possibly wrong data read from a sysfs file. But other than that, I don't see a security issue. But am I missing something? any word on the original bug that caused this entry to be created?
Created attachment 40078 [details] strace snippet from viros scanner The virus scanner is a 32bit executable riunning (in this case) on an x86_64 machine. The snippet in this attachment shows how it jumps around in a sysfs file with lseek() pretty wildly. Please don't ask me why. Anyway right after these instructions are executed our machines crash with machine check error, probably because invalid memory adresses are referenced.
then disabling lseek for sysfs files is probably the better thing, right? I know others have proposed this, but no one has been able to actually send me a patch to do this (stupid intel email clients...) Have you verified that this patch fixes the issue? Oh, and the fd0 disk? Are these people crazy?... bleah...
Or, based on that strace, just this portion of the patch should fix it: + if (*ppos > buffer->count) + return 0; right?
Created attachment 40092 [details] xx.c testcase. gcc -o xx xx.c strace ./xx
the testcase easily dumps all kernel memory. (just add while(1))
#16: I was just going to write that (not verified yet). #15: The customer has understood that he made a configuration mistake. But the problem persists.
If you could verify #16, I'd appreciate it. It's much too late here for me to be making security kernel patches and hope they would be correct :)
I just built a kernel with that fix and sent it to my colleagues for testing.
it looks sane. perhaps *ppos >= count though I am not sure.
problem is "local dos" and "local data disclosure" which can mean "local privilege escalation" (assuming user/root passwords can be read this way). a local dos would not cause a trigger of a kernel update, but data disclosure/privilege escalation would. so the security team prefers this to be fixed for sp2... if gregs simple patch works, this would be fine for us.
It's looking fine. #16 fixes our problem. Tests are being continued to be 100% sure, but it's really looking good.
No objections to the short patch here.
Okay, so let's proceed with tihs patch. Who is going to apply it?
Doing it now.
Created attachment 40167 [details] shorter patch with just the ppos hunk This is what I'm about to commit, could someone please verify it is the same patch that has been tested?
Since Greg referred to "this portion of the patch" (unfortunately without context), I assume this is correct.
It's the only hunk I could find that fit greg's comment. But I'm hoping Martin Wilck can comment.
I am sorry, I thought it was clear. Yes this is the patch we have tested. In fact, I put the same two lines into the SP1 kernel (-7.139) and we tested with that one.
Created attachment 40175 [details] The patch I was using against 2.6.5-7.139
Thanks, we should have everything we need then. Marcus, do you want this bug now for tracking?
Thanks for the quick reaction everybody. I assume the rest of the originally proposed patch will be considered after the Gold Master is finished?
the rest of the patch fixes a local denial of service attack, so it will be considered for inclusion into later updates of the SLES 9 kernel. changing product, severity away from SP2 itself. Chris, Greg, I would like to have a fix for the other 2.6 branches if necessary (9.2 and 9.3) too.
9.3 does not have a problem, as it already has the fix in it.
The virtual address that is read by the virus scanner in our problem can be above the end of physical RAM. This is what eventually crashes our machine - data is read from PCI I/O space. We have not yet figured out where the actual error occurs. In that context I was wondering whether it is correct to have the "direct mapping" of the kernel span the whole e820 memory area, including any holes or reserved areas it may have. Shouldn't such accesses cause page faults? Or am I completely mislead here?
Fix is in all affected trees.
updates released
====================================================== Candidate: CAN-2004-2302 URL: http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2004-2302 Reference: +CONFIRM:http://linux.bkbits.net:8080/linux-2.6/cset%404186a4deVoR88JjTwMa3ZnIp- +_YJsA Reference: +CONFIRM:http://kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.10-rc1/2 +.6.10-rc1-mm1/broken-out/fix-race-in-sysfs_read_file-and-sysfs_write_file.patch Reference: SUSE:SUSE-SA:2005:044 Reference: +URL:http://www.novell.com/linux/security/advisories/2005_44_kernel.html Race condition in the sysfs_read_file and sysfs_write_file functions in Linux kernel 2.6.10 and earlier allows local users to read kernel memory and cause a denial of service (crash) via large offsets in sysfs files.
CVE-2004-2302: CVSS v2 Base Score: 2.6 (AV:L/AC:H/Au:N/C:P/I:N/A:P)
TITLE *PUSH* by Puthali H.B - Puthali.H.B@microfocus.com Commit eb244ca[1] Contained in branches backlog/B-94160-Loading-Indicator Author BPuttali - Puthali.H.B@microfocus.com[2] Date Tue Mar 15 14:23:40 MDT 2016 LOG MESSAGE [Backlog 94160] Use $emit("widgetNotAllowed") similar to loading instead of using scope variables. MODIFIED PATH(S) * dist/angular-dashboard-framework-tpls.js (MODIFY)[3] * dist/angular-dashboard-framework-tpls.min.js (MODIFY)[4] * dist/angular-dashboard-framework-tpls.min.js.map (MODIFY)[5] * dist/angular-dashboard-framework.js (MODIFY)[6] * dist/angular-dashboard-framework.min.js (MODIFY)[7] * dist/angular-dashboard-framework.min.js.map (MODIFY)[8] * src/scripts/widget-content.js (MODIFY)[9] * src/scripts/widget.js (MODIFY)[10] * src/templates/widget-title.html (MODIFY)[11] * src/templates/widget.html (MODIFY)[12] 1. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/eb244ca6453acd484155390d96c716804a2d9fb6 2. mailto:Puthali.H.B@microfocus.com 3. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/eb244ca6453acd484155390d96c716804a2d9fb6#dist/angular-dashboard-framework-tpls.js 4. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/eb244ca6453acd484155390d96c716804a2d9fb6#dist/angular-dashboard-framework-tpls.min.js 5. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/eb244ca6453acd484155390d96c716804a2d9fb6#dist/angular-dashboard-framework-tpls.min.js.map 6. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/eb244ca6453acd484155390d96c716804a2d9fb6#dist/angular-dashboard-framework.js 7. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/eb244ca6453acd484155390d96c716804a2d9fb6#dist/angular-dashboard-framework.min.js 8. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/eb244ca6453acd484155390d96c716804a2d9fb6#dist/angular-dashboard-framework.min.js.map 9. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/eb244ca6453acd484155390d96c716804a2d9fb6#src/scripts/widget-content.js 10. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/eb244ca6453acd484155390d96c716804a2d9fb6#src/scripts/widget.js 11. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/eb244ca6453acd484155390d96c716804a2d9fb6#src/templates/widget-title.html 12. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/eb244ca6453acd484155390d96c716804a2d9fb6#src/templates/widget.html
TITLE Branch *CREATED* by Puthali H.B - Puthali.H.B@microfocus.com Commit eb244ca[1] Contained in branches backlog/B-94160-Loading-Indicator Author BPuttali - Puthali.H.B@microfocus.com[2] Date Tue Mar 15 14:23:40 MDT 2016 LOG MESSAGE [Backlog 94160] Use $emit("widgetNotAllowed") similar to loading instead of using scope variables. MODIFIED PATH(S) * dist/angular-dashboard-framework-tpls.js (MODIFY)[3] * dist/angular-dashboard-framework-tpls.min.js (MODIFY)[4] * dist/angular-dashboard-framework-tpls.min.js.map (MODIFY)[5] * dist/angular-dashboard-framework.js (MODIFY)[6] * dist/angular-dashboard-framework.min.js (MODIFY)[7] * dist/angular-dashboard-framework.min.js.map (MODIFY)[8] * src/scripts/widget-content.js (MODIFY)[9] * src/scripts/widget.js (MODIFY)[10] * src/templates/widget-title.html (MODIFY)[11] * src/templates/widget.html (MODIFY)[12] Commit 92821eb[13] Contained in branches backlog/B-94160-Loading-Indicator Author TStephens - Tony.Stephens@microfocus.com[14] Date Mon Mar 14 08:16:21 MDT 2016 LOG MESSAGE [B-94160] Removing Hard Coded "Sentinel" MODIFIED PATH(S) * src/templates/widget.html (MODIFY)[15] Commit aaa428f[16] Contained in branches backlog/B-94160-Loading-Indicator Author TStephens - Tony.Stephens@microfocus.com[14] Date Mon Mar 14 08:01:08 MDT 2016 LOG MESSAGE [B-94160] Adding in Permissions Denied Screen (based on isAllowed), updating SCSS to decrease icon sizes in edit mode. MODIFIED PATH(S) * dist/angular-dashboard-framework-tpls.js (MODIFY)[17] * dist/angular-dashboard-framework-tpls.min.js (MODIFY)[18] * dist/angular-dashboard-framework-tpls.min.js.map (MODIFY)[19] * dist/angular-dashboard-framework.css (MODIFY)[20] * dist/angular-dashboard-framework.min.css (MODIFY)[21] * src/styles/main.scss (MODIFY)[22] * src/templates/widget.html (MODIFY)[23] Commit 324d011[24] Contained in branches backlog/B-94160-Loading-Indicator Author TStephens - Tony.Stephens@microfocus.com[14] Date Mon Mar 14 06:26:49 MDT 2016 LOG MESSAGE [B-94160] Adding Permission Check to disable configuration. MODIFIED PATH(S) * dist/angular-dashboard-framework-tpls.js (MODIFY)[25] * dist/angular-dashboard-framework-tpls.min.js (MODIFY)[26] * dist/angular-dashboard-framework-tpls.min.js.map (MODIFY)[27] * dist/angular-dashboard-framework.js (MODIFY)[28] * dist/angular-dashboard-framework.min.js (MODIFY)[29] * dist/angular-dashboard-framework.min.js.map (MODIFY)[30] * src/scripts/widget.js (MODIFY)[31] * src/templates/widget-title.html (MODIFY)[32] Commit 6eb1ea0[33] Contained in branches backlog/B-94160-Loading-Indicator Author TStephens - Tony.Stephens@microfocus.com[14] Date Fri Mar 11 13:00:18 MST 2016 LOG MESSAGE [B-94160] Updating tag on branch MODIFIED PATH(S) * bower.json (MODIFY)[34] Commit 9a3d2e4[35] Contained in branches backlog/B-94160-Loading-Indicator Author TStephens - Tony.Stephens@microfocus.com[14] Date Fri Mar 11 11:20:35 MST 2016 LOG MESSAGE [B-92076] Well, you have to title the bower.json dep. correctly for it to work. So I'm fixing that. MODIFIED PATH(S) * bower.json (MODIFY)[36] Commit a0a304b[37] Contained in branches backlog/B-94160-Loading-Indicator Author TStephens - Tony.Stephens@microfocus.com[14] Date Fri Mar 11 11:18:25 MST 2016 LOG MESSAGE [B-92076] Updating bower.json to point to our forked Sortable. MODIFIED PATH(S) * bower.json (MODIFY)[38] Commit 811ee38[39] Contained in branches backlog/B-94160-Loading-Indicator Author TStephens - Tony.Stephens@microfocus.com[14] Date Fri Mar 11 09:02:58 MST 2016 LOG MESSAGE [B-94160] Adding in event listener to display widget error. MODIFIED PATH(S) * dist/angular-dashboard-framework-tpls.js (MODIFY)[40] * dist/angular-dashboard-framework-tpls.min.js (MODIFY)[41] * dist/angular-dashboard-framework-tpls.min.js.map (MODIFY)[42] * dist/angular-dashboard-framework.js (MODIFY)[43] * dist/angular-dashboard-framework.min.js (MODIFY)[44] * dist/angular-dashboard-framework.min.js.map (MODIFY)[45] * src/scripts/widget-content.js (MODIFY)[46] Commit 2a66f1f[47] Contained in branches backlog/B-94160-Loading-Indicator Author TStephens - Tony.Stephens@microfocus.com[14] Date Thu Mar 10 13:47:26 MST 2016 LOG MESSAGE [B-94160] Cleaned up some console logging. MODIFIED PATH(S) * src/scripts/widget-content.js (MODIFY)[48] Commit 85a38d1[49] Contained in branches backlog/B-94160-Loading-Indicator Author TStephens - Tony.Stephens@microfocus.com[14] Date Thu Mar 10 13:36:07 MST 2016 LOG MESSAGE [B-94160] Re-implmented 508 fixes and Loading Indicator. MODIFIED PATH(S) * .editorconfig (MODIFY)[50] * bower.json (MODIFY)[51] * dist/angular-dashboard-framework-tpls.js (COPY)[52] * dist/angular-dashboard-framework-tpls.min.js (ADD)[53] * dist/angular-dashboard-framework-tpls.min.js.map (ADD)[54] * dist/angular-dashboard-framework.js (MODIFY)[55] * dist/angular-dashboard-framework.min.css (MODIFY)[56] * dist/angular-dashboard-framework.min.js (MODIFY)[57] * dist/angular-dashboard-framework.min.js.map (MODIFY)[58] * src/scripts/widget-content.js (MODIFY)[59] * ... 5 more changes[49] Skipped 90 commits from other branches 1. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/eb244ca6453acd484155390d96c716804a2d9fb6 2. mailto:Puthali.H.B@microfocus.com 3. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/eb244ca6453acd484155390d96c716804a2d9fb6#dist/angular-dashboard-framework-tpls.js 4. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/eb244ca6453acd484155390d96c716804a2d9fb6#dist/angular-dashboard-framework-tpls.min.js 5. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/eb244ca6453acd484155390d96c716804a2d9fb6#dist/angular-dashboard-framework-tpls.min.js.map 6. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/eb244ca6453acd484155390d96c716804a2d9fb6#dist/angular-dashboard-framework.js 7. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/eb244ca6453acd484155390d96c716804a2d9fb6#dist/angular-dashboard-framework.min.js 8. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/eb244ca6453acd484155390d96c716804a2d9fb6#dist/angular-dashboard-framework.min.js.map 9. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/eb244ca6453acd484155390d96c716804a2d9fb6#src/scripts/widget-content.js 10. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/eb244ca6453acd484155390d96c716804a2d9fb6#src/scripts/widget.js 11. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/eb244ca6453acd484155390d96c716804a2d9fb6#src/templates/widget-title.html 12. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/eb244ca6453acd484155390d96c716804a2d9fb6#src/templates/widget.html 13. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/92821eba79e375ae620465ac78113b7ea60f73d8 14. mailto:Tony.Stephens@microfocus.com 15. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/92821eba79e375ae620465ac78113b7ea60f73d8#src/templates/widget.html 16. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/aaa428f4197ba67a46540098b62dd322d2abc1df 17. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/aaa428f4197ba67a46540098b62dd322d2abc1df#dist/angular-dashboard-framework-tpls.js 18. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/aaa428f4197ba67a46540098b62dd322d2abc1df#dist/angular-dashboard-framework-tpls.min.js 19. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/aaa428f4197ba67a46540098b62dd322d2abc1df#dist/angular-dashboard-framework-tpls.min.js.map 20. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/aaa428f4197ba67a46540098b62dd322d2abc1df#dist/angular-dashboard-framework.css 21. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/aaa428f4197ba67a46540098b62dd322d2abc1df#dist/angular-dashboard-framework.min.css 22. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/aaa428f4197ba67a46540098b62dd322d2abc1df#src/styles/main.scss 23. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/aaa428f4197ba67a46540098b62dd322d2abc1df#src/templates/widget.html 24. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/324d011817bb580f08c22d3071514e41d837c0f9 25. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/324d011817bb580f08c22d3071514e41d837c0f9#dist/angular-dashboard-framework-tpls.js 26. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/324d011817bb580f08c22d3071514e41d837c0f9#dist/angular-dashboard-framework-tpls.min.js 27. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/324d011817bb580f08c22d3071514e41d837c0f9#dist/angular-dashboard-framework-tpls.min.js.map 28. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/324d011817bb580f08c22d3071514e41d837c0f9#dist/angular-dashboard-framework.js 29. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/324d011817bb580f08c22d3071514e41d837c0f9#dist/angular-dashboard-framework.min.js 30. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/324d011817bb580f08c22d3071514e41d837c0f9#dist/angular-dashboard-framework.min.js.map 31. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/324d011817bb580f08c22d3071514e41d837c0f9#src/scripts/widget.js 32. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/324d011817bb580f08c22d3071514e41d837c0f9#src/templates/widget-title.html 33. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/6eb1ea0aeb4f55c9648b4510cb2e46b9e28869b4 34. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/6eb1ea0aeb4f55c9648b4510cb2e46b9e28869b4#bower.json 35. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/9a3d2e40d044133de5f50932b269a365a0f321fc 36. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/9a3d2e40d044133de5f50932b269a365a0f321fc#bower.json 37. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/a0a304b784c1be126ff51a8e83589806e3d0ca98 38. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/a0a304b784c1be126ff51a8e83589806e3d0ca98#bower.json 39. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/811ee3828872ad8e5067c24d3d5fa9a686c024d4 40. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/811ee3828872ad8e5067c24d3d5fa9a686c024d4#dist/angular-dashboard-framework-tpls.js 41. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/811ee3828872ad8e5067c24d3d5fa9a686c024d4#dist/angular-dashboard-framework-tpls.min.js 42. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/811ee3828872ad8e5067c24d3d5fa9a686c024d4#dist/angular-dashboard-framework-tpls.min.js.map 43. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/811ee3828872ad8e5067c24d3d5fa9a686c024d4#dist/angular-dashboard-framework.js 44. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/811ee3828872ad8e5067c24d3d5fa9a686c024d4#dist/angular-dashboard-framework.min.js 45. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/811ee3828872ad8e5067c24d3d5fa9a686c024d4#dist/angular-dashboard-framework.min.js.map 46. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/811ee3828872ad8e5067c24d3d5fa9a686c024d4#src/scripts/widget-content.js 47. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/2a66f1f02b46ccd4895de795ea5328fda12a41b6 48. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/2a66f1f02b46ccd4895de795ea5328fda12a41b6#src/scripts/widget-content.js 49. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/85a38d1fa13ad7d253cd3730d76478a9eb548daf 50. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/85a38d1fa13ad7d253cd3730d76478a9eb548daf#.editorconfig 51. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/85a38d1fa13ad7d253cd3730d76478a9eb548daf#bower.json 52. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/85a38d1fa13ad7d253cd3730d76478a9eb548daf#dist/angular-dashboard-framework-tpls.js 53. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/85a38d1fa13ad7d253cd3730d76478a9eb548daf#dist/angular-dashboard-framework-tpls.min.js 54. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/85a38d1fa13ad7d253cd3730d76478a9eb548daf#dist/angular-dashboard-framework-tpls.min.js.map 55. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/85a38d1fa13ad7d253cd3730d76478a9eb548daf#dist/angular-dashboard-framework.js 56. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/85a38d1fa13ad7d253cd3730d76478a9eb548daf#dist/angular-dashboard-framework.min.css 57. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/85a38d1fa13ad7d253cd3730d76478a9eb548daf#dist/angular-dashboard-framework.min.js 58. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/85a38d1fa13ad7d253cd3730d76478a9eb548daf#dist/angular-dashboard-framework.min.js.map 59. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/85a38d1fa13ad7d253cd3730d76478a9eb548daf#src/scripts/widget-content.js
TITLE *PUSH* by Puthali H.B - Puthali.H.B@microfocus.com Commit d84a3da[1] Contained in branches backlog/B-94160-Loading-Indicator Author BPuttali - Puthali.H.B@microfocus.com[2] Date Tue Mar 15 19:31:21 MDT 2016 LOG MESSAGE [Backlog 94160] - Instead of using hard coded selectors or id use the children() to hide/show the elements. MODIFIED PATH(S) * dist/angular-dashboard-framework-tpls.js (MODIFY)[3] * dist/angular-dashboard-framework-tpls.min.js (MODIFY)[4] * dist/angular-dashboard-framework-tpls.min.js.map (MODIFY)[5] * dist/angular-dashboard-framework.js (MODIFY)[6] * dist/angular-dashboard-framework.min.js (MODIFY)[7] * dist/angular-dashboard-framework.min.js.map (MODIFY)[8] * src/scripts/widget-content.js (MODIFY)[9] 1. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/d84a3daddae56009d24d957cb96cd61ed5240879 2. mailto:Puthali.H.B@microfocus.com 3. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/d84a3daddae56009d24d957cb96cd61ed5240879#dist/angular-dashboard-framework-tpls.js 4. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/d84a3daddae56009d24d957cb96cd61ed5240879#dist/angular-dashboard-framework-tpls.min.js 5. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/d84a3daddae56009d24d957cb96cd61ed5240879#dist/angular-dashboard-framework-tpls.min.js.map 6. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/d84a3daddae56009d24d957cb96cd61ed5240879#dist/angular-dashboard-framework.js 7. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/d84a3daddae56009d24d957cb96cd61ed5240879#dist/angular-dashboard-framework.min.js 8. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/d84a3daddae56009d24d957cb96cd61ed5240879#dist/angular-dashboard-framework.min.js.map 9. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/d84a3daddae56009d24d957cb96cd61ed5240879#src/scripts/widget-content.js
TITLE Branch *CREATED* by Puthali H.B - Puthali.H.B@microfocus.com Commit d84a3da[1] Contained in branches backlog/B-94160-Loading-Indicator Author BPuttali - Puthali.H.B@microfocus.com[2] Date Tue Mar 15 19:31:21 MDT 2016 LOG MESSAGE [Backlog 94160] - Instead of using hard coded selectors or id use the children() to hide/show the elements. MODIFIED PATH(S) * dist/angular-dashboard-framework-tpls.js (MODIFY)[3] * dist/angular-dashboard-framework-tpls.min.js (MODIFY)[4] * dist/angular-dashboard-framework-tpls.min.js.map (MODIFY)[5] * dist/angular-dashboard-framework.js (MODIFY)[6] * dist/angular-dashboard-framework.min.js (MODIFY)[7] * dist/angular-dashboard-framework.min.js.map (MODIFY)[8] * src/scripts/widget-content.js (MODIFY)[9] Commit eb244ca[10] Contained in branches backlog/B-94160-Loading-Indicator Author BPuttali - Puthali.H.B@microfocus.com[2] Date Tue Mar 15 14:23:40 MDT 2016 LOG MESSAGE [Backlog 94160] Use $emit("widgetNotAllowed") similar to loading instead of using scope variables. MODIFIED PATH(S) * dist/angular-dashboard-framework-tpls.js (MODIFY)[11] * dist/angular-dashboard-framework-tpls.min.js (MODIFY)[12] * dist/angular-dashboard-framework-tpls.min.js.map (MODIFY)[13] * dist/angular-dashboard-framework.js (MODIFY)[14] * dist/angular-dashboard-framework.min.js (MODIFY)[15] * dist/angular-dashboard-framework.min.js.map (MODIFY)[16] * src/scripts/widget-content.js (MODIFY)[17] * src/scripts/widget.js (MODIFY)[18] * src/templates/widget-title.html (MODIFY)[19] * src/templates/widget.html (MODIFY)[20] Commit 92821eb[21] Contained in branches backlog/B-94160-Loading-Indicator Author TStephens - Tony.Stephens@microfocus.com[22] Date Mon Mar 14 08:16:21 MDT 2016 LOG MESSAGE [B-94160] Removing Hard Coded "Sentinel" MODIFIED PATH(S) * src/templates/widget.html (MODIFY)[23] Commit aaa428f[24] Contained in branches backlog/B-94160-Loading-Indicator Author TStephens - Tony.Stephens@microfocus.com[22] Date Mon Mar 14 08:01:08 MDT 2016 LOG MESSAGE [B-94160] Adding in Permissions Denied Screen (based on isAllowed), updating SCSS to decrease icon sizes in edit mode. MODIFIED PATH(S) * dist/angular-dashboard-framework-tpls.js (MODIFY)[25] * dist/angular-dashboard-framework-tpls.min.js (MODIFY)[26] * dist/angular-dashboard-framework-tpls.min.js.map (MODIFY)[27] * dist/angular-dashboard-framework.css (MODIFY)[28] * dist/angular-dashboard-framework.min.css (MODIFY)[29] * src/styles/main.scss (MODIFY)[30] * src/templates/widget.html (MODIFY)[31] Commit 324d011[32] Contained in branches backlog/B-94160-Loading-Indicator Author TStephens - Tony.Stephens@microfocus.com[22] Date Mon Mar 14 06:26:49 MDT 2016 LOG MESSAGE [B-94160] Adding Permission Check to disable configuration. MODIFIED PATH(S) * dist/angular-dashboard-framework-tpls.js (MODIFY)[33] * dist/angular-dashboard-framework-tpls.min.js (MODIFY)[34] * dist/angular-dashboard-framework-tpls.min.js.map (MODIFY)[35] * dist/angular-dashboard-framework.js (MODIFY)[36] * dist/angular-dashboard-framework.min.js (MODIFY)[37] * dist/angular-dashboard-framework.min.js.map (MODIFY)[38] * src/scripts/widget.js (MODIFY)[39] * src/templates/widget-title.html (MODIFY)[40] Commit 6eb1ea0[41] Contained in branches backlog/B-94160-Loading-Indicator Author TStephens - Tony.Stephens@microfocus.com[22] Date Fri Mar 11 13:00:18 MST 2016 LOG MESSAGE [B-94160] Updating tag on branch MODIFIED PATH(S) * bower.json (MODIFY)[42] Commit 9a3d2e4[43] Contained in branches backlog/B-94160-Loading-Indicator Author TStephens - Tony.Stephens@microfocus.com[22] Date Fri Mar 11 11:20:35 MST 2016 LOG MESSAGE [B-92076] Well, you have to title the bower.json dep. correctly for it to work. So I'm fixing that. MODIFIED PATH(S) * bower.json (MODIFY)[44] Commit a0a304b[45] Contained in branches backlog/B-94160-Loading-Indicator Author TStephens - Tony.Stephens@microfocus.com[22] Date Fri Mar 11 11:18:25 MST 2016 LOG MESSAGE [B-92076] Updating bower.json to point to our forked Sortable. MODIFIED PATH(S) * bower.json (MODIFY)[46] Commit 811ee38[47] Contained in branches backlog/B-94160-Loading-Indicator Author TStephens - Tony.Stephens@microfocus.com[22] Date Fri Mar 11 09:02:58 MST 2016 LOG MESSAGE [B-94160] Adding in event listener to display widget error. MODIFIED PATH(S) * dist/angular-dashboard-framework-tpls.js (MODIFY)[48] * dist/angular-dashboard-framework-tpls.min.js (MODIFY)[49] * dist/angular-dashboard-framework-tpls.min.js.map (MODIFY)[50] * dist/angular-dashboard-framework.js (MODIFY)[51] * dist/angular-dashboard-framework.min.js (MODIFY)[52] * dist/angular-dashboard-framework.min.js.map (MODIFY)[53] * src/scripts/widget-content.js (MODIFY)[54] Commit 2a66f1f[55] Contained in branches backlog/B-94160-Loading-Indicator Author TStephens - Tony.Stephens@microfocus.com[22] Date Thu Mar 10 13:47:26 MST 2016 LOG MESSAGE [B-94160] Cleaned up some console logging. MODIFIED PATH(S) * src/scripts/widget-content.js (MODIFY)[56] Commit 85a38d1[57] Contained in branches backlog/B-94160-Loading-Indicator Author TStephens - Tony.Stephens@microfocus.com[22] Date Thu Mar 10 13:36:07 MST 2016 LOG MESSAGE [B-94160] Re-implmented 508 fixes and Loading Indicator. MODIFIED PATH(S) * .editorconfig (MODIFY)[58] * bower.json (MODIFY)[59] * dist/angular-dashboard-framework-tpls.js (COPY)[60] * dist/angular-dashboard-framework-tpls.min.js (ADD)[61] * dist/angular-dashboard-framework-tpls.min.js.map (ADD)[62] * dist/angular-dashboard-framework.js (MODIFY)[63] * dist/angular-dashboard-framework.min.css (MODIFY)[64] * dist/angular-dashboard-framework.min.js (MODIFY)[65] * dist/angular-dashboard-framework.min.js.map (MODIFY)[66] * src/scripts/widget-content.js (MODIFY)[67] * ... 5 more changes[57] Skipped 89 commits from other branches 1. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/d84a3daddae56009d24d957cb96cd61ed5240879 2. mailto:Puthali.H.B@microfocus.com 3. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/d84a3daddae56009d24d957cb96cd61ed5240879#dist/angular-dashboard-framework-tpls.js 4. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/d84a3daddae56009d24d957cb96cd61ed5240879#dist/angular-dashboard-framework-tpls.min.js 5. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/d84a3daddae56009d24d957cb96cd61ed5240879#dist/angular-dashboard-framework-tpls.min.js.map 6. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/d84a3daddae56009d24d957cb96cd61ed5240879#dist/angular-dashboard-framework.js 7. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/d84a3daddae56009d24d957cb96cd61ed5240879#dist/angular-dashboard-framework.min.js 8. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/d84a3daddae56009d24d957cb96cd61ed5240879#dist/angular-dashboard-framework.min.js.map 9. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/d84a3daddae56009d24d957cb96cd61ed5240879#src/scripts/widget-content.js 10. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/eb244ca6453acd484155390d96c716804a2d9fb6 11. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/eb244ca6453acd484155390d96c716804a2d9fb6#dist/angular-dashboard-framework-tpls.js 12. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/eb244ca6453acd484155390d96c716804a2d9fb6#dist/angular-dashboard-framework-tpls.min.js 13. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/eb244ca6453acd484155390d96c716804a2d9fb6#dist/angular-dashboard-framework-tpls.min.js.map 14. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/eb244ca6453acd484155390d96c716804a2d9fb6#dist/angular-dashboard-framework.js 15. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/eb244ca6453acd484155390d96c716804a2d9fb6#dist/angular-dashboard-framework.min.js 16. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/eb244ca6453acd484155390d96c716804a2d9fb6#dist/angular-dashboard-framework.min.js.map 17. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/eb244ca6453acd484155390d96c716804a2d9fb6#src/scripts/widget-content.js 18. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/eb244ca6453acd484155390d96c716804a2d9fb6#src/scripts/widget.js 19. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/eb244ca6453acd484155390d96c716804a2d9fb6#src/templates/widget-title.html 20. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/eb244ca6453acd484155390d96c716804a2d9fb6#src/templates/widget.html 21. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/92821eba79e375ae620465ac78113b7ea60f73d8 22. mailto:Tony.Stephens@microfocus.com 23. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/92821eba79e375ae620465ac78113b7ea60f73d8#src/templates/widget.html 24. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/aaa428f4197ba67a46540098b62dd322d2abc1df 25. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/aaa428f4197ba67a46540098b62dd322d2abc1df#dist/angular-dashboard-framework-tpls.js 26. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/aaa428f4197ba67a46540098b62dd322d2abc1df#dist/angular-dashboard-framework-tpls.min.js 27. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/aaa428f4197ba67a46540098b62dd322d2abc1df#dist/angular-dashboard-framework-tpls.min.js.map 28. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/aaa428f4197ba67a46540098b62dd322d2abc1df#dist/angular-dashboard-framework.css 29. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/aaa428f4197ba67a46540098b62dd322d2abc1df#dist/angular-dashboard-framework.min.css 30. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/aaa428f4197ba67a46540098b62dd322d2abc1df#src/styles/main.scss 31. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/aaa428f4197ba67a46540098b62dd322d2abc1df#src/templates/widget.html 32. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/324d011817bb580f08c22d3071514e41d837c0f9 33. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/324d011817bb580f08c22d3071514e41d837c0f9#dist/angular-dashboard-framework-tpls.js 34. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/324d011817bb580f08c22d3071514e41d837c0f9#dist/angular-dashboard-framework-tpls.min.js 35. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/324d011817bb580f08c22d3071514e41d837c0f9#dist/angular-dashboard-framework-tpls.min.js.map 36. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/324d011817bb580f08c22d3071514e41d837c0f9#dist/angular-dashboard-framework.js 37. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/324d011817bb580f08c22d3071514e41d837c0f9#dist/angular-dashboard-framework.min.js 38. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/324d011817bb580f08c22d3071514e41d837c0f9#dist/angular-dashboard-framework.min.js.map 39. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/324d011817bb580f08c22d3071514e41d837c0f9#src/scripts/widget.js 40. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/324d011817bb580f08c22d3071514e41d837c0f9#src/templates/widget-title.html 41. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/6eb1ea0aeb4f55c9648b4510cb2e46b9e28869b4 42. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/6eb1ea0aeb4f55c9648b4510cb2e46b9e28869b4#bower.json 43. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/9a3d2e40d044133de5f50932b269a365a0f321fc 44. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/9a3d2e40d044133de5f50932b269a365a0f321fc#bower.json 45. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/a0a304b784c1be126ff51a8e83589806e3d0ca98 46. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/a0a304b784c1be126ff51a8e83589806e3d0ca98#bower.json 47. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/811ee3828872ad8e5067c24d3d5fa9a686c024d4 48. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/811ee3828872ad8e5067c24d3d5fa9a686c024d4#dist/angular-dashboard-framework-tpls.js 49. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/811ee3828872ad8e5067c24d3d5fa9a686c024d4#dist/angular-dashboard-framework-tpls.min.js 50. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/811ee3828872ad8e5067c24d3d5fa9a686c024d4#dist/angular-dashboard-framework-tpls.min.js.map 51. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/811ee3828872ad8e5067c24d3d5fa9a686c024d4#dist/angular-dashboard-framework.js 52. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/811ee3828872ad8e5067c24d3d5fa9a686c024d4#dist/angular-dashboard-framework.min.js 53. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/811ee3828872ad8e5067c24d3d5fa9a686c024d4#dist/angular-dashboard-framework.min.js.map 54. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/811ee3828872ad8e5067c24d3d5fa9a686c024d4#src/scripts/widget-content.js 55. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/2a66f1f02b46ccd4895de795ea5328fda12a41b6 56. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/2a66f1f02b46ccd4895de795ea5328fda12a41b6#src/scripts/widget-content.js 57. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/85a38d1fa13ad7d253cd3730d76478a9eb548daf 58. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/85a38d1fa13ad7d253cd3730d76478a9eb548daf#.editorconfig 59. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/85a38d1fa13ad7d253cd3730d76478a9eb548daf#bower.json 60. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/85a38d1fa13ad7d253cd3730d76478a9eb548daf#dist/angular-dashboard-framework-tpls.js 61. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/85a38d1fa13ad7d253cd3730d76478a9eb548daf#dist/angular-dashboard-framework-tpls.min.js 62. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/85a38d1fa13ad7d253cd3730d76478a9eb548daf#dist/angular-dashboard-framework-tpls.min.js.map 63. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/85a38d1fa13ad7d253cd3730d76478a9eb548daf#dist/angular-dashboard-framework.js 64. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/85a38d1fa13ad7d253cd3730d76478a9eb548daf#dist/angular-dashboard-framework.min.css 65. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/85a38d1fa13ad7d253cd3730d76478a9eb548daf#dist/angular-dashboard-framework.min.js 66. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/85a38d1fa13ad7d253cd3730d76478a9eb548daf#dist/angular-dashboard-framework.min.js.map 67. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/85a38d1fa13ad7d253cd3730d76478a9eb548daf#src/scripts/widget-content.js
TITLE *PUSH* by Peng Liu - Peng.Liu@microfocus.com Commit 5bdc5c6[1] - parents: 1c1a1b3c30a[2]+ a91576ac1d7[3] Contained in branches * master Author PLiu - Peng.Liu@microfocus.com[4] Date Wed Mar 16 15:48:18 MDT 2016 LOG MESSAGE Merge pull request #1 in SEN/adf-dashboard-framework from backlog/B-94160-Loading-Indicator to master * commit 'a91576ac1d713cfe36504ff624ffa67d3a15d25e': [B-94160] Cleaning up code comments, prep for pull request to master ADF library. [Backlog 94160] - Instead of using hard coded selectors or id use the children() to hide/show the elements. [Backlog 94160] Use $emit("widgetNotAllowed") similar to loading instead of using scope variables. [B-94160] Removing Hard Coded "Sentinel" [B-94160] Adding in Permissions Denied Screen (based on isAllowed), updating SCSS to decrease icon sizes in edit mode. [B-94160] Adding Permission Check to disable configuration. [B-94160] Updating tag on branch [B-92076] Well, you have to title the bower.json dep. correctly for it to work. So I'm fixing that. [B-92076] Updating bower.json to point to our forked Sortable. [B-94160] Adding in event listener to display widget error. [B-94160] Cleaned up some console logging. [B-94160] Re-implmented 508 fixes and Loading Indicator. MODIFIED PATH(S) * .editorconfig (MODIFY)[5] * bower.json (MODIFY)[6] * dist/angular-dashboard-framework-tpls.js (COPY)[7] * dist/angular-dashboard-framework-tpls.min.js (ADD)[8] * dist/angular-dashboard-framework-tpls.min.js.map (ADD)[9] * dist/angular-dashboard-framework.css (MODIFY)[10] * dist/angular-dashboard-framework.js (MODIFY)[11] * dist/angular-dashboard-framework.min.css (MODIFY)[12] * dist/angular-dashboard-framework.min.js (MODIFY)[13] * dist/angular-dashboard-framework.min.js.map (MODIFY)[14] * ... 9 more changes[1] Commit a91576a[3] Contained in branches * master Author TStephens - Tony.Stephens@microfocus.com[15] Date Wed Mar 16 06:49:05 MDT 2016 LOG MESSAGE [B-94160] Cleaning up code comments, prep for pull request to master ADF library. MODIFIED PATH(S) * dist/angular-dashboard-framework-tpls.js (MODIFY)[16] * dist/angular-dashboard-framework-tpls.min.js (MODIFY)[17] * dist/angular-dashboard-framework-tpls.min.js.map (MODIFY)[18] * dist/angular-dashboard-framework.js (MODIFY)[19] * dist/angular-dashboard-framework.min.js (MODIFY)[20] * dist/angular-dashboard-framework.min.js.map (MODIFY)[21] * src/scripts/widget-content.js (MODIFY)[22] * src/scripts/widget.js (MODIFY)[23] Commit d84a3da[24] Contained in branches * master Author BPuttali - Puthali.H.B@microfocus.com[25] Date Tue Mar 15 19:31:21 MDT 2016 LOG MESSAGE [Backlog 94160] - Instead of using hard coded selectors or id use the children() to hide/show the elements. MODIFIED PATH(S) * dist/angular-dashboard-framework-tpls.js (MODIFY)[26] * dist/angular-dashboard-framework-tpls.min.js (MODIFY)[27] * dist/angular-dashboard-framework-tpls.min.js.map (MODIFY)[28] * dist/angular-dashboard-framework.js (MODIFY)[29] * dist/angular-dashboard-framework.min.js (MODIFY)[30] * dist/angular-dashboard-framework.min.js.map (MODIFY)[31] * src/scripts/widget-content.js (MODIFY)[32] Commit eb244ca[33] Contained in branches * master Author BPuttali - Puthali.H.B@microfocus.com[25] Date Tue Mar 15 14:23:40 MDT 2016 LOG MESSAGE [Backlog 94160] Use $emit("widgetNotAllowed") similar to loading instead of using scope variables. MODIFIED PATH(S) * dist/angular-dashboard-framework-tpls.js (MODIFY)[34] * dist/angular-dashboard-framework-tpls.min.js (MODIFY)[35] * dist/angular-dashboard-framework-tpls.min.js.map (MODIFY)[36] * dist/angular-dashboard-framework.js (MODIFY)[37] * dist/angular-dashboard-framework.min.js (MODIFY)[38] * dist/angular-dashboard-framework.min.js.map (MODIFY)[39] * src/scripts/widget-content.js (MODIFY)[40] * src/scripts/widget.js (MODIFY)[41] * src/templates/widget-title.html (MODIFY)[42] * src/templates/widget.html (MODIFY)[43] Commit 92821eb[44] Contained in branches * master Author TStephens - Tony.Stephens@microfocus.com[15] Date Mon Mar 14 08:16:21 MDT 2016 LOG MESSAGE [B-94160] Removing Hard Coded "Sentinel" MODIFIED PATH(S) * src/templates/widget.html (MODIFY)[45] Commit aaa428f[46] Contained in branches * master Author TStephens - Tony.Stephens@microfocus.com[15] Date Mon Mar 14 08:01:08 MDT 2016 LOG MESSAGE [B-94160] Adding in Permissions Denied Screen (based on isAllowed), updating SCSS to decrease icon sizes in edit mode. MODIFIED PATH(S) * dist/angular-dashboard-framework-tpls.js (MODIFY)[47] * dist/angular-dashboard-framework-tpls.min.js (MODIFY)[48] * dist/angular-dashboard-framework-tpls.min.js.map (MODIFY)[49] * dist/angular-dashboard-framework.css (MODIFY)[50] * dist/angular-dashboard-framework.min.css (MODIFY)[51] * src/styles/main.scss (MODIFY)[52] * src/templates/widget.html (MODIFY)[53] Commit 324d011[54] Contained in branches * master Author TStephens - Tony.Stephens@microfocus.com[15] Date Mon Mar 14 06:26:49 MDT 2016 LOG MESSAGE [B-94160] Adding Permission Check to disable configuration. MODIFIED PATH(S) * dist/angular-dashboard-framework-tpls.js (MODIFY)[55] * dist/angular-dashboard-framework-tpls.min.js (MODIFY)[56] * dist/angular-dashboard-framework-tpls.min.js.map (MODIFY)[57] * dist/angular-dashboard-framework.js (MODIFY)[58] * dist/angular-dashboard-framework.min.js (MODIFY)[59] * dist/angular-dashboard-framework.min.js.map (MODIFY)[60] * src/scripts/widget.js (MODIFY)[61] * src/templates/widget-title.html (MODIFY)[62] Commit 6eb1ea0[63] Contained in branches * master Author TStephens - Tony.Stephens@microfocus.com[15] Date Fri Mar 11 13:00:18 MST 2016 LOG MESSAGE [B-94160] Updating tag on branch MODIFIED PATH(S) * bower.json (MODIFY)[64] Commit 9a3d2e4[65] Contained in branches * master Author TStephens - Tony.Stephens@microfocus.com[15] Date Fri Mar 11 11:20:35 MST 2016 LOG MESSAGE [B-92076] Well, you have to title the bower.json dep. correctly for it to work. So I'm fixing that. MODIFIED PATH(S) * bower.json (MODIFY)[66] Commit a0a304b[67] Contained in branches * master Author TStephens - Tony.Stephens@microfocus.com[15] Date Fri Mar 11 11:18:25 MST 2016 LOG MESSAGE [B-92076] Updating bower.json to point to our forked Sortable. MODIFIED PATH(S) * bower.json (MODIFY)[68] Commit 811ee38[69] Contained in branches * master Author TStephens - Tony.Stephens@microfocus.com[15] Date Fri Mar 11 09:02:58 MST 2016 LOG MESSAGE [B-94160] Adding in event listener to display widget error. MODIFIED PATH(S) * dist/angular-dashboard-framework-tpls.js (MODIFY)[70] * dist/angular-dashboard-framework-tpls.min.js (MODIFY)[71] * dist/angular-dashboard-framework-tpls.min.js.map (MODIFY)[72] * dist/angular-dashboard-framework.js (MODIFY)[73] * dist/angular-dashboard-framework.min.js (MODIFY)[74] * dist/angular-dashboard-framework.min.js.map (MODIFY)[75] * src/scripts/widget-content.js (MODIFY)[76] Commit 2a66f1f[77] Contained in branches * master Author TStephens - Tony.Stephens@microfocus.com[15] Date Thu Mar 10 13:47:26 MST 2016 LOG MESSAGE [B-94160] Cleaned up some console logging. MODIFIED PATH(S) * src/scripts/widget-content.js (MODIFY)[78] Commit 85a38d1[79] Contained in branches * master Author TStephens - Tony.Stephens@microfocus.com[15] Date Thu Mar 10 13:36:07 MST 2016 LOG MESSAGE [B-94160] Re-implmented 508 fixes and Loading Indicator. MODIFIED PATH(S) * .editorconfig (MODIFY)[80] * bower.json (MODIFY)[81] * dist/angular-dashboard-framework-tpls.js (COPY)[82] * dist/angular-dashboard-framework-tpls.min.js (ADD)[83] * dist/angular-dashboard-framework-tpls.min.js.map (ADD)[84] * dist/angular-dashboard-framework.js (MODIFY)[85] * dist/angular-dashboard-framework.min.css (MODIFY)[86] * dist/angular-dashboard-framework.min.js (MODIFY)[87] * dist/angular-dashboard-framework.min.js.map (MODIFY)[88] * src/scripts/widget-content.js (MODIFY)[89] * ... 5 more changes[79] 1. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/5bdc5c605a9c94e97223c751a5296353588536eb 2. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/1c1a1b3c30ab2e70a5aed26d686794204ceeaa58 3. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/a91576ac1d713cfe36504ff624ffa67d3a15d25e 4. mailto:Peng.Liu@microfocus.com 5. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/5bdc5c605a9c94e97223c751a5296353588536eb#.editorconfig 6. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/5bdc5c605a9c94e97223c751a5296353588536eb#bower.json 7. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/5bdc5c605a9c94e97223c751a5296353588536eb#dist/angular-dashboard-framework-tpls.js 8. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/5bdc5c605a9c94e97223c751a5296353588536eb#dist/angular-dashboard-framework-tpls.min.js 9. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/5bdc5c605a9c94e97223c751a5296353588536eb#dist/angular-dashboard-framework-tpls.min.js.map 10. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/5bdc5c605a9c94e97223c751a5296353588536eb#dist/angular-dashboard-framework.css 11. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/5bdc5c605a9c94e97223c751a5296353588536eb#dist/angular-dashboard-framework.js 12. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/5bdc5c605a9c94e97223c751a5296353588536eb#dist/angular-dashboard-framework.min.css 13. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/5bdc5c605a9c94e97223c751a5296353588536eb#dist/angular-dashboard-framework.min.js 14. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/5bdc5c605a9c94e97223c751a5296353588536eb#dist/angular-dashboard-framework.min.js.map 15. mailto:Tony.Stephens@microfocus.com 16. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/a91576ac1d713cfe36504ff624ffa67d3a15d25e#dist/angular-dashboard-framework-tpls.js 17. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/a91576ac1d713cfe36504ff624ffa67d3a15d25e#dist/angular-dashboard-framework-tpls.min.js 18. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/a91576ac1d713cfe36504ff624ffa67d3a15d25e#dist/angular-dashboard-framework-tpls.min.js.map 19. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/a91576ac1d713cfe36504ff624ffa67d3a15d25e#dist/angular-dashboard-framework.js 20. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/a91576ac1d713cfe36504ff624ffa67d3a15d25e#dist/angular-dashboard-framework.min.js 21. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/a91576ac1d713cfe36504ff624ffa67d3a15d25e#dist/angular-dashboard-framework.min.js.map 22. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/a91576ac1d713cfe36504ff624ffa67d3a15d25e#src/scripts/widget-content.js 23. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/a91576ac1d713cfe36504ff624ffa67d3a15d25e#src/scripts/widget.js 24. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/d84a3daddae56009d24d957cb96cd61ed5240879 25. mailto:Puthali.H.B@microfocus.com 26. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/d84a3daddae56009d24d957cb96cd61ed5240879#dist/angular-dashboard-framework-tpls.js 27. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/d84a3daddae56009d24d957cb96cd61ed5240879#dist/angular-dashboard-framework-tpls.min.js 28. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/d84a3daddae56009d24d957cb96cd61ed5240879#dist/angular-dashboard-framework-tpls.min.js.map 29. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/d84a3daddae56009d24d957cb96cd61ed5240879#dist/angular-dashboard-framework.js 30. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/d84a3daddae56009d24d957cb96cd61ed5240879#dist/angular-dashboard-framework.min.js 31. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/d84a3daddae56009d24d957cb96cd61ed5240879#dist/angular-dashboard-framework.min.js.map 32. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/d84a3daddae56009d24d957cb96cd61ed5240879#src/scripts/widget-content.js 33. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/eb244ca6453acd484155390d96c716804a2d9fb6 34. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/eb244ca6453acd484155390d96c716804a2d9fb6#dist/angular-dashboard-framework-tpls.js 35. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/eb244ca6453acd484155390d96c716804a2d9fb6#dist/angular-dashboard-framework-tpls.min.js 36. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/eb244ca6453acd484155390d96c716804a2d9fb6#dist/angular-dashboard-framework-tpls.min.js.map 37. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/eb244ca6453acd484155390d96c716804a2d9fb6#dist/angular-dashboard-framework.js 38. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/eb244ca6453acd484155390d96c716804a2d9fb6#dist/angular-dashboard-framework.min.js 39. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/eb244ca6453acd484155390d96c716804a2d9fb6#dist/angular-dashboard-framework.min.js.map 40. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/eb244ca6453acd484155390d96c716804a2d9fb6#src/scripts/widget-content.js 41. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/eb244ca6453acd484155390d96c716804a2d9fb6#src/scripts/widget.js 42. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/eb244ca6453acd484155390d96c716804a2d9fb6#src/templates/widget-title.html 43. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/eb244ca6453acd484155390d96c716804a2d9fb6#src/templates/widget.html 44. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/92821eba79e375ae620465ac78113b7ea60f73d8 45. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/92821eba79e375ae620465ac78113b7ea60f73d8#src/templates/widget.html 46. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/aaa428f4197ba67a46540098b62dd322d2abc1df 47. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/aaa428f4197ba67a46540098b62dd322d2abc1df#dist/angular-dashboard-framework-tpls.js 48. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/aaa428f4197ba67a46540098b62dd322d2abc1df#dist/angular-dashboard-framework-tpls.min.js 49. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/aaa428f4197ba67a46540098b62dd322d2abc1df#dist/angular-dashboard-framework-tpls.min.js.map 50. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/aaa428f4197ba67a46540098b62dd322d2abc1df#dist/angular-dashboard-framework.css 51. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/aaa428f4197ba67a46540098b62dd322d2abc1df#dist/angular-dashboard-framework.min.css 52. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/aaa428f4197ba67a46540098b62dd322d2abc1df#src/styles/main.scss 53. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/aaa428f4197ba67a46540098b62dd322d2abc1df#src/templates/widget.html 54. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/324d011817bb580f08c22d3071514e41d837c0f9 55. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/324d011817bb580f08c22d3071514e41d837c0f9#dist/angular-dashboard-framework-tpls.js 56. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/324d011817bb580f08c22d3071514e41d837c0f9#dist/angular-dashboard-framework-tpls.min.js 57. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/324d011817bb580f08c22d3071514e41d837c0f9#dist/angular-dashboard-framework-tpls.min.js.map 58. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/324d011817bb580f08c22d3071514e41d837c0f9#dist/angular-dashboard-framework.js 59. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/324d011817bb580f08c22d3071514e41d837c0f9#dist/angular-dashboard-framework.min.js 60. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/324d011817bb580f08c22d3071514e41d837c0f9#dist/angular-dashboard-framework.min.js.map 61. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/324d011817bb580f08c22d3071514e41d837c0f9#src/scripts/widget.js 62. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/324d011817bb580f08c22d3071514e41d837c0f9#src/templates/widget-title.html 63. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/6eb1ea0aeb4f55c9648b4510cb2e46b9e28869b4 64. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/6eb1ea0aeb4f55c9648b4510cb2e46b9e28869b4#bower.json 65. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/9a3d2e40d044133de5f50932b269a365a0f321fc 66. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/9a3d2e40d044133de5f50932b269a365a0f321fc#bower.json 67. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/a0a304b784c1be126ff51a8e83589806e3d0ca98 68. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/a0a304b784c1be126ff51a8e83589806e3d0ca98#bower.json 69. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/811ee3828872ad8e5067c24d3d5fa9a686c024d4 70. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/811ee3828872ad8e5067c24d3d5fa9a686c024d4#dist/angular-dashboard-framework-tpls.js 71. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/811ee3828872ad8e5067c24d3d5fa9a686c024d4#dist/angular-dashboard-framework-tpls.min.js 72. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/811ee3828872ad8e5067c24d3d5fa9a686c024d4#dist/angular-dashboard-framework-tpls.min.js.map 73. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/811ee3828872ad8e5067c24d3d5fa9a686c024d4#dist/angular-dashboard-framework.js 74. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/811ee3828872ad8e5067c24d3d5fa9a686c024d4#dist/angular-dashboard-framework.min.js 75. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/811ee3828872ad8e5067c24d3d5fa9a686c024d4#dist/angular-dashboard-framework.min.js.map 76. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/811ee3828872ad8e5067c24d3d5fa9a686c024d4#src/scripts/widget-content.js 77. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/2a66f1f02b46ccd4895de795ea5328fda12a41b6 78. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/2a66f1f02b46ccd4895de795ea5328fda12a41b6#src/scripts/widget-content.js 79. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/85a38d1fa13ad7d253cd3730d76478a9eb548daf 80. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/85a38d1fa13ad7d253cd3730d76478a9eb548daf#.editorconfig 81. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/85a38d1fa13ad7d253cd3730d76478a9eb548daf#bower.json 82. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/85a38d1fa13ad7d253cd3730d76478a9eb548daf#dist/angular-dashboard-framework-tpls.js 83. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/85a38d1fa13ad7d253cd3730d76478a9eb548daf#dist/angular-dashboard-framework-tpls.min.js 84. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/85a38d1fa13ad7d253cd3730d76478a9eb548daf#dist/angular-dashboard-framework-tpls.min.js.map 85. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/85a38d1fa13ad7d253cd3730d76478a9eb548daf#dist/angular-dashboard-framework.js 86. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/85a38d1fa13ad7d253cd3730d76478a9eb548daf#dist/angular-dashboard-framework.min.css 87. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/85a38d1fa13ad7d253cd3730d76478a9eb548daf#dist/angular-dashboard-framework.min.js 88. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/85a38d1fa13ad7d253cd3730d76478a9eb548daf#dist/angular-dashboard-framework.min.js.map 89. https://secmgmtgit.provo.novell.com:8443/projects/SEN/repos/adf-dashboard-framework/commits/85a38d1fa13ad7d253cd3730d76478a9eb548daf#src/scripts/widget-content.js