Changeset 22659 in main
- Timestamp:
- 03/09/21 14:04:10 (5 weeks ago)
- Location:
- adopters/nm-epht/trunk/src/main/webapps/nmepht-view
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
adopters/nm-epht/trunk/src/main/webapps/nmepht-view/WEB-INF/config/spring/IBISPHViewContentPath.xml
r20102 r22659 2 2 3 3 <!-- 4 This file contains defs for: 5 1) EPHT access to the NM-IBIS View System's content via a request like: 6 /view/ibis/** 7 2) Redefines the common XML model maps to use the NM-IBIS published versions. 4 This file contains "common" XML model maps file access redefines to use the 5 NM-IBIS published versions. 8 6 --> 9 7 … … 129 127 </bean> 130 128 131 132 <!-- C O N T R O L L E R S -->133 <bean id="IBISPHViewContentGetFileController" class="org.ibisph.web.springmvc.GetFileController">134 <description>Provides access to NM-IBIS content via request: /view/ibis/**</description>135 <property name="pathPrefixToRemove" value="#{viewGetFileRequestPathPrefixToRemove.string}/ibis"/>136 <property name="basePath" ref="IBISPHViewContentBasePathURL"/>137 </bean>138 139 129 </beans> -
adopters/nm-epht/trunk/src/main/webapps/nmepht-view/WEB-INF/config/spring/SiteSpecific.xml
r22574 r22659 128 128 <!-- F I L E C O N T E N T S T R E A M E R --> 129 129 <entry key="/view/WEB-INF/**" value-ref="viewAccessDeniedController"/> 130 <entry key="/view/ibis/**" value-ref="IBISPHViewContentGetFileController"/>131 130 <entry key="/view/**" value-ref="viewGetFileController"/> 132 131 </map> -
adopters/nm-epht/trunk/src/main/webapps/nmepht-view/css/_SiteSpecific-layout_navigation.css
r22619 r22659 22 22 { 23 23 position: relative; 24 top: 18px; 25 left: 30px; 24 26 height: auto; 25 27 cursor: pointer; … … 45 47 { 46 48 padding: 0.5rem; 49 font-weight: bold; 47 50 } 48 51 … … 104 107 105 108 109 110 #siteNavigation 111 { 112 margin-top: 25px; 113 } 106 114 #siteNavigationMenu.HorizontalMenu 107 115 { … … 151 159 background-color: var(--background-color-hover); 152 160 } 161 162 /* 153 163 #siteNavigationMenu.HorizontalMenu > li > label, 164 */ 154 165 #siteNavigationMenu.HorizontalMenu > li #homeMenu a 155 166 { … … 163 174 #siteNavigationMenu #homeMenu a 164 175 { 165 margin: -1px 0 0 0; 166 padding: 4px 5px 1px 5px; 167 font-size: 26px; 176 padding: 2px 5px; 177 font-size: 24px; 168 178 } 169 179 #siteNavigationMenu.HorizontalMenu > #homeMenu:hover … … 172 182 border: none; 173 183 } 184 185 186 #siteNavigationMenu.HorizontalMenu > li > a, 187 #siteNavigationMenu.HorizontalMenu > li > a:visited, 188 #siteNavigationMenu.HorizontalMenu > li > .Title, 189 #siteNavigationMenu.HorizontalMenu > li > label 190 { 191 padding: 8px 10px 6px 10px; 192 } 193 #siteNavigationMenu.HorizontalMenu > li > input[type="radio"] + label::after 194 { 195 vertical-align: bottom; 196 } 197 174 198 175 199 #siteNavigationMenu > li > input[type="checkbox"]:checked + label, -
adopters/nm-epht/trunk/src/main/webapps/nmepht-view/xslt/html/SiteSpecific.xslt
r22605 r22659 174 174 <div class="NavigationPathSocialMedia"> 175 175 <div id="navigationPath" title="Navigation path to get to this page."> 176 Path:177 176 <xsl:call-template name="SelectionsList.processSelections"> 178 177 <xsl:with-param name="selections"> -
adopters/nm-epht/trunk/src/main/webapps/nmepht-view/xslt/html/query/module/result/SiteSpecific.xslt
r22583 r22659 100 100 </button> 101 101 102 <button type="button" accesskey="D" id="defaultQuery"103 onclick="location.href='{concat($ibis.baseRequestPath, 'dataportal/query/result/', /QUERY_MODULE/REQUEST/CONFIGURATION_PATH, '.html?Reload=x')}'"104 >105 Run Default Query106 <xsl:call-template name="Help.content">107 <xsl:with-param name="help">108 <TEXT>109 Resets your query definition to the default selections110 and settings and runs the query.111 </TEXT>112 </xsl:with-param>113 </xsl:call-template>114 </button>115 116 <button type="button" accesskey="M" id="selectQueryMeasure"117 onclick="location.href='{concat($ibis.baseRequestPath, /QUERY_MODULE/QUERY_CONFIGURATION_SELECTION/LOCAL_URL)}'"118 >119 Select Query Measure120 <xsl:call-template name="Help.content">121 <xsl:with-param name="help">122 <TEXT>123 Allows you to change the dataset measure to be queried.124 </TEXT>125 </xsl:with-param>126 </xsl:call-template>127 </button>128 129 102 <button type="button" accesskey="D" id="saveDefinition" 130 103 onclick="location.href='{concat($ibis.baseRequestPath, 'query/definition/from/result')}'" … … 146 119 </button> 147 120 148 <button type="button" accesskey="E" id="openInExcel"149 onclick="location.href='{concat($ibis.baseRequestPath, 'dataportal/query/result/', /QUERY_MODULE/REQUEST/CONFIGURATION_PATH, '.xls')}'"150 >151 Output to Excel152 <xsl:call-template name="Help.content">153 <xsl:with-param name="help">154 <TEXT>155 This open is not a true Microsoft Excel export.156 Selecting this option simply tells your browser157 to open the resultant HTML with whatever application158 your PC/device has associated with an ".xls" file.159 Depending on how your browser is configured this160 will either open the query result in MS-Excel or161 it will prompt you to save the file to you local162 device where you can then open it with the desired163 application.164 165 NOTE: this option displays the basicaly formatted166 numeric and contextual data. Maps and/or charts167 are not included.168 </TEXT>169 </xsl:with-param>170 </xsl:call-template>171 </button>172 121 </div> 173 122 </div>
Note: See TracChangeset
for help on using the changeset viewer.