You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dlab.apache.org by dg...@apache.org on 2020/09/01 14:34:21 UTC

[incubator-dlab] branch DLAB-2016 created (now 81573ae)

This is an automated email from the ASF dual-hosted git repository.

dgnatyshyn pushed a change to branch DLAB-2016
in repository https://gitbox.apache.org/repos/asf/incubator-dlab.git.


      at 81573ae  [DLAB-2015]: Removed Ungit link for Apache Zeppelin on 'Environment management' page

This branch includes the following new commits:

     new 941516f  Merge branch 'develop' of github.com:apache/incubator-dlab into develop
     new 81573ae  [DLAB-2015]: Removed Ungit link for Apache Zeppelin on 'Environment management' page

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@dlab.apache.org
For additional commands, e-mail: commits-help@dlab.apache.org


[incubator-dlab] 02/02: [DLAB-2015]: Removed Ungit link for Apache Zeppelin on 'Environment management' page

Posted by dg...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

dgnatyshyn pushed a commit to branch DLAB-2016
in repository https://gitbox.apache.org/repos/asf/incubator-dlab.git

commit 81573aedc7e5de7ab38cb8cf1428c4541c7017e7
Author: Dmytro_Gnatyshyn <di...@ukr.net>
AuthorDate: Tue Sep 1 17:33:47 2020 +0300

    [DLAB-2015]: Removed Ungit link for Apache Zeppelin on 'Environment management' page
---
 .../detail-dialog/detail-dialog.component.html     | 38 ++++++++++++++++++----
 1 file changed, 31 insertions(+), 7 deletions(-)

diff --git a/services/self-service/src/main/resources/webapp/src/app/resources/exploratory/detail-dialog/detail-dialog.component.html b/services/self-service/src/main/resources/webapp/src/app/resources/exploratory/detail-dialog/detail-dialog.component.html
index 61e3ab2..038fc28 100644
--- a/services/self-service/src/main/resources/webapp/src/app/resources/exploratory/detail-dialog/detail-dialog.component.html
+++ b/services/self-service/src/main/resources/webapp/src/app/resources/exploratory/detail-dialog/detail-dialog.component.html
@@ -43,13 +43,37 @@
         <div *ngIf="data.type === 'environment'" class="detail-info">
           <p>Open following URL(s) in your browser to access this box:</p>
           <div class="links_block">
-            <p *ngFor="let item of notebook.exploratory_urls">
-              <span class="description">{{item.description}}: &nbsp;</span>
-              <a class="ellipsis" matTooltip="{{item.url}}" matTooltipPosition="above" href="{{item.url}}"
-                 target="_blank" (click)="logAction(notebook.name, item.description)">
-                &nbsp;{{item.url}}{{notebook.name}}
-              </a>
-            </p>
+<!--            <p *ngFor="let item of notebook.exploratory_urls">-->
+<!--              <span class="description">{{item.description}}: &nbsp;</span>-->
+<!--              <a class="ellipsis" matTooltip="{{item.url}}" matTooltipPosition="above" href="{{item.url}}"-->
+<!--                 target="_blank" (click)="logAction(notebook.name, item.description)">-->
+<!--                &nbsp;{{item.url}}{{notebook.name}}-->
+<!--              </a>-->
+<!--            </p>-->
+            <ng-container *ngFor="let item of notebook.exploratory_urls">
+                <span class="d-none" *ngIf="item.description.toLowerCase() === 'ungit' && notebook.exploratory_urls[0].description.toLowerCase().indexOf('zeppelin') !== -1; else ungit">
+                </span>
+              <ng-template #ungit>
+                <p (mouseleave)="hideCopyIcon()">
+                  <span class="description">{{item.description}}: &nbsp;</span>
+                  <a (mouseover)="showCopyIcon(item.description)"
+                     (click)="logAction(notebook.name, item.description)"
+                     class="ellipsis none-select" matTooltip="{{item.url}}"
+                     matTooltipPosition="above"
+                     href="{{item.url}}"
+                     target="_blank"
+                     (contextmenu)="false"
+                  >
+                    &nbsp;{{item.url}}
+                  </a>
+                  <span (click)="logAction(notebook.name, item.description, 'Copy');$event.stopPropagation()" *ngIf="isCopyIconVissible[item.description]" [matTooltip]="isCopied ? 'Copy ' + item.description + ' url': 'Copied'" matTooltipPosition="above" class="copy-icon-wrapper">
+                      <span  class="link-icon" (click)="copyBucketName(item.url)" >
+                        <span _ngcontent-xpv-c19="" class="material-icons" (click)="this.isCopied = false">content_copy</span>
+                       </span>
+                    </span>
+                </p>
+              </ng-template>
+            </ng-container>
           </div>
         </div>
         <div class="scroll-box" id="scrolling" *ngIf="data.type === 'resource'">


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@dlab.apache.org
For additional commands, e-mail: commits-help@dlab.apache.org


[incubator-dlab] 01/02: Merge branch 'develop' of github.com:apache/incubator-dlab into develop

Posted by dg...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

dgnatyshyn pushed a commit to branch DLAB-2016
in repository https://gitbox.apache.org/repos/asf/incubator-dlab.git

commit 941516ff5a454d82c1876e833e9d1ecb49895ed0
Merge: 5342439 c7dacbe
Author: Dmytro_Gnatyshyn <di...@ukr.net>
AuthorDate: Tue Sep 1 17:08:39 2020 +0300

    Merge branch 'develop' of github.com:apache/incubator-dlab into develop

 USER_GUIDE.md                                      |   2 +-
 doc/notebook_list_libs.png                         | Bin 20684 -> 32756 bytes
 .../install-libraries.component.ts                 |  21 ++-
 .../backendapi/resources/AuditResourceTest.java    |  88 +++++++++
 .../backendapi/resources/ProjectResourceTest.java  | 210 +++++++++++++--------
 5 files changed, 235 insertions(+), 86 deletions(-)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@dlab.apache.org
For additional commands, e-mail: commits-help@dlab.apache.org