This file is indexed.

/usr/share/openstack-dashboard/openstack_dashboard/static/dashboard/project/app_catalog/main_panel.html is in python-app-catalog-ui 1.0.0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<div style="margin-bottom: 4px;">
  Service Types:
  <label ng-repeat="service in service_filters">
    <input
      type="checkbox"
      name="selected_filters[]"
      value="{$ service.id $}"
      ng-checked="service_filters_selections[service.id]"
      ng-click="toggle_service_filter(service.id)"
      > {$ service.name $}
  </label>
  <span ng-switch="switcher.pannel" style="float:right">
    <span ng-switch-when="app" style="float: right" class="toggleView btn-group">
      <img class="btn btn-default" ng-class="{active: (switcher.active == 'grid')}" ng-src="{$ STATIC_URL $}dashboard/project/app_catalog/1439233859_grid.png" ng-click="changeActivePanel('grid')"/>
      <img class="btn btn-default" ng-class="{active: (switcher.active == 'list')}" ng-src="{$ STATIC_URL $}dashboard/project/app_catalog/1439233889_list.png" ng-click="changeActivePanel('list')"/>
    </span>
  </span>
</div>

<div ng-switch="switcher.active">
  <app-catalog-magic-search></app-catalog-magic-search>
  <div ng-switch-when="grid" style="
    background-color:#f9f9f9;
    overflow: auto;
    border-color:#cccccc; border-width:1px; border-style: solid;
    ">
    <div ng-repeat="asset in assets | orderBy:'name':false" style="border:1px;
      margin: 10px;
      width: 200px; height: 180px; float: left;
      ">
      <div ng-click="details(asset)" style="
        margin:10px;
        border-color:#cccccc; border-width:1px;
        border-radius: 2px;
        box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
        padding:8px;
        height: 170px;
        overflow: hidden;
        background-color:#ffffff;
        position: relative;
        ">
        <div style="">

          <div style="
            width:128px;
            height:128px;
            overflow: hidden;
            margin-left: auto; margin-right:auto;
            ">

            <img style="
              margin: {$ asset.icon.top $}px 0px 0px {$ asset.icon.left $}px;
              height: {$ asset.icon.height $}px;
              " src="{$ asset.icon.url $}">
          
          </div>
<!--FIXME Move images out to common repo.-->
          <span style="
            max-height: 100%;
            width: 23px;
            height: 23px;
            top: 0;
            right: 0;
            position: absolute;
            background: rgba(0, 0, 0, 0) url('{$ STATIC_URL $}dashboard/project/app_catalog/featured-corner-{$ asset.service.type $}.png') no-repeat scroll right top;
            ">
          </span>
        </div>
        <div title="{$ asset.name $}" style="
          overflow: hidden;
          white-space: nowrap;
          position: relative;
          line-height: 18px;
          font-size: 16px;
          "> {$ asset.name $}
          <span style="
            max-height: 100%;
            width: 40px;
            height: 20px;
            bottom: 0;
            right: 0;
            position: absolute;
            background: rgba(0, 0, 0, 0) linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1)) repeat scroll 0 0;
            ">
          </span>
        </div>
        <div title="{$ asset.provided_by.name $}" style="
            overflow: hidden;
            white-space: nowrap;
            position: relative;
            line-height: 14px;
            font-size: 12px;
            "> {$ asset.provided_by.name $}
          <span style="
              max-height: 100%;
              width: 40px;
              height: 20px;
              bottom: 0;
              right: 0;
              position: absolute;
              background: rgba(0, 0, 0, 0) linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1)) repeat scroll 0 0;
              ">
          </span>
        </div>
        <div ng-switch="asset.disabled">
          <div ng-switch-when="true" class="app_catalog_grid_item_hidden"></div>
        </div>
      </div>
    </div>
  </div>

  <div ng-switch-when="list">
    <table hz-table ng-cloak st-table="dispassets" st-safe-src="assets"
      class="table-striped table-rsp table-detail modern">
      <thead>
        <tr>
          <th class="expander"></th>
          <th st-sort="name" st-sort-default="true" class="rsp-p1">Name</th>
          <th st-sort='license' class="rsp-p1">License</th>
          <th class="rsp-p1"></th>
        </tr>
      </thead>
    
      <tbody>
        <tr ng-repeat-start="asset in dispassets track by asset.name">
          <td class="expander">
            <i class="fa fa-chevron-right" hz-expand-detail duration="200"></i>
          </td>
          <td class="rsp-p1">{$ asset.name $}</td>
          <td class="rsp-p2">{$ asset.license $}</td>
          <td class="rsp-p2"><div app-action ng-scope ng-init="extraclasses='btn-sm';installclasses='btn-primary';launchclasses='btn-success'"></div></td>
        </tr>
    
        <tr ng-repeat-end class="detail-row">
          <td class="detail" colspan="4">
            <ng-include src="STATIC_URL + 'dashboard/project/app_catalog/_details_panel.html'"></ng-include>
          </td>
        </tr>
    
      </tbody>
    
      <tfoot>
        <tr>
          <td colspan="5" class="text-center">
            <div st-pagination="" st-items-by-page="itemsByPage" st-displayed-pages="7"></div>
          </td>
        </tr>
      </tfoot>
    </table>
  </div>
</div>