Page MenuHomec4science

No OneTemporary

File Metadata

Created
Thu, Mar 28, 13:35
This file is larger than 256 KB, so syntax highlighting was skipped.
diff --git a/README.md b/README.md
index 289fc6e..6c429a0 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,11 @@
# Primo customization at EPFL
-## Command to start
-gulp run --view VU2 --browserify --ve
+## Command to start a local view
+`gulp run`
+
+## Command to create package
+### Production
+`gulp create-package`
+
+### Test
+`gulp create-package --test`
diff --git a/gulp/tasks/createPackage.js b/gulp/tasks/createPackage.js
index de72ff8..ea6446b 100644
--- a/gulp/tasks/createPackage.js
+++ b/gulp/tasks/createPackage.js
@@ -1,67 +1,74 @@
'use strict';
const gulp = require('gulp');
const glob = require('glob');
const prompt = require('prompt');
const zip = require('gulp-zip');
const config = require('../config.js');
+const minimist = require('minimist');
gulp.task('select-view', (cb) => {
const basedir = 'primo-explore/custom/';
const customFolderExp = basedir + '*/';
const files = glob.sync(customFolderExp, {});
return new Promise(resolve => {
if (!config.view()) {
console.log('Please Choose a view to use:\r\n');
files.forEach(function(element, index, array){
console.log(index+1 + ': '+ element.replace(basedir,'').replace('/',''));
console.log('\r\n');
});
prompt.start();
const property = {
name: 'view',
message: 'Please Choose view to use'
};
prompt.get(property, function (err, result) {
console.log('\r\n');
let code = result.view;
if(files[result.view - 1]){
code = files[result.view - 1].replace(basedir,'').replace('/','');
}
config.setView(code);
resolve();
});
} else {
let valid = false
for (let index in files) {
let dir = files[index].replace(basedir,'').replace('/','')
if(dir === config.view()) {
valid = true
break;
}
}
if (!valid) {
resolve()
cb("--view must be a valid view")
} else {
resolve()
}
}
})
})
gulp.task('create-package', ['select-view', 'custom-js','custom-scss','custom-css'], function () {
- const code = config.view();
+ var options = minimist(process.argv.slice(2));
+
+ if (options.test) {
+ var code = '41SLSP_EPF-test';
+ } else {
+ var code = '41SLSP_EPF-prod';
+ }
+ // const code = config.view();
console.log('Creating package for : ('+code+'.zip)');
- console.log(code);
console.log(' in : /packages');
console.log('\r\n');
console.log('............................................................................................................................................');
return gulp.src(['./primo-explore/custom/'+code,'./primo-explore/custom/'+code+'/html/**','./primo-explore/custom/'+code+'/img/**','./primo-explore/custom/'+code+'/css/custom1.css','./primo-explore/custom/'+code+'/js/custom.js'], {base: './primo-explore/custom'})
.pipe(zip(code+'.zip'))
.pipe(gulp.dest('./packages/'));
});
diff --git a/gulpfile.js b/gulpfile.js
index db7cdb4..bf34797 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -1,45 +1,27 @@
const gulp = require('gulp');
const minimist = require('minimist');
const requireDir = require('require-dir');
requireDir('./gulp/tasks', { recurse: true });
const config = require('./gulp/config');
var options = minimist(process.argv.slice(2));
console.log(options)
// console.log(options.view ? '41SLSP_EPF-' + options.view : false);
//config.setVe(!!options.ve);
config.setVe(true);
+config.setView('src')
if (options.sandbox) {
- config.setView('41SLSP_HPH-EPFL');
config.setProxy('https://slsp-hph-psb.primo.exlibrisgroup.com:443');
} else {
- config.setView(options.view ? '41SLSP_EPF-' + options.view : false);
config.setProxy('https://slsp-epfl.primo.exlibrisgroup.com:443');
}
if (options.reinstallNodeModules) config.setReinstallNodeModules(options.reinstallNodeModules);
if (options.proxy) config.setProxy(options.proxy);
if (options.useScss) config.setUseScss(options.useScss);
//config.setBrowserify(options.browserify);
config.setBrowserify(true);
config.setSaml(options.saml);
config.setCas(options.cas);
-
-gulp.task('copy_sandbox_to_prod', function(){
- return gulp.src(['./primo-explore/custom/41SLSP_HPH-EPFL/**'])
- .pipe(gulp.dest('./primo-explore/custom/41SLSP_EPF-prod/'));
-})
-gulp.task('copy_to_sandbox', function(){
- return gulp.src(['./primo-explore/custom/41SLSP_EPF-prod/**'])
- .pipe(gulp.dest('./primo-explore/custom/41SLSP_HPH-EPFL/'));
-})
-gulp.task('copy_to_test', function(){
- return gulp.src(['./primo-explore/custom/41SLSP_EPF-prod/**'])
- .pipe(gulp.dest('./primo-explore/custom/41SLSP_EPF-test/'));
-})
-gulp.task('copy_test_to_prod', function(){
- return gulp.src(['./primo-explore/custom/41SLSP_EPF-test/**'])
- .pipe(gulp.dest('./primo-explore/custom/41SLSP_EPF-prod/'));
-})
diff --git a/help_files/bo.png b/help_files/bo.png
deleted file mode 100644
index 2d37157..0000000
Binary files a/help_files/bo.png and /dev/null differ
diff --git a/help_files/createPackage.png b/help_files/createPackage.png
deleted file mode 100644
index f6fd5d7..0000000
Binary files a/help_files/createPackage.png and /dev/null differ
diff --git a/help_files/direcoryTree.png b/help_files/direcoryTree.png
deleted file mode 100644
index 027abe7..0000000
Binary files a/help_files/direcoryTree.png and /dev/null differ
diff --git a/help_files/npmInstall.png b/help_files/npmInstall.png
deleted file mode 100644
index 8275300..0000000
Binary files a/help_files/npmInstall.png and /dev/null differ
diff --git a/help_files/packages.png b/help_files/packages.png
deleted file mode 100644
index 1fe9aec..0000000
Binary files a/help_files/packages.png and /dev/null differ
diff --git a/help_files/searchResults.png b/help_files/searchResults.png
deleted file mode 100644
index 7313030..0000000
Binary files a/help_files/searchResults.png and /dev/null differ
diff --git a/help_files/serverStartup.png b/help_files/serverStartup.png
deleted file mode 100644
index 042fc20..0000000
Binary files a/help_files/serverStartup.png and /dev/null differ
diff --git a/images/favicon.ico b/images/favicon.ico
deleted file mode 100644
index 4f94c66..0000000
Binary files a/images/favicon.ico and /dev/null differ
diff --git a/images/icon_article.png b/images/icon_article.png
deleted file mode 100644
index 2732569..0000000
--- a/images/icon_article.png
+++ /dev/null
@@ -1,1875 +0,0 @@
-
-<!doctype html>
-<html lang="en-US">
- <head>
- <meta charset="utf-8">
- <title>News, newspaper, the daily news, tv icon | Icon search engine</title>
- <meta name="keywords" content="News, newspaper, the daily news, tv" />
- <meta name="description" content="Download news, newspaper, the daily news, tv icon in .PNG or .ICO format. Icon designed by Alessandro Rei found in the icon set Dark Glass " />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <meta property="og:site_name" content="Iconfinder"/>
- <meta property="og:url" content="https://www.iconfinder.com/icons/6443/news_newspaper_the_daily_news_tv_icon"/>
- <meta property="fb:admins" content="655647081"/>
- <meta property="fb:app_id" content="319532633444"/>
- <meta name="twitter:url" content="https://www.iconfinder.com/icons/6443/news_newspaper_the_daily_news_tv_icon">
- <meta name="twitter:site" content="@iconfinder">
-
- <meta property="og:type" content="website" />
- <meta name="author" content="Alessandro Rei">
- <meta name="twitter:card" content="product">
- <meta name="twitter:creator" content="">
-
- <meta name="twitter:data1" content="Download this icon">
- <meta name="twitter:label1" content="Free on Iconfinder.com">
-
- <meta name="twitter:data2" content="Icon details">
- <meta name="twitter:label2" content="Available formats: ">
-<meta property="og:title" content="'Dark Glass' by Alessandro Rei" />
- <meta property="og:image" content="https://cdn1.iconfinder.com/data/icons/DarkGlass_Reworked/128x128/apps/knode2.png"/>
- <meta property="og:description" content="Download this icon for free on Iconfinder.com
-- Style: 3D
-- Categories: Photography & graphic design, Mixed
-- Available formats: PNG, ICO, ICNS"/>
- <meta name="twitter:title" content="'Dark Glass' by Alessandro Rei">
- <meta name="twitter:description" content="This and more than 894,300 free and premium icons available on Iconfinder.com">
- <meta name="twitter:image:src" content="https://cdn1.iconfinder.com/data/icons/DarkGlass_Reworked/128x128/apps/knode2.png"><link rel="search" type="application/opensearchdescription+xml" title="Iconfinder" href="https://cdn0.iconfinder.com/iconfinder.xml" />
-
- <script type="application/ld+json">
- {
- "@context": "http://schema.org",
- "@type": "Organization",
- "name": "Iconfinder",
- "url": "https://www.iconfinder.com",
- "logo": "https://www.iconfinder.com/assets/img/favicons/favicon-194x194.png",
- "sameAs": [
- "http://www.facebook.com/iconfinder",
- "http://www.dribbble.com/team-iconfinder",
- "http://www.twitter.com/iconfinder",
- "http://www.instagram.com/iconfinder"
- ]
- }
- </script>
-
-
- <link rel="apple-touch-icon" href="https://cdn3.iconfinder.com/static/7b52ed4f2c5f420ee53f26e63ddec6bb/assets/img/favicons/apple-touch-icon.png">
- <link rel="apple-touch-icon" sizes="57x57" href="https://cdn3.iconfinder.com/static/3d8e11e6cd49e2dbb5d5511796c98f50/assets/img/favicons/apple-touch-icon-57x57.png">
- <link rel="apple-touch-icon" sizes="60x60" href="https://cdn2.iconfinder.com/static/67bb63023108ba2000b6956edba051c0/assets/img/favicons/apple-touch-icon-60x60.png">
- <link rel="apple-touch-icon" sizes="72x72" href="https://cdn2.iconfinder.com/static/2fb585624fdfa8088c90afea2bfbc1b3/assets/img/favicons/apple-touch-icon-72x72.png">
- <link rel="apple-touch-icon" sizes="76x76" href="https://cdn3.iconfinder.com/static/cd5817cfcc9fa17a9f6e95069a652b42/assets/img/favicons/apple-touch-icon-76x76.png">
- <link rel="apple-touch-icon" sizes="114x114" href="https://cdn0.iconfinder.com/static/0646d0d051e6e6e7c279efe8e8fac9f0/assets/img/favicons/apple-touch-icon-114x114.png">
- <link rel="apple-touch-icon" sizes="120x120" href="https://cdn2.iconfinder.com/static/2bdaa1a0c592910501580aaeb646db23/assets/img/favicons/apple-touch-icon-120x120.png">
- <link rel="apple-touch-icon" sizes="144x144" href="https://cdn3.iconfinder.com/static/33656f63ac64700b55e9c3c3cea6e0fd/assets/img/favicons/apple-touch-icon-144x144.png">
- <link rel="apple-touch-icon" sizes="152x152" href="https://cdn0.iconfinder.com/static/8ce86f987bc8f9ad4f4f390ca289a3b1/assets/img/favicons/apple-touch-icon-152x152.png">
- <link rel="apple-touch-icon" sizes="180x180" href="https://cdn3.iconfinder.com/static/7b52ed4f2c5f420ee53f26e63ddec6bb/assets/img/favicons/apple-touch-icon-180x180.png">
- <link rel="icon" type="image/png" sizes="32x32" href="https://cdn2.iconfinder.com/static/b59d8190165242cb68fe77226f914c21/assets/img/favicons/favicon-32x32.png">
- <link rel="icon" type="image/png" sizes="192x192" href="https://cdn1.iconfinder.com/static/5bccb02f9f43e3fe7318b4dd7afd213c/assets/img/favicons/android-chrome-192x192.png">
- <link rel="icon" type="image/png" sizes="96x96" href="https://cdn1.iconfinder.com/static/13a0c085b39bb6a191afd8ea032d1213/assets/img/favicons/favicon-96x96.png">
- <link rel="icon" type="image/png" sizes="16x16" href="https://cdn0.iconfinder.com/static/494de40e1f51c2cc63a17c5da53e22fb/assets/img/favicons/favicon-16x16.png">
- <link rel="manifest" href="https://cdn3.iconfinder.com/static/3d517ac3432cc41ead571dbef14b39d2/assets/img/favicons/manifest.json">
- <meta name="msapplication-TileColor" content="#da532c">
- <meta name="msapplication-TileImage" content="https://cdn2.iconfinder.com/static/22021e4dfa0a7db8dec0c945d3f125be/assets/img/favicons/mstile-144x144.png">
- <meta name="theme-color" content="#ffffff">
-
-
- <link rel="stylesheet" href="https://cdn0.iconfinder.com/static/04c73a99b432efec723ac2f80d911844/iconfinder.css" />
-
- <script src="https://d3tvtfb6518e3e.cloudfront.net/1/opbeat.min.js" data-org-id="0428159d96e64fe5ae37ed928a06bed9" data-app-id="578e0da0ac"></script>
-
- <script type="text/javascript">
- var _gaq = _gaq || [];
- _gaq.push(['_setAccount', 'UA-634584-2']);
- _gaq.push(['_setDomainName', 'www.iconfinder.com']);
- _gaq.push(['_setAllowLinker', true]);_gaq.push(['_setCustomVar',
- 1,
- 'Signed in',
- 'False',
- 2
- ]);_gaq.push(['_setCustomVar',
- 2,'Pro subscriber','False',
- 2]);_gaq.push(['_trackPageview']);
- (function() {
- var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
- ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
- var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
- })();
- </script><script type="text/javascript" src="https://cdn0.iconfinder.com/static/8d5130d944da842d9ca5bc09445cb56a/iconfinder.js"></script>
-
- <!-- Facebook Pixel Code -->
- <script>
- !function(f,b,e,v,n,t,s){if(f.fbq)return;n=f.fbq=function(){n.callMethod?
- n.callMethod.apply(n,arguments):n.queue.push(arguments)};if(!f._fbq)f._fbq=n;
- n.push=n;n.loaded=!0;n.version='2.0';n.queue=[];t=b.createElement(e);t.async=!0;
- t.src=v;s=b.getElementsByTagName(e)[0];s.parentNode.insertBefore(t,s)}(window,
- document,'script','//connect.facebook.net/en_US/fbevents.js');
-
- fbq('init', '890038714422094');
- fbq('track', 'PageView');
- </script>
- <noscript><img height="1" width="1" style="display:none"
- src="https://www.facebook.com/tr?id=890038714422094&ev=PageView&noscript=1"
- /></noscript>
- <!-- End Facebook Pixel Code -->
- <!--[if lte IE 8]>
- <script src="https://cdn2.iconfinder.com/static/fb4e3b19e8946427b114623ad94b0a95/assets/static-js/html5shiv.js"></script>
- <![endif]-->
- </head>
- <body id="view-icondetails" data-application="icons" data-view="details">
- <a id="top"></a>
-
-
- <div id="header-bar" class="navbar">
- <div class="navbar-inner">
- <div class="container">
- <div class="navbar-item">
- <a class="navbar-logo pull-left " title="Go to homepage" href="/">&nbsp;</a>
- </div>
- <div id="searcharea">
- <form id="searchform" action="/search/">
- <input value="" name="q" id="inputField" type="text" class="query" title="Search" placeholder="Search for icons" /><button class="btn btn-large btn-search btn-primary" type="submit"><i data-icon="P" class="icon"></i></button><input type="hidden" name="price" value="free"><input type="hidden" name="style" value="3d"><script>var as_xml=new AutoSuggest('inputField', {script:"/ajax/autocomplete/?",varname:"input"});</script>
-</form>
-
- </div>
- <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
- <span class="icon-bar">&nbsp;</span>
- <span class="icon-bar">&nbsp;</span>
- <span class="icon-bar">&nbsp;</span>
-</a>
-<div class="nav-collapse collapse">
- <ul class="nav pull-right">
-
- <li id="browse-collapsed"><a href="/browse">Browse icons</a></li>
- <li class="navbar-item"><a class="login-link" href="#">Log in</a></li>
- <li class="navbar-item"><a class="signup-link" href="#">Sign up</a></li>
-
- </ul>
-</div>
- </div>
- </div>
-</div>
-
-
- <div class="icon full-view" data-icon-id="6443">
- <div id="sub-bar" class="subnav-fixed subnav">
- <ul class="nav nav-pills">
- <li>
- <h1><a href="/search/?q=news" title="Search for news icons">News</a>, <a href="/search/?q=newspaper" title="Search for newspaper icons">newspaper</a>, <a href="/search/?q=the%20daily%20news" title="Search for the daily news icons">the daily news</a>, <a href="/search/?q=tv" title="Search for tv icons">tv</a> icon</h1>
- </li>
- <li class="more-details hidden-phone">
- <span>Downloads: 37,058</span>
-
- <span>
- Categories:
- <a href="/photography-graphic-design-icons" alt="Photography & graphic design">Photography & graphic design</a>,&nbsp;<a href="/mixed-icons" alt="Mixed">Mixed</a>
- </span>
-
-
- <span>
- Styles:
- <a href="/3d-style-icons" alt="3D">3D</a>
- </span>
-
- </li>
- <li class="pull-right">
- <a class="favorite-button pull-right js-icon-favorite" data-action="favorite-icon" href="#favorite"><i class="icon-if icon-if-favorites"></i> Favorite</a>
- </li>
- </ul>
- </div>
- <div class="content">
- <div class="designer hidden-phone">
-
- <h3>
- <a href="http://www.kde-look.org/usermanager/search.php?username=mentalrey">Alessandro Rei</a>
- </h3>
- </section>
-
- <section class="designer-contact">
- <a href="http://www.kde-look.org/usermanager/search.php?username=mentalrey">Visit website</a>
- </section>
-
-
- </div>
- <div id="detail-icon" data-icon-id="6443" data-icon-is-premium="false" data-icon-is-purchased="false">
- <div>
- <div class="buttons hidden-phone">
- <div class="size-navigation">
- <ul>
- <li><a class="iconsize size-label">Show size:</a></li>
-
- <li class="active">
- <a class="iconsize" href="/icons/6443/news_newspaper_the_daily_news_tv_icon#size=128" data-action="select-size" data-iconsize="128">
- 128 <em>&times;</em> 128
- </a>
- </li>
-
- </ul>
- </div>
- </div>
- <img id="detail-icon-img" src="https://cdn1.iconfinder.com/data/icons/DarkGlass_Reworked/128x128/apps/knode2.png" alt="news, newspaper, the daily news, tv icon" width="128" height="128"><div id="downloadlinks">
- <div class="buttons">
- <div class="btn-group dropdown"><a class="btn btn-large btn-primary downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="6443" href="/icons/6443/download/png/128"><i class="indicator-format white indicator-format-png"></i>
- <b>
- PNG</b></a></div><div class="downloadlink-seperator"></div><div class="btn-group dropdown"><a class="btn btn-small downloadlink" rel="nofollow" title="Download this icon in ICO format for use in Windows." data-toggle="tooltip" data-format="ico" data-icon-id="6443" href="/icons/6443/download/ico"><i class="download-icon"></i><b>
- ICO</b></a></div><div class="btn-group dropdown"><a class="btn btn-small downloadlink" rel="nofollow" title="Download this icon in ICNS format for use in Apple OS X." data-toggle="tooltip" data-format="icns" data-icon-id="6443" href="/icons/6443/download/icns"><i class="download-icon"></i><b>
- ICNS</b></a></div><div class="btn-group dropdown">
- <a class="btn btn-small" rel="nofollow" title="Download this icon in Base64 encoded PNG format for use on the Web." data-toggle="tooltip" data-format="png" data-action="get-base64" data-size="128" data-icon-id="6443" href="/icons/6443/download/png/128"><b>
- PNG</b> - Base64</a>
- </div><div class="btn-group dropdown">
- <a class="btn btn-small" href="http://support.iconfinder.com/customer/portal/articles/1377203-what-format-should-i-use-">Help</a>
- </div>
- <p>
- <b>License:</b>
-
- <span><a href="http://www.gnu.org/copyleft/gpl.html">GPL</a> </span> (<a href="http://support.iconfinder.com/customer/portal/topics/417141-licenses/articles">help for licenses</a>)
-
- </p>
-
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
-
-
-
-
- <script type="text/javascript">
-(function(){
- var sizeMatch = window.location.hash.match(/size=(\d+)/);
-
- if (sizeMatch !== null) {
- var size = parseInt(sizeMatch[1], 10);
-
- // Get the alternative container and the currently selected
- // alternative container.
- var alternativeContainer = $('#alternativesizes .alticons[data-size="' + size + '"]');
-
- // Update the image.
- var sizedImage = alternativeContainer.find('.hiddenicon img');
- if (sizedImage.length == 0)
- sizedImage = alternativeContainer.find('img');
-
- $('#detail-icon-img').attr('src', sizedImage.attr('src')).attr('width', sizedImage.attr('width')).attr('height', sizedImage.attr('height'))
- }
-})();
- </script>
- <div class="iconset-header row-fluid">
- <div class="iconset-primaryinfo span12">
- <h3>
- <a href="/iconsets/DarkGlass_Reworked"><strong>Dark Glass</strong></a> -
- 811 raster icons
- <br>
-
- <a class="btn btn-small hidden-phone" href="/iconsets/DarkGlass_Reworked">View all icons in icon set</a>
-
-
-
- <a href="#comments" class="btn btn-outlined btn-small hidden-phone" data-action="comment-button" data-referenceidentifier="iconset" data-referenceid="15"><i class="icon-if icon-if-comments"></i> <b>4</b> comments
- </a>
- </h3>
- <p class="iconset-designer" style="display: none;">
- In icon set: <span><b>811 raster icons</b></span>
- &nbsp;&nbsp;&nbsp;License:
-
- <span><a href="http://www.gnu.org/copyleft/gpl.html">GPL</a> </span>
-
-
- <span>
- &nbsp;&nbsp;&nbsp;Categories: <span><a href="/photography-graphic-design-icons" alt="Photography & graphic design">Photography & graphic design</a>,&nbsp;<a href="/mixed-icons" alt="Mixed">Mixed</a></span>
- </span>
-
-
- <span>
- &nbsp;&nbsp;&nbsp;Styles: <span><a href="/3d-style-icons" alt="3D">3D</a></span>
- </span>
-
- </p>
- </div>
-</div>
- <div class="container-fluid back-container" id="secondarycontent">
- <div class="row-fluid">
- <div class="span12">
- <div id="icons">
-
- <div class="icondimension-128">
-
- <div class="icon" id="icon-6712" data-iconset-id="15" data-icon-id="6712">
- <div><div class="iconlinks">
- <div class="downloadlinks">
-
- <div class="btn-group"><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="6712" href="/icons/6712/download/png/128">
- PNG</a><a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">
- <span class="visible-desktop">More</span>
- <span class="caret"></span>
- </a>
- <ul class="dropdown-menu"><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="6712" href="/icons/6712/download/png/128" data-placement="right"><b>
- PNG</b> - 128 <em>&times;</em> 128 px</a></li><li class="divider"></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICO format for use in Windows." data-toggle="tooltip" data-format="ico" data-icon-id="6712" href="/icons/6712/download/ico" data-placement="right"><b>ICO</b> - Windows icon</a></a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICNS format for use in Apple OS X." data-toggle="tooltip" data-format="icns" data-icon-id="6712" href="/icons/6712/download/icns" data-placement="right"><b>ICNS</b> - Apple OS X icon</a></a></li><li class="divider"></li><li><a rel="nofollow" title="Download this icon in Base64 encoded PNG format for use on the Web." data-toggle="tooltip" data-format="png" data-action="get-base64" data-size="128" data-icon-id="6712" href="/icons/6712/download/png/128" data-placement="right"><b>
- PNG</b> - Base64 encoded</a></li><li class="divider"></li>
- <li><a href="http://support.iconfinder.com/customer/portal/articles/1377203-what-format-should-i-use-">What format should I use?</a></li>
- </ul>
- </div>
- </div>
- </div><a title="human, person, user icon" class="iconlink" href="/icons/6712/human_person_user_icon#size=128">
- <img alt="human, person, user icon" class="tiled-icon" style="max-width: 128px; max-height: 128px;" src="https://cdn1.iconfinder.com/data/icons/DarkGlass_Reworked/128x128/apps/user-5.png" />
- </a>
- <a href="#" class="favorite js-icon-favorite"><i data-icon="L"></i></a>
-
- <div class="info">
- <a rel="nofollow" title="Click here to see more information about this icon." id="infolink-6712" class="infolink" href="#">&nbsp;</a>
- <div class="infomenu" id="infomenu-6712">&nbsp;</div>
- <div class="tagmenu" id="tagmenu-6712"><div class="innertag" id="innertag-6712">Please wait</div></div>
- <input type="hidden" value="128" name="size" id="size-6712" class="hiddensize"/>
- <input type="hidden" value="6712" name="iconid" class="hiddeniconid"/>
- </div>
- </div>
-</div>
-
-
- <div class="icon" id="icon-6264" data-iconset-id="15" data-icon-id="6264">
- <div><div class="iconlinks">
- <div class="downloadlinks">
-
- <div class="btn-group"><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="6264" href="/icons/6264/download/png/128">
- PNG</a><a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">
- <span class="visible-desktop">More</span>
- <span class="caret"></span>
- </a>
- <ul class="dropdown-menu"><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="6264" href="/icons/6264/download/png/128" data-placement="right"><b>
- PNG</b> - 128 <em>&times;</em> 128 px</a></li><li class="divider"></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICO format for use in Windows." data-toggle="tooltip" data-format="ico" data-icon-id="6264" href="/icons/6264/download/ico" data-placement="right"><b>ICO</b> - Windows icon</a></a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICNS format for use in Apple OS X." data-toggle="tooltip" data-format="icns" data-icon-id="6264" href="/icons/6264/download/icns" data-placement="right"><b>ICNS</b> - Apple OS X icon</a></a></li><li class="divider"></li><li><a rel="nofollow" title="Download this icon in Base64 encoded PNG format for use on the Web." data-toggle="tooltip" data-format="png" data-action="get-base64" data-size="128" data-icon-id="6264" href="/icons/6264/download/png/128" data-placement="right"><b>
- PNG</b> - Base64 encoded</a></li><li class="divider"></li>
- <li><a href="http://support.iconfinder.com/customer/portal/articles/1377203-what-format-should-i-use-">What format should I use?</a></li>
- </ul>
- </div>
- </div>
- </div><a title="dj, music, sound, speaker icon" class="iconlink" href="/icons/6264/dj_music_sound_speaker_icon#size=128">
- <img alt="dj, music, sound, speaker icon" class="tiled-icon" style="max-width: 128px; max-height: 128px;" src="https://cdn1.iconfinder.com/data/icons/DarkGlass_Reworked/128x128/apps/audacity.png" />
- </a>
- <a href="#" class="favorite js-icon-favorite"><i data-icon="L"></i></a>
-
- <div class="info">
- <a rel="nofollow" title="Click here to see more information about this icon." id="infolink-6264" class="infolink" href="#">&nbsp;</a>
- <div class="infomenu" id="infomenu-6264">&nbsp;</div>
- <div class="tagmenu" id="tagmenu-6264"><div class="innertag" id="innertag-6264">Please wait</div></div>
- <input type="hidden" value="128" name="size" id="size-6264" class="hiddensize"/>
- <input type="hidden" value="6264" name="iconid" class="hiddeniconid"/>
- </div>
- </div>
-</div>
-
-
- <div class="icon" id="icon-6865" data-iconset-id="15" data-icon-id="6865">
- <div><div class="iconlinks">
- <div class="downloadlinks">
-
- <div class="btn-group"><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="6865" href="/icons/6865/download/png/128">
- PNG</a><a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">
- <span class="visible-desktop">More</span>
- <span class="caret"></span>
- </a>
- <ul class="dropdown-menu"><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="6865" href="/icons/6865/download/png/128" data-placement="right"><b>
- PNG</b> - 128 <em>&times;</em> 128 px</a></li><li class="divider"></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICO format for use in Windows." data-toggle="tooltip" data-format="ico" data-icon-id="6865" href="/icons/6865/download/ico" data-placement="right"><b>ICO</b> - Windows icon</a></a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICNS format for use in Apple OS X." data-toggle="tooltip" data-format="icns" data-icon-id="6865" href="/icons/6865/download/icns" data-placement="right"><b>ICNS</b> - Apple OS X icon</a></a></li><li class="divider"></li><li><a rel="nofollow" title="Download this icon in Base64 encoded PNG format for use on the Web." data-toggle="tooltip" data-format="png" data-action="get-base64" data-size="128" data-icon-id="6865" href="/icons/6865/download/png/128" data-placement="right"><b>
- PNG</b> - Base64 encoded</a></li><li class="divider"></li>
- <li><a href="http://support.iconfinder.com/customer/portal/articles/1377203-what-format-should-i-use-">What format should I use?</a></li>
- </ul>
- </div>
- </div>
- </div><a title="folder, music icon" class="iconlink" href="/icons/6865/folder_music_icon#size=128">
- <img alt="folder, music icon" class="tiled-icon" style="max-width: 128px; max-height: 128px;" src="https://cdn1.iconfinder.com/data/icons/DarkGlass_Reworked/128x128/filesystems/folder_music.png" />
- </a>
- <a href="#" class="favorite js-icon-favorite"><i data-icon="L"></i></a>
-
- <div class="info">
- <a rel="nofollow" title="Click here to see more information about this icon." id="infolink-6865" class="infolink" href="#">&nbsp;</a>
- <div class="infomenu" id="infomenu-6865">&nbsp;</div>
- <div class="tagmenu" id="tagmenu-6865"><div class="innertag" id="innertag-6865">Please wait</div></div>
- <input type="hidden" value="128" name="size" id="size-6865" class="hiddensize"/>
- <input type="hidden" value="6865" name="iconid" class="hiddeniconid"/>
- </div>
- </div>
-</div>
-
-
- <div class="icon" id="icon-6769" data-iconset-id="15" data-icon-id="6769">
- <div><div class="iconlinks">
- <div class="downloadlinks">
-
- <div class="btn-group"><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="6769" href="/icons/6769/download/png/128">
- PNG</a><a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">
- <span class="visible-desktop">More</span>
- <span class="caret"></span>
- </a>
- <ul class="dropdown-menu"><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="6769" href="/icons/6769/download/png/128" data-placement="right"><b>
- PNG</b> - 128 <em>&times;</em> 128 px</a></li><li class="divider"></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICO format for use in Windows." data-toggle="tooltip" data-format="ico" data-icon-id="6769" href="/icons/6769/download/ico" data-placement="right"><b>ICO</b> - Windows icon</a></a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICNS format for use in Apple OS X." data-toggle="tooltip" data-format="icns" data-icon-id="6769" href="/icons/6769/download/icns" data-placement="right"><b>ICNS</b> - Apple OS X icon</a></a></li><li class="divider"></li><li><a rel="nofollow" title="Download this icon in Base64 encoded PNG format for use on the Web." data-toggle="tooltip" data-format="png" data-action="get-base64" data-size="128" data-icon-id="6769" href="/icons/6769/download/png/128" data-placement="right"><b>
- PNG</b> - Base64 encoded</a></li><li class="divider"></li>
- <li><a href="http://support.iconfinder.com/customer/portal/articles/1377203-what-format-should-i-use-">What format should I use?</a></li>
- </ul>
- </div>
- </div>
- </div><a title="camera, canon, digital camera, dslr, photography icon" class="iconlink" href="/icons/6769/camera_canon_digital_camera_dslr_photography_icon#size=128">
- <img alt="camera, canon, digital camera, dslr, photography icon" class="tiled-icon" style="max-width: 128px; max-height: 128px;" src="https://cdn1.iconfinder.com/data/icons/DarkGlass_Reworked/128x128/devices/camera_unmount2.png" />
- </a>
- <a href="#" class="favorite js-icon-favorite"><i data-icon="L"></i></a>
-
- <div class="info">
- <a rel="nofollow" title="Click here to see more information about this icon." id="infolink-6769" class="infolink" href="#">&nbsp;</a>
- <div class="infomenu" id="infomenu-6769">&nbsp;</div>
- <div class="tagmenu" id="tagmenu-6769"><div class="innertag" id="innertag-6769">Please wait</div></div>
- <input type="hidden" value="128" name="size" id="size-6769" class="hiddensize"/>
- <input type="hidden" value="6769" name="iconid" class="hiddeniconid"/>
- </div>
- </div>
-</div>
-
-
- <div class="icon" id="icon-6184" data-iconset-id="15" data-icon-id="6184">
- <div><div class="iconlinks">
- <div class="downloadlinks">
-
- <div class="btn-group"><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="6184" href="/icons/6184/download/png/128">
- PNG</a><a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">
- <span class="visible-desktop">More</span>
- <span class="caret"></span>
- </a>
- <ul class="dropdown-menu"><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="6184" href="/icons/6184/download/png/128" data-placement="right"><b>
- PNG</b> - 128 <em>&times;</em> 128 px</a></li><li class="divider"></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICO format for use in Windows." data-toggle="tooltip" data-format="ico" data-icon-id="6184" href="/icons/6184/download/ico" data-placement="right"><b>ICO</b> - Windows icon</a></a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICNS format for use in Apple OS X." data-toggle="tooltip" data-format="icns" data-icon-id="6184" href="/icons/6184/download/icns" data-placement="right"><b>ICNS</b> - Apple OS X icon</a></a></li><li class="divider"></li><li><a rel="nofollow" title="Download this icon in Base64 encoded PNG format for use on the Web." data-toggle="tooltip" data-format="png" data-action="get-base64" data-size="128" data-icon-id="6184" href="/icons/6184/download/png/128" data-placement="right"><b>
- PNG</b> - Base64 encoded</a></li><li class="divider"></li>
- <li><a href="http://support.iconfinder.com/customer/portal/articles/1377203-what-format-should-i-use-">What format should I use?</a></li>
- </ul>
- </div>
- </div>
- </div><a title="find, search, user icon" class="iconlink" href="/icons/6184/find_search_user_icon#size=128">
- <img alt="find, search, user icon" class="tiled-icon" style="max-width: 128px; max-height: 128px;" src="https://cdn1.iconfinder.com/data/icons/DarkGlass_Reworked/128x128/actions/search_user.png" />
- </a>
- <a href="#" class="favorite js-icon-favorite"><i data-icon="L"></i></a>
-
- <div class="info">
- <a rel="nofollow" title="Click here to see more information about this icon." id="infolink-6184" class="infolink" href="#">&nbsp;</a>
- <div class="infomenu" id="infomenu-6184">&nbsp;</div>
- <div class="tagmenu" id="tagmenu-6184"><div class="innertag" id="innertag-6184">Please wait</div></div>
- <input type="hidden" value="128" name="size" id="size-6184" class="hiddensize"/>
- <input type="hidden" value="6184" name="iconid" class="hiddeniconid"/>
- </div>
- </div>
-</div>
-
-
- <div class="icon" id="icon-6915" data-iconset-id="15" data-icon-id="6915">
- <div><div class="iconlinks">
- <div class="downloadlinks">
-
- <div class="btn-group"><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="6915" href="/icons/6915/download/png/128">
- PNG</a><a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">
- <span class="visible-desktop">More</span>
- <span class="caret"></span>
- </a>
- <ul class="dropdown-menu"><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="6915" href="/icons/6915/download/png/128" data-placement="right"><b>
- PNG</b> - 128 <em>&times;</em> 128 px</a></li><li class="divider"></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICO format for use in Windows." data-toggle="tooltip" data-format="ico" data-icon-id="6915" href="/icons/6915/download/ico" data-placement="right"><b>ICO</b> - Windows icon</a></a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICNS format for use in Apple OS X." data-toggle="tooltip" data-format="icns" data-icon-id="6915" href="/icons/6915/download/icns" data-placement="right"><b>ICNS</b> - Apple OS X icon</a></a></li><li class="divider"></li><li><a rel="nofollow" title="Download this icon in Base64 encoded PNG format for use on the Web." data-toggle="tooltip" data-format="png" data-action="get-base64" data-size="128" data-icon-id="6915" href="/icons/6915/download/png/128" data-placement="right"><b>
- PNG</b> - Base64 encoded</a></li><li class="divider"></li>
- <li><a href="http://support.iconfinder.com/customer/portal/articles/1377203-what-format-should-i-use-">What format should I use?</a></li>
- </ul>
- </div>
- </div>
- </div><a title="book, gallery, images, photos, pictures icon" class="iconlink" href="/icons/6915/book_gallery_images_photos_pictures_icon#size=128">
- <img alt="book, gallery, images, photos, pictures icon" class="tiled-icon" style="max-width: 128px; max-height: 128px;" src="https://cdn1.iconfinder.com/data/icons/DarkGlass_Reworked/128x128/mimetypes/Clipping-_Picture-_alternative.png" />
- </a>
- <a href="#" class="favorite js-icon-favorite"><i data-icon="L"></i></a>
-
- <div class="info">
- <a rel="nofollow" title="Click here to see more information about this icon." id="infolink-6915" class="infolink" href="#">&nbsp;</a>
- <div class="infomenu" id="infomenu-6915">&nbsp;</div>
- <div class="tagmenu" id="tagmenu-6915"><div class="innertag" id="innertag-6915">Please wait</div></div>
- <input type="hidden" value="128" name="size" id="size-6915" class="hiddensize"/>
- <input type="hidden" value="6915" name="iconid" class="hiddeniconid"/>
- </div>
- </div>
-</div>
-
-
- <div class="icon" id="icon-6604" data-iconset-id="15" data-icon-id="6604">
- <div><div class="iconlinks">
- <div class="downloadlinks">
-
- <div class="btn-group"><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="6604" href="/icons/6604/download/png/128">
- PNG</a><a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">
- <span class="visible-desktop">More</span>
- <span class="caret"></span>
- </a>
- <ul class="dropdown-menu"><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="6604" href="/icons/6604/download/png/128" data-placement="right"><b>
- PNG</b> - 128 <em>&times;</em> 128 px</a></li><li class="divider"></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICO format for use in Windows." data-toggle="tooltip" data-format="ico" data-icon-id="6604" href="/icons/6604/download/ico" data-placement="right"><b>ICO</b> - Windows icon</a></a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICNS format for use in Apple OS X." data-toggle="tooltip" data-format="icns" data-icon-id="6604" href="/icons/6604/download/icns" data-placement="right"><b>ICNS</b> - Apple OS X icon</a></a></li><li class="divider"></li><li><a rel="nofollow" title="Download this icon in Base64 encoded PNG format for use on the Web." data-toggle="tooltip" data-format="png" data-action="get-base64" data-size="128" data-icon-id="6604" href="/icons/6604/download/png/128" data-placement="right"><b>
- PNG</b> - Base64 encoded</a></li><li class="divider"></li>
- <li><a href="http://support.iconfinder.com/customer/portal/articles/1377203-what-format-should-i-use-">What format should I use?</a></li>
- </ul>
- </div>
- </div>
- </div><a title="favourite, heart, love, package icon" class="iconlink" href="/icons/6604/favourite_heart_love_package_icon#size=128">
- <img alt="favourite, heart, love, package icon" class="tiled-icon" style="max-width: 128px; max-height: 128px;" src="https://cdn1.iconfinder.com/data/icons/DarkGlass_Reworked/128x128/apps/package_favourite.png" />
- </a>
- <a href="#" class="favorite js-icon-favorite"><i data-icon="L"></i></a>
-
- <div class="info">
- <a rel="nofollow" title="Click here to see more information about this icon." id="infolink-6604" class="infolink" href="#">&nbsp;</a>
- <div class="infomenu" id="infomenu-6604">&nbsp;</div>
- <div class="tagmenu" id="tagmenu-6604"><div class="innertag" id="innertag-6604">Please wait</div></div>
- <input type="hidden" value="128" name="size" id="size-6604" class="hiddensize"/>
- <input type="hidden" value="6604" name="iconid" class="hiddeniconid"/>
- </div>
- </div>
-</div>
-
-
- <div class="icon" id="icon-6665" data-iconset-id="15" data-icon-id="6665">
- <div><div class="iconlinks">
- <div class="downloadlinks">
-
- <div class="btn-group"><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="6665" href="/icons/6665/download/png/128">
- PNG</a><a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">
- <span class="visible-desktop">More</span>
- <span class="caret"></span>
- </a>
- <ul class="dropdown-menu"><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="6665" href="/icons/6665/download/png/128" data-placement="right"><b>
- PNG</b> - 128 <em>&times;</em> 128 px</a></li><li class="divider"></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICO format for use in Windows." data-toggle="tooltip" data-format="ico" data-icon-id="6665" href="/icons/6665/download/ico" data-placement="right"><b>ICO</b> - Windows icon</a></a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICNS format for use in Apple OS X." data-toggle="tooltip" data-format="icns" data-icon-id="6665" href="/icons/6665/download/icns" data-placement="right"><b>ICNS</b> - Apple OS X icon</a></a></li><li class="divider"></li><li><a rel="nofollow" title="Download this icon in Base64 encoded PNG format for use on the Web." data-toggle="tooltip" data-format="png" data-action="get-base64" data-size="128" data-icon-id="6665" href="/icons/6665/download/png/128" data-placement="right"><b>
- PNG</b> - Base64 encoded</a></li><li class="divider"></li>
- <li><a href="http://support.iconfinder.com/customer/portal/articles/1377203-what-format-should-i-use-">What format should I use?</a></li>
- </ul>
- </div>
- </div>
- </div><a title="hardware, server, settings, tools icon" class="iconlink" href="/icons/6665/hardware_server_settings_tools_icon#size=128">
- <img alt="hardware, server, settings, tools icon" class="tiled-icon" style="max-width: 128px; max-height: 128px;" src="https://cdn1.iconfinder.com/data/icons/DarkGlass_Reworked/128x128/apps/redhat-system_tools.png" />
- </a>
- <a href="#" class="favorite js-icon-favorite"><i data-icon="L"></i></a>
-
- <div class="info">
- <a rel="nofollow" title="Click here to see more information about this icon." id="infolink-6665" class="infolink" href="#">&nbsp;</a>
- <div class="infomenu" id="infomenu-6665">&nbsp;</div>
- <div class="tagmenu" id="tagmenu-6665"><div class="innertag" id="innertag-6665">Please wait</div></div>
- <input type="hidden" value="128" name="size" id="size-6665" class="hiddensize"/>
- <input type="hidden" value="6665" name="iconid" class="hiddeniconid"/>
- </div>
- </div>
-</div>
-
-
- <div class="icon" id="icon-6035" data-iconset-id="15" data-icon-id="6035">
- <div><div class="iconlinks">
- <div class="downloadlinks">
-
- <div class="btn-group"><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="6035" href="/icons/6035/download/png/128">
- PNG</a><a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">
- <span class="visible-desktop">More</span>
- <span class="caret"></span>
- </a>
- <ul class="dropdown-menu"><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="6035" href="/icons/6035/download/png/128" data-placement="right"><b>
- PNG</b> - 128 <em>&times;</em> 128 px</a></li><li class="divider"></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICO format for use in Windows." data-toggle="tooltip" data-format="ico" data-icon-id="6035" href="/icons/6035/download/ico" data-placement="right"><b>ICO</b> - Windows icon</a></a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICNS format for use in Apple OS X." data-toggle="tooltip" data-format="icns" data-icon-id="6035" href="/icons/6035/download/icns" data-placement="right"><b>ICNS</b> - Apple OS X icon</a></a></li><li class="divider"></li><li><a rel="nofollow" title="Download this icon in Base64 encoded PNG format for use on the Web." data-toggle="tooltip" data-format="png" data-action="get-base64" data-size="128" data-icon-id="6035" href="/icons/6035/download/png/128" data-placement="right"><b>
- PNG</b> - Base64 encoded</a></li><li class="divider"></li>
- <li><a href="http://support.iconfinder.com/customer/portal/articles/1377203-what-format-should-i-use-">What format should I use?</a></li>
- </ul>
- </div>
- </div>
- </div><a title="exit icon" class="iconlink" href="/icons/6035/exit_icon#size=128">
- <img alt="exit icon" class="tiled-icon" style="max-width: 128px; max-height: 128px;" src="https://cdn1.iconfinder.com/data/icons/DarkGlass_Reworked/128x128/actions/exit.png" />
- </a>
- <a href="#" class="favorite js-icon-favorite"><i data-icon="L"></i></a>
-
- <div class="info">
- <a rel="nofollow" title="Click here to see more information about this icon." id="infolink-6035" class="infolink" href="#">&nbsp;</a>
- <div class="infomenu" id="infomenu-6035">&nbsp;</div>
- <div class="tagmenu" id="tagmenu-6035"><div class="innertag" id="innertag-6035">Please wait</div></div>
- <input type="hidden" value="128" name="size" id="size-6035" class="hiddensize"/>
- <input type="hidden" value="6035" name="iconid" class="hiddeniconid"/>
- </div>
- </div>
-</div>
-
-
- <div class="icon" id="icon-6092" data-iconset-id="15" data-icon-id="6092">
- <div><div class="iconlinks">
- <div class="downloadlinks">
-
- <div class="btn-group"><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="6092" href="/icons/6092/download/png/128">
- PNG</a><a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">
- <span class="visible-desktop">More</span>
- <span class="caret"></span>
- </a>
- <ul class="dropdown-menu"><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="6092" href="/icons/6092/download/png/128" data-placement="right"><b>
- PNG</b> - 128 <em>&times;</em> 128 px</a></li><li class="divider"></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICO format for use in Windows." data-toggle="tooltip" data-format="ico" data-icon-id="6092" href="/icons/6092/download/ico" data-placement="right"><b>ICO</b> - Windows icon</a></a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICNS format for use in Apple OS X." data-toggle="tooltip" data-format="icns" data-icon-id="6092" href="/icons/6092/download/icns" data-placement="right"><b>ICNS</b> - Apple OS X icon</a></a></li><li class="divider"></li><li><a rel="nofollow" title="Download this icon in Base64 encoded PNG format for use on the Web." data-toggle="tooltip" data-format="png" data-action="get-base64" data-size="128" data-icon-id="6092" href="/icons/6092/download/png/128" data-placement="right"><b>
- PNG</b> - Base64 encoded</a></li><li class="divider"></li>
- <li><a href="http://support.iconfinder.com/customer/portal/articles/1377203-what-format-should-i-use-">What format should I use?</a></li>
- </ul>
- </div>
- </div>
- </div><a title="bookmark, favorite, rate, star icon" class="iconlink" href="/icons/6092/bookmark_favorite_rate_star_icon#size=128">
- <img alt="bookmark, favorite, rate, star icon" class="tiled-icon" style="max-width: 128px; max-height: 128px;" src="https://cdn1.iconfinder.com/data/icons/DarkGlass_Reworked/128x128/apps/keditbookmarks.png" />
- </a>
- <a href="#" class="favorite js-icon-favorite"><i data-icon="L"></i></a>
-
- <div class="info">
- <a rel="nofollow" title="Click here to see more information about this icon." id="infolink-6092" class="infolink" href="#">&nbsp;</a>
- <div class="infomenu" id="infomenu-6092">&nbsp;</div>
- <div class="tagmenu" id="tagmenu-6092"><div class="innertag" id="innertag-6092">Please wait</div></div>
- <input type="hidden" value="128" name="size" id="size-6092" class="hiddensize"/>
- <input type="hidden" value="6092" name="iconid" class="hiddeniconid"/>
- </div>
- </div>
-</div>
-
-
- <div class="icon" id="icon-6616" data-iconset-id="15" data-icon-id="6616">
- <div><div class="iconlinks">
- <div class="downloadlinks">
-
- <div class="btn-group"><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="6616" href="/icons/6616/download/png/128">
- PNG</a><a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">
- <span class="visible-desktop">More</span>
- <span class="caret"></span>
- </a>
- <ul class="dropdown-menu"><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="6616" href="/icons/6616/download/png/128" data-placement="right"><b>
- PNG</b> - 128 <em>&times;</em> 128 px</a></li><li class="divider"></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICO format for use in Windows." data-toggle="tooltip" data-format="ico" data-icon-id="6616" href="/icons/6616/download/ico" data-placement="right"><b>ICO</b> - Windows icon</a></a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICNS format for use in Apple OS X." data-toggle="tooltip" data-format="icns" data-icon-id="6616" href="/icons/6616/download/icns" data-placement="right"><b>ICNS</b> - Apple OS X icon</a></a></li><li class="divider"></li><li><a rel="nofollow" title="Download this icon in Base64 encoded PNG format for use on the Web." data-toggle="tooltip" data-format="png" data-action="get-base64" data-size="128" data-icon-id="6616" href="/icons/6616/download/png/128" data-placement="right"><b>
- PNG</b> - Base64 encoded</a></li><li class="divider"></li>
- <li><a href="http://support.iconfinder.com/customer/portal/articles/1377203-what-format-should-i-use-">What format should I use?</a></li>
- </ul>
- </div>
- </div>
- </div><a title="computer, linux icon" class="iconlink" href="/icons/6616/computer_linux_icon#size=128">
- <img alt="computer, linux icon" class="tiled-icon" style="max-width: 128px; max-height: 128px;" src="https://cdn1.iconfinder.com/data/icons/DarkGlass_Reworked/128x128/apps/package_system.png" />
- </a>
- <a href="#" class="favorite js-icon-favorite"><i data-icon="L"></i></a>
-
- <div class="info">
- <a rel="nofollow" title="Click here to see more information about this icon." id="infolink-6616" class="infolink" href="#">&nbsp;</a>
- <div class="infomenu" id="infomenu-6616">&nbsp;</div>
- <div class="tagmenu" id="tagmenu-6616"><div class="innertag" id="innertag-6616">Please wait</div></div>
- <input type="hidden" value="128" name="size" id="size-6616" class="hiddensize"/>
- <input type="hidden" value="6616" name="iconid" class="hiddeniconid"/>
- </div>
- </div>
-</div>
-
-
- <div class="icon" id="icon-6690" data-iconset-id="15" data-icon-id="6690">
- <div><div class="iconlinks">
- <div class="downloadlinks">
-
- <div class="btn-group"><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="6690" href="/icons/6690/download/png/128">
- PNG</a><a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">
- <span class="visible-desktop">More</span>
- <span class="caret"></span>
- </a>
- <ul class="dropdown-menu"><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="6690" href="/icons/6690/download/png/128" data-placement="right"><b>
- PNG</b> - 128 <em>&times;</em> 128 px</a></li><li class="divider"></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICO format for use in Windows." data-toggle="tooltip" data-format="ico" data-icon-id="6690" href="/icons/6690/download/ico" data-placement="right"><b>ICO</b> - Windows icon</a></a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICNS format for use in Apple OS X." data-toggle="tooltip" data-format="icns" data-icon-id="6690" href="/icons/6690/download/icns" data-placement="right"><b>ICNS</b> - Apple OS X icon</a></a></li><li class="divider"></li><li><a rel="nofollow" title="Download this icon in Base64 encoded PNG format for use on the Web." data-toggle="tooltip" data-format="png" data-action="get-base64" data-size="128" data-icon-id="6690" href="/icons/6690/download/png/128" data-placement="right"><b>
- PNG</b> - Base64 encoded</a></li><li class="divider"></li>
- <li><a href="http://support.iconfinder.com/customer/portal/articles/1377203-what-format-should-i-use-">What format should I use?</a></li>
- </ul>
- </div>
- </div>
- </div><a title="folder, key, secure icon" class="iconlink" href="/icons/6690/folder_key_secure_icon#size=128">
- <img alt="folder, key, secure icon" class="tiled-icon" style="max-width: 128px; max-height: 128px;" src="https://cdn1.iconfinder.com/data/icons/DarkGlass_Reworked/128x128/apps/system-config-root.png" />
- </a>
- <a href="#" class="favorite js-icon-favorite"><i data-icon="L"></i></a>
-
- <div class="info">
- <a rel="nofollow" title="Click here to see more information about this icon." id="infolink-6690" class="infolink" href="#">&nbsp;</a>
- <div class="infomenu" id="infomenu-6690">&nbsp;</div>
- <div class="tagmenu" id="tagmenu-6690"><div class="innertag" id="innertag-6690">Please wait</div></div>
- <input type="hidden" value="128" name="size" id="size-6690" class="hiddensize"/>
- <input type="hidden" value="6690" name="iconid" class="hiddeniconid"/>
- </div>
- </div>
-</div>
-
-
- <div class="icon" id="icon-6038" data-iconset-id="15" data-icon-id="6038">
- <div><div class="iconlinks">
- <div class="downloadlinks">
-
- <div class="btn-group"><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="6038" href="/icons/6038/download/png/128">
- PNG</a><a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">
- <span class="visible-desktop">More</span>
- <span class="caret"></span>
- </a>
- <ul class="dropdown-menu"><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="6038" href="/icons/6038/download/png/128" data-placement="right"><b>
- PNG</b> - 128 <em>&times;</em> 128 px</a></li><li class="divider"></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICO format for use in Windows." data-toggle="tooltip" data-format="ico" data-icon-id="6038" href="/icons/6038/download/ico" data-placement="right"><b>ICO</b> - Windows icon</a></a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICNS format for use in Apple OS X." data-toggle="tooltip" data-format="icns" data-icon-id="6038" href="/icons/6038/download/icns" data-placement="right"><b>ICNS</b> - Apple OS X icon</a></a></li><li class="divider"></li><li><a rel="nofollow" title="Download this icon in Base64 encoded PNG format for use on the Web." data-toggle="tooltip" data-format="png" data-action="get-base64" data-size="128" data-icon-id="6038" href="/icons/6038/download/png/128" data-placement="right"><b>
- PNG</b> - Base64 encoded</a></li><li class="divider"></li>
- <li><a href="http://support.iconfinder.com/customer/portal/articles/1377203-what-format-should-i-use-">What format should I use?</a></li>
- </ul>
- </div>
- </div>
- </div><a title="close, error, invalid, wrong icon" class="iconlink" href="/icons/6038/close_error_invalid_wrong_icon#size=128">
- <img alt="close, error, invalid, wrong icon" class="tiled-icon" style="max-width: 128px; max-height: 128px;" src="https://cdn1.iconfinder.com/data/icons/DarkGlass_Reworked/128x128/actions/fileclose.png" />
- </a>
- <a href="#" class="favorite js-icon-favorite"><i data-icon="L"></i></a>
-
- <div class="info">
- <a rel="nofollow" title="Click here to see more information about this icon." id="infolink-6038" class="infolink" href="#">&nbsp;</a>
- <div class="infomenu" id="infomenu-6038">&nbsp;</div>
- <div class="tagmenu" id="tagmenu-6038"><div class="innertag" id="innertag-6038">Please wait</div></div>
- <input type="hidden" value="128" name="size" id="size-6038" class="hiddensize"/>
- <input type="hidden" value="6038" name="iconid" class="hiddeniconid"/>
- </div>
- </div>
-</div>
-
-
- <div class="icon" id="icon-6634" data-iconset-id="15" data-icon-id="6634">
- <div><div class="iconlinks">
- <div class="downloadlinks">
-
- <div class="btn-group"><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="6634" href="/icons/6634/download/png/128">
- PNG</a><a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">
- <span class="visible-desktop">More</span>
- <span class="caret"></span>
- </a>
- <ul class="dropdown-menu"><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="6634" href="/icons/6634/download/png/128" data-placement="right"><b>
- PNG</b> - 128 <em>&times;</em> 128 px</a></li><li class="divider"></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICO format for use in Windows." data-toggle="tooltip" data-format="ico" data-icon-id="6634" href="/icons/6634/download/ico" data-placement="right"><b>ICO</b> - Windows icon</a></a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICNS format for use in Apple OS X." data-toggle="tooltip" data-format="icns" data-icon-id="6634" href="/icons/6634/download/icns" data-placement="right"><b>ICNS</b> - Apple OS X icon</a></a></li><li class="divider"></li><li><a rel="nofollow" title="Download this icon in Base64 encoded PNG format for use on the Web." data-toggle="tooltip" data-format="png" data-action="get-base64" data-size="128" data-icon-id="6634" href="/icons/6634/download/png/128" data-placement="right"><b>
- PNG</b> - Base64 encoded</a></li><li class="divider"></li>
- <li><a href="http://support.iconfinder.com/customer/portal/articles/1377203-what-format-should-i-use-">What format should I use?</a></li>
- </ul>
- </div>
- </div>
- </div><a title="calendar, date, event, plan icon" class="iconlink" href="/icons/6634/calendar_date_event_plan_icon#size=128">
- <img alt="calendar, date, event, plan icon" class="tiled-icon" style="max-width: 128px; max-height: 128px;" src="https://cdn1.iconfinder.com/data/icons/DarkGlass_Reworked/128x128/apps/plan.png" />
- </a>
- <a href="#" class="favorite js-icon-favorite"><i data-icon="L"></i></a>
-
- <div class="info">
- <a rel="nofollow" title="Click here to see more information about this icon." id="infolink-6634" class="infolink" href="#">&nbsp;</a>
- <div class="infomenu" id="infomenu-6634">&nbsp;</div>
- <div class="tagmenu" id="tagmenu-6634"><div class="innertag" id="innertag-6634">Please wait</div></div>
- <input type="hidden" value="128" name="size" id="size-6634" class="hiddensize"/>
- <input type="hidden" value="6634" name="iconid" class="hiddeniconid"/>
- </div>
- </div>
-</div>
-
-
- <div class="icon" id="icon-6507" data-iconset-id="15" data-icon-id="6507">
- <div><div class="iconlinks">
- <div class="downloadlinks">
-
- <div class="btn-group"><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="6507" href="/icons/6507/download/png/128">
- PNG</a><a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">
- <span class="visible-desktop">More</span>
- <span class="caret"></span>
- </a>
- <ul class="dropdown-menu"><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="6507" href="/icons/6507/download/png/128" data-placement="right"><b>
- PNG</b> - 128 <em>&times;</em> 128 px</a></li><li class="divider"></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICO format for use in Windows." data-toggle="tooltip" data-format="ico" data-icon-id="6507" href="/icons/6507/download/ico" data-placement="right"><b>ICO</b> - Windows icon</a></a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICNS format for use in Apple OS X." data-toggle="tooltip" data-format="icns" data-icon-id="6507" href="/icons/6507/download/icns" data-placement="right"><b>ICNS</b> - Apple OS X icon</a></a></li><li class="divider"></li><li><a rel="nofollow" title="Download this icon in Base64 encoded PNG format for use on the Web." data-toggle="tooltip" data-format="png" data-action="get-base64" data-size="128" data-icon-id="6507" href="/icons/6507/download/png/128" data-placement="right"><b>
- PNG</b> - Base64 encoded</a></li><li class="divider"></li>
- <li><a href="http://support.iconfinder.com/customer/portal/articles/1377203-what-format-should-i-use-">What format should I use?</a></li>
- </ul>
- </div>
- </div>
- </div><a title="box, inventory, package icon" class="iconlink" href="/icons/6507/box_inventory_package_icon#size=128">
- <img alt="box, inventory, package icon" class="tiled-icon" style="max-width: 128px; max-height: 128px;" src="https://cdn1.iconfinder.com/data/icons/DarkGlass_Reworked/128x128/apps/kthememgr.png" />
- </a>
- <a href="#" class="favorite js-icon-favorite"><i data-icon="L"></i></a>
-
- <div class="info">
- <a rel="nofollow" title="Click here to see more information about this icon." id="infolink-6507" class="infolink" href="#">&nbsp;</a>
- <div class="infomenu" id="infomenu-6507">&nbsp;</div>
- <div class="tagmenu" id="tagmenu-6507"><div class="innertag" id="innertag-6507">Please wait</div></div>
- <input type="hidden" value="128" name="size" id="size-6507" class="hiddensize"/>
- <input type="hidden" value="6507" name="iconid" class="hiddeniconid"/>
- </div>
- </div>
-</div>
-
-
- <div class="icon" id="icon-6028" data-iconset-id="15" data-icon-id="6028">
- <div><div class="iconlinks">
- <div class="downloadlinks">
-
- <div class="btn-group"><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="6028" href="/icons/6028/download/png/128">
- PNG</a><a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">
- <span class="visible-desktop">More</span>
- <span class="caret"></span>
- </a>
- <ul class="dropdown-menu"><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="6028" href="/icons/6028/download/png/128" data-placement="right"><b>
- PNG</b> - 128 <em>&times;</em> 128 px</a></li><li class="divider"></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICO format for use in Windows." data-toggle="tooltip" data-format="ico" data-icon-id="6028" href="/icons/6028/download/ico" data-placement="right"><b>ICO</b> - Windows icon</a></a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICNS format for use in Apple OS X." data-toggle="tooltip" data-format="icns" data-icon-id="6028" href="/icons/6028/download/icns" data-placement="right"><b>ICNS</b> - Apple OS X icon</a></a></li><li class="divider"></li><li><a rel="nofollow" title="Download this icon in Base64 encoded PNG format for use on the Web." data-toggle="tooltip" data-format="png" data-action="get-base64" data-size="128" data-icon-id="6028" href="/icons/6028/download/png/128" data-placement="right"><b>
- PNG</b> - Base64 encoded</a></li><li class="divider"></li>
- <li><a href="http://support.iconfinder.com/customer/portal/articles/1377203-what-format-should-i-use-">What format should I use?</a></li>
- </ul>
- </div>
- </div>
- </div><a title="emoticon, good, happy, smiley icon" class="iconlink" href="/icons/6028/emoticon_good_happy_smiley_icon#size=128">
- <img alt="emoticon, good, happy, smiley icon" class="tiled-icon" style="max-width: 128px; max-height: 128px;" src="https://cdn1.iconfinder.com/data/icons/DarkGlass_Reworked/128x128/actions/emoticon.png" />
- </a>
- <a href="#" class="favorite js-icon-favorite"><i data-icon="L"></i></a>
-
- <div class="info">
- <a rel="nofollow" title="Click here to see more information about this icon." id="infolink-6028" class="infolink" href="#">&nbsp;</a>
- <div class="infomenu" id="infomenu-6028">&nbsp;</div>
- <div class="tagmenu" id="tagmenu-6028"><div class="innertag" id="innertag-6028">Please wait</div></div>
- <input type="hidden" value="128" name="size" id="size-6028" class="hiddensize"/>
- <input type="hidden" value="6028" name="iconid" class="hiddeniconid"/>
- </div>
- </div>
-</div>
-
-
- <div class="icon" id="icon-6605" data-iconset-id="15" data-icon-id="6605">
- <div><div class="iconlinks">
- <div class="downloadlinks">
-
- <div class="btn-group"><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="6605" href="/icons/6605/download/png/128">
- PNG</a><a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">
- <span class="visible-desktop">More</span>
- <span class="caret"></span>
- </a>
- <ul class="dropdown-menu"><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="6605" href="/icons/6605/download/png/128" data-placement="right"><b>
- PNG</b> - 128 <em>&times;</em> 128 px</a></li><li class="divider"></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICO format for use in Windows." data-toggle="tooltip" data-format="ico" data-icon-id="6605" href="/icons/6605/download/ico" data-placement="right"><b>ICO</b> - Windows icon</a></a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICNS format for use in Apple OS X." data-toggle="tooltip" data-format="icns" data-icon-id="6605" href="/icons/6605/download/icns" data-placement="right"><b>ICNS</b> - Apple OS X icon</a></a></li><li class="divider"></li><li><a rel="nofollow" title="Download this icon in Base64 encoded PNG format for use on the Web." data-toggle="tooltip" data-format="png" data-action="get-base64" data-size="128" data-icon-id="6605" href="/icons/6605/download/png/128" data-placement="right"><b>
- PNG</b> - Base64 encoded</a></li><li class="divider"></li>
- <li><a href="http://support.iconfinder.com/customer/portal/articles/1377203-what-format-should-i-use-">What format should I use?</a></li>
- </ul>
- </div>
- </div>
- </div><a title="computer game, controller icon" class="iconlink" href="/icons/6605/computer_game_controller_icon#size=128">
- <img alt="computer game, controller icon" class="tiled-icon" style="max-width: 128px; max-height: 128px;" src="https://cdn1.iconfinder.com/data/icons/DarkGlass_Reworked/128x128/apps/package_games.png" />
- </a>
- <a href="#" class="favorite js-icon-favorite"><i data-icon="L"></i></a>
-
- <div class="info">
- <a rel="nofollow" title="Click here to see more information about this icon." id="infolink-6605" class="infolink" href="#">&nbsp;</a>
- <div class="infomenu" id="infomenu-6605">&nbsp;</div>
- <div class="tagmenu" id="tagmenu-6605"><div class="innertag" id="innertag-6605">Please wait</div></div>
- <input type="hidden" value="128" name="size" id="size-6605" class="hiddensize"/>
- <input type="hidden" value="6605" name="iconid" class="hiddeniconid"/>
- </div>
- </div>
-</div>
-
-
- <div class="icon" id="icon-6120" data-iconset-id="15" data-icon-id="6120">
- <div><div class="iconlinks">
- <div class="downloadlinks">
-
- <div class="btn-group"><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="6120" href="/icons/6120/download/png/128">
- PNG</a><a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">
- <span class="visible-desktop">More</span>
- <span class="caret"></span>
- </a>
- <ul class="dropdown-menu"><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="6120" href="/icons/6120/download/png/128" data-placement="right"><b>
- PNG</b> - 128 <em>&times;</em> 128 px</a></li><li class="divider"></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICO format for use in Windows." data-toggle="tooltip" data-format="ico" data-icon-id="6120" href="/icons/6120/download/ico" data-placement="right"><b>ICO</b> - Windows icon</a></a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICNS format for use in Apple OS X." data-toggle="tooltip" data-format="icns" data-icon-id="6120" href="/icons/6120/download/icns" data-placement="right"><b>ICNS</b> - Apple OS X icon</a></a></li><li class="divider"></li><li><a rel="nofollow" title="Download this icon in Base64 encoded PNG format for use on the Web." data-toggle="tooltip" data-format="png" data-action="get-base64" data-size="128" data-icon-id="6120" href="/icons/6120/download/png/128" data-placement="right"><b>
- PNG</b> - Base64 encoded</a></li><li class="divider"></li>
- <li><a href="http://support.iconfinder.com/customer/portal/articles/1377203-what-format-should-i-use-">What format should I use?</a></li>
- </ul>
- </div>
- </div>
- </div><a title="mail, mail box, post box, post office icon" class="iconlink" href="/icons/6120/mail_mail_box_post_box_post_office_icon#size=128">
- <img alt="mail, mail box, post box, post office icon" class="tiled-icon" style="max-width: 128px; max-height: 128px;" src="https://cdn1.iconfinder.com/data/icons/DarkGlass_Reworked/128x128/actions/mail_new.png" />
- </a>
- <a href="#" class="favorite js-icon-favorite"><i data-icon="L"></i></a>
-
- <div class="info">
- <a rel="nofollow" title="Click here to see more information about this icon." id="infolink-6120" class="infolink" href="#">&nbsp;</a>
- <div class="infomenu" id="infomenu-6120">&nbsp;</div>
- <div class="tagmenu" id="tagmenu-6120"><div class="innertag" id="innertag-6120">Please wait</div></div>
- <input type="hidden" value="128" name="size" id="size-6120" class="hiddensize"/>
- <input type="hidden" value="6120" name="iconid" class="hiddeniconid"/>
- </div>
- </div>
-</div>
-
-
- <div class="icon" id="icon-6196" data-iconset-id="15" data-icon-id="6196">
- <div><div class="iconlinks">
- <div class="downloadlinks">
-
- <div class="btn-group"><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="6196" href="/icons/6196/download/png/128">
- PNG</a><a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">
- <span class="visible-desktop">More</span>
- <span class="caret"></span>
- </a>
- <ul class="dropdown-menu"><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="6196" href="/icons/6196/download/png/128" data-placement="right"><b>
- PNG</b> - 128 <em>&times;</em> 128 px</a></li><li class="divider"></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICO format for use in Windows." data-toggle="tooltip" data-format="ico" data-icon-id="6196" href="/icons/6196/download/ico" data-placement="right"><b>ICO</b> - Windows icon</a></a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICNS format for use in Apple OS X." data-toggle="tooltip" data-format="icns" data-icon-id="6196" href="/icons/6196/download/icns" data-placement="right"><b>ICNS</b> - Apple OS X icon</a></a></li><li class="divider"></li><li><a rel="nofollow" title="Download this icon in Base64 encoded PNG format for use on the Web." data-toggle="tooltip" data-format="png" data-action="get-base64" data-size="128" data-icon-id="6196" href="/icons/6196/download/png/128" data-placement="right"><b>
- PNG</b> - Base64 encoded</a></li><li class="divider"></li>
- <li><a href="http://support.iconfinder.com/customer/portal/articles/1377203-what-format-should-i-use-">What format should I use?</a></li>
- </ul>
- </div>
- </div>
- </div><a title="delete, fail, stop icon" class="iconlink" href="/icons/6196/delete_fail_stop_icon#size=128">
- <img alt="delete, fail, stop icon" class="tiled-icon" style="max-width: 128px; max-height: 128px;" src="https://cdn1.iconfinder.com/data/icons/DarkGlass_Reworked/128x128/actions/stop.png" />
- </a>
- <a href="#" class="favorite js-icon-favorite"><i data-icon="L"></i></a>
-
- <div class="info">
- <a rel="nofollow" title="Click here to see more information about this icon." id="infolink-6196" class="infolink" href="#">&nbsp;</a>
- <div class="infomenu" id="infomenu-6196">&nbsp;</div>
- <div class="tagmenu" id="tagmenu-6196"><div class="innertag" id="innertag-6196">Please wait</div></div>
- <input type="hidden" value="128" name="size" id="size-6196" class="hiddensize"/>
- <input type="hidden" value="6196" name="iconid" class="hiddeniconid"/>
- </div>
- </div>
-</div>
-
-
- <div class="icon" id="icon-6551" data-iconset-id="15" data-icon-id="6551">
- <div><div class="iconlinks">
- <div class="downloadlinks">
-
- <div class="btn-group"><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="6551" href="/icons/6551/download/png/128">
- PNG</a><a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">
- <span class="visible-desktop">More</span>
- <span class="caret"></span>
- </a>
- <ul class="dropdown-menu"><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="6551" href="/icons/6551/download/png/128" data-placement="right"><b>
- PNG</b> - 128 <em>&times;</em> 128 px</a></li><li class="divider"></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICO format for use in Windows." data-toggle="tooltip" data-format="ico" data-icon-id="6551" href="/icons/6551/download/ico" data-placement="right"><b>ICO</b> - Windows icon</a></a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICNS format for use in Apple OS X." data-toggle="tooltip" data-format="icns" data-icon-id="6551" href="/icons/6551/download/icns" data-placement="right"><b>ICNS</b> - Apple OS X icon</a></a></li><li class="divider"></li><li><a rel="nofollow" title="Download this icon in Base64 encoded PNG format for use on the Web." data-toggle="tooltip" data-format="png" data-action="get-base64" data-size="128" data-icon-id="6551" href="/icons/6551/download/png/128" data-placement="right"><b>
- PNG</b> - Base64 encoded</a></li><li class="divider"></li>
- <li><a href="http://support.iconfinder.com/customer/portal/articles/1377203-what-format-should-i-use-">What format should I use?</a></li>
- </ul>
- </div>
- </div>
- </div><a title="adult, blue, film, pono, porno, sex, sexy, shutter, slider icon" class="iconlink" href="/icons/6551/adult_blue_film_pono_porno_sex_sexy_shutter_slider_icon#size=128">
- <img alt="adult, blue, film, pono, porno, sex, sexy, shutter, slider icon" class="tiled-icon" style="max-width: 128px; max-height: 128px;" src="https://cdn1.iconfinder.com/data/icons/DarkGlass_Reworked/128x128/apps/multimedia.png" />
- </a>
- <a href="#" class="favorite js-icon-favorite"><i data-icon="L"></i></a>
-
- <div class="info">
- <a rel="nofollow" title="Click here to see more information about this icon." id="infolink-6551" class="infolink" href="#">&nbsp;</a>
- <div class="infomenu" id="infomenu-6551">&nbsp;</div>
- <div class="tagmenu" id="tagmenu-6551"><div class="innertag" id="innertag-6551">Please wait</div></div>
- <input type="hidden" value="128" name="size" id="size-6551" class="hiddensize"/>
- <input type="hidden" value="6551" name="iconid" class="hiddeniconid"/>
- </div>
- </div>
-</div>
-
-
- </div>
- <div class="clearboth">&nbsp;</div>
-
-
- </div>
- </div>
- </div>
- <div class="row-fluid">
- <div class="span12 btn-iconset">
- <a class="btn" href="/iconsets/DarkGlass_Reworked">View all icons in icon set</a>
- </div>
- </div>
- <div class="row-fluid">
- <div class="span12">
- <div id="icons">
-
- <h3>Related icons</h3>
- <div data-algorithm="time-popularity-60-60-1" class="icondimension-128">
-
- <div class="icon" id="icon-115708" data-iconset-id="1286" data-icon-id="115708">
- <div><div class="iconlinks">
- <div class="downloadlinks">
-
- <div class="btn-group"><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in SVG format for use on the Web, in Adobe Illustrator or Sketch." data-toggle="tooltip" data-format="svg" data-size="128" data-icon-id="115708" href="/icons/115708/download/svg/128">
- SVG</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="115708" href="/icons/115708/download/png/128">
- PNG</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in Adobe Illustrator format." data-toggle="tooltip" data-format="ai" data-size="128" data-icon-id="115708" href="/icons/115708/download/ai/128">
- AI</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon as an Adobe Photoshop Shape." data-toggle="tooltip" data-format="csh" data-size="128" data-icon-id="115708" href="/icons/115708/download/csh/128">
- CSH</a><a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">
- <span class="visible-desktop">More</span>
- <span class="caret"></span>
- </a>
- <ul class="dropdown-menu"><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="512" data-icon-id="115708" href="/icons/115708/download/png/512" data-placement="right"><b>
- PNG</b> - 512 <em>&times;</em> 512 px</a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="256" data-icon-id="115708" href="/icons/115708/download/png/256" data-placement="right"><b>
- PNG</b> - 256 <em>&times;</em> 256 px</a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="115708" href="/icons/115708/download/png/128" data-placement="right"><b>
- PNG</b> - 128 <em>&times;</em> 128 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="64" data-icon-id="115708" href="/icons/115708/download/png/64" data-placement="right"><b>
- PNG</b> - 64 <em>&times;</em> 64 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="48" data-icon-id="115708" href="/icons/115708/download/png/48" data-placement="right"><b>
- PNG</b> - 48 <em>&times;</em> 48 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="32" data-icon-id="115708" href="/icons/115708/download/png/32" data-placement="right"><b>
- PNG</b> - 32 <em>&times;</em> 32 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="24" data-icon-id="115708" href="/icons/115708/download/png/24" data-placement="right"><b>
- PNG</b> - 24 <em>&times;</em> 24 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="20" data-icon-id="115708" href="/icons/115708/download/png/20" data-placement="right"><b>
- PNG</b> - 20 <em>&times;</em> 20 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="16" data-icon-id="115708" href="/icons/115708/download/png/16" data-placement="right"><b>
- PNG</b> - 16 <em>&times;</em> 16 px</a></li><li><a href="#" class="iconpreview-show-all-sizes" onclick="javascript: $(this).parent().siblings().removeClass('hidden'); $(this).hide(); event.stopPropagation(); return false;">Show all sizes</a></li><li class="divider"></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICO format for use in Windows." data-toggle="tooltip" data-format="ico" data-icon-id="115708" href="/icons/115708/download/ico" data-placement="right"><b>ICO</b> - Windows icon</a></a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICNS format for use in Apple OS X." data-toggle="tooltip" data-format="icns" data-icon-id="115708" href="/icons/115708/download/icns" data-placement="right"><b>ICNS</b> - Apple OS X icon</a></a></li><li class="divider"></li><li><a rel="nofollow" title="Download this icon in Base64 encoded SVG format for use on the Web." data-toggle="tooltip" data-format="svg" data-action="get-base64" data-size="128" data-icon-id="115708" href="/icons/115708/download/svg/128" data-placement="right"><b>
- SVG</b> - Base64 encoded</a></li><li><a rel="nofollow" title="Download this icon in Base64 encoded PNG format for use on the Web." data-toggle="tooltip" data-format="png" data-action="get-base64" data-size="128" data-icon-id="115708" href="/icons/115708/download/png/128" data-placement="right"><b>
- PNG</b> - Base64 encoded</a></li><li class="divider"></li>
- <li><a href="http://support.iconfinder.com/customer/portal/articles/1377203-what-format-should-i-use-">What format should I use?</a></li>
- </ul>
- </div>
- </div>
- </div><a title="news, newspaper, subscribe icon" class="iconlink" href="/icons/115708/news_newspaper_subscribe_icon#size=128">
- <img alt="news, newspaper, subscribe icon" class="tiled-icon" style="max-width: 128px; max-height: 128px;" src="https://cdn3.iconfinder.com/data/icons/linecons-free-vector-icons-pack/32/news-128.png" />
- </a>
- <a href="#" class="favorite js-icon-favorite"><i data-icon="L"></i></a>
-
- <div class="info">
- <a rel="nofollow" title="Click here to see more information about this icon." id="infolink-115708" class="infolink" href="#">&nbsp;</a>
- <div class="infomenu" id="infomenu-115708">&nbsp;</div>
- <div class="tagmenu" id="tagmenu-115708"><div class="innertag" id="innertag-115708">Please wait</div></div>
- <input type="hidden" value="128" name="size" id="size-115708" class="hiddensize"/>
- <input type="hidden" value="115708" name="iconid" class="hiddeniconid"/>
- </div>
- </div>
-</div>
-
-
- <div class="icon" id="icon-667363" data-iconset-id="18028" data-icon-id="667363">
- <div><div class="iconlinks">
- <div class="downloadlinks">
-
- <div class="btn-group"><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in SVG format for use on the Web, in Adobe Illustrator or Sketch." data-toggle="tooltip" data-format="svg" data-size="128" data-icon-id="667363" href="/icons/667363/download/svg/128">
- SVG</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="667363" href="/icons/667363/download/png/128">
- PNG</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in Adobe Illustrator format." data-toggle="tooltip" data-format="ai" data-size="128" data-icon-id="667363" href="/icons/667363/download/ai/128">
- AI</a><a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">
- <span class="visible-desktop">More</span>
- <span class="caret"></span>
- </a>
- <ul class="dropdown-menu"><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="512" data-icon-id="667363" href="/icons/667363/download/png/512" data-placement="right"><b>
- PNG</b> - 512 <em>&times;</em> 512 px</a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="256" data-icon-id="667363" href="/icons/667363/download/png/256" data-placement="right"><b>
- PNG</b> - 256 <em>&times;</em> 256 px</a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="667363" href="/icons/667363/download/png/128" data-placement="right"><b>
- PNG</b> - 128 <em>&times;</em> 128 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="64" data-icon-id="667363" href="/icons/667363/download/png/64" data-placement="right"><b>
- PNG</b> - 64 <em>&times;</em> 64 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="48" data-icon-id="667363" href="/icons/667363/download/png/48" data-placement="right"><b>
- PNG</b> - 48 <em>&times;</em> 48 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="32" data-icon-id="667363" href="/icons/667363/download/png/32" data-placement="right"><b>
- PNG</b> - 32 <em>&times;</em> 32 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="24" data-icon-id="667363" href="/icons/667363/download/png/24" data-placement="right"><b>
- PNG</b> - 24 <em>&times;</em> 24 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="20" data-icon-id="667363" href="/icons/667363/download/png/20" data-placement="right"><b>
- PNG</b> - 20 <em>&times;</em> 20 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="16" data-icon-id="667363" href="/icons/667363/download/png/16" data-placement="right"><b>
- PNG</b> - 16 <em>&times;</em> 16 px</a></li><li><a href="#" class="iconpreview-show-all-sizes" onclick="javascript: $(this).parent().siblings().removeClass('hidden'); $(this).hide(); event.stopPropagation(); return false;">Show all sizes</a></li><li class="divider"></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICO format for use in Windows." data-toggle="tooltip" data-format="ico" data-icon-id="667363" href="/icons/667363/download/ico" data-placement="right"><b>ICO</b> - Windows icon</a></a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICNS format for use in Apple OS X." data-toggle="tooltip" data-format="icns" data-icon-id="667363" href="/icons/667363/download/icns" data-placement="right"><b>ICNS</b> - Apple OS X icon</a></a></li><li class="divider"></li><li><a rel="nofollow" title="Download this icon in Base64 encoded SVG format for use on the Web." data-toggle="tooltip" data-format="svg" data-action="get-base64" data-size="128" data-icon-id="667363" href="/icons/667363/download/svg/128" data-placement="right"><b>
- SVG</b> - Base64 encoded</a></li><li><a rel="nofollow" title="Download this icon in Base64 encoded PNG format for use on the Web." data-toggle="tooltip" data-format="png" data-action="get-base64" data-size="128" data-icon-id="667363" href="/icons/667363/download/png/128" data-placement="right"><b>
- PNG</b> - Base64 encoded</a></li><li class="divider"></li>
- <li><a href="http://support.iconfinder.com/customer/portal/articles/1377203-what-format-should-i-use-">What format should I use?</a></li>
- </ul>
- </div>
- </div>
- </div><a title="news, newspaper, paper, stories, story icon" class="iconlink" href="/icons/667363/news_newspaper_paper_stories_story_icon#size=128">
- <img alt="news, newspaper, paper, stories, story icon" class="tiled-icon" style="max-width: 128px; max-height: 128px;" src="https://cdn3.iconfinder.com/data/icons/ballicons-reloaded-free/512/icon-70-128.png" />
- </a>
- <a href="#" class="favorite js-icon-favorite"><i data-icon="L"></i></a>
-
- <div class="info">
- <a rel="nofollow" title="Click here to see more information about this icon." id="infolink-667363" class="infolink" href="#">&nbsp;</a>
- <div class="infomenu" id="infomenu-667363">&nbsp;</div>
- <div class="tagmenu" id="tagmenu-667363"><div class="innertag" id="innertag-667363">Please wait</div></div>
- <input type="hidden" value="128" name="size" id="size-667363" class="hiddensize"/>
- <input type="hidden" value="667363" name="iconid" class="hiddeniconid"/>
- </div>
- </div>
-</div>
-
-
- <div class="icon premium" id="icon-739063" data-iconset-id="20364" data-icon-id="739063">
- <div><button class="btn-mini btn buynow" data-action="buy-icon" data-icon-id="739063">Buy now <span class="price">$1</span></button><div class="iconlinks" style="display: none;">
- <div class="downloadlinks">
-
- <div class="btn-group"><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in SVG format for use on the Web, in Adobe Illustrator or Sketch." data-toggle="tooltip" data-format="svg" data-size="128" data-icon-id="739063" href="/icons/739063/download/svg/128">
- SVG</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="739063" href="/icons/739063/download/png/128">
- PNG</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in Adobe Illustrator format." data-toggle="tooltip" data-format="ai" data-size="128" data-icon-id="739063" href="/icons/739063/download/ai/128">
- AI</a><a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">
- <span class="visible-desktop">More</span>
- <span class="caret"></span>
- </a>
- <ul class="dropdown-menu"><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="512" data-icon-id="739063" href="/icons/739063/download/png/512" data-placement="right"><b>
- PNG</b> - 512 <em>&times;</em> 512 px</a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="256" data-icon-id="739063" href="/icons/739063/download/png/256" data-placement="right"><b>
- PNG</b> - 256 <em>&times;</em> 256 px</a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="739063" href="/icons/739063/download/png/128" data-placement="right"><b>
- PNG</b> - 128 <em>&times;</em> 128 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="64" data-icon-id="739063" href="/icons/739063/download/png/64" data-placement="right"><b>
- PNG</b> - 64 <em>&times;</em> 64 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="48" data-icon-id="739063" href="/icons/739063/download/png/48" data-placement="right"><b>
- PNG</b> - 48 <em>&times;</em> 48 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="32" data-icon-id="739063" href="/icons/739063/download/png/32" data-placement="right"><b>
- PNG</b> - 32 <em>&times;</em> 32 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="24" data-icon-id="739063" href="/icons/739063/download/png/24" data-placement="right"><b>
- PNG</b> - 24 <em>&times;</em> 24 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="20" data-icon-id="739063" href="/icons/739063/download/png/20" data-placement="right"><b>
- PNG</b> - 20 <em>&times;</em> 20 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="16" data-icon-id="739063" href="/icons/739063/download/png/16" data-placement="right"><b>
- PNG</b> - 16 <em>&times;</em> 16 px</a></li><li><a href="#" class="iconpreview-show-all-sizes" onclick="javascript: $(this).parent().siblings().removeClass('hidden'); $(this).hide(); event.stopPropagation(); return false;">Show all sizes</a></li><li class="divider"></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICO format for use in Windows." data-toggle="tooltip" data-format="ico" data-icon-id="739063" href="/icons/739063/download/ico" data-placement="right"><b>ICO</b> - Windows icon</a></a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICNS format for use in Apple OS X." data-toggle="tooltip" data-format="icns" data-icon-id="739063" href="/icons/739063/download/icns" data-placement="right"><b>ICNS</b> - Apple OS X icon</a></a></li><li class="divider"></li><li><a rel="nofollow" title="Download this icon in Base64 encoded SVG format for use on the Web." data-toggle="tooltip" data-format="svg" data-action="get-base64" data-size="128" data-icon-id="739063" href="/icons/739063/download/svg/128" data-placement="right"><b>
- SVG</b> - Base64 encoded</a></li><li><a rel="nofollow" title="Download this icon in Base64 encoded PNG format for use on the Web." data-toggle="tooltip" data-format="png" data-action="get-base64" data-size="128" data-icon-id="739063" href="/icons/739063/download/png/128" data-placement="right"><b>
- PNG</b> - Base64 encoded</a></li><li class="divider"></li>
- <li><a href="http://support.iconfinder.com/customer/portal/articles/1377203-what-format-should-i-use-">What format should I use?</a></li>
- </ul>
- </div>
- </div>
- </div><a title="document, finance, journal, magazine, news, newspaper, tabloid icon" class="iconlink" href="/icons/739063/document_finance_journal_magazine_news_newspaper_tabloid_icon#size=128">
- <img alt="document, finance, journal, magazine, news, newspaper, tabloid icon" class="tiled-icon" style="max-width: 128px; max-height: 128px;" src="https://cdn2.iconfinder.com/data/icons/finance-26/128/finance_-62-128.png" data-private-src="/icons/739063/1162317/128/raster" />
- </a>
- <a href="#" class="favorite js-icon-favorite"><i data-icon="L"></i></a>
-
- <div class="info">
- <a rel="nofollow" title="Click here to see more information about this icon." id="infolink-739063" class="infolink" href="#">&nbsp;</a>
- <div class="infomenu" id="infomenu-739063">&nbsp;</div>
- <div class="tagmenu" id="tagmenu-739063"><div class="innertag" id="innertag-739063">Please wait</div></div>
- <input type="hidden" value="128" name="size" id="size-739063" class="hiddensize"/>
- <input type="hidden" value="739063" name="iconid" class="hiddeniconid"/>
- </div><div class="premium-label">Premium</div>
- </div>
-</div>
-
-
- <div class="icon" id="icon-290136" data-iconset-id="5361" data-icon-id="290136">
- <div><div class="iconlinks">
- <div class="downloadlinks">
-
- <div class="btn-group"><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in SVG format for use on the Web, in Adobe Illustrator or Sketch." data-toggle="tooltip" data-format="svg" data-size="128" data-icon-id="290136" href="/icons/290136/download/svg/128">
- SVG</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="290136" href="/icons/290136/download/png/128">
- PNG</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in Adobe Illustrator format." data-toggle="tooltip" data-format="ai" data-size="128" data-icon-id="290136" href="/icons/290136/download/ai/128">
- AI</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon as an Adobe Photoshop Shape." data-toggle="tooltip" data-format="csh" data-size="128" data-icon-id="290136" href="/icons/290136/download/csh/128">
- CSH</a><a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">
- <span class="visible-desktop">More</span>
- <span class="caret"></span>
- </a>
- <ul class="dropdown-menu"><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="512" data-icon-id="290136" href="/icons/290136/download/png/512" data-placement="right"><b>
- PNG</b> - 512 <em>&times;</em> 512 px</a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="256" data-icon-id="290136" href="/icons/290136/download/png/256" data-placement="right"><b>
- PNG</b> - 256 <em>&times;</em> 256 px</a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="290136" href="/icons/290136/download/png/128" data-placement="right"><b>
- PNG</b> - 128 <em>&times;</em> 128 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="64" data-icon-id="290136" href="/icons/290136/download/png/64" data-placement="right"><b>
- PNG</b> - 64 <em>&times;</em> 64 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="48" data-icon-id="290136" href="/icons/290136/download/png/48" data-placement="right"><b>
- PNG</b> - 48 <em>&times;</em> 48 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="32" data-icon-id="290136" href="/icons/290136/download/png/32" data-placement="right"><b>
- PNG</b> - 32 <em>&times;</em> 32 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="24" data-icon-id="290136" href="/icons/290136/download/png/24" data-placement="right"><b>
- PNG</b> - 24 <em>&times;</em> 24 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="20" data-icon-id="290136" href="/icons/290136/download/png/20" data-placement="right"><b>
- PNG</b> - 20 <em>&times;</em> 20 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="16" data-icon-id="290136" href="/icons/290136/download/png/16" data-placement="right"><b>
- PNG</b> - 16 <em>&times;</em> 16 px</a></li><li><a href="#" class="iconpreview-show-all-sizes" onclick="javascript: $(this).parent().siblings().removeClass('hidden'); $(this).hide(); event.stopPropagation(); return false;">Show all sizes</a></li><li class="divider"></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICO format for use in Windows." data-toggle="tooltip" data-format="ico" data-icon-id="290136" href="/icons/290136/download/ico" data-placement="right"><b>ICO</b> - Windows icon</a></a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICNS format for use in Apple OS X." data-toggle="tooltip" data-format="icns" data-icon-id="290136" href="/icons/290136/download/icns" data-placement="right"><b>ICNS</b> - Apple OS X icon</a></a></li><li class="divider"></li><li><a rel="nofollow" title="Download this icon in Base64 encoded SVG format for use on the Web." data-toggle="tooltip" data-format="svg" data-action="get-base64" data-size="128" data-icon-id="290136" href="/icons/290136/download/svg/128" data-placement="right"><b>
- SVG</b> - Base64 encoded</a></li><li><a rel="nofollow" title="Download this icon in Base64 encoded PNG format for use on the Web." data-toggle="tooltip" data-format="png" data-action="get-base64" data-size="128" data-icon-id="290136" href="/icons/290136/download/png/128" data-placement="right"><b>
- PNG</b> - Base64 encoded</a></li><li class="divider"></li>
- <li><a href="http://support.iconfinder.com/customer/portal/articles/1377203-what-format-should-i-use-">What format should I use?</a></li>
- </ul>
- </div>
- </div>
- </div><a title="communication, internet, media, news, newspaper icon" class="iconlink" href="/icons/290136/communication_internet_media_news_newspaper_icon#size=128">
- <img alt="communication, internet, media, news, newspaper icon" class="tiled-icon" style="max-width: 128px; max-height: 128px;" src="https://cdn4.iconfinder.com/data/icons/48-bubbles/48/14.News-128.png" />
- </a>
- <a href="#" class="favorite js-icon-favorite"><i data-icon="L"></i></a>
-
- <div class="info">
- <a rel="nofollow" title="Click here to see more information about this icon." id="infolink-290136" class="infolink" href="#">&nbsp;</a>
- <div class="infomenu" id="infomenu-290136">&nbsp;</div>
- <div class="tagmenu" id="tagmenu-290136"><div class="innertag" id="innertag-290136">Please wait</div></div>
- <input type="hidden" value="128" name="size" id="size-290136" class="hiddensize"/>
- <input type="hidden" value="290136" name="iconid" class="hiddeniconid"/>
- </div>
- </div>
-</div>
-
-
- <div class="icon" id="icon-751084" data-iconset-id="20726" data-icon-id="751084">
- <div><div class="iconlinks">
- <div class="downloadlinks">
-
- <div class="btn-group"><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in SVG format for use on the Web, in Adobe Illustrator or Sketch." data-toggle="tooltip" data-format="svg" data-size="128" data-icon-id="751084" href="/icons/751084/download/svg/128">
- SVG</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="751084" href="/icons/751084/download/png/128">
- PNG</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in Adobe Illustrator format." data-toggle="tooltip" data-format="ai" data-size="128" data-icon-id="751084" href="/icons/751084/download/ai/128">
- AI</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon as an Adobe Photoshop Shape." data-toggle="tooltip" data-format="csh" data-size="128" data-icon-id="751084" href="/icons/751084/download/csh/128">
- CSH</a><a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">
- <span class="visible-desktop">More</span>
- <span class="caret"></span>
- </a>
- <ul class="dropdown-menu"><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="512" data-icon-id="751084" href="/icons/751084/download/png/512" data-placement="right"><b>
- PNG</b> - 512 <em>&times;</em> 512 px</a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="256" data-icon-id="751084" href="/icons/751084/download/png/256" data-placement="right"><b>
- PNG</b> - 256 <em>&times;</em> 256 px</a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="751084" href="/icons/751084/download/png/128" data-placement="right"><b>
- PNG</b> - 128 <em>&times;</em> 128 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="64" data-icon-id="751084" href="/icons/751084/download/png/64" data-placement="right"><b>
- PNG</b> - 64 <em>&times;</em> 64 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="48" data-icon-id="751084" href="/icons/751084/download/png/48" data-placement="right"><b>
- PNG</b> - 48 <em>&times;</em> 48 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="32" data-icon-id="751084" href="/icons/751084/download/png/32" data-placement="right"><b>
- PNG</b> - 32 <em>&times;</em> 32 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="24" data-icon-id="751084" href="/icons/751084/download/png/24" data-placement="right"><b>
- PNG</b> - 24 <em>&times;</em> 24 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="20" data-icon-id="751084" href="/icons/751084/download/png/20" data-placement="right"><b>
- PNG</b> - 20 <em>&times;</em> 20 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="16" data-icon-id="751084" href="/icons/751084/download/png/16" data-placement="right"><b>
- PNG</b> - 16 <em>&times;</em> 16 px</a></li><li><a href="#" class="iconpreview-show-all-sizes" onclick="javascript: $(this).parent().siblings().removeClass('hidden'); $(this).hide(); event.stopPropagation(); return false;">Show all sizes</a></li><li class="divider"></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICO format for use in Windows." data-toggle="tooltip" data-format="ico" data-icon-id="751084" href="/icons/751084/download/ico" data-placement="right"><b>ICO</b> - Windows icon</a></a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICNS format for use in Apple OS X." data-toggle="tooltip" data-format="icns" data-icon-id="751084" href="/icons/751084/download/icns" data-placement="right"><b>ICNS</b> - Apple OS X icon</a></a></li><li class="divider"></li><li><a rel="nofollow" title="Download this icon in Base64 encoded SVG format for use on the Web." data-toggle="tooltip" data-format="svg" data-action="get-base64" data-size="128" data-icon-id="751084" href="/icons/751084/download/svg/128" data-placement="right"><b>
- SVG</b> - Base64 encoded</a></li><li><a rel="nofollow" title="Download this icon in Base64 encoded PNG format for use on the Web." data-toggle="tooltip" data-format="png" data-action="get-base64" data-size="128" data-icon-id="751084" href="/icons/751084/download/png/128" data-placement="right"><b>
- PNG</b> - Base64 encoded</a></li><li class="divider"></li>
- <li><a href="http://support.iconfinder.com/customer/portal/articles/1377203-what-format-should-i-use-">What format should I use?</a></li>
- </ul>
- </div>
- </div>
- </div><a title="media, news, newspaper, paper, press icon" class="iconlink" href="/icons/751084/media_news_newspaper_paper_press_icon#size=128">
- <img alt="media, news, newspaper, paper, press icon" class="tiled-icon" style="max-width: 128px; max-height: 128px;" src="https://cdn3.iconfinder.com/data/icons/outline-amenities-icon-set/64/Newspaper-128.png" />
- </a>
- <a href="#" class="favorite js-icon-favorite"><i data-icon="L"></i></a>
-
- <div class="info">
- <a rel="nofollow" title="Click here to see more information about this icon." id="infolink-751084" class="infolink" href="#">&nbsp;</a>
- <div class="infomenu" id="infomenu-751084">&nbsp;</div>
- <div class="tagmenu" id="tagmenu-751084"><div class="innertag" id="innertag-751084">Please wait</div></div>
- <input type="hidden" value="128" name="size" id="size-751084" class="hiddensize"/>
- <input type="hidden" value="751084" name="iconid" class="hiddeniconid"/>
- </div>
- </div>
-</div>
-
-
- <div class="icon" id="icon-728959" data-iconset-id="19986" data-icon-id="728959">
- <div><div class="iconlinks">
- <div class="downloadlinks">
-
- <div class="btn-group"><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in SVG format for use on the Web, in Adobe Illustrator or Sketch." data-toggle="tooltip" data-format="svg" data-size="128" data-icon-id="728959" href="/icons/728959/download/svg/128">
- SVG</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="728959" href="/icons/728959/download/png/128">
- PNG</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in Adobe Illustrator format." data-toggle="tooltip" data-format="ai" data-size="128" data-icon-id="728959" href="/icons/728959/download/ai/128">
- AI</a><a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">
- <span class="visible-desktop">More</span>
- <span class="caret"></span>
- </a>
- <ul class="dropdown-menu"><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="512" data-icon-id="728959" href="/icons/728959/download/png/512" data-placement="right"><b>
- PNG</b> - 512 <em>&times;</em> 512 px</a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="256" data-icon-id="728959" href="/icons/728959/download/png/256" data-placement="right"><b>
- PNG</b> - 256 <em>&times;</em> 256 px</a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="728959" href="/icons/728959/download/png/128" data-placement="right"><b>
- PNG</b> - 128 <em>&times;</em> 128 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="64" data-icon-id="728959" href="/icons/728959/download/png/64" data-placement="right"><b>
- PNG</b> - 64 <em>&times;</em> 64 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="48" data-icon-id="728959" href="/icons/728959/download/png/48" data-placement="right"><b>
- PNG</b> - 48 <em>&times;</em> 48 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="32" data-icon-id="728959" href="/icons/728959/download/png/32" data-placement="right"><b>
- PNG</b> - 32 <em>&times;</em> 32 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="24" data-icon-id="728959" href="/icons/728959/download/png/24" data-placement="right"><b>
- PNG</b> - 24 <em>&times;</em> 24 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="20" data-icon-id="728959" href="/icons/728959/download/png/20" data-placement="right"><b>
- PNG</b> - 20 <em>&times;</em> 20 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="16" data-icon-id="728959" href="/icons/728959/download/png/16" data-placement="right"><b>
- PNG</b> - 16 <em>&times;</em> 16 px</a></li><li><a href="#" class="iconpreview-show-all-sizes" onclick="javascript: $(this).parent().siblings().removeClass('hidden'); $(this).hide(); event.stopPropagation(); return false;">Show all sizes</a></li><li class="divider"></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICO format for use in Windows." data-toggle="tooltip" data-format="ico" data-icon-id="728959" href="/icons/728959/download/ico" data-placement="right"><b>ICO</b> - Windows icon</a></a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICNS format for use in Apple OS X." data-toggle="tooltip" data-format="icns" data-icon-id="728959" href="/icons/728959/download/icns" data-placement="right"><b>ICNS</b> - Apple OS X icon</a></a></li><li class="divider"></li><li><a rel="nofollow" title="Download this icon in Base64 encoded SVG format for use on the Web." data-toggle="tooltip" data-format="svg" data-action="get-base64" data-size="128" data-icon-id="728959" href="/icons/728959/download/svg/128" data-placement="right"><b>
- SVG</b> - Base64 encoded</a></li><li><a rel="nofollow" title="Download this icon in Base64 encoded PNG format for use on the Web." data-toggle="tooltip" data-format="png" data-action="get-base64" data-size="128" data-icon-id="728959" href="/icons/728959/download/png/128" data-placement="right"><b>
- PNG</b> - Base64 encoded</a></li><li class="divider"></li>
- <li><a href="http://support.iconfinder.com/customer/portal/articles/1377203-what-format-should-i-use-">What format should I use?</a></li>
- </ul>
- </div>
- </div>
- </div><a title="announcement, document, flyer, news, newspaper, page, paper icon" class="iconlink" href="/icons/728959/announcement_document_flyer_news_newspaper_page_paper_icon#size=128">
- <img alt="announcement, document, flyer, news, newspaper, page, paper icon" class="tiled-icon" style="max-width: 128px; max-height: 128px;" src="https://cdn2.iconfinder.com/data/icons/bitsies/128/News-128.png" />
- </a>
- <a href="#" class="favorite js-icon-favorite"><i data-icon="L"></i></a>
-
- <div class="info">
- <a rel="nofollow" title="Click here to see more information about this icon." id="infolink-728959" class="infolink" href="#">&nbsp;</a>
- <div class="infomenu" id="infomenu-728959">&nbsp;</div>
- <div class="tagmenu" id="tagmenu-728959"><div class="innertag" id="innertag-728959">Please wait</div></div>
- <input type="hidden" value="128" name="size" id="size-728959" class="hiddensize"/>
- <input type="hidden" value="728959" name="iconid" class="hiddeniconid"/>
- </div>
- </div>
-</div>
-
-
- <div class="icon premium" id="icon-740949" data-iconset-id="20420" data-icon-id="740949">
- <div><button class="btn-mini btn buynow" data-action="buy-icon" data-icon-id="740949">Buy now <span class="price">$1</span></button><div class="iconlinks" style="display: none;">
- <div class="downloadlinks">
-
- <div class="btn-group"><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in SVG format for use on the Web, in Adobe Illustrator or Sketch." data-toggle="tooltip" data-format="svg" data-size="128" data-icon-id="740949" href="/icons/740949/download/svg/128">
- SVG</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="740949" href="/icons/740949/download/png/128">
- PNG</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in Adobe Illustrator format." data-toggle="tooltip" data-format="ai" data-size="128" data-icon-id="740949" href="/icons/740949/download/ai/128">
- AI</a><a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">
- <span class="visible-desktop">More</span>
- <span class="caret"></span>
- </a>
- <ul class="dropdown-menu"><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="512" data-icon-id="740949" href="/icons/740949/download/png/512" data-placement="right"><b>
- PNG</b> - 512 <em>&times;</em> 512 px</a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="256" data-icon-id="740949" href="/icons/740949/download/png/256" data-placement="right"><b>
- PNG</b> - 256 <em>&times;</em> 256 px</a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="740949" href="/icons/740949/download/png/128" data-placement="right"><b>
- PNG</b> - 128 <em>&times;</em> 128 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="64" data-icon-id="740949" href="/icons/740949/download/png/64" data-placement="right"><b>
- PNG</b> - 64 <em>&times;</em> 64 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="48" data-icon-id="740949" href="/icons/740949/download/png/48" data-placement="right"><b>
- PNG</b> - 48 <em>&times;</em> 48 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="32" data-icon-id="740949" href="/icons/740949/download/png/32" data-placement="right"><b>
- PNG</b> - 32 <em>&times;</em> 32 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="24" data-icon-id="740949" href="/icons/740949/download/png/24" data-placement="right"><b>
- PNG</b> - 24 <em>&times;</em> 24 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="20" data-icon-id="740949" href="/icons/740949/download/png/20" data-placement="right"><b>
- PNG</b> - 20 <em>&times;</em> 20 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="16" data-icon-id="740949" href="/icons/740949/download/png/16" data-placement="right"><b>
- PNG</b> - 16 <em>&times;</em> 16 px</a></li><li><a href="#" class="iconpreview-show-all-sizes" onclick="javascript: $(this).parent().siblings().removeClass('hidden'); $(this).hide(); event.stopPropagation(); return false;">Show all sizes</a></li><li class="divider"></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICO format for use in Windows." data-toggle="tooltip" data-format="ico" data-icon-id="740949" href="/icons/740949/download/ico" data-placement="right"><b>ICO</b> - Windows icon</a></a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICNS format for use in Apple OS X." data-toggle="tooltip" data-format="icns" data-icon-id="740949" href="/icons/740949/download/icns" data-placement="right"><b>ICNS</b> - Apple OS X icon</a></a></li><li class="divider"></li><li><a rel="nofollow" title="Download this icon in Base64 encoded SVG format for use on the Web." data-toggle="tooltip" data-format="svg" data-action="get-base64" data-size="128" data-icon-id="740949" href="/icons/740949/download/svg/128" data-placement="right"><b>
- SVG</b> - Base64 encoded</a></li><li><a rel="nofollow" title="Download this icon in Base64 encoded PNG format for use on the Web." data-toggle="tooltip" data-format="png" data-action="get-base64" data-size="128" data-icon-id="740949" href="/icons/740949/download/png/128" data-placement="right"><b>
- PNG</b> - Base64 encoded</a></li><li class="divider"></li>
- <li><a href="http://support.iconfinder.com/customer/portal/articles/1377203-what-format-should-i-use-">What format should I use?</a></li>
- </ul>
- </div>
- </div>
- </div><a title="document, finance, journal, magazine, news, newspaper, tabloid icon" class="iconlink" href="/icons/740949/document_finance_journal_magazine_news_newspaper_tabloid_icon#size=128">
- <img alt="document, finance, journal, magazine, news, newspaper, tabloid icon" class="tiled-icon" style="max-width: 128px; max-height: 128px;" src="https://cdn2.iconfinder.com/data/icons/finance-vol-3-1/128/finance-62-128.png" data-private-src="/icons/740949/1164253/128/raster" />
- </a>
- <a href="#" class="favorite js-icon-favorite"><i data-icon="L"></i></a>
-
- <div class="info">
- <a rel="nofollow" title="Click here to see more information about this icon." id="infolink-740949" class="infolink" href="#">&nbsp;</a>
- <div class="infomenu" id="infomenu-740949">&nbsp;</div>
- <div class="tagmenu" id="tagmenu-740949"><div class="innertag" id="innertag-740949">Please wait</div></div>
- <input type="hidden" value="128" name="size" id="size-740949" class="hiddensize"/>
- <input type="hidden" value="740949" name="iconid" class="hiddeniconid"/>
- </div><div class="premium-label">Premium</div>
- </div>
-</div>
-
-
- <div class="icon premium" id="icon-739090" data-iconset-id="20365" data-icon-id="739090">
- <div><button class="btn-mini btn buynow" data-action="buy-icon" data-icon-id="739090">Buy now <span class="price">$1</span></button><div class="iconlinks" style="display: none;">
- <div class="downloadlinks">
-
- <div class="btn-group"><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in SVG format for use on the Web, in Adobe Illustrator or Sketch." data-toggle="tooltip" data-format="svg" data-size="128" data-icon-id="739090" href="/icons/739090/download/svg/128">
- SVG</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="739090" href="/icons/739090/download/png/128">
- PNG</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in Adobe Illustrator format." data-toggle="tooltip" data-format="ai" data-size="128" data-icon-id="739090" href="/icons/739090/download/ai/128">
- AI</a><a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">
- <span class="visible-desktop">More</span>
- <span class="caret"></span>
- </a>
- <ul class="dropdown-menu"><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="512" data-icon-id="739090" href="/icons/739090/download/png/512" data-placement="right"><b>
- PNG</b> - 512 <em>&times;</em> 512 px</a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="256" data-icon-id="739090" href="/icons/739090/download/png/256" data-placement="right"><b>
- PNG</b> - 256 <em>&times;</em> 256 px</a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="739090" href="/icons/739090/download/png/128" data-placement="right"><b>
- PNG</b> - 128 <em>&times;</em> 128 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="64" data-icon-id="739090" href="/icons/739090/download/png/64" data-placement="right"><b>
- PNG</b> - 64 <em>&times;</em> 64 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="48" data-icon-id="739090" href="/icons/739090/download/png/48" data-placement="right"><b>
- PNG</b> - 48 <em>&times;</em> 48 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="32" data-icon-id="739090" href="/icons/739090/download/png/32" data-placement="right"><b>
- PNG</b> - 32 <em>&times;</em> 32 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="24" data-icon-id="739090" href="/icons/739090/download/png/24" data-placement="right"><b>
- PNG</b> - 24 <em>&times;</em> 24 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="20" data-icon-id="739090" href="/icons/739090/download/png/20" data-placement="right"><b>
- PNG</b> - 20 <em>&times;</em> 20 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="16" data-icon-id="739090" href="/icons/739090/download/png/16" data-placement="right"><b>
- PNG</b> - 16 <em>&times;</em> 16 px</a></li><li><a href="#" class="iconpreview-show-all-sizes" onclick="javascript: $(this).parent().siblings().removeClass('hidden'); $(this).hide(); event.stopPropagation(); return false;">Show all sizes</a></li><li class="divider"></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICO format for use in Windows." data-toggle="tooltip" data-format="ico" data-icon-id="739090" href="/icons/739090/download/ico" data-placement="right"><b>ICO</b> - Windows icon</a></a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICNS format for use in Apple OS X." data-toggle="tooltip" data-format="icns" data-icon-id="739090" href="/icons/739090/download/icns" data-placement="right"><b>ICNS</b> - Apple OS X icon</a></a></li><li class="divider"></li><li><a rel="nofollow" title="Download this icon in Base64 encoded SVG format for use on the Web." data-toggle="tooltip" data-format="svg" data-action="get-base64" data-size="128" data-icon-id="739090" href="/icons/739090/download/svg/128" data-placement="right"><b>
- SVG</b> - Base64 encoded</a></li><li><a rel="nofollow" title="Download this icon in Base64 encoded PNG format for use on the Web." data-toggle="tooltip" data-format="png" data-action="get-base64" data-size="128" data-icon-id="739090" href="/icons/739090/download/png/128" data-placement="right"><b>
- PNG</b> - Base64 encoded</a></li><li class="divider"></li>
- <li><a href="http://support.iconfinder.com/customer/portal/articles/1377203-what-format-should-i-use-">What format should I use?</a></li>
- </ul>
- </div>
- </div>
- </div><a title="document, finance, journal, magazine, news, newspaper, tabloid icon" class="iconlink" href="/icons/739090/document_finance_journal_magazine_news_newspaper_tabloid_icon#size=128">
- <img alt="document, finance, journal, magazine, news, newspaper, tabloid icon" class="tiled-icon" style="max-width: 128px; max-height: 128px;" src="https://cdn2.iconfinder.com/data/icons/finance-vol-2-2/128/finance-62-128.png" data-private-src="/icons/739090/1162344/128/raster" />
- </a>
- <a href="#" class="favorite js-icon-favorite"><i data-icon="L"></i></a>
-
- <div class="info">
- <a rel="nofollow" title="Click here to see more information about this icon." id="infolink-739090" class="infolink" href="#">&nbsp;</a>
- <div class="infomenu" id="infomenu-739090">&nbsp;</div>
- <div class="tagmenu" id="tagmenu-739090"><div class="innertag" id="innertag-739090">Please wait</div></div>
- <input type="hidden" value="128" name="size" id="size-739090" class="hiddensize"/>
- <input type="hidden" value="739090" name="iconid" class="hiddeniconid"/>
- </div><div class="premium-label">Premium</div>
- </div>
-</div>
-
-
- <div class="icon premium" id="icon-766088" data-iconset-id="21159" data-icon-id="766088">
- <div><button class="btn-mini btn buynow" data-action="buy-icon" data-icon-id="766088">Buy now <span class="price">$1.50</span></button><div class="iconlinks" style="display: none;">
- <div class="downloadlinks">
-
- <div class="btn-group"><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in SVG format for use on the Web, in Adobe Illustrator or Sketch." data-toggle="tooltip" data-format="svg" data-size="128" data-icon-id="766088" href="/icons/766088/download/svg/128">
- SVG</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="766088" href="/icons/766088/download/png/128">
- PNG</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in Adobe Illustrator format." data-toggle="tooltip" data-format="ai" data-size="128" data-icon-id="766088" href="/icons/766088/download/ai/128">
- AI</a><a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">
- <span class="visible-desktop">More</span>
- <span class="caret"></span>
- </a>
- <ul class="dropdown-menu"><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="512" data-icon-id="766088" href="/icons/766088/download/png/512" data-placement="right"><b>
- PNG</b> - 512 <em>&times;</em> 512 px</a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="256" data-icon-id="766088" href="/icons/766088/download/png/256" data-placement="right"><b>
- PNG</b> - 256 <em>&times;</em> 256 px</a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="766088" href="/icons/766088/download/png/128" data-placement="right"><b>
- PNG</b> - 128 <em>&times;</em> 128 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="64" data-icon-id="766088" href="/icons/766088/download/png/64" data-placement="right"><b>
- PNG</b> - 64 <em>&times;</em> 64 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="48" data-icon-id="766088" href="/icons/766088/download/png/48" data-placement="right"><b>
- PNG</b> - 48 <em>&times;</em> 48 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="32" data-icon-id="766088" href="/icons/766088/download/png/32" data-placement="right"><b>
- PNG</b> - 32 <em>&times;</em> 32 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="24" data-icon-id="766088" href="/icons/766088/download/png/24" data-placement="right"><b>
- PNG</b> - 24 <em>&times;</em> 24 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="20" data-icon-id="766088" href="/icons/766088/download/png/20" data-placement="right"><b>
- PNG</b> - 20 <em>&times;</em> 20 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="16" data-icon-id="766088" href="/icons/766088/download/png/16" data-placement="right"><b>
- PNG</b> - 16 <em>&times;</em> 16 px</a></li><li><a href="#" class="iconpreview-show-all-sizes" onclick="javascript: $(this).parent().siblings().removeClass('hidden'); $(this).hide(); event.stopPropagation(); return false;">Show all sizes</a></li><li class="divider"></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICO format for use in Windows." data-toggle="tooltip" data-format="ico" data-icon-id="766088" href="/icons/766088/download/ico" data-placement="right"><b>ICO</b> - Windows icon</a></a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICNS format for use in Apple OS X." data-toggle="tooltip" data-format="icns" data-icon-id="766088" href="/icons/766088/download/icns" data-placement="right"><b>ICNS</b> - Apple OS X icon</a></a></li><li class="divider"></li><li><a rel="nofollow" title="Download this icon in Base64 encoded SVG format for use on the Web." data-toggle="tooltip" data-format="svg" data-action="get-base64" data-size="128" data-icon-id="766088" href="/icons/766088/download/svg/128" data-placement="right"><b>
- SVG</b> - Base64 encoded</a></li><li><a rel="nofollow" title="Download this icon in Base64 encoded PNG format for use on the Web." data-toggle="tooltip" data-format="png" data-action="get-base64" data-size="128" data-icon-id="766088" href="/icons/766088/download/png/128" data-placement="right"><b>
- PNG</b> - Base64 encoded</a></li><li class="divider"></li>
- <li><a href="http://support.iconfinder.com/customer/portal/articles/1377203-what-format-should-i-use-">What format should I use?</a></li>
- </ul>
- </div>
- </div>
- </div><a title="daily news, newspaper icon" class="iconlink" href="/icons/766088/daily_news_newspaper_icon#size=128">
- <img alt="daily news, newspaper icon" class="tiled-icon" style="max-width: 128px; max-height: 128px;" src="https://cdn4.iconfinder.com/data/icons/financial-6/128/044-128.png" data-private-src="/icons/766088/1190278/128/raster" />
- </a>
- <a href="#" class="favorite js-icon-favorite"><i data-icon="L"></i></a>
-
- <div class="info">
- <a rel="nofollow" title="Click here to see more information about this icon." id="infolink-766088" class="infolink" href="#">&nbsp;</a>
- <div class="infomenu" id="infomenu-766088">&nbsp;</div>
- <div class="tagmenu" id="tagmenu-766088"><div class="innertag" id="innertag-766088">Please wait</div></div>
- <input type="hidden" value="128" name="size" id="size-766088" class="hiddensize"/>
- <input type="hidden" value="766088" name="iconid" class="hiddeniconid"/>
- </div><div class="premium-label">Premium</div>
- </div>
-</div>
-
-
- <div class="icon premium" id="icon-780012" data-iconset-id="21543" data-icon-id="780012">
- <div><button class="btn-mini btn buynow" data-action="buy-icon" data-icon-id="780012">Buy now <span class="price">$1</span></button><div class="iconlinks" style="display: none;">
- <div class="downloadlinks">
-
- <div class="btn-group"><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in SVG format for use on the Web, in Adobe Illustrator or Sketch." data-toggle="tooltip" data-format="svg" data-size="128" data-icon-id="780012" href="/icons/780012/download/svg/128">
- SVG</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="780012" href="/icons/780012/download/png/128">
- PNG</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in Adobe Illustrator format." data-toggle="tooltip" data-format="ai" data-size="128" data-icon-id="780012" href="/icons/780012/download/ai/128">
- AI</a><a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">
- <span class="visible-desktop">More</span>
- <span class="caret"></span>
- </a>
- <ul class="dropdown-menu"><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="512" data-icon-id="780012" href="/icons/780012/download/png/512" data-placement="right"><b>
- PNG</b> - 512 <em>&times;</em> 512 px</a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="256" data-icon-id="780012" href="/icons/780012/download/png/256" data-placement="right"><b>
- PNG</b> - 256 <em>&times;</em> 256 px</a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="780012" href="/icons/780012/download/png/128" data-placement="right"><b>
- PNG</b> - 128 <em>&times;</em> 128 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="64" data-icon-id="780012" href="/icons/780012/download/png/64" data-placement="right"><b>
- PNG</b> - 64 <em>&times;</em> 64 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="48" data-icon-id="780012" href="/icons/780012/download/png/48" data-placement="right"><b>
- PNG</b> - 48 <em>&times;</em> 48 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="32" data-icon-id="780012" href="/icons/780012/download/png/32" data-placement="right"><b>
- PNG</b> - 32 <em>&times;</em> 32 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="24" data-icon-id="780012" href="/icons/780012/download/png/24" data-placement="right"><b>
- PNG</b> - 24 <em>&times;</em> 24 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="20" data-icon-id="780012" href="/icons/780012/download/png/20" data-placement="right"><b>
- PNG</b> - 20 <em>&times;</em> 20 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="16" data-icon-id="780012" href="/icons/780012/download/png/16" data-placement="right"><b>
- PNG</b> - 16 <em>&times;</em> 16 px</a></li><li><a href="#" class="iconpreview-show-all-sizes" onclick="javascript: $(this).parent().siblings().removeClass('hidden'); $(this).hide(); event.stopPropagation(); return false;">Show all sizes</a></li><li class="divider"></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICO format for use in Windows." data-toggle="tooltip" data-format="ico" data-icon-id="780012" href="/icons/780012/download/ico" data-placement="right"><b>ICO</b> - Windows icon</a></a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICNS format for use in Apple OS X." data-toggle="tooltip" data-format="icns" data-icon-id="780012" href="/icons/780012/download/icns" data-placement="right"><b>ICNS</b> - Apple OS X icon</a></a></li><li class="divider"></li><li><a rel="nofollow" title="Download this icon in Base64 encoded SVG format for use on the Web." data-toggle="tooltip" data-format="svg" data-action="get-base64" data-size="128" data-icon-id="780012" href="/icons/780012/download/svg/128" data-placement="right"><b>
- SVG</b> - Base64 encoded</a></li><li><a rel="nofollow" title="Download this icon in Base64 encoded PNG format for use on the Web." data-toggle="tooltip" data-format="png" data-action="get-base64" data-size="128" data-icon-id="780012" href="/icons/780012/download/png/128" data-placement="right"><b>
- PNG</b> - Base64 encoded</a></li><li class="divider"></li>
- <li><a href="http://support.iconfinder.com/customer/portal/articles/1377203-what-format-should-i-use-">What format should I use?</a></li>
- </ul>
- </div>
- </div>
- </div><a title="news, newspaper, press, press release icon" class="iconlink" href="/icons/780012/news_newspaper_press_press_release_icon#size=128">
- <img alt="news, newspaper, press, press release icon" class="tiled-icon" style="max-width: 128px; max-height: 128px;" src="https://cdn0.iconfinder.com/data/icons/seo-flat-long-shadow-1/512/Press_Release-128.png" data-private-src="/icons/780012/1204481/128/raster" />
- </a>
- <a href="#" class="favorite js-icon-favorite"><i data-icon="L"></i></a>
-
- <div class="info">
- <a rel="nofollow" title="Click here to see more information about this icon." id="infolink-780012" class="infolink" href="#">&nbsp;</a>
- <div class="infomenu" id="infomenu-780012">&nbsp;</div>
- <div class="tagmenu" id="tagmenu-780012"><div class="innertag" id="innertag-780012">Please wait</div></div>
- <input type="hidden" value="128" name="size" id="size-780012" class="hiddensize"/>
- <input type="hidden" value="780012" name="iconid" class="hiddeniconid"/>
- </div><div class="premium-label">Premium</div>
- </div>
-</div>
-
-
- <div class="icon" id="icon-328053" data-iconset-id="6705" data-icon-id="328053">
- <div><div class="iconlinks">
- <div class="downloadlinks">
-
- <div class="btn-group"><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in SVG format for use on the Web, in Adobe Illustrator or Sketch." data-toggle="tooltip" data-format="svg" data-size="128" data-icon-id="328053" href="/icons/328053/download/svg/128">
- SVG</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="328053" href="/icons/328053/download/png/128">
- PNG</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in Adobe Illustrator format." data-toggle="tooltip" data-format="ai" data-size="128" data-icon-id="328053" href="/icons/328053/download/ai/128">
- AI</a><a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">
- <span class="visible-desktop">More</span>
- <span class="caret"></span>
- </a>
- <ul class="dropdown-menu"><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="512" data-icon-id="328053" href="/icons/328053/download/png/512" data-placement="right"><b>
- PNG</b> - 512 <em>&times;</em> 512 px</a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="256" data-icon-id="328053" href="/icons/328053/download/png/256" data-placement="right"><b>
- PNG</b> - 256 <em>&times;</em> 256 px</a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="328053" href="/icons/328053/download/png/128" data-placement="right"><b>
- PNG</b> - 128 <em>&times;</em> 128 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="64" data-icon-id="328053" href="/icons/328053/download/png/64" data-placement="right"><b>
- PNG</b> - 64 <em>&times;</em> 64 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="48" data-icon-id="328053" href="/icons/328053/download/png/48" data-placement="right"><b>
- PNG</b> - 48 <em>&times;</em> 48 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="32" data-icon-id="328053" href="/icons/328053/download/png/32" data-placement="right"><b>
- PNG</b> - 32 <em>&times;</em> 32 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="24" data-icon-id="328053" href="/icons/328053/download/png/24" data-placement="right"><b>
- PNG</b> - 24 <em>&times;</em> 24 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="20" data-icon-id="328053" href="/icons/328053/download/png/20" data-placement="right"><b>
- PNG</b> - 20 <em>&times;</em> 20 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="16" data-icon-id="328053" href="/icons/328053/download/png/16" data-placement="right"><b>
- PNG</b> - 16 <em>&times;</em> 16 px</a></li><li><a href="#" class="iconpreview-show-all-sizes" onclick="javascript: $(this).parent().siblings().removeClass('hidden'); $(this).hide(); event.stopPropagation(); return false;">Show all sizes</a></li><li class="divider"></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICO format for use in Windows." data-toggle="tooltip" data-format="ico" data-icon-id="328053" href="/icons/328053/download/ico" data-placement="right"><b>ICO</b> - Windows icon</a></a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICNS format for use in Apple OS X." data-toggle="tooltip" data-format="icns" data-icon-id="328053" href="/icons/328053/download/icns" data-placement="right"><b>ICNS</b> - Apple OS X icon</a></a></li><li class="divider"></li><li><a rel="nofollow" title="Download this icon in Base64 encoded SVG format for use on the Web." data-toggle="tooltip" data-format="svg" data-action="get-base64" data-size="128" data-icon-id="328053" href="/icons/328053/download/svg/128" data-placement="right"><b>
- SVG</b> - Base64 encoded</a></li><li><a rel="nofollow" title="Download this icon in Base64 encoded PNG format for use on the Web." data-toggle="tooltip" data-format="png" data-action="get-base64" data-size="128" data-icon-id="328053" href="/icons/328053/download/png/128" data-placement="right"><b>
- PNG</b> - Base64 encoded</a></li><li class="divider"></li>
- <li><a href="http://support.iconfinder.com/customer/portal/articles/1377203-what-format-should-i-use-">What format should I use?</a></li>
- </ul>
- </div>
- </div>
- </div><a title="news, newspaper, paper news icon" class="iconlink" href="/icons/328053/news_newspaper_paper_news_icon#size=128">
- <img alt="news, newspaper, paper news icon" class="tiled-icon" style="max-width: 128px; max-height: 128px;" src="https://cdn2.iconfinder.com/data/icons/social-buttons-2/512/newspaper-128.png" />
- </a>
- <a href="#" class="favorite js-icon-favorite"><i data-icon="L"></i></a>
-
- <div class="info">
- <a rel="nofollow" title="Click here to see more information about this icon." id="infolink-328053" class="infolink" href="#">&nbsp;</a>
- <div class="infomenu" id="infomenu-328053">&nbsp;</div>
- <div class="tagmenu" id="tagmenu-328053"><div class="innertag" id="innertag-328053">Please wait</div></div>
- <input type="hidden" value="128" name="size" id="size-328053" class="hiddensize"/>
- <input type="hidden" value="328053" name="iconid" class="hiddeniconid"/>
- </div>
- </div>
-</div>
-
-
- <div class="icon" id="icon-753119" data-iconset-id="20794" data-icon-id="753119">
- <div><div class="iconlinks">
- <div class="downloadlinks">
-
- <div class="btn-group"><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in SVG format for use on the Web, in Adobe Illustrator or Sketch." data-toggle="tooltip" data-format="svg" data-size="128" data-icon-id="753119" href="/icons/753119/download/svg/128">
- SVG</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="753119" href="/icons/753119/download/png/128">
- PNG</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in Adobe Illustrator format." data-toggle="tooltip" data-format="ai" data-size="128" data-icon-id="753119" href="/icons/753119/download/ai/128">
- AI</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon as an Adobe Photoshop Shape." data-toggle="tooltip" data-format="csh" data-size="128" data-icon-id="753119" href="/icons/753119/download/csh/128">
- CSH</a><a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">
- <span class="visible-desktop">More</span>
- <span class="caret"></span>
- </a>
- <ul class="dropdown-menu"><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="512" data-icon-id="753119" href="/icons/753119/download/png/512" data-placement="right"><b>
- PNG</b> - 512 <em>&times;</em> 512 px</a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="256" data-icon-id="753119" href="/icons/753119/download/png/256" data-placement="right"><b>
- PNG</b> - 256 <em>&times;</em> 256 px</a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="753119" href="/icons/753119/download/png/128" data-placement="right"><b>
- PNG</b> - 128 <em>&times;</em> 128 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="64" data-icon-id="753119" href="/icons/753119/download/png/64" data-placement="right"><b>
- PNG</b> - 64 <em>&times;</em> 64 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="48" data-icon-id="753119" href="/icons/753119/download/png/48" data-placement="right"><b>
- PNG</b> - 48 <em>&times;</em> 48 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="32" data-icon-id="753119" href="/icons/753119/download/png/32" data-placement="right"><b>
- PNG</b> - 32 <em>&times;</em> 32 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="24" data-icon-id="753119" href="/icons/753119/download/png/24" data-placement="right"><b>
- PNG</b> - 24 <em>&times;</em> 24 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="20" data-icon-id="753119" href="/icons/753119/download/png/20" data-placement="right"><b>
- PNG</b> - 20 <em>&times;</em> 20 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="16" data-icon-id="753119" href="/icons/753119/download/png/16" data-placement="right"><b>
- PNG</b> - 16 <em>&times;</em> 16 px</a></li><li><a href="#" class="iconpreview-show-all-sizes" onclick="javascript: $(this).parent().siblings().removeClass('hidden'); $(this).hide(); event.stopPropagation(); return false;">Show all sizes</a></li><li class="divider"></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICO format for use in Windows." data-toggle="tooltip" data-format="ico" data-icon-id="753119" href="/icons/753119/download/ico" data-placement="right"><b>ICO</b> - Windows icon</a></a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICNS format for use in Apple OS X." data-toggle="tooltip" data-format="icns" data-icon-id="753119" href="/icons/753119/download/icns" data-placement="right"><b>ICNS</b> - Apple OS X icon</a></a></li><li class="divider"></li><li><a rel="nofollow" title="Download this icon in Base64 encoded SVG format for use on the Web." data-toggle="tooltip" data-format="svg" data-action="get-base64" data-size="128" data-icon-id="753119" href="/icons/753119/download/svg/128" data-placement="right"><b>
- SVG</b> - Base64 encoded</a></li><li><a rel="nofollow" title="Download this icon in Base64 encoded PNG format for use on the Web." data-toggle="tooltip" data-format="png" data-action="get-base64" data-size="128" data-icon-id="753119" href="/icons/753119/download/png/128" data-placement="right"><b>
- PNG</b> - Base64 encoded</a></li><li class="divider"></li>
- <li><a href="http://support.iconfinder.com/customer/portal/articles/1377203-what-format-should-i-use-">What format should I use?</a></li>
- </ul>
- </div>
- </div>
- </div><a title="media, news, newspaper, paper, press icon" class="iconlink" href="/icons/753119/media_news_newspaper_paper_press_icon#size=128">
- <img alt="media, news, newspaper, paper, press icon" class="tiled-icon" style="max-width: 128px; max-height: 128px;" src="https://cdn3.iconfinder.com/data/icons/solid-amenities-icon-set/64/Newspaper_2-128.png" />
- </a>
- <a href="#" class="favorite js-icon-favorite"><i data-icon="L"></i></a>
-
- <div class="info">
- <a rel="nofollow" title="Click here to see more information about this icon." id="infolink-753119" class="infolink" href="#">&nbsp;</a>
- <div class="infomenu" id="infomenu-753119">&nbsp;</div>
- <div class="tagmenu" id="tagmenu-753119"><div class="innertag" id="innertag-753119">Please wait</div></div>
- <input type="hidden" value="128" name="size" id="size-753119" class="hiddensize"/>
- <input type="hidden" value="753119" name="iconid" class="hiddeniconid"/>
- </div>
- </div>
-</div>
-
-
- <div class="icon premium" id="icon-869819" data-iconset-id="23886" data-icon-id="869819">
- <div><button class="btn-mini btn buynow" data-action="buy-icon" data-icon-id="869819">Buy now <span class="price">$1</span></button><div class="iconlinks" style="display: none;">
- <div class="downloadlinks">
-
- <div class="btn-group"><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in SVG format for use on the Web, in Adobe Illustrator or Sketch." data-toggle="tooltip" data-format="svg" data-size="128" data-icon-id="869819" href="/icons/869819/download/svg/128">
- SVG</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="869819" href="/icons/869819/download/png/128">
- PNG</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in Adobe Illustrator format." data-toggle="tooltip" data-format="ai" data-size="128" data-icon-id="869819" href="/icons/869819/download/ai/128">
- AI</a><a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">
- <span class="visible-desktop">More</span>
- <span class="caret"></span>
- </a>
- <ul class="dropdown-menu"><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="512" data-icon-id="869819" href="/icons/869819/download/png/512" data-placement="right"><b>
- PNG</b> - 512 <em>&times;</em> 512 px</a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="256" data-icon-id="869819" href="/icons/869819/download/png/256" data-placement="right"><b>
- PNG</b> - 256 <em>&times;</em> 256 px</a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="869819" href="/icons/869819/download/png/128" data-placement="right"><b>
- PNG</b> - 128 <em>&times;</em> 128 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="64" data-icon-id="869819" href="/icons/869819/download/png/64" data-placement="right"><b>
- PNG</b> - 64 <em>&times;</em> 64 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="48" data-icon-id="869819" href="/icons/869819/download/png/48" data-placement="right"><b>
- PNG</b> - 48 <em>&times;</em> 48 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="32" data-icon-id="869819" href="/icons/869819/download/png/32" data-placement="right"><b>
- PNG</b> - 32 <em>&times;</em> 32 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="24" data-icon-id="869819" href="/icons/869819/download/png/24" data-placement="right"><b>
- PNG</b> - 24 <em>&times;</em> 24 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="20" data-icon-id="869819" href="/icons/869819/download/png/20" data-placement="right"><b>
- PNG</b> - 20 <em>&times;</em> 20 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="16" data-icon-id="869819" href="/icons/869819/download/png/16" data-placement="right"><b>
- PNG</b> - 16 <em>&times;</em> 16 px</a></li><li><a href="#" class="iconpreview-show-all-sizes" onclick="javascript: $(this).parent().siblings().removeClass('hidden'); $(this).hide(); event.stopPropagation(); return false;">Show all sizes</a></li><li class="divider"></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICO format for use in Windows." data-toggle="tooltip" data-format="ico" data-icon-id="869819" href="/icons/869819/download/ico" data-placement="right"><b>ICO</b> - Windows icon</a></a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICNS format for use in Apple OS X." data-toggle="tooltip" data-format="icns" data-icon-id="869819" href="/icons/869819/download/icns" data-placement="right"><b>ICNS</b> - Apple OS X icon</a></a></li><li class="divider"></li><li><a rel="nofollow" title="Download this icon in Base64 encoded SVG format for use on the Web." data-toggle="tooltip" data-format="svg" data-action="get-base64" data-size="128" data-icon-id="869819" href="/icons/869819/download/svg/128" data-placement="right"><b>
- SVG</b> - Base64 encoded</a></li><li><a rel="nofollow" title="Download this icon in Base64 encoded PNG format for use on the Web." data-toggle="tooltip" data-format="png" data-action="get-base64" data-size="128" data-icon-id="869819" href="/icons/869819/download/png/128" data-placement="right"><b>
- PNG</b> - Base64 encoded</a></li><li class="divider"></li>
- <li><a href="http://support.iconfinder.com/customer/portal/articles/1377203-what-format-should-i-use-">What format should I use?</a></li>
- </ul>
- </div>
- </div>
- </div><a title="document, finance, journal, magazine, news, newspaper, tabloid icon" class="iconlink" href="/icons/869819/document_finance_journal_magazine_news_newspaper_tabloid_icon#size=128">
- <img alt="document, finance, journal, magazine, news, newspaper, tabloid icon" class="tiled-icon" style="max-width: 128px; max-height: 128px;" src="https://cdn0.iconfinder.com/data/icons/line-color-mix-vol-3/128/office-78-128.png" data-private-src="/icons/869819/1295958/128/raster" />
- </a>
- <a href="#" class="favorite js-icon-favorite"><i data-icon="L"></i></a>
-
- <div class="info">
- <a rel="nofollow" title="Click here to see more information about this icon." id="infolink-869819" class="infolink" href="#">&nbsp;</a>
- <div class="infomenu" id="infomenu-869819">&nbsp;</div>
- <div class="tagmenu" id="tagmenu-869819"><div class="innertag" id="innertag-869819">Please wait</div></div>
- <input type="hidden" value="128" name="size" id="size-869819" class="hiddensize"/>
- <input type="hidden" value="869819" name="iconid" class="hiddeniconid"/>
- </div><div class="premium-label">Premium</div>
- </div>
-</div>
-
-
- <div class="icon premium" id="icon-868750" data-iconset-id="23858" data-icon-id="868750">
- <div><button class="btn-mini btn buynow" data-action="buy-icon" data-icon-id="868750">Buy now <span class="price">$1</span></button><div class="iconlinks" style="display: none;">
- <div class="downloadlinks">
-
- <div class="btn-group"><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in SVG format for use on the Web, in Adobe Illustrator or Sketch." data-toggle="tooltip" data-format="svg" data-size="128" data-icon-id="868750" href="/icons/868750/download/svg/128">
- SVG</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="868750" href="/icons/868750/download/png/128">
- PNG</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in Adobe Illustrator format." data-toggle="tooltip" data-format="ai" data-size="128" data-icon-id="868750" href="/icons/868750/download/ai/128">
- AI</a><a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">
- <span class="visible-desktop">More</span>
- <span class="caret"></span>
- </a>
- <ul class="dropdown-menu"><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="512" data-icon-id="868750" href="/icons/868750/download/png/512" data-placement="right"><b>
- PNG</b> - 512 <em>&times;</em> 512 px</a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="256" data-icon-id="868750" href="/icons/868750/download/png/256" data-placement="right"><b>
- PNG</b> - 256 <em>&times;</em> 256 px</a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="868750" href="/icons/868750/download/png/128" data-placement="right"><b>
- PNG</b> - 128 <em>&times;</em> 128 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="64" data-icon-id="868750" href="/icons/868750/download/png/64" data-placement="right"><b>
- PNG</b> - 64 <em>&times;</em> 64 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="48" data-icon-id="868750" href="/icons/868750/download/png/48" data-placement="right"><b>
- PNG</b> - 48 <em>&times;</em> 48 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="32" data-icon-id="868750" href="/icons/868750/download/png/32" data-placement="right"><b>
- PNG</b> - 32 <em>&times;</em> 32 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="24" data-icon-id="868750" href="/icons/868750/download/png/24" data-placement="right"><b>
- PNG</b> - 24 <em>&times;</em> 24 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="20" data-icon-id="868750" href="/icons/868750/download/png/20" data-placement="right"><b>
- PNG</b> - 20 <em>&times;</em> 20 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="16" data-icon-id="868750" href="/icons/868750/download/png/16" data-placement="right"><b>
- PNG</b> - 16 <em>&times;</em> 16 px</a></li><li><a href="#" class="iconpreview-show-all-sizes" onclick="javascript: $(this).parent().siblings().removeClass('hidden'); $(this).hide(); event.stopPropagation(); return false;">Show all sizes</a></li><li class="divider"></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICO format for use in Windows." data-toggle="tooltip" data-format="ico" data-icon-id="868750" href="/icons/868750/download/ico" data-placement="right"><b>ICO</b> - Windows icon</a></a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICNS format for use in Apple OS X." data-toggle="tooltip" data-format="icns" data-icon-id="868750" href="/icons/868750/download/icns" data-placement="right"><b>ICNS</b> - Apple OS X icon</a></a></li><li class="divider"></li><li><a rel="nofollow" title="Download this icon in Base64 encoded SVG format for use on the Web." data-toggle="tooltip" data-format="svg" data-action="get-base64" data-size="128" data-icon-id="868750" href="/icons/868750/download/svg/128" data-placement="right"><b>
- SVG</b> - Base64 encoded</a></li><li><a rel="nofollow" title="Download this icon in Base64 encoded PNG format for use on the Web." data-toggle="tooltip" data-format="png" data-action="get-base64" data-size="128" data-icon-id="868750" href="/icons/868750/download/png/128" data-placement="right"><b>
- PNG</b> - Base64 encoded</a></li><li class="divider"></li>
- <li><a href="http://support.iconfinder.com/customer/portal/articles/1377203-what-format-should-i-use-">What format should I use?</a></li>
- </ul>
- </div>
- </div>
- </div><a title="document, finance, journal, magazine, news, newspaper, tabloid icon" class="iconlink" href="/icons/868750/document_finance_journal_magazine_news_newspaper_tabloid_icon#size=128">
- <img alt="document, finance, journal, magazine, news, newspaper, tabloid icon" class="tiled-icon" style="max-width: 128px; max-height: 128px;" src="https://cdn0.iconfinder.com/data/icons/line-color-mix-vol-1/128/office-08-128.png" data-private-src="/icons/868750/1294889/128/raster" />
- </a>
- <a href="#" class="favorite js-icon-favorite"><i data-icon="L"></i></a>
-
- <div class="info">
- <a rel="nofollow" title="Click here to see more information about this icon." id="infolink-868750" class="infolink" href="#">&nbsp;</a>
- <div class="infomenu" id="infomenu-868750">&nbsp;</div>
- <div class="tagmenu" id="tagmenu-868750"><div class="innertag" id="innertag-868750">Please wait</div></div>
- <input type="hidden" value="128" name="size" id="size-868750" class="hiddensize"/>
- <input type="hidden" value="868750" name="iconid" class="hiddeniconid"/>
- </div><div class="premium-label">Premium</div>
- </div>
-</div>
-
-
- <div class="icon premium" id="icon-770935" data-iconset-id="21306" data-icon-id="770935">
- <div><button class="btn-mini btn buynow" data-action="buy-icon" data-icon-id="770935">Buy now <span class="price">$1</span></button><div class="iconlinks" style="display: none;">
- <div class="downloadlinks">
-
- <div class="btn-group"><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in SVG format for use on the Web, in Adobe Illustrator or Sketch." data-toggle="tooltip" data-format="svg" data-size="128" data-icon-id="770935" href="/icons/770935/download/svg/128">
- SVG</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="770935" href="/icons/770935/download/png/128">
- PNG</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in Adobe Illustrator format." data-toggle="tooltip" data-format="ai" data-size="128" data-icon-id="770935" href="/icons/770935/download/ai/128">
- AI</a><a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">
- <span class="visible-desktop">More</span>
- <span class="caret"></span>
- </a>
- <ul class="dropdown-menu"><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="512" data-icon-id="770935" href="/icons/770935/download/png/512" data-placement="right"><b>
- PNG</b> - 512 <em>&times;</em> 512 px</a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="256" data-icon-id="770935" href="/icons/770935/download/png/256" data-placement="right"><b>
- PNG</b> - 256 <em>&times;</em> 256 px</a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="770935" href="/icons/770935/download/png/128" data-placement="right"><b>
- PNG</b> - 128 <em>&times;</em> 128 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="64" data-icon-id="770935" href="/icons/770935/download/png/64" data-placement="right"><b>
- PNG</b> - 64 <em>&times;</em> 64 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="48" data-icon-id="770935" href="/icons/770935/download/png/48" data-placement="right"><b>
- PNG</b> - 48 <em>&times;</em> 48 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="32" data-icon-id="770935" href="/icons/770935/download/png/32" data-placement="right"><b>
- PNG</b> - 32 <em>&times;</em> 32 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="24" data-icon-id="770935" href="/icons/770935/download/png/24" data-placement="right"><b>
- PNG</b> - 24 <em>&times;</em> 24 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="20" data-icon-id="770935" href="/icons/770935/download/png/20" data-placement="right"><b>
- PNG</b> - 20 <em>&times;</em> 20 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="16" data-icon-id="770935" href="/icons/770935/download/png/16" data-placement="right"><b>
- PNG</b> - 16 <em>&times;</em> 16 px</a></li><li><a href="#" class="iconpreview-show-all-sizes" onclick="javascript: $(this).parent().siblings().removeClass('hidden'); $(this).hide(); event.stopPropagation(); return false;">Show all sizes</a></li><li class="divider"></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICO format for use in Windows." data-toggle="tooltip" data-format="ico" data-icon-id="770935" href="/icons/770935/download/ico" data-placement="right"><b>ICO</b> - Windows icon</a></a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICNS format for use in Apple OS X." data-toggle="tooltip" data-format="icns" data-icon-id="770935" href="/icons/770935/download/icns" data-placement="right"><b>ICNS</b> - Apple OS X icon</a></a></li><li class="divider"></li><li><a rel="nofollow" title="Download this icon in Base64 encoded SVG format for use on the Web." data-toggle="tooltip" data-format="svg" data-action="get-base64" data-size="128" data-icon-id="770935" href="/icons/770935/download/svg/128" data-placement="right"><b>
- SVG</b> - Base64 encoded</a></li><li><a rel="nofollow" title="Download this icon in Base64 encoded PNG format for use on the Web." data-toggle="tooltip" data-format="png" data-action="get-base64" data-size="128" data-icon-id="770935" href="/icons/770935/download/png/128" data-placement="right"><b>
- PNG</b> - Base64 encoded</a></li><li class="divider"></li>
- <li><a href="http://support.iconfinder.com/customer/portal/articles/1377203-what-format-should-i-use-">What format should I use?</a></li>
- </ul>
- </div>
- </div>
- </div><a title="news, newspaper, press, press release icon" class="iconlink" href="/icons/770935/news_newspaper_press_press_release_icon#size=128">
- <img alt="news, newspaper, press, press release icon" class="tiled-icon" style="max-width: 128px; max-height: 128px;" src="https://cdn4.iconfinder.com/data/icons/seo-flat-2/512/Press_Release-128.png" data-private-src="/icons/770935/1195232/128/raster" />
- </a>
- <a href="#" class="favorite js-icon-favorite"><i data-icon="L"></i></a>
-
- <div class="info">
- <a rel="nofollow" title="Click here to see more information about this icon." id="infolink-770935" class="infolink" href="#">&nbsp;</a>
- <div class="infomenu" id="infomenu-770935">&nbsp;</div>
- <div class="tagmenu" id="tagmenu-770935"><div class="innertag" id="innertag-770935">Please wait</div></div>
- <input type="hidden" value="128" name="size" id="size-770935" class="hiddensize"/>
- <input type="hidden" value="770935" name="iconid" class="hiddeniconid"/>
- </div><div class="premium-label">Premium</div>
- </div>
-</div>
-
-
- <div class="icon premium" id="icon-383356" data-iconset-id="8567" data-icon-id="383356">
- <div><button class="btn-mini btn buynow" data-action="buy-icon" data-icon-id="383356">Buy now <span class="price">$1</span></button><div class="iconlinks" style="display: none;">
- <div class="downloadlinks">
-
- <div class="btn-group"><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in SVG format for use on the Web, in Adobe Illustrator or Sketch." data-toggle="tooltip" data-format="svg" data-size="128" data-icon-id="383356" href="/icons/383356/download/svg/128">
- SVG</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="383356" href="/icons/383356/download/png/128">
- PNG</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in Adobe Illustrator format." data-toggle="tooltip" data-format="ai" data-size="128" data-icon-id="383356" href="/icons/383356/download/ai/128">
- AI</a><a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">
- <span class="visible-desktop">More</span>
- <span class="caret"></span>
- </a>
- <ul class="dropdown-menu"><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="512" data-icon-id="383356" href="/icons/383356/download/png/512" data-placement="right"><b>
- PNG</b> - 512 <em>&times;</em> 512 px</a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="256" data-icon-id="383356" href="/icons/383356/download/png/256" data-placement="right"><b>
- PNG</b> - 256 <em>&times;</em> 256 px</a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="383356" href="/icons/383356/download/png/128" data-placement="right"><b>
- PNG</b> - 128 <em>&times;</em> 128 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="64" data-icon-id="383356" href="/icons/383356/download/png/64" data-placement="right"><b>
- PNG</b> - 64 <em>&times;</em> 64 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="48" data-icon-id="383356" href="/icons/383356/download/png/48" data-placement="right"><b>
- PNG</b> - 48 <em>&times;</em> 48 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="32" data-icon-id="383356" href="/icons/383356/download/png/32" data-placement="right"><b>
- PNG</b> - 32 <em>&times;</em> 32 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="24" data-icon-id="383356" href="/icons/383356/download/png/24" data-placement="right"><b>
- PNG</b> - 24 <em>&times;</em> 24 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="20" data-icon-id="383356" href="/icons/383356/download/png/20" data-placement="right"><b>
- PNG</b> - 20 <em>&times;</em> 20 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="16" data-icon-id="383356" href="/icons/383356/download/png/16" data-placement="right"><b>
- PNG</b> - 16 <em>&times;</em> 16 px</a></li><li><a href="#" class="iconpreview-show-all-sizes" onclick="javascript: $(this).parent().siblings().removeClass('hidden'); $(this).hide(); event.stopPropagation(); return false;">Show all sizes</a></li><li class="divider"></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICO format for use in Windows." data-toggle="tooltip" data-format="ico" data-icon-id="383356" href="/icons/383356/download/ico" data-placement="right"><b>ICO</b> - Windows icon</a></a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICNS format for use in Apple OS X." data-toggle="tooltip" data-format="icns" data-icon-id="383356" href="/icons/383356/download/icns" data-placement="right"><b>ICNS</b> - Apple OS X icon</a></a></li><li class="divider"></li><li><a rel="nofollow" title="Download this icon in Base64 encoded SVG format for use on the Web." data-toggle="tooltip" data-format="svg" data-action="get-base64" data-size="128" data-icon-id="383356" href="/icons/383356/download/svg/128" data-placement="right"><b>
- SVG</b> - Base64 encoded</a></li><li><a rel="nofollow" title="Download this icon in Base64 encoded PNG format for use on the Web." data-toggle="tooltip" data-format="png" data-action="get-base64" data-size="128" data-icon-id="383356" href="/icons/383356/download/png/128" data-placement="right"><b>
- PNG</b> - Base64 encoded</a></li><li class="divider"></li>
- <li><a href="http://support.iconfinder.com/customer/portal/articles/1377203-what-format-should-i-use-">What format should I use?</a></li>
- </ul>
- </div>
- </div>
- </div><a title="glasses, news, newspaper icon" class="iconlink" href="/icons/383356/glasses_news_newspaper_icon#size=128">
- <img alt="glasses, news, newspaper icon" class="tiled-icon" style="max-width: 128px; max-height: 128px;" src="https://cdn0.iconfinder.com/data/icons/spots-orange/512/newspaper-glasses-128.png" data-private-src="/icons/383356/783776/128/raster" />
- </a>
- <a href="#" class="favorite js-icon-favorite"><i data-icon="L"></i></a>
-
- <div class="info">
- <a rel="nofollow" title="Click here to see more information about this icon." id="infolink-383356" class="infolink" href="#">&nbsp;</a>
- <div class="infomenu" id="infomenu-383356">&nbsp;</div>
- <div class="tagmenu" id="tagmenu-383356"><div class="innertag" id="innertag-383356">Please wait</div></div>
- <input type="hidden" value="128" name="size" id="size-383356" class="hiddensize"/>
- <input type="hidden" value="383356" name="iconid" class="hiddeniconid"/>
- </div><div class="premium-label">Premium</div>
- </div>
-</div>
-
-
- <div class="icon premium" id="icon-833848" data-iconset-id="23001" data-icon-id="833848">
- <div><button class="btn-mini btn buynow" data-action="buy-icon" data-icon-id="833848">Buy now <span class="price">$1</span></button><div class="iconlinks" style="display: none;">
- <div class="downloadlinks">
-
- <div class="btn-group"><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in SVG format for use on the Web, in Adobe Illustrator or Sketch." data-toggle="tooltip" data-format="svg" data-size="128" data-icon-id="833848" href="/icons/833848/download/svg/128">
- SVG</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="833848" href="/icons/833848/download/png/128">
- PNG</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in Adobe Illustrator format." data-toggle="tooltip" data-format="ai" data-size="128" data-icon-id="833848" href="/icons/833848/download/ai/128">
- AI</a><a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">
- <span class="visible-desktop">More</span>
- <span class="caret"></span>
- </a>
- <ul class="dropdown-menu"><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="512" data-icon-id="833848" href="/icons/833848/download/png/512" data-placement="right"><b>
- PNG</b> - 512 <em>&times;</em> 512 px</a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="256" data-icon-id="833848" href="/icons/833848/download/png/256" data-placement="right"><b>
- PNG</b> - 256 <em>&times;</em> 256 px</a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="833848" href="/icons/833848/download/png/128" data-placement="right"><b>
- PNG</b> - 128 <em>&times;</em> 128 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="64" data-icon-id="833848" href="/icons/833848/download/png/64" data-placement="right"><b>
- PNG</b> - 64 <em>&times;</em> 64 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="48" data-icon-id="833848" href="/icons/833848/download/png/48" data-placement="right"><b>
- PNG</b> - 48 <em>&times;</em> 48 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="32" data-icon-id="833848" href="/icons/833848/download/png/32" data-placement="right"><b>
- PNG</b> - 32 <em>&times;</em> 32 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="24" data-icon-id="833848" href="/icons/833848/download/png/24" data-placement="right"><b>
- PNG</b> - 24 <em>&times;</em> 24 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="20" data-icon-id="833848" href="/icons/833848/download/png/20" data-placement="right"><b>
- PNG</b> - 20 <em>&times;</em> 20 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="16" data-icon-id="833848" href="/icons/833848/download/png/16" data-placement="right"><b>
- PNG</b> - 16 <em>&times;</em> 16 px</a></li><li><a href="#" class="iconpreview-show-all-sizes" onclick="javascript: $(this).parent().siblings().removeClass('hidden'); $(this).hide(); event.stopPropagation(); return false;">Show all sizes</a></li><li class="divider"></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICO format for use in Windows." data-toggle="tooltip" data-format="ico" data-icon-id="833848" href="/icons/833848/download/ico" data-placement="right"><b>ICO</b> - Windows icon</a></a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICNS format for use in Apple OS X." data-toggle="tooltip" data-format="icns" data-icon-id="833848" href="/icons/833848/download/icns" data-placement="right"><b>ICNS</b> - Apple OS X icon</a></a></li><li class="divider"></li><li><a rel="nofollow" title="Download this icon in Base64 encoded SVG format for use on the Web." data-toggle="tooltip" data-format="svg" data-action="get-base64" data-size="128" data-icon-id="833848" href="/icons/833848/download/svg/128" data-placement="right"><b>
- SVG</b> - Base64 encoded</a></li><li><a rel="nofollow" title="Download this icon in Base64 encoded PNG format for use on the Web." data-toggle="tooltip" data-format="png" data-action="get-base64" data-size="128" data-icon-id="833848" href="/icons/833848/download/png/128" data-placement="right"><b>
- PNG</b> - Base64 encoded</a></li><li class="divider"></li>
- <li><a href="http://support.iconfinder.com/customer/portal/articles/1377203-what-format-should-i-use-">What format should I use?</a></li>
- </ul>
- </div>
- </div>
- </div><a title="article, media, news, news article, newspaper icon" class="iconlink" href="/icons/833848/article_media_news_news_article_newspaper_icon#size=128">
- <img alt="article, media, news, news article, newspaper icon" class="tiled-icon" style="max-width: 128px; max-height: 128px;" src="https://cdn3.iconfinder.com/data/icons/seo-and-marketing-3-1/96/116-128.png" data-private-src="/icons/833848/1259799/128/raster" />
- </a>
- <a href="#" class="favorite js-icon-favorite"><i data-icon="L"></i></a>
-
- <div class="info">
- <a rel="nofollow" title="Click here to see more information about this icon." id="infolink-833848" class="infolink" href="#">&nbsp;</a>
- <div class="infomenu" id="infomenu-833848">&nbsp;</div>
- <div class="tagmenu" id="tagmenu-833848"><div class="innertag" id="innertag-833848">Please wait</div></div>
- <input type="hidden" value="128" name="size" id="size-833848" class="hiddensize"/>
- <input type="hidden" value="833848" name="iconid" class="hiddeniconid"/>
- </div><div class="premium-label">Premium</div>
- </div>
-</div>
-
-
- <div class="icon premium" id="icon-400114" data-iconset-id="9191" data-icon-id="400114">
- <div><button class="btn-mini btn buynow" data-action="buy-icon" data-icon-id="400114">Buy now <span class="price">$2.50</span></button><div class="iconlinks" style="display: none;">
- <div class="downloadlinks">
-
- <div class="btn-group"><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in SVG format for use on the Web, in Adobe Illustrator or Sketch." data-toggle="tooltip" data-format="svg" data-size="128" data-icon-id="400114" href="/icons/400114/download/svg/128">
- SVG</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="400114" href="/icons/400114/download/png/128">
- PNG</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in Adobe Illustrator format." data-toggle="tooltip" data-format="ai" data-size="128" data-icon-id="400114" href="/icons/400114/download/ai/128">
- AI</a><a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">
- <span class="visible-desktop">More</span>
- <span class="caret"></span>
- </a>
- <ul class="dropdown-menu"><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="512" data-icon-id="400114" href="/icons/400114/download/png/512" data-placement="right"><b>
- PNG</b> - 512 <em>&times;</em> 512 px</a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="256" data-icon-id="400114" href="/icons/400114/download/png/256" data-placement="right"><b>
- PNG</b> - 256 <em>&times;</em> 256 px</a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="400114" href="/icons/400114/download/png/128" data-placement="right"><b>
- PNG</b> - 128 <em>&times;</em> 128 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="64" data-icon-id="400114" href="/icons/400114/download/png/64" data-placement="right"><b>
- PNG</b> - 64 <em>&times;</em> 64 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="48" data-icon-id="400114" href="/icons/400114/download/png/48" data-placement="right"><b>
- PNG</b> - 48 <em>&times;</em> 48 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="32" data-icon-id="400114" href="/icons/400114/download/png/32" data-placement="right"><b>
- PNG</b> - 32 <em>&times;</em> 32 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="24" data-icon-id="400114" href="/icons/400114/download/png/24" data-placement="right"><b>
- PNG</b> - 24 <em>&times;</em> 24 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="20" data-icon-id="400114" href="/icons/400114/download/png/20" data-placement="right"><b>
- PNG</b> - 20 <em>&times;</em> 20 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="16" data-icon-id="400114" href="/icons/400114/download/png/16" data-placement="right"><b>
- PNG</b> - 16 <em>&times;</em> 16 px</a></li><li><a href="#" class="iconpreview-show-all-sizes" onclick="javascript: $(this).parent().siblings().removeClass('hidden'); $(this).hide(); event.stopPropagation(); return false;">Show all sizes</a></li><li class="divider"></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICO format for use in Windows." data-toggle="tooltip" data-format="ico" data-icon-id="400114" href="/icons/400114/download/ico" data-placement="right"><b>ICO</b> - Windows icon</a></a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICNS format for use in Apple OS X." data-toggle="tooltip" data-format="icns" data-icon-id="400114" href="/icons/400114/download/icns" data-placement="right"><b>ICNS</b> - Apple OS X icon</a></a></li><li class="divider"></li><li><a rel="nofollow" title="Download this icon in Base64 encoded SVG format for use on the Web." data-toggle="tooltip" data-format="svg" data-action="get-base64" data-size="128" data-icon-id="400114" href="/icons/400114/download/svg/128" data-placement="right"><b>
- SVG</b> - Base64 encoded</a></li><li><a rel="nofollow" title="Download this icon in Base64 encoded PNG format for use on the Web." data-toggle="tooltip" data-format="png" data-action="get-base64" data-size="128" data-icon-id="400114" href="/icons/400114/download/png/128" data-placement="right"><b>
- PNG</b> - Base64 encoded</a></li><li class="divider"></li>
- <li><a href="http://support.iconfinder.com/customer/portal/articles/1377203-what-format-should-i-use-">What format should I use?</a></li>
- </ul>
- </div>
- </div>
- </div><a title="news, newsletter, newspaper, press icon" class="iconlink" href="/icons/400114/news_newsletter_newspaper_press_icon#size=128">
- <img alt="news, newsletter, newspaper, press icon" class="tiled-icon" style="max-width: 128px; max-height: 128px;" src="https://cdn1.iconfinder.com/data/icons/luchesa-2/128/News-128.png" data-private-src="/icons/400114/801762/128/raster" />
- </a>
- <a href="#" class="favorite js-icon-favorite"><i data-icon="L"></i></a>
-
- <div class="info">
- <a rel="nofollow" title="Click here to see more information about this icon." id="infolink-400114" class="infolink" href="#">&nbsp;</a>
- <div class="infomenu" id="infomenu-400114">&nbsp;</div>
- <div class="tagmenu" id="tagmenu-400114"><div class="innertag" id="innertag-400114">Please wait</div></div>
- <input type="hidden" value="128" name="size" id="size-400114" class="hiddensize"/>
- <input type="hidden" value="400114" name="iconid" class="hiddeniconid"/>
- </div><div class="premium-label">Premium</div>
- </div>
-</div>
-
-
- <div class="icon premium" id="icon-449195" data-iconset-id="10867" data-icon-id="449195">
- <div><button class="btn-mini btn buynow" data-action="buy-icon" data-icon-id="449195">Buy now <span class="price">$1</span></button><div class="iconlinks" style="display: none;">
- <div class="downloadlinks">
-
- <div class="btn-group"><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in SVG format for use on the Web, in Adobe Illustrator or Sketch." data-toggle="tooltip" data-format="svg" data-size="128" data-icon-id="449195" href="/icons/449195/download/svg/128">
- SVG</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="449195" href="/icons/449195/download/png/128">
- PNG</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in Adobe Illustrator format." data-toggle="tooltip" data-format="ai" data-size="128" data-icon-id="449195" href="/icons/449195/download/ai/128">
- AI</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon as an Adobe Photoshop Shape." data-toggle="tooltip" data-format="csh" data-size="128" data-icon-id="449195" href="/icons/449195/download/csh/128">
- CSH</a><a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">
- <span class="visible-desktop">More</span>
- <span class="caret"></span>
- </a>
- <ul class="dropdown-menu"><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="512" data-icon-id="449195" href="/icons/449195/download/png/512" data-placement="right"><b>
- PNG</b> - 512 <em>&times;</em> 512 px</a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="256" data-icon-id="449195" href="/icons/449195/download/png/256" data-placement="right"><b>
- PNG</b> - 256 <em>&times;</em> 256 px</a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="449195" href="/icons/449195/download/png/128" data-placement="right"><b>
- PNG</b> - 128 <em>&times;</em> 128 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="64" data-icon-id="449195" href="/icons/449195/download/png/64" data-placement="right"><b>
- PNG</b> - 64 <em>&times;</em> 64 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="48" data-icon-id="449195" href="/icons/449195/download/png/48" data-placement="right"><b>
- PNG</b> - 48 <em>&times;</em> 48 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="32" data-icon-id="449195" href="/icons/449195/download/png/32" data-placement="right"><b>
- PNG</b> - 32 <em>&times;</em> 32 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="24" data-icon-id="449195" href="/icons/449195/download/png/24" data-placement="right"><b>
- PNG</b> - 24 <em>&times;</em> 24 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="20" data-icon-id="449195" href="/icons/449195/download/png/20" data-placement="right"><b>
- PNG</b> - 20 <em>&times;</em> 20 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="16" data-icon-id="449195" href="/icons/449195/download/png/16" data-placement="right"><b>
- PNG</b> - 16 <em>&times;</em> 16 px</a></li><li><a href="#" class="iconpreview-show-all-sizes" onclick="javascript: $(this).parent().siblings().removeClass('hidden'); $(this).hide(); event.stopPropagation(); return false;">Show all sizes</a></li><li class="divider"></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICO format for use in Windows." data-toggle="tooltip" data-format="ico" data-icon-id="449195" href="/icons/449195/download/ico" data-placement="right"><b>ICO</b> - Windows icon</a></a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICNS format for use in Apple OS X." data-toggle="tooltip" data-format="icns" data-icon-id="449195" href="/icons/449195/download/icns" data-placement="right"><b>ICNS</b> - Apple OS X icon</a></a></li><li class="divider"></li><li><a rel="nofollow" title="Download this icon in Base64 encoded SVG format for use on the Web." data-toggle="tooltip" data-format="svg" data-action="get-base64" data-size="128" data-icon-id="449195" href="/icons/449195/download/svg/128" data-placement="right"><b>
- SVG</b> - Base64 encoded</a></li><li><a rel="nofollow" title="Download this icon in Base64 encoded PNG format for use on the Web." data-toggle="tooltip" data-format="png" data-action="get-base64" data-size="128" data-icon-id="449195" href="/icons/449195/download/png/128" data-placement="right"><b>
- PNG</b> - Base64 encoded</a></li><li class="divider"></li>
- <li><a href="http://support.iconfinder.com/customer/portal/articles/1377203-what-format-should-i-use-">What format should I use?</a></li>
- </ul>
- </div>
- </div>
- </div><a title="news, newspaper, paper, subscribe icon" class="iconlink" href="/icons/449195/news_newspaper_paper_subscribe_icon#size=128">
- <img alt="news, newspaper, paper, subscribe icon" class="tiled-icon" style="max-width: 128px; max-height: 128px;" src="https://cdn4.iconfinder.com/data/icons/commonly-used-flat-line-icon/32/5-128.png" data-private-src="/icons/449195/857006/128/raster" />
- </a>
- <a href="#" class="favorite js-icon-favorite"><i data-icon="L"></i></a>
-
- <div class="info">
- <a rel="nofollow" title="Click here to see more information about this icon." id="infolink-449195" class="infolink" href="#">&nbsp;</a>
- <div class="infomenu" id="infomenu-449195">&nbsp;</div>
- <div class="tagmenu" id="tagmenu-449195"><div class="innertag" id="innertag-449195">Please wait</div></div>
- <input type="hidden" value="128" name="size" id="size-449195" class="hiddensize"/>
- <input type="hidden" value="449195" name="iconid" class="hiddeniconid"/>
- </div><div class="premium-label">Premium</div>
- </div>
-</div>
-
-
- <div class="icon premium" id="icon-252500" data-iconset-id="3976" data-icon-id="252500">
- <div><button class="btn-mini btn buynow" data-action="buy-icon" data-icon-id="252500">Buy now <span class="price">$1</span></button><div class="iconlinks" style="display: none;">
- <div class="downloadlinks">
-
- <div class="btn-group"><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in SVG format for use on the Web, in Adobe Illustrator or Sketch." data-toggle="tooltip" data-format="svg" data-size="128" data-icon-id="252500" href="/icons/252500/download/svg/128">
- SVG</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="252500" href="/icons/252500/download/png/128">
- PNG</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon in Adobe Illustrator format." data-toggle="tooltip" data-format="ai" data-size="128" data-icon-id="252500" href="/icons/252500/download/ai/128">
- AI</a><a class="downloadlink btn btn-small" rel="nofollow" title="Download this icon as an Adobe Photoshop Shape." data-toggle="tooltip" data-format="csh" data-size="128" data-icon-id="252500" href="/icons/252500/download/csh/128">
- CSH</a><a class="btn btn-small dropdown-toggle" data-toggle="dropdown" href="#">
- <span class="visible-desktop">More</span>
- <span class="caret"></span>
- </a>
- <ul class="dropdown-menu"><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="512" data-icon-id="252500" href="/icons/252500/download/png/512" data-placement="right"><b>
- PNG</b> - 512 <em>&times;</em> 512 px</a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="256" data-icon-id="252500" href="/icons/252500/download/png/256" data-placement="right"><b>
- PNG</b> - 256 <em>&times;</em> 256 px</a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="128" data-icon-id="252500" href="/icons/252500/download/png/128" data-placement="right"><b>
- PNG</b> - 128 <em>&times;</em> 128 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="64" data-icon-id="252500" href="/icons/252500/download/png/64" data-placement="right"><b>
- PNG</b> - 64 <em>&times;</em> 64 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="48" data-icon-id="252500" href="/icons/252500/download/png/48" data-placement="right"><b>
- PNG</b> - 48 <em>&times;</em> 48 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="32" data-icon-id="252500" href="/icons/252500/download/png/32" data-placement="right"><b>
- PNG</b> - 32 <em>&times;</em> 32 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="24" data-icon-id="252500" href="/icons/252500/download/png/24" data-placement="right"><b>
- PNG</b> - 24 <em>&times;</em> 24 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="20" data-icon-id="252500" href="/icons/252500/download/png/20" data-placement="right"><b>
- PNG</b> - 20 <em>&times;</em> 20 px</a></li><li class="hidden"><a class="downloadlink" rel="nofollow" title="Download this icon in PNG format for use on the Web or in Photoshop." data-toggle="tooltip" data-format="png" data-size="16" data-icon-id="252500" href="/icons/252500/download/png/16" data-placement="right"><b>
- PNG</b> - 16 <em>&times;</em> 16 px</a></li><li><a href="#" class="iconpreview-show-all-sizes" onclick="javascript: $(this).parent().siblings().removeClass('hidden'); $(this).hide(); event.stopPropagation(); return false;">Show all sizes</a></li><li class="divider"></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICO format for use in Windows." data-toggle="tooltip" data-format="ico" data-icon-id="252500" href="/icons/252500/download/ico" data-placement="right"><b>ICO</b> - Windows icon</a></a></li><li><a class="downloadlink" rel="nofollow" title="Download this icon in ICNS format for use in Apple OS X." data-toggle="tooltip" data-format="icns" data-icon-id="252500" href="/icons/252500/download/icns" data-placement="right"><b>ICNS</b> - Apple OS X icon</a></a></li><li class="divider"></li><li><a rel="nofollow" title="Download this icon in Base64 encoded SVG format for use on the Web." data-toggle="tooltip" data-format="svg" data-action="get-base64" data-size="128" data-icon-id="252500" href="/icons/252500/download/svg/128" data-placement="right"><b>
- SVG</b> - Base64 encoded</a></li><li><a rel="nofollow" title="Download this icon in Base64 encoded PNG format for use on the Web." data-toggle="tooltip" data-format="png" data-action="get-base64" data-size="128" data-icon-id="252500" href="/icons/252500/download/png/128" data-placement="right"><b>
- PNG</b> - Base64 encoded</a></li><li class="divider"></li>
- <li><a href="http://support.iconfinder.com/customer/portal/articles/1377203-what-format-should-i-use-">What format should I use?</a></li>
- </ul>
- </div>
- </div>
- </div><a title="article, document, news, newspaper icon" class="iconlink" href="/icons/252500/article_document_news_newspaper_icon#size=128">
- <img alt="article, document, news, newspaper icon" class="tiled-icon" style="max-width: 128px; max-height: 128px;" src="https://cdn2.iconfinder.com/data/icons/budicon-document-2/16/3-document_-_article_news_newspaper-128.png" data-private-src="/icons/252500/621793/128/raster" />
- </a>
- <a href="#" class="favorite js-icon-favorite"><i data-icon="L"></i></a>
-
- <div class="info">
- <a rel="nofollow" title="Click here to see more information about this icon." id="infolink-252500" class="infolink" href="#">&nbsp;</a>
- <div class="infomenu" id="infomenu-252500">&nbsp;</div>
- <div class="tagmenu" id="tagmenu-252500"><div class="innertag" id="innertag-252500">Please wait</div></div>
- <input type="hidden" value="128" name="size" id="size-252500" class="hiddensize"/>
- <input type="hidden" value="252500" name="iconid" class="hiddeniconid"/>
- </div><div class="premium-label">Premium</div>
- </div>
-</div>
-
-
- </div>
- <div class="clearboth">&nbsp;</div>
-
- </div>
- </div>
- </div>
- </div>
-
- <div class="footer contentpage">
- <footer>
- <div class="links">
- <a href="/pro">Upgrade to <span class="label label-pro">Pro</span></a>
- <a href="http://blog.iconfinder.com/">Blog</a>
- <a href="/contribute">Become a contributor</a>
- <a href="/custom-icon-design">Custom icon design</a>
- <a href="/about/jobs">Jobs</a>
- <a href="/about/about">About Iconfinder</a>
- <a href="http://support.iconfinder.com/">Help & support</a>
-
- <a href="/about/termsofservice">Terms of service</a>
- <a href="/about/privacypolicy">Privacy policy</a>
- <a href="https://developer.iconfinder.com/">API</a>
- <a href="/tags">Tags</a>
- <a href="/free_icons">Free icons</a>
- </div>
- <div class="socialallthethings">
- Made in Copenhagen · Copyright 2015 · All rights reserved - Get updates: <a class="facebook" href="http://www.facebook.com/iconfinder">Facebook</a>
- <a class="dribbble" href="http://www.dribbble.com/team-iconfinder">Dribbble</a>
- <a class="twitter" href="http://www.twitter.com/iconfinder">Twitter</a>
- <a class="newsletter" href="/mailing-lists/2/subscribe" data-action="mailing-list-subscribe" data-mailing-list-id="2">Sign up to our newsletter</a>
- </div>
- <div class="creditcard-logos">
- <a href="http://support.iconfinder.com/customer/portal/articles/1132244-is-credit-card-data-send-using-a-secure-connection-"><img src="data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgaGVpZ2h0PSIyNCIgd2lkdGg9IjI0IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxwYXRoIGQ9Ik01IDljLTEuMTA1IDAtMiAuOS0yIDJ2OGMwIDEuMS44OTUgMiAyIDJoMTRjMS4xMDUgMCAyLS45IDItMnYtOGMwLTEuMS0uODk1LTItMi0ySDV6IiBmaWxsPSIjZjFjNDBmIi8+PHBhdGggZD0iTTUgMTJjLTEuMTA1IDAtMiAuOS0yIDJ2OGMwIDEuMS44OTUgMiAyIDJoMTRjMS4xMDUgMCAyLS45IDItMnYtOGMwLTEuMS0uODk1LTItMi0ySDV6IiBmaWxsPSIjZjM5YzEyIi8+PHBhdGggZD0iTTEyIDFDOC4xMzQgMSA1IDQuMSA1IDhoM2MwLTIuMiAxLjc5LTQgNC00czQgMS44IDQgNGgzYzAtMy45LTMuMTM0LTctNy03eiIgZmlsbD0iI2JkYzNjNyIvPjxwYXRoIGQ9Ik01IDE0djFoMTR2LTFINXptMCAydjFoMTR2LTFINXptMCAydjFoMTR2LTFINXptMCAydjFoMTR2LTFINXoiIGZpbGw9IiNlNjdlMjIiLz48cGF0aCBkPSJNNSA5djFjMCAuNS42NzIgMSAxLjUgMVM4IDEwLjUgOCAxMFY5YzAgLjUtLjY3MiAxLTEuNSAxUzUgOS41IDUgOXptMTEgMHYxYzAgLjUuNjcyIDEgMS41IDFzMS41LS41IDEuNS0xVjljMCAuNS0uNjcyIDEtMS41IDFTMTYgOS41IDE2IDl6IiBmaWxsPSIjN2Y4YzhkIi8+PHBhdGggZD0iTTEyIDIuNDM4Yy0uMzUgMC0uNy4wMzMtMS4wMy4wOTMtLjI0OC4wNS0uNDg4LjEyLS43Mi4xOS0uMjE3LjA3LS40MjMuMTYtLjYyNS4yNS0uMTA2LjA1LS4yMS4xLS4zMTMuMTYtLjEzLjA3LS4yNS4xNy0uMzc0LjI1LS4xMTYuMDgtLjIzNi4xMzgtLjM0NC4yMi0uMTQuMTEtLjI4LjIyLS40MDYuMzQtLjAzNy4wNC0uMDYuMDktLjA5NC4xMy0uMTcuMTc1LS4zMy4zMzYtLjQ3LjUzLS4xNC4yLS4yNy40MDgtLjM3NC42MjctLjAwNC4wMS4wMDQuMDI0IDAgLjAzLS4xMS4yMzgtLjIxNi40OTgtLjI4Ljc1LS4yNTQuNTg2LS45NDQgMS0xLjc1IDEtLjA2IDAtLjA4NC4wMDQtLjEyNiAwaC0uMDMyTDUgOHYyaDNWOGMwLS4yNzYuMDQtLjU1Mi4wOTQtLjgxM0M4LjQ2NyA1LjM2NSAxMC4wNjcgNCAxMiA0YzIuMjEgMCA0IDEuNzkgNCA0djJoM1Y4bC0uMDYyLTFoLS4xNTdjLS44IDAtMS40OS0uNDE2LTEuNzUtMS0uMDYtLjI1NC0uMTctLjUxNC0uMjgtLjc1IDAtLjAxLjAxLS4wMjMgMC0uMDMtLjEtLjIyLS4yMy0uNDI3LS4zNy0uNjI2LS4xNC0uMTk2LS4zLS4zNTctLjQ3LS41MzItLjAzLS4wMzgtLjA1LS4wODgtLjA5LS4xMjUtLjEyNS0uMTIyLS4yNjQtLjIzMy0uNDA1LS4zNDMtLjEwNC0uMDgyLS4yMzItLjE0NS0uMzQ0LS4yMi0uMTIyLS4wOC0uMjQ0LS4xNzgtLjM3NC0uMjUtLjEtLjA1NC0uMjEtLjEwNi0uMzEyLS4xNTUtLjIwMi0uMS0uNDA4LS4xOC0uNjI1LS4yNS0uMjMtLjA4LS40Ny0uMTUtLjcyLS4xOS0uMzMtLjA2LS42OC0uMS0xLjAzLS4xeiIgZmlsbD0iIzk1YTVhNiIvPjwvc3ZnPgo="/> Secure connection</a>
- <a href="http://support.iconfinder.com/customer/portal/articles/1743927-support-credit-cards-and-payment-types" data-toggle="tooltip" data-original-title="We accept VISA"><img src="data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgaGVpZ2h0PSIxMDAiIHZpZXdCb3g9IjAgMCAxNjAgMTAwIiB3aWR0aD0iMTYwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+PHBhdGggZmlsbD0iI0Y2RjZGNiIgZD0iTTAgOWgxNjB2ODBIMHoiLz48cGF0aCBkPSJNMTQ4IDBIOEM0IDAgMCA0IDAgOHYxMmgxNjB2LThjMC04LTQtMTItMTItMTJ6bTAgMCIgZmlsbD0iIzI2NTY5NyIvPjxwYXRoIGQ9Ik0wIDgwdjhjMCA4IDQgMTIgMTIgMTJoMTM2YzggMCAxMi00IDEyLTEydi04SDB6bTAgMCIgZmlsbD0iI0Q5N0IxNiIvPjxwYXRoIGQ9Ik0xMTEuNjE1IDI5Ljc4MmMtMi4yNDMtLjg2LTUuNzU3LTEuNzgyLTEwLjE0NS0xLjc4Mi0xMS4xODQgMC0xOS4wNjIgNS43NTUtMTkuMTMgMTQuMDAzLS4wNjIgNi4wOTcgNS42MjUgOS40OTggOS45MiAxMS41MjggNC40MDQgMi4wOCA1Ljg4NSAzLjQxIDUuODY0IDUuMjctLjAyOCAyLjg0Ny0zLjUxOCA0LjE0Ny02Ljc3IDQuMTQ3LTQuNTMgMC02LjkzOC0uNjQ0LTEwLjY1NS0yLjIzbC0xLjQ2LS42NzItMS41OSA5LjVjMi42NCAxLjE4NCA3LjUzIDIuMjEgMTIuNjEgMi4yNjMgMTEuODkgMCAxOS42Mi01LjY5IDE5LjcxLTE0LjQ5OC4wNC00LjgyOC0yLjk4LTguNS05LjUxLTExLjUzLTMuOTYtMS45NjMtNi4zOC0zLjI3My02LjM1Ni01LjI2IDAtMS43NjQgMi4wNS0zLjY1IDYuNDgtMy42NSAzLjcwMy0uMDU4IDYuMzg0Ljc2NiA4LjQ3MyAxLjYyNmwxLjAxNC40OSAxLjUzNS05LjJtMjkuMDIzLTEuMDAzaC04Ljc0NmMtMi43MSAwLTQuNzM3Ljc1NS01LjkyNyAzLjUybC0xNi44MSAzOC44ODRoMTEuODg2czEuOTQ1LTUuMjI2IDIuMzg0LTYuMzc0YzEuMyAwIDEyLjg0NC4wMTcgMTQuNDk1LjAxNy4zNCAxLjQ4NCAxLjM3NyA2LjM1NyAxLjM3NyA2LjM1N2gxMC41MWwtOS4xNjItNDIuNDAyem0tMTMuOTU2IDI3LjM1Yy45MzUtMi40NDYgNC41MS0xMS44NjMgNC41MS0xMS44NjMtLjA3LjExMi45MjctMi40NTcgMS41LTQuMDVsLjc2NCAzLjY2czIuMTY3IDEwLjEyNiAyLjYyIDEyLjI1aC05LjM5NXpNNTkuMjUgNzEuMTdsNy4wNzYtNDIuNDMzaDExLjMyTDcwLjU2MyA3MS4xN0g1OS4yNXptLTkuNDkzLTQyLjQwMmwtMTEuMDggMjguOTM1LTEuMTgyLTUuODhjLTIuMDYzLTYuNzc4LTguNDktMTQuMTIyLTE1LjY3Ni0xNy44bDEwLjEzIDM3LjExIDExLjk3LS4wMTUgMTcuODItNDIuMzVINDkuNzUiIGZpbGw9IiMyNjU2OTciLz48cGF0aCBkPSJNMjguMzk2IDI4Ljc0MkgxMC4xNDRsLS4xNDQuODgzYzE0LjIgMy41MTIgMjMuNTk1IDEyIDI3LjQ5NSAyMi4xOThsLTMuOTctMTkuNWMtLjY4NC0yLjY4NS0yLjY3LTMuNDg3LTUuMTMtMy41OCIgZmlsbD0iI0Q5N0IxNiIvPjwvZz48L3N2Zz4K" /></a>
- <a href="http://support.iconfinder.com/customer/portal/articles/1743927-support-credit-cards-and-payment-types" data-toggle="tooltip" data-original-title="We accept MasterCard"><img src="data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgaGVpZ2h0PSIxMDAiIHZpZXdCb3g9IjAgMCAxNjAgMTAwIiB3aWR0aD0iMTYwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+PHBhdGggZD0iTTE0OCAwSDhDNCAwIDAgNCAwIDh2ODBjMCA4IDQgMTIgMTIgMTJoMTM2YzggMCAxMi00IDEyLTEyVjEyYzAtOC00LTEyLTEyLTEyem0wIDAiIGZpbGw9IiMyNjU2OTciLz48cGF0aCBkPSJNMTQ5LjU0NSA1MC41Yy4wMDcgMjMuMjM4LTE4LjYyNSA0Mi4wOC00MS42MTUgNDIuMDg1Qzg0Ljk0IDkyLjU5IDY2LjMgNzMuNzYgNjYuMjkzIDUwLjUydi0uMDJDNjYuMjg3IDI3LjI2MyA4NC45MiA4LjQyIDEwNy45MDggOC40MTRjMjIuOTktLjAwNiA0MS42MyAxOC44MjcgNDEuNjM3IDQyLjA2NXYuMDJzMC0uMDEgMCAwem0wIDAiIGZpbGw9IiNERkFDMTYiLz48cGF0aCBkPSJNNTEuODEzIDguNDI1Yy0yMi44NTQuMTQ3LTQxLjM2IDE4Ljk0LTQxLjM2IDQyLjA3NSAwIDIzLjIyNSAxOC42NSA0Mi4wNzUgNDEuNjI4IDQyLjA3NSAxMC43OSAwIDIwLjYyLTQuMTU1IDI4LjAyLTEwLjk2M2wtLjAwMi0uMDAyaC4wMWMxLjUxMy0xLjM5NSAyLjkyNi0yLjkgNC4yMjUtNC41MDVINzUuOGMtMS4xMzgtMS4zOS0yLjE3My0yLjg0LTMuMTAzLTQuMzM1SDg3LjRjLjg5NS0xLjQ0NiAxLjcwNS0yLjk1IDIuNDIzLTQuNTA1aC0xOS41NmMtLjY2Ni0xLjQ0NS0xLjI0NS0yLjkyMi0xLjc0LTQuNDJoMjMuMDQyYzEuMzktNC4xOTQgMi4xNDItOC42OCAyLjE0Mi0xMy4zNDUgMC0zLjA5My0uMzMtNi4xMDgtLjk2LTkuMDFINjcuMzAzYy4zMTUtMS40OTQuNzEzLTIuOTcgMS4xODctNC40MmgyMy4wNWMtLjUxNi0xLjU0NC0xLjExNS0zLjA0OC0xLjc5NS00LjUwNUg3MC4yNmMuNzA0LTEuNTE4IDEuNS0yLjk5NCAyLjM5LTQuNDJoMTQuNjk3Yy0uOTc4LTEuNTc1LTIuMDYtMy4wOC0zLjIzLTQuNTA1SDc1LjkyYzEuMjY3LTEuNTA4IDIuNjYyLTIuOTI3IDQuMTc2LTQuMjVDNzIuNyAxMi41OCA2Mi44NjggOC40MjUgNTIuMDggOC40MjVoLS4yNjdzLjA5IDAgMCAwem0wIDAiIGZpbGw9IiNCRjMxMjYiLz48cGF0aCBkPSJNNjcuMDUgNjEuMjEybC41NTQtMy44MDhjLS4zMDMgMC0uNzQ4LjEzMi0xLjE0Mi4xMzItMS41NDMgMC0xLjcxMy0uODMtMS42MTQtMS40NDNsMS4yNDYtNy43N2gyLjM0NWwuNTYtNC4yMWgtMi4yMWwuNDUtMi42MmgtNC40M2MtLjEuMDk4LTIuNjIgMTQuNzMtMi42MiAxNi41MTMgMCAyLjYzNyAxLjQ2NCAzLjgxMiAzLjUzIDMuNzkzIDEuNjItLjAyIDIuODgtLjQ3IDMuMzIzLS41OSAwIDAtLjQ0NS4xMiAwIDB6bTEuNDA0LTcuMjZjMCA2LjMzIDQuMTM0IDcuODM1IDcuNjU2IDcuODM1IDMuMjUgMCA0LjY4Mi0uNzM0IDQuNjgyLS43MzRsLjc4LTQuMzJzLTIuNDczIDEuMS00LjcwNiAxLjFjLTQuNzYgMC0zLjkyNi0zLjU4Ni0zLjkyNi0zLjU4Nmg5LjAwN3MuNTgyLTIuOTAzLjU4Mi00LjA4NmMwLTIuOTUtMS40Ni02LjU0LTYuMzItNi41NC00LjQ2IDAtNy43NiA0Ljg1Ni03Ljc2IDEwLjM0IDAgMCAwLTUuNDg0IDAgMHptNy43NzItNi4zMjdjMi41IDAgMi4wNCAyLjg0IDIuMDQgMy4wN2gtNC45MmMwLS4yOTMuNDY0LTMuMDcgMi44OC0zLjA3IDAgMC0yLjQxNiAwIDAgMHptMjguMDY2IDEzLjU4NWwuNzkzLTQuODgzcy0yLjE3NSAxLjEwMi0zLjY2NyAxLjEwMmMtMy4xNDQgMC00LjQwNS0yLjQzLTQuNDA1LTUuMDQgMC01LjI5IDIuNzA1LTguMiA1LjcxNi04LjIgMi4yNSAwIDQuMDcgMS4yOCA0LjA3IDEuMjhsLjcyLTQuNzQ2cy0yLjY5LTEuMS00Ljk5LTEuMWMtNS4xMiAwLTEwLjEgNC40ODctMTAuMSAxMi45MTMgMCA1LjU4NyAyLjY5IDkuMjc3IDcuOTc3IDkuMjc3IDEuNDk1IDAgMy44NzctLjYxMiAzLjg3Ny0uNjEyem0tNjEuNjItMTcuNTI4Yy0zLjA0IDAtNS4zNy45ODgtNS4zNy45ODhsLS42NCAzLjg2czEuOTI0LS43OSA0LjgzLS43OWMxLjY1IDAgMi44Ni4xODcgMi44NiAxLjU0MiAwIC44MjQtLjE1IDEuMTI4LS4xNSAxLjEyOHMtMS4zLS4xMS0xLjkwNC0uMTFjLTMuODMzIDAtNy44NiAxLjY1My03Ljg2IDYuNjM4IDAgMy45MjggMi42NDIgNC44MyA0LjI4IDQuODMgMy4xMjYgMCA0LjQ3NC0yLjA1IDQuNTQ2LTIuMDU4bC0uMTQ2IDEuNzEyaDMuOTAybDEuNzQtMTIuMzM3YzAtNS4yMzQtNC41MTctNS40MDMtNi4wODYtNS40MDN6bS45NSAxMC4wNDZjLjA4NS43NTMtLjQ2NyA0LjI4Ni0zLjEzNSA0LjI4Ni0xLjM3NyAwLTEuNzM1LTEuMDYzLTEuNzM1LTEuNjkyIDAtMS4yMjYuNjYtMi42OTggMy45MDctMi42OTguNzUgMCAuODMuMDgzLjk2LjEwNCAwIDAtLjEzLS4wMiAwIDB6bTkuMjg1IDcuOTVjMSAwIDYuNzA2LjI1NiA2LjcwNi01LjY5NyAwLTUuNTYtNS4yODMtNC40Ni01LjI4My02LjcgMC0xLjExLjg2LTEuNDYgMi40MzUtMS40Ni42MjUgMCAzLjAyOC4yIDMuMDI4LjJsLjU2LTMuOTVzLTEuNTU2LS4zNS00LjA5LS4zNWMtMy4yNzggMC02LjYwNiAxLjMyMy02LjYwNiA1Ljg1IDAgNS4xMyA1LjU1IDQuNjE0IDUuNTUgNi43NzQgMCAxLjQ0LTEuNTUgMS41Ni0yLjc0NiAxLjU2LTIuMDYgMC0zLjkzLS43MTctMy45My0uNjgzbC0uNTkgMy45MTZjLjExLjAzNSAxLjI1OC41NSA0Ljk3LjU1IDAgMC0zLjcyIDAgMCAwem04OC4wOTctMjEuNTQ1bC0uOTU2IDUuOTk2cy0xLjY2OC0yLjMzLTQuMjgtMi4zM2MtNC4wNiAwLTcuNDQ1IDQuOTUtNy40NDUgMTAuNjMgMCAzLjY3IDEuODA1IDcuMjYzIDUuNDk2IDcuMjYzIDIuNjUgMCA0LjEyLTEuODcgNC4xMi0xLjg3bC0uMiAxLjU5N2g0LjMxbDMuMzg3LTIxLjMwMy00LjQ0My4wMDd6bS0yLjA1OCAxMS42OWMwIDIuMzY3LTEuMTYgNS41MjgtMy41NjIgNS41MjgtMS41OTUgMC0yLjM0Mi0xLjM1LTIuMzQyLTMuNDcgMC0zLjQ3IDEuNTQzLTUuNzYyIDMuNDktNS43NjIgMS41OTYgMCAyLjQxNCAxLjEwNyAyLjQxNCAzLjcxNSAwIDAgMC0yLjYxIDAgMHptLTEyMC4yNyA5LjYyNWwyLjY5Ny0xNi4wODQuMzk2IDE2LjA4NGgzLjA1bDUuNjktMTYuMDg0LTIuNTI0IDE2LjA4NGg0LjUzN2wzLjQ5NS0yMS4zMzJoLTcuMDFsLTQuMzcgMTMuMDg4LS4yMjctMTMuMDg4aC02LjQ2NkwxNC40IDYxLjQ0OGg0LjI3NHptNjguMjg0LjAzYzEuMjkyLTcuNDE2IDEuNTMtMTMuNDM3IDQuNjEtMTIuMzM1LjUzOC0yLjg3IDEuMDU4LTMuOTggMS42NDYtNS4xOTUgMCAwLS4yNzUtLjA2LS44NTQtLjA2LTEuOTg1IDAtMy40NTYgMi43NDItMy40NTYgMi43NDJsLjM5Ni0yLjUxN2gtNC4xMjdMODIuNDEgNjEuNDc3aDQuNTV6bTI3LjU2LTE3Ljc5NmMtMy4wNCAwLTUuMzcuOTg4LTUuMzcuOTg4bC0uNjQzIDMuODZzMS45MjMtLjc5IDQuODMtLjc5YzEuNjUgMCAyLjg1Ni4xODcgMi44NTYgMS41NDIgMCAuODI0LS4xNDcgMS4xMjgtLjE0NyAxLjEyOHMtMS4zLS4xMS0xLjkwNS0uMTFjLTMuODMgMC03Ljg1IDEuNjUzLTcuODUgNi42MzggMCAzLjkyOCAyLjY0IDQuODMgNC4yOCA0LjgzIDMuMTI3IDAgNC40NzUtMi4wNSA0LjU0Ny0yLjA1OGwtLjE0NCAxLjcxMmgzLjlsMS43NC0xMi4zMzdjMC01LjIzNC00LjUxNC01LjQwMy02LjA4My01LjQwM3ptLjk1IDEwLjA0NmMuMDg0Ljc1My0uNDY4IDQuMjg2LTMuMTM4IDQuMjg2LTEuMzc2IDAtMS43MzMtMS4wNjMtMS43MzMtMS42OTIgMC0xLjIyNi42NS0yLjY5OCAzLjktMi42OTguNzUgMCAuODMyLjA4My45Ni4xMDQgMCAwLS4xMy0uMDIgMCAwem04LjcwMiA3Ljc1YzEuMjktNy40MTYgMS41My0xMy40MzcgNC42MDctMTIuMzM1LjU0LTIuODcgMS4wNi0zLjk4IDEuNjQtNS4xOTUgMCAwLS4yNzgtLjA2LS44NTYtLjA2LTEuOTg1IDAtMy40NTYgMi43NDItMy40NTYgMi43NDJsLjM5NS0yLjUxN2gtNC4xMjZsLTIuNzY1IDE3LjM2NGg0LjU1em0wIDAiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+Cg==" /></a>
- <a href="http://support.iconfinder.com/customer/portal/articles/1743927-support-credit-cards-and-payment-types" data-toggle="tooltip" data-original-title="We accept American Express"><img src="data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgaGVpZ2h0PSIxMDAiIHZpZXdCb3g9IjAgMCAxNjAgMTAwIiB3aWR0aD0iMTYwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+PHBhdGggZD0iTTE0OCAwSDhDNCAwIDAgNCAwIDh2ODBjMCA4IDQgMTIgMTIgMTJoMTM2YzggMCAxMi00IDEyLTEyVjEyYzAtOC00LTEyLTEyLTEyem0wIDAiIGZpbGw9IiMzMDZGQzUiLz48cGF0aCBkPSJNMTMuNTIgMzYuNjI1bC0zLjEtNy41NS0zLjA4IDcuNTVoNi4xOHptNjguMjY2LTMuMDA2Yy0uNjIzLjM3LTEuMzU4LjM5LTIuMjQuMzloLTUuNVYyOS44aDUuNTc1Yy43OSAwIDEuNjIuMDM1IDIuMTUuMzQuNTkuMjc3Ljk1Ljg2NS45NSAxLjY3NiAwIC44MjgtLjM0IDEuNDk0LS45MyAxLjggMCAwIC41OS0uMzA2IDAgMHptMzkuMjM2IDNsLTMuMTMzLTcuNTUtMy4xMiA3LjU1aDYuMjV6bS03My4xNCA4LjE3aC00LjY0bC0uMDE4LTE0LjgzNUwzNi42NiA0NC43OWgtMy45NzZsLTYuNTgyLTE0Ljg0VjQ0LjhoLTkuMjA4bC0xLjc0LTQuMjI0SDUuNzI4TDMuOTcgNDQuNzk4SC0uOTQ3bDguMTA4LTE4Ljk0aDYuNzNsNy43IDE3LjkzM1YyNS44Nmg3LjM5bDUuOTMgMTIuODUgNS40NDQtMTIuODVoNy41MzdWNDQuOHptMTguNSAwSDUxLjI1NlYyNS44NUg2Ni4zOHYzLjk1SDU1Ljc4NnYzLjQxNGgxMC4zNDJ2My44ODJINTUuNzg1djMuNzgzSDY2LjM4djMuOTJ6bTIxLjMyNC0xMy44NGMwIDMuMDItMi4wMTYgNC41OC0zLjE5IDUuMDUuOTkuMzc1IDEuODM3IDEuMDQgMi4yNCAxLjU5My42NC45NDIuNzUgMS43ODQuNzUgMy40NzZ2My43MmgtNC41NjhMODIuOTIgNDIuNGMwLTEuMTQuMTEtMi43OC0uNzEtMy42OS0uNjYtLjY2OC0xLjY3LS44MS0zLjMtLjgxaC00Ljg2djYuODg2aC00LjUzVjI1Ljg1aDEwLjQyYzIuMzE1IDAgNC4wMi4wNiA1LjQ4My45MDggMS40My44NDYgMi4yOSAyLjA4IDIuMjkgNC4xOTQgMCAwIDAtMi4xMTQgMCAwek05NC45NSA0NC44aC00LjYxOFYyNS44Nmg0LjYyVjQ0Ljh6bTUzLjU5NSAwaC02LjQxNmwtOC41OS0xNC4yMTZWNDQuOGgtOS4yMmwtMS43Ni00LjIyNGgtOS40MDhsLTEuNzEgNC4yMjRoLTUuMjk4Yy0yLjIgMC00Ljk4OC0uNDg2LTYuNTY2LTIuMDk1LTEuNTktMS42MDgtMi40Mi0zLjc4Ni0yLjQyLTcuMjMgMC0yLjgxLjQ5Ni01LjM3OCAyLjQ0Mi03LjQwNyAxLjQ2My0xLjUxMiAzLjc1NS0yLjIxIDYuODc1LTIuMjFoNC4zODJ2NC4wNmgtNC4yOTNjLTEuNjUyIDAtMi41ODUuMjQ2LTMuNDgzIDEuMTIyLS43NzIuNzk3LTEuMzAyIDIuMzA1LTEuMzAyIDQuMjkgMCAyLjAzLjQwNSAzLjQ5MyAxLjI0NiA0LjQ1LjY5NS43NDggMS45NjIuOTc2IDMuMTUzLjk3NmgyLjAzM2w2LjM4LTE0Ljg5Nmg2Ljc4NGw3LjY2NyAxNy45MTZWMjUuODU4aDYuODk1bDcuOTU2IDEzLjE5VjI1Ljg2aDQuNjRWNDQuOHpNLTEgNDguNTE4aDcuNzM2bDEuNzQ0LTQuMjA2aDMuOTA1bDEuNzQgNC4yMDdoMTUuMjJWNDUuM2wxLjM2IDMuMjNoNy45bDEuMzU4LTMuMjc4djMuMjY1SDc3Ljc5bC0uMDItNi45MDdoLjczM2MuNTEyLjAxOC42NjIuMDY1LjY2Mi45MXY1Ljk5NmgxOS41NjN2LTEuNjFjMS41NzguODQ3IDQuMDMzIDEuNjEgNy4yNjIgMS42MWg4LjIzbDEuNzYyLTQuMjA4aDMuOTA1bDEuNzIyIDQuMjA3aDE1Ljg2di0zLjk5N2wyLjQgMy45OTZoMTIuNzFWMjIuMUgxNDB2My4xMmwtMS43NjItMy4xMmgtMTIuOTA1djMuMTJsLTEuNjE4LTMuMTJoLTE3LjQzM2MtMi45MTggMC01LjQ4NC40MDctNy41NTYgMS41NDJWMjIuMWgtMTIuMDN2MS41NDJjLTEuMzItMS4xNy0zLjExNi0xLjU0Mi01LjExNC0xLjU0MmgtNDMuOTVsLTIuOTUgNi44MjMtMy4wMjgtNi44MjNIMTcuODF2My4xMmwtMS41Mi0zLjEySDQuNDgzTC0xIDM0LjY2MlY0OC41MnptMTYxLjA0IDEzLjk1aC04LjI1MmMtLjgyNCAwLTEuMzcuMDMtMS44MzIuMzQtLjQ3OC4zMDgtLjY2Mi43NjMtLjY2MiAxLjM2NCAwIC43MTUuNDA0IDEuMi45OSAxLjQxLjQ3OC4xNjguOTkuMjE2IDEuNzQ1LjIxNmwyLjQ1LjA2NmMyLjQ3LjA2IDQuMTMuNDg3IDUuMTMgMS41MjUuMTgzLjE0LjI5My4zLjQyLjQ2di01LjM5em0wIDEyLjQ5Yy0xLjEgMS42MDgtMy4yNDMgMi40MjMtNi4xNDQgMi40MjNoLTguNzQ0di00LjA2aDguNzA4Yy44NjQgMCAxLjQ3LS4xMSAxLjgzMi0uNDcuMzE2LS4yOS41MzYtLjcxLjUzNi0xLjIzIDAtLjU1LS4yMi0uOTktLjU1My0xLjI1LS4zMy0uMjktLjgwNy0uNDItMS41OTUtLjQyLTQuMjUtLjE0My05LjU1NS4xMy05LjU1NS01Ljg2MyAwLTIuNzUgMS43NDUtNS42NCA2LjQ5Ni01LjY0aDkuMDJ2LTMuNzdoLTguMzhjLTIuNTIgMC00LjM2LjYwNi01LjY2IDEuNTQ3di0xLjU1aC0xMi40Yy0xLjk4IDAtNC4zMDQuNDktNS40MDQgMS41NDd2LTEuNTVoLTIyLjEzdjEuNTQ3Yy0xLjc2My0xLjI3LTQuNzM1LTEuNTQ3LTYuMTA2LTEuNTQ3aC0xNC42djEuNTRjLTEuMzkzLTEuMzUtNC40OS0xLjU0OC02LjM4LTEuNTQ4SDYyLjY0TDU4LjkgNTguNzFsLTMuNS00LjA0NUgzMC45OTJWODEuMUg1NC45NGwzLjg1Mi00LjExIDMuNjI4IDQuMTEgMTQuNzYuMDE0di02LjIyaDEuNDUyYzEuOTU4LjAzIDQuMjY4LS4wNDcgNi4zMDYtLjkyOHY3LjEzaDEyLjE3NXYtNi44OWguNTg3Yy43NSAwIC44MjMuMDMyLjgyMy43OHY2LjExaDM2Ljk4NWMyLjM0OCAwIDQuODAyLS42IDYuMTYtMS42OXYxLjY5SDE1My40YzIuNDQyIDAgNC44MjYtLjM0MiA2LjY0LTEuMjE4di00LjkyNnptLTE4LjA2LTcuNTdjLjg4LjkxMyAxLjM1NCAyLjA2NSAxLjM1NCA0LjAxNSAwIDQuMDc1LTIuNTQ2IDUuOTc4LTcuMTEyIDUuOTc4aC04LjgxOHYtNC4wNmg4Ljc4MmMuODYgMCAxLjQ2OC0uMTEgMS44NS0uNDcuMzEtLjI5LjUzNC0uNzEuNTM0LTEuMjMgMC0uNTUtLjI0LS45OS0uNTUyLTEuMjUtLjM0Ni0uMjktLjgyNC0uNDItMS42MTItLjQyLTQuMjM0LS4xNDMtOS41MzcuMTMtOS41MzctNS44NjMgMC0yLjc1IDEuNzItNS42NCA2LjQ3LTUuNjRoOS4wN3Y0LjAzaC04LjMwNmMtLjgyNCAwLTEuMzYuMDMtMS44MTQuMzQ0LS40OTUuMzA3LS42OC43Ni0uNjggMS4zNjMgMCAuNzE1LjQyIDEuMi45OSAxLjQxLjQ4LjE2OC45OS4yMTYgMS43NjMuMjE2bDIuNDM2LjA2NGMyLjQ1Ni4wNiA0LjE0My40ODYgNS4xNyAxLjUyNSAwIDAtMS4wMjctMS4wNCAwIDB6bS00MC44NTMtMS4xN2MtLjYwNi4zNi0xLjM1NS4zOS0yLjIzNi4zOWgtNS41di00LjI1NGg1LjU4Yy44MSAwIDEuNjE4LjAxNyAyLjE2LjM0Mi41OS4zMDcuOTQuODkzLjk0IDEuNzA0IDAgLjgxLS4zNSAxLjQ2NC0uOTM0IDEuODIgMCAwIC41ODYtLjM1NiAwIDB6bTIuNzM0IDIuMzU4YzEuMDEuMzcyIDEuODQgMS4wNCAyLjIyIDEuNTkuNjQuOTI2LjczIDEuNzkuNzUgMy40NnYzLjc1NWgtNC41NHYtMi4zN2MwLTEuMTQuMTEtMi44Mi0uNzMtMy43LS42Ni0uNjgtMS42Ny0uODQtMy4zMi0uODRIOTMuNHY2LjkyaC00LjU1VjU4LjQ0SDk5LjNjMi4yOSAwIDMuOTYuMSA1LjQ0Ny44OTQgMS40MjguODYgMi4zMjcgMi4wNDUgMi4zMjcgNC4yMDYgMCAzLjAyMy0yLjAxNiA0LjU2Ni0zLjIxIDUuMDQgMCAwIDEuMTk0LS40NzQgMCAwem01LjcyLTEwLjE0aDE1LjExdjMuOTE3aC0xMC42djMuNDQ1aDEwLjM1djMuODY1aC0xMC4zNXYzLjc3bDEwLjYuMDE3djMuOTNoLTE1LjExVjU4LjQzNnptLTMwLjU0IDguNzQyaC01Ljg1di00LjgyNGg1LjkwN2MxLjYzNCAwIDIuNzcuNjY2IDIuNzcgMi4zMjMgMCAxLjYzOC0xLjA4MyAyLjUtMi44MjMgMi41em0tMTAuMzYgOC40OGwtNi45NS03LjcxNyA2Ljk1LTcuNDd2MTUuMTl6bS0xNy45NS0yLjIyNUgzOS41OXYtMy43N2g5Ljk0di0zLjg2NWgtOS45NHYtMy40NDVoMTEuMzVsNC45NTIgNS41Mi01LjE3IDUuNTZ6bTM1Ljk5Ny04Ljc1NmMwIDUuMjYzLTMuOTI3IDYuMzUtNy44ODUgNi4zNWgtNS42NXY2LjM1NGgtOC44bC01LjU3NC02LjI3LTUuNzkzIDYuMjdIMzUuMDhWNTguNDRoMTguMjFsNS41NyA2LjIxIDUuNzU4LTYuMjFoMTQuNDY3YzMuNTkzIDAgNy42My45OTUgNy42MyA2LjI0MiAwIDAgMC01LjI0OCAwIDB6bTAgMCIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4K" /></a>
- <a href="http://support.iconfinder.com/customer/portal/articles/1743927-support-credit-cards-and-payment-types" data-toggle="tooltip" data-original-title="We accept PayPal"><img src="data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgaGVpZ2h0PSIxMDAiIHZpZXdCb3g9IjAgMCAxNjAgMTAwIiB3aWR0aD0iMTYwIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+PHBhdGggZD0iTTE0OCAwSDhDNCAwIDAgNCAwIDh2ODBjMCA4IDQgMTIgMTIgMTJoMTM2YzggMCAxMi00IDEyLTEyVjEyYzAtOC00LTEyLTEyLTEyem0wIDAiIGZpbGw9IiNGNkY2RjYiLz48cGF0aCBkPSJNMTUxLjc2NSAzMy40NTdoLTQuMjFjLS45NiAwLTEuOTM3LjcxNy0yLjIxIDEuNjMtLjAxLjAzNi0uMDMuMDcyLS4wNC4xMWwtLjI3MiAxLjIxNC01Ljc3IDI1LjQ3Yy0uMTMzLjU4LS4yMjIuOTUtLjI1IDEuMDVsLjAxMi4wMTZjLS4yLjg5LjM1IDEuNjI2IDEuMjUyIDEuNzA4bC4wMTIuMDE4aDQuMzZjLjk1IDAgMS45Mi0uNzEgMi4yLTEuNjEuMDEtLjA0NC4wMy0uMDg0LjA0LS4xM2w2LjI5My0yNy43MjUtLjAxLS4wMDRjLjIxNC0uOTQ3LS40MTQtMS43MzQtMS40Mi0xLjczNHpNMTMwLjIyIDU4LjQ4M2MtLjU4My4zNTctMS4xOTguNjYzLTEuODQzLjkyMy0uODY3LjM0LTEuNjkuNTItMi40NS41Mi0xLjE2NiAwLTIuMDYzLS4xNi0yLjY3LS41MDUtLjYwNi0uMzItLjkyNC0uODktLjkxNC0xLjcgMC0uOTMuMjIyLTEuNjYuNjgtMi4yMy40NjQtLjU1IDEuMTUyLS45OSAyLjAwNC0xLjMyLjg0OC0uMjggMS44OS0uNTEgMy4wOTUtLjY3IDEuMDctLjEzIDMuMTg2LS4zNyAzLjQ1Ny0uMzcuMjctLjAwMy40NS0uMTUuMzMuNTU1LS4wNi4zMDUtLjY3IDIuNzQ3LS45NSAzLjg1OC0uMDguMzM0LS41NC44Mi0uNzUuOTUgMCAwIC4yMDgtLjEzIDAgMHptOC4zMDYtMTcuMTY3Yy0xLjc4My0uOTctNC41Ny0xLjQ1OC04LjM4Ni0xLjQ1OC0xLjg4NyAwLTMuNzgzLjE0Ny01LjY4NS40MzUtMS4zOTcuMjA4LTEuNTQuMjQyLTIuNDA4LjQyNi0xLjc4NS4zNy0yLjA2IDIuMTEtMi4wNiAyLjExbC0uNTczIDIuMjkzYy0uMzI1IDEuNDcuNTMzIDEuNDEuOTE2IDEuMjk0Ljc4LS4yMyAxLjIwMi0uNDU3IDIuNzkyLS44MDcgMS41Mi0uMzM2IDMuMTI1LS41ODcgNC40MDYtLjU3NyAxLjg4IDAgMy4zMDguMiA0LjI1Ny41ODUuOTUuNDA2IDEuNDIgMS4wOSAxLjQyIDIuMDc2LjAwNC4yMzIuMDEuNDUzLS4wNzYuNjQ2LS4wOC4xOC0uMjMuMzUzLS42OC40MTMtMi42OC4xNTMtNC42MS4zOS02LjkzLjcyLTIuMjg4LjMxNC00LjI5Ljg1LTUuOTYgMS41OTUtMS43ODUuNzctMy4xMiAxLjgtNC4wNCAzLjEwNC0uODk1IDEuMzEzLTEuMzQ1IDIuOS0xLjM1IDQuNzc0IDAgMS43NjguNjU1IDMuMjEgMS45MTggNC4zMyAxLjI4IDEuMTA2IDIuOTQgMS42NTMgNC45NTIgMS42NTMgMS4yNTYtLjAwOCAyLjI0LS4wOTYgMi45NDQtLjI2Ny43LS4xNzIgMS40Ni0uNDE1IDIuMjYzLS43NTQuNi0uMjQ3IDEuMjUtLjYgMS45MzMtMS4wNDQuNjg2LS40NDQgMS4xNi0uNzYgMS43Ny0xLjE1bC4wMi4wNC0uMTcuNzM3YzAgLjAwOC0uMDEuMDEtLjAxLjAxOGwuMDA1LjAxN2MtLjE5OC44ODQuMzUgMS42MiAxLjI1IDEuNzFsLjAxLjAxNGguMDhsLjAwNC4wMDNjLjYgMCAyLjY1NCAwIDMuNjE0LS4wMDJoLjY3Yy4wNDQgMCAuMDUtLjAxLjA2Ni0uMDIuOTItLjExIDEuODAyLS44NCAyLjAxLTEuNzE4bDMuNDMtMTQuNDA0Yy4wOC0uMzQuMTQtLjczLjE3Ni0xLjE4LjA0Mi0uNDU4LjA5My0uODMuMDgtMS4xLjAwNS0yLjA0LS44OTQtMy41NS0yLjY3LTQuNTE4em0tMjAuNjQ1LTMuMjgyYy0uNTgtMS4xMDgtMS40Ni0yLTIuNTgtMi42OTUtMS4xNC0uNy0yLjUtMS4xOC00LjA4LTEuNDYtMS41Ni0uMjctMy40MS0uNDItNS41Mi0uNDNsLTkuODIuMDAzYy0xLjAxMi4wMTctMi4wMDQuNzktMi4yNCAxLjc0MmwtNi42MDMgMjcuOThjLS4yNC45NS40MTcgMS43NCAxLjQxIDEuNzM2bDQuNzEzLS4wMWMxIC4wMSAyLjAxNy0uNzc3IDIuMjUzLTEuNzNsMS41OS02Ljc4Yy4yMjItLjk1IDEuMjM4LTEuNzUgMi4yNTQtMS43MzRoMS4zNGM1Ljc0OCAwIDEwLjIwNS0xLjE1IDEzLjM5Ni0zLjQ0IDMuMTg0LTIuMyA0Ljc4Ny01LjMyIDQuNzg3LTkuMDctLjAxLTEuNjQtLjI5OC0zLjAyLS44OTctNC4xMTd6bS0xMC4xMyA5LjE1Yy0xLjQuOTk3LTMuMzggMS40OTYtNS45MiAxLjQ5NmgtMS4xN2MtMS4wMS4wMTItMS42Ni0uNzg0LTEuNDItMS43MzdsMS40MS01Ljk0Yy4yMS0uOTM4IDEuMjM4LTEuNzM3IDIuMjMtMS43M2wxLjU0Ni0uMDA3YzEuOC4wMDggMy4xNDguMyA0LjA4Ljg4NS45MTQuNTkgMS4zNTcgMS41MSAxLjM2NCAyLjczLjAwMyAxLjg2LS43MDMgMy4yOS0yLjExNiA0LjMxIiBmaWxsPSIjMzA2RkM1Ii8+PHBhdGggZD0iTTg0LjgzNiAzOS44NThjLS44OTUgMC0yLjA2OC43MS0yLjYyMyAxLjU2NSAwIDAtNS45ODIgMTAuMDQ2LTYuNTcgMTEuMDUtLjMyLjU0LS42NDMuMTk3LS42OTctLjAwNGwtMS44NTQtMTAuOThjLS4yMDMtLjg3LTEuMTI1LTEuNjEtMi4yNzgtMS42MWwtMy43My4wMDNjLS45IDAtMS40Ni43MDYtMS4yNiAxLjU2IDAgMCAyLjg1IDE1LjgzIDMuNDA3IDE5LjU1My4yOCAyLjA2LS4wMiAyLjQyNC0uMDIgMi40MjRsLTMuNyA2LjMxN2MtLjU0Ljg1OC0uMjQzIDEuNTYuNjUgMS41Nmw0LjMyNS0uMDA0Yy44OTUgMCAyLjA4LS42OTggMi42MTMtMS41NTZsMTYuNjMtMjcuNTVzMS41OS0yLjM1My4xMjQtMi4zMzNjLTEgLjAxMy01LjAxIDAtNS4wMSAwek01My42MTQgNTguNDgzYy0uNTgzLjM1Ny0xLjE5Ny42Ni0xLjg0Mi45MjMtLjg2Ny4zNC0xLjY5My41MTgtMi40NS41MTgtMS4xNjQgMC0yLjA2My0uMTYtMi42Ny0uNTAzLS42MDctLjMyLS45MjYtLjg5LS45MTYtMS43IDAtLjkzLjIyNC0xLjY2LjY4My0yLjIzLjQ2LS41NSAxLjE0LS45OSAyLTEuMzIuODUtLjI4IDEuODktLjUxIDMuMDktLjY3IDEuMDctLjEzIDMuMTktLjM3IDMuNDYtLjM3cy40NS0uMTQ3LjMzLjU1NWMtLjA1OC4zMDUtLjY3IDIuNzUtLjk1IDMuODYtLjA4NC4zMzMtLjU0LjgxOC0uNzQ0Ljk0OCAwIDAgLjIwNS0uMTMgMCAwem04LjMwNi0xNy4xNjhjLTEuNzgyLS45Ny00LjU3LTEuNDU3LTguMzg1LTEuNDU3LTEuODg3IDAtMy43ODMuMTQ2LTUuNjg2LjQzNC0xLjQuMjA3LTEuNTQuMjQyLTIuNDEuNDI2LTEuNzkuMzgtMi4wNiAyLjExOC0yLjA2IDIuMTE4bC0uNTggMi4yOTZjLS4zMjUgMS40NjguNTM0IDEuNDA3LjkxNiAxLjI5My43NzctLjIzIDEuMjAyLS40NTYgMi43OTItLjgwOCAxLjUxNi0uMzM0IDMuMTI0LS41ODUgNC40MDMtLjU3NiAxLjg4IDAgMy4zMS4yIDQuMjYuNTkuOTUuNDEgMS40MTggMS4wOTggMS40MTggMi4wOC4wMDcuMjM1LjAxLjQ1Ni0uMDcyLjY0Ny0uMDguMTgtLjIzLjM1NS0uNjguNDEzLTIuNjguMTU3LTQuNi4zOTQtNi45MjMuNzIzLTIuMjg4LjMxNC00LjI4OC44NS01Ljk2IDEuNTk0LTEuNzg1Ljc3LTMuMTE3IDEuODAzLTQuMDM1IDMuMTA4LS45IDEuMzE0LTEuMzQ3IDIuOS0xLjM1IDQuNzc1IDAgMS43NjcuNjU1IDMuMjEgMS45MTcgNC4zMyAxLjI4IDEuMTA1IDIuOTQgMS42NTMgNC45NSAxLjY1MyAxLjI2LS4wMSAyLjI0LS4wOTcgMi45NS0uMjY3LjY5NS0uMTcyIDEuNDYtLjQxNCAyLjI2LS43NTMuNi0uMjQ3IDEuMjUtLjYgMS45MzItMS4wNDUuNjgyLS40NDUgMS4xNi0uNzYgMS43Ny0xLjE1bC4wMi4wMzctLjE3LjczNWMtLjAwNC4wMDgtLjAxLjAxLS4wMS4wMmwuMDA0LjAxYy0uMTk3Ljg5LjM1IDEuNjI3IDEuMjUgMS43MWwuMDEuMDJoLjA4bC4wMDMuMDA1IDMuNjEtLjAwNWguNjdjLjA0NyAwIC4wNTQtLjAxNi4wNjgtLjAyNS45MjMtLjExMyAxLjgtLjg0MiAyLjAxLTEuNzE1bDMuNDMtMTQuNDFjLjA3OC0uMzM4LjE0LS43My4xNzYtMS4xNzguMDQyLS40Ni4wOTItLjgzLjA4LTEuMS4wMDYtMi4wNC0uODk1LTMuNTUtMi42Ny00LjUyem0tMjEuNDQ0LTMuMjhjLS41ODUtMS4xMS0xLjQ3LTIuMDAyLTIuNTg2LTIuNjk2LTEuMTQ1LS43LTIuNTA2LTEuMTgtNC4wODItMS40Ni0xLjU1OC0uMjctMy40MS0uNDItNS41MjItLjQzbC05LjgyLjAwM2MtMS4wMTIuMDE3LTIuMDA1Ljc5LTIuMjM4IDEuNzQyTDkuNjI0IDYzLjE4Yy0uMjQuOTUuNDE2IDEuNzQyIDEuNDEgMS43MzdsNC43MTItLjAxYzEgLjAxIDIuMDE4LS43NzggMi4yNTQtMS43M2wxLjU5My02Ljc5Yy4yMjMtLjk1IDEuMjQtMS43NDcgMi4yNTUtMS43MzNoMS4zNGM1Ljc0OCAwIDEwLjIwNS0xLjE1IDEzLjM5Ny0zLjQ0IDMuMTgzLTIuMyA0Ljc4Ni01LjMxNyA0Ljc4Ni05LjA3LS4wMS0xLjYzOC0uMjktMy4wMi0uODktNC4xMTR6bS0xMC4xMzMgOS4xNWMtMS40MDcuOTk2LTMuMzggMS40OTUtNS45MiAxLjQ5NWgtMS4xN2MtMS4wMS4wMTItMS42NjMtLjc4NC0xLjQyMy0xLjczN2wxLjQwOC01Ljk0Yy4yMS0uOTM4IDEuMjM2LTEuNzM3IDIuMjMyLTEuNzNsMS41NDMtLjAwN2MxLjgwMi4wMDggMy4xNS4zIDQuMDguODg1LjkxNS41OSAxLjM1OCAxLjUxIDEuMzY1IDIuNzMuMDA0IDEuODYtLjcwMiAzLjI5LTIuMTE1IDQuMzEiIGZpbGw9IiMyNjU2OTciLz48L2c+PC9zdmc+Cg==" /></a>
- </div>
-</footer>
- </div>
-
- <script type="text/javascript">
-(function(w) {
- w.FACEBOOK_APP_ID = '551474624906319';
- w.STRIPE_PUBLISHABLE_KEY = 'pk_live_4WvRhCNvhRplOQTUvs65uw9w';
-
-
-
-}(window));
- </script>
- <script async type="text/javascript" src="https://js.stripe.com/v2/"></script>
- <div id="fb-root"></div>
- <script type="text/javascript">adroll_adv_id="WFC5ZQ7JFZHX3A2YOSX7AE",adroll_pix_id="PZHUY52KNFFF7HZ3QYANR4",function(){var a=window.onload;window.onload=function(){__adroll_loaded=!0;var b=document.createElement("script"),c="https:"==document.location.protocol?"https://s.adroll.com":"http://a.adroll.com";b.setAttribute("async","true"),b.type="text/javascript",b.src=c+"/j/roundtrip.js",((document.getElementsByTagName("head")||[null])[0]||document.getElementsByTagName("script")[0].parentNode).appendChild(b),a&&a()}}();</script>
- </body>
-</html>
\ No newline at end of file
diff --git a/images/icon_book.png b/images/icon_book.png
deleted file mode 100644
index a4bb24e..0000000
Binary files a/images/icon_book.png and /dev/null differ
diff --git a/images/icon_image.png b/images/icon_image.png
deleted file mode 100644
index 48d982a..0000000
Binary files a/images/icon_image.png and /dev/null differ
diff --git a/images/icon_journal.png b/images/icon_journal.png
deleted file mode 100644
index 3015e58..0000000
Binary files a/images/icon_journal.png and /dev/null differ
diff --git a/images/icon_map.png b/images/icon_map.png
deleted file mode 100644
index 664edfe..0000000
Binary files a/images/icon_map.png and /dev/null differ
diff --git a/images/icon_score.png b/images/icon_score.png
deleted file mode 100644
index a35d715..0000000
Binary files a/images/icon_score.png and /dev/null differ
diff --git a/images/icon_text_resource.png b/images/icon_text_resource.png
deleted file mode 100644
index 13c634a..0000000
Binary files a/images/icon_text_resource.png and /dev/null differ
diff --git a/images/library-logo.png b/images/library-logo.png
deleted file mode 100644
index 0e31be2..0000000
Binary files a/images/library-logo.png and /dev/null differ
diff --git a/primo-explore/custom/.gitignore b/primo-explore/custom/.gitignore
deleted file mode 100644
index e69de29..0000000
diff --git a/primo-explore/custom/41SLSP_EPF-prod/js/custom.js.map b/primo-explore/custom/41SLSP_EPF-prod/js/custom.js.map
deleted file mode 100644
index a7a559e..0000000
--- a/primo-explore/custom/41SLSP_EPF-prod/js/custom.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"sources":["node_modules/browser-pack/_prelude.js","primo-explore/custom/41SLSP_EPF-prod/js/account/accountlinks.component.js","primo-explore/custom/41SLSP_EPF-prod/js/account/index.js","primo-explore/custom/41SLSP_EPF-prod/js/briefview/availabilityline.component.js","primo-explore/custom/41SLSP_EPF-prod/js/briefview/index.js","primo-explore/custom/41SLSP_EPF-prod/js/databases/index.js","primo-explore/custom/41SLSP_EPF-prod/js/databases/treenav.component.js","primo-explore/custom/41SLSP_EPF-prod/js/filters/custom_translate.filter.js","primo-explore/custom/41SLSP_EPF-prod/js/filters/trust_html.filter.js","primo-explore/custom/41SLSP_EPF-prod/js/fullview/almaviewit.component.js","primo-explore/custom/41SLSP_EPF-prod/js/fullview/index.js","primo-explore/custom/41SLSP_EPF-prod/js/homepage/alert.js","primo-explore/custom/41SLSP_EPF-prod/js/homepage/index.js","primo-explore/custom/41SLSP_EPF-prod/js/homepage/mainmenu.component.js","primo-explore/custom/41SLSP_EPF-prod/js/homepage/searchbar.component.js","primo-explore/custom/41SLSP_EPF-prod/js/homepage/topbar.component.js","primo-explore/custom/41SLSP_EPF-prod/js/main.js","primo-explore/custom/41SLSP_EPF-prod/js/slsp/epfl_custom_slsp.js"],"names":["r","e","n","t","o","i","f","c","require","u","a","Error","code","p","exports","call","length","1","module","bindings","parentCtrl","controllerAs","controller","vm","this","console","log","view","accountLinksService","vid","replace","template","angular","component","$filter","$http","userService","parse_doi","txt","m","match","is_epfl_IP","userIP","getIP","found","parseInt","get_doi","hasOwnProperty","result","pnx","addata","doi","control","recordtype","display","_iteratorNormalCompletion","_didIteratorError","_iteratorError","undefined","_step","_iterator","identifier","Symbol","iterator","next","done","value","err","return","check_doi","set_url_pdf","url","method","then","response","status","pdf_link","data","fullTextFile","filter","$translate","trad","costWarningScan","fr","en","de","it","costWarningScanEPFL","costWarningNetworkLoan","costWarningPEB","mainTitle","subTitle","switchEduID","illButton","feedbackLink","vpnMSG","feedbackLinkMSG","pdfAccess","includes","use","$sce","trustAsHtml","get_txt","no_report_link","item","openaccess","oa","mmsId","recordid","title","creationdate","creator","join","type","ident","indexOf","substring","userAgent","navigator","subject","body","encodeURIComponent","active","begin","end","homepage_module","$location","$element","$doCheck","document","readyState","elem","querySelector","parentElement","modified","removeAttribute","setAttribute","alert","d_now","Date","now","lang","showTabsAndScopes","window","location","href","split","configurationUtil","app","$compile","$scope","$rootScope","form","formLength","children","typeFeeAlert","currentTypeFeeAlert","htmlwarning","getFeeAlert","get_peb_button","fn","instant","htmlcompiled","element","insertBefore","replaceWith","Object","defineProperty","configurable","get","getFilteredForm","key","options","sort","b","onTopInstitutions","isEPFL","requestService","_service","linkBase","requestHeader","allElements","getElementsByTagName","getAttribute","parentNode","className","click_peb","button","click","origin","biblinkText","biblinkBase","getLibraryUrl","loc","libraryCode","getLibrary","currLoc","librarycodeTranslation","service","jwtHelper","isGuest","jwt","sessionStorage","getItem","decodedToken","decodeToken","userGroup","userName","userIp","usrNme","removeClass","addClass","getAlert","ga","almaHowToGetitService","reqAlert","_htmlMsg","myEl2"],"mappings":"CAAA,SAAAA,EAAAC,EAAAC,EAAAC,GAAA,SAAAC,EAAAC,EAAAC,GAAA,IAAAJ,EAAAG,GAAA,CAAA,IAAAJ,EAAAI,GAAA,CAAA,IAAAE,EAAA,mBAAAC,SAAAA,QAAA,IAAAF,GAAAC,EAAA,OAAAA,EAAAF,GAAA,GAAA,GAAAI,EAAA,OAAAA,EAAAJ,GAAA,GAAA,IAAAK,EAAA,IAAAC,MAAA,uBAAAN,EAAA,KAAA,MAAAK,EAAAE,KAAA,mBAAAF,EAAA,IAAAG,EAAAX,EAAAG,GAAA,CAAAS,QAAA,IAAAb,EAAAI,GAAA,GAAAU,KAAAF,EAAAC,QAAA,SAAAd,GAAA,OAAAI,EAAAH,EAAAI,GAAA,GAAAL,IAAAA,IAAAa,EAAAA,EAAAC,QAAAd,EAAAC,EAAAC,EAAAC,GAAA,OAAAD,EAAAG,GAAAS,QAAA,IAAA,IAAAL,EAAA,mBAAAD,SAAAA,QAAAH,EAAA,EAAAA,EAAAF,EAAAa,OAAAX,IAAAD,EAAAD,EAAAE,IAAA,OAAAD,EAAA,CAAA,CAAAa,EAAA,CAAA,SAAAT,EAAAU,EAAAJ,GCAA,aAQAI,EAAOJ,QAAU,CACbK,SAAU,CAACC,WAAY,KACvBC,aAAc,OACdC,WAAY,CAAC,WACT,IAAIC,EAAKC,KACTC,QAAQC,IAAIH,GACZA,EAAGI,KAAOJ,EAAGH,WAAWQ,oBAAoBC,IAAIC,QAAQ,IAAK,OAGjEC,SAAA,kSChBqBC,QAAQd,OAAO,gBAAiB,CAAC,gBACvCe,UAAU,uBAAwBzB,EAAQ,oGCF7DU,EAAOJ,QAAU,CACbK,SAAU,CAACC,WAAY,KACvBC,aAAc,OACdC,WAAY,CAAC,UAAW,QAAS,cAAe,SAASY,EAASC,EAAOC,GACrE,IAAIb,EAAKC,KACT,SAASa,EAAUC,GACf,IACIC,EAAID,EAAIE,MADH,mCAET,GAAID,EACA,OAAOA,EAAE,GAIjBhB,EAAGkB,YAAa,EAChB,IAAIC,EAASN,EAAYO,QAGzB,GAAID,EAAQ,CACR,IACME,EAAQF,EAAOF,MADP,8BAEVI,IAAsB,KAAZA,EAAM,IAAkC,KAApBC,SAASD,EAAM,OAC7CrB,EAAGkB,YAAa,GAIxBlB,EAAGuB,QAAU,WACT,GAAIvB,EAAGH,WAAW2B,eAAe,WAAaxB,EAAGH,WAAW4B,OAAOD,eAAe,OAAO,CACrF,IAAIE,EAAM1B,EAAGH,WAAW4B,OAAOC,IAG/B,GAAI,WAAYA,GAAO,QAASA,EAAIC,QAAUb,EAAUY,EAAIC,OAAOC,IAAI,KAAmC,YAA5BF,EAAIG,QAAQC,WAAW,GACjG,OAAOhB,EAAUY,EAAIC,OAAOC,IAAI,IAIpC,GAAI,YAAaF,GAAO,eAAgBA,EAAIK,QAAS,CAAA,IAAAC,GAAA,EAAAC,GAAA,EAAAC,OAAAC,EAAA,IACjD,IAAA,IAAAC,EAAAC,EAAyBX,EAAIK,QAAQO,WAArCC,OAAAC,cAAAR,GAAAI,EAAAC,EAAAI,QAAAC,MAAAV,GAAA,EAAgD,CAAA,IAArCM,EAAqCF,EAAAO,MAC5C,GAAI7B,EAAUwB,GACV,OAAOxB,EAAUwB,IAHwB,MAAAM,GAAAX,GAAA,EAAAC,EAAAU,EAAA,QAAA,KAAAZ,GAAAK,EAAAQ,QAAAR,EAAAQ,SAAA,QAAA,GAAAZ,EAAA,MAAAC,OAU7DlC,EAAG8C,UAAY,WAYX,OAXK9C,EAAGwB,eAAe,QACfxB,EAAGH,WAAW2B,eAAe,WAAaxB,EAAGH,WAAW4B,OAAOD,eAAe,SAC1ExB,EAAGuB,WACHvB,EAAG4B,IAAM5B,EAAGuB,UACZvB,EAAG+C,eAGH/C,EAAG4B,IAAM,QAIjB5B,EAAGwB,eAAe,aAK1BxB,EAAG+C,YAAc,WACb,IAAIC,EAAA,yEAA+EhD,EAAG4B,IAAlF,qDACJhB,EAAM,CACFqC,OAAQ,MACRD,IAAKA,IACNE,KAAK,SAAyBC,GAE7B,GAAwB,MAApBA,EAASC,OAAgB,CACzB,IACI,IAAIC,EAAWF,EAASG,KAAKA,KAAKC,aACpC,MAAM7E,GACA2E,EAAW,GAEG,EAAlBA,EAAS5D,SACTO,EAAGqD,SAAWA,KAIvB,SAASF,GACRnD,EAAG4B,IAAM,UAMrBpB,SAAA,kTCtFuBC,QAAQd,OAAO,kBAAmB,CAAC,gBACzCe,UAA4C,uCAAwCzB,EAAQ,4GCDvFwB,QAAQd,OAAO,kBAAmB,CAAC,gBACzCe,UAAU,kBAAmBzB,EAAQ,6ECFzD,aAMAU,EAAOJ,QAAU,CACbK,SAAU,CAACC,WAAY,KACvBC,aAAc,OACdC,WAAY,CAAC,UAAW,SAASY,+BCTrC,aAoCkCF,QAAQd,OAAO,wBAAyB,IACjE6D,OAAO,kBAAmB,CAAC,aAAc,SAASC,GACnD,OAAO,SAAS1C,GACZ,IAAI2C,EAAO,CAEPC,gBAAgB,CACZC,GAAI,6MACJC,GAAI,mLACJC,GAAI,yMACJC,GAAI,4MAERC,oBAAoB,CAChBJ,GAAI,wEACJC,GAAI,qDACJC,GAAI,kEACJC,GAAI,sEAERE,uBAAuB,CACnBL,GAAI,wEACJC,GAAI,2DACJC,GAAI,gEACJC,GAAI,wEAERG,eAAe,CACXN,GAAI,0RACJC,GAAI,qOACJC,GAAI,yPACJC,GAAI,kQAERI,UAAU,CACNP,GAAI,kBACJC,GAAI,uBACJC,GAAI,sBACJC,GAAI,kBAERK,SAAS,CACLR,GAAI,wEACJC,GAAI,6DACJC,GAAI,2DACJC,GAAI,oEAERM,YAAY,CACRT,GAAI,6CACJC,GAAI,+BACJC,GAAI,yCACJC,GAAI,sCAERO,UAAU,CACNV,GAAI,iCACJC,GAAI,2BACJC,GAAI,YACJC,GAAI,+BAERQ,aAAa,CACTX,GAAI,+BACJC,GAAI,2BACJC,GAAI,yBACJC,GAAI,oCAERS,OAAO,CACHZ,GAAI,uRACJC,GAAI,iPACJC,GAAI,oPACJC,GAAI,uQAQRU,gBAAgB,CACZb,GAAI,iHACJC,GAAI,iHACJC,GAAI,iHACJC,GAAI,kHAERW,UAAU,CACNd,GAAI,sBACJC,GAAI,2BACJC,GAAI,2BACJC,GAAI,6BAGZ,MAAI,CAAC,KAAM,KAAM,KAAM,MAAMY,SAASlB,EAAWmB,OACtClB,EAAK3C,GAAK0C,EAAWmB,OAErBlB,EAAK3C,GAAK6C,+BC3HjC,aAYAnD,QAAQd,OAAO,kBAAmB,IAC7B6D,OAAO,YAAa,CAAC,OAAQ,SAASqB,GACvC,OAAO,SAAS9D,GACZ,OAAO8D,EAAKC,YAAY/D,+BCfhC,aAQApB,EAAOJ,QAAU,CACbK,SAAU,CAACC,WAAY,KACvBC,aAAc,OACdC,WAAY,CAAC,UAAW,cAAe,SAASY,EAASE,GACrD,IAAIb,EAAKC,KAkBT,GAhBAD,EAAG+E,QAAU,WACT,OAAOpE,EAAQ,kBAARA,CAA2B,WAGtCX,EAAGuE,aAAe,GAClBvE,EAAGkB,YAAa,EAChBlB,EAAGgF,gBAAiB,EAGhBhF,EAAGH,WAAWoF,KAAKvD,IAAIC,OAAOuD,YAA8D,SAAhDlF,EAAGH,WAAWoF,KAAKvD,IAAIC,OAAOuD,WAAW,KACrFlF,EAAGgF,gBAAiB,GAGpBhF,EAAGH,WAAWoF,KAAKvD,IAAIC,OAAOwD,IAA8C,kBAAxCnF,EAAGH,WAAWoF,KAAKvD,IAAIC,OAAOwD,GAAG,KACrEnF,EAAGgF,gBAAiB,IAEnBhF,EAAGgF,eAAe,CAInB,IAAI7D,EAASN,EAAYO,QAGzB,GAAID,EAAQ,CACR,IACME,EAAQF,EAAOF,MADP,8BAEVI,IAAsB,KAAZA,EAAM,IAAkC,KAApBC,SAASD,EAAM,OAC7CrB,EAAGkB,YAAa,GAKxB,IAAIkE,EAAQpF,EAAGH,WAAWoF,KAAKvD,IAAIG,QAAQwD,SAAS,GAChDC,EAAQ,GACRtF,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQuD,OAAuD,EAA9CtF,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQuD,MAAM7F,SAC7E6F,EAAQtF,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQuD,MAAM,IAEjD,IAAIC,EAAe,GACfvF,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQwD,cAAqE,EAArDvF,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQwD,aAAa9F,SAC3F8F,EAAevF,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQwD,aAAa,IAE/D,IAAIC,EAAU,GACVxF,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQyD,SAA2D,EAAhDxF,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQyD,QAAQ/F,SACjF+F,EAAUxF,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQyD,QAAQC,KAAK,OAE1D,IAAIC,EAAO,GACP1F,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQ2D,MAAqD,EAA7C1F,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQ2D,KAAKjG,SAC3EiG,EAAO1F,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQ2D,KAAK,IAE/C,IAAIpD,EAAa,GACjB,GAAItC,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQO,YAAiE,EAAnDtC,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQO,WAAW7C,OAAY,CACnG,IAAIkG,EAAQ3F,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQO,WAAW,IACtB,EAA5BqD,EAAMC,QAAQ,aAEqB,EAA5BD,EAAMC,QAAQ,WADrBtD,EAAatC,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQO,WAAWmD,KAAK,MAAMlF,QAAQ,SAAU,IAAIA,QAAQ,OAAQ,KAGxE,EAAzBoF,EAAMC,QAAQ,QACrBtD,EAAa,SAAWqD,EAAME,UAAUF,EAAMC,QAAQ,OAAS,IAC/B,EAAzBD,EAAMC,QAAQ,UACrBtD,EAAa,SAAWqD,EAAME,UAAUF,EAAMC,QAAQ,OAAS,IAGvE,IAAIE,EAAYC,UAAUD,UAGtBE,EAAU,kBAAoBZ,EAAQ,OAASE,EAAQ,IAGvDW,EAAOtF,EAAQ,kBAARA,CAA2B,mBAAqB,oBAA2B2E,EAAQ,aAAeE,EAAU,WAAaD,EAAe,WAAaG,EAAO,YAAcN,EAAQ,iBAAmB9C,EAAa,iBAAmBwD,EAAY,aAAe3E,EAAS,iBAAmBnB,EAAGkB,WAAa,SAEvTlB,EAAGuE,aAAe,qCAA4C2B,mBAAmBF,GAAW,SAAWE,mBAAmBD,GAAQ,6BAI1IzF,SAAA,s7BCvFsBC,QAAQd,OAAO,iBAAkB,CAAC,gBACxCe,UAAU,qBAAsBzB,EAAQ,iGCF5DU,EAAOJ,QAAU,CAAC4G,QAAQ,EACzBpF,IACG,CAAC6C,GAAA,kRAGAC,GAAA,6QAGAC,GAAA,mRAGAC,GAAA,4RAGJqC,MAAM,uBACNC,IAAI,8DCfL,IACQC,GAAAA,EAAkB7F,QAAQd,OAAO,iBAAkB,CAAC,iBACxCe,UAAU,oBAAqBzB,EAAQ,6BACvDqH,EAAgB5F,UAAU,mBAAoBzB,EAAQ,4BACtDqH,EAAgB5F,UAAU,iBAAkBzB,EAAQ,wICJxD,aAMAU,EAAOJ,QAAU,CACbK,SAAU,CAACC,WAAY,KACvBC,aAAc,OACdC,WAAY,CAAC,YAAa,aAAc,WAAY,SAASwG,EAAW9C,EAAY+C,GAChF,IAAIxG,EAAKC,KACTA,KAAKwG,SAAW,WACZ,GAA4B,aAAxBC,SAASC,WAA8C,CACvD,IAAI,IAAIC,EAAOF,SAASG,cAAc,mCAAmCC,cACzE,MAAMpI,GACFsB,EAAG+G,UAAW,EAEdH,IACAA,EAAKI,gBAAgB,UACrBJ,EAAKK,aAAa,aAAc,aAChCjH,EAAG+G,UAAW,iCCpBlC,aASApH,EAAOJ,QAAU,CACTK,SAAU,CAACC,WAAY,KACvBW,SAAU,4FACVV,aAAc,OACdC,WAAY,CAAC,aAAc,SAAS0D,GAEhC,IAAIzD,EAAKC,KAaT,GANAD,EAAGkH,MAAQjI,EAAQ,gBAGnBe,EAAGmG,QAAS,KAGRnG,EAAGkH,MAAMf,OAAgB,CAGzB,IAAIgB,EAAQC,KAAKC,MACZ,IAAID,KAAKpH,EAAGkH,MAAMd,OAASe,GAAWA,EAAQ,IAAIC,KAAKpH,EAAGkH,MAAMb,OAEjErG,EAAGmG,QAAS,GAKpBnG,EAAG+E,QAAU,WACT,IAAIuC,EAAO,CAAC,KAAM,KAAM,KAAM,MAAM3C,SAASlB,EAAWmB,OAASnB,EAAWmB,MAAM,KAClF,OAAO5E,EAAGmG,OAASnG,EAAGkH,MAAMnG,IAAIuG,GAAQ,IAQ5CtH,EAAGH,WAAW0H,mBAAoB,6CCjD9C,aAQA5H,EAAOJ,QAAU,CACbK,SAAU,CAACC,WAAY,KACvBC,aAAc,OACdC,WAAY,CAAC,YAAa,aAAc,WAAY,SAASwG,EAAW9C,EAAY+C,GACvEvG,KACN+C,IAAMwE,OAAOC,SAASC,KAAKC,MAAM,KAAK,GAAK,QADrC1H,KACkDJ,WAAW+H,kBAAkBtH,IAAM,SAAWmD,EAAWmB,QAGxHpE,SAAA,kMCVJvB,EAAA,8BACAA,EAAA,uBACAA,EAAA,wCACAA,EAAA,kCACAA,EAAA,sBACAA,EAAA,uBACAA,EAAA,wBACAA,EAAA,wBAEUwB,QAAQd,OAAO,aAAc,CAAC,cACA,gBACA,iBACA,wBACA,kBACA,gBACA,iBACA,kBACA,gSCvBxC,IAGQkI,GAAAA,EAAMpH,QAAQd,OAAO,gBAAiB,CAAC,iBAgBvCI,WAAW,wBAAyB,CAAC,UAAW,WAAY,SAAUY,EAAS6F,EAAUsB,EAAUC,EAAQC,GAC3G,IAAIhI,EAAKC,KAGTA,KAAKgI,KAAOzB,EAAS,GAAGM,cAGxB7G,KAAKwG,SAAW,WACZ,IAAIwB,GAAO,EACPC,EAAa,EAiBjB,QAf0C/F,IAAtClC,KAAKgI,KAAKE,SAAS,GAAGA,SAAS,SAAuEhG,IAAlDlC,KAAKgI,KAAKE,SAAS,GAAGA,SAAS,GAAGA,SAAS,IAAuC,kBAAnBnI,EAAGoI,oBAM3EjG,IAAtClC,KAAKgI,KAAKE,SAAS,GAAGA,SAAS,SAAsEhG,IAAlDlC,KAAKgI,KAAKE,SAAS,GAAGA,SAAS,GAAGA,SAAS,KACnGF,EAAOhI,KAAKgI,KAAKE,SAAS,GAAGA,SAAS,GAAGA,SAAS,GAClDD,EAAa,IAPbD,EAAOhI,KAAKgI,KAAKE,SAAS,GAAGA,SAAS,GAAGA,SAAS,GAC3B,kBAAnBnI,EAAGoI,iBACHF,EAAa,IAYjBD,GAAQA,EAAKE,SAAS1I,QAAUyI,GAAqC,EAAvBD,EAAKE,SAAS1I,QAAcO,EAAGwB,eAAe,wBAChGxB,EAAGqI,qBAAuBrI,EAAGoI,eAAgB,CAEzCpI,EAAGqI,oBAAsBrI,EAAGoI,eAC5B,IAAIE,EAAA,8CAA4DtI,EAAGuI,cAA/D,OACJ,GAAuB,mBAAnBvI,EAAGoI,eAAmC,CACtC,IAAIrH,EAAMJ,EAAQ,kBAARA,CAA2B,aACrC,GAAIX,EAAGwI,iBACH,IAAIC,EAAA,+dAUAA,EAAA,oGAAyGzI,EAAGH,WAAWS,IAAvH,QAIRgI,GAAA,2FAA0GG,EAA1G,OAAmH1H,EAAnH,cAGJuH,GAAA,eAA8BrI,KAAKJ,WAAW4D,WAAWiF,QAAQ,8BAAjE,qBAAmHzI,KAAKJ,WAAW4D,WAAWiF,QAAQ,mCAAtJ,iBACA,IAAIC,EAAelI,QAAQmI,QAAQN,GAAa,GAG5CL,EAAKE,SAAS1I,QAAUyI,EAExBD,EAAKY,aAAaF,EAAcV,EAAKE,SAASD,EAAa,IAG3DD,EAAKE,SAASF,EAAKE,SAAS1I,OAAS,GAAGqJ,YAAYH,KAShEI,OAAOC,eAAehJ,EAAGH,WAAY,OAAQ,CACzCoJ,cAAc,EACdC,IAAK,WAEG,IAAIjB,EAAOhI,KAAKkJ,gBAAgB,CAAC,QAAS,eAAe,GACzD,IAAKnJ,EAAGwB,eAAe,8BACnB,IAAK,IAAI1C,EAAI,EAAGA,EAAImJ,EAAKxI,OAAQX,IAC7B,GAAmB,qBAAfmJ,EAAKnJ,GAAGsK,IAA2B,CAQnCnB,EAAKnJ,GAAGuK,QAAQC,KAPhB,SAAkBnK,EAAGoK,GACjB,IAAIC,EAAoB,CAAC,aAAc,eAGvC,OAFArK,EAAIqK,EAAkB5D,QAAQzG,EAAEwD,UAChC4G,EAAIC,EAAkB5D,QAAQ2D,EAAE5G,QACZ,EACbxD,EAAIoK,EAAI,GAAK,IAGxBvJ,EAAA,4BAAmC,EAI/C,OAAOiI,KAMnBjI,EAAGyJ,OAAS,WACR,SAAOzJ,EAAGH,WAAW6J,gBAA+G,EAA7F1J,EAAGH,WAAW6J,eAAeC,SAAS,mBAAmB/D,QAAQ,4BAG5G5F,EAAG4J,SAAW,uBAGd5J,EAAGoI,aAAe,WAEd,MAAI,CAAC,qBAAsB,0BAA2B,0BAA0BzD,SAAS3E,EAAGH,WAAWgK,eAC5F,yBACA,CAAC,0BACA,+BACA,+BACKlF,SAAS3E,EAAGH,WAAWgK,eAC7B7J,EAAGyJ,SAAW,sBAAwB,kBACN,+BAAhCzJ,EAAGH,WAAWgK,cACd,iBAEA,sBAGf7J,EAAGuI,YAAc,WAEb,OAAO5H,EAAQ,kBAARA,CAA2BX,EAAGoI,iBAIzCpI,EAAGwI,eAAiB,WAEhB,IADA,IAAIsB,EAAcpD,SAASqD,qBAAqB,QACvCjL,EAAI,EAAGH,EAAImL,EAAYrK,OAAQX,EAAIH,EAAGG,IAC3C,GAAiD,wBAA7CgL,EAAYhL,GAAGkL,aAAa,eACoC,IAAhEF,EAAYhL,GAAGmL,WAAWC,UAAUtE,QAAQ,eAE5C,OAAOkE,EAAYhL,IAsB/BkB,EAAGmK,UAAY,WACX,IAAIC,EAASpK,EAAGwI,iBACZ4B,EACCA,EAAOC,QAER7C,OAAOC,SAASC,KAAOF,OAAOC,SAAS6C,OAAS,2BAA6BtK,EAAGH,WAAWS,QAWvGuH,EAAInH,UAAU,kBAAmB,CAC7Bd,SAAU,CAAEC,WAAY,KACxBE,WAAY,0BA0BhB8H,EAAI9H,WAAW,oBAAqB,CAAC,WACjC,IAAIC,EAAKC,KACTD,EAAGuK,YAAc,UACjBvK,EAAGwK,YAAc,4BAEjBxK,EAAGyK,cAAgB,WACf,OAAIzK,EAAGH,WAAW6K,KAAgD,QAAzC1K,EAAGH,WAAW6K,IAAIjD,SAASkD,YACzC,6BAEA3K,EAAGwK,aAGlBxK,EAAGI,KAAOJ,EAAGH,WAAW+H,kBAAkBtH,IAAIC,QAAQ,IAAK,KAC3DP,EAAG4K,WAAa,WAEZ,OAAO5K,EAAGH,WAAWgL,QAAU7K,EAAGH,WAAWgL,QAAQpD,SAASqD,uBAAyB,IAE3F5K,QAAQC,IAAIH,MAIhB6H,EAAInH,UAAU,wBAAyB,CACnCd,SAAU,CAAEC,WAAY,KACxBE,WAAY,oBACZD,aAAc,OACdU,SAAA,+QAMLqH,EAAIkD,QAAQ,cAAe,CAAC,YAAa,SAAUC,GAC/C/K,KAAKgL,QAAU,WACX,IAAIC,EAAMC,eAAeC,QAAQ,mBACjC,IAAKF,EACD,OAAO,EAEX,IAAIG,EAAeL,EAAUM,YAAYJ,GAEzC,QAD0C,UAA3BG,EAAaE,UAAwBF,EAAaG,SAAW,KAUhFvL,KAAKmB,MAAQ,WACT,IAAI8J,EAAMC,eAAeC,QAAQ,mBACjC,GAAKF,EAGL,OAAOF,EAAUM,YAAYJ,GAAKO,WAU1C5D,EAAI9H,WAAW,mBAAoB,CAAC,SAAU,cAAe,SAAUgI,EAAQlH,GAI3E,OAFAkH,EAAO2D,OAAS7K,EAAYoK,UAEP,GAAjBlD,EAAO2D,OAMIjL,QAAQmI,QAAQlC,SAASG,cAAc,kBACtC8E,YAAY,cANblL,QAAQmI,QAAQlC,SAASG,cAAc,kBACtC+E,SAAS,iBAW7B/D,EAAInH,UAAU,6BAA8B,CACxCd,SAAU,CAAEC,WAAY,KACxBE,WAAY,mBACZS,SAAU,KAYbqH,EAAI9H,WAAW,qBAAsB,CAAC,SAAU,SAAUgI,GACtD,IAAI/H,EAAKC,KACTD,EAAG6L,SAEH,WACI,IAAIC,EAAK9L,EAAGH,WAAWkM,sBAAsBC,SAASC,SAClDC,EAAQzL,QAAQmI,QAAQlC,SAASG,cAAc,kBAEnD,OAAgB,EAAZiF,EAAGrM,OACIyM,EAAMN,SAAS,SAKfM,EAAMP,YAAY,aAOrC9D,EAAInH,UAAU,kBAAmB,CAC7Bd,SAAU,CAAEC,WAAY,KACxBE,WAAY,qBACZS,SAAU","file":"custom.js","sourcesContent":["(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c=\"function\"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error(\"Cannot find module '\"+i+\"'\");throw a.code=\"MODULE_NOT_FOUND\",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u=\"function\"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()","\"use strict\";\r\n\r\n/*\r\n OBJECTIF: Ajouter le lien vers SWITCH edu-ID.\r\n REMARQUES: contient juste les liens vers SWITCH edu-ID et vers\r\n l'application de changement des code-barres.\r\n*/\r\n\r\nmodule.exports = {\r\n bindings: {parentCtrl: '<'},\r\n controllerAs: 'ctrl',\r\n controller: [function() {\r\n var vm = this;\r\n console.log(vm);\r\n vm.view = vm.parentCtrl.accountLinksService.vid.replace(':', '-');\r\n\r\n }],\r\n template: `<div ng-if=\"ctrl.parentCtrl.tabName=='personalsettings'\"><img width=\"20px\" ng-src=\"/discovery/custom/{{ ctrl.view }}/img/information.png\" /> {{ 'switchEduID' | customTranslate | trustHtml }} <a href=\\\"https://eduid.ch\\\">https://eduid.ch</a></div>`\r\n};\r\n","(function () {\r\n var account_module = angular.module('accountModule', ['angularLoad']);\r\n account_module.component('prmAccountLinksAfter', require('./accountlinks.component.js'));\r\n})()\r\n","module.exports = {\r\n bindings: {parentCtrl: '<'},\r\n controllerAs: 'ctrl',\r\n controller: ['$filter', '$http', 'userService', function($filter, $http, userService) {\r\n var vm = this\r\n function parse_doi(txt){\r\n var re = /10\\.\\d{4,9}\\/[-._;()/:A-Z0-9]+/i;\r\n var m = txt.match(re);\r\n if (m){\r\n return m[0]\r\n }\r\n\r\n }\r\n vm.is_epfl_IP = false;\r\n var userIP = userService.getIP();\r\n // console.log(userIP);\r\n // Vérification du range EPFL\r\n if (userIP) {\r\n const regex = /128\\.17([89])\\.(\\d{1,3})\\./;\r\n const found = userIP.match(regex);\r\n if (found && (found[1] == '8' || parseInt(found[2])>=128)) {\r\n vm.is_epfl_IP = true;\r\n }\r\n }\r\n\r\n vm.get_doi = function(){\r\n if (vm.parentCtrl.hasOwnProperty('result') && vm.parentCtrl.result.hasOwnProperty('pnx')){\r\n var pnx = vm.parentCtrl.result.pnx;\r\n\r\n // Recherche dans la section addata\r\n if ('addata' in pnx && 'doi' in pnx.addata && parse_doi(pnx.addata.doi[0]) && pnx.control.recordtype[0]==='article') {\r\n return parse_doi(pnx.addata.doi[0])\r\n }\r\n\r\n // Recherche dans la section display\r\n if ('display' in pnx && 'identifier' in pnx.display) {\r\n for (const identifier of pnx.display.identifier){\r\n if (parse_doi(identifier)){\r\n return parse_doi(identifier)\r\n }\r\n }\r\n }\r\n }\r\n }\r\n\r\n vm.check_doi = function(){\r\n if (!vm.hasOwnProperty('doi')){\r\n if (vm.parentCtrl.hasOwnProperty('result') && vm.parentCtrl.result.hasOwnProperty('pnx')){\r\n if (vm.get_doi()){\r\n vm.doi = vm.get_doi();\r\n vm.set_url_pdf()\r\n\r\n } else {\r\n vm.doi = null;\r\n }\r\n }\r\n }\r\n if (vm.hasOwnProperty('pdf_link')) {\r\n return true\r\n }\r\n return false\r\n }\r\n vm.set_url_pdf = function(){\r\n var url = `https://public-api.thirdiron.com/public/v1/libraries/183/articles/doi/${vm.doi}?access_token=adc54dee-c6a6-4b99-a917-2ed400f1f2d3`;\r\n $http({\r\n method: 'GET',\r\n url: url\r\n }).then(function successCallback(response) {\r\n\r\n if (response.status === 200) {\r\n try{\r\n var pdf_link = response.data.data.fullTextFile;\r\n } catch(e){\r\n var pdf_link = '';\r\n }\r\n if (pdf_link.length > 0) {\r\n vm.pdf_link = pdf_link;\r\n }\r\n }\r\n // console.log(vm.pdf_link);\r\n }, function(response) {\r\n vm.doi = null;\r\n });\r\n\r\n }\r\n // console.log(vm);\r\n }],\r\n template: `<div><div class=\"pdf_btn\" ng-if=\"ctrl.check_doi() &amp;&amp; ctrl.is_epfl_IP\">\r\n <a href=\"{{ctrl.pdf_link}}\" target=\"_blank\"><prm-icon icon-type=\"svg\" svg-icon-set=\"primo-ui\" icon-definition=\"pdf\"></prm-icon> {{ 'pdfAccess' | customTranslate }}</a></div></div>`\r\n}\r\n","(function () {\r\n var briefview_module = angular.module('briefviewModule', ['angularLoad']);\r\n briefview_module.component(/*'prmBriefResultContainerAfter'*/'prmSearchResultAvailabilityLineAfter', require('./availabilityline.component.js'));\r\n})()\r\n","(function () {\r\n var homepage_module = angular.module('databasesModule', ['angularLoad']);\r\n homepage_module.component('prmTreeNavAfter', require('./treenav.component.js'));\r\n})()\r\n","\"use strict\";\r\n\r\n/*\r\n OBJECTIF: Ne fait rien pour le moment\r\n*/\r\n\r\nmodule.exports = {\r\n bindings: {parentCtrl: '<'},\r\n controllerAs: 'ctrl',\r\n controller: ['$filter', function($filter) {\r\n var vm = this;\r\n // console.log(vm);\r\n }]\r\n}\r\n","\"use strict\";\r\n\r\n/***********************/\r\n/* FILTRE : traduction */\r\n/***********************/\r\n\r\n/*\r\n OBJECTIF: traduire des éléments, tant des urls que du texte.\r\n UTILISATION:\r\n - Dans le template:\r\n 1. comme un filtre: {{ clé | customTranslate }}\r\n - Dans un controlleur:\r\n Même si les filtres sont d'abord prévus pour être utilisés dans le\r\n template, on peut les appeler dans les controlleurs.\r\n 1. Ajouter le service dans l'en-tête du controlleur\r\n 2. Appeler le service avec la fonction $filter\r\n EXEMPLE:\r\n controller:function($http, $filter){...\r\n var traduction = $filter('customTranslate')('cleTrad');\r\n ...}\r\n CONFIGURATION:\r\n L'ajout de traduction se fait à travers des objets. La clé indique le\r\n terme à utiliser dans le template ou le controlleur pour ensuite\r\n renvoyer la traduction. Les noms associés n'appaaraissent donc pas tels\r\n quels. La structure de chaque élément traduit disponible est comme suit:\r\n clé1:{\r\n fr: traductionFrançaise\r\n en: traductionAnglaise\r\n },\r\n clé2:{\r\n fr: traductionFrançaise\r\n en: traductionAnglaise\r\n }\r\n*/\r\n(function () {\r\n\r\n var custom_translate_module = angular.module('customTranslateFilter', [])\r\n .filter('customTranslate', ['$translate', function($translate){\r\n return function(txt){\r\n var trad = {\r\n\r\n costWarningScan:{\r\n fr: \"<b><span class=\\\"bigfont\\\" style=\\\"font-size:20px\\\">Service payant:</span></b><b> les collaborateurs et les étudiants de l’EPFL peuvent bénéficier de ce service gratuitement, en utilisant le formulaire:</b>\",\r\n en: \"<b><span class=\\\"bigfont\\\" style=\\\"font-size:20px\\\">Fee-based service:</span></b><b> EPFL employees and students can benefit from this service free of charge by using the form:</b>\",\r\n de: \"<b><span class=\\\"bigfont\\\" style=\\\"font-size:20px\\\">Kostenpflichtiger Service:</span></b><b> Mitarbeitern und Studenten der EPFL steht dieser Dienst über das Fernleihe-Formular gratis zur Verfügung.</b>\",\r\n it: \"<b><span class=\\\"bigfont\\\" style=\\\"font-size:20px\\\">Servizio a pagamento:</span></b><b> I dipendenti e gli studenti dell'EPFL possono usufruire gratuitamente di questo servizio utilizzando il modulo:</b>\"\r\n },\r\n costWarningScanEPFL:{\r\n fr: \"<b>Service gratuit pour les collaborateurs et les étudiants EPFL.</b>\",\r\n en: \"<b>Free of charge for EPFL staff and students.</b>\",\r\n de: \"<b>Service für Mitarbeiter und Studenten der EPFL kostenlos</b>\",\r\n it: \"<b>Servizio gratuito per i dipendenti e gli studenti dell’EPFL.<b>\"\r\n },\r\n costWarningNetworkLoan:{\r\n fr: \"<b>Service gratuit en cas de retrait à la Bibliothèque de l’EPFL.</b>\",\r\n en: \"<b>Free of charge if withdrawal at the EPFL Library.</b>\",\r\n de: \"<b>Service bei Abholung in der EPFL-Bibliothek kostenlos.</b>\",\r\n it: \"<b>Servizio gratuito in caso di ritiro alla Biblioteca dell’EPFL</b>\"\r\n },\r\n costWarningPEB:{\r\n fr: \"<b>Service gratuit pour les collaborateurs et les étudiants de l’EPFL.</b> Avant de passer une commande d’un document physique via le prêt entre bibliothèques, merci de vous assurer que ce document n'est pas disponible dans d’autres bibliothèques du réseau SLSP dans swisscovery.\",\r\n en: \"<b>Free of charge for EPFL staff and students.</b> Before placing an order for a physical document via the interlibrary loan, please make sure that this document is not available in other SLSP network libraries on swisscovery.\",\r\n de: \"<b>Kostenloser Service für Mitarbeiter und Studenten der EPFL.</b> Bevor Sie ein Medium über die Fernleihe bestellen, vergewissern Sie sich bitte zunächst in swisscovery, dass es nicht in einer anderen Bibliothek des SLSP-Netzwerks verfügbar ist.\",\r\n it: \"<b>Servizio gratuito per i dipendenti e gli studenti dell’EPFL.</b> Prima di ordinare un documento cartaceo tramite il prestito interbibliotecario, assicuratevi che questo documento non sia disponibile in altre biblioteche della rete SLSP in swisscovery.\"\r\n },\r\n mainTitle:{\r\n fr: \"Catalogue BEAST\",\r\n en: \"BEAST discovery tool\",\r\n de: \"BEAST Wissensportal\",\r\n it: \"Catalogo BEAST\"\r\n },\r\n subTitle:{\r\n fr: \"Le point d\\'accès à toutes les ressources de la Bibliothèque de l\\'EPFL\",\r\n en: \"The access portal to all the resources of the EPFL Library\",\r\n de: \"Der Zugangspunkt zu allen Ressourcen der EPFL Bibliothek\",\r\n it: \"Il punto d’accesso a tutte le risorse della Biblioteca dell’EPFL\"\r\n },\r\n switchEduID:{\r\n fr: \"Modifier vos informations personnelles sur\",\r\n en: \"Change your personal data on\",\r\n de: \"Ändern Sie Ihre persönlichen Daten auf\",\r\n it: \"Modifica i tuoi dati personali sul\"\r\n },\r\n illButton:{\r\n fr: \"Prêt entre bibliothèques (PEB)\",\r\n en: \"Inter Library Loan (ILL)\",\r\n de: \"Fernleihe\",\r\n it: \"Prestito interbibliotecario\"\r\n },\r\n feedbackLink:{\r\n fr: \"Signaler un problème d'accès\",\r\n en: \"Report an access problem\",\r\n de: \"Zugriffsproblem melden\",\r\n it: \"Segnalare un problema di accesso\"\r\n },\r\n vpnMSG:{\r\n fr: \"Les ressources électroniques sont accessibles depuis tous les postes de l’EPFL, et à distance via le <a target=\\\"_blank\\\" href=\\\"https://www.epfl.ch/campus/services/ressources-informatiques/network-services-reseau/acces-intranet-a-distance/clients-vpn-disponibles/\\\">VPN</a> EPFL.\",\r\n en: \"Electronic resources are accessible from all EPFL workstations, and remotely via the EPFL <a target=\\\"_blank\\\" href=\\\"https://www.epfl.ch/campus/services/en/it-services/network-services/remote-intranet-access/vpn-clients-available/\\\">VPN</a>.\",\r\n de: \"Elektronische Informationsressourcen sind an allen EPFL-Arbeitsplätzen und per EPFL <a target=\\\"_blank\\\" href=\\\"https://www.epfl.ch/campus/services/en/it-services/network-services/remote-intranet-access/vpn-clients-available/\\\">VPN</a> abrufbar.\",\r\n it: \"Le risorse elettroniche sono accessibili da tutte le postazioni di lavoro dell'EPFL e a distanza tramite <a target=\\\"_blank\\\" href=\\\"https://www.epfl.ch/campus/services/en/it-services/network-services/remote-intranet-access/vpn-clients-available/\\\">VPN</a> EPFL.\"\r\n },\r\n // vpnLink:{\r\n // fr: \"https://www.epfl.ch/campus/services/ressources-informatiques/network-services-reseau/acces-intranet-a-distance/clients-vpn-disponibles/\",\r\n // en: \"https://www.epfl.ch/campus/services/en/it-services/network-services/remote-intranet-access/vpn-clients-available/\",\r\n // de: \"https://www.epfl.ch/campus/services/en/it-services/network-services/remote-intranet-access/vpn-clients-available/\",\r\n // it: \"https://www.epfl.ch/campus/services/en/it-services/network-services/remote-intranet-access/vpn-clients-available/\"\r\n // },\r\n feedbackLinkMSG:{\r\n fr: \"I have a problem accessing the electronic resource below. Please let me know when the access will be restored.\",\r\n en: \"I have a problem accessing the electronic resource below. Please let me know when the access will be restored.\",\r\n de: \"I have a problem accessing the electronic resource below. Please let me know when the access will be restored.\",\r\n it: \"I have a problem accessing the electronic resource below. Please let me know when the access will be restored.\"\r\n },\r\n pdfAccess:{\r\n fr: \"Accès direct au pdf\",\r\n en: \"Direct access to the pdf\",\r\n de: \"Direct access to the pdf\",\r\n it: \"Direct access to the pdf\"\r\n }\r\n };\r\n if (['en', 'fr', 'it', 'de'].includes($translate.use())) {\r\n return trad[txt][$translate.use()]\r\n } else {\r\n return trad[txt].fr\r\n }\r\n };\r\n }]);\r\n\r\n}) ()\r\n","\"use strict\";\r\n\r\n/***********************/\r\n/* FILTRE : traduction */\r\n/***********************/\r\n\r\n/*\r\n OBJECTIF: Permettre des balises html dans les champs.\r\n UTILISATION: S'utilise dans une balise comme un filtre.\r\n EXEMPLE: {{ variable | trustHtml }}\r\n*/\r\n(function () {\r\nangular.module('trustHtmlFilter', [])\r\n .filter('trustHtml', ['$sce', function($sce){\r\n return function(txt){\r\n return $sce.trustAsHtml(txt);\r\n };\r\n}]);\r\n}) ()\r\n","\"use strict\";\r\n\r\n/*\r\n OBJECTIF: Ajouter un lien pour rapporter les problèmes d'accès aux\r\n ressources électroniques. Un message d'avertissement s'affiche quand la\r\n la personne n'est pas sur le réseau EPFL\r\n*/\r\n\r\nmodule.exports = {\r\n bindings: {parentCtrl: '<'},\r\n controllerAs: 'ctrl',\r\n controller: ['$filter', 'userService', function($filter, userService) {\r\n var vm = this;\r\n\r\n vm.get_txt = function() {\r\n return $filter('customTranslate')('vpnMSG');\r\n }\r\n\r\n vm.feedbackLink = '';\r\n vm.is_epfl_IP = false;\r\n vm.no_report_link = false;\r\n\r\n // not for open access\r\n if (vm.parentCtrl.item.pnx.addata.openaccess && vm.parentCtrl.item.pnx.addata.openaccess[0] === 'true') {\r\n vm.no_report_link = true;\r\n }\r\n // not for cdi open access\r\n if (vm.parentCtrl.item.pnx.addata.oa && vm.parentCtrl.item.pnx.addata.oa[0] === 'free_for_read') {\r\n vm.no_report_link = true;\r\n }\r\n if (!vm.no_report_link){\r\n\r\n /* Obtient l'adresse ip depuis un service se trouvant dans le\r\n module \\js\\slsp\\epfl_custom_slsp.js */\r\n var userIP = userService.getIP();\r\n // console.log(userIP);\r\n // Vérification du range EPFL\r\n if (userIP) {\r\n const regex = /128\\.17([89])\\.(\\d{1,3})\\./;\r\n const found = userIP.match(regex);\r\n if (found && (found[1] == '8' || parseInt(found[2])>=128)) {\r\n vm.is_epfl_IP = true;\r\n }\r\n }\r\n\r\n // Récupération des métadonnées de la ressource\r\n var mmsId = vm.parentCtrl.item.pnx.control.recordid[0];\r\n var title = '';\r\n if (vm.parentCtrl.item.pnx.display.title && vm.parentCtrl.item.pnx.display.title.length > 0) {\r\n title = vm.parentCtrl.item.pnx.display.title[0];\r\n }\r\n var creationdate = '';\r\n if (vm.parentCtrl.item.pnx.display.creationdate && vm.parentCtrl.item.pnx.display.creationdate.length > 0) {\r\n creationdate = vm.parentCtrl.item.pnx.display.creationdate[0];\r\n }\r\n var creator = '';\r\n if (vm.parentCtrl.item.pnx.display.creator && vm.parentCtrl.item.pnx.display.creator.length > 0) {\r\n creator = vm.parentCtrl.item.pnx.display.creator.join(', ');\r\n }\r\n var type = '';\r\n if (vm.parentCtrl.item.pnx.display.type && vm.parentCtrl.item.pnx.display.type.length > 0) {\r\n type = vm.parentCtrl.item.pnx.display.type[0];\r\n }\r\n var identifier = '';\r\n if (vm.parentCtrl.item.pnx.display.identifier && vm.parentCtrl.item.pnx.display.identifier.length > 0) {\r\n var ident = vm.parentCtrl.item.pnx.display.identifier[0];\r\n if (ident.indexOf('<b>ISBN') > -1) {\r\n identifier = vm.parentCtrl.item.pnx.display.identifier.join(', ').replace(/<\\/b>/g, '').replace(/<b>/g, '');\r\n } else if (ident.indexOf('<b>ISSN') > -1) {\r\n identifier = vm.parentCtrl.item.pnx.display.identifier.join(', ').replace(/<\\/b>/g, '').replace(/<b>/g, '');\r\n } else if (ident.indexOf('ISBN') > -1) {\r\n identifier = 'ISBN: ' + ident.substring(ident.indexOf('$$V') + 3);\r\n } else if (ident.indexOf('ISSN') > -1) {\r\n identifier = 'ISSN: ' + ident.substring(ident.indexOf('$$V') + 3);\r\n }\r\n }\r\n var userAgent = navigator.userAgent;\r\n\r\n // Création de l'objet du message\r\n var subject = 'Access problem ' + mmsId + ' - \"' + title + '\"';\r\n\r\n // Création du corps du message\r\n var body = $filter('customTranslate')('feedbackLinkMSG') + '\\n\\n' + '****\\nTitle: ' + title + '\\nAuthor: ' + creator + '\\nYear: ' + creationdate + '\\nType: ' + type + '\\nDocId: ' + mmsId + '\\nIdentifier: ' + identifier + '\\nUser_agent: ' + userAgent + '\\nUserIP: ' + userIP + '\\nRange EPFL: ' + vm.is_epfl_IP + '\\n****';\r\n\r\n vm.feedbackLink = 'mailto:eresources@epfl.ch' + '?subject=' + encodeURIComponent(subject) + '&body=' + encodeURIComponent(body) + '&Content-Type=text/html';\r\n }\r\n\r\n }],\r\n template: `<div class=\"bar alert-bar\" ng-if=\"ctrl.no_report_link==false && ctrl.is_epfl_IP==false\">\r\n <div ng-bind-html=\"ctrl.get_txt()\"></div><md-icon ng-if=\"::($ctrl.iconDefinition &amp;&amp; !$ctrl.isCustom &amp;&amp; !$ctrl.isEmailMode())\" md-svg-icon=\"primo-ui:open-in-new\" role=\"presentation\" class=\"md-primoExplore-theme\"></md-icon\r\n <div class=\"feedbacklink\"> <a href=\"{{ ::ctrl.feedbackLink }}\"><md-icon md-svg-icon=\"primo-ui:envelope-outline\" role=\"presentation\" class=\"md-primoExplore-theme\"></md-icon> {{ 'feedbackLink' | customTranslate }}</a></div>\r\n </div>\r\n <div class=\"feedbacklink\" ng-if=\"ctrl.no_report_link==false && ctrl.is_epfl_IP==true\"> <a href=\"{{ ::ctrl.feedbackLink }}\"><md-icon md-svg-icon=\"primo-ui:envelope-outline\" role=\"presentation\" class=\"md-primoExplore-theme\"></md-icon> {{ 'feedbackLink' | customTranslate }}</a></div>`}\r\n","(function () {\r\n var fullview_module = angular.module('fullviewModule', ['angularLoad']);\r\n fullview_module.component('prmAlmaViewitAfter', require('./almaviewit.component.js'));\r\n})()\r\n","module.exports = {active: true,\r\n txt:\r\n {fr: `<div class=\"info-symbol\" style=\\\"text-align:left\\\">\r\n <div><p>Le réseau NEBIS a pris fin le 7 décembre 2020 pour être remplacé par un nouveau réseau plus vaste : <a class=\"md-primoExplore-theme\" href=\"https://slsp.ch/fr\">swisscovery</a></p></div>\r\n </div>`,\r\n en: `<div class=\"info-symbol\" style=\\\"text-align:left\\\">\r\n <div><p>The NEBIS network ended on December 7, 2020. It has been replaced by <a class=\"md-primoExplore-theme\" href=\"https://slsp.ch/it\">swisscovery</a>: a new and wider network.</p></div>\r\n </div>`,\r\n de: `<div class=\"info-symbol\" style=\\\"text-align:left\\\">\r\n <div><p>Das NEBIS-Netzwerk wurde am 07.12.2020 abgeschaltet und durch ein neues, grösseres Netzwerk ersetzt: <a class=\"md-primoExplore-theme\" href=\"https://slsp.ch/de\">swisscovery</a></p></div>\r\n </div>`,\r\n it: `<div class=\"info-symbol\" style=\\\"text-align:left\\\">\r\n <div><p>La rete NEBIS è stata sciolta il 7 dicembre 2020 per essere sostituita da una rete piú ampia di biblioteche: <a class=\"md-primoExplore-theme\" href=\"https://slsp.ch/it\">swisscovery</a></p></div>\r\n </div>`},\r\n begin:\"2020-01-04T00:00:00Z\",\r\n end:\"2021-03-31T12:00:00Z\"}\r\n","(function () {\r\n var homepage_module = angular.module('homepageModule', ['angularLoad']);\r\n homepage_module.component('prmSearchBarAfter', require('./searchbar.component.js'));\r\n homepage_module.component('prmMainMenuAfter', require('./mainmenu.component.js'));\r\n homepage_module.component('prmTopbarAfter', require('./topbar.component.js'));\r\n})()\r\n","\"use strict\";\r\n\r\n/*\r\n OBJECTIF: corriger le lien du menu principal vers les bases de données.\r\n*/\r\n\r\nmodule.exports = {\r\n bindings: {parentCtrl: '<'},\r\n controllerAs: 'ctrl',\r\n controller: ['$location', '$translate', '$element', function($location, $translate, $element) {\r\n var vm = this;\r\n this.$doCheck = function() {\r\n if (document.readyState === 'complete' /*&& !vm.modified*/){\r\n try{var elem = document.querySelector(\"[translate='mainmenu.label.db']\").parentElement;}\r\n catch(e){\r\n vm.modified = false;\r\n }\r\n if (elem){\r\n elem.removeAttribute('target');\r\n elem.setAttribute('aria-label', 'Databases');\r\n vm.modified = true;\r\n }\r\n }\r\n };\r\n // console.log(vm.url);\r\n }]\r\n};\r\n","\"use strict\";\r\n\r\n/*\r\n OBJECTIFS:\r\n - Toujours afficher l'onglet pour modifier le scope\r\n - Afficher une alerte si les dates correspondent\r\n UTILISATION:\r\n Pour paramétrer l'alerte, il faut modifier le fichier alert.json (dans ce dossier)\r\n*/\r\nmodule.exports = {\r\n bindings: {parentCtrl: '<'},\r\n template: '<div class=\"epfl-alert-message\" ng-if=\"ctrl.active\" ng-bind-html=\"ctrl.get_txt() \"></div>',\r\n controllerAs: 'ctrl',\r\n controller: ['$translate', function($translate){\r\n\r\n var vm = this;\r\n\r\n /********************/\r\n /* MESSAGE D'ALERTE */\r\n /********************/\r\n\r\n // récupère le fichier json avec les paramètres de l'alerte\r\n vm.alert = require(\"./alert.js\");\r\n\r\n // par défaut, l'alerte n'est pas considérée comme active\r\n vm.active = false;\r\n\r\n // Vérifie dans le fichier json si une alerte est prévue\r\n if (vm.alert.active === true){\r\n\r\n // Teste si les dates correspondent pour l'affichage de l'alerte\r\n var d_now = Date.now();\r\n if ((new Date(vm.alert.begin) < d_now) && (d_now < new Date(vm.alert.end))) {\r\n // déclenche l'affichage de l'alerte\r\n vm.active = true;\r\n }\r\n }\r\n\r\n // getteur qui retourne le texte en fonction de la langue\r\n vm.get_txt = function(){\r\n var lang = ['en', 'fr', 'it', 'de'].includes($translate.use()) ? $translate.use():'en';\r\n return vm.active ? vm.alert.txt[lang] : \"\";\r\n }\r\n\r\n /*******************/\r\n /* SCOPE PERMANENT */\r\n /*******************/\r\n\r\n // Rendre permanent l'affichage des onglets permettant de sélectionnet le scope\r\n vm.parentCtrl.showTabsAndScopes = true;\r\n\r\n // console.log(vm.alert);\r\n }\r\n ]};\r\n","\"use strict\";\r\n\r\n/*\r\n OBJECTIF: afficher l'entête de la page.\r\n REMARQUES: contient le titre BEAST, le teaser, le fil d'ariance. Le controlleur vérifie\r\n si on se trouve dans le compte de lecteur afin de paramétrer le fil d'ariane.\r\n*/\r\n\r\nmodule.exports = {\r\n bindings: {parentCtrl: '<'},\r\n controllerAs: 'ctrl',\r\n controller: ['$location', '$translate', '$element', function($location, $translate, $element) {\r\n var vm = this;\r\n vm.url = window.location.href.split('?')[0] + '?vid=' + vm.parentCtrl.configurationUtil.vid + '&lang=' + $translate.use();\r\n // console.log(vm.url);\r\n }],\r\n template: `<div class=\"main-title\"><h1><a href=\"{{ ::ctrl.url }}\">{{ 'mainTitle' | customTranslate }}</a></h1><h2>{{ 'subTitle' | customTranslate }}</h2></div>`\r\n //templateUrl: './custom/41SLSP_EPF-prod/js/homepage/templates/topbar.html'\r\n};\r\n","/************************/\r\n/* List of used modules */\r\n/************************/\r\n\r\n// Import central SLSP package ;\r\n// import { centralCustom } from './slsp/custom_slsp.js';\r\nimport { centralCustom } from './slsp/epfl_custom_slsp.js';\r\nimport { homepageModule } from './homepage/index.js';\r\nimport { customTranslateFilter } from './filters/custom_translate.filter.js';\r\nimport { trustHtmlFilter } from './filters/trust_html.filter.js';\r\nimport { accountModule } from './account/index.js';\r\nimport { fullviewModule } from './fullview/index.js';\r\nimport { briefviewModule } from './briefview/index.js';\r\nimport { databasesModule } from './databases/index.js';\r\n\r\nvar app = angular.module('viewCustom', ['angularLoad',\r\n 'centralCustom',\r\n 'homepageModule',\r\n 'customTranslateFilter',\r\n 'trustHtmlFilter',\r\n 'accountModule',\r\n 'fullviewModule',\r\n 'briefviewModule',\r\n 'databasesModule']);\r\n","(function () {\r\n\r\n\r\n var app = angular.module('centralCustom', ['angularLoad']);\r\n\r\n\r\n /*\r\n ## VERSION SLSP DU CONTROLLEUR ##\r\n # Ajoute le lien vers les amendes\r\n\r\n app.controller('CourierInfoController', [function () {\r\n var vm = this;\r\n vm.linkBase = \"https:\\/\\/slsp.ch\\/fees\";\r\n\r\n }]);\r\n */\r\n\r\n /* ## VERSION EPFL DU CONTROLLEUR ## */\r\n\r\n app.controller('CourierInfoController', ['$filter', '$element', function ($filter, $element, $compile, $scope, $rootScope) {\r\n var vm = this;\r\n\r\n //shortcut for convenience\r\n this.form = $element[0].parentElement;\r\n\r\n //function for inserting block\r\n this.$doCheck = function() {\r\n let form = false;\r\n let formLength = 2;\r\n // console.log(this.form);\r\n if (this.form.children[0].children[1] !== undefined && (this.form.children[0].children[1].children[0] !== undefined || vm.typeFeeAlert()=='costWarningPEB')) {\r\n form = this.form.children[0].children[1].children[0];\r\n if (vm.typeFeeAlert()=='costWarningPEB'){\r\n formLength = 3;\r\n }\r\n }\r\n else if (this.form.children[0].children[0] !== undefined && this.form.children[0].children[0].children[0] !== undefined) {\r\n form = this.form.children[0].children[0].children[0];\r\n formLength = 3;\r\n }\r\n // console.log(vm.typeFeeAlert());\r\n\r\n //create and insert info block if not present\r\n // if (form){\r\n // // console.log('---' + String(formLength) + ' - ' + String(form.children.length));}\r\n if (form && form.children.length == formLength && form.children.length > 1 || vm.hasOwnProperty('currentTypeFeeAlert') &&\r\n vm.currentTypeFeeAlert != vm.typeFeeAlert()) {\r\n // console.log('cccc---' + String(formLength) + ' - ' + String(form.children.length));\r\n vm.currentTypeFeeAlert = vm.typeFeeAlert();\r\n var htmlwarning = `<div class=\"courier-info bar alert-bar\"><p>${vm.getFeeAlert()}</p>`;\r\n if (vm.typeFeeAlert()=='costWarningScan') {\r\n var txt = $filter('customTranslate')('illButton');\r\n if (vm.get_peb_button()){\r\n var fn = `javascript:(function() {\r\n for (var elem of document.getElementsByTagName('span')) {\r\n if (elem.getAttribute('translate') === 'AlmaResourceSharing' &&\r\n elem.parentNode.className.indexOf('greenbutton') === -1)\r\n {\r\n elem.click();\r\n break;\r\n }\r\n };})()`;}\r\n else {\r\n var fn = `javascript:(function() {window.location.href = window.location.origin + '/discovery/blankIll?vid=${vm.parentCtrl.vid}'})()`;\r\n }\r\n\r\n\r\n htmlwarning += `<p><span class=\"button-confirm md-button md-primoExplore-theme md-ink-ripple\" onclick=\"${fn}\" \">${txt}</span></p>`;\r\n\r\n }\r\n htmlwarning += `<p><a href=\"${this.parentCtrl.$translate.instant('customize.fullview.feesUrl')}\" target=\"_blank\">${this.parentCtrl.$translate.instant('customize.fullview.feesLinkText')}</a></p></div>`;\r\n var htmlcompiled = angular.element(htmlwarning)[0];\r\n\r\n // console.log('---' + String(formLength) + ' - ' + String(form.children.length));\r\n if (form.children.length == formLength) {\r\n // console.log('---' + String(formLength) + ' - ' + String(form.children.length));\r\n form.insertBefore(htmlcompiled, form.children[formLength - 1]);\r\n } else {\r\n // console.log(String(formLength) + ' - ' + String(form.children.length));\r\n form.children[form.children.length - 2].replaceWith(htmlcompiled);\r\n }\r\n }\r\n }\r\n\r\n\r\n\r\n\r\n // Remonte l'EPFL dans la liste des bibliothèques\r\n Object.defineProperty(vm.parentCtrl, \"form\", {\r\n configurable: !0,\r\n get: function(){\r\n // Mettre l'EPFL en première position\r\n var form = this.getFilteredForm(['label', 'multiLabel'], false);\r\n if (!vm.hasOwnProperty('pickupLocationsListOrdered')){\r\n for (var i = 0; i < form.length; i++){\r\n if (form[i].key == 'pickupInstitution'){\r\n function compare( a, b ){\r\n var onTopInstitutions = ['41SLSP_EPF', '41SLSP_EPFL'];\r\n a = onTopInstitutions.indexOf(a.value);\r\n b = onTopInstitutions.indexOf(b.value);\r\n if (a == b) {return 0};\r\n return a < b ? 1 : -1;\r\n }\r\n form[i].options.sort(compare);\r\n vm['pickupLocationsListOrdered'] = true;\r\n }\r\n }\r\n }\r\n return form;\r\n }\r\n }\r\n );\r\n\r\n // Vérifie si l'EPFL est la provenance de l'exemplaire sélectionné\r\n vm.isEPFL = function() {\r\n return vm.parentCtrl.requestService && vm.parentCtrl.requestService._service['link-to-service'].indexOf('institution=41SLSP_EPF') > 0 ? true : false;\r\n }\r\n\r\n vm.linkBase = \"https:\\/\\/slsp.ch\\/fees\";\r\n\r\n // Personnalisation du message des frais\r\n vm.typeFeeAlert = function() {\r\n // console.log(vm.parentCtrl.requestHeader);\r\n if (['almaRequest.header', 'almaRequestOther.header', 'almaItemRequest.header'].includes(vm.parentCtrl.requestHeader)) {\r\n return 'costWarningNetworkLoan'; // $filter('customTranslate')(costWarningNetworkLoan');\r\n } else if (['almaDigitization.header',\r\n 'almaDigitizationOther.header',\r\n 'almaItemDigitization.header']\r\n .includes(vm.parentCtrl.requestHeader)) {\r\n return vm.isEPFL() ? 'costWarningScanEPFL' : 'costWarningScan';\r\n } else if (vm.parentCtrl.requestHeader === 'almaResourceSharing.header') {\r\n return 'costWarningPEB';\r\n } else {\r\n return 'costWarningGeneral';\r\n }\r\n }\r\n vm.getFeeAlert = function() {\r\n // console.log(vm.typeFeeAlert());\r\n return $filter('customTranslate')(vm.typeFeeAlert());\r\n }\r\n\r\n // Récupère le bouton PEB de la page afin de simuler un clic dessus\r\n vm.get_peb_button = function(){\r\n var allElements = document.getElementsByTagName('span');\r\n for (var i = 0, n = allElements.length; i < n; i++) {\r\n if (allElements[i].getAttribute('translate') === 'AlmaResourceSharing' &&\r\n allElements[i].parentNode.className.indexOf('greenbutton') === -1)\r\n {\r\n return allElements[i];\r\n }\r\n }\r\n\r\n }\r\n // vm.get_request_button = function(){\r\n // var allElements = document.getElementsByTagName('prm-opac');\r\n // if (allElements.length === 0) { return null; }\r\n // var opac = allElements[0];\r\n // if (opac.closest('prm-alma-other-members')) { return null; }\r\n //\r\n // var buttons = opac.getElementsByTagName('span');\r\n // for (var i = 0, n = buttons.length; i < n; i++) {\r\n // if (buttons[i].getAttribute('translate') == 'AlmaRequest')\r\n // {\r\n // return buttons[i];\r\n // }\r\n // }\r\n // }\r\n\r\n // Fonction simulant un clic sur le bouton PEB quand on clique sur les\r\n // frais.\r\n vm.click_peb = function(){\r\n var button = vm.get_peb_button();\r\n if (button) {\r\n button.click();\r\n } else {\r\n window.location.href = window.location.origin + '/discovery/blankIll?vid=' + vm.parentCtrl.vid;\r\n }\r\n }\r\n // vm.click_request = function(){\r\n // vm.get_request_button().click();\r\n // }\r\n\r\n // console.log(vm);\r\n\r\n }]);\r\n\r\n app.component('prmRequestAfter', {\r\n bindings: { parentCtrl: '<' },\r\n controller: 'CourierInfoController',\r\n // template:\r\n // `<div layout=\"row\" class=\"courier-info feemsg alert-bar layout-align-center-center\" layout-align=\"center center\">\r\n // <img width=\"35px\" ng-src=\"/discovery/custom/41SLSP_EPF-prod/img/information.png\" />\r\n // <div>\r\n // <div ng-if=\"$ctrl.typeFeeAlert()!='costWarningScanEPFL'\">\r\n // <span class=\"md-subhead\">\r\n // <a href=\"{{ $ctrl.linkBase }}\" target=\"_blank\">\r\n // <span translate=\"customized.fulldisplay.fees\"></span>\r\n // </a>\r\n // </span>\r\n // </div>\r\n // <div>\r\n // <span ng-if=\"$ctrl.typeFeeAlert()!='costWarningGeneral'\" ng-bind-html=\"$ctrl.getFeeAlert() \"></span>\r\n // <span ng-if=\"$ctrl.typeFeeAlert()=='costWarningScan'\"><button class=\"greenbutton button-as-link md-button md-primoExplore-theme md-ink-ripple\" ng-click=\"$ctrl.click_peb()\"><span>{{ 'illButton' | customTranslate }}</span></button></span>\r\n // </div>\r\n //\r\n // </div>\r\n // </div>`\r\n });\r\n\r\n\r\n\r\n\r\n\r\n\r\n app.controller('LibInfoController', [function () {\r\n var vm = this;\r\n vm.biblinkText = \"Library\";\r\n vm.biblinkBase = \"https:\\/\\/slsp.ch\\/libraries\";\r\n\r\n vm.getLibraryUrl = function() {\r\n if (vm.parentCtrl.loc && vm.parentCtrl.loc.location.libraryCode==='E02') {\r\n return \"https://go.epfl.ch/library\";\r\n } else {\r\n return vm.biblinkBase;\r\n }\r\n }\r\n vm.view = vm.parentCtrl.configurationUtil.vid.replace(':', '-');\r\n vm.getLibrary = function() {\r\n // return vm.parentCtrl.currLoc.location.librarycodeTranslation;\r\n return vm.parentCtrl.currLoc ? vm.parentCtrl.currLoc.location.librarycodeTranslation : '';\r\n }\r\n console.log(vm);\r\n\r\n }]);\r\n\r\n app.component('prmLocationItemsAfter', {\r\n bindings: { parentCtrl: '<' },\r\n controller: 'LibInfoController',\r\n controllerAs: 'ctrl',\r\n template: `<div layout=\"row\" class=\"LibInfo\" layout-align=\"start center\"><span class=\"md-subhead\"><a ng-href=\"{{ ctrl.getLibraryUrl() }}\" target=\"_blank\"><img width=\"20px\" ng-src=\"/discovery/custom/{{ ctrl.view }}/img/information.png\" />{{ ctrl.getLibrary() }}</a></span></div>`\r\n });\r\n\r\n\r\n\r\n //--------ILL Signin Order - if logged out ---------------------------------------\r\n app.service('userService', ['jwtHelper', function (jwtHelper) {\r\n this.isGuest = function () {\r\n var jwt = sessionStorage.getItem('primoExploreJwt');\r\n if (!jwt) {\r\n return true;\r\n }\r\n var decodedToken = jwtHelper.decodeToken(jwt);\r\n let userName = decodedToken.userGroup !== 'GUEST' ? decodedToken.userName : '';\r\n if (userName) {\r\n return false\r\n }\r\n else {\r\n return true;\r\n }\r\n }\r\n /* ----------------------------------- */\r\n /* - Ajout pour obtenir l'adresse IP - */\r\n this.getIP = function () {\r\n var jwt = sessionStorage.getItem('primoExploreJwt');\r\n if (!jwt) {\r\n return;\r\n }\r\n return jwtHelper.decodeToken(jwt).userIp;\r\n }\r\n\r\n\r\n /* --------- Fin de l'ajout --------- */\r\n /* ---------------------------------- */\r\n\r\n }])\r\n\r\n\r\n app.controller('IllBoxController', ['$scope', 'userService', function ($scope, userService) {\r\n\r\n $scope.usrNme = userService.isGuest();\r\n\r\n if ($scope.usrNme == true) {\r\n var myEl = angular.element(document.querySelector('primo-explore'));\r\n return myEl.addClass('logged-out')\r\n }\r\n\r\n else {\r\n var myEl = angular.element(document.querySelector('primo-explore'));\r\n return myEl.removeClass('logged-out');\r\n }\r\n\r\n\r\n }]);\r\n\r\n app.component('prmUserAreaExpandableAfter', {\r\n bindings: { parentCtrl: '<' },\r\n controller: 'IllBoxController',\r\n template: ''\r\n });\r\n\r\n // app.component('prmTopbarAfter', {\r\n // bindings: { parentCtrl: '<' },\r\n // // controller: 'IllBoxController',\r\n // template: `<div class=\"main-title\"><h1><a href=\"{{ starturl }}\">{{ 'mainTitle' | customTranslate }}</a></h1><h2>{{ 'subTitle' | customTranslate }}</h2></div>`\r\n // });\r\n\r\n //----------------------------------------------------------------------------------------------\r\n\r\n\r\n app.controller('AlertMsgController', ['$scope', function ($scope) {\r\n var vm = this;\r\n vm.getAlert = getAlert\r\n\r\n function getAlert() {\r\n var ga = vm.parentCtrl.almaHowToGetitService.reqAlert._htmlMsg;\r\n var myEl2 = angular.element(document.querySelector('primo-explore'));\r\n\r\n if (ga.length > 0) {\r\n return myEl2.addClass('alert');\r\n\r\n }\r\n else {\r\n\r\n return myEl2.removeClass('alert');\r\n\r\n }\r\n }\r\n\r\n }]);\r\n\r\n app.component('almaHowovpAfter', {\r\n bindings: { parentCtrl: '<' },\r\n controller: 'AlertMsgController',\r\n template: '<div style=\"display:none\">{{$ctrl.getAlert()}}</div>'\r\n });\r\n\r\n\r\n\r\n})();\r\n"],"sourceRoot":"/source/"}
\ No newline at end of file
diff --git a/primo-explore/custom/41SLSP_EPF-test/README.md b/primo-explore/custom/41SLSP_EPF-test/README.md
deleted file mode 100644
index 2a12059..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/README.md
+++ /dev/null
@@ -1,40 +0,0 @@
-
-# The UI Customization Workflow Development Environment
-
-
-##Package documentation
-
-The development package allows you to configure :
-
-- css
-
-- images
-
-- html
-
-- JavaScript
-
-- The root directory of the package should be named either by the `viewCode` or `CENTRAL_PACKAGE` in case of a consortia level package
-- Whether you develop a consortia level package or a view level package the process remains the same
-- Once deployed the hierarchy is as follows:
- 1. For css - use the cascading ability of css and load the consortia level (CENTRAL_PACKAGE) css first and the view level css afterwards
- 2. For images and html - the system checks for every file if it exists in each level - and prefers the view level file if exists
- 3. For JavaScript - the two package types define 2 different Angular modules:
- - ```var app = angular.module('viewCustom', ['angularLoad']);```
- - ```var app = angular.module('centralCustom', ['angularLoad']);```
-
- and loads both of the modules,
-
-- For each configuration type there is a specified folder in the custom package folder (that can be downloaded form your Primo Back Office)
-- In each folder you will find a specific README.md file with recipes/examples.
-
-
-
-
-
-
-
-
-
-
-
diff --git a/primo-explore/custom/41SLSP_EPF-test/colors.json.txt b/primo-explore/custom/41SLSP_EPF-test/colors.json.txt
deleted file mode 100644
index 876cf62..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/colors.json.txt
+++ /dev/null
@@ -1 +0,0 @@
-{"primary":"#ff0000","secondary":"#292929","backgroundColor":"#ffffff","links":"#14413c","warning":"#FFB816","positive":"#029986","negative":"#808080","notice":"#e08303"}
diff --git a/primo-explore/custom/41SLSP_EPF-test/css/README.md b/primo-explore/custom/41SLSP_EPF-test/css/README.md
deleted file mode 100644
index 71d9441..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/css/README.md
+++ /dev/null
@@ -1,129 +0,0 @@
-# The Primo New UI Customization Workflow Development Environment
-
-
-##css documentation
-
-- Primo uses Angular Directives massively in this project
-
-- To learn more about directives see:
-> https://docs.angularjs.org/guide/directive
-
-- Primo uses external directives from the Angular-material framework :
-> https://material.angularjs.org/latest/
-
-- Those directives are tagged by a prefix : "md-"
-
-- Primo also creates its own directives which are tagged by the "prm-" prefix.
-
-
-Example:
-```
- <header layout="column" layout-fill class="topbar-wrapper">
- <prm-topbar>
- </prm-topbar>
-
- <prm-search-bar (search-event)="prmSearch.onSearchBarSearchEvent()">
- </prm-search-bar>
-
- <md-progress-linear class="header-progress-bar animation-scale-up-down" md-mode="indeterminate" ng-show="prmSearch.searchInProgress">
- </md-progress-linear>
-
- </header>
-```
-
-
-- You can see in the example how we use :
-
-1. An HTML5 tag - header
-2. A Primo directive : prm-topbar , prm-search-bar.
-3. An external material design directive : md-progress-bar :
-> https://material.angularjs.org/latest/api/directive/mdProgressLinear
-
-
-
-- When defining css rules it is important to understand the css cascading/specifity logic:
-
-> http://www.w3.org/TR/css3-cascade/
-
-> https://specificity.keegan.st/
-
-
-
-
-- When you start working on customizing your css be aware of the ability to define css selectors based on the directive name, which is actually equivalent
-to an html tag - this will enable you changing the design of a component cross-system without relying on id's/classes
-
-- For the example above we can define selectors:
-
-```
-prm-topbar input {....}
-prm-topbar.md-primoExplore-theme input {....}
-```
-- Primo is using a theme inside angular-material to define a palette of colors see:
-> https://material.angularjs.org/latest/Theming/01_introduction
-
-
-- This means that you will often encounter a class "md-primoExplore-theme" attached to elements.
-
-
-
-##Recipes/Examples:
-
-
-# css Recipe 1 - Color Scheme
-
-- Open a new command line window
-
-- cd to the project base directory (C:\**\**\primo-explore-devenv)
-- Run `gulp css-colors` to save the OTB css file
-- Run `css-color-extractor primo-explore/tmp/app.css --format=css > primo-explore/tmp/colors.css` to extract the color definitions from the OTB css file and copy the css rules to primo-explore/custom/css/custom1.css
-
-
-Run the following steps repeatedly until you are satisfied with the result
-
-
-- Choose a color from the interface (using your browsers' dev tools or extensions such as colorzilla)
-
-
-- Choose the new color from your library color scheme
-- Replace all values in the custom1.css file
-- Save and refresh your browser
-
-
-
-# css Recipe 2 - Moving the Facets to the Left
-
-
-- Select the parent container containing the search result and the facets
-- Copy the selector definition using your browsers' dev tools
-- Define the container as
-```
-display:flex;
-flex-flow:row-reverse;
-```
-
-
-- complete css definition:
-```
-prm-search > md-content.md-primoExplore-theme .main {
- display: -webkit-flex; !* Safari *!
- -webkit-flex-flow: row-reverse wrap; !* Safari 6.1+ *!
- display: flex;
- flex-flow: row-reverse wrap;
-
-}
-.screen-gt-sm .sidebar{
- webkit-flex: 0 0 15%;
- flex: 0 0 15%;
-}
-```
-- Save and refresh your browser
-
-
-
-
-
-
-
-
-
diff --git a/primo-explore/custom/41SLSP_EPF-test/css/collection.css b/primo-explore/custom/41SLSP_EPF-test/css/collection.css
deleted file mode 100644
index dfb8157..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/css/collection.css
+++ /dev/null
@@ -1,6 +0,0 @@
-/* Affichage des collections */
-
-/* Supprime le chevauchement du titre */
-prm-collection-gallery-header .collection-header-inner.has-transparent-topbar{
- margin-top: 0px !important;
-}
diff --git a/primo-explore/custom/41SLSP_EPF-test/css/custom1.css b/primo-explore/custom/41SLSP_EPF-test/css/custom1.css
deleted file mode 100644
index 2eeb54e..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/css/custom1.css
+++ /dev/null
@@ -1,1066 +0,0 @@
-/* Affichage des collections */
-
-/* Supprime le chevauchement du titre */
-prm-collection-gallery-header .collection-header-inner.has-transparent-topbar{
- margin-top: 0px !important;
-}
-
-
-/******************************************************************************/
-/******************************************************************************/
-/******************************************************************************/
-/*************************** Central Package CSS ******************************/
-/******************************************************************************/
-/******************************************************************************/
-/******************************************************************************/
-
-
-/*************** Navigation ******************/
-
-/*Font Navigation and buttons*/
-#mainMenu > div > a, button#signInBtn, button#more-links-button, prm-topbar > div > prm-user-area-expandable > md-menu > button > span {
- font-size: small !important;
- font-weight: 500 !important;
- color: #111 !important;
-}
- /*hover effect Navigation and buttons*/
- #mainMenu > div > a:hover, button#signInBtn:hover, prm-topbar > div > prm-user-area-expandable > md-menu > button:hover, button#more-links-button:hover,
- prm-search-bookmark-filter > a:hover, a#favorites-button:hover, a#search-button:hover, .md-button.button-as-link:hover:not([disabled]),
- .md-button.button-link:hover:not([disabled]), .md-button.button-link:focus:not([disabled]), prm-user-area-expandable .button-with-menu-arrow:hover .menu-arrow:hover:not([disabled]),
- button.item-expand-button.md-button.md-primoExplore-theme.md-ink-ripple:hover:not([disabled]),
- button.item-expand-button.md-button.md-primoExplore-theme.md-ink-ripple:focus:not([disabled]) {
- background-color: #ddd !important;
- color: #111 !important;
- }
-/*remove capitalized text*/
-.md-button {
- text-transform: none;
-}
- /*Menu button*/
- button.button-with-menu-arrow.md-button.md-primoExplore-theme.md-ink-ripple:hover, button#signInBtn, .md-button.button-link,
- .md-button.button-as-link.link-alt-color, prm-icon md-icon, .section-title prm-icon, prm-icon.rotate-180, svg#chevron-up,
- span.user-name, span.menu-arrow, .md-button.button-as-link, #sidebar-trigger > prm-icon > md-icon {
- color: #111 !important;
- }
-/*hide hover effect on Library Logo*/
-#banner > a.md-button.md-primoExplore-theme.md-ink-ripple:hover {
- background: none;
-}
-/*background buttons*/
-prm-search-bookmark-filter .md-button {
- background-color: #fff !important;
-}
-/*hiding Refworks from the pulldown menu*/
-.my-refworks-ctm, .my-refworks-separator-ctm {
- display: none;
-}
-/*switch to advanced search button*/
-button.switch-to-advanced.zero-margin.button-with-icon.md-button.md-primoExplore-theme.md-ink-ripple {
- border-style: solid;
- border-width: 1px;
- border-radius: 5px;
-}
-
-.md-button.button-as-link {
- line-height: 36px;
- padding: 0 12px;
-}
-
-.md-button.md-primary:hover:not([disabled]), .md-button.md-primary:focus:not([disabled]), prm-favorites-labels .md-chips .md-chip.toggleable-chip:not(.chip-toggled-on) .md-chip-content:hover:not([disabled]), prm-favorites-labels .md-chips .md-chip:not(.chip-toggled-on) .md-chip-content:hover:not([disabled]), .bar prm-authentication .md-button:hover:not([disabled]), button.dismiss-alert-button:hover {
- color: #fff;
- background-color: #111;
-}
-
-/*the main color border on mobile view*/
-@media (max-width: 599px) {
- prm-topbar .top-nav-bar {
- border-bottom-style: solid;
- border-bottom-width: 8px;
- }
-}
-
-.md-button.button-as-link {
- line-height: 36px;
- padding: 0 6px;
-}
-
-.md-autocomplete-suggestions li {
- white-space: nowrap;
-}
-
-
-/*************** Main Content ******************/
-
-/*backgound of the Textboxes Homepage*/
-prm-search > div > md-content, md-card.default-card._md.md-primoExplore-theme {
- background-color: #fff !important;
- border-radius: 3px;
-}
-
-/*first header of the Textboxes*/
-.cardbox h1 {
- font-size: 48px;
- line-height: 56px;
-}
-
-/*second header of the Textboxes*/
-.cardbox h2 {
- font-size: 32px;
- line-height: 36px;
-}
-/*third header of the Textboxes (if needed)*/
-.cardbox h3 {
- font-size: 26px;
- line-height: 30px;
-}
-
-/*removes the upper and lower space in a list */
-.cardbox ul, .cardbox ol {
- margin-top: 0px !important;
- margin-bottom: 0px !important;
-}
-/*links in the textboxes*/
-md-card-content a, prm-service-details a {
- color: #222222 !important;
-}
-
-md-card-content a, prm-service-details a, div.courier-info > span a {
- text-decoration: underline !important;
-}
-
- md-card-content a:hover, prm-service-details a:hover {
- color: #111;
- background-color: rgba(47, 47, 47, 0.1) !important;
-}
-
-/*Responsive Video Frame*/
-.resp-container {
- position: relative;
- overflow: hidden;
- padding-top: 56.25%;
-}
-
-.resp-iframe {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- border: 0;
-}
-
-/*footer layout*/
-md-card.prm-primary-bg.psfooter {
- margin: 16px 0 0 0;
-}
-/*footer layout*/
-md-card.prm-primary-bg.psfooter-legal {
- margin: 1px 0 0 0;
-}
-/*Responsive footer layout*/
-@media (min-width: 960px) {
-
- md-card-content.prm-primary-bg.layout-align-gt-sm-end-stretch.flex-gt-sm-70 {
- text-align: end;
- }
-}
-/*footer links*/
-md-icon.ps_icon, a.ps_link {
- margin-right: 5%;
- text-decoration: underline;
-}
-
- /*md-icon.ps_icon:hover, a.ps_link:hover, a.ps_link.legal:hover, span.legal a:hover {
- background-color: rgba(61,110,148,.1) !important;
- }*/
-
-
-/*footer text*/
-md-card-content.prm-primary-bg {
- font-weight: 300;
-}
-
-
-/*links in the legal part of the footer*/
-a.ps_link.legal, span.legal {
- font-size: 14px;
- font-weight: 300;
-}
-
- /************************************************************************************************
-span.legal {
- color: #14413c;
-}
-*/
- span.legal > a {
- /*color: #14413c;*/
- font-weight: 600;
- }
-
-/*main container width for footer positioning*/
-prm-static.md-padding.flex {
- min-width: 100%;
- padding: 0;
-}
-
-/*mainly white background*/
-.prm-primary-bg.prm-hue1, prm-atoz-search-bar.prm-hue1, prm-browse-search-bar.prm-hue1, prm-collection-gallery-header .prm-hue1.collection-header-inner, prm-newspapers-search-bar.prm-hue1, prm-search-bar.prm-hue1, prm-spinner.prm-hue1.overlay-cover.light-on-dark:after, prm-tags-search-bar.prm-hue1, prm-topbar .top-nav-bar, prm-tree-nav prm-spinner .prm-hue1.diamond {
- background-color: #fff !important;
-}
-
-
-/*font color on white background*/
-.hoverable-over-dark, .md-button.button-over-dark, prm-main-menu[menu-type=full] .md-button.md-focused, prm-main-menu[menu-type=full] .md-button .md-input-container-dummy > .md-select-dummy:focus, prm-main-menu[menu-type=full] .md-button:focus, prm-main-menu[menu-type=full] .md-button:hover, prm-main-menu[menu-type=full] .md-button md-select:focus, prm-main-menu[menu-type=full] .overlay-menu-item.md-focused, prm-main-menu[menu-type=full] .overlay-menu-item .md-input-container-dummy > .md-select-dummy:focus, prm-main-menu[menu-type=full] .overlay-menu-item:focus, prm-main-menu[menu-type=full] .overlay-menu-item:hover, prm-main-menu[menu-type=full] .overlay-menu-item md-select:focus, prm-main-menu[menu-type=full] md-button:focus, prm-main-menu[menu-type=full] md-button:hover, prm-topbar .md-button, prm-user-area .md-button.user-menu-button, prm-user-area md-fab-toolbar ._md-fab-action-item .md-button, prm-user-area md-fab-toolbar ._md-fab-action-item md-input-container, prm-user-area md-fab-toolbar .md-fab-action-item .md-button, prm-user-area md-fab-toolbar .md-fab-action-item md-input-container {
- color: #222 !important;
-}
-
-/*************** Brief results ******************/
-
-/*color of the Alertbar*/
-.bar.alert-bar, .classic-input .search-scope, .prm-alert-bg {
- /*background-color: #8dd8d8 !important;*/
- border: none !important;
-}
-
-/*backgound search results boxes*/
-.list-item-wrapper {
- background-color: #f9f9f9;
-}
-/*Title color*/
-prm-brief-result .item-title span {
- color: #333;
-}
-
- prm-brief-result .item-title span:hover {
- color: #111;
- background-color: rgba(47, 47, 47, 0.1) !important;
- }
-
-/*remove hover effect from title links*/
-.md-button.arrow-link-button .button-content:focus, .md-button.arrow-link-button .button-content:hover, .md-button.arrow-link-button .hover.button-content, .md-button.arrow-link-button:focus .button-content, .md-button.arrow-link-button:hover .button-content, .recommendations-title.hover > span > span, .recommendations-title:hover > span > span, a.hover, a:focus, a:hover, prm-chapters-and-reviews md-card > .md-button:focus .item-title span, prm-chapters-and-reviews md-card > .md-button:hover .item-title span, prm-citation-trails-item.active-item md-card > .md-button:focus .item-title span, prm-citation-trails-item.active-item md-card > .md-button:hover .item-title span, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong, prm-tags-list .md-chips md-chip .md-chip-content:hover strong, prm-tags-list md-chips .md-chip .md-chip-content:hover strong, prm-tags-list md-chips md-chip .md-chip-content:hover strong {
- box-shadow: none !important;
-}
-
-/*background color of bookmarked items*/
-.list-item-wrapper .item-bookmarked, .list-item-wrapper .item-bookmarked:hover, .prm-highlight, .prm-highlight.prm-hue1, prm-breadcrumbs .md-chip.persistent-facet, prm-breadcrumbs .prm-hue1.md-chip.persistent-facet {
- background-color: #ddd !important;
-}
-
-/*hover effect on all Links*/
-.md-button.arrow-link-button .button-content:focus, .md-button.arrow-link-button .button-content:hover, .md-button.arrow-link-button .hover.button-content,
-.md-button.arrow-link-button:focus .button-content, .md-button.arrow-link-button:hover .button-content, .prm-links-background.prm-hue-1,
-.recommendations-title.hover > span > span, .recommendations-title:hover > span > span, a.hover, a:focus, a:hover,
-prm-chapters-and-reviews md-card > .md-button:focus .item-title span, prm-chapters-and-reviews md-card > .md-button:hover .item-title span,
-prm-citation-trails-item.active-item md-card > .md-button:focus .item-title span, prm-citation-trails-item.active-item md-card > .md-button:hover .item-title span,
-prm-tags-list .md-chips .md-chip .md-chip-content:hover strong, prm-tags-list .md-chips md-chip .md-chip-content:hover strong,
-prm-tags-list md-chips .md-chip .md-chip-content:hover strong, prm-tags-list md-chips md-chip .md-chip-content:hover strong {
- color: #222 !important;
-}
-
-div.custom-links-container.layout-wrap.layout-align-sm-start-start.layout-align-center-start.layout-row > div > a:hover {
- background-color: #6b6b6b !important;
-}
-
-/*Facet titles*/
-span.section-title-header:hover {
- color: #8a8a8a !important;
-}
-/*underlined search results*/
-/*.text-highlight, mark {
- box-shadow: inset 0 -0.15em 0 0 #8dd8d8;
-}*/
-
-/*versions link and other*/
-.getit, .md-button.arrow-link-button prm-search-result-frbr-line .button-content > prm-icon:first-child, .prm-notice, .status-maybe, .worldcat, [class*=_more], [class*=_unknown], [class*=check_], [class*=does_not_exist], [class*=may_], [class*=NFT], prm-search-result-frbr-line .md-button.arrow-link-button .button-content > prm-icon:first-child, prm-search-result-frbr-line a > prm-icon:first-child, prm-service-links a {
- color: #222 !important;
-}
-/*icon color and text color in request forms*/
-.prm-primary-color, .request-form md-input-container label, .request-form md-input-container label:not(.md-no-float):not(._md-container-ignore), .request-form md-input-container md-select .md-select-value.md-select-placeholder, .request-form md-input-container .md-input-container-dummy > .md-select-dummy .md-select-value.md-select-placeholder, .request-form md-input-container md-select ._md-select-value._md-select-placeholder, .request-form md-input-container .md-input-container-dummy > .md-select-dummy ._md-select-value._md-select-placeholder, .result-item-actions .md-icon-button, .result-item-actions .more-options-button, prm-add-query-to-saved-searches .custom-button, prm-pre-filters md-input-container.is-active, .md-autocomplete-suggestions .suggestion-scope, md-tab-content .tab-content-header md-input-container md-select-value .md-text {
- color: #222 !important;
-}
-/*space between item details in Fullview*/
-#item-details > div > div {
- margin-bottom: .8em !important;
-}
-
-/*View Results Journals - Item Details*/
-prm-location-items .md-list-item-text.layout-wrap.layout-row.flex {
- flex-direction: column;
-}
-prm-location-items h3, prm-location-items h4 {
- margin:10px 0 !important;
-}
-prm-location-items > md-list > md-list-item > div > div.md-list-item-text > div.weak-text > div > div > p {
- margin: 4px 18px !important;
- display: list-item;
-}
-prm-location-items > md-list > md-list-item > div > div > div.layout-wrap {
- flex-direction: row !important;
- justify-content: flex-start !important;
- max-width: 100% !important;
-}
-prm-location-items > md-list > md-list-item > div > div > div > div > prm-service-button > button {
- box-shadow: inset 0 -0.15em 0 0 #8dd8d8;
-}
-
-/* Hide "search inside" for print journals */
-.search-within-p-only { display:none }
-
-/*fullview background of the left part*/
-.md-dialog-container.fixed-container {
- background-color: #444 !important;
-}
-
-/*background color of the signin window and the fullscreen navigation*/
-md-backdrop._md-dialog-backdrop.md-opaque.md-primoExplore-theme {
- background-color: #1f1f1f !important;
-}
-/*text color of the signin window and the fullscreen navigation*/
-prm-main-menu[menu-type=full] .md-button .md-headline, prm-main-menu[menu-type=full] .overlay-menu-item .md-headline, .light-on-dark-dialog .md-button.button-as-link, .light-on-dark-dialog .md-button.button-confirm, md-dialog.light-on-dark-dialog md-list md-list-item.list-login .md-button {
- color: #fff !important;
-}
-/*hiding the Library Logo in the login window*/
-.login-header {
- display: none !important;
-}
-/*alertbar for the courier info*/
-
-.courier-info {
- margin: 0px 8px;
-}
-
-.courier-info.bar.alert-bar {
- height: unset;
- margin: 6px 8px;
- padding: .5em .5em 0.25em;
- text-align: center;
-}
-
-/*Library info icon*/
-prm-location-items-after > div > span > a > img {
- vertical-align: middle;
- max-width: 30px;
- margin: 4px 12px;
-}
-
-/*Library card Personal details display*/
-#personalDetails > md-card-content > div {
- flex-flow: column;
-}
-
-#personalDetails .md-input-has-value.layout-column {
- min-width: 400px;
-}
-
-prm-personal-info-after {
- display: flex;
-}
-
-/*Full view Resource sharing */
-
-#getit_link1_0 > div > prm-full-view-service-container > div.section-body > div {
- display: flex;
- flex-direction: column;
-}
-
-prm-opac {
- order: 1;
-}
-
-prm-alma-other-members {
- order: 2;
- display: grid;
-}
-
-alma-htgi-svc {
- order: 3;
-}
-
-primo-explore.logged-out alma-htgi-svc, primo-explore.alert alma-htgi-svc {
- order: 0 !important;
-}
-
-.medium-uppercase-bold {
- text-transform: none;
- font-size: 1em;
-}
-
-/*Full view Resource sharing expand section*/
-
-prm-alma-other-units button.layout-fill, prm-alma-other-members button.layout-fill {
- height: auto;
- min-height: auto;
-}
-
-/* Full view change sections order */
-
-#full-view-container >*:first-child {
- display: flex;
- flex-direction: column;
-}
-
-#brief {
- order: 0 !important;
-}
-
-#details {
- order: 3 !important;
-}
-
-#links {
- order: 4 !important;
-}
-
-#getit_link1_0 {
- order: 1 !important;
-}
-
-#action_list {
- order: 2 !important;
-}
-
-#virtualBrowse {
- order: 5 !important;
-}
-
-/* Change of links in left navigation bar ENG */
-
-[aria-label="Top"] {
- order: 0 !important;
-}
-
-[aria-label="Details"] {
- order: 4 !important;
-}
-
-[aria-label="Links"] {
- order: 5 !important;
-}
-
-[aria-label="Loan and request options"] {
- order: 1 !important;
-}
-
-[aria-label="Send to"] {
- order: 3 !important;
-}
-
-[aria-label="Virtual Browse"] {
- order: 6 !important;
-}
-
-[aria-label="View Online"] {
- order: 2 !important;
-}
-
-/* Change of links in left navigation bar GER */
-
-[aria-label="Top"] {
- order: 0 !important;
-}
-
-[aria-label="Details"] {
- order: 4 !important;
-}
-
-[aria-label="Links"] {
- order: 5 !important;
-}
-
-[aria-label="Ausleih- und Bestelloptionen"] {
- order: 1 !important;
-}
-
-[aria-label="Senden an"] {
- order: 3 !important;
-}
-
-[aria-label="Virtuelles Regal"] {
- order: 6 !important;
-}
-
-[aria-label="Online ansehen"] {
- order: 2 !important;
-}
-
-/* Change of links in left navigation bar FRE */
-
-[aria-label="Haut"] {
- order: 0 !important;
-}
-
-[aria-label="D&#233;tails"] {
- order: 4 !important;
-}
-
-[aria-label="Liens"] {
- order: 5 !important;
-}
-
-[aria-label="Options de pr&#234;t et de demande"] {
- order: 1 !important;
-}
-
-[aria-label="Envoyer vers"] {
- order: 3 !important;
-}
-
-[aria-label="Etag&#232;re virtuelle"] {
- order: 6 !important;
-}
-
-[aria-label="Consulter en ligne"] {
- order: 2 !important;
-}
-
-/* Change of links in left navigation bar ITA */
-
-[aria-label="Top"] {
- order: 0 !important;
-}
-
-[aria-label="Dettagli"] {
- order: 4 !important;
-}
-
-[aria-label="Link"] {
- order: 5 !important;
-}
-
-[aria-label="Opzioni di prestito e richiesta"]{
- order: 1 !important;
-}
-
-[aria-label="Invia a"] {
- order: 3 !important;
-}
-
-[aria-label="Scorri virtualmente"] {
- order: 5 !important;
-}
-
-[aria-label="Visualizza online"] {
- order: 2 !important;
-}
-
-/******************************************************************************/
-/************************************ Help Page *******************************/
-/******************************************************************************/
-#help img {
- max-width: 100%;
- height: auto;
-}
-
-img.icon_up1 {
- width: 16px;
- float: right;
- margin: 13px 2px;
-}
-
-img.icon_up2 {
- width: 10px;
- float: right;
- margin: 4px;
-}
-
-a > h3:hover {
- background-color: #eee !important;
-}
-
-
-/******************************************************************************/
-/******************************************************************************/
-/******************************************************************************/
-/********************** End of the Central Package CSS ************************/
-/******************************************************************************/
-/******************************************************************************/
-/******************************************************************************/
-
-/******************************************************************************/
-/******************************************************************************/
-/******************************************************************************/
-/*************************** EPFL CUSTOM COLORS *******************************/
-/******************************************************************************/
-/******************************************************************************/
-/******************************************************************************/
-
-/* This file contains the EPFL part of the custom package. The SLSP part is in
- the custom_slsp.css file. */
-
-/*****************This two entries are the background of the primary color*******************/
-
-prm-primary-bg, prm-atoz-search-bar, prm-browse-search-bar, prm-collection-gallery-header .collection-header-inner, prm-search-bar, prm-newspapers-search-bar,
-prm-spinner.overlay-cover.light-on-dark:after, prm-tags-search-bar, prm-tree-nav prm-spinner .diamond, .prm-primary-bg, md-checkbox.md-checked .md-icon,
-md-tabs md-ink-bar, md-radio-button.md-checked .md-on, button.switch-to-simple, .md-button.button-confirm {
- background-color: #ff0000 !important;
-}
-
-/* Suppression configuration master template */
-prm-request-services .md-button.button-as-link{
- background-color: unset !important;
-}
-
-md-tabs.tabs-as-app .back-button {
- background-color: #777 !important;
- line-height: 24px !important;
- min-height: 24px !important;
- margin: 4px 0 !important;
-}
-
-@media (max-width: 599px) {
- prm-topbar .top-nav-bar {
- border-color: #ff0000 !important;
- }
-}
-
-/*.search-actions button{
- background-color: #fff !important;
- color: #222;
-} */
-
-
-/*****************This entry is the mouse over background of the links and buttons*******************/
-md-card.prm-primary-bg.psfooter > md-card-content a:hover, md-icon.ps_icon:hover, a.ps_link:hover, a.ps_link.legal:hover, span.legal a:hover, button.switch-to-advanced:hover,
-button.switch-to-simple:hover, .md-button.button-confirm:hover {
- background-color: #ae0010 !important;
-}
-
-.md-button.button-as-link:hover:not([disabled]){
- background-color: unset !important;
-}
-
-md-tabs.tabs-as-app .back-button:hover:not([disabled]){
- background-color: #555 !important;
-}
-
-/*****************This two entries are the font color of the primary color*******************/
-.prm-primary-bg, prm-atoz-search-bar, prm-browse-search-bar, prm-collection-gallery-header .collection-header-inner, prm-newspapers-search-bar,
-prm-spinner.overlay-cover.light-on-dark:after, prm-tags-search-bar, prm-tree-nav prm-spinner .diamond, .prm-primary-bg, md-checkbox.md-checked .md-icon:after, .md-button.switch-to-advanced, button.switch-to-simple,
-span.legal, span.legal > a, a.ps_link.legal, .ps_icon, md-card.prm-primary-bg.psfooter > md-card-content a, .md-button.button-confirm, md-tabs.tabs-as-app .back-button, prm-request-services .md-button.button-as-link {
- color: #fff !important;
- }
-
-
-button.switch-to-advanced.zero-margin.button-with-icon.md-button.md-primoExplore-theme.md-ink-ripple {
- border-color: #c1c1c1 !important;
-}
-
-
-
-/*****************This two entries are the background of the secondary color*******************/
-
-.bar.alert-bar, .classic-input .search-scope, .prm-alert-bg {
- background-color: #ffcccc !important;
-}
-
-.text-highlight, mark {
- box-shadow: inset 0 -0.15em 0 0 #ff0000 ;
-}
-
-
-/*****************This entry is the font color of the secondary color*******************/
-
-.bar.alert-bar, .classic-input .search-scope, .prm-alert-bg, .bar prm-authentication .md-button, button.dismiss-alert-button, div.courier-info > span a {
- color: #111111 !important;
-}
-
-/*********************************/
-/* CSS pour les bases de données */
-/*********************************/
-
-prm-databases-categorize h2,
-prm-databases-categorize prm-tree-nav{
- width: 220px;
- max-width: 220px;
-}
-
-@media only screen and (max-width: 1100px){
- prm-databases-categorize h2,
- prm-databases-categorize prm-tree-nav{
- width: 180px !important;
- max-width: 180px !important;
- }
-}
-
-/*****************Selected text color*******************/
-
-::selection {
- background: #ffbe8f; /* WebKit/Blink Browsers */
-}
-::-moz-selection {
- background: #ffbe8f; /* Gecko Browsers */
-}
-
-/*****************This entry remove default color from various texts*******************/
-
-md-dialog.light-on-dark-dialog .md-list[class$="-line"] md-list-item .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog .md-list[class$="-line"] md-list-item .md-list-item-text h3, md-dialog.light-on-dark-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3, md-dialog.light-on-dark-dialog .md-list md-list-item .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog .md-list md-list-item .md-list-item-text h3, md-dialog.light-on-dark-dialog .md-list md-list-item > .md-no-style .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog .md-list md-list-item > .md-no-style .md-list-item-text h3, md-dialog.light-on-dark-dialog md-list md-list-item .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog md-list md-list-item .md-list-item-text h3, md-dialog.light-on-dark-dialog md-list md-list-item > .md-no-style .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog md-list md-list-item > .md-no-style .md-list-item-text h3, md-button.arrow-link-button md-dialog.light-on-dark-dialog .button-content, md-dialog.light-on-dark-dialog .md-button.arrow-link-button .button-content, md-dialog.light-on-dark-dialog a{
- color: #ffcccc !important;
-}
-
-/*Bouton pour confirmer une demande*/
-prm-request button.md-button.button-confirm, span[translate="fulldisplay.locations.showmore"], .courier-info .button-confirm {
- background-color: #080 !important;
- border-radius: 2px;
-}
-prm-request button.md-button.button-confirm:hover, span[translate="fulldisplay.locations.showmore"]:hover, .courier-info .button-confirm:hover {
- background-color: #050 !important;
-}
-
-span[translate="fulldisplay.locations.showmore"]{
- line-height: 24px !important;
- padding: 5px 8px;
- margin: 4px 0 !important;
- color: white;
- border-radius: 2px;
-}
-/* Suppression du fond du bouton + d'exemplaires */
-prm-location-items .md-button.button-link:hover:not([disabled]){
- background-color: transparent !important;
-}
-
-button[ng-hide="!$ctrl.currLoc.isMore"] {
- background-color: transparent !important;
-}
-/* Fix SLSP pour la couleur du bouton secondaire */
-.bar prm-authentication .md-button:hover:not([disabled]), button.dismiss-alert-button:hover{
- background-color:#ffdddd !important;
- border: 1px solid #ae0010;
-}
-
-/* Fix SLSP pour le bouton ""élargir" */
-button.item-expand-button.md-button.md-primoExplore-theme.md-ink-ripple{
- background-color: #D3D3D3!important;
-}
-
-/*****************This entry remove default color from various forms*******************/
-
-.md-input-color-underline, .new-result-item .list-item-count, .prm-secondary-bg.prm-hue1,
-md-input-container.empty-select-on-init:not(.md-input-focused) .md-input-container-dummy > .md-select-dummy md-select-value::after,
-md-input-container.empty-select-on-init:not(.md-input-focused) md-select md-select-value::after, md-input-container::after,
-md-progress-linear[md-mode="indeterminate"].header-progress-bar .prm-hue1.md-bar, md-radio-button.md-checked ._md-on,
-md-radio-button.md-checked .md-on, md-tabs md-ink-bar, prm-tags-list .md-chips ._md-chip-input-container::after,
-prm-tags-list .md-chips .md-chip-input-container::after, prm-tags-list md-chips ._md-chip-input-container::after,
-prm-tags-list md-chips .md-chip-input-container::after {
- background-color: #ff0000 !important;
-}
-
-
-md-card.psfooter, md-card.psfooter-legal,
-md-card.psfooter > md-card-content.prm-primary-bg, md-card.psfooter-legal > md-card-content.prm-primary-bg,
-md-card.prm-primary-bg.psfooter > md-card-content a:hover, md-card.prm-primary-bg.psfooter-legal > md-card-content a:hover{
- background-color: #d6d6d6 !important;
-}
-
-md-card.psfooter md-card-content, md-card.psfooter-legal md-card-content,
-md-card.prm-primary-bg.psfooter > md-card-content a, md-card.prm-primary-bg.psfooter-legal > md-card-content a,
-md-card.prm-primary-bg.psfooter-legal span.legal {
- color: #3a3a3a !important;
-}
-
-md-card.prm-primary-bg.psfooter > md-card-content a:hover, md-card.prm-primary-bg.psfooter-legal > md-card-content a:hover {
- color: #ff0000 !important;
-}
-
-/* Couleur rouge pour les logos téléphone, mail, etc. */
-.puce{
- text-decoration: none !important;
-}
-.puce > span:first-child{
- color: #ff0000;
- fill: #ff0000;
-}
-h1.md-headline{
- font-size: 36px;
- line-height: 42px;
-}
-h2.md-headline{
- font-size: 28px;
- line-height: 34px;
-}
-md-content.epfl-row {
- justify-content: center;
-}
-.epfl-row md-card-title{
- flex: none;
-}
-.epfl-row md-card {
- height: 100%;
-}
-.epfl-social a{
- text-decoration: none !important;
-}
-
-/* Augmente l'espace pour réduire la probabilité de clic sur le lien */
-prm-login md-list md-list-item:first-child p[translate="parallel.login.description1"]{
- margin-top:15px !important;
-}
-
-/* Réduit la taille du lien Alma */
-prm-login md-list md-list-item:last-child {
- font-size: x-small !important;
-}
-
-prm-account-links-after div {
- display: flex;
- align-items: center;
- margin-top: 10px;
-}
-prm-account-links-after img{
- margin-right: 5px;
-}
-
-.feedbacklink md-icon{
- height: 20px;
- width: 20px;
- min-height: 20px;
- min-width: 20px;
-}
-prm-alma-viewit-after .bar{
- height: auto;
-}
-
-
-/* Empêcher les retours à la ligne pour les cotes */
-span[ng-if="$ctrl.location.callNumber"]{
- white-space: nowrap
-}
-
-/*****************This entry adapt the message fee*******************/
-
-.feemsg {
- background-color: #ffcccc;
- border-radius: 3px;
- padding: 8px;
-}
-
-.feemsg>div {
- margin-left: 10px;
-}
-
-.bigfont {
- font-size: 20px;
-}
-
-
-/* Bouton de la recherche avancée */
-.search-switch-buttons span{
- font-variant: small-caps;
- font-size: 1.15em;
-}
-.search-switch-buttons button{
- border: none !important;
-}
-
-/* Message d'alerte */
-prm-search-bar>div {
- height: inherit !important;
- min-height: inherit !important;
-}
-prm-search-bar-after>div {
- background-color: #fff !important;
- margin-top: 20px;
- padding: 10px 15px;
-}
-prm-search-bar-after p {
- margin: 0 12px;
-}
-.info-symbol::before {
- content: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 34 34' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Crect fill='%234a90e2' width='34' height='34' rx='4'/%3E%3Cpath d='M17 25V15M17 13V9' stroke='%23FFF' stroke-width='4'/%3E%3C/g%3E%3C/svg%3E");
- width: 24px;
- height: 24px;
- position: absolute;
- display: inline-block;
- top: 50%;
- left: .6rem;
- width: 1.6rem;
- height: 1.6rem;
- margin-top: -.8rem;
-}
-.info-symbol {
- position: relative;
-}
-.info-symbol div {
- margin-left: 50px;
-}
-prm-search-bar-after p {
- padding: .25em 0 .25em;
- margin: 0;
-}
-prm-search-bar-after a {
- color: black;
- text-decoration: underline;
-}
-
-/* Empêcher que le blanc de l'effet hover masque la notice */
-prm-search-result-availability-line-after {
- z-index: 8;
- position: relative;
-}
-.pdf_btn prm-icon{
- min-width: 22px;
- min-height: 22px;
- width: 20px;
- height: 20px;
- /*color: #ff2116;*/
-}
-.pdf_btn {
- margin-top: 15px;
-}
-.pdf_btn a{
- padding: 5px;
- border: 2px rgb(40, 167, 69) solid;
- background-color: rgba(40, 167, 69, .2);
- border-radius: 4px;
- color: rgb(58, 58, 58);
-}
-.pdf_btn:hover a{
- background-color: rgba(40, 167, 69, .4);
- border-radius: 4px;
- color: black;
-}
-
-/* Mise en évidence des boutons pour les demandes de service */
-/* span[translate="AlmaRequest"] {
- text-decoration: underline #0B0 3px;
- padding: 2px 6px;
-}
-span[translate="AlmaRequest"]:hover{
- background-color: #050 !important;
- text-decoration: none;
- color: white;
- border-radius: 2px;
-} */
-/* span[translate="nui.request.request"]{
- display: none;
-} */
-
-/* Soulignement des boutons proposant un service */
-prm-service-button button, .greenbutton {
- padding-left: 0px !important;
- padding-right: 0px !important;
-}
-prm-service-button button > span, .greenbutton>span {
- background-color: #080 !important;
- color: white !important;
- padding: 2px 6px;
- border-radius: 2px;
-}
-prm-service-button button > span:hover, .greenbutton>span:hover {
- background-color: #050 !important;
-}
-prm-location-items > md-list > md-list-item > div > div > div > div > prm-service-button > button {
- box-shadow: unset !important;
-}
-/* Alignement de l'intitulé "Demandes" */
-prm-request-services h3.section-title{
- top: 0px;
-}
-
-/* Alignement central des boutons de demande */
-prm-request-services .labeled-block {
- align-items: center;
-}
-
-/* Suppression du sous-titre demande
-span[translate="nui.request.request"]{
- display: none;
-}*/
-
-/* Suppression du bouton PEB
-span[translate="AlmaResourceSharing"]{
- display: none;
-}
-.links-block .separated-block-item::after{
- content: none !important;
-} */
-
-/* Crée la place pour le titre et le sous-titre */
-prm-topbar {
- height: 150px !important;
-}
-prm-main-menu[menu-type="menu"],
-.top-nav-bar,
-prm-search-bookmark-filter
-{
- max-height: 60px !important;
- height: 60px !important;
- min-height: auto !important;
-}
-
-/* Mise en forme du titre et sous-titre */
-.main-title{
- padding: .85em;
- background-color: white;
-}
-.main-title h1{
- font-size: 2em !important;
- margin-bottom: 0;
-}
-.main-title h1 > a{
- color: black;
-}
-prm-main-menu[menu-type="menu"] #mainMenu>div {
- border-bottom: solid #ddd 1px;
-}
-.main-title h2{
- font-size: 1.2em !important;
- font-weight: bold;
-}
-
-/* Adapte le sous-titre lorsque l'écran est relativement petit */
-@media only screen and (max-width: 660px){
- .main-title h2{
- font-size: 1.1em !important;
- }
-}
-
-/* Menu sur les petits écrans */
-prm-main-menu[menu-type="full"] .md-button .md-headline{
- color: #ff9999 !important;
-}
-prm-main-menu .md-subhead{
- display: none;
-}
-.__sm prm-main-menu[menu-type="full"] .settings-container + md-divider{
- margin-top: 6em !important;
-}
-
-/* Menu sur grand écran */
-prm-main-menu[menu-type="menu"] .button-over-dark, prm-topbar .md-button:not(.disable-hover){
- color: #222 !important;
-}
-
-/* Petit triangle du menu */
-prm-user-area-expandable .button-with-menu-arrow:hover .menu-arrow:hover:not([disabled]){
- background-color: inherit;
-}
-
-prm-databases-categorize button.is-selected{
- color: red !important;
-}
-prm-databases-categorize button:hover{
- background-color: #aaa !important;
- color: inherit !important;
-}
-prm-databases-categorize button.is-selected:hover{
- color: red !important;
-}
-prm-tree-nav md-list md-list-item::after{
- opacity: 1 !important;
-}
-prm-tree-nav md-list md-list-item::after{
- opacity: .3 !important;
-}
-prm-databases-categorize h2,
-prm-databases-categorize prm-tree-nav{
- width: 220px;
- max-width: 220px;
-}
-
-@media only screen and (max-width: 1100px){
- prm-databases-categorize h2,
- prm-databases-categorize prm-tree-nav{
- width: 180px !important;
- max-width: 180px !important;
- }
-}
diff --git a/primo-explore/custom/41SLSP_EPF-test/css/custom_slsp.css b/primo-explore/custom/41SLSP_EPF-test/css/custom_slsp.css
deleted file mode 100644
index c2621b1..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/css/custom_slsp.css
+++ /dev/null
@@ -1,570 +0,0 @@
-
-/******************************************************************************/
-/******************************************************************************/
-/******************************************************************************/
-/*************************** Central Package CSS ******************************/
-/******************************************************************************/
-/******************************************************************************/
-/******************************************************************************/
-
-
-/*************** Navigation ******************/
-
-/*Font Navigation and buttons*/
-#mainMenu > div > a, button#signInBtn, button#more-links-button, prm-topbar > div > prm-user-area-expandable > md-menu > button > span {
- font-size: small !important;
- font-weight: 500 !important;
- color: #111 !important;
-}
- /*hover effect Navigation and buttons*/
- #mainMenu > div > a:hover, button#signInBtn:hover, prm-topbar > div > prm-user-area-expandable > md-menu > button:hover, button#more-links-button:hover,
- prm-search-bookmark-filter > a:hover, a#favorites-button:hover, a#search-button:hover, .md-button.button-as-link:hover:not([disabled]),
- .md-button.button-link:hover:not([disabled]), .md-button.button-link:focus:not([disabled]), prm-user-area-expandable .button-with-menu-arrow:hover .menu-arrow:hover:not([disabled]),
- button.item-expand-button.md-button.md-primoExplore-theme.md-ink-ripple:hover:not([disabled]),
- button.item-expand-button.md-button.md-primoExplore-theme.md-ink-ripple:focus:not([disabled]) {
- background-color: #ddd !important;
- color: #111 !important;
- }
-/*remove capitalized text*/
-.md-button {
- text-transform: none;
-}
- /*Menu button*/
- button.button-with-menu-arrow.md-button.md-primoExplore-theme.md-ink-ripple:hover, button#signInBtn, .md-button.button-link,
- .md-button.button-as-link.link-alt-color, prm-icon md-icon, .section-title prm-icon, prm-icon.rotate-180, svg#chevron-up,
- span.user-name, span.menu-arrow, .md-button.button-as-link, #sidebar-trigger > prm-icon > md-icon {
- color: #111 !important;
- }
-/*hide hover effect on Library Logo*/
-#banner > a.md-button.md-primoExplore-theme.md-ink-ripple:hover {
- background: none;
-}
-/*background buttons*/
-prm-search-bookmark-filter .md-button {
- background-color: #fff !important;
-}
-/*hiding Refworks from the pulldown menu*/
-.my-refworks-ctm, .my-refworks-separator-ctm {
- display: none;
-}
-/*switch to advanced search button*/
-button.switch-to-advanced.zero-margin.button-with-icon.md-button.md-primoExplore-theme.md-ink-ripple {
- border-style: solid;
- border-width: 1px;
- border-radius: 5px;
-}
-
-.md-button.button-as-link {
- line-height: 36px;
- padding: 0 12px;
-}
-
-.md-button.md-primary:hover:not([disabled]), .md-button.md-primary:focus:not([disabled]), prm-favorites-labels .md-chips .md-chip.toggleable-chip:not(.chip-toggled-on) .md-chip-content:hover:not([disabled]), prm-favorites-labels .md-chips .md-chip:not(.chip-toggled-on) .md-chip-content:hover:not([disabled]), .bar prm-authentication .md-button:hover:not([disabled]), button.dismiss-alert-button:hover {
- color: #fff;
- background-color: #111;
-}
-
-/*the main color border on mobile view*/
-@media (max-width: 599px) {
- prm-topbar .top-nav-bar {
- border-bottom-style: solid;
- border-bottom-width: 8px;
- }
-}
-
-.md-button.button-as-link {
- line-height: 36px;
- padding: 0 6px;
-}
-
-.md-autocomplete-suggestions li {
- white-space: nowrap;
-}
-
-
-/*************** Main Content ******************/
-
-/*backgound of the Textboxes Homepage*/
-prm-search > div > md-content, md-card.default-card._md.md-primoExplore-theme {
- background-color: #fff !important;
- border-radius: 3px;
-}
-
-/*first header of the Textboxes*/
-.cardbox h1 {
- font-size: 48px;
- line-height: 56px;
-}
-
-/*second header of the Textboxes*/
-.cardbox h2 {
- font-size: 32px;
- line-height: 36px;
-}
-/*third header of the Textboxes (if needed)*/
-.cardbox h3 {
- font-size: 26px;
- line-height: 30px;
-}
-
-/*removes the upper and lower space in a list */
-.cardbox ul, .cardbox ol {
- margin-top: 0px !important;
- margin-bottom: 0px !important;
-}
-/*links in the textboxes*/
-md-card-content a, prm-service-details a {
- color: #222222 !important;
-}
-
-md-card-content a, prm-service-details a, div.courier-info > span a {
- text-decoration: underline !important;
-}
-
- md-card-content a:hover, prm-service-details a:hover {
- color: #111;
- background-color: rgba(47, 47, 47, 0.1) !important;
-}
-
-/*Responsive Video Frame*/
-.resp-container {
- position: relative;
- overflow: hidden;
- padding-top: 56.25%;
-}
-
-.resp-iframe {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- border: 0;
-}
-
-/*footer layout*/
-md-card.prm-primary-bg.psfooter {
- margin: 16px 0 0 0;
-}
-/*footer layout*/
-md-card.prm-primary-bg.psfooter-legal {
- margin: 1px 0 0 0;
-}
-/*Responsive footer layout*/
-@media (min-width: 960px) {
-
- md-card-content.prm-primary-bg.layout-align-gt-sm-end-stretch.flex-gt-sm-70 {
- text-align: end;
- }
-}
-/*footer links*/
-md-icon.ps_icon, a.ps_link {
- margin-right: 5%;
- text-decoration: underline;
-}
-
- /*md-icon.ps_icon:hover, a.ps_link:hover, a.ps_link.legal:hover, span.legal a:hover {
- background-color: rgba(61,110,148,.1) !important;
- }*/
-
-
-/*footer text*/
-md-card-content.prm-primary-bg {
- font-weight: 300;
-}
-
-
-/*links in the legal part of the footer*/
-a.ps_link.legal, span.legal {
- font-size: 14px;
- font-weight: 300;
-}
-
- /************************************************************************************************
-span.legal {
- color: #14413c;
-}
-*/
- span.legal > a {
- /*color: #14413c;*/
- font-weight: 600;
- }
-
-/*main container width for footer positioning*/
-prm-static.md-padding.flex {
- min-width: 100%;
- padding: 0;
-}
-
-/*mainly white background*/
-.prm-primary-bg.prm-hue1, prm-atoz-search-bar.prm-hue1, prm-browse-search-bar.prm-hue1, prm-collection-gallery-header .prm-hue1.collection-header-inner, prm-newspapers-search-bar.prm-hue1, prm-search-bar.prm-hue1, prm-spinner.prm-hue1.overlay-cover.light-on-dark:after, prm-tags-search-bar.prm-hue1, prm-topbar .top-nav-bar, prm-tree-nav prm-spinner .prm-hue1.diamond {
- background-color: #fff !important;
-}
-
-
-/*font color on white background*/
-.hoverable-over-dark, .md-button.button-over-dark, prm-main-menu[menu-type=full] .md-button.md-focused, prm-main-menu[menu-type=full] .md-button .md-input-container-dummy > .md-select-dummy:focus, prm-main-menu[menu-type=full] .md-button:focus, prm-main-menu[menu-type=full] .md-button:hover, prm-main-menu[menu-type=full] .md-button md-select:focus, prm-main-menu[menu-type=full] .overlay-menu-item.md-focused, prm-main-menu[menu-type=full] .overlay-menu-item .md-input-container-dummy > .md-select-dummy:focus, prm-main-menu[menu-type=full] .overlay-menu-item:focus, prm-main-menu[menu-type=full] .overlay-menu-item:hover, prm-main-menu[menu-type=full] .overlay-menu-item md-select:focus, prm-main-menu[menu-type=full] md-button:focus, prm-main-menu[menu-type=full] md-button:hover, prm-topbar .md-button, prm-user-area .md-button.user-menu-button, prm-user-area md-fab-toolbar ._md-fab-action-item .md-button, prm-user-area md-fab-toolbar ._md-fab-action-item md-input-container, prm-user-area md-fab-toolbar .md-fab-action-item .md-button, prm-user-area md-fab-toolbar .md-fab-action-item md-input-container {
- color: #222 !important;
-}
-
-/*************** Brief results ******************/
-
-/*color of the Alertbar*/
-.bar.alert-bar, .classic-input .search-scope, .prm-alert-bg {
- /*background-color: #8dd8d8 !important;*/
- border: none !important;
-}
-
-/*backgound search results boxes*/
-.list-item-wrapper {
- background-color: #f9f9f9;
-}
-/*Title color*/
-prm-brief-result .item-title span {
- color: #333;
-}
-
- prm-brief-result .item-title span:hover {
- color: #111;
- background-color: rgba(47, 47, 47, 0.1) !important;
- }
-
-/*remove hover effect from title links*/
-.md-button.arrow-link-button .button-content:focus, .md-button.arrow-link-button .button-content:hover, .md-button.arrow-link-button .hover.button-content, .md-button.arrow-link-button:focus .button-content, .md-button.arrow-link-button:hover .button-content, .recommendations-title.hover > span > span, .recommendations-title:hover > span > span, a.hover, a:focus, a:hover, prm-chapters-and-reviews md-card > .md-button:focus .item-title span, prm-chapters-and-reviews md-card > .md-button:hover .item-title span, prm-citation-trails-item.active-item md-card > .md-button:focus .item-title span, prm-citation-trails-item.active-item md-card > .md-button:hover .item-title span, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong, prm-tags-list .md-chips md-chip .md-chip-content:hover strong, prm-tags-list md-chips .md-chip .md-chip-content:hover strong, prm-tags-list md-chips md-chip .md-chip-content:hover strong {
- box-shadow: none !important;
-}
-
-/*background color of bookmarked items*/
-.list-item-wrapper .item-bookmarked, .list-item-wrapper .item-bookmarked:hover, .prm-highlight, .prm-highlight.prm-hue1, prm-breadcrumbs .md-chip.persistent-facet, prm-breadcrumbs .prm-hue1.md-chip.persistent-facet {
- background-color: #ddd !important;
-}
-
-/*hover effect on all Links*/
-.md-button.arrow-link-button .button-content:focus, .md-button.arrow-link-button .button-content:hover, .md-button.arrow-link-button .hover.button-content,
-.md-button.arrow-link-button:focus .button-content, .md-button.arrow-link-button:hover .button-content, .prm-links-background.prm-hue-1,
-.recommendations-title.hover > span > span, .recommendations-title:hover > span > span, a.hover, a:focus, a:hover,
-prm-chapters-and-reviews md-card > .md-button:focus .item-title span, prm-chapters-and-reviews md-card > .md-button:hover .item-title span,
-prm-citation-trails-item.active-item md-card > .md-button:focus .item-title span, prm-citation-trails-item.active-item md-card > .md-button:hover .item-title span,
-prm-tags-list .md-chips .md-chip .md-chip-content:hover strong, prm-tags-list .md-chips md-chip .md-chip-content:hover strong,
-prm-tags-list md-chips .md-chip .md-chip-content:hover strong, prm-tags-list md-chips md-chip .md-chip-content:hover strong {
- color: #222 !important;
-}
-
-div.custom-links-container.layout-wrap.layout-align-sm-start-start.layout-align-center-start.layout-row > div > a:hover {
- background-color: #6b6b6b !important;
-}
-
-/*Facet titles*/
-span.section-title-header:hover {
- color: #8a8a8a !important;
-}
-/*underlined search results*/
-/*.text-highlight, mark {
- box-shadow: inset 0 -0.15em 0 0 #8dd8d8;
-}*/
-
-/*versions link and other*/
-.getit, .md-button.arrow-link-button prm-search-result-frbr-line .button-content > prm-icon:first-child, .prm-notice, .status-maybe, .worldcat, [class*=_more], [class*=_unknown], [class*=check_], [class*=does_not_exist], [class*=may_], [class*=NFT], prm-search-result-frbr-line .md-button.arrow-link-button .button-content > prm-icon:first-child, prm-search-result-frbr-line a > prm-icon:first-child, prm-service-links a {
- color: #222 !important;
-}
-/*icon color and text color in request forms*/
-.prm-primary-color, .request-form md-input-container label, .request-form md-input-container label:not(.md-no-float):not(._md-container-ignore), .request-form md-input-container md-select .md-select-value.md-select-placeholder, .request-form md-input-container .md-input-container-dummy > .md-select-dummy .md-select-value.md-select-placeholder, .request-form md-input-container md-select ._md-select-value._md-select-placeholder, .request-form md-input-container .md-input-container-dummy > .md-select-dummy ._md-select-value._md-select-placeholder, .result-item-actions .md-icon-button, .result-item-actions .more-options-button, prm-add-query-to-saved-searches .custom-button, prm-pre-filters md-input-container.is-active, .md-autocomplete-suggestions .suggestion-scope, md-tab-content .tab-content-header md-input-container md-select-value .md-text {
- color: #222 !important;
-}
-/*space between item details in Fullview*/
-#item-details > div > div {
- margin-bottom: .8em !important;
-}
-
-/*View Results Journals - Item Details*/
-prm-location-items .md-list-item-text.layout-wrap.layout-row.flex {
- flex-direction: column;
-}
-prm-location-items h3, prm-location-items h4 {
- margin:10px 0 !important;
-}
-prm-location-items > md-list > md-list-item > div > div.md-list-item-text > div.weak-text > div > div > p {
- margin: 4px 18px !important;
- display: list-item;
-}
-prm-location-items > md-list > md-list-item > div > div > div.layout-wrap {
- flex-direction: row !important;
- justify-content: flex-start !important;
- max-width: 100% !important;
-}
-prm-location-items > md-list > md-list-item > div > div > div > div > prm-service-button > button {
- box-shadow: inset 0 -0.15em 0 0 #8dd8d8;
-}
-
-/* Hide "search inside" for print journals */
-.search-within-p-only { display:none }
-
-/*fullview background of the left part*/
-.md-dialog-container.fixed-container {
- background-color: #444 !important;
-}
-
-/*background color of the signin window and the fullscreen navigation*/
-md-backdrop._md-dialog-backdrop.md-opaque.md-primoExplore-theme {
- background-color: #1f1f1f !important;
-}
-/*text color of the signin window and the fullscreen navigation*/
-prm-main-menu[menu-type=full] .md-button .md-headline, prm-main-menu[menu-type=full] .overlay-menu-item .md-headline, .light-on-dark-dialog .md-button.button-as-link, .light-on-dark-dialog .md-button.button-confirm, md-dialog.light-on-dark-dialog md-list md-list-item.list-login .md-button {
- color: #fff !important;
-}
-/*hiding the Library Logo in the login window*/
-.login-header {
- display: none !important;
-}
-/*alertbar for the courier info*/
-
-.courier-info {
- margin: 0px 8px;
-}
-
-.courier-info.bar.alert-bar {
- height: unset;
- margin: 6px 8px;
- padding: .5em .5em 0.25em;
- text-align: center;
-}
-
-/*Library info icon*/
-prm-location-items-after > div > span > a > img {
- vertical-align: middle;
- max-width: 30px;
- margin: 4px 12px;
-}
-
-/*Library card Personal details display*/
-#personalDetails > md-card-content > div {
- flex-flow: column;
-}
-
-#personalDetails .md-input-has-value.layout-column {
- min-width: 400px;
-}
-
-prm-personal-info-after {
- display: flex;
-}
-
-/*Full view Resource sharing */
-
-#getit_link1_0 > div > prm-full-view-service-container > div.section-body > div {
- display: flex;
- flex-direction: column;
-}
-
-prm-opac {
- order: 1;
-}
-
-prm-alma-other-members {
- order: 2;
- display: grid;
-}
-
-alma-htgi-svc {
- order: 3;
-}
-
-primo-explore.logged-out alma-htgi-svc, primo-explore.alert alma-htgi-svc {
- order: 0 !important;
-}
-
-.medium-uppercase-bold {
- text-transform: none;
- font-size: 1em;
-}
-
-/*Full view Resource sharing expand section*/
-
-prm-alma-other-units button.layout-fill, prm-alma-other-members button.layout-fill {
- height: auto;
- min-height: auto;
-}
-
-/* Full view change sections order */
-
-#full-view-container >*:first-child {
- display: flex;
- flex-direction: column;
-}
-
-#brief {
- order: 0 !important;
-}
-
-#details {
- order: 3 !important;
-}
-
-#links {
- order: 4 !important;
-}
-
-#getit_link1_0 {
- order: 1 !important;
-}
-
-#action_list {
- order: 2 !important;
-}
-
-#virtualBrowse {
- order: 5 !important;
-}
-
-/* Change of links in left navigation bar ENG */
-
-[aria-label="Top"] {
- order: 0 !important;
-}
-
-[aria-label="Details"] {
- order: 4 !important;
-}
-
-[aria-label="Links"] {
- order: 5 !important;
-}
-
-[aria-label="Loan and request options"] {
- order: 1 !important;
-}
-
-[aria-label="Send to"] {
- order: 3 !important;
-}
-
-[aria-label="Virtual Browse"] {
- order: 6 !important;
-}
-
-[aria-label="View Online"] {
- order: 2 !important;
-}
-
-/* Change of links in left navigation bar GER */
-
-[aria-label="Top"] {
- order: 0 !important;
-}
-
-[aria-label="Details"] {
- order: 4 !important;
-}
-
-[aria-label="Links"] {
- order: 5 !important;
-}
-
-[aria-label="Ausleih- und Bestelloptionen"] {
- order: 1 !important;
-}
-
-[aria-label="Senden an"] {
- order: 3 !important;
-}
-
-[aria-label="Virtuelles Regal"] {
- order: 6 !important;
-}
-
-[aria-label="Online ansehen"] {
- order: 2 !important;
-}
-
-/* Change of links in left navigation bar FRE */
-
-[aria-label="Haut"] {
- order: 0 !important;
-}
-
-[aria-label="D&#233;tails"] {
- order: 4 !important;
-}
-
-[aria-label="Liens"] {
- order: 5 !important;
-}
-
-[aria-label="Options de pr&#234;t et de demande"] {
- order: 1 !important;
-}
-
-[aria-label="Envoyer vers"] {
- order: 3 !important;
-}
-
-[aria-label="Etag&#232;re virtuelle"] {
- order: 6 !important;
-}
-
-[aria-label="Consulter en ligne"] {
- order: 2 !important;
-}
-
-/* Change of links in left navigation bar ITA */
-
-[aria-label="Top"] {
- order: 0 !important;
-}
-
-[aria-label="Dettagli"] {
- order: 4 !important;
-}
-
-[aria-label="Link"] {
- order: 5 !important;
-}
-
-[aria-label="Opzioni di prestito e richiesta"]{
- order: 1 !important;
-}
-
-[aria-label="Invia a"] {
- order: 3 !important;
-}
-
-[aria-label="Scorri virtualmente"] {
- order: 5 !important;
-}
-
-[aria-label="Visualizza online"] {
- order: 2 !important;
-}
-
-/******************************************************************************/
-/************************************ Help Page *******************************/
-/******************************************************************************/
-#help img {
- max-width: 100%;
- height: auto;
-}
-
-img.icon_up1 {
- width: 16px;
- float: right;
- margin: 13px 2px;
-}
-
-img.icon_up2 {
- width: 10px;
- float: right;
- margin: 4px;
-}
-
-a > h3:hover {
- background-color: #eee !important;
-}
-
-
-/******************************************************************************/
-/******************************************************************************/
-/******************************************************************************/
-/********************** End of the Central Package CSS ************************/
-/******************************************************************************/
-/******************************************************************************/
-/******************************************************************************/
diff --git a/primo-explore/custom/41SLSP_EPF-test/css/custom_slsp_epfl_part.css b/primo-explore/custom/41SLSP_EPF-test/css/custom_slsp_epfl_part.css
deleted file mode 100644
index cf24e03..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/css/custom_slsp_epfl_part.css
+++ /dev/null
@@ -1,87 +0,0 @@
-/******************************************************************************/
-/******************************************************************************/
-/******************************************************************************/
-/*************************** EPFL CUSTOM COLORS *******************************/
-/******************************************************************************/
-/******************************************************************************/
-/******************************************************************************/
-
-/* This file contains the EPFL part of the custom package. The SLSP part is in
- the custom_slsp.css file. */
-
-/*****************This two entries are the background of the primary color*******************/
-
-prm-primary-bg, prm-atoz-search-bar, prm-browse-search-bar, prm-collection-gallery-header .collection-header-inner, prm-search-bar, prm-newspapers-search-bar,
-prm-spinner.overlay-cover.light-on-dark:after, prm-tags-search-bar, prm-tree-nav prm-spinner .diamond, .prm-primary-bg, md-checkbox.md-checked .md-icon,
-md-tabs md-ink-bar, md-radio-button.md-checked .md-on, button.switch-to-simple, .md-button.button-confirm {
- background-color: #ff0000 !important;
-}
-
-/* Suppression configuration master template */
-prm-request-services .md-button.button-as-link{
- background-color: unset !important;
-}
-
-md-tabs.tabs-as-app .back-button {
- background-color: #777 !important;
- line-height: 24px !important;
- min-height: 24px !important;
- margin: 4px 0 !important;
-}
-
-@media (max-width: 599px) {
- prm-topbar .top-nav-bar {
- border-color: #ff0000 !important;
- }
-}
-
-/*.search-actions button{
- background-color: #fff !important;
- color: #222;
-} */
-
-
-/*****************This entry is the mouse over background of the links and buttons*******************/
-md-card.prm-primary-bg.psfooter > md-card-content a:hover, md-icon.ps_icon:hover, a.ps_link:hover, a.ps_link.legal:hover, span.legal a:hover, button.switch-to-advanced:hover,
-button.switch-to-simple:hover, .md-button.button-confirm:hover {
- background-color: #ae0010 !important;
-}
-
-.md-button.button-as-link:hover:not([disabled]){
- background-color: unset !important;
-}
-
-md-tabs.tabs-as-app .back-button:hover:not([disabled]){
- background-color: #555 !important;
-}
-
-/*****************This two entries are the font color of the primary color*******************/
-.prm-primary-bg, prm-atoz-search-bar, prm-browse-search-bar, prm-collection-gallery-header .collection-header-inner, prm-newspapers-search-bar,
-prm-spinner.overlay-cover.light-on-dark:after, prm-tags-search-bar, prm-tree-nav prm-spinner .diamond, .prm-primary-bg, md-checkbox.md-checked .md-icon:after, .md-button.switch-to-advanced, button.switch-to-simple,
-span.legal, span.legal > a, a.ps_link.legal, .ps_icon, md-card.prm-primary-bg.psfooter > md-card-content a, .md-button.button-confirm, md-tabs.tabs-as-app .back-button, prm-request-services .md-button.button-as-link {
- color: #fff !important;
- }
-
-
-button.switch-to-advanced.zero-margin.button-with-icon.md-button.md-primoExplore-theme.md-ink-ripple {
- border-color: #c1c1c1 !important;
-}
-
-
-
-/*****************This two entries are the background of the secondary color*******************/
-
-.bar.alert-bar, .classic-input .search-scope, .prm-alert-bg {
- background-color: #ffcccc !important;
-}
-
-.text-highlight, mark {
- box-shadow: inset 0 -0.15em 0 0 #ff0000 ;
-}
-
-
-/*****************This entry is the font color of the secondary color*******************/
-
-.bar.alert-bar, .classic-input .search-scope, .prm-alert-bg, .bar prm-authentication .md-button, button.dismiss-alert-button, div.courier-info > span a {
- color: #111111 !important;
-}
diff --git a/primo-explore/custom/41SLSP_EPF-test/css/databases.css b/primo-explore/custom/41SLSP_EPF-test/css/databases.css
deleted file mode 100644
index 2b21f3c..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/css/databases.css
+++ /dev/null
@@ -1,17 +0,0 @@
-/*********************************/
-/* CSS pour les bases de données */
-/*********************************/
-
-prm-databases-categorize h2,
-prm-databases-categorize prm-tree-nav{
- width: 220px;
- max-width: 220px;
-}
-
-@media only screen and (max-width: 1100px){
- prm-databases-categorize h2,
- prm-databases-categorize prm-tree-nav{
- width: 180px !important;
- max-width: 180px !important;
- }
-}
diff --git a/primo-explore/custom/41SLSP_EPF-test/css/epfl_colors.css b/primo-explore/custom/41SLSP_EPF-test/css/epfl_colors.css
deleted file mode 100644
index da4436f..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/css/epfl_colors.css
+++ /dev/null
@@ -1,61 +0,0 @@
-/*****************Selected text color*******************/
-
-::selection {
- background: #ffbe8f; /* WebKit/Blink Browsers */
-}
-::-moz-selection {
- background: #ffbe8f; /* Gecko Browsers */
-}
-
-/*****************This entry remove default color from various texts*******************/
-
-md-dialog.light-on-dark-dialog .md-list[class$="-line"] md-list-item .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog .md-list[class$="-line"] md-list-item .md-list-item-text h3, md-dialog.light-on-dark-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3, md-dialog.light-on-dark-dialog .md-list md-list-item .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog .md-list md-list-item .md-list-item-text h3, md-dialog.light-on-dark-dialog .md-list md-list-item > .md-no-style .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog .md-list md-list-item > .md-no-style .md-list-item-text h3, md-dialog.light-on-dark-dialog md-list md-list-item .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog md-list md-list-item .md-list-item-text h3, md-dialog.light-on-dark-dialog md-list md-list-item > .md-no-style .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog md-list md-list-item > .md-no-style .md-list-item-text h3, md-button.arrow-link-button md-dialog.light-on-dark-dialog .button-content, md-dialog.light-on-dark-dialog .md-button.arrow-link-button .button-content, md-dialog.light-on-dark-dialog a{
- color: #ffcccc !important;
-}
-
-/*Bouton pour confirmer une demande*/
-prm-request button.md-button.button-confirm, span[translate="fulldisplay.locations.showmore"], .courier-info .button-confirm {
- background-color: #080 !important;
- border-radius: 2px;
-}
-prm-request button.md-button.button-confirm:hover, span[translate="fulldisplay.locations.showmore"]:hover, .courier-info .button-confirm:hover {
- background-color: #050 !important;
-}
-
-span[translate="fulldisplay.locations.showmore"]{
- line-height: 24px !important;
- padding: 5px 8px;
- margin: 4px 0 !important;
- color: white;
- border-radius: 2px;
-}
-/* Suppression du fond du bouton + d'exemplaires */
-prm-location-items .md-button.button-link:hover:not([disabled]){
- background-color: transparent !important;
-}
-
-button[ng-hide="!$ctrl.currLoc.isMore"] {
- background-color: transparent !important;
-}
-/* Fix SLSP pour la couleur du bouton secondaire */
-.bar prm-authentication .md-button:hover:not([disabled]), button.dismiss-alert-button:hover{
- background-color:#ffdddd !important;
- border: 1px solid #ae0010;
-}
-
-/* Fix SLSP pour le bouton ""élargir" */
-button.item-expand-button.md-button.md-primoExplore-theme.md-ink-ripple{
- background-color: #D3D3D3!important;
-}
-
-/*****************This entry remove default color from various forms*******************/
-
-.md-input-color-underline, .new-result-item .list-item-count, .prm-secondary-bg.prm-hue1,
-md-input-container.empty-select-on-init:not(.md-input-focused) .md-input-container-dummy > .md-select-dummy md-select-value::after,
-md-input-container.empty-select-on-init:not(.md-input-focused) md-select md-select-value::after, md-input-container::after,
-md-progress-linear[md-mode="indeterminate"].header-progress-bar .prm-hue1.md-bar, md-radio-button.md-checked ._md-on,
-md-radio-button.md-checked .md-on, md-tabs md-ink-bar, prm-tags-list .md-chips ._md-chip-input-container::after,
-prm-tags-list .md-chips .md-chip-input-container::after, prm-tags-list md-chips ._md-chip-input-container::after,
-prm-tags-list md-chips .md-chip-input-container::after {
- background-color: #ff0000 !important;
-}
diff --git a/primo-explore/custom/41SLSP_EPF-test/css/footer.css b/primo-explore/custom/41SLSP_EPF-test/css/footer.css
deleted file mode 100644
index 0602f89..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/css/footer.css
+++ /dev/null
@@ -1,16 +0,0 @@
-
-md-card.psfooter, md-card.psfooter-legal,
-md-card.psfooter > md-card-content.prm-primary-bg, md-card.psfooter-legal > md-card-content.prm-primary-bg,
-md-card.prm-primary-bg.psfooter > md-card-content a:hover, md-card.prm-primary-bg.psfooter-legal > md-card-content a:hover{
- background-color: #d6d6d6 !important;
-}
-
-md-card.psfooter md-card-content, md-card.psfooter-legal md-card-content,
-md-card.prm-primary-bg.psfooter > md-card-content a, md-card.prm-primary-bg.psfooter-legal > md-card-content a,
-md-card.prm-primary-bg.psfooter-legal span.legal {
- color: #3a3a3a !important;
-}
-
-md-card.prm-primary-bg.psfooter > md-card-content a:hover, md-card.prm-primary-bg.psfooter-legal > md-card-content a:hover {
- color: #ff0000 !important;
-}
diff --git a/primo-explore/custom/41SLSP_EPF-test/css/homepage.css b/primo-explore/custom/41SLSP_EPF-test/css/homepage.css
deleted file mode 100644
index e5309b3..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/css/homepage.css
+++ /dev/null
@@ -1,28 +0,0 @@
-/* Couleur rouge pour les logos téléphone, mail, etc. */
-.puce{
- text-decoration: none !important;
-}
-.puce > span:first-child{
- color: #ff0000;
- fill: #ff0000;
-}
-h1.md-headline{
- font-size: 36px;
- line-height: 42px;
-}
-h2.md-headline{
- font-size: 28px;
- line-height: 34px;
-}
-md-content.epfl-row {
- justify-content: center;
-}
-.epfl-row md-card-title{
- flex: none;
-}
-.epfl-row md-card {
- height: 100%;
-}
-.epfl-social a{
- text-decoration: none !important;
-}
diff --git a/primo-explore/custom/41SLSP_EPF-test/css/login.css b/primo-explore/custom/41SLSP_EPF-test/css/login.css
deleted file mode 100644
index d69a52d..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/css/login.css
+++ /dev/null
@@ -1,9 +0,0 @@
-/* Augmente l'espace pour réduire la probabilité de clic sur le lien */
-prm-login md-list md-list-item:first-child p[translate="parallel.login.description1"]{
- margin-top:15px !important;
-}
-
-/* Réduit la taille du lien Alma */
-prm-login md-list md-list-item:last-child {
- font-size: x-small !important;
-}
diff --git a/primo-explore/custom/41SLSP_EPF-test/css/prmAccountLink.css b/primo-explore/custom/41SLSP_EPF-test/css/prmAccountLink.css
deleted file mode 100644
index 25c5181..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/css/prmAccountLink.css
+++ /dev/null
@@ -1,8 +0,0 @@
-prm-account-links-after div {
- display: flex;
- align-items: center;
- margin-top: 10px;
-}
-prm-account-links-after img{
- margin-right: 5px;
-}
diff --git a/primo-explore/custom/41SLSP_EPF-test/css/prmAlmaviewit.css b/primo-explore/custom/41SLSP_EPF-test/css/prmAlmaviewit.css
deleted file mode 100644
index 3d2c020..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/css/prmAlmaviewit.css
+++ /dev/null
@@ -1,9 +0,0 @@
-.feedbacklink md-icon{
- height: 20px;
- width: 20px;
- min-height: 20px;
- min-width: 20px;
-}
-prm-alma-viewit-after .bar{
- height: auto;
-}
diff --git a/primo-explore/custom/41SLSP_EPF-test/css/prmLocation.css b/primo-explore/custom/41SLSP_EPF-test/css/prmLocation.css
deleted file mode 100644
index 6a0ff03..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/css/prmLocation.css
+++ /dev/null
@@ -1,5 +0,0 @@
-
-/* Empêcher les retours à la ligne pour les cotes */
-span[ng-if="$ctrl.location.callNumber"]{
- white-space: nowrap
-}
diff --git a/primo-explore/custom/41SLSP_EPF-test/css/prmRequest.css b/primo-explore/custom/41SLSP_EPF-test/css/prmRequest.css
deleted file mode 100644
index 1ebe3ea..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/css/prmRequest.css
+++ /dev/null
@@ -1,15 +0,0 @@
-/*****************This entry adapt the message fee*******************/
-
-.feemsg {
- background-color: #ffcccc;
- border-radius: 3px;
- padding: 8px;
-}
-
-.feemsg>div {
- margin-left: 10px;
-}
-
-.bigfont {
- font-size: 20px;
-}
diff --git a/primo-explore/custom/41SLSP_EPF-test/css/prmSearchResultAvailabilityLine.css b/primo-explore/custom/41SLSP_EPF-test/css/prmSearchResultAvailabilityLine.css
deleted file mode 100644
index e965d43..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/css/prmSearchResultAvailabilityLine.css
+++ /dev/null
@@ -1,27 +0,0 @@
-/* Empêcher que le blanc de l'effet hover masque la notice */
-prm-search-result-availability-line-after {
- z-index: 8;
- position: relative;
-}
-.pdf_btn prm-icon{
- min-width: 22px;
- min-height: 22px;
- width: 20px;
- height: 20px;
- /*color: #ff2116;*/
-}
-.pdf_btn {
- margin-top: 15px;
-}
-.pdf_btn a{
- padding: 5px;
- border: 2px rgb(40, 167, 69) solid;
- background-color: rgba(40, 167, 69, .2);
- border-radius: 4px;
- color: rgb(58, 58, 58);
-}
-.pdf_btn:hover a{
- background-color: rgba(40, 167, 69, .4);
- border-radius: 4px;
- color: black;
-}
diff --git a/primo-explore/custom/41SLSP_EPF-test/css/prmSearchbar.css b/primo-explore/custom/41SLSP_EPF-test/css/prmSearchbar.css
deleted file mode 100644
index d9ee590..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/css/prmSearchbar.css
+++ /dev/null
@@ -1,49 +0,0 @@
-
-/* Bouton de la recherche avancée */
-.search-switch-buttons span{
- font-variant: small-caps;
- font-size: 1.15em;
-}
-.search-switch-buttons button{
- border: none !important;
-}
-
-/* Message d'alerte */
-prm-search-bar>div {
- height: inherit !important;
- min-height: inherit !important;
-}
-prm-search-bar-after>div {
- background-color: #fff !important;
- margin-top: 20px;
- padding: 10px 15px;
-}
-prm-search-bar-after p {
- margin: 0 12px;
-}
-.info-symbol::before {
- content: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 34 34' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Crect fill='%234a90e2' width='34' height='34' rx='4'/%3E%3Cpath d='M17 25V15M17 13V9' stroke='%23FFF' stroke-width='4'/%3E%3C/g%3E%3C/svg%3E");
- width: 24px;
- height: 24px;
- position: absolute;
- display: inline-block;
- top: 50%;
- left: .6rem;
- width: 1.6rem;
- height: 1.6rem;
- margin-top: -.8rem;
-}
-.info-symbol {
- position: relative;
-}
-.info-symbol div {
- margin-left: 50px;
-}
-prm-search-bar-after p {
- padding: .25em 0 .25em;
- margin: 0;
-}
-prm-search-bar-after a {
- color: black;
- text-decoration: underline;
-}
diff --git a/primo-explore/custom/41SLSP_EPF-test/css/prmServiceButton.css b/primo-explore/custom/41SLSP_EPF-test/css/prmServiceButton.css
deleted file mode 100644
index 93067c6..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/css/prmServiceButton.css
+++ /dev/null
@@ -1,54 +0,0 @@
-/* Mise en évidence des boutons pour les demandes de service */
-/* span[translate="AlmaRequest"] {
- text-decoration: underline #0B0 3px;
- padding: 2px 6px;
-}
-span[translate="AlmaRequest"]:hover{
- background-color: #050 !important;
- text-decoration: none;
- color: white;
- border-radius: 2px;
-} */
-/* span[translate="nui.request.request"]{
- display: none;
-} */
-
-/* Soulignement des boutons proposant un service */
-prm-service-button button, .greenbutton {
- padding-left: 0px !important;
- padding-right: 0px !important;
-}
-prm-service-button button > span, .greenbutton>span {
- background-color: #080 !important;
- color: white !important;
- padding: 2px 6px;
- border-radius: 2px;
-}
-prm-service-button button > span:hover, .greenbutton>span:hover {
- background-color: #050 !important;
-}
-prm-location-items > md-list > md-list-item > div > div > div > div > prm-service-button > button {
- box-shadow: unset !important;
-}
-/* Alignement de l'intitulé "Demandes" */
-prm-request-services h3.section-title{
- top: 0px;
-}
-
-/* Alignement central des boutons de demande */
-prm-request-services .labeled-block {
- align-items: center;
-}
-
-/* Suppression du sous-titre demande
-span[translate="nui.request.request"]{
- display: none;
-}*/
-
-/* Suppression du bouton PEB
-span[translate="AlmaResourceSharing"]{
- display: none;
-}
-.links-block .separated-block-item::after{
- content: none !important;
-} */
diff --git a/primo-explore/custom/41SLSP_EPF-test/css/prmTopbar.css b/primo-explore/custom/41SLSP_EPF-test/css/prmTopbar.css
deleted file mode 100644
index 327399a..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/css/prmTopbar.css
+++ /dev/null
@@ -1,60 +0,0 @@
-/* Crée la place pour le titre et le sous-titre */
-prm-topbar {
- height: 150px !important;
-}
-prm-main-menu[menu-type="menu"],
-.top-nav-bar,
-prm-search-bookmark-filter
-{
- max-height: 60px !important;
- height: 60px !important;
- min-height: auto !important;
-}
-
-/* Mise en forme du titre et sous-titre */
-.main-title{
- padding: .85em;
- background-color: white;
-}
-.main-title h1{
- font-size: 2em !important;
- margin-bottom: 0;
-}
-.main-title h1 > a{
- color: black;
-}
-prm-main-menu[menu-type="menu"] #mainMenu>div {
- border-bottom: solid #ddd 1px;
-}
-.main-title h2{
- font-size: 1.2em !important;
- font-weight: bold;
-}
-
-/* Adapte le sous-titre lorsque l'écran est relativement petit */
-@media only screen and (max-width: 660px){
- .main-title h2{
- font-size: 1.1em !important;
- }
-}
-
-/* Menu sur les petits écrans */
-prm-main-menu[menu-type="full"] .md-button .md-headline{
- color: #ff9999 !important;
-}
-prm-main-menu .md-subhead{
- display: none;
-}
-.__sm prm-main-menu[menu-type="full"] .settings-container + md-divider{
- margin-top: 6em !important;
-}
-
-/* Menu sur grand écran */
-prm-main-menu[menu-type="menu"] .button-over-dark, prm-topbar .md-button:not(.disable-hover){
- color: #222 !important;
-}
-
-/* Petit triangle du menu */
-prm-user-area-expandable .button-with-menu-arrow:hover .menu-arrow:hover:not([disabled]){
- background-color: inherit;
-}
diff --git a/primo-explore/custom/41SLSP_EPF-test/css/prmTreeNav.css b/primo-explore/custom/41SLSP_EPF-test/css/prmTreeNav.css
deleted file mode 100644
index 9d71e5a..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/css/prmTreeNav.css
+++ /dev/null
@@ -1,29 +0,0 @@
-prm-databases-categorize button.is-selected{
- color: red !important;
-}
-prm-databases-categorize button:hover{
- background-color: #aaa !important;
- color: inherit !important;
-}
-prm-databases-categorize button.is-selected:hover{
- color: red !important;
-}
-prm-tree-nav md-list md-list-item::after{
- opacity: 1 !important;
-}
-prm-tree-nav md-list md-list-item::after{
- opacity: .3 !important;
-}
-prm-databases-categorize h2,
-prm-databases-categorize prm-tree-nav{
- width: 220px;
- max-width: 220px;
-}
-
-@media only screen and (max-width: 1100px){
- prm-databases-categorize h2,
- prm-databases-categorize prm-tree-nav{
- width: 180px !important;
- max-width: 180px !important;
- }
-}
diff --git a/primo-explore/custom/41SLSP_EPF-test/features.json.txt b/primo-explore/custom/41SLSP_EPF-test/features.json.txt
deleted file mode 100644
index b6892d6..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/features.json.txt
+++ /dev/null
@@ -1 +0,0 @@
-{"prm-explore-footer-after":["prm-explore-footer-after-app-store-generated"],"prm-alma-viewit-items-after":["prm-alma-viewit-items-after-app-store-generated","prm-alma-viewit-items-after-app-store-generated"]}
\ No newline at end of file
diff --git a/primo-explore/custom/41SLSP_EPF-test/html/README.md b/primo-explore/custom/41SLSP_EPF-test/html/README.md
deleted file mode 100644
index 78ee724..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/html/README.md
+++ /dev/null
@@ -1,14 +0,0 @@
-# The Primo New UI Customization Workflow Development Environment
-
-
-##html documentation
-
- - In this folder you will find static html files in their OTB state
- - You can edit the html to comply with your library requirements
- - Note that you can use Angular Material directives in your html:
- > https://material.angularjs.org/latest/
-
-
-
-
-
diff --git a/primo-explore/custom/41SLSP_EPF-test/html/email/email_en.tmpl.html b/primo-explore/custom/41SLSP_EPF-test/html/email/email_en.tmpl.html
deleted file mode 100644
index a01ece6..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/html/email/email_en.tmpl.html
+++ /dev/null
@@ -1,109 +0,0 @@
-<!-- HEADER -->
-<table style="width: 600px;
- display: block !important;
- max-width: 600px !important;
- margin: 0 auto !important;
- clear: both !important;
- border-spacing: 0 !important;
- padding: 0 !important;
- border-top-left-radius: 15px !important;
- border-top-right-radius: 15px !important;" align="center" bgcolor="#fff"
- border="0" cellpadding="0"
- cellspacing="0">
- <tbody>
- <tr>
- <td style="cursor: default;
- padding: 1em 0.5em;">
- <prm-logo style="height: 66px;"></prm-logo>
- </td>
- </tr>
- </tbody>
-</table>
-
-<!-- BODY -->
-<table style="width: 600px;
- display: block !important;
- max-width: 600px !important;
- margin: 0 auto !important;
- clear: both !important;
- border-spacing: 0 !important;
- padding: 0 !important;" align="center" border="0" cellpadding="0"
- cellspacing="0">
- <tr>
- <td>
- <div translate="nui.email.institutionNote"></div>
- </td>
- </tr>
- <tr>
- <!--<td></td>-->
- <td style="display: block !important;
- max-width: 600px !important;
- margin: 0 auto !important;
- clear: both !important;
- padding: 0 !important;" bgcolor="#f3f3f3">
-
- <div style=" padding: 0 !important;
- max-width: 600px;
- margin: 0 auto;
- display: block;">
- <table style="width: 600px;
- display: block !important;
- max-width: 600px !important;
- margin: 0 auto !important;
- clear: both !important;
- border-spacing: 0 !important;
- padding: 0 !important;">
- <tr ng-if="$ctrl.parentCtrl.note">
- <td style="padding: 15px 10px;
- font-style: italic;">
- <b translate="email.note"></b> {{$ctrl.parentCtrl.note}}
- </td>
- </tr>
- </table>
- <table id="email-template-items" style="background-color: #f3f3f3; width: 100%;">
- <tr ng-if="$ctrl.parentCtrl.fullViewLoaded"
- ng-repeat="item in $ctrl.parentCtrl.delayedItems">
- <td style="padding: 10px 15px; margin: 2px; cursor: default; width: 100%;"
- bgcolor="white">
- <prm-brief-result-container style="width: 100%;"
- [item]="item"
- display-mode="email"
- (load-email-template-event)="$ctrl.parentCtrl.popItem()">
- </prm-brief-result-container>
- </td>
- </tr>
- </table>
- </div><!-- /content -->
-
- </td>
- <!--<td></td>-->
- </tr>
-</table>
-<!-- /BODY -->
-
-<!-- FOOTER -->
-<table class="footer-wrap" align="center" border="0" cellpadding="0" cellspacing="0">
- <tr>
- <td></td>
- </tr>
-</table>
-<!-- /FOOTER -->
-
-<!-- DISCLAIMER MESSAGE -->
-<table style="width: 600px;
- display: block !important;
- max-width: 600px !important;
- margin: 0 auto !important;
- clear: both !important;
- border-spacing: 0 !important;
- padding: 0 !important;
- border: 2px solid red;" align="center" border="0" cellpadding="0"
- cellspacing="0">
- <tbody>
- <tr>
- <td align="center">
- <p style="margin: 0.5em;" translate="nui.email.disclaimer"></p>
- </td>
- </tr>
- </tbody>
-</table>
diff --git a/primo-explore/custom/41SLSP_EPF-test/html/help/help_de.html b/primo-explore/custom/41SLSP_EPF-test/html/help/help_de.html
deleted file mode 100644
index 724f1c9..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/html/help/help_de.html
+++ /dev/null
@@ -1,503 +0,0 @@
-
-<md-content id="help">
- <div class="ps_content md-padding" layout-gt-sm="row" layout-align="center center">
- <div flex="100" flex-md="100" flex-lg="80" flex-xl="60" layout="column">
- <md-card class="default-card">
- <md-card-title>
- <md-card-title-text>
- <h1 class="md-headline"><b>swisscovery Help Page</b></h1>
- </md-card-title-text>
- </md-card-title>
-
- </md-card>
-
- <md-card class="default-card">
-
- <md-card-content>
- <h4>Einf&uuml;hrung:</h4>
- <p>Sehr geehrte Benutzerin, sehr geehrter Benutzer,</p>
- <p>herzlich willkommen auf der Hilfeseite von swisscovery.</p>
- <p>swisscovery ist das Suchportal des <a href="https://slsp.ch/de" target="_blank">Swiss Library Service Platform Network (SLSP)</a>. . Auf dieser Seite finden Sie n&uuml;tzliche Informationen dar&uuml;ber, wie Sie swisscovery verwenden und wie das SLSP-Netzwerk organisiert ist. </p>
- <p>Achtung: Diese Hilfeseite wurde f&uuml;r das gesamte SLSP-Netzwerk erstellt! Das bedeutet, dass einige Services auf dieser speziellen Bedienoberfl&auml;che m&ouml;glicherweise nicht verf&uuml;gbar sind. Bitte beachten Sie, dass die Startseite oder die Volltitelanzeige des Datensatzes von Institution zu Institution anders aussehen k&ouml;nnen als auf dieser Hilfeseite.</p>
- </md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="index">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Index</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <h3><a href="#general">Allgemein</a></h3>
- <ul>
- <!--<li><a href="#gen1">Ein kurzes Einf&uuml;hrungsvideo zu swisscovery</a></li>-->
- <li><a href="#gen2">SLSP: Die Swiss Library Service Platform</a></li>
- <li><a href="#gen3">SLSP-Netzwerk</a></li>
- <li><a href="#gen4">Ein Konto erstellen</a></li>
- <li><a href="#gen5">Bibliotheksausweis</a></li>
- <li><a href="#gen6">Anmelden und Abmelden</a></li>
- <li><a href="#gen7">Mein Konto</a></li>
- <li><a href="#gen8">Konto aktualisieren </a></li>
- <li><a href="#gen9">Sprache einstellen</a></li>
- </ul>
- <h3><a href="#online">Online-Ressourcen</a></h3>
- <ul>
- <li><a href="#onl1">Online-Ressourcen</a></li>
- <li><a href="#onl2">Online-Services f&uuml;r Mitglieder einer Universit&auml;t</a> </li>
- <li><a href="#onl3">Online-Services f&uuml;r Personen, die nicht Mitglied einer Universit&auml;t sind </a></li>
- <li><a href="#onl4">Open Access </a></li>
- <li><a href="#onl5">Nationale Lizenzen </a></li>
- </ul>
- <h3><a href="#borrow">Fernleihe-/Bestelldokumente</a></h3>
- <ul>
- <li><a href="#bor1">Fernleihe-/Bestelldokumente </a></li>
- <li><a href="#bor2">Fernleihen ausserhalb des SLSP-Netzwerks</a></li>
- <li><a href="#bor3">Ausleihfristen verl&auml;ngern</a></li>
- <li><a href="#bor4">Liste der fr&uuml;heren Ausleihen </a></li>
- </ul>
- <h3><a href="#search">Suchen</a></h3>
- <ul>
- <li><a href="#sea1">SLSP-Suchprofile </a></li>
- <li><a href="#sea2">Einfache Suche</a></li>
- <li><a href="#sea3">Erweiterte Suche </a></li>
- <li><a href="#sea4">Nach einer Wortgruppe suchen</a></li>
- <li><a href="#sea5">Mit Platzhaltern suchen </a></li>
- <li><a href="#sea6">Boolesche Operatoren zum Erweitern oder Eingrenzen einer Suche verwenden</a></li>
- <li><a href="#sea7">Meine Favoriten </a></li>
- <li><a href="#sea8">Suchhistorie</a></li>
- <li><a href="#sea9">Suchen speichern und verwalten </a></li>
- <!--<li><a href="#sea10">Citation Linker </a></li>-->
- </ul>
- <h3><a href="#display">Ergebnisse anzeigen</a></h3>
- <ul>
- <li><a href="#dis1">Ergebnisse eingrenzen </a></li>
- <li><a href="#dis2">Ergebnisliste: Sortieren </a></li>
- <li><a href="#dis3">Ergebnisliste: Versionen</a> </li>
- <li><a href="#dis4">Einzelne Titel anzeigen </a></li>
- </ul>
- <h3><a href="#questions">Fragen?</a></h3>
- <ul>
- <li><a href="#que1">Kontaktangabe</a></li>
- </ul>
- </md-card-content>
- </md-card>
-
- <md-card class="default-card" id="general">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Allgemein </h2></a>
- </md-card-title-text>
- </md-card-title>
- <!--<md-card-content id="gen1">
- <a href="#index"><h3>Ein kurzes Einf&uuml;hrungsvideo zu swisscovery<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3></a>
- <div class="resp-container">
- <iframe class="resp-iframe" src="https://www.youtube.com/embed/1fZwnu_nzPU" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
- </div>
- </md-card-content>r-->
- <md-card-content id="gen2">
- <a href="#index">
- <h3>SLSP: Die Swiss Library Service Platform<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Die Swiss Library Service Platform ist zusammen mit dem ihr untergeordneten Konsortium der Schweizer Hochschulbibliotheken mit &uuml;ber <a href="https://slsp.ch/libraries" target="_blank">450 Mitgliedern</a> das gr&ouml;sste Netzwerk von akademischen und Forschungsbibliotheken in der Schweiz. Sie wurde von Bibliotheken f&uuml;r Bibliotheken ins Leben gerufen und ist ein gemeinsames Projekt, mit dem landesweit eine Reihe von Services angeboten werden sollen, z. B. ein gemeinsamer mehrsprachiger Katalog mit wissenschaftlichen Informationen, ein gemeinsamer Vertreter f&uuml;r die Lizenzierung von E-Ressourcen und ein leistungsf&auml;higes Kuriernetzwerk f&uuml;r die gemeinsame Nutzung physischer Exemplare.</p>
- <p>SLSP stellt einen innovativen und bedeutenden Schritt in Richtung der digitalen Entwicklung der wissenschaftlichen Bibliotheken in der Schweiz dar. Durch die Verwaltung des cloud-gest&uuml;tzten Alma-Systems f&uuml;hrt die Organisation wissenschaftliche Informationen zusammen, die in Bibliotheken in der ganzen Schweiz gespeichert sind. Indem sie diese Informationen zug&auml;nglich und leicht auffindbar macht, tr&auml;gt SLSP zu wissenschaftlichen Entdeckungen und Fortschritten bei.</p>
-</md-card-content>
- <md-card-content id="gen3">
- <a href="#index">
- <h3>SLSP-Netzwerk<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>Das SLSP-Netzwerk ist in mehrere &laquo;Zonen&raquo; unterteilt. SLSP selbst verwaltet die Netzwerkzone (NZ) namens swisscovery, w&auml;hrend die Bibliotheken in 29 &laquo;Institutionsbereiche&raquo; - bzw. "Institution Zones" (IZ) aufgeteilt sind. </p>
- <p>Eine IZ ist eine Gruppe von Bibliotheken mit &auml;hnlichen Bed&uuml;rfnissen. Die IZ ist eine Schl&uuml;sselkomponente im SLSP-System und stellt eine Abteilung dar, die Synergien freisetzt und Effizienz steigert. In SLSP unterscheiden wir zwei Arten von IZs: Zonen mit einzelnen Einheiten und Zonen mit gemischten Einheiten. </p>
- <p>In einer Zone mit einer einzelnen Einheit ist der Grossteil der Bibliotheken rechtlich mit einer Haupteinheit (z. B. einer Universit&auml;t) verbunden. In einer Zone mit gemischten Einheiten sind Bibliotheken rechtlich mit verschiedenen Einheiten verbunden (z. B. werden sie aus geografischen &Uuml;berlegungen heraus zusammengelegt).</p>
- <p>Um auf die Ressourcen der SLSP-Mitglieder zugreifen zu k&ouml;nnen, m&uuml;ssen die Benutzende auf die Bedienoberfl&auml;chen, die sogenannten &laquo;Views&raquo;, zugreifen. In SLSP haben wir eine View f&uuml;r die Netzwerkzone (NZ), eine View f&uuml;r jede IZ und mehrere Views f&uuml;r einzelne Bibliotheken vorbereitet. </p>
- <p>Jede View hat ihre spezifischen Suchbereiche, die unterschiedliche Ergebnisse liefern, wenn sie f&uuml;r die Suche verwendet werden. Die Netzwerkzone in swisscovery enth&auml;lt alle Datens&auml;tze, die aus den SLSP-Bibliotheken stammen, einige allgemeine externe Ressourcen (z. B. e-rara, ZORA usw.) und den Central Discovery Index (CDI). Die IZ-View oder Bibliotheks-View enth&auml;lt den lokalen Bestand der IZ / Bibliothek, allgemeine und lokale externe Ressourcen und den CDI-Index. </p>
- <p>Central Discovery Index (CDI): ist eine zentrale Datenbank mit mehr als 3 Milliarden Datens&auml;tzen; z. B.: Zeitschriftenartikel, E-Books, Dissertationen, Konferenzberichte usw. </p>
- <img width="935" height="665" src="custom/41SLSP_EPF-prod/img/help/swisscovery_ger.png" />
- <p>Unter dem folgenden <a href="https://slsp.ch/libraries" target="_blank">Link</a> finden Sie die Topologie des SLSP-Netzwerks, eine umfassende Liste aller SLSP-Mitgliedsbibliotheken, aufgeteilt nach IZ, sowie den Link zu jeder vorhandenen View unseres Netzwerks. F&uuml;r jede IZ und Bibliothek finden Sie die Adresse, die Kontaktinformationen und die angebotenen Services. </p>
-</md-card-content>
- <md-card-content id="gen4">
- <a href="#index">
- <h3>Ein Konto erstellen<img class="icon_up2" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Um sich in SLSP zu registrieren, gehen Sie bitte zun&auml;chst auf: <a href="https://registration.slsp.ch" target="_blank">https://registration.slsp.ch</a></p>
- <p>Nach dem Start des Registrierungsprozesses werden Sie aufgefordert, sich mit einem SWITCH edu-ID-Benutzungskonto anzumelden. Wenn Sie bereits ein SWITCH edu-ID-Benutzungskonto haben, melden Sie sich einfach an, um mit der Registrierung fortzufahren. Falls Sie Ihr Passwort noch nicht haben, finden Sie einen Link zum Zur&uuml;cksetzen des Passworts auf der Anmeldeseite.</p>
- <p>Wenn Sie noch kein SWITCH edu-ID-Benutzungskonto haben, k&ouml;nnen Sie auf der Anmeldeseite auf &laquo;Konto erstellen&raquo; klicken. </p>
- <p><strong>Hinweis:</strong> Wenn Sie an einer Universit&auml;t studieren, ist es m&ouml;glich, dass Sie schon einmal in SLSP registriert waren. In diesem Fall erscheint eine Meldung und Sie werden zum Anmeldebereich der View weitergeleitet.</p>
-</md-card-content>
- <md-card-content id="gen5">
- <a href="#index">
- <h3>Bibliotheksausweis<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Mit Ihrem Bibliotheksausweis haben Sie Zugang zu einer Reihe von Services, Sie k&ouml;nnen zum Beispiel ein physisches Exemplar in einer Bibliothek ausleihen. </p>
- <p>Wenn Sie bereits einen Bibliotheksausweis des <a href="https://www.nb.admin.ch/snl/de/home/dienstleistungen/ausleihe-benutzung/bibliopass.html" target="_blank">BibliOpass-Netzwerks</a> besitzen, k&ouml;nnen Sie die Bibliotheksausweisnummer optional bei der Registrierung bei SLSP oder sp&auml;ter angeben. Einige Campus-/Universit&auml;ts-/Studentenausweise sind auch als Bibliotheksausweis g&uuml;ltig. Einige Universit&auml;ten stellen ihren Benutzenden auch die Bibliotheksausweisnummer zur Verf&uuml;gung. Welche Bibliotheksausweisnummern mit einem SLSP-Konto verkn&uuml;pft sind, wird w&auml;hrend des Registrierungsprozesses bei SLSP angezeigt (siehe Kapitel &laquo;Ein Konto erstellen&raquo;). </p>
- <p>Wenn Sie keinen physischen Bibliotheksausweis besitzen, k&ouml;nnen Sie Ihre Bibliothek bitten, Ihnen einen auszustellen.</p>
-</md-card-content>
- <md-card-content id="gen6">
- <a href="#index">
- <h3>Anmelden und Abmelden<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>In swisscovery: Klicken Sie auf &laquo;Anmelden&raquo; - w&auml;hlen Sie Ihre IZ - klicken Sie auf &laquo;SWITCH edu-ID&raquo; - geben Sie Ihre E-Mail-Adresse und Ihr Passwort ein - klicken Sie auf &laquo;Anmelden&raquo; </p>
- <p>In einer IZ / Bibliotheks-View: Klicken Sie auf &laquo;Anmelden&raquo; - klicken Sie auf &laquo;SWITCH edu-ID&raquo; - geben Sie Ihre E-Mail-Adresse und Ihr Passwort ein - klicken Sie auf &laquo;Anmelden&raquo;</p>
- <img width="460" height="74" src="custom/41SLSP_EPF-prod/img/help/signin_ger.png" />
- <p>F&uuml;r die folgenden Schritte m&uuml;ssen Sie angemeldet sein:</p>
- <ul>
- <li>Dokumente anfordern (Ausleihe, Digitalisierungsauftrag, ILL)</li>
- <li>Ihre Ausleihen und Vormerkungen von Bibliotheken im SLSP-Netzwerk anzeigen und kontrollieren. </li>
- <li>Ausleihfristen verl&auml;ngern, Reservierungen stornieren </li>
- <li>Favoriten speichern</li>
- <li>Suchen speichern und Benachrichtigungen einstellen</li>
- <li>Spracheinstellungen dauerhaft &auml;ndern </li>
- </ul>
- <p>Als Gast k&ouml;nnen Ihre Favoriten, Suchanfragen und die gew&auml;hlte Sprache nur f&uuml;r die aktuelle Browser-Sitzung gespeichert werden. </p>
- <p>Melden Sie sich nach einer Sitzung ab, um Ihr Konto vor dem Zugriff durch andere Benutzende zu sch&uuml;tzen. </p>
- <h4>HINWEIS:</h4>
- <p>Gewisse Online-Ressourcen sind ohne Anmeldung zug&auml;nglich, aber um auf das gesamte Angebot zugreifen zu k&ouml;nnen, m&uuml;ssen Sie sich anmelden. </p>
- <p>
- Der Zugang zu Online-Ressourcen h&auml;ngt oft von Ihrer Zugeh&ouml;rigkeit, z. B. als Studierende oder als Forschende, zu einer lizenzierenden Hochschulinstitution (HEI) ab. Einige HEIs erm&ouml;glichen den Benutzenden den Fernzugriff auf Online-Ressourcen. Weitere Informationen zu den Bedingungen f&uuml;r den Zugriff auf die Online-Ressourcen finden Sie im Kapitel &laquo;Online-Ressourcen&raquo; auf dieser Hilfeseite oder auf der Website der Bibliothek, f&uuml;r welche die jeweilige Ressource lizenziert ist.
- </p>
- <p>Diese Bedingungen gelten nicht f&uuml;r nationale Lizenzen (weitere Informationen finden Sie im entsprechenden Kapitel auf dieser Hilfeseite). </p>
-</md-card-content>
- <md-card-content id="gen7">
- <a href="#index">
- <h3>Mein Konto <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Sie m&uuml;ssen sich anmelden, um auf Ihr Konto zugreifen zu k&ouml;nnen. Klicken Sie im Anschluss oben rechts auf der Seite auf Ihren Namen. Sie sehen nun ein Men&uuml;, das einige Untermen&uuml;s f&uuml;r Ihr Konto enth&auml;lt. Um vollen Zugriff auf das Konto f&uuml;r Ihre Daten zu erhalten, klicken Sie auf &laquo;Mein Konto&raquo;.</p>
- <p>Von dieser Seite aus k&ouml;nnen Sie Ihre Ausleihen, Vormerkungen, Geb&uuml;hren, Meldungen und viele andere Funktionen einsehen. </p>
- <p><strong>HINWEIS:</strong> Jede IZ hat ihren eigenen Bereich. Das bedeutet zum Beispiel, dass wenn Sie eine Ressource in der IZ der KUB Freiburg und eine Ressource in der IZ der ETH Z&uuml;rich ausleihen, diese auf verschiedene Seiten aufgeteilt sind, siehe unten:</p>
- <img width="935" height="627" src="custom/41SLSP_EPF-prod/img/help/myAccount_ger.png" />
-</md-card-content>
- <md-card-content id="gen8">
- <a href="#index">
- <h3>Konto aktualisieren <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Um Ihre Adresse oder andere Informationen bez&uuml;glich Ihres Kontos zu &auml;ndern, gehen Sie auf die Seite &laquo;Meine edu-ID&raquo; auf <a href="https://eduid.ch/" target="_blank">https://eduid.ch/</a> und aktualisieren Sie Ihr edu-ID-Konto. Bitte beachten Sie, dass &Auml;nderungen, die in &laquo;Mein Konto&raquo; in swisscovery oder in den IZs vorgenommen werden, mit den Informationen von edu-ID &uuml;berschrieben werden. Wenn Sie Ihre Bibliotheksausweisnummern verwalten m&ouml;chten, gehen Sie bitte auf <a href="https://registration.slsp.ch/register/library-card/" target="_blank">https://registration.slsp.ch/register/library-card/</a> </p>
-</md-card-content>
- <md-card-content id="gen9">
- <a href="#index">
- <h3>Sprache einstellen <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Klicken Sie auf &laquo;Anzeige-Sprache&raquo;, um die Spracheinstellungen f&uuml;r die aktuelle Sitzung zu &auml;ndern. Wenn Sie angemeldet sind, wird die eingestellte Sprache dauerhaft gespeichert. Sie k&ouml;nnen auch die Sprache Ihrer Oberfl&auml;che &auml;ndern, indem Sie in Ihrem Konto in den Bereich &laquo;Pers&ouml;nliche Details&raquo; gehen. </p>
- <img width="333" height="211" src="custom/41SLSP_EPF-prod/img/help/setLanguage_ger.png" />
-</md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="online">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Online-Ressourcen</h2></a>
-</md-card-title-text>
- </md-card-title>
- <md-card-content>
-
- <md-card-content id="onl1">
- <a href="#index">
- <h3>Online-Ressourcen<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Alle Arten von Online-Ressourcen, die von den teilnehmenden Bibliotheken angeboten werden, werden bei der Suche indexiert: B&uuml;cher, Zeitschriften, Datenbanken, digitalisierte Fotos, Landkarten, Manuskripte und andere Sammelexemplare. Jedoch sind nicht alle Dokumente frei zug&auml;nglich. Viele Dokumente werden &uuml;ber eine Lizenz erworben und sind nur im Netzwerk der Universit&auml;t zug&auml;nglich, die &uuml;ber eine Lizenz f&uuml;r diese Ressource verf&uuml;gt. Mit Hilfe von Filtern k&ouml;nnen Sie die Suche auf lizenzierte Online-Dokumente und Open-Access-Dokumente (Online verf&uuml;gbar) eingrenzen oder nur frei zug&auml;ngliche Dokumente (Open Access) ausw&auml;hlen.</p>
- <img width="233" height="218" src="custom/41SLSP_EPF-prod/img/help/showonly_ger.png" />
- <p>
- Bei Online-Ressourcen enth&auml;lt der Bereich &laquo;Online ansehen&raquo; in der Volltitelanzeige Informationen &uuml;ber die Verf&uuml;gbarkeit der Ressource in Ihrer Institution und in anderen Institutionsbereichen des SLSP-Netzwerks. Um auf die Ressource zuzugreifen, klicken Sie auf das Symbol <img width="41" height="42" src="custom/41SLSP_EPF-prod/img/help/viewOnlineIcon.png" />
- </p>
- <img width="935" height="462" src="custom/41SLSP_EPF-prod/img/help/viewOnline_ger.png" />
-</md-card-content>
- <md-card-content id="onl2">
- <a href="#index">
- <h3>Online-Services f&uuml;r Mitglieder einer Universit&auml;t<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>Neben Open-Access-Dokumenten k&ouml;nnen Sie auch die Online-Services Ihrer Universit&auml;t nutzen. E-Journals, E-Books und Datenbanken werden &uuml;ber Lizenzen erworben und der Zugriff ist ausschliesslich auf das Netzwerk der Institution mit der entsprechenden Lizenz (auf dem Campus) beschr&auml;nkt. Von ausserhalb der Universit&auml;t k&ouml;nnen Sie VPN, Eduroam, EZProxy usw. verwenden, um auf solche Dokumente zuzugreifen. Informationen zum Fernzugriff finden Sie auf der IT-Website Ihrer Bibliothek oder Ihrer Universit&auml;t.</p>
- <p>
- Der Bereich &laquo;Online ansehen&raquo; bietet verf&uuml;gbare Services f&uuml;r die Ressourcen in Ihrer Institution und in anderen IZs des SLSP-Netzwerks. Klicken Sie auf &laquo;Online verf&uuml;gbar&raquo; und auf das Symbol <img width="41" src="custom/41SLSP_EPF-prod/img/help/viewOnlineIcon.png" />, um zur Volltitelanzeige zu gelangen.
- </p>
- <img width="935" height="170" src="custom/41SLSP_EPF-prod/img/help/availOnline_ger.png" />
- <img width="935" height="439" src="custom/41SLSP_EPF-prod/img/help/availOnlineFull_ger.png" />
-</md-card-content>
- <md-card-content id="onl3">
- <a href="#index">
- <h3>Online-Services f&uuml;r Personen, die nicht Mitglied einer Universit&auml;t sind <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Zus&auml;tzlich zu Open-Access- und Online-Ressourcen unter einer nationalen Lizenz k&ouml;nnen Sie auch die lizenzierten Ressourcen der Universit&auml;ten nutzen, falls Sie sich innerhalb der Universit&auml;t befinden. </p>
- <p>Wissenschaftliche E-Journals, E-Books und Datenbanken werden &uuml;ber Lizenzen erworben und der Zugriff ist ausschliesslich auf das Netzwerk der Institution mit entsprechender Lizenz (auf dem Campus) beschr&auml;nkt. Sie k&ouml;nnen die Ressourcen vor Ort bei ebendieser Bibliothek herunterladen und/oder darauf zugreifen. </p>
- <p>Welche Bibliotheken Zugang zu einer Online-Ressource anbieten, wird unter &laquo;Standorte&raquo; angezeigt: </p>
- <img width="935" height="170" src="custom/41SLSP_EPF-prod/img/help/availOnline2_ger.png" />
- <img width="935" height="345" src="custom/41SLSP_EPF-prod/img/help/locationItems_ger.png" />
-</md-card-content>
- <md-card-content id="onl4">
- <a href="#index">
- <h3>Open Access<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Open-Access-Dokumente sind frei zug&auml;nglich. Es handelt sich zum einen um Zeitschriftenartikel oder E-Books auf verschiedenen Plattformen oder in institutionellen Best&auml;nden und zum anderen um digitalisierte Dokumente aus Bibliotheksbest&auml;nden. Diese Dokumente sind in der Ergebnisliste mit einem Open-Access-Symbol gekennzeichnet. </p>
- <img width="935" height="188" src="custom/41SLSP_EPF-prod/img/help/openAccess_ger.png" />
-</md-card-content>
- <md-card-content id="onl5">
- <a href="#index">
- <h3>Nationale Lizenzen<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Alle Personen, die in der Schweiz leben, haben Zugang zu den &uuml;ber nationale Lizenzen verf&uuml;gbaren Ressourcen. Hierf&uuml;r ist eine einmalige Registrierung erforderlich; weitere Informationen finden Sie unter
- <a href="https://consortium.ch/zugriff/?lang=en" target="_blank">https://consortium.ch/zugriff/?lang=en </a>. Bitte beachten Sie, dass f&uuml;r die Registrierung f&uuml;r die nationalen Lizenzen dieselbe edu-ID wie f&uuml;r swisscovery verwendet werden kann.</p>
- <p>Verf&uuml;gbare Ressourcen aus nationalen Lizenzen sind im Bereich &laquo;Volltext-verf&uuml;gbarkeit&raquo; in Klammern gekennzeichnet.</p>
- <img width="935" height="160" src="custom/41SLSP_EPF-prod/img/help/NationalLicenses_ger.png" />
-</md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="borrow">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Fernleihe-/Bestelldokumente </h2></a>
-</md-card-title-text>
- </md-card-title>
- <md-card-content id="bor1">
- <a href="#index">
- <h3>Fernleihe-/Bestelldokumente<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Unter &laquo;Ausleihen&raquo; in der Volltitelanzeige sehen Sie die Bibliotheken, in denen das Dokument vorhanden ist, und ob es derzeit verf&uuml;gbar ist. Die Lieferung eines Exemplars an einen Abholstandort kann kostenpflichtig sein.</p>
- <p>Unter &laquo;Andere Optionen&raquo; sehen Sie, ob SLSP-Bibliotheken anderer Institutionsbereiche das Dokument ebenfalls im Bestand haben.</p>
- <img width="935" height="455" src="custom/41SLSP_EPF-prod/img/help/getIt_ger.png" />
- <p>W&auml;hlen Sie die gew&uuml;nschte Vormerkungsoption: Vormerkung (physisches Exemplar/Buchung) oder Digitalisierung (elektronisch oder Papierform). Sie m&uuml;ssen angemeldet sein, um eine Vormerkung aufgeben zu k&ouml;nnen.</p>
- <img width="935" height="349" src="custom/41SLSP_EPF-prod/img/help/requestOption_ger.png" />
- <p>Wenn Sie "Vormerkung" ausw&auml;hlen, k&ouml;nnen Sie ein physisches Exemplar zur Abholung in einer Bibliothek vormerken lassen. Einige Exemplare k&ouml;nnen auch f&uuml;r eine Lieferung auf dem Postweg (geb&uuml;hrenpflichtig) vorgemerkt werden. Wenn diese Option angeboten wird, k&ouml;nnen Sie sie w&auml;hlen, indem Sie im Feld &laquo;Abhol-Institution&raquo; Ihre Institution und im Feld &laquo;Abholort&raquo; Heimadresse ausw&auml;hlen. </p>
- <p>Wenn Sie ein elektronisches oder ausgedrucktes Exemplar eines Artikels oder Kapitels erhalten m&ouml;chten, klicken Sie auf "Digitalisierung" und f&uuml;llen Sie das Formular mit so vielen Angaben wie m&ouml;glich aus. </p>
- <p><strong>HINWEIS:</strong> Diese Services sind in Ihrer IZ / Bibliothek m&ouml;glicherweise nicht verf&uuml;gbar und k&ouml;nnen kostenpflichtig sein. Weitere Informationen finden Sie <a href="https://slsp.ch/fees" target="_blank">hier</a>. </p>
-</md-card-content>
- <md-card-content id="bor2">
- <a href="#index">
- <h3>Vormerkungen zur Fernleihe<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>
- Obwohl das SLSP-Netzwerk Zugriff auf mehr als 50 Millionen Titel und unz&auml;hlige elektronische Ressourcen bietet, kann es sein, dass die Publikation, nach der Sie suchen, nicht darunter ist. In diesem Fall k&ouml;nnen Sie einen Fernleihauftrag aufgeben und die Bibliothek leiht die Publikation bei einer anderen Bibliothek in der Schweiz oder im Ausland aus (geb&uuml;hrenpflichtig). Bitte f&uuml;llen Sie hierzu <a href="https://slsp.ch/en" target="_blank">dieses Formular aus</a>.
- </p>
- <p><strong>HINWEIS:</strong> F&uuml;r diesen Service k&ouml;nnen zus&auml;tzliche Geb&uuml;hren anfallen. Weitere Informationen zu Geb&uuml;hren <a href="https://slsp.ch/fees" target="_blank">finden Sie auf dieser Seite</a>.</p>
-</md-card-content>
- <md-card-content id="bor3">
- <a href="#index">
- <h3>Ausleihfristen verl&auml;ngern <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>In &laquo;Mein Konto&raquo; sehen Sie Ihre aktuellen Ausleihen und k&ouml;nnen sie einzeln oder alle verl&auml;ngern, sofern dies die Ausleihbedingungen erlauben. </p>
- <img width="935" height="524" src="custom/41SLSP_EPF-prod/img/help/renewLoans_ger.png" />
- <!--<p><strong>Note:</strong> The new loan period always runs as of immediately. If you renew a document yourself before the automatic loan period ends, the maximum possible loan period becomes shorter. </p>-->
- <p><strong>HINWEIS:</strong> Die Ausleihbedingungen k&ouml;nnen je nach Institution und Art des Materials variieren.</p>
-</md-card-content>
- <md-card-content id="bor4">
- <a href="#index">
- <h3>Liste der fr&uuml;heren Ausleihen<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>In &laquo;Mein Konto&raquo; k&ouml;nnen Sie im Bereich &laquo;Ausleihen&raquo; der IZs Ihre aktiven und fr&uuml;heren Ausleihen sehen. </p>
- <img width="352" height="150" src="custom/41SLSP_EPF-prod/img/help/activeLoans_ger.png" />
- <p><strong>HINWEIS:</strong> In einigen IZs / Bibliotheken steht diese Option aufgrund kantonaler Datenschutzbestimmungen nicht zur Verf&uuml;gung.</p>
-</md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="search">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Suchen</h2></a>
-</md-card-title-text>
- </md-card-title>
- <md-card-content id="sea1">
- <a href="#index">
- <h3>SLSP-Suchprofile <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>SLSP arbeitet mit zwei Standard-Suchprofilen, die in jeder Ansicht zu finden sind. Das erste ist "swisscovery" und umfasst die Ressourcen aller Bibliotheken des SLSP Netzwerks , das zweite ist &laquo;Meine Bibliothek&raquo;. Auf der folgenden Infografik sehen Sie den Unterschied der beiden Standard-Suchprofile. In bestimmten IZs oder Bibliotheks-Views werden zus&auml;tzliche kundenspezifische Suchprofile angezeigt, die von der IZ / Bibliothek erstellt wurden. </p>
- <img width="935" height="899" src="custom/41SLSP_EPF-prod/img/help/infographig_ger.png" />
- <p><strong>Meine Bibliothek: </strong> Umfasst den lokalen Bestand der IZ / Bibliothek + externe Ressourcen, die in dieser IZ eingespielt sind (allgemein und lokal) + CDI (CDI kann auch als separates Suchprofil verwendet werden). Dieses Suchprofil ist immer nach der Institution benannt.</p>
- <p><strong>swisscovery:</strong> Alle Datens&auml;tze des SLSP-Netzwerks + allgemeine externe Ressourcen + CDI. </p>
- <p><strong>Eigene Suchprofile:</strong> Einige Institutionsbereiche / Bibliotheken haben ihre eigenen Suchprofile einschliesslich spezifischer lokaler Daten erstellt.</p>
- <p><strong>Central Discovery Index (CDI):</strong> Ist eine zentrale Datenbank, die unz&auml;hlbare Quellen f&uuml;r insgesamt mehr als 3 Milliarden Datens&auml;tze umfasst, z. B.: Zeitschriftenartikel, E-Books, Dissertationen, Konferenzberichte, Patente, Berichte, Regierungsdokumente, Bilder und Videos. Je nach IZ /Bibliotheks-View kann der CDI im Suchprofil &laquo;Meine Bibliothek&raquo;, in einem separaten Suchprofil oder in beiden durchsucht werden. </p>
- <p><strong>Allgemeine Externe Ressourcen:</strong> swisscovery wurde um allgemeine elektronische externe Ressourcen erweitert, haupts&auml;chlich aus institutionellen Repositorien. </p>
- <p><strong>Lokale Externe Ressourcen: </strong> Zus&auml;tzlich zu den allgemeinen externen Ressourcen bieten einige Institutionsbereiche auch lokale externe Ressourcen an, die nur f&uuml;r die eigenen Benutzenden zug&auml;nglich sind. </p>
-</md-card-content>
- <md-card-content id="sea2">
- <a href="#index">
- <h3>Einfache Suche<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Die einfache Suche erm&ouml;glicht einen schnellen Zugriff auf die Bibliotheksressourcen. </p>
- <img width="935" src="custom/41SLSP_EPF-prod/img/help/simpleSearch_ger.png" />
-</md-card-content>
- <md-card-content id="sea3">
- <a href="#index">
- <h3>Erweiterte Suche <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Die Suchfelder der erweiterten Suche k&ouml;nnen mit UND, ODER oder NICHT verkn&uuml;pft werden. </p>
- <img width="935" height="426" src="custom/41SLSP_EPF-prod/img/help/advancedSearch_ger.png" />
- <p>In diesem Beispiel ist die Suche auf B&uuml;cher in englischer Sprache beschr&auml;nkt, die &laquo;mountain railway*&raquo; im Titel und "Switzerland " als Thema enthalten. </p>
- <p>Via Dropdown Menu in der zweiten (bzw. dritten) Spalte der Zeile k&ouml;nnen Sie zwischen &laquo;enth&auml;lt&raquo; oder &laquo;ist(exakt)&raquo; oder &laquo;beginnt mit&raquo; w&auml;hlen. Dadurch legen Sie fest, ob die Suchbegriffe im Feld enthalten sein sollen, ob das Ergebnis exakt mit den Suchbegriffen &uuml;bereinstimmen muss oder ob das Element mit einem bestimmten Begriff beginnen muss. </p>
- <p>Sie k&ouml;nnen ein paar Stichw&ouml;rter des Titels eingeben (beliebige Reihenfolge):</p>
- <img width="408" height="57" src="custom/41SLSP_EPF-prod/img/help/advancedField1_ger.png" /><br />
- <p>Sie k&ouml;nnen den exakten Titel suchen:</p>
- <img width="408" height="70" src="custom/41SLSP_EPF-prod/img/help/advancedField2_ger.png" />
- <p>Sie k&ouml;nnen nach Titeln suchen, die mit dem Wort &laquo;mountain&raquo; beginnen:</p>
- <img width="408" height="62" src="custom/41SLSP_EPF-prod/img/help/advancedField3_ger.png" />
-</md-card-content>
- <md-card-content id="sea4">
- <a href="#index">
- <h3>Nach einer Wortgruppe suchen <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Wenn Sie nach einer Wortgruppe suchen m&ouml;chten, setzen Sie diese in Anf&uuml;hrungszeichen. Sie k&ouml;nnen bei einer Suche Wortgruppen und W&ouml;rter kombinieren. </p>
- <img width="935" height="85" src="custom/41SLSP_EPF-prod/img/help/searchPhrase_ger.png" />
- <p>Die Ergebnisse der obigen Suche umfassen Dokumente, die sowohl die Wortgruppe &laquo;piz buin&raquo; als auch den Wort &laquo;mountain&raquo; enthalten. </p>
-</md-card-content>
- <md-card-content id="sea5">
- <a href="#index">
- <h3>Mit Platzhaltern suchen<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Der Asterisk * und das Fragezeichen ? k&ouml;nnen bei der Suche als Platzhalter verwendet werden:</p>
- <p>Der Asterisk * ist der Platzhalter f&uuml;r null bis mehrere beliebige Zeichen: </p>
- <img width="935" height="74" src="custom/41SLSP_EPF-prod/img/help/searchWildcard1_ger.png" />
- <p>sucht nach culture, cultures, cultural usw.</p>
- <p>Der Asterisk * kann auch dabei helfen, verschiedene Schreibweisen bei der Suche zu ber&uuml;cksichtigen: </p>
- <img width="935" height="77" src="custom/41SLSP_EPF-prod/img/help/searchWildcard2_ger.png" />
- <p>sucht nach yogurt, yoghurt, yogourt, yoghourt usw.</p>
- <p>Das Fragezeichen ? ist der Platzhalter f&uuml;r ein einzelnes Zeichen: </p>
- <img width="935" height="84" src="custom/41SLSP_EPF-prod/img/help/searchWildcard3_ger.png" />
- <p>sucht sowohl nach woman als auch nach women.</p>
- <p>Sie k&ouml;nnen ebenfalls folgende beide Zeichen auch kombinieren</p>
- <img width="935" height="84" src="custom/41SLSP_EPF-prod/img/help/searchWildcard4_ger.png" />
- <p>Sie erhalten Ergebnisse mit yoghurt, yogourt, yohurts oder yogourts</p>
-</md-card-content>
- <md-card-content id="sea6">
- <a href="#index">
- <h3>Boolesche Operatoren zum Erweitern oder Eingrenzen einer Suche verwenden<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>Sie k&ouml;nnen die booleschen Operatoren UND, ODER und NICHT verwenden. Diese m&uuml;ssen zwingend in Grossbuchstaben geschrieben werden, damit sie angewendet werden. </p>
- <p>Ohne Operatoren werden die Suchbegriffe automatisch mit <strong>UND</strong> verkn&uuml;pft. Somit m&uuml;ssen alle Suchbegriffe f&uuml;r die Ergebnisse zutreffend sein. </p>
- <p><strong>ODER</strong></p>
- <p>Mindestens einer der mit ODER verkn&uuml;pften Suchbegriffe muss in den Ergebnissen zutreffen. Verwenden Sie ODER zum Beispiel, um verwandte Begriffe zu kombinieren und so die Suche auf mehrere Begriffe (Synonyme, unterschiedliche Schreibweisen) zu erweitern:</p>
- <img width="935" height="76" src="custom/41SLSP_EPF-prod/img/help/searchOR_ger.png" />
- <p><strong>NICHT</strong></p>
- <p>Der mit NICHT ausgeschlossene Suchbegriff darf nicht in den Ergebnissen erscheinen. Auf diese Weise k&ouml;nnen W&ouml;rter oder Wortgruppen explizit ausgeschlossen werden. </p>
- <!--<p><strong>NOTE:</strong> The Boolean operator NOT is available only in the simple search </p>-->
- <img width="935" height="79" src="custom/41SLSP_EPF-prod/img/help/searchNOT_ger.png" />
- <p>Die Ergebnisse umfassen Dokumente, die die Wortgruppen &laquo;climate change&raquo;, aber nicht &laquo;global warming&raquo; enthalten.</p>
-</md-card-content>
- <md-card-content id="sea7">
- <a href="#index">
- <h3>Meine Favoriten<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>In &laquo;Meine Favoriten&raquo; k&ouml;nnen Sie Treffer speichern, die Sie w&auml;hrend Ihrer Suche gefunden haben. Langfristiges Speichern ist nur m&ouml;glich, wenn Sie angemeldet sind. Als Gast stehen Ihnen die Favoriten nur w&auml;hrend der aktuellen Browser-Sitzung zur Verf&uuml;gung.</p>
- <p>
- Wenn Sie auf das Stecknadel-Symbol
- <img width="14" height="18" src="custom/41SLSP_EPF-prod/img/help/pinIcon1.png" /> n der Trefferanzeige klicken, wird der Titel zu Ihren Favoriten hinzugef&uuml;gt; das Stecknadel-Symbol &auml;ndert sich zu
- <img width="14" height="15" src="custom/41SLSP_EPF-prod/img/help/pinIcon2.png" />. Wenn Sie auf
- <img width="14" height="15" src="custom/41SLSP_EPF-prod/img/help/pinIcon2.png" /> klicken, wird der Titel aus Ihren Favoriten entfernt.
- </p>
- <p>
- &Uuml;ber das Stecknadel-Symbol
- <img width="14" height="18" src="custom/41SLSP_EPF-prod/img/help/pinIcon1.png" /> oben rechts auf der Seite k&ouml;nnen Sie auf Ihre Favoritensammlung zugreifen.
- </p>
- <p>Sie k&ouml;nnen einzelne Titel aus Ihrer Favoritenliste entfernen oder exportieren. Markieren Sie einen oder mehrere Titel und verwenden Sie die Symbole oben auf der Seite, um sie zu l&ouml;schen, Beschriftungen hinzuzuf&uuml;gen, sie in Referenzverwaltungsprogramme zu exportieren, sie zu drucken oder per E-Mail zu versenden: </p>
- <img width="935" height="481" src="custom/41SLSP_EPF-prod/img/help/myFavorites_ger.png" />
- <p>Um die Details eines Titels anzuzeigen, klicken Sie auf den Titel.</p>
- <p>Unter &laquo;Meine Favoriten&raquo; finden Sie auch die Suchhistorie f&uuml;r die aktuelle Sitzung. </p>
-</md-card-content>
- <md-card-content id="sea8">
- <a href="#index">
- <h3>Suchhistorie<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Die Suchanfragen der aktuellen Sitzung werden in Ihren Favoriten unter &laquo;Suchhistorie&raquo; aufgezeichnet.</p>
- <p>
- Zum &Ouml;ffnen der Suchhistorie klicken Sie auf das Symbol
- <img width="30" height="30" src="custom/41SLSP_EPF-prod/img/help/searchHistoryIcon.png" />oben rechts auf der Seite.
- </p>
- <img width="470" height="311" src="custom/41SLSP_EPF-prod/img/help/searchHistory_ger.png" />
-</md-card-content>
- <md-card-content id="sea9">
- <a href="#index">
- <h3>Suchen speichern und verwalten<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>Wenn Sie angemeldet sind, k&ouml;nnen Sie Suchanfragen dauerhaft speichern. Klicken Sie dazu auf &laquo;Suchanfrage speichern&raquo; oberhalb der Ergebnisliste:</p>
- <img width="935" height="148" src="custom/41SLSP_EPF-prod/img/help/saveQuery_ger.png" />
- <p><strong>HINWEIS:</strong> Die Option &laquo;Suchanfrage speichern&raquo; wird nur angezeigt, wenn Sie angemeldet sind und eine Suchanfrage gestellt haben. </p>
- <p>Wenn Sie Ihre Suchanfrage speichern, k&ouml;nnen Sie E-Mail-Benachrichtigungen abonnieren. In diesem Fall erhalten Sie eine E-Mail, wenn es Neuigkeiten zu Ihrer Anfrage gibt. Zur Aktivierung dieses Service erscheint oben auf der Seite automatisch eine Meldung.</p>
- <img width="935" height="73" src="custom/41SLSP_EPF-prod/img/help/emailNotification_ger.png" /><br />
- <img width="418" height="333" src="custom/41SLSP_EPF-prod/img/help/emailNotificationSettings_ger.png" />
- <p>
- Die gespeicherten Suchen werden unter &laquo;Meine Favoriten&raquo;
- <img width="14" height="18" src="custom/41SLSP_EPF-prod/img/help/pinIcon1.png" /> in der Registerkarte &laquo;gespeicherte Suchen&raquo; gespeichert.
- </p>
- <img width="935" height="250" src="custom/41SLSP_EPF-prod/img/help/savedSearches_ger.png" />
- <p>Wenn Sie auf den Eintrag der gespeicherten Suche klicken, wird die Suchanfrage erneut ausgef&uuml;hrt. Mit den Symbolen auf der rechten Seite k&ouml;nnen Sie eine Benachrichtigung (per RSS oder E-Mail) einrichten, die Sie &uuml;ber neu hinzugef&uuml;gte Dokumente informieren, die Ihre Suchkriterien erf&uuml;llen. </p>
-</md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="display">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Ergebnisse anzeigen</h2></a>
-</md-card-title-text>
- </md-card-title>
- <md-card-content id="dis1">
- <a href="#index">
- <h3>Ergebnisse eingrenzen<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>In der linken Spalte werden Filterm&ouml;glichkeiten vorgeschlagen, mit denen Sie Ihre Suchergebnisse eingrenzen k&ouml;nnen: </p>
- <img width="302" height="195" src="custom/41SLSP_EPF-prod/img/help/facets1_ger.png" />
- <p>Wenn Sie auf &laquo;Artikel&raquo; klicken, wird im obigen Beispiel die Ergebnisliste auf die 113 gefundene Artikel begrenzt.</p>
- <p>Um einen Begriff auszuschliessen, klicken Sie auf das rote Symbol rechts neben dem Begriff. </p>
- <img width="320" height="215" src="custom/41SLSP_EPF-prod/img/help/facets2_ger.png" />
- <p>Mit &laquo;Weitere anzeigen&raquo; k&ouml;nnen Sie weitere Begriffe anzeigen lassen und die Suche verfeinern, indem Sie mehrere Begriffe ein- oder ausschliessen. </p>
- <p>Beispiel: Grenzen Sie die Ergebnisse auf &laquo;B&uuml;cher&raquo;, &laquo;Hochschulschriften&raquo; und &laquo;Videos&raquo; ein.</p>
- <img width="349" height="506" src="custom/41SLSP_EPF-prod/img/help/facets3_ger.png" />
- <p>Um einen Filter zu entfernen, klicken Sie auf das x neben dem entsprechenden Begriff. Mit &laquo;Filter zur&uuml;cksetzen&raquo; werden alle Filter entfernt.</p>
- <img width="313" height="228" src="custom/41SLSP_EPF-prod/img/help/filters1_ger.png" />
- <p>Durch eine neue Sucheingabe werden automatisch alle Filter entfernt. Sie k&ouml;nnen jedoch einen Filter f&uuml;r die Dauer der Browser-Sitzung speichern, indem Sie ihn ausw&auml;hlen und dann auf das Schloss-Symbol klicken. Um diesen Filter zu entfernen, klicken Sie erneut auf das Schloss-Symbol. </p>
- <img width="273" height="241" src="custom/41SLSP_EPF-prod/img/help/filters2_ger.png" />
-</md-card-content>
- <md-card-content id="dis2">
- <a href="#index">
- <h3>Ergebnisliste: Sortieren<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>Die Ergebnisse sind standardm&auml;ssig nach Relevanz sortiert. Sie k&ouml;nnen sie auch nach Datum, Verfasser und Titel sortieren lassen. </p>
- <img width="177" height="315" src="custom/41SLSP_EPF-prod/img/help/sorting_ger.png" />
-</md-card-content>
- <md-card-content id="dis3">
- <a href="#index">
- <h3>Ergebnisliste: Versionen <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Wenn ein Werk in mehreren Versionen (d.h. in verschiedenen Ausgaben oder Druckversionen) erh&auml;ltlich ist, klicken Sie auf das Symbol, den Titel oder &laquo;Alle Versionen anzeigen&raquo;, um alle Versionen aufzulisten. </p>
- <img width="512" height="193" src="custom/41SLSP_EPF-prod/img/help/versions_ger.png" />
- <p>Sie k&ouml;nnen zur Ergebnisliste zur&uuml;ckkehren, indem Sie die Liste der Versionen unter &laquo;Aktive Filter&raquo; schliessen.</p>
- <img width="263" height="191" src="custom/41SLSP_EPF-prod/img/help/activeFilters_ger.png" />
-</md-card-content>
- <md-card-content id="dis4">
- <a href="#index">
- <h3>Einzelne Titel anzeigen <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Wenn Sie auf einen Titel klicken, k&ouml;nnen Sie die folgenden Aktionen ausw&auml;hlen: </p>
- <img width="144" height="274" src="custom/41SLSP_EPF-prod/img/help/fullViewNavigation_ger.png" />
- <p><strong>Top:</strong> Zur&uuml;ck zum Seitenanfang</p>
- <p><strong>Senden an: </strong> Titelinformationen in Referenzverwaltungsprogramm exportieren, Literaturangaben exportieren, Permalink zum Ergebnis erstellen, Titel ausdrucken oder per EMail versenden. Export-Aktionen k&ouml;nnen f&uuml;r bis zu 50 Datens&auml;tze gleichzeitig angewendet werden.</p>
- <p><strong>Wie man es ausleiht:</strong> Standorte anzeigen, Bestellungen f&uuml;r Ausleihen, Reservierungen oder Kopien aufgeben.</p>
- <p><strong>Details:</strong> weitere Informationen zum Titel.</p>
- <p><strong>Verkn&uuml;pfungen:</strong> Links zum Inhaltsverzeichnis, zum fr&uuml;heren/sp&auml;teren Titel, zu allen B&auml;nden einer Reihe.</p>
- <p><strong>Virtuelle Indexsuche:</strong> Hier sehen Sie ein Bibliotheksregal f&uuml;r den ausgew&auml;hlten Datensatz, sodass Sie noch weitere Exemplare finden k&ouml;nnen, die mit Ihrer Suche in Zusammenhang stehen.</p>
-</md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="questions">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Fragen?</h2></a>
-</md-card-title-text>
- </md-card-title>
- <md-card-content id="que1">
- <a href="mailto:library@epfl.ch">
- <h3>Kontaktangabe<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>Bei Fragen, Unklarheiten, Kommentaren oder Anregungen k&ouml;nnen Sie uns sehr gern jederzeit <a href="mailto:library@epfl.ch" target="_blank">kontaktieren</a>.</p>
-
-</md-card-content>
-
- </md-card>
-
- </div>
-
-
-
- </div>
-
-</md-content>
diff --git a/primo-explore/custom/41SLSP_EPF-test/html/help/help_en.html b/primo-explore/custom/41SLSP_EPF-test/html/help/help_en.html
deleted file mode 100644
index d52495d..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/html/help/help_en.html
+++ /dev/null
@@ -1,505 +0,0 @@
-
-<md-content id="help">
- <div class="ps_content md-padding" layout-gt-sm="row" layout-align="center center">
- <div flex="100" flex-md="100" flex-lg="80" flex-xl="60" layout="column">
- <md-card class="default-card">
- <md-card-title>
- <md-card-title-text>
- <h1 class="md-headline"><b>swisscovery Help Page</b></h1>
- </md-card-title-text>
- </md-card-title>
- </md-card>
- <md-card class="default-card">
- <md-card-content>
- <h4>Introduction:</h4>
- <p>Dear User</p>
- <p>Welcome to the Swisscovery's help page.</p>
- <p>Swisscovery is the <a href="https://slsp.ch/en" target="_blank">Swiss Library Service Platform Network (SLSP)</a> discovery tool. In this page you will find useful information about how to use Swisscovery and how the SLSP network is organized.</p>
- <p>Attention: this help page has been created for the whole SLSP Network! This means that some services may not be available in this specific user interface. Please note that the start page or the record's full display may look different from institution to institution to what is showed in this help page.</p>
- </md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="index">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Index</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <h3><a href="#general">General</a></h3>
- <ul>
- <!--<li><a href="#gen1">A short video introduction to Swisscovery</a></li>-->
- <li><a href="#gen2">SLSP: The Swiss Library Service Platform</a></li>
- <li><a href="#gen3">SLSP Network</a></li>
- <li><a href="#gen4">Open an account</a></li>
- <li><a href="#gen5">Library card</a></li>
- <li><a href="#gen6">How to Sign in and Sign out</a></li>
- <li><a href="#gen7">My Account</a></li>
- <li><a href="#gen8">Update your account </a></li>
- <li><a href="#gen9">Set language</a></li>
- </ul>
- <h3><a href="#online">Online resources</a></h3>
- <ul>
- <li><a href="#onl1">Online resources </a></li>
- <li><a href="#onl2">Online services for university members</a> </li>
- <li><a href="#onl3">Online services for people who are not members of a university </a></li>
- <li><a href="#onl4">Open Access </a></li>
- <li><a href="#onl5">National licences </a></li>
- </ul>
- <h3><a href="#borrow">Borrowing/ordering documents</a></h3>
- <ul>
- <li><a href="#bor1">Borrowing/ordering documents </a></li>
- <li><a href="#bor2">Interlibrary loan requests outside SLSP network </a></li>
- <li><a href="#bor3">Extending loan periods </a></li>
- <li><a href="#bor4">List of previous loans </a></li>
- </ul>
- <h3><a href="#search">Searching</a></h3>
- <ul>
- <li><a href="#sea1">SLSP search profiles </a></li>
- <li><a href="#sea2">Simple search </a></li>
- <li><a href="#sea3">Advanced search </a></li>
- <li><a href="#sea4">Searching for a phrase </a></li>
- <li><a href="#sea5">Searching with wildcards </a></li>
- <li><a href="#sea6">Using Boolean operators to expand or narrow a search </a></li>
- <li><a href="#sea7">My favorites </a></li>
- <li><a href="#sea8">Search history </a></li>
- <li><a href="#sea9">Saving and managing searches </a></li>
- <!--<li><a href="#sea10">Citation Linker </a></li>-->
- </ul>
- <h3><a href="#display">Displaying the results</a></h3>
- <ul>
- <li><a href="#dis1">Narrowing down results </a></li>
- <li><a href="#dis2">List of results: sorting </a></li>
- <li><a href="#dis3">List of results: versions</a> </li>
- <li><a href="#dis4">Viewing individual titles </a></li>
- </ul>
- <h3><a href="#questions">Questions?</a></h3>
- <ul>
- <li><a href="#que1">Contact information</a></li>
- </ul>
- </md-card-content>
- </md-card>
-
- <md-card class="default-card" id="general">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">General </h2></a>
- </md-card-title-text>
- </md-card-title>
- <!--<md-card-content id="gen1">
- <a href="#index"><h3>A short video introduction to Swisscovery<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3></a>
- <div class="resp-container">
- <iframe class="resp-iframe" src="https://www.youtube.com/embed/1fZwnu_nzPU" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
- </div>
- </md-card-content>r-->
- <md-card-content id="gen2">
- <a href="#index">
- <h3>SLSP: The Swiss Library Service Platfom<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>
- The Swiss Library Service Platform, along with his subsidiary Consortium of Swiss Academic Libraries, with more than
- <a href="https://slsp.ch/libraries" target="_blank">450 members</a>, is the biggest network of academic and research libraries in Switzerland. Created by libraries, for libraries, it is a joint effort to provide a series of services at the entire country such as, a shared multilingual catalogue of scientific information, a unique representative for e-resources licensing and a performant courier network for physical items sharing.
- </p>
- <p>SLSP represents an innovative and significant step forward in the digital evolution of scientific libraries in Switzerland. By managing the cloud-based Alma system, the organisation brings together scientific information stored in libraries across Switzerland. By making this information accessible and easily findable, SLSP contributes to scientific discovery and progress.</p>
- </md-card-content>
- <md-card-content id="gen3">
- <a href="#index">
- <h3>SLSP Network<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>SLSP Network is divided in several "zones". SLSP itself manage the network zone (NZ) called Swisscovery, while libraries have been distributed in 29 "institution zones" (IZ).</p>
- <p>An institution zone (IZ) is a group of libraries that have similar needs. The IZ is a key component in the SLSP system and represents a division that enables synergies and increases efficiency. In SLSP we distinguish two types of institution zone: single entity zones and mixed entity zones.</p>
- <p>In a single entity zone, most of libraries are legally related to one main entity (for instance a university). In a mixed entity zone, libraries are legally related to different entities (for instance they are grouped together due to geographical considerations)</p>
- <p>To access the resources of SLSP members, users must access the users' interfaces called "views". In SLSP we have prepared a view for the Network Zone (NZ), a view for every Institution Zone (IZ) and several views for single libraries.</p>
- <p>Every view has its specifics search scopes, which will return different results when used for the search. The Swisscovery network zone contains all records coming from the SLSP libraries, some general external resource (for example e-rara data) and the CDI index. The institution zones views and the library views contain the local inventory of the institution zone / library, general and local external resources and the CDI index.</p>
- <p>Central Discovery Index (CDI): is a central database of more than 3 billion of records such as: journals articles, e-books, dissertations, conference proceedings, etc.</p>
- <img width="935" height="665" src="custom/41SLSP_EPF-prod/img/help/swisscovery.png" />
- <p>At the following <a href="https://slsp.ch/libraries" target="_blank">link</a> you can find the topology of the SLSP Network, comprehensive of the list of all SLSP member libraries divided per institution zone and the link to every existing view of our network. For every IZ and library you can find the address, the contact information and the services they provide. </p>
- </md-card-content>
- <md-card-content id="gen4">
- <a href="#index">
- <h3>Open an account <img class="icon_up2" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>To register with SLSP please first visit to: <a href="https://registration.slsp.ch" target="_blank">https://registration.slsp.ch</a></p>
- <p>After starting the registration, you will be asked to login with a SWITCH edu-ID account. If you already have a SWITCH edu-ID account just login to proceed with the registration. If you don't have your password yet, there is a password reset link on the login page.</p>
- <p>If you don't have a SWITCH edu-ID account yet, you can click on "Create account" on the login page. </p>
- <p><strong>Note:</strong> If you study at a university it is possible that you registered with SLSP previously. In this case a message will appear, and you will be forwarded to the view's login section. </p>
- </md-card-content>
- <md-card-content id="gen5">
- <a href="#index">
- <h3>Library card<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>With your library card you have access to a series of services, for instance, you can loan a physical item in a library. </p>
- <p>If you already have a library card of the <a href="https://www.nb.admin.ch/snl/en/home/services/user-services/bibliopass.html" target="_blank">BibliOpass network</a> you can optionally provide the library card number during the registration with SLSP or afterwards. Some campus / university / student cards are also valid as library card. Also, some universities will provide the library card number for their users. Which library card numbers are associated to an SLSP account, will be show during registration process with SLSP (see "Open an "account" chapter). </p>
- <p>If you don't have a physical library card, you can ask your library to provide you with one. </p>
- </md-card-content>
- <md-card-content id="gen6">
- <a href="#index">
- <h3>How to Sign in and Sign out<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>In Swisscovery: click on "Sign in" - choose your institution zone - click on "SWITCH edu-ID" - enter your email address and password - click on "Login" </p>
- <p>In an institution zone / library view: click on "Sign in" - click on "SWITCH edu-ID" - enter your email address and password - click on "Login" </p>
- <img width="460" height="74" src="custom/41SLSP_EPF-prod/img/help/signin.png" />
- <p>You need to be signed in to do the following:</p>
- <ul>
- <li>Order documents (loan, digitization order, ILL) </li>
- <li>View and control your loans and requests from libraries in the SLSP network. </li>
- <li>Extend loan periods, cancel reservations </li>
- <li>Save favorites </li>
- <li>Save searches and set alerts </li>
- <li>Change your language settings permanently </li>
- </ul>
- <p>As a guest, your favorites, search requests and selected language can only be saved for the current browser session. </p>
- <p>Sign out after a session to protect your account against access by other users. </p>
- <h4>NOTE:</h4>
- <p>To access online resources, it is not relevant to sign in. </p>
- <p>
- Access to online resources often depends on whether your device is within the network of a licensing university and if you work for or study at this university. Some universities and libraries allow users to access online resources from outside their network using a proxy service. For more information concerning the conditions to access the online resources, you can consult the chapter "Online resources" of this help page,
- the <a href="https://consortium.ch/?lang=en" target="_blank">Consortium's website</a> or the website of the library which licenses for the respective resource.
- </p>
- <p>These conditions aren't applied to the National licences (for more information see the corresponding chapter of this help page). </p>
- </md-card-content>
- <md-card-content id="gen7">
- <a href="#index">
- <h3>My Account <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>You must sign in to access your account. Once you did that, click on your name at the top right of the page, you will access to a menu containing some of the submenu of your account. To have full access at your data's account click on "My Account". </p>
- <p>From this page you will be able to consult your loans, fees, reminders, requests, messages and many other functionalities. </p>
- <p><strong>NOTE:</strong> every institution zone has its own space, this means, for example, that if you loan a resource in the BCU Fribourg's institution zone and one at ETH Z&uuml;rich's institution zone they are splitted in different pages, see below: </p>
- <img width="935" height="627" src="custom/41SLSP_EPF-prod/img/help/myAccount.png" />
- </md-card-content>
- <md-card-content id="gen8">
- <a href="#index">
- <h3>Update your account<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>To modify your address or other information of your account go to the My edu-ID page on <a href="https://eduid.ch/" target="_blank">https://eduid.ch/</a> and update your edu-ID account. If you want to manage your library card numbers, please go to <a href="https://registration.slsp.ch/register/library-card/" target="_blank">https://registration.slsp.ch/register/library-card/</a> </p>
- </md-card-content>
- <md-card-content id="gen9">
- <a href="#index">
- <h3>Set language <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Click on "Menu - Display language" to change the language settings for the current session. If you are signed in, the language set will be saved permanently. You can change your interface language also by entering the "Personal details" section of your account. </p>
- <img width="333" height="211" src="custom/41SLSP_EPF-prod/img/help/setLanguage.png" />
- </md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="online">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Online resources</h2></a>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
-
- <md-card-content id="onl1">
- <a href="#index">
- <h3>Online resources<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>All kinds of online resources offered by the participating libraries are indexed in the search: books, journals, databases, digitized photos, maps, manuscripts and other collection items. However, not all documents are freely accessible. Many documents are acquired with what is known as a licence and are only available in the network of the licensing university. With the aid of filters, you can narrow the search down to freely accessible (Online - Open Access) or licenced (Online) documents. </p>
- <img width="233" height="218" src="custom/41SLSP_EPF-prod/img/help/showonly.png" />
- <p>
- For online resources, the "View Online" section in the full display provides information about the availability of the resource in your institution and in others IZs of the SLSP Network. To access the resource,
- click on the icon <img width="41" height="42" src="custom/41SLSP_EPF-prod/img/help/viewOnlineIcon.png" />
- </p>
- <img width="935" height="462" src="custom/41SLSP_EPF-prod/img/help/viewOnline.png" />
- </md-card-content>
- <md-card-content id="onl2">
- <a href="#index">
- <h3>Online services for university members<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>In addition to Open Access documents, you can use your university's online services. E-journals, eBooks and databases are acquired with what are known as licences and the access is restricted exclusively to the network of the licensing institution (on campus). From outside the university, you can use VPN, Eduroam, EZProxy, etc. to access these documents. Please check your library or IT university's website for remote access information. </p>
- <p>
- The "View Online" section provides available services for the resource at your institution and in other institution zones of the SLSP Network. Click on "Available online"
- and the icon <img width="41" src="custom/41SLSP_EPF-prod/img/help/viewOnlineIcon.png" />to get the full display view.
- </p>
- <img width="935" height="170" src="custom/41SLSP_EPF-prod/img/help/availOnline.png" />
- <img width="935" height="439" src="custom/41SLSP_EPF-prod/img/help/availOnlineFull.png" />
- </md-card-content>
- <md-card-content id="onl3">
- <a href="#index">
- <h3>Online services for people who are not members of a university <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>In addition to Open Access and online resources under a national licence, you can also use the universities' licensed resources, albeit not from your own computer. </p>
- <p>Academic e-journals, eBooks and databases are acquired with what are known as licences and the access is restricted exclusively to the network of the licensing institution (on campus). You can download and/or access the resources on premise of the licensing library. </p>
- <p>Which libraries offer access to an online resource are displayed under locations: </p>
- <img width="935" height="170" src="custom/41SLSP_EPF-prod/img/help/availOnline2.png" />
- <img width="935" height="345" src="custom/41SLSP_EPF-prod/img/help/locationItems.png" />
- </md-card-content>
- <md-card-content id="onl4">
- <a href="#index">
- <h3>Open Access<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Open Access documents are freely accessible. These are journal articles or books on various platforms or in institutional repositories on the one hand and digitized documents from library holdings on the other. These documents are marked in the list of results. </p>
- <img width="935" height="188" src="custom/41SLSP_EPF-prod/img/help/openAccess.png" />
- </md-card-content>
- <md-card-content id="onl5">
- <a href="#index">
- <h3>National licenses<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>All people who reside in Switzerland have access to online resources under the national license. This requires a one-off free registration; further information is available at the address <a href="https://consortium.ch/zugriff/?lang=en" target="_blank">https://consortium.ch/zugriff/?lang=en </a>. Resources available under a National licence are marked in bracket in the "Full text availability" section.</p>
- <img width="935" height="160" src="custom/41SLSP_EPF-prod/img/help/NationalLicenses.png" />
- </md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="borrow">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Borrowing/requesting documents </h2></a>
- </md-card-title-text>
- </md-card-title>
- <md-card-content id="bor1">
- <a href="#index">
- <h3>Borrowing/requesting documents<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Under "Get It" in the full display, you can see the libraries where the document is located and whether it is currently available.</p>
- <p>Under "Other options" you can see if SLSP libraries from other IZs also have this item available.</p>
- <img width="935" height="455" src="custom/41SLSP_EPF-prod/img/help/getIt.png" />
- <p>Select your desired request option: Request (physical item), Digitization (electronic or paper copy) or Resource Sharing. You must be signed in to place an order. </p>
- <img width="935" height="349" src="custom/41SLSP_EPF-prod/img/help/requestOption.png" />
- <p>If you select Request, you can request a physical item to pick-up at a library. You can also order some items per post. If this option is allowed, you can choose it by selecting your institution in the "Pick-up institution" field and Home Address in the "Pick-up location" field. </p>
- <p>If you would like to get an electronic or paper copy of an article or chapter, click on Digitization and fill in the form with as much details as possible. </p>
- <p><strong>Note:</strong> These services may not be available in your IZ / library and may be subject to costs. For further information click <a href="https://slsp.ch/fees" target="_blank">here</a>. </p>
- </md-card-content>
- <md-card-content id="bor2">
- <a href="#index">
- <h3>Interlibrary Loan Requests<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>
- Despite the SLSP network offers access to more than 17 million of physical bibliographic records and an uncountable number of electronic resources, it is possible your item is not available.
- In this case, we invite you to fill in this <a href="https://slsp.ch/en" target="_blank">form</a>, your library will take care of your request.
- </p>
- <p><strong>Note:</strong> This offer may not be available in your IZ / library and may be subject to additional fees. For more information about the possible fees please, <a href="https://slsp.ch/fees" target="_blank">consult this page</a>.</p>
- </md-card-content>
- <md-card-content id="bor3">
- <a href="#index">
- <h3>Extending loan periods <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>In My Account, you see your current loans and can renew them all or individually, provided this is permitted by the loan conditions. </p>
- <img width="935" height="524" src="custom/41SLSP_EPF-prod/img/help/renewLoans.png" />
- <p><strong>Note:</strong> The new loan period always runs as of immediately. If you renew a document yourself before the automatic loan period ends, the maximum possible loan period becomes shorter. </p>
- <p><strong>Note:</strong> Loan conditions may vary depending on the institutions and type of material.</p>
- </md-card-content>
- <md-card-content id="bor4">
- <a href="#index">
- <h3>List of previous loans <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>In My Account, in every the "Loans" section of the IZs, you can see your active and previous loans. </p>
- <img width="352" height="150" src="custom/41SLSP_EPF-prod/img/help/activeLoans.png" />
- <p><strong>Note:</strong> In some institutions zones / libraries this option is not available due to cantonal privacy laws restrictions. </p>
- </md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="search">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Searching</h2></a>
- </md-card-title-text>
- </md-card-title>
- <md-card-content id="sea1">
- <a href="#index">
- <h3>SLSP search profiles <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>SLSP operates with two standard search profiles that can be found in every view. The first is "All SLSP libraries", the second is "My Library". This infographic explains where you search while using one of the two. In certain institution zones or library views it is possible to find additional custom search profiles created by the institution zone / library. </p>
- <img width="935" height="899" src="custom/41SLSP_EPF-prod/img/help/infographic_en.png" />
- <p><strong>My library:</strong> Includes the local inventory of the institution zone / library + external resources loaded in this institution zone (general and local) + CDI (CDI could also be used as a separate search profile). This search profile is always named after the institution. </p>
- <p><strong>All SLSP libraries:</strong> All records of the SLSP network + general external resources + CDI </p>
- <p><strong>Custom Search Profile:</strong> Some institution zones / libraries prepared their own search profiles including Custom Local Data Scope(s). </p>
- <p><strong>Central Discovery Index (CDI):</strong> Is a central database comprehensive of thousands of sources for a total of more than 3 billion of records such as: journals articles, e-books, dissertations, conference proceedings, patents, reports, government document, images and videos. Depending on the institution zone / library view, the CDI is searchable in the "My Library" search profile, in a separate search profile or both. </p>
- <p><strong>General External resources:</strong> Swisscovery has been enriched by adding general electronic external resources. A detailed list of these resources is available here. </p>
- <p><strong>Local external resources:</strong> In addition to the general external resource, some institution zones also provide local external resource. </p>
- </md-card-content>
- <md-card-content id="sea2">
- <a href="#index">
- <h3>Simple search<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>The simple search enables a rapid access to the library resources. </p>
- <img width="935" src="custom/41SLSP_EPF-prod/img/help/simpleSearch.png" />
- </md-card-content>
- <md-card-content id="sea3">
- <a href="#index">
- <h3>Advanced search <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>The search fields of the advanced search can be combined with AND, OR or NOT. </p>
- <img width="935" height="426" src="custom/41SLSP_EPF-prod/img/help/advancedSearch.png" />
- <p>In this example the search is limited to books in English that contain "mountain railway*" in the title and Switzerland as a subject. </p>
- <p>With the aid of the second (or third field), you can specify whether the search terms should be contained in the field or if it must correspond exactly at the search terms.</p>
- <img width="408" height="57" src="custom/41SLSP_EPF-prod/img/help/advancedField1.png" /><br />
- <p>Here you can put a few words from the title, not necessarily in order</p>
- <img width="408" height="70" src="custom/41SLSP_EPF-prod/img/help/advancedField2.png" />
- <p>Here you are looking for this exact title</p>
- <img width="408" height="62" src="custom/41SLSP_EPF-prod/img/help/advancedField3.png" />
- <p>And here, you're looking for titles that start with the word "mountain"</p>
- </md-card-content>
- <md-card-content id="sea4">
- <a href="#index">
- <h3>Searching for a phrase <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>If you would like to search for a phrase (word group), put it in quotation marks. You can combine phrases and words in a search: </p>
- <img width="935" height="85" src="custom/41SLSP_EPF-prod/img/help/searchPhrase.png" />
- <p>The results include documents that contain both the term "piz buin" and the aspect "mountain". </p>
- </md-card-content>
- <md-card-content id="sea5">
- <a href="#index">
- <h3>Searching with wildcards <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>The asterisk * and the question mark ? can be used as wildcards for the search.</p>
- <p>The asterisk * is used to replace zero, one or several characters: </p>
- <img width="935" height="74" src="custom/41SLSP_EPF-prod/img/help/searchWildcard1.png" />
- <p>For example, it allow to searches for culture, cultures, cultural etc. </p>
- <p>The asterisk * can also help to find different spellings: </p>
- <img width="935" height="77" src="custom/41SLSP_EPF-prod/img/help/searchWildcard2.png" />
- <p>searches for yogurt, yoghurt, yogourt, yoghourt, etc.</p>
- <p>The question mark ? is the wildcard for replacing one single character: </p>
- <img width="935" height="84" src="custom/41SLSP_EPF-prod/img/help/searchWildcard3.png" />
- <p>searches for both woman and women.</p>
- <p>You can also combine these two characters: </p>
- <img width="935" height="84" src="custom/41SLSP_EPF-prod/img/help/searchWildcard4.png" />
- <p>You'll get results with yoghurt, yogurt, yoghurts or yogurts.</p>
- </md-card-content>
- <md-card-content id="sea6">
- <a href="#index">
- <h3>Using Boolean operators to expand or narrow a search<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>You can use the Boolean operators AND, OR and NOT. These must be written in capital letters. </p>
- <p>Without operators, the search terms are automatically combined with AND. In other words, all search terms must appear in the results. </p>
- <p><strong>OR</strong></p>
- <p>At least one of the search terms linked with OR must appear in the results. For example, use OR to combine related terms in order to expand the search to several terms (synonyms, different spellings):</p>
- <img width="935" height="76" src="custom/41SLSP_EPF-prod/img/help/searchOR.png" />
- <p><strong>NOT</strong></p>
- <p>The search term excluded with NOT must not appear in the results. In other words, NOT enables words or phrases to explicitly be excluded. </p>
- <p><strong>NOTE:</strong> The Boolean operator NOT is available only in the simple search </p>
- <img width="935" height="79" src="custom/41SLSP_EPF-prod/img/help/searchNOT.png" />
- <p>The results include documents that contain the phrases "climate change", but not "global warming". </p>
- </md-card-content>
- <md-card-content id="sea7">
- <a href="#index">
- <h3>My Favorites<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>In "My Favorites", you can save titles that you find during your search. Long-term saving is only possible if you are signed in. As a guest, the favorites are only at your disposal during the current browser session. </p>
- <p>
- If you click on the pin icon
- <img width="14" height="18" src="custom/41SLSP_EPF-prod/img/help/pinIcon1.png" /> of a title, the title is added to your favorites; the pin icon changes to
- <img width="14" height="15" src="custom/41SLSP_EPF-prod/img/help/pinIcon2.png" />. If you click on
- <img width="14" height="15" src="custom/41SLSP_EPF-prod/img/help/pinIcon2.png" />, the title is removed from the favorites.
- </p>
- <p>
- You can access your collection of favorites via the pin icon
- <img width="14" height="18" src="custom/41SLSP_EPF-prod/img/help/pinIcon1.png" /> at the top right of the page.
- </p>
- <p>You can remove or export individual titles from your favorites list. Highlight one or several titles and use the symbols at the top of the page in order to delete them, add labels, export them to reference management programs, print them or send them via email: </p>
- <img width="935" height="481" src="custom/41SLSP_EPF-prod/img/help/myFavorites.png" />
- <p>In order to view the details of a title, click on the title. </p>
- <p>You will also find the search history for the current session in "My favorites". </p>
- </md-card-content>
- <md-card-content id="sea8">
- <a href="#index">
- <h3>Search history<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>The searches from the current session are recorded in your favorites under "Search history".</p>
- <p>
- You reach it directly via the icon
- <img width="30" height="30" src="custom/41SLSP_EPF-prod/img/help/searchHistoryIcon.png" />at the top right of the page.
- </p>
- <img width="470" height="311" src="custom/41SLSP_EPF-prod/img/help/searchHistory.png" />
- </md-card-content>
- <md-card-content id="sea9">
- <a href="#index">
- <h3>Saving and managing searches<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>If you are signed in, you can save searches permanently. To do so, click on "Save query" above the list of results: </p>
- <img width="935" height="148" src="custom/41SLSP_EPF-prod/img/help/saveQuery.png" />
- <p><strong>NOTE:</strong> The "Save query" option is only displayed if you are signed in and have submitted a search. </p>
- <p>When saving your query, you can receive email notifications when there is an update to the query. To activate this service a message will appear automatically at the top of the page.</p>
- <img width="935" height="73" src="custom/41SLSP_EPF-prod/img/help/emailNotification.png" /><br />
- <img width="418" height="333" src="custom/41SLSP_EPF-prod/img/help/emailNotificationSettings.png" />
- <p>
- The saved searches are stored in "My Favorites"
- <img width="14" height="18" src="custom/41SLSP_EPF-prod/img/help/pinIcon1.png" /> in the tab "Saved searches".
- </p>
- <img width="935" height="250" src="custom/41SLSP_EPF-prod/img/help/savedSearches.png" />
- <p>You can perform the search again by clicking it. You can set up a notification (by RSS or email) using the symbols on the right to keep you informed of newly added documents that match you search. </p>
- </md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="display">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Displaying the results</h2></a>
- </md-card-title-text>
- </md-card-title>
- <md-card-content id="dis1">
- <a href="#index">
- <h3>Narrowing down results<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Filtering terms are proposed on the left-hand column which enable you to narrow down your search results: </p>
- <img width="302" height="195" src="custom/41SLSP_EPF-prod/img/help/facets1.png" />
- <p>Clicking on "Books" limits the list of results to the 4'075 books found. </p>
- <p>In order to exclude a term, click on the red symbol on the right next to the term. </p>
- <img width="320" height="215" src="custom/41SLSP_EPF-prod/img/help/facets2.png" />
- <p>With "Show more", you can display additional terms and refine the search by including or excluding several terms. </p>
- <p>Example: Narrow down the results to "dissertations", "videos" and "audios".</p>
- <img width="349" height="506" src="custom/41SLSP_EPF-prod/img/help/facets3.png" />
- <p>In order to remove one filter, click on the x. "Reset filters" removes all filters. </p>
- <img width="313" height="228" src="custom/41SLSP_EPF-prod/img/help/filters1.png" />
- <p>A new search entry automatically removes all filters. However, you can retain a filter for the duration of the browser session by selecting it and then clicking on the lock symbol. To remove this filter, click on the lock again. </p>
- <img width="273" height="241" src="custom/41SLSP_EPF-prod/img/help/filters2.png" />
- </md-card-content>
- <md-card-content id="dis2">
- <a href="#index">
- <h3>List of results: sorting<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>By default, the results are sorted by relevance. You can also sort them by date, author and title. </p>
- <img width="177" height="315" src="custom/41SLSP_EPF-prod/img/help/sorting.png" />
- </md-card-content>
- <md-card-content id="dis3">
- <a href="#index">
- <h3>List of results: versions <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>If a work is available in several versions (i.e. in different editions or prints), click on the icon, the title or "See all versions" to list all the versions. </p>
- <img width="512" height="193" src="custom/41SLSP_EPF-prod/img/help/versions.png" />
- <p>You can return to the list of results by closing the list of versions under "Active filters". </p>
- <img width="263" height="191" src="custom/41SLSP_EPF-prod/img/help/activeFilters.png" />
- </md-card-content>
- <md-card-content id="dis4">
- <a href="#index">
- <h3>Viewing individual titles <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>When you click on a title, you can select the following actions: </p>
- <img width="144" height="274" src="custom/41SLSP_EPF-prod/img/help/fullViewNavigation.png" />
- <p><strong>Top:</strong> go back at the top of the page</p>
- <p><strong>Send to: </strong> export title information to reference management program, export citation, create permalink to result, print or send title by email. Export actions can be applied in bulk up to 50 records. </p>
- <p><strong>How to get it:</strong> view locations, place orders for loans, reservations or photocopies.</p>
- <p><strong>Details:</strong> further information on the title.</p>
- <p><strong>Links:</strong> links to table of contents, to earlier/later title, to all volumes of a series.</p>
- <p><strong>Virtual browse:</strong> you can see a library shelf in relation to the selected record so that you may find other items that are related to their search. </p>
- </md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="questions">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Questions?</h2></a>
- </md-card-title-text>
- </md-card-title>
- <md-card-content id="que1">
- <a href="mailto:library@epfl.ch">
- <h3>Contact information<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>For any question, doubt, comment or request don't hesitate to <a href="mailto:library@epfl.ch" target="_blank">contact us</a></p>
-
- </md-card-content>
-
- </md-card>
-
- </div>
-
-
-
- </div>
-
-</md-content>
diff --git a/primo-explore/custom/41SLSP_EPF-test/html/help/help_fr.html b/primo-explore/custom/41SLSP_EPF-test/html/help/help_fr.html
deleted file mode 100644
index e9dc78e..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/html/help/help_fr.html
+++ /dev/null
@@ -1,501 +0,0 @@
-
-<md-content id="help">
- <div class="ps_content md-padding" layout-gt-sm="row" layout-align="center center">
- <div flex="100" flex-md="100" flex-lg="80" flex-xl="60" layout="column">
- <md-card class="default-card">
- <md-card-title>
- <md-card-title-text>
- <h1 class="md-headline"><b>swisscovery Help Page</b></h1>
- </md-card-title-text>
- </md-card-title>
-
- </md-card>
-
- <md-card class="default-card">
-
- <md-card-content>
- <h4>Introduction:</h4>
- <p>Cher usager,</p>
- <p>Bienvenue sur la page d'aide de swisscovery.</p>
- <p>Swisscovery est l'outil de d&eacute;couverte de <a href="https://slsp.ch/en" target="_blank">Swiss Library Service Platform Network (SLSP)</a>. Sur cette page, vous trouverez des informations utiles sur la mani&egrave;re d'utiliser swisscovery et sur l'organisation du r&eacute;seau de SLSP.</p>
- <p>Attention: cette page d'aide a &eacute;t&eacute; cr&eacute;&eacute;e pour l'ensemble du r&eacute;seau SLSP! Cela signifie que certains services peuvent ne pas &ecirc;tre disponibles dans cette interface usager sp&eacute;cifique. Veuillez noter que la page d'accueil ou l'affichage complet de la notice peut varier d'une institution &agrave; l'autre par rapport &agrave; ce qui est pr&eacute;sent&eacute; ici.</p>
- </md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="index">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Index</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <h3><a href="#general">G&eacute;n&eacute;ral</a></h3>
- <ul>
- <!--<li><a href="#gen1">Br&egrave;ve introduction vid&eacute;o &agrave; swisscovery</a></li>-->
- <li><a href="#gen2">SLSP: Swiss Library Service Platform</a></li>
- <li><a href="#gen3">R&eacute;seau SLSP</a></li>
- <li><a href="#gen4">Cr&eacute;er un compte</a></li>
- <li><a href="#gen5">Carte de biblioth&egrave;que</a></li>
- <li><a href="#gen6">Comment s'identifier et se d&eacute;connecter</a></li>
- <li><a href="#gen7">Mon compte</a></li>
- <li><a href="#gen8">Mettre &agrave; jour votre compte</a></li>
- <li><a href="#gen9">D&eacute;finir la langue</a></li>
- </ul>
- <h3><a href="#online">Ressources en ligne</a></h3>
- <ul>
- <li><a href="#onl1">Ressources en ligne</a></li>
- <li><a href="#onl2">Ressources en ligne pour les membres des Universit&eacute;s</a> </li>
- <li><a href="#onl3">Ressources en ligne pour les personnes qui ne sont pas membres d'une Universit&eacute;</a></li>
- <li><a href="#onl4">Open Access </a></li>
- <li><a href="#onl5">Licences nationales</a></li>
- </ul>
- <h3><a href="#borrow">Emprunter/demander des documents</a></h3>
- <ul>
- <li><a href="#bor1">Emprunter/demander des documents</a></li>
- <li><a href="#bor2">Demandes de pr&ecirc;t entre biblioth&egrave;ques en dehors du r&eacute;seau SLSP</a></li>
- <li><a href="#bor3">Prolonger le d&eacute;lai de pr&ecirc;t</a></li>
- <li><a href="#bor4">Liste des pr&ecirc;ts pr&eacute;c&eacute;dents</a></li>
- </ul>
- <h3><a href="#search">Rechercher</a></h3>
- <ul>
- <li><a href="#sea1">Profils de recherche de SLSP</a></li>
- <li><a href="#sea2">Recherche simple</a></li>
- <li><a href="#sea3">Recherche avanc&eacute;e</a></li>
- <li><a href="#sea4">Rechercher une expression</a></li>
- <li><a href="#sea5">Rechercher avec des caract&egrave;res g&eacute;n&eacute;riques</a></li>
- <li><a href="#sea6">Utiliser les op&eacute;rateurs bool&eacute;ens pour &eacute;tendre ou restreindre une recherche</a></li>
- <li><a href="#sea7">Mes favoris</a></li>
- <li><a href="#sea8">Historique des recherches</a></li>
- <li><a href="#sea9">Enregistrer et g&eacute;rer les recherches</a></li>
- <!--<li><a href="#sea10">Citation Linker </a></li>-->
- </ul>
- <h3><a href="#display">Afficher les r&eacute;sultats</a></h3>
- <ul>
- <li><a href="#dis1">Limiter le nombre de r&eacute;sultats</a></li>
- <li><a href="#dis2">Liste de r&eacute;sultats: tri</a></li>
- <li><a href="#dis3">Liste de r&eacute;sultats: versions</a> </li>
- <li><a href="#dis4">Afficher des titres individuels</a></li>
- </ul>
- <h3><a href="#questions">Des questions?</a></h3>
- <ul>
- <li><a href="#que1">Informations de contact</a></li>
- </ul>
- </md-card-content>
- </md-card>
-
- <md-card class="default-card" id="general">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">G&eacute;n&eacute;ral</h2></a>
- </md-card-title-text>
- </md-card-title>
- <!--<md-card-content id="gen1">
- <a href="#index"><h3>Br&egrave;ve introduction vid&eacute;o &agrave; swisscovery<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3></a>
- <div class="resp-container">
- <iframe class="resp-iframe" src="https://www.youtube.com/embed/1fZwnu_nzPU" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
- </div>
- </md-card-content>r-->
- <md-card-content id="gen2">
- <a href="#index">
- <h3>SLSP: Swiss Library Service Platform<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Swiss Library Service Platform ainsi que sa filiale, le Consortium des biblioth&egrave;ques universitaires suisses, comptant plus de 450 membres, est le plus large r&eacute;seau de biblioth&egrave;ques de recherche universitaires de Suisse. Cr&eacute;&eacute; par des biblioth&egrave;ques pour les biblioth&egrave;ques, il s'agit d'un effort conjoint visant &agrave; offrir un panel de services dans tout le pays tels qu'un catalogue multilingue partag&eacute; d'informations scientifiques, une repr&eacute;sentation unique de l'octroi de licences pour les ressources &eacute;lectroniques et un r&eacute;seau performant de navettes dans le cadre du partage des exemplaires physiques.</p>
- <p>SLSP repr&eacute;sente une avanc&eacute;e novatrice et significative dans l'&eacute;volution num&eacute;rique des biblioth&egrave;ques scientifiques en Suisse. En g&eacute;rant le syst&egrave;me bas&eacute; dans le cloud Alma, l'organisation rassemble les informations scientifiques conserv&eacute;es dans les biblioth&egrave;ques sur tout le territoire. En rendant ces informations accessibles et faciles &agrave; trouver, SLSP contribue &agrave; la d&eacute;couverte et au progr&egrave;s scientifiques.</p>
-</md-card-content>
- <md-card-content id="gen3">
- <a href="#index">
- <h3>R&eacute;seau SLSP<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>Le r&eacute;seau SLSP est divis&eacute; en plusieurs &laquo;zones&raquo;. SLSP g&egrave;re la zone r&eacute;seau (NZ) appel&eacute;e swisscovery, tandis que les biblioth&egrave;ques ont &eacute;t&eacute; r&eacute;parties en 29 "zones institutionnelles" (IZ).</p>
- <p>Une zone institutionnelle (IZ) est un groupe de biblioth&egrave;ques ayant des besoins similaires. L'IZ est un &eacute;l&eacute;ment-cl&eacute; du syst&egrave;me SLSP, il permet des associations et accro&icirc;t l'efficacit&eacute;. Au sein de SLSP, nous distinguons deux types de zone institutionnelles: les zones &agrave; entit&eacute; unique et les zones &agrave; entit&eacute; mixte.</p>
- <p>Dans une zone &agrave; entit&eacute; unique, les biblioth&egrave;ques sont li&eacute;es &agrave; une entit&eacute; principale d'un point de vue juridique (par exemple une Universit&eacute;). Dans une zone &agrave; entit&eacute; mixte, les biblioth&egrave;ques sont li&eacute;es &agrave; diff&eacute;rentes entit&eacute;s juridiques (elles sont par exemple group&eacute;es ensemble pour des consid&eacute;rations d'ordre g&eacute;ographique).</p>
- <p>Pour acc&eacute;der aux ressources des membres de SLSP, les usagers doivent acc&eacute;der aux interfaces usagers appel&eacute;es &laquo;vues&raquo;. Au sein de SLSP, nous avons pr&eacute;par&eacute; une vue pour la Zone r&eacute;seau (NZ), une vue pour la Zone institutionnelle (IZ) et plusieurs vues pour les biblioth&egrave;ques individuelles.</p>
- <p>Chaque vue dispose de domaines de recherche sp&eacute;cifiques qui donneront des r&eacute;sultats diff&eacute;rents lors de la recherche. La zone r&eacute;seau swisscovery comprend l'ensemble des notices des biblioth&egrave;ques SLSP, certaines ressources externes g&eacute;n&eacute;rales (par exemple la base de donn&eacute;es e-rara) et l'index CDI (Central Discovery Index). Les vues des zones institutionnelles et les vues des biblioth&egrave;ques contiennent l'inventaire local de la zone institutionnelle / biblioth&egrave;que, des ressources externes g&eacute;n&eacute;rales et locales ainsi que l'index CDI.</p>
- <p>Central Discovery Index (CDI): il s'agit d'une base de donn&eacute;es centralis&eacute;e comportant plus de 3 milliards de notices telles que: articles de p&eacute;riodiques, e-books, th&egrave;ses, comptes rendus de conf&eacute;rences, etc.</p>
- <img width="935" height="665" src="custom/41SLSP_EPF-prod/img/help/swisscovery_fre.png" />
- <p>En cliquant sur le <a href="https://slsp.ch/en" target="_blank">lien</a> suivant, vous trouvez la topologie du r&eacute;seau de la SLSP, une liste d&eacute;taill&eacute;e de l'ensemble des biblioth&egrave;ques membres, organis&eacute;e par zone institutionnelle ainsi que le lien vers chaque vue existante de notre r&eacute;seau. Vous y trouvez l'adresse, les coordonn&eacute;es et les services propos&eacute;s par chaque IZ et biblioth&egrave;que.</p>
-</md-card-content>
- <md-card-content id="gen4">
- <a href="#index">
- <h3>Cr&eacute;er un compte<img class="icon_up2" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Pour s'enregistrer sur SLSP, rendez-vous d'abord sur: <a href="https://registration.slsp.ch" target="_blank">https://registration.slsp.ch</a></p>
- <p>Au d&eacute;but de l'enregistrement, il vous est demand&eacute; de vous connecter avec un compte SWITCH edu-ID. Si vous avez d&eacute;j&agrave; un compte SWITCH edu-ID, connectez-vous pour proc&eacute;der &agrave; l'enregistrement. Si vous n'avez pas encore de mot de passe, un lien sur la page de connexion vous permet de le r&eacute;initialiser.</p>
- <p>Si vous n'avez pas encore de compte SWITCH edu-ID, cliquez sur "Cr&eacute;er un compte" sur la page de connexion.</p>
- <p><strong>Remarque:</strong> Si vous &eacute;tudiez dans une Universit&eacute;, il est possible que vous soyez d&eacute;j&agrave; enregistr&eacute;(e) sur SLSP auparavant. Si tel est le cas, un message appara&icirc;tra et vous serez redirig&eacute;(e) vers la page de connexion. </p>
-</md-card-content>
- <md-card-content id="gen5">
- <a href="#index">
- <h3>Carte de biblioth&egrave;que<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Avec votre carte de biblioth&egrave;que, vous avez acc&egrave;s &agrave; tout un panel de services, vous pouvez par exemple emprunter un exemplaire physique dans une biblioth&egrave;que.</p>
- <p>Si vous poss&eacute;dez d&eacute;j&agrave; une carte de biblioth&egrave;que du <a href="https://www.nb.admin.ch/snl/en/home/services/user-services/bibliopass.html" target="_blank">r&eacute;seau BibliOpass</a>, vous pouvez &eacute;ventuellement indiquer ce num&eacute;ro de carte lors de l'enregistrement sur la SLSP ou ult&eacute;rieurement. Certaines cartes de campus / d'Universit&eacute; / d'&eacute;tudiant peuvent &eacute;galement faire office de carte de biblioth&egrave;que. De m&ecirc;me, certaines Universit&eacute;s fourniront le num&eacute;ro de carte de biblioth&egrave;que &agrave; leurs utilisateurs. Les num&eacute;ros de carte de biblioth&egrave;que associ&eacute;s &agrave; un compte SLSP seront affich&eacute;s pendant le processus d'enregistrement sur SLSP (voir le chapitre "Cr&eacute;er un compte"). </p>
- <p>Si vous ne poss&eacute;dez pas de carte de biblioth&egrave;que, vous pouvez demander &agrave; votre biblioth&egrave;que de vous en fournir une.</p>
-</md-card-content>
- <md-card-content id="gen6">
- <a href="#index">
- <h3>Comment s'identifier et se d&eacute;connecter<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Dans swisscovery: cliquez sur &laquo;S'identifier&raquo; - choisissez votre zone institutionnelle - cliquez sur &laquo;SWITCH edu-ID&raquo; - entrez votre adresse e-mail et votre mot de passe - cliquez sur &laquo;Connexion&raquo;</p>
- <p>Dans la vue de votre zone institutionnelle / biblioth&egrave;que: cliquez sur &laquo;S'identifier&raquo; -- cliquez sur &laquo;SWITCH edu-ID&raquo; - entrez votre adresse e-mail et votre mot de passe - cliquez sur &laquo;Connexion&raquo;</p>
- <img width="460" height="74" src="custom/41SLSP_EPF-prod/img/help/signin_fre.png" />
- <p>Vous devez &ecirc;tre connect&eacute;(e) pour proc&eacute;der aux actions suivantes:</p>
- <ul>
- <li>Demander des documents (pr&ecirc;t, demande de num&eacute;risation, pr&ecirc;t entre biblioth&egrave;ques)</li>
- <li>Afficher et surveiller vos pr&ecirc;ts et demandes en provenance de biblioth&egrave;ques du r&eacute;seau de SLSP.</li>
- <li>Prolonger un d&eacute;lai de pr&ecirc;t, annuler des r&eacute;servations</li>
- <li>Sauvegarder vos favoris</li>
- <li>Enregistrer les requ&ecirc;tes et activer des notifications</li>
- <li>Modifier la langue de mani&egrave;re d&eacute;finitive</li>
- </ul>
- <p>En tant qu'invit&eacute;, vos favoris, demandes de recherche et la langue s&eacute;lectionn&eacute;e ne peuvent &ecirc;tre enregistr&eacute;s que pour la session de navigation courante.</p>
- <p>D&eacute;connectez-vous apr&egrave;s une session pour prot&eacute;ger votre compte d'un &eacute;ventuel acc&egrave;s par d'autres usagers.</p>
- <h4>NOTE:</h4>
- <p>Certaines ressources en ligne sont accessibles sans identification, mais pour acc&eacute;der &agrave; l'ensemble des ressources disponibles selon votre institution, il est utile de s'identifier.</p>
- <p>
- L'acc&egrave;s aux ressources en ligne d&eacute;pend souvent de votre affiliation &agrave; une Haute Ecole octroyant des licences, p. ex. en tant qu'&eacute;tudiant ou que chercheur. Certaines Hautes Ecoles autorisent les usagers &agrave; acc&eacute;der aux ressources en ligne &agrave; distance (remote access). Pour plus d'informations sur les conditions d'acc&egrave;s aux ressources en ligne, vous pouvez consulter le chapitre &laquo;Ressources en ligne&raquo; sur cette page d'aide, le <a href="https://consortium.ch/?lang=en" target="_blank">Consortium's website</a> ou le site Web de la biblioth&egrave;que.
- </p>
- <p>Ces conditions ne s'appliquent pas aux licences nationales (pour plus d'informations, voir le chapitre correspondant sur cette page d'aide).</p>
-</md-card-content>
- <md-card-content id="gen7">
- <a href="#index">
- <h3>Mon compte<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Vous devez vous identifier pour acc&eacute;der &agrave; votre compte. Une fois identifi&eacute;(e), cliquez sur votre nom situ&eacute; en haut &agrave; droite de la page. Vous acc&eacute;dez &agrave; un menu contenant certains des sous-menus de votre compte. Pour avoir un acc&egrave;s complet aux donn&eacute;es de votre compte, cliquez sur &laquo;Mon compte&raquo;.</p>
- <p>Depuis cette page, vous serez en mesure de consulter vos pr&ecirc;ts, demandes, amendes, messages ainsi que bien d'autres fonctionnalit&eacute;s.</p>
- <p><strong>NOTE:</strong> Chaque zone institutionnelle dispose de son propre espace. Cela signifie que si vous empruntez une ressource &agrave; la zone institutionnelle &laquo; EPF Lausanne &raquo; par exemple, et une autre &agrave; la zone institutionnelle &laquo; ETH Zurich &raquo;, vos emprunts sont r&eacute;partis sur des pages diff&eacute;rentes, voir ci-dessous: </p>
- <img width="935" height="627" src="custom/41SLSP_EPF-prod/img/help/myAccount_fre.png" />
-</md-card-content>
- <md-card-content id="gen8">
- <a href="#index">
- <h3>Mettre &agrave; jour votre compte<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Pour modifier votre adresse ou toute autre information concernant votre compte, allez sur la page Mon edu-ID sur <a href="https://eduid.ch/" target="_blank">https://eduid.ch/</a> et mettez &agrave; jour votre compte edu-ID. Veuillez noter que les modifications effectu&eacute;es sur &laquo;Mon compte&raquo; dans swisscovery ou dans les zones institution seront &eacute;cras&eacute;es par les informations provenant d'edu-ID. Si vous souhaitez g&eacute;rer vos num&eacute;ros de carte de biblioth&egrave;que, allez sur <a href="https://registration.slsp.ch/register/library-card/" target="_blank">https://registration.slsp.ch/register/library-card/</a> </p>
-</md-card-content>
- <md-card-content id="gen9">
- <a href="#index">
- <h3>D&eacute;finir la langue <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Cliquez sur votre nom, puis sur &laquo;Langue d'affichage&raquo; pour modifier la langue pour la session actuelle. Si vous &ecirc;tes connect&eacute;(e), la langue que vous d&eacute;finissez sera enregistr&eacute;e de mani&egrave;re permanente. Vous pouvez &eacute;galement modifier la langue de votre interface en remplissant la section &laquo;informations personnelles&raquo; de votre compte.</p>
- <img width="333" height="211" src="custom/41SLSP_EPF-prod/img/help/setLanguage_fre.png" />
-</md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="online">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Ressources en ligne</h2></a>
-</md-card-title-text>
- </md-card-title>
- <md-card-content>
-
- <md-card-content id="onl1">
- <a href="#index">
- <h3>Ressources en ligne<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Lors d'une recherche, l'ensemble des ressources propos&eacute;es par les biblioth&egrave;ques participantes sont index&eacute;es: livres, p&eacute;riodiques, bases de donn&eacute;es, photos num&eacute;ris&eacute;es, cartes, manuscrits et autres objets. Toutefois, tous les documents ne sont pas en libre acc&egrave;s. De nombreux documents n&eacute;cessitent une licence et ne sont disponibles que dans le r&eacute;seau de l'Universit&eacute; qui poss&egrave;de la licence. l'aide de filtres, vous pouvez restreindre la recherche aux documents sous licence et en libre-acc&egrave;s (Online) ou s&eacute;lectionner uniquement les documents en libre acc&egrave;s (Online - Open Access).</p>
- <img width="233" height="218" src="custom/41SLSP_EPF-prod/img/help/showonly_fre.png" />
- <p>
- Pour les ressources en ligne, la section &laquo;Consulter en ligne&raquo; dans l'affichage complet donne des informations sur la disponibilit&eacute; de la ressource dans votre institution et dans d'autres IZ du r&eacute;seau de SLSP. Pour acc&eacute;der &agrave; la ressource, cliquez sur l'ic&ocirc;ne <img width="41" height="42" src="custom/41SLSP_EPF-prod/img/help/viewOnlineIcon.png" />
- </p>
- <img width="935" height="462" src="custom/41SLSP_EPF-prod/img/help/viewOnline_fre.png" />
-</md-card-content>
- <md-card-content id="onl2">
- <a href="#index">
- <h3>Ressources en ligne pour les membres des Universit&eacute;s<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>Outre les documents en libre-acc&egrave;s (Open Access), vous pouvez utiliser les services en ligne de votre Universit&eacute;. Les p&eacute;riodiques &eacute;lectroniques, e-books et bases de donn&eacute;es sont acquises via des licences et l'acc&egrave;s est limit&eacute; exclusivement au r&eacute;seau de l'institution licenci&eacute;e licences (sur le campus). En dehors de l'Universit&eacute;, vous pouvez utiliser un acc&egrave;s VPN, Eduroam, EZProxy, etc. pour acc&eacute;der &agrave; ces documents. Veuillez consulter le site du service informatique de votre biblioth&egrave;que ou Universit&eacute; pour obtenir plus d'informations sur l'acc&egrave;s &agrave; distance.</p>
- <p>
- La section &laquo;Consulter en ligne&raquo; indique les services disponibles pour les ressources dans votre institution et dans d'autres zones institutionnelles du r&eacute;seau de SLSP. Cliquez sur &laquo;Disponible en ligne&raquo; et sur l'ic&ocirc;ne <img width="41" src="custom/41SLSP_EPF-prod/img/help/viewOnlineIcon.png" />pour obtenir l'affichage complet.
- </p>
- <img width="935" height="170" src="custom/41SLSP_EPF-prod/img/help/availOnline_fre.png" />
- <img width="935" height="439" src="custom/41SLSP_EPF-prod/img/help/availOnlineFull_fre.png" />
-</md-card-content>
- <md-card-content id="onl3">
- <a href="#index">
- <h3>Ressources en ligne pour les personnes qui ne sont pas membres d'une Universit&eacute;<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Outre les ressources en libre acc&egrave;s (Open Access) et les ressources en ligne sous licence nationale, vous pouvez utiliser les ressources sous licence des Universit&eacute;s &agrave; condition d'&ecirc;tre dans leurs locaux.</p>
- <p>Les p&eacute;riodiques &eacute;lectroniques, e-books et bases de donn&eacute;es universitaires sont acquises via des licences et l'acc&egrave;s est limit&eacute; exclusivement au r&eacute;seau de l'institution licenci&eacute;e (sur le campus). Vous pouvez ainsi t&eacute;l&eacute;charger et/ou avoir acc&egrave;s aux ressources dans les locaux de la biblioth&egrave;que.</p>
- <p>Les biblioth&egrave;ques donnant acc&egrave;s &agrave; une ressource en ligne sont affich&eacute;es dans localisations:</p>
- <img width="935" height="170" src="custom/41SLSP_EPF-prod/img/help/availOnline2_fre.png" />
- <img width="935" height="345" src="custom/41SLSP_EPF-prod/img/help/locationItems_fre.png" />
-</md-card-content>
- <md-card-content id="onl4">
- <a href="#index">
- <h3>Open Access<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Les documents &laquo; Open Access &raquo; sont libres d'acc&egrave;s. Il s'agit d'une part d'articles de p&eacute;riodiques ou d'e-books sur diff&eacute;rentes plateformes ou dans des r&eacute;pertoires institutionnels, et d'autre part de documents num&eacute;ris&eacute;s des biblioth&egrave;ques. Ces documents sont indiqu&eacute;s dans la liste de r&eacute;sultats avec une ic&ocirc;ne &laquo; open access &raquo;.</p>
- <img width="935" height="188" src="custom/41SLSP_EPF-prod/img/help/openAccess_fre.png" />
-</md-card-content>
- <md-card-content id="onl5">
- <a href="#index">
- <h3>Licences nationales<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Toute personne r&eacute;sidant en Suisse a acc&egrave;s aux licences nationales. Cela requiert un enregistrement unique gratuit; vous trouvez plus d'informations sur <a href="https://consortium.ch/zugriff/?lang=en" target="_blank">https://consortium.ch/zugriff/?lang=en </a>. Veuillez noter que pour l'enregistrement destin&eacute; &agrave; l'acc&egrave;s aux licences nationales, il est possible d'utiliser le m&ecirc;me edu-ID que pour swisscovery. Les ressources disponibles sous licences nationales sont indiqu&eacute;es entre parenth&egrave;ses dans la section &laquo;Disponibilit&eacute; du texte int&eacute;gral&raquo;.</p>
- <img width="935" height="160" src="custom/41SLSP_EPF-prod/img/help/NationalLicenses_fre.png" />
-</md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="borrow">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Emprunter/demander des documents</h2></a>
-</md-card-title-text>
- </md-card-title>
- <md-card-content id="bor1">
- <a href="#index">
- <h3>Emprunter/demander des documents<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Sous &laquo;Obtenir&raquo; dans l'affichage complet, vous pouvez voir les biblioth&egrave;ques o&ugrave; se trouve le document et s'il est disponible. La livraison d'un exemplaire vers une biblioth&egrave;que de retrait peut &ecirc;tre payante.</p>
- <p>Sous &laquo;Autres options&raquo; , vous pouvez voir si des biblioth&egrave;ques d'autres zones institutionnelles SLSP poss&egrave;dent &eacute;galement cet exemplaire.</p>
- <img width="935" height="455" src="custom/41SLSP_EPF-prod/img/help/getIt_fre.png" />
- <p>S&eacute;lectionnez l'option de demande que vous souhaitez: Demander (exemplaire physique/r&eacute;servation) ou Num&eacute;risation (exemplaire &eacute;lectronique ou papier). Vous devez &ecirc;tre connect&eacute;(e) pour effectuer une demande.</p>
- <img width="935" height="349" src="custom/41SLSP_EPF-prod/img/help/requestOption_fre.png" />
- <p>Si vous s&eacute;lectionnez Demander, vous pouvez demander un exemplaire physique &agrave; retirer dans une biblioth&egrave;que. Vous pouvez &eacute;galement demander certains exemplaires via le service d'acc&egrave;s par navette (service payant). Si cette option est propos&eacute;e, vous pouvez l'utiliser en s&eacute;lectionnant votre institution dans le champ &laquo;institution de retrait&raquo; et l'adresse de votre domicile dans le champ &laquo;lieu de retrait&raquo;.</p>
- <p>Si vous souhaitez obtenir un exemplaire &eacute;lectronique ou papier d'un article ou d'un chapitre, cliquez sur Num&eacute;risation et remplissez le formulaire avec autant d'informations que possible.</p>
- <p><strong>Note:</strong>Ces services ne sont pas n&eacute;cessairement disponibles dans votre IZ / biblioth&egrave;que et peuvent &ecirc;tre payants. Pour plus d'informations, <a href="https://slsp.ch/en" target="_blank">cliquez ici</a>. </p>
-</md-card-content>
- <md-card-content id="bor2">
- <a href="#index">
- <h3>Demandes de pr&ecirc;t entre biblioth&egrave;ques<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>
- En d&eacute;pit du fait que le r&eacute;seau SLSP donne acc&egrave;s &agrave; plus de 50 millions d'exemplaires ainsi qu'&agrave; un nombre incalculable de ressources &eacute;lectroniques, il est possible que la publication que vous recherchez ne soit pas disponible. Dans ce cas, vous pouvez faire une demande de pr&ecirc;t entre biblioth&egrave;ques, et le document sera emprunt&eacute; &agrave; une autre biblioth&egrave;que en Suisse ou &agrave; l'&eacute;tranger (service payant). Nous vous invitons &agrave; remplir ce <a href="https://slsp.ch/en" target="_blank">formulaire</a>, votre biblioth&egrave;que s'occupera ensuite de votre demande.
- </p>
- <p><strong>Note:</strong> Ce service peut faire l'objet de frais suppl&eacute;mentaires. Pour obtenir plus d'informations sur les frais &eacute;ventuels, <a href="https://slsp.ch/en" target="_blank">consultez cette page</a>.</p>
-</md-card-content>
- <md-card-content id="bor3">
- <a href="#index">
- <h3>Prolonger les p&eacute;riodes de pr&ecirc;t<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Dans Mon compte, vous pouvez voir vos pr&ecirc;ts en cours et les renouveler tous ou individuellement sous r&eacute;serve que les conditions du pr&ecirc;t le permettent.</p>
- <img width="935" height="524" src="custom/41SLSP_EPF-prod/img/help/renewLoans_fre.png" />
- <!--<p><strong>Note:</strong> The new loan period always runs as of immediately. If you renew a document yourself before the automatic loan period ends, the maximum possible loan period becomes shorter. </p>-->
- <p><strong>Note:</strong> les conditions de pr&ecirc;t peuvent varier en fonction des institutions et du type de mat&eacute;riel.</p>
-</md-card-content>
- <md-card-content id="bor4">
- <a href="#index">
- <h3>Historique des pr&ecirc;ts pass&eacute;s<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Dans Mon compte, dans la section &laquo;Pr&ecirc;ts&raquo; des IZ, vous pouvez voir vos pr&ecirc;ts en cours et pass&eacute;s.</p>
- <img width="352" height="150" src="custom/41SLSP_EPF-prod/img/help/activeLoans_fre.png" />
- <p><strong>Note:</strong> dans certaines zones institutionnelles / biblioth&egrave;ques, cette option n'est pas disponible en raison de restrictions impos&eacute;es par la loi cantonale sur la protection de la vie priv&eacute;e. </p>
-</md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="search">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Rechercher</h2></a>
-</md-card-title-text>
- </md-card-title>
- <md-card-content id="sea1">
- <a href="#index">
- <h3>Profils de recherche de SLSP <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>SLSP fonctionne avec deux profils de recherche standards disponibles dans toutes les vues. Le premier s'intitule &laquo; Toutes les biblioth&egrave;ques SLSP &raquo; et le second &laquo; Ma biblioth&egrave;que &raquo;. Ce sch&eacute;ma explique dans quelle zone est effectu&eacute;e votre recherche lorsque vous utilisez l'un ou l'autre. Dans certaines zones institutionnelles ou vues de biblioth&egrave;que, il est possible d'avoir des profils de recherche suppl&eacute;mentaires personnalis&eacute;s cr&eacute;&eacute;s par la zone institutionnelle / biblioth&egrave;que.</p>
- <img width="935" height="899" src="custom/41SLSP_EPF-prod/img/help/infographig_fre.png" />
- <p><strong>Ma biblioth&egrave;que:</strong> Inclut l'inventaire local de la zone institutionnelle / biblioth&egrave;que + les sources de donn&eacute;es externes t&eacute;l&eacute;charg&eacute;es dans cette zone institutionnelles (sources de donn&eacute;es g&eacute;n&eacute;rales et sources de donn&eacute;es locales ou r&eacute;pertoires institutionnels) + le Central Discovery Index (le CDI peut &eacute;galement &ecirc;tre utilis&eacute; comme profil de recherche distinct). Ce profil de recherche porte toujours le nom de l'institution.</p>
- <p><strong>swisscovery:</strong> inclut l'ensemble des notices du r&eacute;seau SLSP + les sources de donn&eacute;es externes g&eacute;n&eacute;rales + le Central Discovery Index </p>
- <p><strong>Profil de recherche personnalis&eacute;:</strong> certaines zones institutionnelles / biblioth&egrave;ques ont cr&eacute;&eacute; leurs propres profils de recherche, y compris des profils de recherche limit&eacute;s &agrave; des donn&eacute;es locales.</p>
- <p><strong>Central Discovery Index (CDI):</strong> est une base de donn&eacute;es centralis&eacute;e comportant des milliers de ressources pour un total de 3 milliards de notices telles que: articles de revues, e-books, th&egrave;ses, comptes rendus de conf&eacute;rences, brevets, rapports, documents gouvernementaux, images, vid&eacute;os, etc. Suivant la vue zone institutionnelle / biblioth&egrave;que, il est possible de chercher dans le CDI par le profil de recherche &laquo;Ma biblioth&egrave;que&raquo;, par un profil de recherche distinct ou par les deux profils </p>
- <p><strong>Ressources externes g&eacute;n&eacute;rales:</strong> swisscovery s'est vu dot&eacute; de ressources &eacute;lectroniques externes g&eacute;n&eacute;rales, en particulier de r&eacute;pertoires institutionnelles.</p>
- <p><strong>Ressources externes locales:</strong> outre les ressources externes g&eacute;n&eacute;rales, certaines zones institutionnelles proposent &eacute;galement des ressources externes locales.</p>
-</md-card-content>
- <md-card-content id="sea2">
- <a href="#index">
- <h3>Recherche simple<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>La recherche simple permet d'acc&eacute;der rapidement aux ressources de la biblioth&egrave;que.</p>
- <img width="935" src="custom/41SLSP_EPF-prod/img/help/simpleSearch_fre.png" />
-</md-card-content>
- <md-card-content id="sea3">
- <a href="#index">
- <h3>Recherche avanc&eacute;e <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Les champs de recherche de la recherche avanc&eacute;e peuvent &ecirc;tre combin&eacute;s avec ET, OU ou SAUF.</p>
- <img width="935" height="426" src="custom/41SLSP_EPF-prod/img/help/advancedSearch_fre.png" />
- <p>Dans cet exemple, la recherche est limit&eacute;e aux livres en anglais qui contiennent &laquo;mountain railway&raquo; dans leur titre et qui ont pour sujet la Suisse.</p>
- <p>Avec l'aide du deuxi&egrave;me (ou troisi&egrave;me) champ, vous pouvez choisir entre &laquo;contient&raquo;, &laquo;est(exact)&raquo; ou &laquo;commence par&raquo; pour sp&eacute;cifier si les termes de la recherche doivent &ecirc;tre contenus dans le champ, si l'&eacute;l&eacute;ment doit correspondre exactement aux termes de la recherche ou s'il doit commencer par un terme sp&eacute;cifique.</p>
- <p>Ici vous pouvez mettre quelques mots du titre, pas n&eacute;cessairement dans l'ordre</p>
- <img width="408" height="57" src="custom/41SLSP_EPF-prod/img/help/advancedField1_fre.png" /><br />
- <p>L&agrave;, vous recherchez ce titre exact</p>
- <img width="408" height="70" src="custom/41SLSP_EPF-prod/img/help/advancedField2_fre.png" />
- <p>Et l&agrave;, vous recherchez des titres qui commencent par le mot &laquo; mountain &raquo;</p>
- <img width="408" height="62" src="custom/41SLSP_EPF-prod/img/help/advancedField3_fre.png" />
-</md-card-content>
- <md-card-content id="sea4">
- <a href="#index">
- <h3>Rechercher une expression <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Si vous souhaitez rechercher une expression pr&eacute;cise (groupe de mots), mettez-la entre guillemets. Vous pouvez associer expressions et mots dans une recherche.</p>
- <img width="935" height="85" src="custom/41SLSP_EPF-prod/img/help/searchPhrase_fre.png" />
- <p>Les r&eacute;sultats incluent des documents qui contiennent &agrave; la fois l'expression exacte &laquo;piz buin&raquo; et le sujet &laquo;mountain&raquo;.</p>
-</md-card-content>
- <md-card-content id="sea5">
- <a href="#index">
- <h3>Rechercher avec des caract&egrave;res g&eacute;n&eacute;riques <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>L'ast&eacute;risque * et le point d'interrogation ? peuvent &ecirc;tre utilis&eacute;s comme caract&egrave;res g&eacute;n&eacute;riques (ou caract&egrave;res de remplacement) pour la recherche:</p>
- <p>L'ast&eacute;risque * sert &agrave; remplacer z&eacute;ro, un ou plusieurs caract&egrave;res: </p>
- <img width="935" height="74" src="custom/41SLSP_EPF-prod/img/help/searchWildcard1_fre.png" />
- <p>Permet de rechercher culture, cultures, cultural etc. </p>
- <p>L'ast&eacute;risque * peut &eacute;galement aider &agrave; trouver diff&eacute;rentes orthographes: </p>
- <img width="935" height="77" src="custom/41SLSP_EPF-prod/img/help/searchWildcard2_fre.png" />
- <p>Recherche yogurt, yoghurt, yogourt, yoghourt, etc.</p>
- <p>Le point d'interrogation ? est le caract&egrave;re de remplacement pour un seul caract&egrave;re: </p>
- <img width="935" height="84" src="custom/41SLSP_EPF-prod/img/help/searchWildcard3_fre.png" />
- <p>Recherche &agrave; la fois woman et women.</p>
- <p>Vous pouvez &eacute;galement combiner ces deux caract&egrave;res: </p>
- <img width="935" height="84" src="custom/41SLSP_EPF-prod/img/help/searchWildcard4_fre.png" />
- <p>Vous obtiendrez des r&eacute;sultats avec yoghurt, yogourt, yohurts ou yogourts</p>
-</md-card-content>
- <md-card-content id="sea6">
- <a href="#index">
- <h3>Utiliser les op&eacute;rateurs bool&eacute;ens pour &eacute;tendre ou restreindre une recherche<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>Vous pouvez utiliser les op&eacute;rateurs bool&eacute;ens ET, OU et SAUF. Ils doivent &ecirc;tre &eacute;crits en majuscules. </p>
- <p>Sans indication sp&eacute;cifique, les termes de la recherche sont automatiquement associ&eacute;s avec <strong>ET</strong>. En d'autres termes, tous les termes de la recherche doivent appara&icirc;tre dans les r&eacute;sultats.</p>
- <p><strong>OU</strong></p>
- <p>Au moins l'un des termes de recherche reli&eacute; avec OU doit appara&icirc;tre dans les r&eacute;sultats. Par exemple, utilisez OU pour associer des termes li&eacute;s afin d'&eacute;tendre la recherche &agrave; plusieurs termes (synonymes, orthographes diff&eacute;rentes):</p>
- <img width="935" height="76" src="custom/41SLSP_EPF-prod/img/help/searchOR_fre.png" />
- <p><strong>SAUF</strong></p>
- <p>Le terme de la recherche exclu avec SAUF ne doit pas appara&icirc;tre dans les r&eacute;sultats. Autrement dit, SAUF permet d'exclure explicitement des mots ou des expressions.</p>
- <!--<p><strong>NOTE:</strong> The Boolean operator NOT is available only in the simple search </p>-->
- <img width="935" height="79" src="custom/41SLSP_EPF-prod/img/help/searchNOT_fre.png" />
- <p>Les r&eacute;sultats seront des documents qui contiennent l'expression &laquo;climate change&raquo;, mais pas &laquo;global warming&raquo;. </p>
-</md-card-content>
- <md-card-content id="sea7">
- <a href="#index">
- <h3>Mes favoris<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>Dans &laquo;Mes Favoris&raquo;, vous pouvez enregistrer les titres que vous trouvez pendant votre recherche. Vous ne pouvez les enregistrer sur le long terme que si vous vous &ecirc;tes identifi&eacute;(e). En tant qu'invit&eacute;, le contenu des favoris n'est disponible que durant la session de navigation en cours. </p>
- <p>
- Si vous cliquez sur l'ic&ocirc;ne &eacute;pingle
- <img width="14" height="18" src="custom/41SLSP_EPF-prod/img/help/pinIcon1.png" /> d'un titre, celui-ci est ajout&eacute; &agrave; vos favoris; l'ic&ocirc;ne &eacute;pingle se transforme alors en
- <img width="14" height="15" src="custom/41SLSP_EPF-prod/img/help/pinIcon2.png" />. Si vous cliquez &agrave; nouveau sur
- <img width="14" height="15" src="custom/41SLSP_EPF-prod/img/help/pinIcon2.png" />, le titre est retir&eacute; de vos favoris.
- </p>
- <p>
- Vous pouvez acc&eacute;der &agrave; votre liste de favoris via l'ic&ocirc;ne &eacute;pingle
- <img width="14" height="18" src="custom/41SLSP_EPF-prod/img/help/pinIcon1.png" /> situ&eacute; en haut &agrave; droite de la page.
- </p>
- <p>Vous pouvez retirer ou exporter des titres individuels depuis votre liste de favoris. Surlignez un ou plusieurs titres et utilisez les symboles situ&eacute;s en haut de la page pour les retirer, ajouter des libell&eacute;s, les exporter vers des outils de gestion des r&eacute;f&eacute;rences, les imprimer ou les envoyer par e-mail: </p>
- <img width="935" height="481" src="custom/41SLSP_EPF-prod/img/help/myFavorites_fre.png" />
- <p>Afin de voir les d&eacute;tails d'une notice, cliquez sur le titre en question. </p>
- <p>Vous trouvez &eacute;galement l'historique de recherche pour la session de navigation en cours dans &laquo;Mes favoris&raquo;. </p>
-</md-card-content>
- <md-card-content id="sea8">
- <a href="#index">
- <h3>Historique de recherche<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Les recherches de la session de navigation en cours sont enregistr&eacute;es dans vos favoris dans &laquo;Historique de recherche&raquo;.</p>
- <p>
- Vous pouvez y acc&eacute;der directement via l'ic&ocirc;ne
- <img width="30" height="30" src="custom/41SLSP_EPF-prod/img/help/searchHistoryIcon.png" />situ&eacute; en haut &agrave; droite de la page.
- </p>
- <img width="470" height="311" src="custom/41SLSP_EPF-prod/img/help/searchHistory_fre.png" />
-</md-card-content>
- <md-card-content id="sea9">
- <a href="#index">
- <h3>Enregistrer et g&eacute;rer les recherches<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>Si vous vous &ecirc;tes identifi&eacute; (e), vous pouvez enregistrer vos recherches de mani&egrave;re permanente. Pour cela, cliquez sur &laquo;Enregistrer la requ&ecirc;te&raquo; situ&eacute; au-dessus de la liste de r&eacute;sultats: </p>
- <img width="935" height="148" src="custom/41SLSP_EPF-prod/img/help/saveQuery_fre.png" />
- <p><strong>NOTE:</strong> L'option &laquo;Enregistrer la requ&ecirc;te&raquo; s'affiche uniquement si vous vous &ecirc;tes identifi&eacute;(e) et si vous avez lanc&eacute; une recherche </p>
- <p>Lors de l'enregistrement de la requ&ecirc;te, un message appara&icirc;t en haut de la page vous permettant de recevoir des notifications par e-mail lorsque la requ&ecirc;te est mise &agrave; jour. Cliquez sur ce message pour activer les notifications.</p>
- <img width="935" height="73" src="custom/41SLSP_EPF-prod/img/help/emailNotification_fre.png" /><br />
- <img width="418" height="333" src="custom/41SLSP_EPF-prod/img/help/emailNotificationSettings_fre.png" />
- <p>
- Les recherches enregistr&eacute;es sont conserv&eacute;es dans &laquo;Mes Favoris&raquo;
- <img width="14" height="18" src="custom/41SLSP_EPF-prod/img/help/pinIcon1.png" /> dans l'onglet &laquo;Recherches sauvegard&eacute;es&raquo;.
- </p>
- <img width="935" height="250" src="custom/41SLSP_EPF-prod/img/help/savedSearches_fre.png" />
- <p>Vous pouvez lancer &agrave; nouveau la m&ecirc;me recherche en cliquant sur les termes de la requ&ecirc;te. Vous pouvez configurer une notification (par RSS ou par e-mail) en utilisant les symboles situ&eacute;s &agrave; droite pour vous tenir inform&eacute;(e) des derniers documents ajout&eacute;s qui correspondent &agrave; vos crit&egrave;res de recherche.</p>
-</md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="display">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Afficher les r&eacute;sultats</h2></a>
-</md-card-title-text>
- </md-card-title>
- <md-card-content id="dis1">
- <a href="#index">
- <h3>R&eacute;duire le nombre de r&eacute;sultats<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Le filtre par termes est propos&eacute; dans la colonne de gauche, il vous permet de r&eacute;duire le nombre de r&eacute;sultats dans votre recherche: </p>
- <img width="302" height="195" src="custom/41SLSP_EPF-prod/img/help/facets1_fre.png" />
- <p>Cliquer sur &laquo;Articles&raquo; r&eacute;duit la liste de r&eacute;sultats aux articles trouv&eacute;s. </p>
- <p>Afin d'exclure un terme, cliquez sur le symbole rouge situ&eacute; &agrave; c&ocirc;t&eacute; du terme sur la droite. </p>
- <img width="320" height="215" src="custom/41SLSP_EPF-prod/img/help/facets2_fre.png" />
- <p>&laquo;Voir plus&raquo; permet d'afficher des termes suppl&eacute;mentaires et d'affiner la recherche en incluant ou en excluant plusieurs termes. </p>
- <p>Exemple: R&eacute;duisez la recherche &agrave; &laquo;Articles de journal&raquo;, &laquo;Comptes rendus&raquo; et &laquo;Livres&raquo;.</p>
- <img width="349" height="506" src="custom/41SLSP_EPF-prod/img/help/facets3_fre.png" />
- <p>Pour supprimer un filtre, cliquez sur la croix X situ&eacute;e &agrave; c&ocirc;t&eacute; du terme. &laquo;R&eacute;initialiser les filtres&raquo; permet de supprimer tous les filtres. </p>
- <img width="313" height="228" src="custom/41SLSP_EPF-prod/img/help/filters1_fre.png" />
- <p>La saisie d'une nouvelle recherche supprime automatiquement tous les filtres. Toutefois, vous pouvez conserver un filtre pendant toute la dur&eacute;e de la session de navigation en le s&eacute;lectionnant puis en cliquant sur le symbole cadenas. Pour supprimer ce filtre, cliquez &agrave; nouveau sur le cadenas. </p>
- <img width="273" height="241" src="custom/41SLSP_EPF-prod/img/help/filters2_fre.png" />
-</md-card-content>
- <md-card-content id="dis2">
- <a href="#index">
- <h3>Liste de r&eacute;sultats: tri<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>Par d&eacute;faut, les r&eacute;sultats sont tri&eacute;s par pertinence. Vous pouvez les trier par date, titre ou auteur. </p>
- <img width="177" height="315" src="custom/41SLSP_EPF-prod/img/help/sorting_fre.png" />
-</md-card-content>
- <md-card-content id="dis3">
- <a href="#index">
- <h3>Liste de r&eacute;sultats: versions <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Si un travail est disponible en plusieurs versions (c'est-&agrave;-dire en plusieurs &eacute;ditions ou r&eacute;impressions), cliquez sur l'ic&ocirc;ne, le titre ou &laquo;Voir toute les versions&raquo; pour obtenir la liste de toutes les versions. </p>
- <img width="512" height="193" src="custom/41SLSP_EPF-prod/img/help/versions_fre.png" />
- <p>Vous pouvez revenir &agrave; la liste des r&eacute;sultats en fermant la liste des versions dans &laquo;Filtres activ&eacute;s&raquo;. </p>
- <img width="263" height="191" src="custom/41SLSP_EPF-prod/img/help/activeFilters_fre.png" />
-</md-card-content>
- <md-card-content id="dis4">
- <a href="#index">
- <h3>Afficher des titres individuels <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Lorsque vous cliquez sur un titre, vous pouvez s&eacute;lectionner les actions suivantes: </p>
- <img width="144" height="274" src="custom/41SLSP_EPF-prod/img/help/fullViewNavigation_fre.png" />
- <p><strong>Haut:</strong> revenir en haut de la page</p>
- <p><strong>Envoyer vers: </strong> eexporter les informations sur un titre vers un programme de gestion des r&eacute;f&eacute;rences, exporter des citations, cr&eacute;er un lien permanent vers le r&eacute;sultat, imprimer ou envoyer par e-mail. Les actions d'exportation peuvent s'appliquer &agrave; un groupe comportant jusqu'&agrave; 50 notices. </p>
- <p><strong>Obtenir:</strong> afficher les localisations, faire des demandes de pr&ecirc;t, des r&eacute;servations ou des copies.</p>
- <p><strong>D&eacute;tails:</strong> informations d&eacute;taill&eacute;es sur le titre.</p>
- <p><strong>Liens:</strong> liens vers la table des mati&egrave;res, vers un titre ant&eacute;rieur/ult&eacute;rieur, vers l'ensemble des volumes d'une s&eacute;rie.</p>
- <p><strong>&Eacute;tag&egrave;re virtuelle:</strong> vous pouvez voir un rayon de la biblioth&egrave;que en lien avec la notice s&eacute;lectionn&eacute;e </p>
-</md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="questions">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Des questions?</h2></a>
-</md-card-title-text>
- </md-card-title>
- <md-card-content id="que1">
- <a href="mailto:library@epfl.ch">
- <h3>Informations de contact<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>N'h&eacute;sitez pas &agrave; prendre contact avec nous pour toute question, h&eacute;sitation, commentaire ou requ&ecirc;te.</p>
-
-</md-card-content>
-
- </md-card>
-
- </div>
-
-
-
- </div>
-
-</md-content>
diff --git a/primo-explore/custom/41SLSP_EPF-test/html/help/help_it.html b/primo-explore/custom/41SLSP_EPF-test/html/help/help_it.html
deleted file mode 100644
index 1fa3879..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/html/help/help_it.html
+++ /dev/null
@@ -1,506 +0,0 @@
-
-<md-content id="help">
- <div class="ps_content md-padding" layout-gt-sm="row" layout-align="center center">
- <div flex="100" flex-md="100" flex-lg="80" flex-xl="60" layout="column">
- <md-card class="default-card">
- <md-card-title>
- <md-card-title-text>
- <h1 class="md-headline"><b>swisscovery Help Page</b></h1>
- </md-card-title-text>
- </md-card-title>
-
- </md-card>
-
- <md-card class="default-card">
-
- <md-card-content>
- <h4>Introduzione: </h4>
- <p>Gentili utenti,</p>
- <p>Benvenuti nella pagina di aiuto di swisscovery.</p>
- <p>swisscovery &egrave; lo strumento di discovery della <a href="https://slsp.ch/it" target="_blank">Swiss Library Service Platform Network (SLSP)</a>. In questa pagina sono disponibili informazioni utili su come usare swisscovery e su come &egrave; organizzata la rete SLSP. </p>
- <p>Attenzione: questa pagina &egrave; stata creata per l'intero network SLSP! Ci&igrave; significa che alcuni servizi potrebbero non essere disponibili in questa specifica interfaccia utenti. Tenete presente che l'aspetto della pagina iniziale o la visualizzazione dei record pu&igrave; variare da istituzione a istituzione, rispetto a quanto mostrato qui.</p>
- </md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="index">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Indice:</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <h3><a href="#general">Informazioni generali </a></h3>
- <ul>
- <!--<li><a href="#gen1">Un breve video di introduzione a swisscovery</a></li>-->
- <li><a href="#gen2">SLSP: La Swiss Library Service Platform</a></li>
- <li><a href="#gen3">La rete SLSP</a></li>
- <li><a href="#gen4">Creare un conto</a></li>
- <li><a href="#gen5">Tessera della biblioteca</a></li>
- <li><a href="#gen6">Come identificarsi</a></li>
- <li><a href="#gen7">Conto utente</a></li>
- <li><a href="#gen8">Aggiornare il proprio conto </a></li>
- <li><a href="#gen9">Impostazione lingua</a></li>
- </ul>
- <h3><a href="#online">Risorse online</a></h3>
- <ul>
- <li><a href="#onl1">Risorse online</a></li>
- <li><a href="#onl2">Servizi online per membri universitari </a> </li>
- <li><a href="#onl3">Servizi online per persone che non sono membri di un'universit&agrave; </a></li>
- <li><a href="#onl4">Open Access</a></li>
- <li><a href="#onl5">Licenze nazionali </a></li>
- </ul>
- <h3><a href="#borrow">Richiesta di prestito/richiesta documenti</a></h3>
- <ul>
- <li><a href="#bor1">Richiesta di prestito/richiesta documenti</a></li>
- <li><a href="#bor2">Richieste di prestito interbibliotecario all'esterno della rete SLSP</a></li>
- <li><a href="#bor3">Prolungamento del periodo di prestito</a></li>
- <li><a href="#bor4">Lista dei prestiti precedenti</a></li>
- </ul>
- <h3><a href="#search">Ricerca</a></h3>
- <ul>
- <li><a href="#sea1">Profili di ricerca SLSP</a></li>
- <li><a href="#sea2">Ricerca semplice </a></li>
- <li><a href="#sea3">Ricerca avanzata </a></li>
- <li><a href="#sea4">Ricerca per frase </a></li>
- <li><a href="#sea5">Ricerca con le wildcard </a></li>
- <li><a href="#sea6">Uso di operatori booleani per espandere o restringere una ricerca </a></li>
- <li><a href="#sea7">Preferiti</a></li>
- <li><a href="#sea8">Storico di ricerca</a></li>
- <li><a href="#sea9">Salvare e gestire le ricerche</a></li>
- <!--<li><a href="#sea10">Citation Linker </a></li>-->
- </ul>
- <h3><a href="#display">Visualizzazione dei risultati</a></h3>
- <ul>
- <li><a href="#dis1">Restringere i risultati </a></li>
- <li><a href="#dis2">Lista dei risultati: classificazione </a></li>
- <li><a href="#dis3">Lista dei risultati: versioni</a> </li>
- <li><a href="#dis4">Visualizzazione di titoli singoli </a></li>
- </ul>
- <h3><a href="#questions">Domande?</a></h3>
- <ul>
- <li><a href="#que1">Informazioni di contatto</a></li>
- </ul>
- </md-card-content>
- </md-card>
-
- <md-card class="default-card" id="general">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Informazioni generali </h2></a>
- </md-card-title-text>
- </md-card-title>
- <!--<md-card-content id="gen1">
- <a href="#index"><h3>Un breve video di introduzione a swisscovery<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3></a>
- <div class="resp-container">
- <iframe class="resp-iframe" src="https://www.youtube.com/embed/1fZwnu_nzPU" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
- </div>
- </md-card-content>r-->
- <md-card-content id="gen2">
- <a href="#index">
- <h3>SLSP: La Swiss Library Service Platform <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>La Swiss Library Service Platform insieme alla sua controllata Consorzio delle biblioteche universitarie svizzere &egrave;, con oltre <a href="https://slsp.ch/libraries" target="_blank">450 membri</a> la rete di biblioteche universitarie e di ricerca pi&ugrave; grande della Svizzera. Creata dalle biblioteche per le biblioteche, si tratta di un impegno comune per fornire una serie di servizi all'intero paese, quali un catalogo multilingue condiviso di informazioni scientifiche, una rappresentazione unica per le licenze di risorse elettroniche e una rete di corrieri efficiente per la condivisione di risorse fisiche. </p>
- <p>SLSP rappresenta un passaggio innovativo e significativo in direzione dell'evoluzione digitale delle biblioteche in Svizzera. Grazie alla gestione del sistema Alma basato su un cloud, l'organizzazione unisce le informazioni scientifiche archiviate nelle biblioteche in tutta la Svizzera. Rendendo accessibili e facilmente trovabili tali informazioni, SLSP fornisce un contributo alla ricerca e al progresso scientifico.</p>
-</md-card-content>
- <md-card-content id="gen3">
- <a href="#index">
- <h3>La rete SLSP<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>Il network SLSP &egrave; suddiviso in diverse &laquo;zone&raquo;. La SLSP gestisce la network zone (NZ) chiamata swisscovery, mentre le biblioteche sono state distribuite in 29 &laquo;institution zone&raquo; (IZ). </p>
- <p>Una institution zone (IZ) raggruppa le biblioteche con esigenze simili. L'IZ &egrave; una componente chiave nel sistema SLSP, esso permette di creare sinergie e incrementare l'efficienza. In SLSP distinguiamo due tipi di institution zone: zone ad entit&agrave; singola e zone ad entit&agrave; mista. </p>
- <p>In una zona ad entit&agrave; singola la maggior parte delle biblioteche sono legate giuridicamente ad un ente principale (per esempio ad un'universit&agrave;). In una zona ad entit&agrave; mista, le biblioteche sono legate giuridicamente ad enti diversi (per esempio sono raggruppati sulla base di considerazioni geografiche).</p>
- <p>Per accedere alle risorse delle biblioteche membre di SLSP, gli utenti devono accedere alle interfacce utenti chiamate &laquo;Views&raquo;. In SLSP abbiamo preparato un'interfaccia per la Network Zone (NZ), un'interfaccia per tutte le Institution Zone (IZ) e diverse interfacce per singole biblioteche. </p>
- <p>Ogni interfaccia ha ambiti di ricerca specifici che daranno risultati diversi quando vengono usate per la ricerca. La network zone di swisscovery contiene tutti i record provenienti dalle biblioteche SLSP, alcune risorse generali esterne (per esempio i documenti di e-rara) e l'indice CDI (Central Discovery Index). Le interfacce delle institution zone e le Library view contengono l'inventario locale della institution zone / biblioteca, risorse esterne generali e locali e l'indice CDI. </p>
- <p>Il Central Discovery Index (CDI) &egrave; un database centrale con oltre 3 miliardi di record quali: articoli di riviste, e-book, dissertazioni, atti di convegni, ecc. </p>
- <img width="935" height="665" src="custom/41SLSP_EPF-prod/img/help/swisscovery_ita.png" />
- <p>Nel seguente <a href="https://slsp.ch/libraries" target="_blank">link</a> &egrave; possibile trovare la topologia del network SLSP, che comprende la lista di tutte le biblioteche membre di SLSP suddivise per institution zone e il link per ogni interfaccia esistente del nostro network. Per ciascuna institution zone e biblioteca &egrave; possibile trovare l'indirizzo, le informazioni di contatto e i servizi da loro forniti.</p>
-</md-card-content>
- <md-card-content id="gen4">
- <a href="#index">
- <h3>Creare un conto<img class="icon_up2" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Per registrarsi su SLSP, visitate innanzitutto: <a href="https://registration.slsp.ch" target="_blank">https://registration.slsp.ch</a></p>
- <p>Dopo aver avviato la registrazione verr&agrave; chiesto di eseguire il login ad un account SWITCH edu-ID. Se si &egrave; gi&agrave; in possesso di un account SWITCH edu-ID, basta eseguire il login per procedere con la registrazione. Se non si possiede ancora una password, sulla pagina di login &egrave; disponibile un link di reset della password.</p>
- <p>Se non si possiede ancora un account utente SWITCH edu-ID cliccate su &laquo;Creare un conto&raquo; nella pagina di login. </p>
- <p><strong>ATTENZIONE:</strong> Se siete studenti presso un'universit&agrave;, &egrave; possibile che siate gi&agrave; registrati su SLSP. In tal caso apparir&agrave; un messaggio e si verrete inoltrati alla sezione di login dell'interfaccia. </p>
-</md-card-content>
- <md-card-content id="gen5">
- <a href="#index">
- <h3>Tessera della biblioteca<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>La propria tessera della biblioteca consente di accedere ad una serie di servizi, per esempio &egrave; possibile prendere in prestito una copia fisica di un libro da una biblioteca. </p>
- <p>Se si &egrave; gi&agrave; in possesso di una tessera della biblioteca della rete <a href="https://www.nb.admin.ch/snl/it/home/servizi/prestito-utilizzo/bibliopass.html" target="_blank">BibliOpass</a>, &egrave; possibile fornire il numero di tessera della biblioteca durante la registrazione a SLSP o successivamente. Valgono come tessera della biblioteca anche alcune tessere di campus / universit&agrave; / studenti. Inoltre, alcune universit&agrave; forniscono il numero di tessera della biblioteca per i loro utenti. Il numero di tessera della biblioteca associato all'account SLSP viene mostrato durante il processo di registrazione alla SLSP (vedi capitolo &laquo;Creare un conto&raquo;).</p>
- <p>Se non si possiede una tessera della biblioteca, &egrave; possibile chiedere al proprio bibliotecario di fornirne una. </p>
-</md-card-content>
- <md-card-content id="gen6">
- <a href="#index">
- <h3>Come identificarsi<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Su swisscovery: cliccate su &laquo;identificati&raquo; - scegliere la propria institution zone - cliccare su &laquo;SWITCH edu-ID&raquo; - inserire il proprio indirizzo e-mail e password - cliccare su &laquo;Accedi&raquo;</p>
- <p>In una institution zone / library view: cliccare su &laquo;Identificati&raquo; - cliccare su &laquo;SWITCH edu-ID&raquo; -inserire il proprio indirizzo e-mail e password - cliccare su &laquo;Accedi&raquo; </p>
- <img width="460" height="74" src="custom/41SLSP_EPF-prod/img/help/signin_ita.png" />
- <p>La registrazione &egrave; necessaria per svolgere le seguenti attivit&agrave;:</p>
- <ul>
- <li>Richiesta di documenti (prestito, richiesta di digitalizzazione, prestito interbibliotecario)</li>
- <li>Visualizzare e controllare i propri prestiti e richieste da biblioteche nel network SLSP. </li>
- <li>Prolungare il periodo di prestito, cancellare prenotazioni</li>
- <li>Salvare preferiti</li>
- <li>Salvare ricerche e impostare avvisi</li>
- <li>Cambiare in modo permanente la lingua impostata </li>
- </ul>
- <p>Come ospite, i propri preferiti, le richieste di ricerca e la lingua selezionata possono essere salvati solo per la corrente sessione. </p>
- <p>Disconnettersi dopo una sessione per proteggere il proprio account dall'accesso da parte di altri utenti.</p>
- <h4>ATTENZIONE:</h4>
- <p>Alcune risorse online sono accessibili senza identificarsi, ma per accedere all'insieme delle risorse disponibili nella vostra istituzione &egrave; necessario. </p>
- <p>
- L'accesso alle risorse online dipende spesso dalla propria appartenenza (per es. come studente o ricercatore) a un'istituzione di istruzione superiore. Alcune istituzioni di istruzione superiore permettono agli utenti l'accesso remoto alle risorse online. Per maggiori informazioni sulle condizioni di accesso alle risorse online &egrave; possibile consultare il capitolo &laquo;Risorse online&raquo; sulla presente pagina d'aiuto o sul sito web della vostra biblioteca.
- </p>
- <p>Tali condizioni non vengono applicate alle licenze nazionali (per maggiori informazioni vedere il capitolo relativo in questa pagina). </p>
-</md-card-content>
- <md-card-content id="gen7">
- <a href="#index">
- <h3>Conto utente <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Per accedere al proprio conto &egrave; necessario registrarsi. Dopo la registrazione, cliccate sul vostro nome in alto a destra della pagina. Accederete ad un menu contenente alcuni sottomenu del proprio conto. Per avere il pieno accesso ai dati del proprio account, cliccate su &laquo;Conto utente&raquo;.</p>
- <p>Da questa pagina sar&agrave; possibile consultare i propri prestiti, richieste, tariffe, messaggi e tante altre funzioni. </p>
- <p><strong>ATTENZIONE:</strong> Ogni institution zone ha il suo proprio spazio. Ci&igrave; significa, per esempio, che se si prende in prestito una risorsa nella institution zone della BCU Fribourg, e una all'institution zone dell'ETH Z&uuml;rich, esse vengono separate in pagine diverse, come mostrato di seguito:</p>
- <img width="935" height="627" src="custom/41SLSP_EPF-prod/img/help/myAccount_ita.png" />
-</md-card-content>
- <md-card-content id="gen8">
- <a href="#index">
- <h3>Aggiornare il proprio conto <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Per modificare il proprio indirizzo o altre informazioni relative al proprio conto, andate sulla pagina "Mia edu-ID" <a href="https://eduid.ch/" target="_blank">https://eduid.ch/</a> e aggiornare il proprio account edu-ID. Attenzione: le modifiche eseguite nel &laquo;Conto utente&raquo; in swisscovery o nelle institution zone vengono sovrascritte dalle informazioni provenienti dall'account edu-ID. Per gestire i propri numeri di tessera della biblioteca, andate su <a href="https://registration.slsp.ch/register/library-card/" target="_blank">https://registration.slsp.ch/register/library-card/</a> </p>
-</md-card-content>
- <md-card-content id="gen9">
- <a href="#index">
- <h3>Impostazione lingua <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Cliccare su &laquo;Mostra lingua&raquo; per modificare la lingua impostata per la sessione corrente. Se si &egrave; registrati, la lingua impostata verr&agrave; salvata in modo permanente. &Egrave; anche possibile modificare la lingua della propria interfaccia compilando la sezione &laquo;Dettagli personali&raquo; del proprio conto. </p>
- <img width="333" height="211" src="custom/41SLSP_EPF-prod/img/help/setLanguage_ita.png" />
-</md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="online">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Risorse online</h2></a>
-</md-card-title-text>
- </md-card-title>
- <md-card-content>
-
- <md-card-content id="onl1">
- <a href="#index">
- <h3>Risorse online<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Tutti i tipi di risorse online offerti dalle biblioteche partecipanti sono indicizzati nella ricerca: libri, riviste, database, fotografie digitalizzate, mappe, manoscritti e altri esemplari della collezione. Tuttavia, non tutti i documenti sono accessibili liberamente. Molti documenti vengono acquisiti attraverso una licenza e sono disponibili unicamente nella rete dell'universit&agrave; titolare della licenza. Mediante l'uso dei filtri, &egrave; possibile restringere la ricerca ai documenti con licenza online e Open Access (Disponibile online) o selezionare unicamente i documenti accessibili liberamente (Open Access). </p>
- <img width="233" height="218" src="custom/41SLSP_EPF-prod/img/help/showonly_ita.png" />
- <p>
- Per le risorse online, la sezione &laquo;Visualizza Online&raquo; nella visualizzazione completa fornisce informazioni sulla disponibilit&agrave; della risorsa nella propria istituzione e in altre institution zones del network SLSP. Per accedere alle risorse, cliccate sull'icona <img width="41" height="42" src="custom/41SLSP_EPF-prod/img/help/viewOnlineIcon.png" />
- </p>
- <img width="935" height="462" src="custom/41SLSP_EPF-prod/img/help/viewOnline_ita.png" />
-</md-card-content>
- <md-card-content id="onl2">
- <a href="#index">
- <h3>Servizi online per membri universitari<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>Oltre ai documenti Open Access &egrave; possibile usare i servizi online della propria universit&agrave;. Riviste elettroniche, e-book e database vengono acquisiti attraverso licenze e il loro accesso &egrave; riservato esclusivamente al network dell'istituzione titolare della licenza (sul campus). Per accedere a tali documenti dall'esterno dell'universit&agrave;, &egrave; possibile utilizzare strumenti come VPN, Eduroam, EZProxy, ecc. Consultate le informazioni relative all'accesso remoto presso la vostra biblioteca o il sito web IT della vostra universit&agrave;.</p>
- <p>
- La sezione &laquo;Visualizza Online&raquo; fornisce i servizi disponibili per le risorse della propria istituzione e di altre institution zone del network SLSP. Cliccate su &laquo;Disponibile online&raquo; e l'icona <img width="41" src="custom/41SLSP_EPF-prod/img/help/viewOnlineIcon.png" />per ottenere la visualizzazione completa.
- </p>
- <img width="935" height="170" src="custom/41SLSP_EPF-prod/img/help/availOnline_ita.png" />
- <img width="935" height="439" src="custom/41SLSP_EPF-prod/img/help/availOnlineFull_ita.png" />
-</md-card-content>
- <md-card-content id="onl3">
- <a href="#index">
- <h3>Servizi online per persone che non sono membri di un'universit&agrave; <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Oltre alle risorse Open Access e online con licenza nazionale, &egrave; anche possibile usare le risorse con la licenza acquistata dall'universit&agrave;, a condizione di essere nei locali della stessa.</p>
- <p>Le riviste universitarie elettroniche, gli e-book e i database vengono acquisiti attraverso licenze e il loro accesso &egrave; riservato esclusivamente alla rete dell'istituzione titolare della licenza (sul campus), &egrave; possibile scaricare e/o accedere a tali risorse dalla sede della biblioteca titolare della licenza. </p>
- <p>Le biblioteche che offrono l'accesso a risorse online sono visualizzate sotto localizzazione. </p>
- <img width="935" height="170" src="custom/41SLSP_EPF-prod/img/help/availOnline2_ita.png" />
- <img width="935" height="345" src="custom/41SLSP_EPF-prod/img/help/locationItems_ita.png" />
-</md-card-content>
- <md-card-content id="onl4">
- <a href="#index">
- <h3>Open Access<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>I documenti Open Access sono accessibili liberamente. Si tratta sia di articoli di riviste o e-book provenienti da diverse piattaforme o repository istituzionali, sia di documenti digitalizzati dalle biblioteche. Questi documenti sono contrassegnati nella lista dei risultati con l'icona "open access".</p>
- <img width="935" height="188" src="custom/41SLSP_EPF-prod/img/help/openAccess_ita.png" />
-</md-card-content>
- <md-card-content id="onl5">
- <a href="#index">
- <h3>Licenze nazionali<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Tutte le persone che vivono in Svizzera hanno accesso alle licenze nazionali. Ci&igrave; richiede una registrazione gratuita, maggiori informazioni sono disponibili sulla pagina <a href="https://consortium.ch/zugriff/?lang=en" target="_blank">https://consortium.ch/zugriff/?lang=en </a>. Attenzione: per la registrazione per licenze nazionali pu&igrave; essere utilizzata la medesima edu-ID di swisscovery. </p>
- <p>Le risorse disponibili attraverso le licenze nazionali sono contrassegnate in parentesi nella sezione &laquo;Disponibilit&agrave; full text&raquo;.</p>
- <img width="935" height="160" src="custom/41SLSP_EPF-prod/img/help/NationalLicenses_ita.png" />
-</md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="borrow">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Richiesta di prestito/richiesta documenti </h2></a>
-</md-card-title-text>
- </md-card-title>
- <md-card-content id="bor1">
- <a href="#index">
- <h3>Richiesta di prestito/richiesta documenti<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Sotto &laquo;Lo trovi in&raquo; nella visualizzazione completa, &egrave; possibile vedere le biblioteche dove &egrave; localizzato il documento e se &egrave; attualmente disponibile. La fornitura di un esemplare in una localizzazione di presa in consegna pu&igrave; essere soggetta a costi.</p>
- <p>Sotto &laquo;Altre opzioni&raquo; &egrave; possibile vedere se biblioteche SLSP di altre institution zone posseggono questo esemplare. </p>
- <img width="935" height="455" src="custom/41SLSP_EPF-prod/img/help/getIt_ita.png" />
- <p>Selezionare l'opzione di richiesta che si desidera: "Richiesta" (copia fisica/prenotazione) o "Digitalizzazione" (Copia digitale o cartacea). Per effettuare una richiesta &egrave; necessario essere registrati.</p>
- <img width="935" height="349" src="custom/41SLSP_EPF-prod/img/help/requestOption_ita.png" />
- <p>Selezionando "Richiesta", &egrave; possibile richiedere una copia fisica da ritirare nella biblioteca. &Egrave; anche possibile richiedere la fornitura di alcuni esemplari via posta (servizio a pagamento). Se &egrave; disponibile questa opzione, selezionate la vostra istituzione nel campo &laquo;Istituzione di ritiro&raquo; e l'indirizzo postale nel campo &laquo;Luogo di ritiro&raquo;.</p>
- <p>Se si desidera ricevere una copia elettronica o cartacea di un articolo o di un capitolo, cliccarte su Digitalizzazione e compilare il modulo con tutti i dettagli possibili.</p>
- <p><strong>ATTENZIONE:</strong> Questi servizi possono non essere disponibili nella propria IZ / biblioteca e possono essere soggetti a costi. Per maggiori informazioni cliccare <a href="https://slsp.ch/en" target="_blank">qui</a>. </p>
-</md-card-content>
- <md-card-content id="bor2">
- <a href="#index">
- <h3>Richieste di prestito interbibliotecario<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>
- Nonostante il network SLSP offra accesso ad oltre 50 milioni di record di esemplari e ad un numero inestimabile di risorse elettroniche, &egrave; possibile che la pubblicazione che cercate non sia disponibile. In tal caso &egrave; possibile effettuare una richiesta di prestito interbibliotecario e la pubblicazione verr&agrave; presa in prestito presso un'altra biblioteca in Svizzera o all'estero (servizio a pagamento). Si prega di compilare il presente <a href="https://slsp.ch/en" target="_blank">modulo</a>, e la propria biblioteca si prender&agrave; cura della richiesta.
- </p>
- <p><strong>ATTENZIONE:</strong> Questo servizio pu&igrave; essere soggetto a commissioni aggiuntive. Per maggiori informazioni in merito alle possibili commissioni si prega di <a href="https://slsp.ch/fees" target="_blank">consultare la presente pagina</a>.</p>
-</md-card-content>
- <md-card-content id="bor3">
- <a href="#index">
- <h3>Prolungamento del periodo di prestito <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Nel Conto utente, &egrave; possibile vedere i prestiti in corso e rinnovarli tutti o singolarmente, posto che le condizioni di prestito lo consentano. </p>
- <img width="935" height="524" src="custom/41SLSP_EPF-prod/img/help/renewLoans_ita.png" />
- <p><strong>ATTENZIONE:</strong> Il nuovo periodo di prestito decorre sempre da subito. Se si rinnova un documento prima del termine automatico del periodo di prestito, il massimo periodo di prestito possibile si accorcia.</p>
- <p><strong>ATTENZIONE:</strong> le condizioni di prestito possono variare a seconda delle istituzioni e del tipo di materiale. </p>
-</md-card-content>
- <md-card-content id="bor4">
- <a href="#index">
- <h3>Lista dei prestiti precedenti<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Nel Conto utente, nella sezione &laquo;Prestiti&raquo; delle IZ &egrave; possibile vedere i propri prestiti attivi e precedenti.</p>
- <img width="352" height="150" src="custom/41SLSP_EPF-prod/img/help/activeLoans_ita.png" />
- <p><strong>ATTENZIONE:</strong> in alcune institution zone / biblioteche questa opzione non &egrave; disponibile a causa delle norme cantonali sulla protezione dei dati.</p>
-</md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="search">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Ricerca</h2></a>
-</md-card-title-text>
- </md-card-title>
- <md-card-content id="sea1">
- <a href="#index">
- <h3>Profili di ricerca SLSP <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>SLSP lavora con due profili di ricerca standard disponibili in ciascuna interfaccia. Il primo &egrave; &laquo;swisscovery&raquo;, il secondo &egrave; &laquo;La mia biblioteca&raquo;. Questa infografica illustra dove viene effettuata la ricerca a seconda del profilo utilizzato. In alcune institution zone o Views di biblioteche &egrave; possibile trovare ulteriori profili di ricerca personalizzati creati dalla institution zone / biblioteca. </p>
- <img width="935" height="899" src="custom/41SLSP_EPF-prod/img/help/infographig_ita.png" />
- <p><strong>La mia biblioteca:</strong> Comprende l'inventario locale della institution zone / biblioteca + risorse esterne caricate in questa institution zone (generale e locale) + CDI (CDI pu&igrave; anche essere usato come profilo di ricerca separato). Questo profilo di ricerca ha sempre il nome dell'istituzione / biblioteca.</p>
- <p><strong>swisscovery:</strong> Tutti i record del network SLSP + risorse esterne generali + CDI </p>
- <p><strong>Profilo di ricerca personalizzato: </strong> Alcune institution zone / biblioteche hanno realizzato i propri profili di ricerca, che includono dei dati locali.</p>
- <p><strong>Central Discovery Index (CDI):</strong> &egrave; un database centrale che comprende migliaia di fonti per un totale di oltre 3 miliardi di record quali: articoli di riviste, e-book, dissertazioni, atti di convegni, brevetti, report, documenti governativi, immagini e video. A seconda della institution zone / view della biblioteca, il CDI pu&igrave; essere cercato nel profilo di ricerca &laquo;La mia biblioteca&raquo;, in un profilo di ricerca separato o in entrambi</p>
- <p><strong>Risorse esterne generali: </strong> swisscovery &egrave; stata arricchita con l'aggiunta di risorse esterne elettroniche generali, in particolare repositories istituzionali.</p>
- <p><strong>Risorse esterne locali:</strong> oltre alle risorse esterne generali, alcune institution zone forniscono alcune risorse esterne locali. </p>
-</md-card-content>
- <md-card-content id="sea2">
- <a href="#index">
- <h3>Ricerca semplice<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>La ricerca semplice consente l'accesso rapido alle risorse bibliotecarie. </p>
- <img width="935" src="custom/41SLSP_EPF-prod/img/help/simpleSearch_ita.png" />
-</md-card-content>
- <md-card-content id="sea3">
- <a href="#index">
- <h3>Ricerca avanzata<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>I campi di ricerca della ricerca avanzata possono essere combinati con &laquo;E&raquo;, &laquo;O&raquo; o &laquo;NON&raquo;. </p>
- <img width="935" height="426" src="custom/41SLSP_EPF-prod/img/help/advancedSearch_ita.png" />
- <p>In questo esempio la ricerca &egrave; limitata a libri in inglese che nel titolo contengono &laquo;mountain railway*&raquo; e hanno come soggetto la Svizzera. </p>
- <p>Con l'aiuto del secondo (o terzo campo), &egrave; possibile scegliere tra &laquo;contiene&raquo; o &laquo;&egrave;(esatto)&raquo; o &laquo;inizia con&raquo;, per specificare se i termini di ricerca devono essere contenuti nel campo, se devono corrispondere esattamente ai termini di ricerca o se l'elemento deve iniziare con un termine specifico. </p>
- <p>Qui potete scrivere qualche parola del titolo, non necessariamente nell'ordine esatto:</p>
- <img width="408" height="57" src="custom/41SLSP_EPF-prod/img/help/advancedField1_ita.png" /><br />
- <p>In questo caso invece, state cercando il titolo esatto:</p>
- <img width="408" height="70" src="custom/41SLSP_EPF-prod/img/help/advancedField2_ita.png" />
- <p>Scegliendo "inizia con" invece, cercherete i titoli che iniziano con "mountain":</p>
- <img width="408" height="62" src="custom/41SLSP_EPF-prod/img/help/advancedField3_ita.png" />
-</md-card-content>
- <md-card-content id="sea4">
- <a href="#index">
- <h3>Ricerca per frase<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Se si desidera cercare una frase (gruppo di parole), inserirle tra virgolette. In una ricerca &egrave; possibile combinare frasi e parole. </p>
- <img width="935" height="85" src="custom/41SLSP_EPF-prod/img/help/searchPhrase_ita.png" />
- <p>I risultati includono documenti che contengono entrambi i termini &laquo;piz buin&raquo; e l'aspetto &laquo;mountain&raquo;.</p>
-</md-card-content>
- <md-card-content id="sea5">
- <a href="#index">
- <h3>Ricerca con le wildcard<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>L'asterisco * e il punto interrogativo ? possono essere utilizzati come wildcard per la ricerca:</p>
- <p>L'asterisco * &egrave; la wildcard per cercare diversi caratteri in fondo a una parola: </p>
- <img width="935" height="74" src="custom/41SLSP_EPF-prod/img/help/searchWildcard1_ita.png" />
- <p>ricerca per cultura, culture, culturale ecc. </p>
- <p>L'asterisco * pu&igrave; anche aiutare a trovare ortografie diverse: </p>
- <img width="935" height="77" src="custom/41SLSP_EPF-prod/img/help/searchWildcard2_ita.png" />
- <p>In questo caso ricerca yogurt, yoghurt, yogourt, yoghourt, ecc.</p>
- <p>Il punto interrogativo ? &egrave; la wildcard che rimpiazza un singolo carattere: </p>
- <img width="935" height="84" src="custom/41SLSP_EPF-prod/img/help/searchWildcard3_ita.png" />
- <p>ricerca woman e women.</p>
- <p>Inoltre, potete combinare i due caratteri </p>
- <img width="935" height="84" src="custom/41SLSP_EPF-prod/img/help/searchWildcard4_ita.png" />
- <p>Otterrete dei risultati per yoghurt, yogourt, yohurts o yogourts</p>
-</md-card-content>
- <md-card-content id="sea6">
- <a href="#index">
- <h3>Uso di operatori booleani per espandere o restringere una ricerca<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>&Egrave; possibile utilizzare operatori booleani &laquo;E&raquo;, &laquo;O&raquo; e &laquo;NON&raquo;. Questi devono essere scritti in lettere maiuscole. </p>
- <p>Senza operatori, i termini di ricerca vengono automaticamente combinati con <strong>&laquo;E&raquo;</strong>. In altre parole, tutti i termini di ricerca devono apparire nei risultati. </p>
- <p><strong>O</strong></p>
- <p>Almeno uno dei termini di ricerca collegati con &laquo;O&raquo; devono comparire nei risultati. Per esempio, usare &laquo;O&raquo; per combinare termini correlati per espandere la ricerca a diversi termini (sinonimi, diverse ortografie):</p>
- <img width="935" height="76" src="custom/41SLSP_EPF-prod/img/help/searchOR_ita.png" />
- <p><strong>NON</strong></p>
- <p>Il termine di ricerca escluso con &laquo;NON&raquo; non deve apparire nei risultati. In altre parole, &laquo;NON&raquo; fa s&igrave; che le parole o frasi vengano esplicitamente escluse. </p>
- <!--<p><strong>NOTE:</strong> The Boolean operator NOT is available only in the simple search </p>-->
- <img width="935" height="79" src="custom/41SLSP_EPF-prod/img/help/searchNOT_ita.png" />
- <p>I risultati includono documenti che contengono le frasi &laquo;climate change&raquo;, ma non &laquo;global warming&raquo;. </p>
-</md-card-content>
- <md-card-content id="sea7">
- <a href="#index">
- <h3>Preferiti<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>In &laquo;Preferiti&raquo; &egrave; possibile salvare i titoli trovati durante la propria ricerca. Il salvataggio a lungo termine &egrave; possibile unicamente se si &egrave; registrati. Come ospite, i preferiti sono a disposizione solamente durante la sessione browser corrente.</p>
- <p>
- Facendo clic sull'icona
- <img width="14" height="18" src="custom/41SLSP_EPF-prod/img/help/pinIcon1.png" /> di un titolo, il titolo viene aggiunto tra i propri preferiti e cambia in
- <img width="14" height="15" src="custom/41SLSP_EPF-prod/img/help/pinIcon2.png" />. Facendo clic su
- <img width="14" height="15" src="custom/41SLSP_EPF-prod/img/help/pinIcon2.png" />, il titolo viene rimosso dai preferiti.
- </p>
- <p>
- &Egrave; possibile accedere alla propria collezione di preferiti attraverso l'icona
- <img width="14" height="18" src="custom/41SLSP_EPF-prod/img/help/pinIcon1.png" /> in alto a destra della pagina.
- </p>
- <p>&Egrave; possibile rimuovere o esportare singoli titoli dalla propria lista dei preferiti. Evidenziare uno o pi&ugrave; titoli e usare i simboli in alto nella pagina per eliminarli, aggiungere etichette, esportarli in programmi per la gestione dei riferimenti, stamparli o inviarli via e-mail: </p>
- <img width="935" height="481" src="custom/41SLSP_EPF-prod/img/help/myFavorites_ita.png" />
- <p>Per visualizzare i dettagli di un titolo, cliccare sul titolo. </p>
- <p>In &laquo;Preferiti&raquo; &egrave; anche possibile trovare lo storico di ricerca per la sessione corrente. </p>
-</md-card-content>
- <md-card-content id="sea8">
- <a href="#index">
- <h3>Storico di ricerca<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Le ricerche della sessione corrente sono salvate tra i preferiti sotto &laquo;Storico di ricerca&raquo;.</p>
- <p>
- &Egrave; possibile raggiungerli direttamente attraverso l'icona
- <img width="30" height="30" src="custom/41SLSP_EPF-prod/img/help/searchHistoryIcon.png" /> in alto a destra della pagina.
- </p>
- <img width="470" height="311" src="custom/41SLSP_EPF-prod/img/help/searchHistory_ita.png" />
-</md-card-content>
- <md-card-content id="sea9">
- <a href="#index">
- <h3>Salvare e gestire le ricerche<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>Se si &egrave; registrati, &egrave; possibile salvare le ricerche in modo permanente. Per farlo, cliccare su &laquo;Salva query&raquo; sopra la lista dei risultati: </p>
- <img width="935" height="148" src="custom/41SLSP_EPF-prod/img/help/saveQuery_ita.png" />
- <p><strong>ATTENZIONE:</strong> L'opzione &laquo;Salva query&raquo; viene visualizzata soltanto se si &egrave; registrati ed &egrave; stata effettuata una ricerca. </p>
- <p>Quando si salva la propria query, &egrave; possibile ricevere notifiche via e-mail per gli aggiornamenti relativi alla query. Per attivare questo servizio, appare automaticamente un messaggio in alto nella pagina. </p>
- <img width="935" height="73" src="custom/41SLSP_EPF-prod/img/help/emailNotification_ita.png" /><br />
- <img width="418" height="333" src="custom/41SLSP_EPF-prod/img/help/emailNotificationSettings_ita.png" />
- <p>
- Le ricerche salvate vengono archiviate in &laquo;Preferiti&raquo;
- <img width="14" height="18" src="custom/41SLSP_EPF-prod/img/help/pinIcon1.png" /> nella scheda &laquo;Ricerche salvate&raquo;.
- </p>
- <img width="935" height="250" src="custom/41SLSP_EPF-prod/img/help/savedSearches_ita.png" />
- <p>&Egrave; possibile eseguire nuovamente la ricerca cliccandoci nuovamente sopra. &Egrave; possibile attivare una notifica (via RSS o e-mail) usando i simboli a destra per ricevere informazioni sui nuovi documenti aggiunti corrispondenti alla propria ricerca. </p>
-</md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="display">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Visualizzazione dei risultati</h2></a>
-</md-card-title-text>
- </md-card-title>
- <md-card-content id="dis1">
- <a href="#index">
- <h3>Restringere i risultati<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>I termini di filtro vengono proposti nella colonna a sinistra e consentono di restringere i risultati di ricerca:</p>
- <img width="302" height="195" src="custom/41SLSP_EPF-prod/img/help/facets1_ita.png" />
- <p>Facendo clic su &laquo;Libri&raquo;, in questo esempio, si limita la lista dei risultati ai 1.432 libri trovati.</p>
- <p>Per escludere un termine, cliccate sul simbolo rosso a destra vicino al termine. </p>
- <img width="320" height="215" src="custom/41SLSP_EPF-prod/img/help/facets2_ita.png" />
- <p>Con &laquo;Mostra di pi&ugrave;&raquo; &egrave; possibile visualizzare ulteriori termini e affinare la ricerca includendo o escludendo diversi termini. </p>
- <p>Esempio: Restringere i risultati a &laquo;Tesi&raquo;; &laquo;Video&raquo; e &laquo;Audio&raquo;.</p>
- <img width="349" height="506" src="custom/41SLSP_EPF-prod/img/help/facets3_ita.png" />
- <p>Per rimuovere un filtro, cliccare sulla croce x a fianco del termine. &laquo;Ripristina filtri&raquo; invece rimuove tutti i filtri. </p>
- <img width="313" height="228" src="custom/41SLSP_EPF-prod/img/help/filters1_ita.png" />
- <p>L'inserimento di una nuova ricerca rimuove automaticamente tutti i filtri. In ogni caso &egrave; possibile mantenere un filtro per la durata della sessione browser selezionandolo e facendo clic sul simbolo del lucchetto. Per rimuovere il filtro, cliccare nuovamente sul lucchetto.</p>
- <img width="273" height="241" src="custom/41SLSP_EPF-prod/img/help/filters2_ita.png" />
-</md-card-content>
- <md-card-content id="dis2">
- <a href="#index">
- <h3>Lista dei risultati: classificazione<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>BDi default, i risultati sono ordinati per rilevanza. &Egrave; anche possibile ordinarli per data, autore e titolo. </p>
- <img width="177" height="315" src="custom/41SLSP_EPF-prod/img/help/sorting_ita.png" />
-</md-card-content>
- <md-card-content id="dis3">
- <a href="#index">
- <h3>Lista dei risultati: versioni <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Se un'opera &egrave; disponibile in diverse versioni (per es. in diverse edizioni o stampe), cliccare sull'icona, il titolo o &laquo;Visualizza tutte le versioni&raquo; per elencare tutte le versioni.</p>
- <img width="512" height="193" src="custom/41SLSP_EPF-prod/img/help/versions_ita.png" />
- <p>&Egrave; possibile ritornare alla lista dei risultati chiudendo la lista delle versioni sotto &laquo;Filtri attivi&raquo;. </p>
- <img width="263" height="191" src="custom/41SLSP_EPF-prod/img/help/activeFilters_ita.png" />
-</md-card-content>
- <md-card-content id="dis4">
- <a href="#index">
- <h3>Visualizzazione di titoli singoli <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Facendo clic su un titolo &egrave; possibile selezionare le seguenti azioni: </p>
- <img width="144" height="274" src="custom/41SLSP_EPF-prod/img/help/fullViewNavigation_ita.png" />
- <p><strong>Top:</strong> torna in alto nella pagina</p>
- <p><strong>Invia a: </strong> esporta informazioni del titolo al programma di gestione dei riferimenti, esporta citazioni, crea link permanenti al risultato, stampa o invia il titolo via e-mail. Le azioni di esportazione possono essere applicate fino a 50 record alla volta. </p>
- <p><strong>Ottenerlo:</strong> visualizza localizzazioni, effettua ordini di prestiti, prenotazioni o fotocopie.</p>
- <p><strong>Dettagli:</strong> maggiori informazioni sul titolo. </p>
- <p><strong>Link:</strong> collega agli indici, al titolo precedente/successivo, a tutti i volumi di una serie.</p>
- <p><strong>Scorri virtualmente:</strong> &egrave; possibile vedere uno scaffale della biblioteca relativo al record selezionato, di modo che sia possibile trovare altri esemplari corrispondenti alla propria ricerca.</p>
- <p>Se un'opera &egrave; disponibile in diverse versioni (per es. in diverse edizioni o stampe), cliccare sull'icona, il titolo o &laquo;Visualizza tutte le versioni&raquo; elencare tutte le versioni.</p>
- <img width="682" height="240" src="custom/41SLSP_EPF-prod/img/help/versions_ita.png" />
- <p>&Egrave; possibile ritornare alla lista dei risultati chiudendo la lista delle versioni sotto &laquo;Filtri Attivi&raquo;.</p>
- <img width="370" height="301" src="custom/41SLSP_EPF-prod/img/help/activeFilters_ita.png" />
-</md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="questions">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Domande?</h2></a>
-</md-card-title-text>
- </md-card-title>
- <md-card-content id="que1">
- <a href="mailto:library@epfl.ch">
- <h3>Informazioni di contatto<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>Per qualsiasi domanda, dubbio, commento o richiesta non esitate <a href="mailto:library@epfl.ch" target="_blank">a contattarci</a>.</p>
-
-</md-card-content>
-
- </md-card>
-
- </div>
-
-
-
- </div>
-
-</md-content>
diff --git a/primo-explore/custom/41SLSP_EPF-test/html/homepage/homepage_de.html b/primo-explore/custom/41SLSP_EPF-test/html/homepage/homepage_de.html
deleted file mode 100644
index c009c2f..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/html/homepage/homepage_de.html
+++ /dev/null
@@ -1,137 +0,0 @@
-<md-content layout-xs="column" layout="row" class="_md md-primoExplore-theme layout-xs-column layout-row epfl-row">
- <div flex-sm="100" flex-md="60" flex-lg="35" flex-xl="30" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h1 class="md-headline">Willkommen bei <b>BEAST</b></h1>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p>Der Katalog <b>BEAST</b> (<b>B</b>ooks, <b>E</b>books and <b>A</b>rticles <b>S</b>earch <b>T</b>ool) bietet Ihnen Zugang zu allen dokumentarischen Ressourcen der Bibliothek der EPFL (Bücher, Zeitschriften und Artikel in gedruckter und elektronischer Form, Dissertationen der EPFL, DVDs, Videospiele usw.) sowie zu den Sammlungen der anderen Bibliotheken des <a href="https://slsp.ch/de">swisscovery-Netzes</a>.</p>
- </md-card-content>
- </md-card>
- </div>
- <div flex-sm="100" flex-md="40" flex-lg="20" flex-xl="20" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Inscription swisscovery</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p>Ihr NEBIS-Konto wurde nicht migriert, was bedeutet, dass alle Benutzerinnen und Benutzer ein neues Konto beim swisscovery erstellen m&uuml;ssen.</p>
- <p><b><a href="https://registration.slsp.ch/?iz=epfl&lang=de" class="puce"><span>&#x25b6;&nbsp;&nbsp;</span><u>Erstellen Sie ein swisscovery-Konto</u></a></b></p>
- <p><b><a href="https://slsp-epfl.primo.exlibrisgroup.com/discovery/account?vid=41SLSP_EPF:prod" class="puce"><span>&#x25b6;&nbsp;&nbsp;</span><u>Sehen Sie Ihr swisscovery-Konto</u></a></b></p>
- </md-card-content>
- </md-card>
- </div>
-</md-content>
-<md-content layout-xs="column" layout="row" class="_md md-primoExplore-theme layout-xs-column layout-row epfl-row">
- <div flex-sm="100" flex-md="60" flex-lg="35" flex-xl="30" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Dienstleistungen</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p>Bitte <a href="https://registration.slsp.ch?iz=epfl&lang=de" target="_blank">registrieren</a> Sie sich f&uuml;r die swisscovery-Netzwerkdienstleistungen, um auf folgende Dienstleistungen zugreifen zu k&ouml;nnen:</p>
- <ul>
- <li>Zugang zu den Sammlungen von mehr als <a href="https://slsp.ch/libraries" target="_blank">450 wissenschaftlichen Bibliotheken</a> in der Schweiz</li>
- <li>Nutzung lizenzierter elektronischer Ressourcen der Bibliothek der EPFL</li>
- <li>Dokumente aus anderen Bibliotheken bestellen (kostenlos, wenn sie in der Bibliothek der EPFL abgeholt werden)</li>
- <li>Zugriff auf Bibliothekskonto, Ausleihen und Reservierungen</li>
- </ul>
- </md-card-content>
- </md-card>
- </div>
- <div flex-sm="100" flex-md="40" flex-lg="20" flex-xl="20" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Fragen? Brauchen Sie Hilfe? </h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p><a href="https://www.epfl.ch/campus/library/slsp-network-and-swisscovery-opening/" class="puce"><span><md-icon md-svg-icon="primo-ui:help-circle-outline" alt="" class="md-primoExplore-theme" aria-hidden="true"></md-icon>&nbsp;&nbsp;</span><span><u>FAQ</u></span></a></p>
- <p>
- <a href="mailto:library@epfl.ch" class="puce"><span>
- <prm-icon aria-label="Cliquer pour envoyer un email à un bibliothécaire" class="md-icon-button-custom" icon-type="svg" svg-icon-set="primo-actions" icon-definition="email"></prm-icon>&nbsp;&nbsp;
- </span><span><u>library@epfl.ch</u></span></a>
- </p>
- <p>
- <a href="tel:+41 21 693 2156" class="puce"><span><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" id="svg8" version="1.1" viewBox="0 0 5.8208332 4.7625001" height="18" width="22">
- <defs id="defs2" />
- <metadata id="metadata5">
- <rdf:RDF>
- <cc:Work rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title></dc:title>
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g transform="translate(0,-292.23748)" id="layer1">
- <path id="path3724"
- d="m 1.055825,292.26314 c 0,0 0.9625162,0.58692 0.9450235,1.05996 -0.013351,0.361 -0.7790059,0.75345 -0.7790059,0.75345 0,0 0.7151529,1.2643 2.0432941,1.87728 0,0 0.2369017,-0.82813 0.6129882,-0.94501 0.3442827,-0.10707 1.1876644,0.80455 1.1876644,0.80455 -0.088535,0.46531 -0.6221609,1.20306 -1.4430764,1.20042 -1.2544625,-0.003 -3.61407604,-2.55411 -3.56299368,-3.5119 0.05108229,-0.9578 0.6896117,-1.22598 0.99610578,-1.23875 z"
- style="fill-opacity:1;stroke:none;stroke-width:0.30815426px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- </g>
- </svg>&nbsp;&nbsp;</span><span><u>+41 21 693 21 56</u></span></a>
- </p>
- </md-card-content>
- </md-card>
- </div>
-</md-content>
-<md-content>
- <div flex="100">
- <md-card class="prm-primary-bg psfooter" flex layout-gt-sm="row" layout-align="space-around start">
- <md-card-content class="prm-primary-bg">
- <!-- <span class="md-headline">Adresse:</span> -->
- <p>EPFL Biblioth&egrave;que</p>
- <p>Rolex Learning Center</p>
- <p>Station 20</p>
- <p>CH-1015 Lausanne</p>
- </md-card-content>
- <md-card-content class="prm-primary-bg">
- <!-- <span class="md-headline">Contact:</span> -->
- <p><a href="tel:+41216932156">+41 21 693 21 56</a></p>
- <p><a href="mailto:library@epfl.ch">library@epfl.ch</a></p>
- <p><a href="https://www.epfl.ch/campus/library/" target="_blank">https://www.epfl.ch/campus/library/</a></p>
- <p class="epfl-social">
- <a href="https://www.facebook.com/EPFLlibrary/" target="_blank" aria-label="Facebook">
- <img src="custom/41SLSP_EPF-prod/img/facebook.png" />
- </a>
- <a href="https://www.instagram.com/epfllibrary/" target="_blank" aria-label="Instagram">
- <img src="custom/41SLSP_EPF-prod/img/Instagram.png" />
- </a>
- <a href="https://twitter.com/epfllibrary" target="_blank" aria-label="Twitter">
- <img src="custom/41SLSP_EPF-prod/img/Twitter.png" />
- </a>
- <a href="https://www.youtube.com/channel/UCOylyf3oGEBGF-0gWYsBWqQ" target="_blank" aria-label="Youtube">
- <img src="custom/41SLSP_EPF-prod/img/Youtube.png" />
- </a>
- <a href="https://www.linkedin.com/showcase/10468051" target="_blank" aria-label="LinkedIn">
- <img src="custom/41SLSP_EPF-prod/img/LinkedIn.png" />
- </a>
- </p>
- </md-card-content>
- <md-card-content class="prm-primary-bg">
- <!-- <span class="md-headline">Description:</span> -->
- <p>Diese Seite ist der Zugangspunkt zu den Ressourcen der</p>
- <p><a class="ps_link" href="https://www.epfl.ch/campus/library/" target="_blank">Biblioth&egrave;que de l'EPFL</a></p>
- </md-card-content>
- </md-card>
- <md-card class="prm-primary-bg psfooter-legal" flex layout-gt-sm="row" layout-align-gt-sm="center start">
- <md-card-content class="prm-primary-bg" flex-gt-sm="70" layout-align-gt-sm="end">
- <span class="legal">Die EPFL Bibliothek ist Mitglied der <a href="https://slsp.ch" target="_blank" class="ps_link">Swiss Library Service Platform (SLSP) network</a></span>
- </md-card-content>
- <md-card-content class="prm-primary-bg" flex-gt-sm="15" layout-align-gt-sm="end">
- <a class="ps_link legal" href="https://slsp.ch/termsofuse" target="_blank">Rechtliche Informationen</a>
- </md-card-content>
- <md-card-content class="prm-primary-bg" flex-gt-sm="15" layout-align-gt-sm="end">
- <a class="ps_link legal" href="https://slsp.ch/en/dataprotection" target="_blank">Datenschutz</a>
- </md-card-content>
- </md-card>
- </div>
-</md-content>
diff --git a/primo-explore/custom/41SLSP_EPF-test/html/homepage/homepage_de_old.html b/primo-explore/custom/41SLSP_EPF-test/html/homepage/homepage_de_old.html
deleted file mode 100644
index ae92f88..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/html/homepage/homepage_de_old.html
+++ /dev/null
@@ -1,119 +0,0 @@
-<md-content>
-
- <div class="ps_content md-padding" layout-gt-sm="row" layout-align="start start">
- <div flex="0" flex-md="0" flex-lg="20" flex-xl="25"></div>
- <div flex-sm="100" flex-md="60" flex-lg="35" flex-xl="30" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h1 class="md-headline">Willkommen bei <b>swisscovery</b></h1>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p>
- Hier stehen Ihnen einfache und erweiterte Suchfunktionen f&uuml;r B&uuml;cher, E-Books, <a href="https://consortium.ch/lizenzen/" target="_blank">Zeitschriften</a>, <a href="https://consortium.ch/lizenzen/" target="_blank">Datenbanken</a> und weitere Medien zur Verf&uuml;gung.
- <br />
- <br />
- Bitte <a href="#" target="_blank">loggen Sie sich ein</a> und profitieren Sie von unseren SLSP-Services, wie z. B.:
- </p>
- <ul>
- <li>Erhalten Sie Zugang zu &uuml;ber <a href="https://slsp.ch/libraries" target="_blank">450 wissenschaftlichen Bibliotheken</a> in der Schweiz</li>
- <li>Nutzen Sie von Ihrer Bibliothek lizenzierte E-Medien und erhalten Sie Zugang zu freien Titeln</li>
- <li>Bestellen Sie Artikel bei Bibliotheken, direkt oder via SLSP Courier</li>
- <li>Verwalten Sie Ihr Konto, Ihre Ausleihen und Ihre Vormerkungen</li>
- </ul>
- <br />
- <p>
- <b>
- Registrierung
- </b>
- </p>
- <p>
- Um ein SLSP-Nutzer zu werden, registrieren Sie sich bitte auf unserer <a href="https://registration.slsp.ch" target="_blank">Registrierungsplattform</a>.
- </p>
- </md-card-content>
- </md-card>
-
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Search Scope</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <img width="100%" src="custom/41SLSP_EPF-prod/img/infographic_de.png" />
- </md-card-content>
- </md-card>
- </div>
- <div flex-sm="100" flex-md="40" flex-lg="20" flex-xl="20" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Library Search</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <div class="resp-container">
- <iframe class="resp-iframe" src="https://tube.switch.ch/embed/bff2c4a6" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
- </div>
- </md-card-content>
- </md-card>
- <div flex-gt-sm="40" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Fragen, Kommentare und Support</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p>
- Haben Sie Fragen oder m&ouml;chten Sie einen Kommentar anbringen? Haben Sie Probleme mit swisscovery? Dann <a href="mailto:?" target="_blank">kontaktieren Sie uns</a>! Wir freuen uns auf Ihre Nachricht.
- </p>
- </md-card-content>
- </md-card>
- </div>
- </div>
- </div>
-</md-content>
-<md-content>
- <div flex="100">
- <md-card class="prm-primary-bg psfooter" flex layout-gt-sm="row" layout-align="space-around start">
- <md-card-content class="prm-primary-bg">
- <span class="md-headline">Adresse:</span>
- <p>&#91;Name der Institution / Bibliothek&#93;</p>
- <p>&#91;Stra&szlig;enname und -nummer&#93;</p>
- <p>&#91;Postleitzahl und Stadt&#93;</p>
- </md-card-content>
- <md-card-content class="prm-primary-bg">
- <span class="md-headline">Kontakt:</span>
- <p>&#91;phone number&#93;</p>
- <p><a href="mailto:?">&#91;E-Mail-Adresse&#93;</a></p>
- <p><a href="#" target="_blank">&#91;website&#93;</a></p>
- <p>
- <md-button href="#" target="_blank" class="ps-button md-icon-button" aria-label="Youtube">
- <md-icon class="ps_icon" md-svg-icon="custom/41SLSP_EPF-prod/img/youtube.svg"></md-icon>
- </md-button>
- <md-button href="#" target="_blank" class="ps-button md-icon-button" aria-label="LinkedIn">
- <md-icon class="ps_icon" md-svg-icon="custom/41SLSP_EPF-prod/img/linkedin.svg"></md-icon>
- </md-button>
- </p>
- </md-card-content>
- <md-card-content class="prm-primary-bg">
- <span class="md-headline">Beschreibung:</span>
- <p>Diese Seite ist der Zugangspunkt zu den Ressourcen der</p>
- <p><a class="ps_link" href="#" target="_blank">&#91;Name der Bibliothek / die folgenden Bibliotheken&#93;</a></p>
- </md-card-content>
- </md-card>
- <md-card class="prm-primary-bg psfooter-legal" flex layout-gt-sm="row" layout-align-gt-sm="center start">
- <md-card-content class="prm-primary-bg" flex-gt-sm="70" layout-align-gt-sm="end">
- <span class="legal">Der &#91;Name der Institution / Bibliothek/ies&#93; ist Mitglied der <a href="https://slsp.ch" target="_blank" class="ps_link">Swiss Library Service Platform (SLSP) network</a></span>
- </md-card-content>
- <md-card-content class="prm-primary-bg" flex-gt-sm="15" layout-align-gt-sm="end">
- <a class="ps_link legal" href="https://slsp.ch/termsofuse" target="_blank">Rechtliche Informationen</a>
- </md-card-content>
- <md-card-content class="prm-primary-bg" flex-gt-sm="15" layout-align-gt-sm="end">
- <a class="ps_link legal" href="https://slsp.ch/en/dataprotection" target="_blank">Datenschutz</a>
- </md-card-content>
- </md-card>
- </div>
-</md-content>
diff --git a/primo-explore/custom/41SLSP_EPF-test/html/homepage/homepage_en.html b/primo-explore/custom/41SLSP_EPF-test/html/homepage/homepage_en.html
deleted file mode 100644
index 8e7d7f6..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/html/homepage/homepage_en.html
+++ /dev/null
@@ -1,137 +0,0 @@
-<md-content layout-xs="column" layout="row" class="_md md-primoExplore-theme layout-xs-column layout-row epfl-row">
- <div flex-sm="100" flex-md="60" flex-lg="35" flex-xl="30" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h1 class="md-headline">Welcome to <b>BEAST</b></h1>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p>The <b>BEAST</b> catalog (<b>B</b>ooks, <b>E</b>books and <b>A</b>rticles <b>S</b>earch <b>T</b>ool) allows you to search through all EPFL Library documentary resources (books and ebooks, online and printed journals and articles, EPFL theses, DVDs, video games, etc.), as well as through the collections of the other libraries of <a href="https://slsp.ch">swisscovery</a> network.</p>
- </md-card-content>
- </md-card>
- </div>
- <div flex-sm="100" flex-md="40" flex-lg="20" flex-xl="20" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">swisscovery Registration</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p>The NEBIS reader accounts have not been migrated, which means that all users must create a new account with swisscovery.</p>
- <p><b><a href="https://registration.slsp.ch/?iz=epfl&lang=en" class="puce"><span>&#x25b6;&nbsp;&nbsp;</span><u>Create an swisscovery account</u></a></b></p>
- <p><b><a href="https://slsp-epfl.primo.exlibrisgroup.com/discovery/account?vid=41SLSP_EPF:prod" class="puce"><span>&#x25b6;&nbsp;&nbsp;</span><u>View your swisscovery account</u></a></b></p>
- </md-card-content>
- </md-card>
- </div>
-</md-content>
-<md-content layout-xs="column" layout="row" class="_md md-primoExplore-theme layout-xs-column layout-row epfl-row">
- <div flex-sm="100" flex-md="60" flex-lg="35" flex-xl="30" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Services</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p>Please <a href="https://registration.slsp.ch?iz=epfl&lang=en" target="_blank">register</a> for swisscovery network to benefit from services such as:</p>
- <ul>
- <li>Access to the collections of more than <a href="https://slsp.ch/libraries" target="_blank">450 scientific libraries</a> in Switzerland</li>
- <li>Use electronic resources available through EPFL Library license</li>
- <li>Order documents from other libraries (free of charge if picked up at the EPFL Library)</li>
- <li>Access your reader account, loans and reservations</li>
- </ul>
- </md-card-content>
- </md-card>
- </div>
- <div flex-sm="100" flex-md="40" flex-lg="20" flex-xl="20" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Need some help?</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p><a href="https://www.epfl.ch/campus/library/slsp-network-and-swisscovery-opening/" class="puce"><span><md-icon md-svg-icon="primo-ui:help-circle-outline" alt="" class="md-primoExplore-theme" aria-hidden="true"></md-icon>&nbsp;&nbsp;</span><span><u>FAQ</u></span></a></p>
- <p>
- <a href="mailto:library@epfl.ch" class="puce"><span>
- <prm-icon aria-label="Cliquer pour envoyer un email à un bibliothécaire" class="md-icon-button-custom" icon-type="svg" svg-icon-set="primo-actions" icon-definition="email"></prm-icon>&nbsp;&nbsp;
- </span><span><u>library@epfl.ch</u></span></a>
- </p>
- <p>
- <a href="tel:+41 21 693 2156" class="puce"><span><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" id="svg8" version="1.1" viewBox="0 0 5.8208332 4.7625001" height="18" width="22">
- <defs id="defs2" />
- <metadata id="metadata5">
- <rdf:RDF>
- <cc:Work rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title></dc:title>
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g transform="translate(0,-292.23748)" id="layer1">
- <path id="path3724"
- d="m 1.055825,292.26314 c 0,0 0.9625162,0.58692 0.9450235,1.05996 -0.013351,0.361 -0.7790059,0.75345 -0.7790059,0.75345 0,0 0.7151529,1.2643 2.0432941,1.87728 0,0 0.2369017,-0.82813 0.6129882,-0.94501 0.3442827,-0.10707 1.1876644,0.80455 1.1876644,0.80455 -0.088535,0.46531 -0.6221609,1.20306 -1.4430764,1.20042 -1.2544625,-0.003 -3.61407604,-2.55411 -3.56299368,-3.5119 0.05108229,-0.9578 0.6896117,-1.22598 0.99610578,-1.23875 z"
- style="fill-opacity:1;stroke:none;stroke-width:0.30815426px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- </g>
- </svg>&nbsp;&nbsp;</span><span><u>+41 21 693 21 56</u></span></a>
- </p>
- </md-card-content>
- </md-card>
- </div>
-</md-content>
-<md-content>
- <div flex="100">
- <md-card class="prm-primary-bg psfooter" flex layout-gt-sm="row" layout-align="space-around start">
- <md-card-content class="prm-primary-bg">
- <!-- <span class="md-headline">Adresse:</span> -->
- <p>EPFL Biblioth&egrave;que</p>
- <p>Rolex Learning Center</p>
- <p>Station 20</p>
- <p>CH-1015 Lausanne</p>
- </md-card-content>
- <md-card-content class="prm-primary-bg">
- <!-- <span class="md-headline">Contact:</span> -->
- <p><a href="tel:+41216932156">+41 21 693 21 56</a></p>
- <p><a href="mailto:library@epfl.ch">library@epfl.ch</a></p>
- <p><a href="https://www.epfl.ch/campus/library/" target="_blank">https://www.epfl.ch/campus/library/</a></p>
- <p class="epfl-social">
- <a href="https://www.facebook.com/EPFLlibrary/" target="_blank" aria-label="Facebook">
- <img src="custom/41SLSP_EPF-prod/img/facebook.png" />
- </a>
- <a href="https://www.instagram.com/epfllibrary/" target="_blank" aria-label="Instagram">
- <img src="custom/41SLSP_EPF-prod/img/Instagram.png" />
- </a>
- <a href="https://twitter.com/epfllibrary" target="_blank" aria-label="Twitter">
- <img src="custom/41SLSP_EPF-prod/img/Twitter.png" />
- </a>
- <a href="https://www.youtube.com/channel/UCOylyf3oGEBGF-0gWYsBWqQ" target="_blank" aria-label="Youtube">
- <img src="custom/41SLSP_EPF-prod/img/Youtube.png" />
- </a>
- <a href="https://www.linkedin.com/showcase/10468051" target="_blank" aria-label="LinkedIn">
- <img src="custom/41SLSP_EPF-prod/img/LinkedIn.png" />
- </a>
- </p>
- </md-card-content>
- <md-card-content class="prm-primary-bg">
- <!-- <span class="md-headline">Description:</span> -->
- <p>This page is the access point to the resources of the</p>
- <p><a class="ps_link" href="https://www.epfl.ch/campus/library/" target="_blank">EPFL Library</a></p>
- </md-card-content>
- </md-card>
- <md-card class="prm-primary-bg psfooter-legal" flex layout-gt-sm="row" layout-align-gt-sm="center start">
- <md-card-content class="prm-primary-bg" flex-gt-sm="70" layout-align-gt-sm="end">
- <span class="legal">The EPFL library is member of the <a href="https://slsp.ch" target="_blank" class="ps_link">Swiss Library Service Platform (SLSP) network</a></span>
- </md-card-content>
- <md-card-content class="prm-primary-bg" flex-gt-sm="15" layout-align-gt-sm="end">
- <a class="ps_link legal" href="https://slsp.ch/termsofuse" target="_blank">Legal Information</a>
- </md-card-content>
- <md-card-content class="prm-primary-bg" flex-gt-sm="15" layout-align-gt-sm="end">
- <a class="ps_link legal" href="https://slsp.ch/en/dataprotection" target="_blank">Data Protection</a>
- </md-card-content>
- </md-card>
- </div>
-</md-content>
diff --git a/primo-explore/custom/41SLSP_EPF-test/html/homepage/homepage_en_old.html b/primo-explore/custom/41SLSP_EPF-test/html/homepage/homepage_en_old.html
deleted file mode 100644
index 7aa7ee5..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/html/homepage/homepage_en_old.html
+++ /dev/null
@@ -1,119 +0,0 @@
-<md-content>
-
- <div class="ps_content md-padding" layout-gt-sm="row" layout-align="start start">
- <div flex="0" flex-md="0" flex-lg="20" flex-xl="25"></div>
- <div flex-sm="100" flex-md="60" flex-lg="35" flex-xl="30" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h1 class="md-headline">Welcome to <b>swisscovery</b></h1>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p>
- Here you can perform simple and advanced searches for books, e-books, <a href="https://consortium.ch/lizenzen/?lang=en" target="_blank">journals</a>, <a href="https://consortium.ch/lizenzen/?lang=en" target="_blank">databases</a> and other media.
- <br />
- <br />
- Please <a href="#" target="_blank">sign in</a> in order profit from our SLSP services such as:
- </p>
- <ul>
- <li>Get access to more than <a href="https://slsp.ch/libraries" target="_blank">450 scientific libraries</a> in Switzerland</li>
- <li>Use e-media licensed by your library and access free titles</li>
- <li>Request books from libraries, directly or via SLSP courier</li>
- <li>Manage your account, your loans and your requests</li>
- </ul>
- <br />
- <p>
- <b>
- Registration
- </b>
- </p>
- <p>
- To become a SLSP user please register at our <a href="https://registration.slsp.ch" target="_blank">registration platform</a>.
- </p>
- </md-card-content>
- </md-card>
-
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Search Scope</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <img width="100%" src="custom/41SLSP_EPF-prod/img/infographic_en.png" />
- </md-card-content>
- </md-card>
- </div>
- <div flex-sm="100" flex-md="40" flex-lg="20" flex-xl="20" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Library Search</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <div class="resp-container">
- <iframe class="resp-iframe" src="https://tube.switch.ch/embed/bff2c4a6" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
- </div>
- </md-card-content>
- </md-card>
- <div flex-gt-sm="40" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Questions, comments and support</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p>
- Do you have any questions or comments? Are you experiencing problems with swisscovery? Don't hesitate to <a href="mailto:?" target="_blank">contact us</a>! We are looking forward to reading your message.
- </p>
- </md-card-content>
- </md-card>
- </div>
- </div>
- </div>
-</md-content>
-<md-content>
- <div flex="100">
- <md-card class="prm-primary-bg psfooter" flex layout-gt-sm="row" layout-align="space-around start">
- <md-card-content class="prm-primary-bg">
- <span class="md-headline">Address:</span>
- <p>&#91;name of the Institution / Library&#93;</p>
- <p>&#91;street name and number&#93;</p>
- <p>&#91;post code and city&#93;</p>
- </md-card-content>
- <md-card-content class="prm-primary-bg">
- <span class="md-headline">Contact us:</span>
- <p>&#91;phone number&#93;</p>
- <p><a href="mailto:?">&#91;email address&#93;</a></p>
- <p><a href="#" target="_blank">&#91;website&#93;</a></p>
- <p>
- <md-button href="#" target="_blank" class="ps-button md-icon-button" aria-label="Youtube">
- <md-icon class="ps_icon" md-svg-icon="custom/41SLSP_EPF-prod/img/youtube.svg"></md-icon>
- </md-button>
- <md-button href="#" target="_blank" class="ps-button md-icon-button" aria-label="LinkedIn">
- <md-icon class="ps_icon" md-svg-icon="custom/41SLSP_EPF-prod/img/linkedin.svg"></md-icon>
- </md-button>
- </p>
- </md-card-content>
- <md-card-content class="prm-primary-bg">
- <span class="md-headline">Description:</span>
- <p>This page is the access point to the resources of the</p>
- <p><a class="ps_link" href="#" target="_blank">&#91;name of the library / the following libraries&#93;</a></p>
- </md-card-content>
- </md-card>
- <md-card class="prm-primary-bg psfooter-legal" flex layout-gt-sm="row" layout-align-gt-sm="center start">
- <md-card-content class="prm-primary-bg" flex-gt-sm="70" layout-align-gt-sm="end">
- <span class="legal">The &#91;Name of the Institution / Library/ies&#93; is member of the <a href="https://slsp.ch" target="_blank" class="ps_link">Swiss Library Service Platform (SLSP) network</a></span>
- </md-card-content>
- <md-card-content class="prm-primary-bg" flex-gt-sm="15" layout-align-gt-sm="end">
- <a class="ps_link legal" href="https://slsp.ch/termsofuse" target="_blank">Legal Information</a>
- </md-card-content>
- <md-card-content class="prm-primary-bg" flex-gt-sm="15" layout-align-gt-sm="end">
- <a class="ps_link legal" href="https://slsp.ch/en/dataprotection" target="_blank">Data Protection</a>
- </md-card-content>
- </md-card>
- </div>
-</md-content>
diff --git a/primo-explore/custom/41SLSP_EPF-test/html/homepage/homepage_fr.html b/primo-explore/custom/41SLSP_EPF-test/html/homepage/homepage_fr.html
deleted file mode 100644
index 4436d90..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/html/homepage/homepage_fr.html
+++ /dev/null
@@ -1,137 +0,0 @@
-<md-content layout-xs="column" layout="row" class="_md md-primoExplore-theme layout-xs-column layout-row epfl-row">
- <div flex-sm="100" flex-md="60" flex-lg="35" flex-xl="30" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h1 class="md-headline">Bienvenue sur <b>BEAST</b></h1>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p><b>BEAST</b> - <b>B</b>ooks, <b>E</b>books and <b>A</b>rticles <b>S</b>earch <b>T</b>ool - vous donne acc&egrave;s &agrave; l’ensemble des ressources documentatires de la Biblioth&egrave;que de l'EPFL (livres, revues et articles imprim&eacute;s et &eacute;lectroniques, th&egrave;ses EPFL, DVDs, jeux vid&eacute;o, etc.), ainsi qu'aux collections des autres biblioth&egrave;ques du r&eacute;seau <a href="https://slsp.ch/fr">swisscovery</a>.</p>
- </md-card-content>
- </md-card>
- </div>
- <div flex-sm="100" flex-md="40" flex-lg="20" flex-xl="20" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Inscription swisscovery</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p>Les comptes lecteurs n'ont pas &eacute;t&eacute; migr&eacute;s, ce qui signifie que tous les utilisateurs doivent se cr&eacute;er un nouveau compte aupr&egrave;s de swisscovery.</p>
- <p><b><a href="https://registration.slsp.ch/?iz=epfl&lang=fr" class="puce"><span>&#x25b6;&nbsp;&nbsp;</span><u>Cr&eacute;er un compte swisscovery</u></a></b></p>
- <p><b><a href="https://slsp-epfl.primo.exlibrisgroup.com/discovery/account?vid=41SLSP_EPF:prod" class="puce"><span>&#x25b6;&nbsp;&nbsp;</span><u>Voir votre compte swisscovery</u></a></b></p>
- </md-card-content>
- </md-card>
- </div>
-</md-content>
-<md-content layout-xs="column" layout="row" class="_md md-primoExplore-theme layout-xs-column layout-row epfl-row">
- <div flex-sm="100" flex-md="60" flex-lg="35" flex-xl="30" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Services</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p>Veuillez vous <a href="https://registration.slsp.ch?iz=epfl&lang=fr" target="_blank">inscrire</a> pour b&eacute;n&eacute;ficier de nombreux services tels que&nbsp;:</p>
- <ul>
- <li>Acc&eacute;der &agrave; plus de <a href="https://slsp.ch/libraries" target="_blank">450 biblioth&egrave;ques scientifiques</a> en Suisse</li>
- <li>Utiliser les m&eacute;dias &eacute;lectroniques sous licence de la Bibliothèque de l'EPFL et acc&eacute;der &agrave; des titres gratuits</li>
- <li>Commander des documents provenant d'autres biblioth&egrave;ques (service gratuit si retrait sur place)</li>
- <li>G&eacute;rer votre compte, vos pr&ecirc;ts et vos demandes</li>
- </ul>
- </md-card-content>
- </md-card>
- </div>
- <div flex-sm="100" flex-md="40" flex-lg="20" flex-xl="20" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Besoin d'aide ?</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p><a href="https://www.epfl.ch/campus/library/fr/ouverture-du-reseau-slsp-et-de-swisscovery/" class="puce"><span><md-icon md-svg-icon="primo-ui:help-circle-outline" alt="" class="md-primoExplore-theme" aria-hidden="true"></md-icon>&nbsp;&nbsp;</span><span><u>FAQ</u></span></a></p>
- <p>
- <a href="mailto:library@epfl.ch" class="puce"><span>
- <prm-icon aria-label="Cliquer pour envoyer un email à un bibliothécaire" class="md-icon-button-custom" icon-type="svg" svg-icon-set="primo-actions" icon-definition="email"></prm-icon>&nbsp;&nbsp;
- </span><span><u>library@epfl.ch</u></span></a>
- </p>
- <p>
- <a href="tel:+41 21 693 2156" class="puce"><span><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" id="svg8" version="1.1" viewBox="0 0 5.8208332 4.7625001" height="18" width="22">
- <defs id="defs2" />
- <metadata id="metadata5">
- <rdf:RDF>
- <cc:Work rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title></dc:title>
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g transform="translate(0,-292.23748)" id="layer1">
- <path id="path3724"
- d="m 1.055825,292.26314 c 0,0 0.9625162,0.58692 0.9450235,1.05996 -0.013351,0.361 -0.7790059,0.75345 -0.7790059,0.75345 0,0 0.7151529,1.2643 2.0432941,1.87728 0,0 0.2369017,-0.82813 0.6129882,-0.94501 0.3442827,-0.10707 1.1876644,0.80455 1.1876644,0.80455 -0.088535,0.46531 -0.6221609,1.20306 -1.4430764,1.20042 -1.2544625,-0.003 -3.61407604,-2.55411 -3.56299368,-3.5119 0.05108229,-0.9578 0.6896117,-1.22598 0.99610578,-1.23875 z"
- style="fill-opacity:1;stroke:none;stroke-width:0.30815426px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- </g>
- </svg>&nbsp;&nbsp;</span><span><u>+41 21 693 21 56</u></span></a>
- </p>
- </md-card-content>
- </md-card>
- </div>
-</md-content>
-<md-content>
- <div flex="100">
- <md-card class="prm-primary-bg psfooter" flex layout-gt-sm="row" layout-align="space-around start">
- <md-card-content class="prm-primary-bg">
- <!-- <span class="md-headline">Adresse:</span> -->
- <p>EPFL Biblioth&egrave;que</p>
- <p>Rolex Learning Center</p>
- <p>Station 20</p>
- <p>CH-1015 Lausanne</p>
- </md-card-content>
- <md-card-content class="prm-primary-bg">
- <!-- <span class="md-headline">Contact:</span> -->
- <p><a href="tel:+41216932156">+41 21 693 21 56</a></p>
- <p><a href="mailto:library@epfl.ch">library@epfl.ch</a></p>
- <p><a href="https://go.epfl.ch/bibliotheque" target="_blank">https://go.epfl.ch/bibliotheque</a></p>
- <p class="epfl-social">
- <a href="https://www.facebook.com/EPFLlibrary/" target="_blank" aria-label="Facebook">
- <img src="custom/41SLSP_EPF-prod/img/facebook.png" />
- </a>
- <a href="https://www.instagram.com/epfllibrary/" target="_blank" aria-label="Instagram">
- <img src="custom/41SLSP_EPF-prod/img/Instagram.png" />
- </a>
- <a href="https://twitter.com/epfllibrary" target="_blank" aria-label="Twitter">
- <img src="custom/41SLSP_EPF-prod/img/Twitter.png" />
- </a>
- <a href="https://www.youtube.com/channel/UCOylyf3oGEBGF-0gWYsBWqQ" target="_blank" aria-label="Youtube">
- <img src="custom/41SLSP_EPF-prod/img/Youtube.png" />
- </a>
- <a href="https://www.linkedin.com/showcase/10468051" target="_blank" aria-label="LinkedIn">
- <img src="custom/41SLSP_EPF-prod/img/LinkedIn.png" />
- </a>
- </p>
- </md-card-content>
- <md-card-content class="prm-primary-bg">
- <!-- <span class="md-headline">Description:</span> -->
- <p>Cette page est le point d&rsquo;acc&egrave;s aux ressources de</p>
- <p><a class="ps_link" href="https://go.epfl.ch/bibliotheque" target="_blank">La Biblioth&egrave;que de l'EPFL</a></p>
- </md-card-content>
- </md-card>
- <md-card class="prm-primary-bg psfooter-legal" flex layout-gt-sm="row" layout-align-gt-sm="center start">
- <md-card-content class="prm-primary-bg" flex-gt-sm="70" layout-align-gt-sm="end">
- <span class="legal">La Biblioth&egrave;que de l'EPFL est membre du <a href="https://slsp.ch" target="_blank" class="ps_link">Swiss Library Service Platform (SLSP) network</a></span>
- </md-card-content>
- <md-card-content class="prm-primary-bg" flex-gt-sm="15" layout-align-gt-sm="end">
- <a class="ps_link legal" href="https://slsp.ch/termsofuse" target="_blank">Informations juridiques</a>
- </md-card-content>
- <md-card-content class="prm-primary-bg" flex-gt-sm="15" layout-align-gt-sm="end">
- <a class="ps_link legal" href="https://slsp.ch/en/dataprotection" target="_blank">Protection des donn&eacute;es</a>
- </md-card-content>
- </md-card>
- </div>
-</md-content>
diff --git a/primo-explore/custom/41SLSP_EPF-test/html/homepage/homepage_it.html b/primo-explore/custom/41SLSP_EPF-test/html/homepage/homepage_it.html
deleted file mode 100644
index 7e2c9c3..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/html/homepage/homepage_it.html
+++ /dev/null
@@ -1,137 +0,0 @@
-<md-content layout-xs="column" layout="row" class="_md md-primoExplore-theme layout-xs-column layout-row epfl-row">
- <div flex-sm="100" flex-md="60" flex-lg="35" flex-xl="30" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h1 class="md-headline">Benvenuti su <b>BEAST</b></h1>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p>Il catalogo <b>BEAST</b> (<b>B</b>ooks, <b>E</b>books and <b>A</b>rticles <b>S</b>earch <b>T</b>ool) vi permette di accedere all’insieme delle risorse documentarie della Biblioteca dell’EPFL (libri, riviste e articoli in formato cartaceo ed elettronico, tesi dell’EPFL, DVD, videogiochi, ecc.) cosi come alle collezioni delle altre biblioteche della rete <a href="https://slsp.ch/it">swisscovery</a>.</p>
- </md-card-content>
- </md-card>
- </div>
- <div flex-sm="100" flex-md="40" flex-lg="20" flex-xl="20" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Iscrizione a swisscovery</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p>Gli account utente NEBIS non sono stati migrati sulla nuova piattaforma. Tutti i lettori dovranno quindi crearsi un nuovo account swisscovery. </p>
- <p><b><a href="https://registration.slsp.ch/?iz=epfl&lang=it" class="puce"><span>&#x25b6;&nbsp;&nbsp;</span><u>Creare un account swisscovery</u></a></b></p>
- <p><b><a href="https://slsp-epfl.primo.exlibrisgroup.com/discovery/account?vid=41SLSP_EPF:prod" class="puce"><span>&#x25b6;&nbsp;&nbsp;</span><u>Visualizza il tuo conto swisscovery</u></a></b></p>
- </md-card-content>
- </md-card>
- </div>
-</md-content>
-<md-content layout-xs="column" layout="row" class="_md md-primoExplore-theme layout-xs-column layout-row epfl-row">
- <div flex-sm="100" flex-md="60" flex-lg="35" flex-xl="30" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Servizi</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p>&Egrave; necessario <a href="https://registration.slsp.ch?iz=epfl&lang=it" target="_blank">iscriversi</a> per usfruire dei servizi della rete swisscovery, come ad esempio:</p>
- <ul>
- <li>Accedere alle collezioni di oltre <a href="https://slsp.ch/libraries" target="_blank">450 biblioteche</a> scientifiche in Svizzera</li>
- <li>Utilizzare le risorse elettroniche in abbonamento alla Biblioteca dell’EPFL</li>
- <li>Ordinare dei documenti provenienti dalle altre biblioteche (il servizio è gratuito se i documenti vengono ritirati alla Biblioteca dell’EPFL)</li>
- <li>Gestire il vostro account utente, i vostri prestiti e le vostre prenotazioni</li>
- </ul>
- </md-card-content>
- </md-card>
- </div>
- <div flex-sm="100" flex-md="40" flex-lg="20" flex-xl="20" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Bisogno d’aiuto?</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p><a href="https://www.epfl.ch/campus/library/slsp-network-and-swisscovery-opening/" class="puce"><span><md-icon md-svg-icon="primo-ui:help-circle-outline" alt="" class="md-primoExplore-theme" aria-hidden="true"></md-icon>&nbsp;&nbsp;</span><span><u>FAQ</u></span></a></p>
- <p>
- <a href="mailto:library@epfl.ch" class="puce"><span>
- <prm-icon aria-label="Cliquer pour envoyer un email à un bibliothécaire" class="md-icon-button-custom" icon-type="svg" svg-icon-set="primo-actions" icon-definition="email"></prm-icon>&nbsp;&nbsp;
- </span><span><u>library@epfl.ch</u></span></a>
- </p>
- <p>
- <a href="tel:+41 21 693 2156" class="puce"><span><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" id="svg8" version="1.1" viewBox="0 0 5.8208332 4.7625001" height="18" width="22">
- <defs id="defs2" />
- <metadata id="metadata5">
- <rdf:RDF>
- <cc:Work rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title></dc:title>
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g transform="translate(0,-292.23748)" id="layer1">
- <path id="path3724"
- d="m 1.055825,292.26314 c 0,0 0.9625162,0.58692 0.9450235,1.05996 -0.013351,0.361 -0.7790059,0.75345 -0.7790059,0.75345 0,0 0.7151529,1.2643 2.0432941,1.87728 0,0 0.2369017,-0.82813 0.6129882,-0.94501 0.3442827,-0.10707 1.1876644,0.80455 1.1876644,0.80455 -0.088535,0.46531 -0.6221609,1.20306 -1.4430764,1.20042 -1.2544625,-0.003 -3.61407604,-2.55411 -3.56299368,-3.5119 0.05108229,-0.9578 0.6896117,-1.22598 0.99610578,-1.23875 z"
- style="fill-opacity:1;stroke:none;stroke-width:0.30815426px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- </g>
- </svg>&nbsp;&nbsp;</span><span><u>+41 21 693 21 56</u></span></a>
- </p>
- </md-card-content>
- </md-card>
- </div>
-</md-content>
-<md-content>
- <div flex="100">
- <md-card class="prm-primary-bg psfooter" flex layout-gt-sm="row" layout-align="space-around start">
- <md-card-content class="prm-primary-bg">
- <!-- <span class="md-headline">Adresse:</span> -->
- <p>EPFL Biblioth&egrave;que</p>
- <p>Rolex Learning Center</p>
- <p>Station 20</p>
- <p>CH-1015 Lausanne</p>
- </md-card-content>
- <md-card-content class="prm-primary-bg">
- <!-- <span class="md-headline">Contact:</span> -->
- <p><a href="tel:+41216932156">+41 21 693 21 56</a></p>
- <p><a href="mailto:library@epfl.ch">library@epfl.ch</a></p>
- <p><a href="https://www.epfl.ch/campus/library/" target="_blank">https://www.epfl.ch/campus/library/</a></p>
- <p class="epfl-social">
- <a href="https://www.facebook.com/EPFLlibrary/" target="_blank" aria-label="Facebook">
- <img src="custom/41SLSP_EPF-prod/img/facebook.png" />
- </a>
- <a href="https://www.instagram.com/epfllibrary/" target="_blank" aria-label="Instagram">
- <img src="custom/41SLSP_EPF-prod/img/Instagram.png" />
- </a>
- <a href="https://twitter.com/epfllibrary" target="_blank" aria-label="Twitter">
- <img src="custom/41SLSP_EPF-prod/img/Twitter.png" />
- </a>
- <a href="https://www.youtube.com/channel/UCOylyf3oGEBGF-0gWYsBWqQ" target="_blank" aria-label="Youtube">
- <img src="custom/41SLSP_EPF-prod/img/Youtube.png" />
- </a>
- <a href="https://www.linkedin.com/showcase/10468051" target="_blank" aria-label="LinkedIn">
- <img src="custom/41SLSP_EPF-prod/img/LinkedIn.png" />
- </a>
- </p>
- </md-card-content>
- <md-card-content class="prm-primary-bg">
- <!-- <span class="md-headline">Description:</span> -->
- <p>Questa pagina &egrave; il punto di accesso per le risorse della</p>
- <p><a class="ps_link" href="https://www.epfl.ch/campus/library/" target="_blank">Biblioth&egrave;que de l'EPFL</a></p>
- </md-card-content>
- </md-card>
- <md-card class="prm-primary-bg psfooter-legal" flex layout-gt-sm="row" layout-align-gt-sm="center start">
- <md-card-content class="prm-primary-bg" flex-gt-sm="70" layout-align-gt-sm="end">
- <span class="legal">La Bibliothèque de l'EPFL &egrave; membro del <a href="https://slsp.ch" target="_blank" class="ps_link">Swiss Library Service Platform (SLSP) network</a></span>
- </md-card-content>
- <md-card-content class="prm-primary-bg" flex-gt-sm="15" layout-align-gt-sm="end">
- <a class="ps_link legal" href="https://slsp.ch/termsofuse" target="_blank">Informazioni legali</a>
- </md-card-content>
- <md-card-content class="prm-primary-bg" flex-gt-sm="15" layout-align-gt-sm="end">
- <a class="ps_link legal" href="https://slsp.ch/en/dataprotection" target="_blank">Protezione dei dati</a>
- </md-card-content>
- </md-card>
- </div>
-</md-content>
diff --git a/primo-explore/custom/41SLSP_EPF-test/html/homepage/homepage_it_old.html b/primo-explore/custom/41SLSP_EPF-test/html/homepage/homepage_it_old.html
deleted file mode 100644
index 4fce2fb..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/html/homepage/homepage_it_old.html
+++ /dev/null
@@ -1,119 +0,0 @@
-<md-content>
-
- <div class="ps_content md-padding" layout-gt-sm="row" layout-align="start start">
- <div flex="0" flex-md="0" flex-lg="20" flex-xl="25"></div>
- <div flex-sm="100" flex-md="60" flex-lg="35" flex-xl="30" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h1 class="md-headline">Benvenuti in <b>swisscovery</b></h1>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p>
- Qui potete effettuare ricerche semplici e avanzate di libri, e-book, <a href="https://consortium.ch/lizenzen/?lang=it" target="_blank">periodici</a>, <a href="https://consortium.ch/lizenzen/?lang=it" target="_blank">banche dati</a> e altri media.
- <br />
- <br />
- La <a href="#" target="_blank">registrazione</a> permette di usufruire dei servizi SLSP come:
- </p>
- <ul>
- <li>L&rsquo;accesso a oltre <a href="https://slsp.ch/libraries" target="_blank">450 biblioteche scientifiche</a> in Svizzera</li>
- <li>L&rsquo;utilizzo di risorse elettroniche concesse in licenza dalla vostra biblioteca e l&rsquo;accesso a titoli gratuiti</li>
- <li>La richiesta di opere alle biblioteche, direttamente o tramite SLSP Courier</li>
- <li>La gestione del vostro account, dei prestiti e delle vostre richieste</li>
- </ul>
- <br />
- <p>
- <b>
- Registrazione
- </b>
- </p>
- <p>
- Per diventare un utente SLSP &egrave; necessario registrarsi sulla nostra <a href="https://registration.slsp.ch" target="_blank">piattaforma di registrazione</a>.
- </p>
- </md-card-content>
- </md-card>
-
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Search Scope</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <img width="100%" src="custom/41SLSP_EPF-prod/img/infographic_it.png" />
- </md-card-content>
- </md-card>
- </div>
- <div flex-sm="100" flex-md="40" flex-lg="20" flex-xl="20" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Library Search</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <div class="resp-container">
- <iframe class="resp-iframe" src="https://tube.switch.ch/embed/bff2c4a6" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
- </div>
- </md-card-content>
- </md-card>
- <div flex-gt-sm="40" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Domande, commenti e supporto</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p>
- Avete domande o commenti? Avete problemi con swisscovery? Non esitate a <a href="mailto:?" target="_blank">contattarci</a>! Saremo lieti di ricevere il vostro messaggio.
- </p>
- </md-card-content>
- </md-card>
- </div>
- </div>
- </div>
-</md-content>
-<md-content>
- <div flex="100">
- <md-card class="prm-primary-bg psfooter" flex layout-gt-sm="row" layout-align="space-around start">
- <md-card-content class="prm-primary-bg">
- <span class="md-headline">Indirizzo:</span>
- <p>&#91;nome dell&rsquo;istituzione / biblioteca</p>
- <p>&#91;numero e nome della via&#93;</p>
- <p>&#91;codice postale e citt&agrave;&#93;</p>
- </md-card-content>
- <md-card-content class="prm-primary-bg">
- <span class="md-headline">Contatto:</span>
- <p>&#91;numero di telefono&#93;</p>
- <p><a href="mailto:?">&#91;indirizzo email&#93;</a></p>
- <p><a href="#" target="_blank">&#91;sito internet&#93;</a></p>
- <p>
- <md-button href="#" target="_blank" class="ps-button md-icon-button" aria-label="Youtube">
- <md-icon class="ps_icon" md-svg-icon="custom/41SLSP_EPF-prod/img/youtube.svg"></md-icon>
- </md-button>
- <md-button href="#" target="_blank" class="ps-button md-icon-button" aria-label="LinkedIn">
- <md-icon class="ps_icon" md-svg-icon="custom/41SLSP_EPF-prod/img/linkedin.svg"></md-icon>
- </md-button>
- </p>
- </md-card-content>
- <md-card-content class="prm-primary-bg">
- <span class="md-headline">Descrizione:</span>
- <p>Questa pagina &egrave; il punto di accesso per le risorse della</p>
- <p><a class="ps_link" href="#" target="_blank">&#91;nome della biblioteca / delle seguenti biblioteche&#93;</a></p>
- </md-card-content>
- </md-card>
- <md-card class="prm-primary-bg psfooter-legal" flex layout-gt-sm="row" layout-align-gt-sm="center start">
- <md-card-content class="prm-primary-bg" flex-gt-sm="70" layout-align-gt-sm="end">
- <span class="legal">La &#91;Nome dell&rsquo;istituzione / biblioteca/che&#93; &egrave; membro del <a href="https://slsp.ch" target="_blank" class="ps_link">Swiss Library Service Platform (SLSP) network</a></span>
- </md-card-content>
- <md-card-content class="prm-primary-bg" flex-gt-sm="15" layout-align-gt-sm="end">
- <a class="ps_link legal" href="https://slsp.ch/termsofuse" target="_blank">Informazioni legali</a>
- </md-card-content>
- <md-card-content class="prm-primary-bg" flex-gt-sm="15" layout-align-gt-sm="end">
- <a class="ps_link legal" href="https://slsp.ch/en/dataprotection" target="_blank">Protezione dei dati</a>
- </md-card-content>
- </md-card>
- </div>
-</md-content>
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/Infographic.png b/primo-explore/custom/41SLSP_EPF-test/img/Infographic.png
deleted file mode 100644
index b8d2357..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/Infographic.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/Instagram.png b/primo-explore/custom/41SLSP_EPF-test/img/Instagram.png
deleted file mode 100644
index 222110a..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/Instagram.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/LinkedIn.png b/primo-explore/custom/41SLSP_EPF-test/img/LinkedIn.png
deleted file mode 100644
index 7f5d23a..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/LinkedIn.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/README.md b/primo-explore/custom/41SLSP_EPF-test/img/README.md
deleted file mode 100644
index bdafeb3..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/img/README.md
+++ /dev/null
@@ -1,20 +0,0 @@
-# The Primo New UI Customization Workflow Development Environment
-
-
-##images documentation
-
- - Primo allows the customization of the following images;
- 1. Library Logo - just place a file named `library-logo.png` in this location
- 2. Library favicon - just place a file named `favicon.ico` in this location
- 3. Default Resource Types - just place a files following this convention :
- `icon_<resource_type>.png`
-
- For Example:
- `icon_book.png`
-
-
-
-
-
-
-
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/Twitter.png b/primo-explore/custom/41SLSP_EPF-test/img/Twitter.png
deleted file mode 100644
index 835fb9f..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/Twitter.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/Youtube.png b/primo-explore/custom/41SLSP_EPF-test/img/Youtube.png
deleted file mode 100644
index cd1acb1..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/Youtube.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/blog.svg b/primo-explore/custom/41SLSP_EPF-test/img/blog.svg
deleted file mode 100644
index bede3ac..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/img/blog.svg
+++ /dev/null
@@ -1,33 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
- "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
-<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
- width="1097.000000pt" height="1313.000000pt" viewBox="0 0 1097.000000 1313.000000"
- preserveAspectRatio="xMidYMid meet">
-<metadata>
-Created by potrace 1.16, written by Peter Selinger 2001-2019
-</metadata>
-<g transform="translate(0.000000,1313.000000) scale(0.100000,-0.100000)"
-fill="#000000" stroke="none">
-<path d="M5150 10304 c-516 -62 -1037 -281 -1435 -604 -502 -407 -856 -985
--989 -1615 -71 -340 -75 -768 -11 -1110 79 -414 263 -827 523 -1174 115 -153
-392 -430 542 -543 431 -322 914 -510 1434 -559 164 -15 543 -6 686 16 304 47
-549 125 825 260 307 151 501 290 751 539 249 250 388 444 539 751 135 276 213
-521 260 825 22 143 31 522 16 686 -49 520 -237 1003 -559 1434 -113 150 -390
-427 -543 542 -347 260 -760 444 -1174 523 -242 45 -621 58 -865 29z m735 -34
-c325 -49 591 -135 881 -284 431 -222 780 -535 1049 -941 621 -933 618 -2161
--7 -3092 -709 -1058 -2036 -1504 -3238 -1088 -663 230 -1215 702 -1548 1323
--153 286 -252 585 -303 922 -32 210 -32 581 0 790 51 335 136 596 285 886 440
-853 1270 1410 2243 1504 145 14 480 4 638 -20z"/>
-<path d="M4622 9258 c-490 -2438 -774 -3846 -778 -3861 -5 -16 15 -17 351 -15
-l357 3 66 162 c37 90 70 163 73 163 4 0 24 -30 45 -66 53 -91 171 -200 273
--253 116 -60 210 -82 356 -82 198 0 368 42 560 137 563 279 984 947 1065 1689
-14 129 14 427 0 541 -50 413 -237 702 -527 819 -108 44 -210 58 -377 52 -120
--4 -169 -10 -241 -30 -178 -50 -345 -133 -518 -258 -54 -39 -100 -69 -102 -67
--2 2 30 129 71 283 41 154 111 453 155 665 44 212 91 436 105 498 13 63 24
-115 24 118 0 2 -193 4 -428 4 l-429 0 -101 -502z m1297 -1443 c94 -52 159
--155 186 -300 18 -90 20 -322 4 -445 -70 -569 -388 -1016 -753 -1058 -189 -22
--354 64 -441 231 l-29 55 118 583 119 584 45 65 c145 205 367 323 597 317 89
--2 106 -6 154 -32z"/>
-</g>
-</svg>
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/custom-ui.svg b/primo-explore/custom/41SLSP_EPF-test/img/custom-ui.svg
deleted file mode 100644
index 75baa9d..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/img/custom-ui.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="5000" viewBox="0 0 24 5000"><svg id="emoticon-cool" viewBox="0 0 24 24"><path xmlns="http://www.w3.org/2000/svg" d="M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z"/></svg><svg id="beach" viewBox="0 0 24 24"><path xmlns="http://www.w3.org/2000/svg" d="M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z"/></svg><svg id="beer" viewBox="0 0 24 24"><path xmlns="http://www.w3.org/2000/svg" d="M17,9h5.5L17,3.5V9 M10,2h8l6,6v12c0,1.1-0.9,2-2,2H10c-1.1,0-2-0.9-2-2V4C8,2.9,8.9,2,10,2 M15,4h-5v16h5h7v-9h-7V4z"/><path xmlns="http://www.w3.org/2000/svg" d="M7.3,20H6V4h1.3V2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h1.3V20z"/><path xmlns="http://www.w3.org/2000/svg" d="M3.3,20H2V4h1.3V2H2C0.9,2,0,2.9,0,4v16c0,1.1,0.9,2,2,2h1.3V20z"/></svg><svg id="sun" viewBox="0 0 24 24"><path xmlns="http://www.w3.org/2000/svg" d="M17,9h5.5L17,3.5V9 M10,2h8l6,6v12c0,1.1-0.9,2-2,2H10c-1.1,0-2-0.9-2-2V4C8,2.9,8.9,2,10,2 M15,4h-5v16h5h7v-9h-7V4z"/><path xmlns="http://www.w3.org/2000/svg" d="M7.3,20H6V4h1.3V2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h1.3V20z"/><path xmlns="http://www.w3.org/2000/svg" d="M3.3,20H2V4h1.3V2H2C0.9,2,0,2.9,0,4v16c0,1.1,0.9,2,2,2h1.3V20z"/></svg></svg>
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/facebook.png b/primo-explore/custom/41SLSP_EPF-test/img/facebook.png
deleted file mode 100644
index 823e4d8..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/facebook.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/facebook.svg b/primo-explore/custom/41SLSP_EPF-test/img/facebook.svg
deleted file mode 100644
index 0016036..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/img/facebook.svg
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
- "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
-<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
- width="130.000000pt" height="130.000000pt" viewBox="0 0 130.000000 130.000000"
- preserveAspectRatio="xMidYMid meet">
-<metadata>
-Created by potrace 1.16, written by Peter Selinger 2001-2019
-</metadata>
-<g transform="translate(0.000000,130.000000) scale(0.100000,-0.100000)"
-fill="#000000" stroke="none">
-<path d="M9 8H6v4h3v12h5V12h3.642L18 8h-4V6.333C14 5.378 14.192 5 15.115 5H18V0h-3.808C10.596 0 9 1.583 9 4.615V8z"></path>
-</g>
-</svg>
\ No newline at end of file
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/facebook_old.svg b/primo-explore/custom/41SLSP_EPF-test/img/facebook_old.svg
deleted file mode 100644
index 4c7c0ff..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/img/facebook_old.svg
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
- "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
-<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
- width="130.000000pt" height="130.000000pt" viewBox="0 0 130.000000 130.000000"
- preserveAspectRatio="xMidYMid meet">
-<metadata>
-Created by potrace 1.16, written by Peter Selinger 2001-2019
-</metadata>
-<g transform="translate(0.000000,130.000000) scale(0.100000,-0.100000)"
-fill="#000000" stroke="none">
-<path d="M491 1234 c-192 -52 -354 -207 -418 -399 -22 -67 -26 -98 -26 -190 0
--93 4 -122 27 -188 54 -161 163 -286 311 -357 44 -22 99 -42 123 -46 l42 -7 0
-217 0 216 -75 0 -75 0 0 85 0 85 75 0 75 0 0 91 c0 116 14 164 65 214 48 49
-98 65 196 65 122 0 120 1 117 -89 l-3 -76 -60 -3 c-89 -5 -105 -23 -105 -124
-l0 -78 80 0 c91 0 86 7 69 -101 l-12 -69 -68 0 -69 0 0 -215 c0 -248 -8 -233
-104 -191 201 76 346 246 386 454 19 93 8 231 -23 322 -66 186 -226 334 -417
-385 -71 19 -248 18 -319 -1z"/>
-</g>
-</svg>
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/facebook_white.svg b/primo-explore/custom/41SLSP_EPF-test/img/facebook_white.svg
deleted file mode 100644
index 5b20741..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/img/facebook_white.svg
+++ /dev/null
@@ -1,61 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
- sodipodi:docname="facebook - Copia.svg"
- id="svg40"
- preserveAspectRatio="xMidYMid meet"
- viewBox="0 0 130.000000 130.000000"
- height="130.000000pt"
- width="130.000000pt"
- version="1.0">
- <defs
- id="defs44" />
- <sodipodi:namedview
- inkscape:current-layer="svg40"
- inkscape:window-maximized="1"
- inkscape:window-y="-9"
- inkscape:window-x="-9"
- inkscape:cy="86.666667"
- inkscape:cx="86.666667"
- inkscape:zoom="4.7884615"
- showgrid="false"
- id="namedview42"
- inkscape:window-height="1001"
- inkscape:window-width="1920"
- inkscape:pageshadow="2"
- inkscape:pageopacity="0"
- guidetolerance="10"
- gridtolerance="10"
- objecttolerance="10"
- borderopacity="1"
- bordercolor="#666666"
- pagecolor="#ffffff" />
- <metadata
- id="metadata34">
-Created by potrace 1.16, written by Peter Selinger 2001-2019
-<rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
-</rdf:RDF>
-</metadata>
- <g
- id="g38"
- stroke="none"
- fill="#ffffff"
- transform="translate(0.000000,130.000000) scale(0.100000,-0.100000)">
- <path
- id="path36"
- d="M491 1234 c-192 -52 -354 -207 -418 -399 -22 -67 -26 -98 -26 -190 0 -93 4 -122 27 -188 54 -161 163 -286 311 -357 44 -22 99 -42 123 -46 l42 -7 0 217 0 216 -75 0 -75 0 0 85 0 85 75 0 75 0 0 91 c0 116 14 164 65 214 48 49 98 65 196 65 122 0 120 1 117 -89 l-3 -76 -60 -3 c-89 -5 -105 -23 -105 -124 l0 -78 80 0 c91 0 86 7 69 -101 l-12 -69 -68 0 -69 0 0 -215 c0 -248 -8 -233 104 -191 201 76 346 246 386 454 19 93 8 231 -23 322 -66 186 -226 334 -417 385 -71 19 -248 18 -319 -1z" />
- </g>
-</svg>
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/favicon.ico b/primo-explore/custom/41SLSP_EPF-test/img/favicon.ico
deleted file mode 100644
index d5f51c1..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/favicon.ico and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/NationalLicenses.png b/primo-explore/custom/41SLSP_EPF-test/img/help/NationalLicenses.png
deleted file mode 100644
index c7d60bf..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/NationalLicenses.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/NationalLicenses_fre.png b/primo-explore/custom/41SLSP_EPF-test/img/help/NationalLicenses_fre.png
deleted file mode 100644
index b863055..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/NationalLicenses_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/NationalLicenses_ger.png b/primo-explore/custom/41SLSP_EPF-test/img/help/NationalLicenses_ger.png
deleted file mode 100644
index 71ccc2a..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/NationalLicenses_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/NationalLicenses_ita.png b/primo-explore/custom/41SLSP_EPF-test/img/help/NationalLicenses_ita.png
deleted file mode 100644
index fb08fc3..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/NationalLicenses_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/activeFilters.png b/primo-explore/custom/41SLSP_EPF-test/img/help/activeFilters.png
deleted file mode 100644
index 9b34b8f..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/activeFilters.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/activeFilters_fre.png b/primo-explore/custom/41SLSP_EPF-test/img/help/activeFilters_fre.png
deleted file mode 100644
index 586d6b8..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/activeFilters_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/activeFilters_ger.png b/primo-explore/custom/41SLSP_EPF-test/img/help/activeFilters_ger.png
deleted file mode 100644
index 4d00d4f..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/activeFilters_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/activeFilters_ita.png b/primo-explore/custom/41SLSP_EPF-test/img/help/activeFilters_ita.png
deleted file mode 100644
index 7a00495..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/activeFilters_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/activeLoans.png b/primo-explore/custom/41SLSP_EPF-test/img/help/activeLoans.png
deleted file mode 100644
index 91a9787..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/activeLoans.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/activeLoans_fre.png b/primo-explore/custom/41SLSP_EPF-test/img/help/activeLoans_fre.png
deleted file mode 100644
index 6bd5d81..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/activeLoans_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/activeLoans_ger.png b/primo-explore/custom/41SLSP_EPF-test/img/help/activeLoans_ger.png
deleted file mode 100644
index 089bb4e..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/activeLoans_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/activeLoans_ita.png b/primo-explore/custom/41SLSP_EPF-test/img/help/activeLoans_ita.png
deleted file mode 100644
index aff1f28..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/activeLoans_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/advancedField1.png b/primo-explore/custom/41SLSP_EPF-test/img/help/advancedField1.png
deleted file mode 100644
index 0ba0dbc..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/advancedField1.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/advancedField1_fre.png b/primo-explore/custom/41SLSP_EPF-test/img/help/advancedField1_fre.png
deleted file mode 100644
index 6e0698f..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/advancedField1_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/advancedField1_ger.png b/primo-explore/custom/41SLSP_EPF-test/img/help/advancedField1_ger.png
deleted file mode 100644
index eac0c87..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/advancedField1_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/advancedField1_ita.png b/primo-explore/custom/41SLSP_EPF-test/img/help/advancedField1_ita.png
deleted file mode 100644
index c29f7bd..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/advancedField1_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/advancedField2.png b/primo-explore/custom/41SLSP_EPF-test/img/help/advancedField2.png
deleted file mode 100644
index 6b5add0..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/advancedField2.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/advancedField2_fre.png b/primo-explore/custom/41SLSP_EPF-test/img/help/advancedField2_fre.png
deleted file mode 100644
index 12801c4..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/advancedField2_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/advancedField2_ger.png b/primo-explore/custom/41SLSP_EPF-test/img/help/advancedField2_ger.png
deleted file mode 100644
index db8aa25..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/advancedField2_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/advancedField2_ita.png b/primo-explore/custom/41SLSP_EPF-test/img/help/advancedField2_ita.png
deleted file mode 100644
index 508c029..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/advancedField2_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/advancedField3.png b/primo-explore/custom/41SLSP_EPF-test/img/help/advancedField3.png
deleted file mode 100644
index 622d6d1..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/advancedField3.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/advancedField3_fre.png b/primo-explore/custom/41SLSP_EPF-test/img/help/advancedField3_fre.png
deleted file mode 100644
index 5c71503..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/advancedField3_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/advancedField3_ger.png b/primo-explore/custom/41SLSP_EPF-test/img/help/advancedField3_ger.png
deleted file mode 100644
index 261c807..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/advancedField3_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/advancedField3_ita.png b/primo-explore/custom/41SLSP_EPF-test/img/help/advancedField3_ita.png
deleted file mode 100644
index 1586679..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/advancedField3_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/advancedSearch.png b/primo-explore/custom/41SLSP_EPF-test/img/help/advancedSearch.png
deleted file mode 100644
index 3dc8f15..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/advancedSearch.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/advancedSearch_fre.png b/primo-explore/custom/41SLSP_EPF-test/img/help/advancedSearch_fre.png
deleted file mode 100644
index d76dc84..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/advancedSearch_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/advancedSearch_ger.png b/primo-explore/custom/41SLSP_EPF-test/img/help/advancedSearch_ger.png
deleted file mode 100644
index 73abbb6..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/advancedSearch_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/advancedSearch_ita.png b/primo-explore/custom/41SLSP_EPF-test/img/help/advancedSearch_ita.png
deleted file mode 100644
index c74b788..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/advancedSearch_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/availOnline.png b/primo-explore/custom/41SLSP_EPF-test/img/help/availOnline.png
deleted file mode 100644
index 798db7c..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/availOnline.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/availOnline2.png b/primo-explore/custom/41SLSP_EPF-test/img/help/availOnline2.png
deleted file mode 100644
index ea02e6f..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/availOnline2.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/availOnline2_fre.png b/primo-explore/custom/41SLSP_EPF-test/img/help/availOnline2_fre.png
deleted file mode 100644
index 2bea675..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/availOnline2_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/availOnline2_ger.png b/primo-explore/custom/41SLSP_EPF-test/img/help/availOnline2_ger.png
deleted file mode 100644
index 4f2e1f5..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/availOnline2_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/availOnline2_ita.png b/primo-explore/custom/41SLSP_EPF-test/img/help/availOnline2_ita.png
deleted file mode 100644
index 1a968da..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/availOnline2_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/availOnlineFull.png b/primo-explore/custom/41SLSP_EPF-test/img/help/availOnlineFull.png
deleted file mode 100644
index ac52ef6..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/availOnlineFull.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/availOnlineFull_fre.png b/primo-explore/custom/41SLSP_EPF-test/img/help/availOnlineFull_fre.png
deleted file mode 100644
index 5c1c8f4..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/availOnlineFull_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/availOnlineFull_ger.png b/primo-explore/custom/41SLSP_EPF-test/img/help/availOnlineFull_ger.png
deleted file mode 100644
index ac360cf..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/availOnlineFull_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/availOnlineFull_ita.png b/primo-explore/custom/41SLSP_EPF-test/img/help/availOnlineFull_ita.png
deleted file mode 100644
index 713b9e3..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/availOnlineFull_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/availOnline_fre.png b/primo-explore/custom/41SLSP_EPF-test/img/help/availOnline_fre.png
deleted file mode 100644
index 1a76daa..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/availOnline_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/availOnline_ger.png b/primo-explore/custom/41SLSP_EPF-test/img/help/availOnline_ger.png
deleted file mode 100644
index af7376f..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/availOnline_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/availOnline_ita.png b/primo-explore/custom/41SLSP_EPF-test/img/help/availOnline_ita.png
deleted file mode 100644
index 1a968da..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/availOnline_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/emailNotification.png b/primo-explore/custom/41SLSP_EPF-test/img/help/emailNotification.png
deleted file mode 100644
index 6e72a4b..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/emailNotification.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/emailNotificationSettings.png b/primo-explore/custom/41SLSP_EPF-test/img/help/emailNotificationSettings.png
deleted file mode 100644
index 444c902..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/emailNotificationSettings.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/emailNotificationSettings_fre.png b/primo-explore/custom/41SLSP_EPF-test/img/help/emailNotificationSettings_fre.png
deleted file mode 100644
index 85e8600..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/emailNotificationSettings_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/emailNotificationSettings_ger.png b/primo-explore/custom/41SLSP_EPF-test/img/help/emailNotificationSettings_ger.png
deleted file mode 100644
index 70bd63f..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/emailNotificationSettings_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/emailNotificationSettings_ita.png b/primo-explore/custom/41SLSP_EPF-test/img/help/emailNotificationSettings_ita.png
deleted file mode 100644
index 4569cf1..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/emailNotificationSettings_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/emailNotification_fre.png b/primo-explore/custom/41SLSP_EPF-test/img/help/emailNotification_fre.png
deleted file mode 100644
index 6504fc8..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/emailNotification_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/emailNotification_ger.png b/primo-explore/custom/41SLSP_EPF-test/img/help/emailNotification_ger.png
deleted file mode 100644
index a4e7bf5..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/emailNotification_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/emailNotification_ita.png b/primo-explore/custom/41SLSP_EPF-test/img/help/emailNotification_ita.png
deleted file mode 100644
index 94c0fe4..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/emailNotification_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/facets1.png b/primo-explore/custom/41SLSP_EPF-test/img/help/facets1.png
deleted file mode 100644
index e20514e..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/facets1.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/facets1_fre.png b/primo-explore/custom/41SLSP_EPF-test/img/help/facets1_fre.png
deleted file mode 100644
index dd85460..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/facets1_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/facets1_ger.png b/primo-explore/custom/41SLSP_EPF-test/img/help/facets1_ger.png
deleted file mode 100644
index 2c3e437..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/facets1_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/facets1_ita.png b/primo-explore/custom/41SLSP_EPF-test/img/help/facets1_ita.png
deleted file mode 100644
index 6b15ada..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/facets1_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/facets2.png b/primo-explore/custom/41SLSP_EPF-test/img/help/facets2.png
deleted file mode 100644
index 163de86..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/facets2.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/facets2_fre.png b/primo-explore/custom/41SLSP_EPF-test/img/help/facets2_fre.png
deleted file mode 100644
index 88f2fea..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/facets2_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/facets2_ger.png b/primo-explore/custom/41SLSP_EPF-test/img/help/facets2_ger.png
deleted file mode 100644
index a6cfeba..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/facets2_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/facets2_ita.png b/primo-explore/custom/41SLSP_EPF-test/img/help/facets2_ita.png
deleted file mode 100644
index ef72aae..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/facets2_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/facets3.png b/primo-explore/custom/41SLSP_EPF-test/img/help/facets3.png
deleted file mode 100644
index fc0565b..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/facets3.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/facets3_fre.png b/primo-explore/custom/41SLSP_EPF-test/img/help/facets3_fre.png
deleted file mode 100644
index 343a5cb..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/facets3_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/facets3_ger.png b/primo-explore/custom/41SLSP_EPF-test/img/help/facets3_ger.png
deleted file mode 100644
index 48e7473..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/facets3_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/facets3_ita.png b/primo-explore/custom/41SLSP_EPF-test/img/help/facets3_ita.png
deleted file mode 100644
index 9e31f44..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/facets3_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/filters1.png b/primo-explore/custom/41SLSP_EPF-test/img/help/filters1.png
deleted file mode 100644
index 53fd6ec..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/filters1.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/filters1_fre.png b/primo-explore/custom/41SLSP_EPF-test/img/help/filters1_fre.png
deleted file mode 100644
index b9e2477..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/filters1_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/filters1_ger.png b/primo-explore/custom/41SLSP_EPF-test/img/help/filters1_ger.png
deleted file mode 100644
index 99741a7..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/filters1_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/filters1_ita.png b/primo-explore/custom/41SLSP_EPF-test/img/help/filters1_ita.png
deleted file mode 100644
index b01308e..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/filters1_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/filters2.png b/primo-explore/custom/41SLSP_EPF-test/img/help/filters2.png
deleted file mode 100644
index a137393..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/filters2.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/filters2_fre.png b/primo-explore/custom/41SLSP_EPF-test/img/help/filters2_fre.png
deleted file mode 100644
index e2ceb36..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/filters2_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/filters2_ger.png b/primo-explore/custom/41SLSP_EPF-test/img/help/filters2_ger.png
deleted file mode 100644
index e02a4d9..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/filters2_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/filters2_ita.png b/primo-explore/custom/41SLSP_EPF-test/img/help/filters2_ita.png
deleted file mode 100644
index 9fd1eed..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/filters2_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/fullViewNavigation.png b/primo-explore/custom/41SLSP_EPF-test/img/help/fullViewNavigation.png
deleted file mode 100644
index b025493..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/fullViewNavigation.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/fullViewNavigation_fre.png b/primo-explore/custom/41SLSP_EPF-test/img/help/fullViewNavigation_fre.png
deleted file mode 100644
index 36ac190..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/fullViewNavigation_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/fullViewNavigation_ger.png b/primo-explore/custom/41SLSP_EPF-test/img/help/fullViewNavigation_ger.png
deleted file mode 100644
index 7504398..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/fullViewNavigation_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/fullViewNavigation_ita.png b/primo-explore/custom/41SLSP_EPF-test/img/help/fullViewNavigation_ita.png
deleted file mode 100644
index 1a493b7..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/fullViewNavigation_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/getIt.png b/primo-explore/custom/41SLSP_EPF-test/img/help/getIt.png
deleted file mode 100644
index 4407423..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/getIt.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/getIt_fre.png b/primo-explore/custom/41SLSP_EPF-test/img/help/getIt_fre.png
deleted file mode 100644
index eeb3c76..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/getIt_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/getIt_ger.png b/primo-explore/custom/41SLSP_EPF-test/img/help/getIt_ger.png
deleted file mode 100644
index 44f78c5..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/getIt_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/getIt_ita.png b/primo-explore/custom/41SLSP_EPF-test/img/help/getIt_ita.png
deleted file mode 100644
index 5a22cd0..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/getIt_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/iconUp.png b/primo-explore/custom/41SLSP_EPF-test/img/help/iconUp.png
deleted file mode 100644
index 0a2fb6e..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/iconUp.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/infographic_en.png b/primo-explore/custom/41SLSP_EPF-test/img/help/infographic_en.png
deleted file mode 100644
index d90abc9..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/infographic_en.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/infographig_fre.png b/primo-explore/custom/41SLSP_EPF-test/img/help/infographig_fre.png
deleted file mode 100644
index 132cd34..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/infographig_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/infographig_ger.png b/primo-explore/custom/41SLSP_EPF-test/img/help/infographig_ger.png
deleted file mode 100644
index 6579478..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/infographig_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/infographig_ita.png b/primo-explore/custom/41SLSP_EPF-test/img/help/infographig_ita.png
deleted file mode 100644
index ea4c1f1..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/infographig_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/locationItems.png b/primo-explore/custom/41SLSP_EPF-test/img/help/locationItems.png
deleted file mode 100644
index 96d965e..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/locationItems.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/locationItems_fre.png b/primo-explore/custom/41SLSP_EPF-test/img/help/locationItems_fre.png
deleted file mode 100644
index be96f2c..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/locationItems_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/locationItems_ger.png b/primo-explore/custom/41SLSP_EPF-test/img/help/locationItems_ger.png
deleted file mode 100644
index 48b781f..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/locationItems_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/locationItems_ita.png b/primo-explore/custom/41SLSP_EPF-test/img/help/locationItems_ita.png
deleted file mode 100644
index 7e335b7..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/locationItems_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/myAccount.png b/primo-explore/custom/41SLSP_EPF-test/img/help/myAccount.png
deleted file mode 100644
index 4cd905f..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/myAccount.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/myAccount_fre.png b/primo-explore/custom/41SLSP_EPF-test/img/help/myAccount_fre.png
deleted file mode 100644
index c6be761..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/myAccount_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/myAccount_ger.png b/primo-explore/custom/41SLSP_EPF-test/img/help/myAccount_ger.png
deleted file mode 100644
index 606daac..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/myAccount_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/myAccount_ita.png b/primo-explore/custom/41SLSP_EPF-test/img/help/myAccount_ita.png
deleted file mode 100644
index 8724123..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/myAccount_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/myFavorites.png b/primo-explore/custom/41SLSP_EPF-test/img/help/myFavorites.png
deleted file mode 100644
index 40c0372..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/myFavorites.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/myFavorites_fre.png b/primo-explore/custom/41SLSP_EPF-test/img/help/myFavorites_fre.png
deleted file mode 100644
index 3949204..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/myFavorites_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/myFavorites_ger.png b/primo-explore/custom/41SLSP_EPF-test/img/help/myFavorites_ger.png
deleted file mode 100644
index 836c25f..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/myFavorites_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/myFavorites_ita.png b/primo-explore/custom/41SLSP_EPF-test/img/help/myFavorites_ita.png
deleted file mode 100644
index 84ea1e0..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/myFavorites_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/openAccess.png b/primo-explore/custom/41SLSP_EPF-test/img/help/openAccess.png
deleted file mode 100644
index 1056591..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/openAccess.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/openAccess_fre.png b/primo-explore/custom/41SLSP_EPF-test/img/help/openAccess_fre.png
deleted file mode 100644
index 9fe2ef5..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/openAccess_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/openAccess_ger.png b/primo-explore/custom/41SLSP_EPF-test/img/help/openAccess_ger.png
deleted file mode 100644
index f5e326b..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/openAccess_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/openAccess_ita.png b/primo-explore/custom/41SLSP_EPF-test/img/help/openAccess_ita.png
deleted file mode 100644
index e3904a1..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/openAccess_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/pinIcon1.png b/primo-explore/custom/41SLSP_EPF-test/img/help/pinIcon1.png
deleted file mode 100644
index e546754..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/pinIcon1.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/pinIcon2.png b/primo-explore/custom/41SLSP_EPF-test/img/help/pinIcon2.png
deleted file mode 100644
index e274fe4..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/pinIcon2.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/renewLoans.png b/primo-explore/custom/41SLSP_EPF-test/img/help/renewLoans.png
deleted file mode 100644
index 557bb11..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/renewLoans.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/renewLoans_fre.png b/primo-explore/custom/41SLSP_EPF-test/img/help/renewLoans_fre.png
deleted file mode 100644
index 6e48a13..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/renewLoans_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/renewLoans_ger.png b/primo-explore/custom/41SLSP_EPF-test/img/help/renewLoans_ger.png
deleted file mode 100644
index fadfa93..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/renewLoans_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/renewLoans_ita.png b/primo-explore/custom/41SLSP_EPF-test/img/help/renewLoans_ita.png
deleted file mode 100644
index 426716d..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/renewLoans_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/requestOption.png b/primo-explore/custom/41SLSP_EPF-test/img/help/requestOption.png
deleted file mode 100644
index ea37de3..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/requestOption.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/requestOption_fre.png b/primo-explore/custom/41SLSP_EPF-test/img/help/requestOption_fre.png
deleted file mode 100644
index a0da526..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/requestOption_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/requestOption_ger.png b/primo-explore/custom/41SLSP_EPF-test/img/help/requestOption_ger.png
deleted file mode 100644
index ed69283..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/requestOption_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/requestOption_ita.png b/primo-explore/custom/41SLSP_EPF-test/img/help/requestOption_ita.png
deleted file mode 100644
index 994911b..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/requestOption_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/saveQuery.png b/primo-explore/custom/41SLSP_EPF-test/img/help/saveQuery.png
deleted file mode 100644
index dc006bb..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/saveQuery.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/saveQuery_fre.png b/primo-explore/custom/41SLSP_EPF-test/img/help/saveQuery_fre.png
deleted file mode 100644
index 4f6a1c7..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/saveQuery_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/saveQuery_ger.png b/primo-explore/custom/41SLSP_EPF-test/img/help/saveQuery_ger.png
deleted file mode 100644
index d54601d..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/saveQuery_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/saveQuery_ita.png b/primo-explore/custom/41SLSP_EPF-test/img/help/saveQuery_ita.png
deleted file mode 100644
index 83ee324..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/saveQuery_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/savedSearches.png b/primo-explore/custom/41SLSP_EPF-test/img/help/savedSearches.png
deleted file mode 100644
index f2988c4..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/savedSearches.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/savedSearches_fre.png b/primo-explore/custom/41SLSP_EPF-test/img/help/savedSearches_fre.png
deleted file mode 100644
index 7376d31..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/savedSearches_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/savedSearches_ger.png b/primo-explore/custom/41SLSP_EPF-test/img/help/savedSearches_ger.png
deleted file mode 100644
index 80ad814..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/savedSearches_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/savedSearches_ita.png b/primo-explore/custom/41SLSP_EPF-test/img/help/savedSearches_ita.png
deleted file mode 100644
index 7d43577..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/savedSearches_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/searchHistory.png b/primo-explore/custom/41SLSP_EPF-test/img/help/searchHistory.png
deleted file mode 100644
index 589306b..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/searchHistory.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/searchHistoryIcon.png b/primo-explore/custom/41SLSP_EPF-test/img/help/searchHistoryIcon.png
deleted file mode 100644
index 2061e93..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/searchHistoryIcon.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/searchHistory_fre.png b/primo-explore/custom/41SLSP_EPF-test/img/help/searchHistory_fre.png
deleted file mode 100644
index 51eaa60..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/searchHistory_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/searchHistory_ger.png b/primo-explore/custom/41SLSP_EPF-test/img/help/searchHistory_ger.png
deleted file mode 100644
index c641e91..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/searchHistory_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/searchHistory_ita.png b/primo-explore/custom/41SLSP_EPF-test/img/help/searchHistory_ita.png
deleted file mode 100644
index 42bc4bc..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/searchHistory_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/searchNOT.png b/primo-explore/custom/41SLSP_EPF-test/img/help/searchNOT.png
deleted file mode 100644
index 6dba5b2..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/searchNOT.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/searchNOT_fre.png b/primo-explore/custom/41SLSP_EPF-test/img/help/searchNOT_fre.png
deleted file mode 100644
index fcc2e5e..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/searchNOT_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/searchNOT_ger.png b/primo-explore/custom/41SLSP_EPF-test/img/help/searchNOT_ger.png
deleted file mode 100644
index ec6fc14..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/searchNOT_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/searchNOT_ita.png b/primo-explore/custom/41SLSP_EPF-test/img/help/searchNOT_ita.png
deleted file mode 100644
index a643677..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/searchNOT_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/searchOR.png b/primo-explore/custom/41SLSP_EPF-test/img/help/searchOR.png
deleted file mode 100644
index 15daa61..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/searchOR.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/searchOR_fre.png b/primo-explore/custom/41SLSP_EPF-test/img/help/searchOR_fre.png
deleted file mode 100644
index 11cf8fa..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/searchOR_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/searchOR_ger.png b/primo-explore/custom/41SLSP_EPF-test/img/help/searchOR_ger.png
deleted file mode 100644
index d393355..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/searchOR_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/searchOR_ita.png b/primo-explore/custom/41SLSP_EPF-test/img/help/searchOR_ita.png
deleted file mode 100644
index 0f2d55d..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/searchOR_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/searchPhrase.png b/primo-explore/custom/41SLSP_EPF-test/img/help/searchPhrase.png
deleted file mode 100644
index 1610115..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/searchPhrase.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/searchPhrase_fre.png b/primo-explore/custom/41SLSP_EPF-test/img/help/searchPhrase_fre.png
deleted file mode 100644
index 371eac4..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/searchPhrase_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/searchPhrase_ger.png b/primo-explore/custom/41SLSP_EPF-test/img/help/searchPhrase_ger.png
deleted file mode 100644
index 024de48..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/searchPhrase_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/searchPhrase_ita.png b/primo-explore/custom/41SLSP_EPF-test/img/help/searchPhrase_ita.png
deleted file mode 100644
index 3d4e758..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/searchPhrase_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard1.png b/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard1.png
deleted file mode 100644
index abe7906..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard1.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard1_fre.png b/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard1_fre.png
deleted file mode 100644
index 8cdc7d3..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard1_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard1_ger.png b/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard1_ger.png
deleted file mode 100644
index fd61743..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard1_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard1_ita.png b/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard1_ita.png
deleted file mode 100644
index 9af5514..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard1_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard2.png b/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard2.png
deleted file mode 100644
index eb0445b..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard2.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard2_fre.png b/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard2_fre.png
deleted file mode 100644
index b11ba78..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard2_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard2_ger.png b/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard2_ger.png
deleted file mode 100644
index 3bef7ae..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard2_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard2_ita.png b/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard2_ita.png
deleted file mode 100644
index 530521b..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard2_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard3.png b/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard3.png
deleted file mode 100644
index f523219..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard3.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard3_fre.png b/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard3_fre.png
deleted file mode 100644
index 8e403a3..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard3_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard3_ger.png b/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard3_ger.png
deleted file mode 100644
index 4fce32e..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard3_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard3_ita.png b/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard3_ita.png
deleted file mode 100644
index f3bd621..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard3_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard4_fre.png b/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard4_fre.png
deleted file mode 100644
index f87a29f..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard4_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard4_ger.png b/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard4_ger.png
deleted file mode 100644
index eecb53b..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard4_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard4_ita.png b/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard4_ita.png
deleted file mode 100644
index fb0d635..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/searchWildcard4_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/setLanguage.png b/primo-explore/custom/41SLSP_EPF-test/img/help/setLanguage.png
deleted file mode 100644
index d210592..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/setLanguage.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/setLanguage_fre.png b/primo-explore/custom/41SLSP_EPF-test/img/help/setLanguage_fre.png
deleted file mode 100644
index 8fd5f73..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/setLanguage_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/setLanguage_ger.png b/primo-explore/custom/41SLSP_EPF-test/img/help/setLanguage_ger.png
deleted file mode 100644
index fa73d11..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/setLanguage_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/setLanguage_ita.png b/primo-explore/custom/41SLSP_EPF-test/img/help/setLanguage_ita.png
deleted file mode 100644
index e67eb71..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/setLanguage_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/showonly.png b/primo-explore/custom/41SLSP_EPF-test/img/help/showonly.png
deleted file mode 100644
index a350b8a..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/showonly.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/showonly_fre.png b/primo-explore/custom/41SLSP_EPF-test/img/help/showonly_fre.png
deleted file mode 100644
index d82284a..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/showonly_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/showonly_ger.png b/primo-explore/custom/41SLSP_EPF-test/img/help/showonly_ger.png
deleted file mode 100644
index 91ce64c..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/showonly_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/showonly_ita.png b/primo-explore/custom/41SLSP_EPF-test/img/help/showonly_ita.png
deleted file mode 100644
index bad6d39..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/showonly_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/signin.png b/primo-explore/custom/41SLSP_EPF-test/img/help/signin.png
deleted file mode 100644
index 35d73c0..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/signin.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/signin_fre.png b/primo-explore/custom/41SLSP_EPF-test/img/help/signin_fre.png
deleted file mode 100644
index 949db61..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/signin_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/signin_ger.png b/primo-explore/custom/41SLSP_EPF-test/img/help/signin_ger.png
deleted file mode 100644
index 498a6ff..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/signin_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/signin_ita.png b/primo-explore/custom/41SLSP_EPF-test/img/help/signin_ita.png
deleted file mode 100644
index 9662d63..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/signin_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/simpleSearch.png b/primo-explore/custom/41SLSP_EPF-test/img/help/simpleSearch.png
deleted file mode 100644
index af950b4..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/simpleSearch.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/simpleSearch_fre.png b/primo-explore/custom/41SLSP_EPF-test/img/help/simpleSearch_fre.png
deleted file mode 100644
index 3eadb0f..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/simpleSearch_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/simpleSearch_ger.png b/primo-explore/custom/41SLSP_EPF-test/img/help/simpleSearch_ger.png
deleted file mode 100644
index e39a7ec..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/simpleSearch_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/simpleSearch_ita.png b/primo-explore/custom/41SLSP_EPF-test/img/help/simpleSearch_ita.png
deleted file mode 100644
index 1dc57ac..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/simpleSearch_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/sorting.png b/primo-explore/custom/41SLSP_EPF-test/img/help/sorting.png
deleted file mode 100644
index da58e3f..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/sorting.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/sorting_fre.png b/primo-explore/custom/41SLSP_EPF-test/img/help/sorting_fre.png
deleted file mode 100644
index 5f2f91f..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/sorting_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/sorting_ger.png b/primo-explore/custom/41SLSP_EPF-test/img/help/sorting_ger.png
deleted file mode 100644
index 5553f86..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/sorting_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/sorting_ita.png b/primo-explore/custom/41SLSP_EPF-test/img/help/sorting_ita.png
deleted file mode 100644
index deceec5..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/sorting_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/swisscovery.png b/primo-explore/custom/41SLSP_EPF-test/img/help/swisscovery.png
deleted file mode 100644
index 8e58e37..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/swisscovery.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/swisscovery_fre.png b/primo-explore/custom/41SLSP_EPF-test/img/help/swisscovery_fre.png
deleted file mode 100644
index 3e4d5ce..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/swisscovery_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/swisscovery_ger.png b/primo-explore/custom/41SLSP_EPF-test/img/help/swisscovery_ger.png
deleted file mode 100644
index 668af4a..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/swisscovery_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/swisscovery_ita.png b/primo-explore/custom/41SLSP_EPF-test/img/help/swisscovery_ita.png
deleted file mode 100644
index b24c483..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/swisscovery_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/versions.png b/primo-explore/custom/41SLSP_EPF-test/img/help/versions.png
deleted file mode 100644
index e65676b..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/versions.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/versions_fre.png b/primo-explore/custom/41SLSP_EPF-test/img/help/versions_fre.png
deleted file mode 100644
index bbbd06c..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/versions_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/versions_ger.png b/primo-explore/custom/41SLSP_EPF-test/img/help/versions_ger.png
deleted file mode 100644
index 3af5d15..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/versions_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/versions_ita.png b/primo-explore/custom/41SLSP_EPF-test/img/help/versions_ita.png
deleted file mode 100644
index 5969cf7..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/versions_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/viewOnline.png b/primo-explore/custom/41SLSP_EPF-test/img/help/viewOnline.png
deleted file mode 100644
index 26df829..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/viewOnline.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/viewOnlineIcon.png b/primo-explore/custom/41SLSP_EPF-test/img/help/viewOnlineIcon.png
deleted file mode 100644
index 6ef1440..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/viewOnlineIcon.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/viewOnline_fre.png b/primo-explore/custom/41SLSP_EPF-test/img/help/viewOnline_fre.png
deleted file mode 100644
index cb0ec57..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/viewOnline_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/viewOnline_ger.png b/primo-explore/custom/41SLSP_EPF-test/img/help/viewOnline_ger.png
deleted file mode 100644
index 5fa0e3c..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/viewOnline_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/help/viewOnline_ita.png b/primo-explore/custom/41SLSP_EPF-test/img/help/viewOnline_ita.png
deleted file mode 100644
index bf8fa06..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/help/viewOnline_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/icon_archival_material.png b/primo-explore/custom/41SLSP_EPF-test/img/icon_archival_material.png
deleted file mode 100644
index e5f49d4..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/icon_archival_material.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/icon_article.png b/primo-explore/custom/41SLSP_EPF-test/img/icon_article.png
deleted file mode 100644
index 2dc1a01..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/icon_article.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/icon_audio.png b/primo-explore/custom/41SLSP_EPF-test/img/icon_audio.png
deleted file mode 100644
index 4755ba7..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/icon_audio.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/icon_book.png b/primo-explore/custom/41SLSP_EPF-test/img/icon_book.png
deleted file mode 100644
index 3d77eb6..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/icon_book.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/icon_book_chapter.png b/primo-explore/custom/41SLSP_EPF-test/img/icon_book_chapter.png
deleted file mode 100644
index 3d77eb6..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/icon_book_chapter.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/icon_cd-rom.png b/primo-explore/custom/41SLSP_EPF-test/img/icon_cd-rom.png
deleted file mode 100644
index c85492d..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/icon_cd-rom.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/icon_cdrom.png b/primo-explore/custom/41SLSP_EPF-test/img/icon_cdrom.png
deleted file mode 100644
index c85492d..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/icon_cdrom.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/icon_conference_ proceeding.png b/primo-explore/custom/41SLSP_EPF-test/img/icon_conference_ proceeding.png
deleted file mode 100644
index 3d77eb6..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/icon_conference_ proceeding.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/icon_conference_proceeding.png b/primo-explore/custom/41SLSP_EPF-test/img/icon_conference_proceeding.png
deleted file mode 100644
index 3d77eb6..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/icon_conference_proceeding.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/icon_database.png b/primo-explore/custom/41SLSP_EPF-test/img/icon_database.png
deleted file mode 100644
index 97768da..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/icon_database.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/icon_dataset.png b/primo-explore/custom/41SLSP_EPF-test/img/icon_dataset.png
deleted file mode 100644
index 22d9ece..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/icon_dataset.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/icon_dissertation.png b/primo-explore/custom/41SLSP_EPF-test/img/icon_dissertation.png
deleted file mode 100644
index 3d77eb6..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/icon_dissertation.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/icon_ebook.png b/primo-explore/custom/41SLSP_EPF-test/img/icon_ebook.png
deleted file mode 100644
index 3d77eb6..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/icon_ebook.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/icon_ejournal.png b/primo-explore/custom/41SLSP_EPF-test/img/icon_ejournal.png
deleted file mode 100644
index e709902..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/icon_ejournal.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/icon_government_document.png b/primo-explore/custom/41SLSP_EPF-test/img/icon_government_document.png
deleted file mode 100644
index eb87193..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/icon_government_document.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/icon_image.png b/primo-explore/custom/41SLSP_EPF-test/img/icon_image.png
deleted file mode 100644
index 88cfb39..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/icon_image.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/icon_journal.png b/primo-explore/custom/41SLSP_EPF-test/img/icon_journal.png
deleted file mode 100644
index e709902..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/icon_journal.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/icon_kit.png b/primo-explore/custom/41SLSP_EPF-test/img/icon_kit.png
deleted file mode 100644
index 2b1562f..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/icon_kit.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/icon_kit_multimedia.png b/primo-explore/custom/41SLSP_EPF-test/img/icon_kit_multimedia.png
deleted file mode 100644
index 2b1562f..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/icon_kit_multimedia.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/icon_legal_document.png b/primo-explore/custom/41SLSP_EPF-test/img/icon_legal_document.png
deleted file mode 100644
index eb87193..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/icon_legal_document.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/icon_legal_document_.png b/primo-explore/custom/41SLSP_EPF-test/img/icon_legal_document_.png
deleted file mode 100644
index eb87193..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/icon_legal_document_.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/icon_manuscript.png b/primo-explore/custom/41SLSP_EPF-test/img/icon_manuscript.png
deleted file mode 100644
index 06e9b43..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/icon_manuscript.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/icon_map.png b/primo-explore/custom/41SLSP_EPF-test/img/icon_map.png
deleted file mode 100644
index 5e78ef1..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/icon_map.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/icon_microform.png b/primo-explore/custom/41SLSP_EPF-test/img/icon_microform.png
deleted file mode 100644
index ca098f0..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/icon_microform.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/icon_microform_not_used.png b/primo-explore/custom/41SLSP_EPF-test/img/icon_microform_not_used.png
deleted file mode 100644
index ca098f0..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/icon_microform_not_used.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/icon_microforms.png b/primo-explore/custom/41SLSP_EPF-test/img/icon_microforms.png
deleted file mode 100644
index eb87193..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/icon_microforms.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/icon_newspaper.png b/primo-explore/custom/41SLSP_EPF-test/img/icon_newspaper.png
deleted file mode 100644
index 16408c0..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/icon_newspaper.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/icon_newspaper_article.png b/primo-explore/custom/41SLSP_EPF-test/img/icon_newspaper_article.png
deleted file mode 100644
index 16408c0..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/icon_newspaper_article.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/icon_other.png b/primo-explore/custom/41SLSP_EPF-test/img/icon_other.png
deleted file mode 100644
index eb87193..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/icon_other.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/icon_patent.png b/primo-explore/custom/41SLSP_EPF-test/img/icon_patent.png
deleted file mode 100644
index eb87193..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/icon_patent.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/icon_reference_entry.png b/primo-explore/custom/41SLSP_EPF-test/img/icon_reference_entry.png
deleted file mode 100644
index eb87193..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/icon_reference_entry.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/icon_report.png b/primo-explore/custom/41SLSP_EPF-test/img/icon_report.png
deleted file mode 100644
index 3d77eb6..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/icon_report.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/icon_research_data.png b/primo-explore/custom/41SLSP_EPF-test/img/icon_research_data.png
deleted file mode 100644
index 32c237a..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/icon_research_data.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/icon_research_dataset.png b/primo-explore/custom/41SLSP_EPF-test/img/icon_research_dataset.png
deleted file mode 100644
index 32c237a..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/icon_research_dataset.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/icon_review.png b/primo-explore/custom/41SLSP_EPF-test/img/icon_review.png
deleted file mode 100644
index eb87193..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/icon_review.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/icon_score.png b/primo-explore/custom/41SLSP_EPF-test/img/icon_score.png
deleted file mode 100644
index 858173e..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/icon_score.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/icon_statistical_data.png b/primo-explore/custom/41SLSP_EPF-test/img/icon_statistical_data.png
deleted file mode 100644
index 32c237a..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/icon_statistical_data.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/icon_text_resource.png b/primo-explore/custom/41SLSP_EPF-test/img/icon_text_resource.png
deleted file mode 100644
index eb87193..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/icon_text_resource.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/icon_versions.png b/primo-explore/custom/41SLSP_EPF-test/img/icon_versions.png
deleted file mode 100644
index 4aa4b7f..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/icon_versions.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/icon_video.png b/primo-explore/custom/41SLSP_EPF-test/img/icon_video.png
deleted file mode 100644
index 820996d..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/icon_video.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/icon_website.png b/primo-explore/custom/41SLSP_EPF-test/img/icon_website.png
deleted file mode 100644
index d67bf35..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/icon_website.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/infographic_de.png b/primo-explore/custom/41SLSP_EPF-test/img/infographic_de.png
deleted file mode 100644
index 6579478..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/infographic_de.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/infographic_en.png b/primo-explore/custom/41SLSP_EPF-test/img/infographic_en.png
deleted file mode 100644
index 372997f..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/infographic_en.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/infographic_fr.png b/primo-explore/custom/41SLSP_EPF-test/img/infographic_fr.png
deleted file mode 100644
index 132cd34..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/infographic_fr.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/infographic_it.png b/primo-explore/custom/41SLSP_EPF-test/img/infographic_it.png
deleted file mode 100644
index cbfcfc5..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/infographic_it.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/information.png b/primo-explore/custom/41SLSP_EPF-test/img/information.png
deleted file mode 100644
index b9a6e4c..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/information.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/instagram.svg b/primo-explore/custom/41SLSP_EPF-test/img/instagram.svg
deleted file mode 100644
index de1bc35..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/img/instagram.svg
+++ /dev/null
@@ -1,34 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
- "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
-<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
- width="504.000000pt" height="504.000000pt" viewBox="0 0 504.000000 504.000000"
- preserveAspectRatio="xMidYMid meet">
-<metadata>
-Created by potrace 1.16, written by Peter Selinger 2001-2019
-</metadata>
-<g transform="translate(0.000000,504.000000) scale(0.100000,-0.100000)"
-fill="#000000" stroke="none">
-<path d="M1550 5034 c-540 -27 -861 -144 -1130 -414 -236 -235 -358 -522 -402
--940 -19 -179 -19 -2141 0 -2320 44 -418 166 -705 402 -940 235 -236 522 -358
-940 -402 179 -19 2141 -19 2320 0 418 44 705 166 940 402 236 235 358 522 402
-940 19 179 19 2141 0 2320 -44 418 -166 705 -402 940 -230 231 -513 354 -920
-401 -74 8 -396 13 -1095 14 -544 1 -1019 0 -1055 -1z m2070 -473 c128 -13 245
--36 325 -63 317 -105 518 -339 589 -688 37 -183 41 -309 41 -1290 0 -981 -4
--1107 -41 -1290 -81 -396 -328 -643 -724 -724 -183 -37 -309 -41 -1290 -41
--981 0 -1107 4 -1290 41 -399 82 -646 330 -724 729 -33 166 -38 296 -43 1100
--5 796 3 1203 27 1380 68 491 346 768 840 835 47 7 162 15 255 20 250 12 1907
-4 2035 -9z"/>
-<path d="M3750 4153 c-63 -23 -151 -113 -173 -177 -9 -27 -17 -77 -17 -111 0
--92 24 -151 89 -216 65 -65 124 -89 216 -89 92 0 151 24 216 89 66 66 89 124
-89 220 0 169 -135 302 -305 300 -38 0 -90 -8 -115 -16z"/>
-<path d="M2355 3809 c-305 -41 -562 -173 -775 -395 -239 -249 -354 -540 -354
--894 0 -358 116 -648 362 -902 255 -264 560 -392 932 -392 372 0 677 128 932
-392 246 254 362 544 362 902 0 358 -116 648 -362 902 -191 198 -419 322 -685
-373 -101 20 -317 27 -412 14z m400 -489 c276 -88 479 -293 567 -570 20 -65 23
--95 23 -230 0 -135 -3 -165 -23 -230 -88 -279 -293 -484 -572 -572 -65 -20
--95 -23 -230 -23 -135 0 -165 3 -230 23 -279 88 -484 293 -572 572 -20 65 -23
-95 -23 230 0 135 3 165 23 230 96 303 338 526 643 590 24 5 107 8 184 6 111
--3 155 -8 210 -26z"/>
-</g>
-</svg>
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/instagram_white.svg b/primo-explore/custom/41SLSP_EPF-test/img/instagram_white.svg
deleted file mode 100644
index fc51415..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/img/instagram_white.svg
+++ /dev/null
@@ -1,67 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
- sodipodi:docname="instagram - Copia.svg"
- id="svg36"
- preserveAspectRatio="xMidYMid meet"
- viewBox="0 0 504.000000 504.000000"
- height="504.000000pt"
- width="504.000000pt"
- version="1.0">
- <defs
- id="defs40" />
- <sodipodi:namedview
- inkscape:current-layer="svg36"
- inkscape:window-maximized="1"
- inkscape:window-y="-9"
- inkscape:window-x="-9"
- inkscape:cy="198.36145"
- inkscape:cx="336"
- inkscape:zoom="1.235119"
- showgrid="false"
- id="namedview38"
- inkscape:window-height="1001"
- inkscape:window-width="1920"
- inkscape:pageshadow="2"
- inkscape:pageopacity="0"
- guidetolerance="10"
- gridtolerance="10"
- objecttolerance="10"
- borderopacity="1"
- bordercolor="#666666"
- pagecolor="#ffffff" />
- <metadata
- id="metadata26">
-Created by potrace 1.16, written by Peter Selinger 2001-2019
-<rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
-</rdf:RDF>
-</metadata>
- <g
- id="g34"
- stroke="none"
- fill="#ffffff"
- transform="translate(0.000000,504.000000) scale(0.100000,-0.100000)">
- <path
- id="path28"
- d="M1550 5034 c-540 -27 -861 -144 -1130 -414 -236 -235 -358 -522 -402 -940 -19 -179 -19 -2141 0 -2320 44 -418 166 -705 402 -940 235 -236 522 -358 940 -402 179 -19 2141 -19 2320 0 418 44 705 166 940 402 236 235 358 522 402 940 19 179 19 2141 0 2320 -44 418 -166 705 -402 940 -230 231 -513 354 -920 401 -74 8 -396 13 -1095 14 -544 1 -1019 0 -1055 -1z m2070 -473 c128 -13 245 -36 325 -63 317 -105 518 -339 589 -688 37 -183 41 -309 41 -1290 0 -981 -4 -1107 -41 -1290 -81 -396 -328 -643 -724 -724 -183 -37 -309 -41 -1290 -41 -981 0 -1107 4 -1290 41 -399 82 -646 330 -724 729 -33 166 -38 296 -43 1100 -5 796 3 1203 27 1380 68 491 346 768 840 835 47 7 162 15 255 20 250 12 1907 4 2035 -9z" />
- <path
- id="path30"
- d="M3750 4153 c-63 -23 -151 -113 -173 -177 -9 -27 -17 -77 -17 -111 0 -92 24 -151 89 -216 65 -65 124 -89 216 -89 92 0 151 24 216 89 66 66 89 124 89 220 0 169 -135 302 -305 300 -38 0 -90 -8 -115 -16z" />
- <path
- id="path32"
- d="M2355 3809 c-305 -41 -562 -173 -775 -395 -239 -249 -354 -540 -354 -894 0 -358 116 -648 362 -902 255 -264 560 -392 932 -392 372 0 677 128 932 392 246 254 362 544 362 902 0 358 -116 648 -362 902 -191 198 -419 322 -685 373 -101 20 -317 27 -412 14z m400 -489 c276 -88 479 -293 567 -570 20 -65 23 -95 23 -230 0 -135 -3 -165 -23 -230 -88 -279 -293 -484 -572 -572 -65 -20 -95 -23 -230 -23 -135 0 -165 3 -230 23 -279 88 -484 293 -572 572 -20 65 -23 95 -23 230 0 135 3 165 23 230 96 303 338 526 643 590 24 5 107 8 184 6 111 -3 155 -8 210 -26z" />
- </g>
-</svg>
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/library-logo.png b/primo-explore/custom/41SLSP_EPF-test/img/library-logo.png
deleted file mode 100644
index 4863f84..0000000
Binary files a/primo-explore/custom/41SLSP_EPF-test/img/library-logo.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/linkedin.svg b/primo-explore/custom/41SLSP_EPF-test/img/linkedin.svg
deleted file mode 100644
index 3d8a056..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/img/linkedin.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M0 0v24h24v-24h-24zm8 19h-3v-11h3v11zm-1.5-12.268c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764-.783 1.764-1.75 1.764zm13.5 12.268h-3v-5.604c0-3.368-4-3.113-4 0v5.604h-3v-11h3v1.765c1.397-2.586 7-2.777 7 2.476v6.759z"/></svg>
\ No newline at end of file
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/twitter.svg b/primo-explore/custom/41SLSP_EPF-test/img/twitter.svg
deleted file mode 100644
index 298af2a..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/img/twitter.svg
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 20.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
-<svg version="1.1" id="White" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
- viewBox="0 0 400 400" style="enable-background:new 0 0 400 400;" xml:space="preserve">
-<style type="text/css">
- .st0{fill:#FFFFFF;}
-</style>
-<path class="st0" d="M400,200c0,110.5-89.5,200-200,200S0,310.5,0,200S89.5,0,200,0S400,89.5,400,200z M163.4,305.5
- c88.7,0,137.2-73.5,137.2-137.2c0-2.1,0-4.2-0.1-6.2c9.4-6.8,17.6-15.3,24.1-25c-8.6,3.8-17.9,6.4-27.7,7.6
- c10-6,17.6-15.4,21.2-26.7c-9.3,5.5-19.6,9.5-30.6,11.7c-8.8-9.4-21.3-15.2-35.2-15.2c-26.6,0-48.2,21.6-48.2,48.2
- c0,3.8,0.4,7.5,1.3,11c-40.1-2-75.6-21.2-99.4-50.4c-4.1,7.1-6.5,15.4-6.5,24.2c0,16.7,8.5,31.5,21.5,40.1c-7.9-0.2-15.3-2.4-21.8-6
- c0,0.2,0,0.4,0,0.6c0,23.4,16.6,42.8,38.7,47.3c-4,1.1-8.3,1.7-12.7,1.7c-3.1,0-6.1-0.3-9.1-0.9c6.1,19.2,23.9,33.1,45,33.5
- c-16.5,12.9-37.3,20.6-59.9,20.6c-3.9,0-7.7-0.2-11.5-0.7C110.8,297.5,136.2,305.5,163.4,305.5"/>
-</svg>
diff --git a/primo-explore/custom/41SLSP_EPF-test/img/youtube.svg b/primo-explore/custom/41SLSP_EPF-test/img/youtube.svg
deleted file mode 100644
index b1e20ee..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/img/youtube.svg
+++ /dev/null
@@ -1,45 +0,0 @@
-<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
-<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
- viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
-<g>
- <g>
- <path d="M490.24,113.92c-13.888-24.704-28.96-29.248-59.648-30.976C399.936,80.864,322.848,80,256.064,80
- c-66.912,0-144.032,0.864-174.656,2.912c-30.624,1.76-45.728,6.272-59.744,31.008C7.36,138.592,0,181.088,0,255.904
- C0,255.968,0,256,0,256c0,0.064,0,0.096,0,0.096v0.064c0,74.496,7.36,117.312,21.664,141.728
- c14.016,24.704,29.088,29.184,59.712,31.264C112.032,430.944,189.152,432,256.064,432c66.784,0,143.872-1.056,174.56-2.816
- c30.688-2.08,45.76-6.56,59.648-31.264C504.704,373.504,512,330.688,512,256.192c0,0,0-0.096,0-0.16c0,0,0-0.064,0-0.096
- C512,181.088,504.704,138.592,490.24,113.92z M192,352V160l160,96L192,352z"/>
- </g>
-</g>
-<g>
-</g>
-<g>
-</g>
-<g>
-</g>
-<g>
-</g>
-<g>
-</g>
-<g>
-</g>
-<g>
-</g>
-<g>
-</g>
-<g>
-</g>
-<g>
-</g>
-<g>
-</g>
-<g>
-</g>
-<g>
-</g>
-<g>
-</g>
-<g>
-</g>
-</svg>
diff --git a/primo-explore/custom/41SLSP_EPF-test/js/README.md b/primo-explore/custom/41SLSP_EPF-test/js/README.md
deleted file mode 100644
index 8c73521..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/js/README.md
+++ /dev/null
@@ -1,199 +0,0 @@
-# The Primo New UI Customization Workflow Development Environment
-
-
-##JavaScript documentation
-
-- When you want to add functionality to your Primo installation you will be using Angular Directives.
-
-- To learn more about directives see:
-> https://docs.angularjs.org/guide/directive
-
-- Primo uses external directives from the Angular-material framework:
-> https://material.angularjs.org/latest/
-
-- Those directives are tagged by a prefix : "md-"
-
-- Primo also creates its own directives which are tagged by the "prm-" prefix.
-
-
-Example:
-```
- <header layout="column" layout-fill class="topbar-wrapper">
- <prm-topbar>
- </prm-topbar>
-
- <prm-search-bar (search-event)="prmSearch.onSearchBarSearchEvent()">
- </prm-search-bar>
-
- <md-progress-linear class="header-progress-bar animation-scale-up-down" md-mode="indeterminate" ng-show="prmSearch.searchInProgress">
- </md-progress-linear>
-
- </header>
-```
-
-
-- You can see in the example how we use :
-
-1. An HTML5 tag - header
-2. A Primo directive : prm-topbar , prm-search-bar.
-3. An external material design directive : md-progress-bar :
-> https://material.angularjs.org/latest/api/directive/mdProgressLinear
-
-
-
-##Concept
-
-- When You want to add your own JavaScript functionality - you will need to plug-in to placeholder Directives we added to the system.
-- Those directive are added as the last child element for every Primo directive (defined by the `prm-` prefix)
-- The placeholder directives are injected (as input) with the Controller of their parent, thus have access to the data model of the parent directive
-- Use the examples below as starting points for your JavaScript plug-in directives
-- Learn about Angular Directives to better understand the different abilities this workflow offers
-> https://docs.angularjs.org/guide/directive
-
-
-
-##Recipes/Examples:
-
-
-# JavaScript Recipe 1 - a Static `hello world` html Message
-
-
-- Use the `showDirectives` (located in the root directory of this package is the showDirectives.txt file
-, just add the content of the file as a bookmark to your browser) scriplet to identify the `prmSearchBarAfter` directive which you will plugin to
-- Edit the primo-explore/custom/js/custom.js file and add a component declaration for the `prmSearchBarAfter` directive
-
- ```
- app.component('prmSearchBarAfter', {
-
-
- });
- ```
-- Add the template property with your static message
-
- ```
- app.component('prmSearchBarAfter', {
- template: `<span style="margin-left: 40%;">Hello World</span>`
-
- });
- ```
-
-- Save and refresh your browser
-
-
-
-# JavaScript Recipe 2 - a Dynamic Directive
-- Use the `showDirectives` scriplet to identify the `prmSearchBarAfter` directive which you will plugin to
-- Run the following command in your browsers' console tab:
-```
- angular.reloadWithDebugInfo()
-```
-- Focus on the `prmSearchBarAfter` directive
-- Run the following command in your browsers' console tab:
-```
- angular.element($0).scope().ctrl
-```
-
-- Review the properties of the directive to decide which data elements can be used, avoid methods/functions as they wont be backwards compatible
-
-- Edit primo-explore/custom/js/custom.js file and add a component declaration for the `prmSearchBarAfter` directive
-
-- Add a binding definition the input parentCtrl
-```
- bindings: {parentCtrl: '<'},
-```
-- Add a controller definition:
-```
- controller: 'SearchAfterController',
-```
-- Define a controller with 2 getter methods to return the query and selected scope
-```
-app.controller('SearchBarAfterController', [function () {
- var vm = this;
-
- vm.getSelectdScope = getSelectdScope;
- vm.getQuery = getQuery;
-
- function getSelectdScope() {
- return vm.parentCtrl.scopeField;
- }
-
- function getQuery() {
- return vm.parentCtrl.mainSearchField;
- }
-
-```
-- Edit the directive template to reference the getter methods
-``` <div layout="row" layout-align="center center">
- <md-card flex="80">
- <md-card-title>
- <md-card-title-text><span class="md-headline">
- This is a demo presenting the ability to display query
- information below the search box</span>
- <span class="md-subhead">Query: {{$ctrl.getQuery()}}</span>
- <span class="md-subhead">Scope: {{$ctrl.getSelectdScope()}}</span>
- </md-card-title-text>
- <md-card-title-media>
- <div class="md-media-sm card-media"></div>
- </md-card-title-media>
- </md-card-title>
- <md-card-actions layout="row" layout-align="end center">
- <md-button>Action 1</md-button>
- <md-button>Action 2</md-button>
- </md-card-actions>
- </md-card>
- </div>
- ```
-- Save and refresh your browser
-
-
-# JavaScript Recipe 3 - Adding the Altmetrics Widget
-- Use the `showDirectives` scriplet to identify the `prmFullViewAfter` directive which you will plugin to
-- Run the following command in your browsers' console tab:
-`angular.reloadWithDebugInfo()`
-- Focus on the `prmFullViewAfter` directive
-- Run the following command in your browsers' console tab:
-`angular.element($0).scope().ctrl`
-
-- Review the properties of the directive to decide which data elements can be used, avoid methods/functions as they wont be backwards compatible
-
-- Edit primo-explore/custom/js/custom.js file and add a component declaration for the `prmFullViewAfter` directive
-
-- Add a binding definition the input parentCtrl
-`bindings: {parentCtrl: '<'},`
-- Add a controller definition:
-`controller: 'FullViewAfterController',`
-- Define a controller that populates the doi and loads the Altmetrics js file
-```app.controller('FullViewAfterController', ['angularLoad', function (angularLoad) {
- var vm = this;
- vm.doi = vm.parentCtrl.item.pnx.addata.doi[0] || '';
-
- vm.$onInit = function () {
- angularLoad.loadScript('https://d1bxh8uas1mnw7.cloudfront.net/assets/embed.js?' + Date.now()).then(function () {
-
- });
- };
- }]);
-```
-- Edit the directive template to add the Altmetrics div and bind the data-doi attribure to the controller
-```<div class="full-view-section-content" ng-if="$ctrl.doi">
- <div class="section-header" layout="row" layout-align="center center">
- <h2 class="section-title md-title light-text">
- Social Popularity Statistics (AltMetrics) :
- </h2>
- <md-divider flex>
- </md-divider>
- </div>
- <div class="full-view-section">
- <div class="full-view-section-content">
- <div class="section-body" layout="row" layout-align="center center">
- <div class="spaced-rows" layout="column">
- <div ng-if="$ctrl.doi" class="altmetric-embed" data-badge-type="medium-donut" data-badge-details="right" data-doi="{{$ctrl.doi}}">
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- ```
-- Save and refresh your browser
-
diff --git a/primo-explore/custom/41SLSP_EPF-test/js/account/accountlinks.component.js b/primo-explore/custom/41SLSP_EPF-test/js/account/accountlinks.component.js
deleted file mode 100644
index dd90628..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/js/account/accountlinks.component.js
+++ /dev/null
@@ -1,19 +0,0 @@
-"use strict";
-
-/*
- OBJECTIF: Ajouter le lien vers SWITCH edu-ID.
- REMARQUES: contient juste les liens vers SWITCH edu-ID et vers
- l'application de changement des code-barres.
-*/
-
-module.exports = {
- bindings: {parentCtrl: '<'},
- controllerAs: 'ctrl',
- controller: [function() {
- var vm = this;
- console.log(vm);
- vm.view = vm.parentCtrl.accountLinksService.vid.replace(':', '-');
-
- }],
- template: `<div ng-if="ctrl.parentCtrl.tabName=='personalsettings'"><img width="20px" ng-src="/discovery/custom/{{ ctrl.view }}/img/information.png" /> {{ 'switchEduID' | customTranslate | trustHtml }} <a href=\"https://eduid.ch\">https://eduid.ch</a></div>`
-};
diff --git a/primo-explore/custom/41SLSP_EPF-test/js/account/index.js b/primo-explore/custom/41SLSP_EPF-test/js/account/index.js
deleted file mode 100644
index 1ad5b8a..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/js/account/index.js
+++ /dev/null
@@ -1,4 +0,0 @@
-(function () {
- var account_module = angular.module('accountModule', ['angularLoad']);
- account_module.component('prmAccountLinksAfter', require('./accountlinks.component.js'));
-})()
diff --git a/primo-explore/custom/41SLSP_EPF-test/js/briefview/availabilityline.component.js b/primo-explore/custom/41SLSP_EPF-test/js/briefview/availabilityline.component.js
deleted file mode 100644
index ddf8333..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/js/briefview/availabilityline.component.js
+++ /dev/null
@@ -1,90 +0,0 @@
-module.exports = {
- bindings: {parentCtrl: '<'},
- controllerAs: 'ctrl',
- controller: ['$filter', '$http', 'userService', function($filter, $http, userService) {
- var vm = this
- function parse_doi(txt){
- var re = /10\.\d{4,9}\/[-._;()/:A-Z0-9]+/i;
- var m = txt.match(re);
- if (m){
- return m[0]
- }
-
- }
- vm.is_epfl_IP = false;
- var userIP = userService.getIP();
- // console.log(userIP);
- // Vérification du range EPFL
- if (userIP) {
- const regex = /128\.17([89])\.(\d{1,3})\./;
- const found = userIP.match(regex);
- if (found && (found[1] == '8' || parseInt(found[2])>=128)) {
- vm.is_epfl_IP = true;
- }
- }
-
- vm.get_doi = function(){
- if (vm.parentCtrl.hasOwnProperty('result') && vm.parentCtrl.result.hasOwnProperty('pnx')){
- var pnx = vm.parentCtrl.result.pnx;
-
- // Recherche dans la section addata
- if ('addata' in pnx && 'doi' in pnx.addata && parse_doi(pnx.addata.doi[0]) && pnx.control.recordtype[0]==='article') {
- return parse_doi(pnx.addata.doi[0])
- }
-
- // Recherche dans la section display
- if ('display' in pnx && 'identifier' in pnx.display) {
- for (const identifier of pnx.display.identifier){
- if (parse_doi(identifier)){
- return parse_doi(identifier)
- }
- }
- }
- }
- }
-
- vm.check_doi = function(){
- if (!vm.hasOwnProperty('doi')){
- if (vm.parentCtrl.hasOwnProperty('result') && vm.parentCtrl.result.hasOwnProperty('pnx')){
- if (vm.get_doi()){
- vm.doi = vm.get_doi();
- vm.set_url_pdf()
-
- } else {
- vm.doi = null;
- }
- }
- }
- if (vm.hasOwnProperty('pdf_link')) {
- return true
- }
- return false
- }
- vm.set_url_pdf = function(){
- var url = `https://public-api.thirdiron.com/public/v1/libraries/183/articles/doi/${vm.doi}?access_token=adc54dee-c6a6-4b99-a917-2ed400f1f2d3`;
- $http({
- method: 'GET',
- url: url
- }).then(function successCallback(response) {
-
- if (response.status === 200) {
- try{
- var pdf_link = response.data.data.fullTextFile;
- } catch(e){
- var pdf_link = '';
- }
- if (pdf_link.length > 0) {
- vm.pdf_link = pdf_link;
- }
- }
- // console.log(vm.pdf_link);
- }, function(response) {
- vm.doi = null;
- });
-
- }
- // console.log(vm);
- }],
- template: `<div><div class="pdf_btn" ng-if="ctrl.check_doi() &amp;&amp; ctrl.is_epfl_IP">
- <a href="{{ctrl.pdf_link}}" target="_blank"><prm-icon icon-type="svg" svg-icon-set="primo-ui" icon-definition="pdf"></prm-icon> {{ 'pdfAccess' | customTranslate }}</a></div></div>`
-}
diff --git a/primo-explore/custom/41SLSP_EPF-test/js/briefview/index.js b/primo-explore/custom/41SLSP_EPF-test/js/briefview/index.js
deleted file mode 100644
index 9bb2e62..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/js/briefview/index.js
+++ /dev/null
@@ -1,4 +0,0 @@
-(function () {
- var briefview_module = angular.module('briefviewModule', ['angularLoad']);
- briefview_module.component(/*'prmBriefResultContainerAfter'*/'prmSearchResultAvailabilityLineAfter', require('./availabilityline.component.js'));
-})()
diff --git a/primo-explore/custom/41SLSP_EPF-test/js/custom.js b/primo-explore/custom/41SLSP_EPF-test/js/custom.js
deleted file mode 100644
index cf0070c..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/js/custom.js
+++ /dev/null
@@ -1,2 +0,0 @@
-!function a(l,s,o){function c(t,e){if(!s[t]){if(!l[t]){var r="function"==typeof require&&require;if(!e&&r)return r(t,!0);if(d)return d(t,!0);var n=new Error("Cannot find module '"+t+"'");throw n.code="MODULE_NOT_FOUND",n}var i=s[t]={exports:{}};l[t][0].call(i.exports,function(e){return c(l[t][1][e]||e)},i,i.exports,a,l,s,o)}return s[t].exports}for(var d="function"==typeof require&&require,e=0;e<o.length;e++)c(o[e]);return c}({1:[function(e,t,r){"use strict";t.exports={bindings:{parentCtrl:"<"},controllerAs:"ctrl",controller:[function(){var e=this;console.log(e),e.view=e.parentCtrl.accountLinksService.vid.replace(":","-")}],template:'<div ng-if="ctrl.parentCtrl.tabName==\'personalsettings\'"><img width="20px" ng-src="/discovery/custom/{{ ctrl.view }}/img/information.png" /> {{ \'switchEduID\' | customTranslate | trustHtml }} <a href="https://eduid.ch">https://eduid.ch</a></div>'}},{}],2:[function(e,t,r){"use strict";angular.module("accountModule",["angularLoad"]).component("prmAccountLinksAfter",e("./accountlinks.component.js"))},{"./accountlinks.component.js":1}],3:[function(e,t,r){"use strict";t.exports={bindings:{parentCtrl:"<"},controllerAs:"ctrl",controller:["$filter","$http","userService",function(e,t,r){var s=this;function o(e){var t=e.match(/10\.\d{4,9}\/[-._;()/:A-Z0-9]+/i);if(t)return t[0]}s.is_epfl_IP=!1;var n=r.getIP();if(n){var i=n.match(/128\.17([89])\.(\d{1,3})\./);i&&("8"==i[1]||128<=parseInt(i[2]))&&(s.is_epfl_IP=!0)}s.get_doi=function(){if(s.parentCtrl.hasOwnProperty("result")&&s.parentCtrl.result.hasOwnProperty("pnx")){var e=s.parentCtrl.result.pnx;if("addata"in e&&"doi"in e.addata&&o(e.addata.doi[0])&&"article"===e.control.recordtype[0])return o(e.addata.doi[0]);if("display"in e&&"identifier"in e.display){var t=!0,r=!1,n=void 0;try{for(var i,a=e.display.identifier[Symbol.iterator]();!(t=(i=a.next()).done);t=!0){var l=i.value;if(o(l))return o(l)}}catch(e){r=!0,n=e}finally{try{!t&&a.return&&a.return()}finally{if(r)throw n}}}}},s.check_doi=function(){return s.hasOwnProperty("doi")||s.parentCtrl.hasOwnProperty("result")&&s.parentCtrl.result.hasOwnProperty("pnx")&&(s.get_doi()?(s.doi=s.get_doi(),s.set_url_pdf()):s.doi=null),!!s.hasOwnProperty("pdf_link")},s.set_url_pdf=function(){var e="https://public-api.thirdiron.com/public/v1/libraries/183/articles/doi/"+s.doi+"?access_token=adc54dee-c6a6-4b99-a917-2ed400f1f2d3";t({method:"GET",url:e}).then(function(e){if(200===e.status){try{var t=e.data.data.fullTextFile}catch(e){t=""}0<t.length&&(s.pdf_link=t)}},function(e){s.doi=null})}}],template:'<div><div class="pdf_btn" ng-if="ctrl.check_doi() &amp;&amp; ctrl.is_epfl_IP">\n <a href="{{ctrl.pdf_link}}" target="_blank"><prm-icon icon-type="svg" svg-icon-set="primo-ui" icon-definition="pdf"></prm-icon> {{ \'pdfAccess\' | customTranslate }}</a></div></div>'}},{}],4:[function(e,t,r){"use strict";angular.module("briefviewModule",["angularLoad"]).component("prmSearchResultAvailabilityLineAfter",e("./availabilityline.component.js"))},{"./availabilityline.component.js":3}],5:[function(e,t,r){"use strict";angular.module("databasesModule",["angularLoad"]).component("prmTreeNavAfter",e("./treenav.component.js"))},{"./treenav.component.js":6}],6:[function(e,t,r){"use strict";t.exports={bindings:{parentCtrl:"<"},controllerAs:"ctrl",controller:["$filter",function(e){}]}},{}],7:[function(e,t,r){"use strict";angular.module("customTranslateFilter",[]).filter("customTranslate",["$translate",function(r){return function(e){var t={costWarningScan:{fr:'<b><span class="bigfont" style="font-size:20px">Service payant:</span></b><b> les collaborateurs et les étudiants de l’EPFL peuvent bénéficier de ce service gratuitement, en utilisant le formulaire:</b>',en:'<b><span class="bigfont" style="font-size:20px">Fee-based service:</span></b><b> EPFL employees and students can benefit from this service free of charge by using the form:</b>',de:'<b><span class="bigfont" style="font-size:20px">Kostenpflichtiger Service:</span></b><b> Mitarbeitern und Studenten der EPFL steht dieser Dienst über das Fernleihe-Formular gratis zur Verfügung.</b>',it:'<b><span class="bigfont" style="font-size:20px">Servizio a pagamento:</span></b><b> I dipendenti e gli studenti dell\'EPFL possono usufruire gratuitamente di questo servizio utilizzando il modulo:</b>'},costWarningScanEPFL:{fr:"<b>Service gratuit pour les collaborateurs et les étudiants EPFL.</b>",en:"<b>Free of charge for EPFL staff and students.</b>",de:"<b>Service für Mitarbeiter und Studenten der EPFL kostenlos</b>",it:"<b>Servizio gratuito per i dipendenti e gli studenti dell’EPFL.<b>"},costWarningNetworkLoan:{fr:"<b>Service gratuit en cas de retrait à la Bibliothèque de l’EPFL.</b>",en:"<b>Free of charge if withdrawal at the EPFL Library.</b>",de:"<b>Service bei Abholung in der EPFL-Bibliothek kostenlos.</b>",it:"<b>Servizio gratuito in caso di ritiro alla Biblioteca dell’EPFL</b>"},costWarningPEB:{fr:"<b>Service gratuit pour les collaborateurs et les étudiants de l’EPFL.</b> Avant de passer une commande d’un document physique via le prêt entre bibliothèques, merci de vous assurer que ce document n'est pas disponible dans d’autres bibliothèques du réseau SLSP dans swisscovery.",en:"<b>Free of charge for EPFL staff and students.</b> Before placing an order for a physical document via the interlibrary loan, please make sure that this document is not available in other SLSP network libraries on swisscovery.",de:"<b>Kostenloser Service für Mitarbeiter und Studenten der EPFL.</b> Bevor Sie ein Medium über die Fernleihe bestellen, vergewissern Sie sich bitte zunächst in swisscovery, dass es nicht in einer anderen Bibliothek des SLSP-Netzwerks verfügbar ist.",it:"<b>Servizio gratuito per i dipendenti e gli studenti dell’EPFL.</b> Prima di ordinare un documento cartaceo tramite il prestito interbibliotecario, assicuratevi che questo documento non sia disponibile in altre biblioteche della rete SLSP in swisscovery."},mainTitle:{fr:"Catalogue BEAST",en:"BEAST discovery tool",de:"BEAST Wissensportal",it:"Catalogo BEAST"},subTitle:{fr:"Le point d'accès à toutes les ressources de la Bibliothèque de l'EPFL",en:"The access portal to all the resources of the EPFL Library",de:"Der Zugangspunkt zu allen Ressourcen der EPFL Bibliothek",it:"Il punto d’accesso a tutte le risorse della Biblioteca dell’EPFL"},switchEduID:{fr:"Modifier vos informations personnelles sur",en:"Change your personal data on",de:"Ändern Sie Ihre persönlichen Daten auf",it:"Modifica i tuoi dati personali sul"},illButton:{fr:"Prêt entre bibliothèques (PEB)",en:"Inter Library Loan (ILL)",de:"Fernleihe",it:"Prestito interbibliotecario"},feedbackLink:{fr:"Signaler un problème d'accès",en:"Report an access problem",de:"Zugriffsproblem melden",it:"Segnalare un problema di accesso"},vpnMSG:{fr:'Les ressources électroniques sont accessibles depuis tous les postes de l’EPFL, et à distance via le <a target="_blank" href="https://www.epfl.ch/campus/services/ressources-informatiques/network-services-reseau/acces-intranet-a-distance/clients-vpn-disponibles/">VPN</a> EPFL.',en:'Electronic resources are accessible from all EPFL workstations, and remotely via the EPFL <a target="_blank" href="https://www.epfl.ch/campus/services/en/it-services/network-services/remote-intranet-access/vpn-clients-available/">VPN</a>.',de:'Elektronische Informationsressourcen sind an allen EPFL-Arbeitsplätzen und per EPFL <a target="_blank" href="https://www.epfl.ch/campus/services/en/it-services/network-services/remote-intranet-access/vpn-clients-available/">VPN</a> abrufbar.',it:'Le risorse elettroniche sono accessibili da tutte le postazioni di lavoro dell\'EPFL e a distanza tramite <a target="_blank" href="https://www.epfl.ch/campus/services/en/it-services/network-services/remote-intranet-access/vpn-clients-available/">VPN</a> EPFL.'},feedbackLinkMSG:{fr:"Je rencontre un problème d’accès à la ressource électronique ci-dessous. Je vous remercie de m’informer lorsque l’accès sera rétabli.",en:"I have a problem accessing the electronic resource below. Please let me know when the access will be restored.",de:"I have a problem accessing the electronic resource below. Please let me know when the access will be restored.",it:"I have a problem accessing the electronic resource below. Please let me know when the access will be restored."},pdfAccess:{fr:"Accès direct au pdf",en:"Direct access to the pdf",de:"Direct access to the pdf",it:"Direct access to the pdf"}};return["en","fr","it","de"].includes(r.use())?t[e][r.use()]:t[e].fr}}])},{}],8:[function(e,t,r){"use strict";angular.module("trustHtmlFilter",[]).filter("trustHtml",["$sce",function(t){return function(e){return t.trustAsHtml(e)}}])},{}],9:[function(e,t,r){"use strict";t.exports={bindings:{parentCtrl:"<"},controllerAs:"ctrl",controller:["$filter","userService",function(e,t){var r=this;if(r.get_txt=function(){return e("customTranslate")("vpnMSG")},r.feedbackLink="",r.is_epfl_IP=!1,r.no_report_link=!1,r.parentCtrl.item.pnx.addata.openaccess&&"true"===r.parentCtrl.item.pnx.addata.openaccess[0]&&(r.no_report_link=!0),r.parentCtrl.item.pnx.addata.oa&&"free_for_read"===r.parentCtrl.item.pnx.addata.oa[0]&&(r.no_report_link=!0),!r.no_report_link){var n=t.getIP();if(n){var i=n.match(/128\.17([89])\.(\d{1,3})\./);i&&("8"==i[1]||128<=parseInt(i[2]))&&(r.is_epfl_IP=!0)}var a=r.parentCtrl.item.pnx.control.recordid[0],l="";r.parentCtrl.item.pnx.display.title&&0<r.parentCtrl.item.pnx.display.title.length&&(l=r.parentCtrl.item.pnx.display.title[0]);var s="";r.parentCtrl.item.pnx.display.creationdate&&0<r.parentCtrl.item.pnx.display.creationdate.length&&(s=r.parentCtrl.item.pnx.display.creationdate[0]);var o="";r.parentCtrl.item.pnx.display.creator&&0<r.parentCtrl.item.pnx.display.creator.length&&(o=r.parentCtrl.item.pnx.display.creator.join(", "));var c="";r.parentCtrl.item.pnx.display.type&&0<r.parentCtrl.item.pnx.display.type.length&&(c=r.parentCtrl.item.pnx.display.type[0]);var d="";if(r.parentCtrl.item.pnx.display.identifier&&0<r.parentCtrl.item.pnx.display.identifier.length){var u=r.parentCtrl.item.pnx.display.identifier[0];-1<u.indexOf("<b>ISBN")||-1<u.indexOf("<b>ISSN")?d=r.parentCtrl.item.pnx.display.identifier.join(", ").replace(/<\/b>/g,"").replace(/<b>/g,""):-1<u.indexOf("ISBN")?d="ISBN: "+u.substring(u.indexOf("$$V")+3):-1<u.indexOf("ISSN")&&(d="ISSN: "+u.substring(u.indexOf("$$V")+3))}var p=navigator.userAgent,f="Access problem "+a+' - "'+l+'"',m=e("customTranslate")("feedbackLinkMSG")+"\n\n****\nTitle: "+l+"\nAuthor: "+o+"\nYear: "+s+"\nType: "+c+"\nDocId: "+a+"\nIdentifier: "+d+"\nUser_agent: "+p+"\nUserIP: "+n+"\nRange EPFL: "+r.is_epfl_IP+"\n****";r.feedbackLink="mailto:edoc@epfl.ch?subject="+encodeURIComponent(f)+"&body="+encodeURIComponent(m)+"&Content-Type=text/html"}}],template:'<div class="bar alert-bar" ng-if="ctrl.no_report_link==false && ctrl.is_epfl_IP==false">\n <div ng-bind-html="ctrl.get_txt()"></div><md-icon ng-if="::($ctrl.iconDefinition &amp;&amp; !$ctrl.isCustom &amp;&amp; !$ctrl.isEmailMode())" md-svg-icon="primo-ui:open-in-new" role="presentation" class="md-primoExplore-theme"></md-icon\n <div class="feedbacklink"> <a href="{{ ::ctrl.feedbackLink }}"><md-icon md-svg-icon="primo-ui:envelope-outline" role="presentation" class="md-primoExplore-theme"></md-icon> {{ \'feedbackLink\' | customTranslate }}</a></div>\n </div>\n <div class="feedbacklink" ng-if="ctrl.no_report_link==false && ctrl.is_epfl_IP==true"> <a href="{{ ::ctrl.feedbackLink }}"><md-icon md-svg-icon="primo-ui:envelope-outline" role="presentation" class="md-primoExplore-theme"></md-icon> {{ \'feedbackLink\' | customTranslate }}</a></div>'}},{}],10:[function(e,t,r){"use strict";angular.module("fullviewModule",["angularLoad"]).component("prmAlmaViewitAfter",e("./almaviewit.component.js"))},{"./almaviewit.component.js":9}],11:[function(e,t,r){"use strict";t.exports={active:!0,txt:{fr:'<div class="info-symbol" style="text-align:left">\n <div><p>Le réseau NEBIS a pris fin le 7 décembre 2020 pour être remplacé par un nouveau réseau plus vaste : <a class="md-primoExplore-theme" href="https://slsp.ch/fr">swisscovery</a></p></div>\n </div>',en:'<div class="info-symbol" style="text-align:left">\n <div><p>The NEBIS network ended on December 7, 2020. It has been replaced by <a class="md-primoExplore-theme" href="https://slsp.ch/it">swisscovery</a>: a new and wider network.</p></div>\n </div>',de:'<div class="info-symbol" style="text-align:left">\n <div><p>Das NEBIS-Netzwerk wurde am 07.12.2020 abgeschaltet und durch ein neues, grösseres Netzwerk ersetzt: <a class="md-primoExplore-theme" href="https://slsp.ch/de">swisscovery</a></p></div>\n </div>',it:'<div class="info-symbol" style="text-align:left">\n <div><p>La rete NEBIS è stata sciolta il 7 dicembre 2020 per essere sostituita da una rete piú ampia di biblioteche: <a class="md-primoExplore-theme" href="https://slsp.ch/it">swisscovery</a></p></div>\n </div>'},begin:"2020-01-04T00:00:00Z",end:"2021-03-31T12:00:00Z"}},{}],12:[function(e,t,r){"use strict";var n;(n=angular.module("homepageModule",["angularLoad"])).component("prmSearchBarAfter",e("./searchbar.component.js")),n.component("prmMainMenuAfter",e("./mainmenu.component.js"))},{"./mainmenu.component.js":13,"./searchbar.component.js":14}],13:[function(e,t,r){"use strict";t.exports={bindings:{parentCtrl:"<"},controllerAs:"ctrl",controller:["$location","$translate","$element",function(e,t,r){var n=this;this.$doCheck=function(){if("complete"===document.readyState){try{var e=document.querySelector("[translate='mainmenu.label.db']").parentElement}catch(e){n.modified=!1}e&&(e.removeAttribute("target"),e.setAttribute("aria-label","Databases"),n.modified=!0)}}}]}},{}],14:[function(n,e,t){"use strict";e.exports={bindings:{parentCtrl:"<"},template:'<div class="epfl-alert-message" ng-if="ctrl.active" ng-bind-html="ctrl.get_txt() "></div>',controllerAs:"ctrl",controller:["$translate",function(t){var r=this;if(r.alert=n("./alert.js"),!(r.active=!1)===r.alert.active){var e=Date.now();new Date(r.alert.begin)<e&&e<new Date(r.alert.end)&&(r.active=!0)}r.get_txt=function(){var e=["en","fr","it","de"].includes(t.use())?t.use():"en";return r.active?r.alert.txt[e]:""},r.parentCtrl.showTabsAndScopes=!0}]}},{"./alert.js":11}],15:[function(e,t,r){"use strict";e("./slsp/epfl_custom_slsp.js"),e("./homepage/index.js"),e("./filters/custom_translate.filter.js"),e("./filters/trust_html.filter.js"),e("./account/index.js"),e("./fullview/index.js"),e("./briefview/index.js"),e("./databases/index.js"),angular.module("viewCustom",["angularLoad","centralCustom","homepageModule","customTranslateFilter","trustHtmlFilter","accountModule","fullviewModule","briefviewModule","databasesModule"])},{"./account/index.js":2,"./briefview/index.js":4,"./databases/index.js":5,"./filters/custom_translate.filter.js":7,"./filters/trust_html.filter.js":8,"./fullview/index.js":10,"./homepage/index.js":12,"./slsp/epfl_custom_slsp.js":16}],16:[function(e,t,r){"use strict";var n;(n=angular.module("centralCustom",["angularLoad"])).controller("CourierInfoController",["$filter","$element",function(l,e,t,r,n){var s=this;this.form=e[0].parentElement,this.$doCheck=function(){var e=!1,t=2;if(void 0===this.form.children[0].children[1]||void 0===this.form.children[0].children[1].children[0]&&"costWarningPEB"!=s.typeFeeAlert()?void 0!==this.form.children[0].children[0]&&void 0!==this.form.children[0].children[0].children[0]&&(e=this.form.children[0].children[0].children[0],t=3):(e=this.form.children[0].children[1].children[0],"costWarningPEB"==s.typeFeeAlert()&&(t=3)),e&&e.children.length==t&&1<e.children.length||s.hasOwnProperty("currentTypeFeeAlert")&&s.currentTypeFeeAlert!=s.typeFeeAlert()){s.currentTypeFeeAlert=s.typeFeeAlert();var r='<div class="courier-info bar alert-bar"><p>'+s.getFeeAlert()+"</p>";if("costWarningScan"==s.typeFeeAlert()){var n=l("customTranslate")("illButton");if(s.get_peb_button())var i="javascript:(function() {\n for (var elem of document.getElementsByTagName('span')) {\n if (elem.getAttribute('translate') === 'AlmaResourceSharing' &&\n elem.parentNode.className.indexOf('greenbutton') === -1)\n {\n elem.click();\n break;\n }\n };})()";else i="javascript:(function() {window.location.href = window.location.origin + '/discovery/blankIll?vid="+s.parentCtrl.vid+"'})()";r+='<p><span class="button-confirm md-button md-primoExplore-theme md-ink-ripple" onclick="'+i+'" ">'+n+"</span></p>"}r+='<p><a href="'+this.parentCtrl.$translate.instant("customize.fullview.feesUrl")+'" target="_blank">'+this.parentCtrl.$translate.instant("customize.fullview.feesLinkText")+"</a></p></div>";var a=angular.element(r)[0];e.children.length==t?e.insertBefore(a,e.children[t-1]):e.children[e.children.length-2].replaceWith(a)}},Object.defineProperty(s.parentCtrl,"form",{configurable:!0,get:function(){var e=this.getFilteredForm(["label","multiLabel"],!1);if(!s.hasOwnProperty("pickupLocationsListOrdered"))for(var t=0;t<e.length;t++)if("pickupInstitution"==e[t].key){e[t].options.sort(function(e,t){var r=["41SLSP_EPF","41SLSP_EPFL"];return(e=r.indexOf(e.value))==(t=r.indexOf(t.value))?0:e<t?1:-1}),s.pickupLocationsListOrdered=!0}return e}}),s.isEPFL=function(){return!!(s.parentCtrl.requestService&&0<s.parentCtrl.requestService._service["link-to-service"].indexOf("institution=41SLSP_EPF"))},s.linkBase="https://slsp.ch/fees",s.typeFeeAlert=function(){return["almaRequest.header","almaRequestOther.header","almaItemRequest.header"].includes(s.parentCtrl.requestHeader)?"costWarningNetworkLoan":["almaDigitization.header","almaDigitizationOther.header","almaItemDigitization.header"].includes(s.parentCtrl.requestHeader)?s.isEPFL()?"costWarningScanEPFL":"costWarningScan":"almaResourceSharing.header"===s.parentCtrl.requestHeader?"costWarningPEB":"costWarningGeneral"},s.getFeeAlert=function(){return l("customTranslate")(s.typeFeeAlert())},s.get_peb_button=function(){for(var e=document.getElementsByTagName("span"),t=0,r=e.length;t<r;t++)if("AlmaResourceSharing"===e[t].getAttribute("translate")&&-1===e[t].parentNode.className.indexOf("greenbutton"))return e[t]},s.click_peb=function(){var e=s.get_peb_button();e?e.click():window.location.href=window.location.origin+"/discovery/blankIll?vid="+s.parentCtrl.vid}}]),n.component("prmRequestAfter",{bindings:{parentCtrl:"<"},controller:"CourierInfoController"}),n.controller("LibInfoController",[function(){var e=this;e.biblinkText="Library",e.biblinkBase="https://slsp.ch/libraries",e.getLibraryUrl=function(){return e.parentCtrl.loc&&"E02"===e.parentCtrl.loc.location.libraryCode?"https://go.epfl.ch/library":e.biblinkBase},e.view=e.parentCtrl.configurationUtil.vid.replace(":","-"),e.getLibrary=function(){return e.parentCtrl.currLoc?e.parentCtrl.currLoc.location.librarycodeTranslation:""},console.log(e)}]),n.component("prmLocationItemsAfter",{bindings:{parentCtrl:"<"},controller:"LibInfoController",controllerAs:"ctrl",template:'<div layout="row" class="LibInfo" layout-align="start center"><span class="md-subhead"><a ng-href="{{ ctrl.getLibraryUrl() }}" target="_blank"><img width="20px" ng-src="/discovery/custom/{{ ctrl.view }}/img/information.png" />{{ ctrl.getLibrary() }}</a></span></div>'}),n.service("userService",["jwtHelper",function(r){this.isGuest=function(){var e=sessionStorage.getItem("primoExploreJwt");if(!e)return!0;var t=r.decodeToken(e);return!("GUEST"!==t.userGroup?t.userName:"")},this.getIP=function(){var e=sessionStorage.getItem("primoExploreJwt");if(e)return r.decodeToken(e).userIp}}]),n.controller("IllBoxController",["$scope","userService",function(e,t){return e.usrNme=t.isGuest(),1!=e.usrNme?angular.element(document.querySelector("primo-explore")).removeClass("logged-out"):angular.element(document.querySelector("primo-explore")).addClass("logged-out")}]),n.component("prmUserAreaExpandableAfter",{bindings:{parentCtrl:"<"},controller:"IllBoxController",template:""}),n.component("prmTopbarAfter",{bindings:{parentCtrl:"<"},template:"<div class=\"main-title\"><h1><a href=\"{{ starturl }}\">{{ 'mainTitle' | customTranslate }}</a></h1><h2>{{ 'subTitle' | customTranslate }}</h2></div>"}),n.controller("AlertMsgController",["$scope",function(e){var r=this;r.getAlert=function(){var e=r.parentCtrl.almaHowToGetitService.reqAlert._htmlMsg,t=angular.element(document.querySelector("primo-explore"));return 0<e.length?t.addClass("alert"):t.removeClass("alert")}}]),n.component("almaHowovpAfter",{bindings:{parentCtrl:"<"},controller:"AlertMsgController",template:'<div style="display:none">{{$ctrl.getAlert()}}</div>'})},{}]},{},[15]);
-//# sourceMappingURL=custom.js.map
diff --git a/primo-explore/custom/41SLSP_EPF-test/js/custom.js.map b/primo-explore/custom/41SLSP_EPF-test/js/custom.js.map
deleted file mode 100644
index 50b4323..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/js/custom.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"sources":["node_modules/browser-pack/_prelude.js","primo-explore/custom/41SLSP_EPF-test/js/account/accountlinks.component.js","primo-explore/custom/41SLSP_EPF-test/js/account/index.js","primo-explore/custom/41SLSP_EPF-test/js/briefview/availabilityline.component.js","primo-explore/custom/41SLSP_EPF-test/js/briefview/index.js","primo-explore/custom/41SLSP_EPF-test/js/databases/index.js","primo-explore/custom/41SLSP_EPF-test/js/databases/treenav.component.js","primo-explore/custom/41SLSP_EPF-test/js/filters/custom_translate.filter.js","primo-explore/custom/41SLSP_EPF-test/js/filters/trust_html.filter.js","primo-explore/custom/41SLSP_EPF-test/js/fullview/almaviewit.component.js","primo-explore/custom/41SLSP_EPF-test/js/fullview/index.js","primo-explore/custom/41SLSP_EPF-test/js/homepage/alert.js","primo-explore/custom/41SLSP_EPF-test/js/homepage/index.js","primo-explore/custom/41SLSP_EPF-test/js/homepage/mainmenu.component.js","primo-explore/custom/41SLSP_EPF-test/js/homepage/searchbar.component.js","primo-explore/custom/41SLSP_EPF-test/js/main.js","primo-explore/custom/41SLSP_EPF-test/js/slsp/epfl_custom_slsp.js"],"names":["r","e","n","t","o","i","f","c","require","u","a","Error","code","p","exports","call","length","1","module","bindings","parentCtrl","controllerAs","controller","vm","this","console","log","view","accountLinksService","vid","replace","template","angular","component","$filter","$http","userService","parse_doi","txt","m","match","is_epfl_IP","userIP","getIP","found","parseInt","get_doi","hasOwnProperty","result","pnx","addata","doi","control","recordtype","display","_iteratorNormalCompletion","_didIteratorError","_iteratorError","undefined","_step","_iterator","identifier","Symbol","iterator","next","done","value","err","return","check_doi","set_url_pdf","url","method","then","response","status","pdf_link","data","fullTextFile","filter","$translate","trad","costWarningScan","fr","en","de","it","costWarningScanEPFL","costWarningNetworkLoan","costWarningPEB","mainTitle","subTitle","switchEduID","illButton","feedbackLink","vpnMSG","feedbackLinkMSG","pdfAccess","includes","use","$sce","trustAsHtml","get_txt","no_report_link","item","openaccess","oa","mmsId","recordid","title","creationdate","creator","join","type","ident","indexOf","substring","userAgent","navigator","subject","body","encodeURIComponent","active","begin","end","homepage_module","$location","$element","$doCheck","document","readyState","elem","querySelector","parentElement","modified","removeAttribute","setAttribute","alert","d_now","Date","now","lang","showTabsAndScopes","app","$compile","$scope","$rootScope","form","formLength","children","typeFeeAlert","currentTypeFeeAlert","htmlwarning","getFeeAlert","get_peb_button","fn","instant","htmlcompiled","element","insertBefore","replaceWith","Object","defineProperty","configurable","get","getFilteredForm","key","options","sort","b","onTopInstitutions","isEPFL","requestService","_service","linkBase","requestHeader","allElements","getElementsByTagName","getAttribute","parentNode","className","click_peb","button","click","window","location","href","origin","biblinkText","biblinkBase","getLibraryUrl","loc","libraryCode","configurationUtil","getLibrary","currLoc","librarycodeTranslation","service","jwtHelper","isGuest","jwt","sessionStorage","getItem","decodedToken","decodeToken","userGroup","userName","userIp","usrNme","removeClass","addClass","getAlert","ga","almaHowToGetitService","reqAlert","_htmlMsg","myEl2"],"mappings":"CAAA,SAAAA,EAAAC,EAAAC,EAAAC,GAAA,SAAAC,EAAAC,EAAAC,GAAA,IAAAJ,EAAAG,GAAA,CAAA,IAAAJ,EAAAI,GAAA,CAAA,IAAAE,EAAA,mBAAAC,SAAAA,QAAA,IAAAF,GAAAC,EAAA,OAAAA,EAAAF,GAAA,GAAA,GAAAI,EAAA,OAAAA,EAAAJ,GAAA,GAAA,IAAAK,EAAA,IAAAC,MAAA,uBAAAN,EAAA,KAAA,MAAAK,EAAAE,KAAA,mBAAAF,EAAA,IAAAG,EAAAX,EAAAG,GAAA,CAAAS,QAAA,IAAAb,EAAAI,GAAA,GAAAU,KAAAF,EAAAC,QAAA,SAAAd,GAAA,OAAAI,EAAAH,EAAAI,GAAA,GAAAL,IAAAA,IAAAa,EAAAA,EAAAC,QAAAd,EAAAC,EAAAC,EAAAC,GAAA,OAAAD,EAAAG,GAAAS,QAAA,IAAA,IAAAL,EAAA,mBAAAD,SAAAA,QAAAH,EAAA,EAAAA,EAAAF,EAAAa,OAAAX,IAAAD,EAAAD,EAAAE,IAAA,OAAAD,EAAA,CAAA,CAAAa,EAAA,CAAA,SAAAT,EAAAU,EAAAJ,GCAA,aAQAI,EAAOJ,QAAU,CACbK,SAAU,CAACC,WAAY,KACvBC,aAAc,OACdC,WAAY,CAAC,WACT,IAAIC,EAAKC,KACTC,QAAQC,IAAIH,GACZA,EAAGI,KAAOJ,EAAGH,WAAWQ,oBAAoBC,IAAIC,QAAQ,IAAK,OAGjEC,SAAA,kSChBqBC,QAAQd,OAAO,gBAAiB,CAAC,gBACvCe,UAAU,uBAAwBzB,EAAQ,oGCF7DU,EAAOJ,QAAU,CACbK,SAAU,CAACC,WAAY,KACvBC,aAAc,OACdC,WAAY,CAAC,UAAW,QAAS,cAAe,SAASY,EAASC,EAAOC,GACrE,IAAIb,EAAKC,KACT,SAASa,EAAUC,GACf,IACIC,EAAID,EAAIE,MADH,mCAET,GAAID,EACA,OAAOA,EAAE,GAIjBhB,EAAGkB,YAAa,EAChB,IAAIC,EAASN,EAAYO,QAGzB,GAAID,EAAQ,CACR,IACME,EAAQF,EAAOF,MADP,8BAEVI,IAAsB,KAAZA,EAAM,IAAkC,KAApBC,SAASD,EAAM,OAC7CrB,EAAGkB,YAAa,GAIxBlB,EAAGuB,QAAU,WACT,GAAIvB,EAAGH,WAAW2B,eAAe,WAAaxB,EAAGH,WAAW4B,OAAOD,eAAe,OAAO,CACrF,IAAIE,EAAM1B,EAAGH,WAAW4B,OAAOC,IAG/B,GAAI,WAAYA,GAAO,QAASA,EAAIC,QAAUb,EAAUY,EAAIC,OAAOC,IAAI,KAAmC,YAA5BF,EAAIG,QAAQC,WAAW,GACjG,OAAOhB,EAAUY,EAAIC,OAAOC,IAAI,IAIpC,GAAI,YAAaF,GAAO,eAAgBA,EAAIK,QAAS,CAAA,IAAAC,GAAA,EAAAC,GAAA,EAAAC,OAAAC,EAAA,IACjD,IAAA,IAAAC,EAAAC,EAAyBX,EAAIK,QAAQO,WAArCC,OAAAC,cAAAR,GAAAI,EAAAC,EAAAI,QAAAC,MAAAV,GAAA,EAAgD,CAAA,IAArCM,EAAqCF,EAAAO,MAC5C,GAAI7B,EAAUwB,GACV,OAAOxB,EAAUwB,IAHwB,MAAAM,GAAAX,GAAA,EAAAC,EAAAU,EAAA,QAAA,KAAAZ,GAAAK,EAAAQ,QAAAR,EAAAQ,SAAA,QAAA,GAAAZ,EAAA,MAAAC,OAU7DlC,EAAG8C,UAAY,WAYX,OAXK9C,EAAGwB,eAAe,QACfxB,EAAGH,WAAW2B,eAAe,WAAaxB,EAAGH,WAAW4B,OAAOD,eAAe,SAC1ExB,EAAGuB,WACHvB,EAAG4B,IAAM5B,EAAGuB,UACZvB,EAAG+C,eAGH/C,EAAG4B,IAAM,QAIjB5B,EAAGwB,eAAe,aAK1BxB,EAAG+C,YAAc,WACb,IAAIC,EAAA,yEAA+EhD,EAAG4B,IAAlF,qDACJhB,EAAM,CACFqC,OAAQ,MACRD,IAAKA,IACNE,KAAK,SAAyBC,GAE7B,GAAwB,MAApBA,EAASC,OAAgB,CACzB,IACI,IAAIC,EAAWF,EAASG,KAAKA,KAAKC,aACpC,MAAM7E,GACA2E,EAAW,GAEG,EAAlBA,EAAS5D,SACTO,EAAGqD,SAAWA,KAIvB,SAASF,GACRnD,EAAG4B,IAAM,UAMrBpB,SAAA,kTCtFuBC,QAAQd,OAAO,kBAAmB,CAAC,gBACzCe,UAA4C,uCAAwCzB,EAAQ,4GCDvFwB,QAAQd,OAAO,kBAAmB,CAAC,gBACzCe,UAAU,kBAAmBzB,EAAQ,6ECFzD,aAMAU,EAAOJ,QAAU,CACbK,SAAU,CAACC,WAAY,KACvBC,aAAc,OACdC,WAAY,CAAC,UAAW,SAASY,+BCTrC,aAoCkCF,QAAQd,OAAO,wBAAyB,IACjE6D,OAAO,kBAAmB,CAAC,aAAc,SAASC,GACnD,OAAO,SAAS1C,GACZ,IAAI2C,EAAO,CAEPC,gBAAgB,CACZC,GAAI,6MACJC,GAAI,mLACJC,GAAI,yMACJC,GAAI,4MAERC,oBAAoB,CAChBJ,GAAI,wEACJC,GAAI,qDACJC,GAAI,kEACJC,GAAI,sEAERE,uBAAuB,CACnBL,GAAI,wEACJC,GAAI,2DACJC,GAAI,gEACJC,GAAI,wEAERG,eAAe,CACXN,GAAI,0RACJC,GAAI,qOACJC,GAAI,yPACJC,GAAI,kQAERI,UAAU,CACNP,GAAI,kBACJC,GAAI,uBACJC,GAAI,sBACJC,GAAI,kBAERK,SAAS,CACLR,GAAI,wEACJC,GAAI,6DACJC,GAAI,2DACJC,GAAI,oEAERM,YAAY,CACRT,GAAI,6CACJC,GAAI,+BACJC,GAAI,yCACJC,GAAI,sCAERO,UAAU,CACNV,GAAI,iCACJC,GAAI,2BACJC,GAAI,YACJC,GAAI,+BAERQ,aAAa,CACTX,GAAI,+BACJC,GAAI,2BACJC,GAAI,yBACJC,GAAI,oCAERS,OAAO,CACHZ,GAAI,uRACJC,GAAI,iPACJC,GAAI,oPACJC,GAAI,uQAQRU,gBAAgB,CACZb,GAAI,wIACJC,GAAI,iHACJC,GAAI,iHACJC,GAAI,kHAERW,UAAU,CACNd,GAAI,sBACJC,GAAI,2BACJC,GAAI,2BACJC,GAAI,6BAGZ,MAAI,CAAC,KAAM,KAAM,KAAM,MAAMY,SAASlB,EAAWmB,OACtClB,EAAK3C,GAAK0C,EAAWmB,OAErBlB,EAAK3C,GAAK6C,+BC3HjC,aAYAnD,QAAQd,OAAO,kBAAmB,IAC7B6D,OAAO,YAAa,CAAC,OAAQ,SAASqB,GACvC,OAAO,SAAS9D,GACZ,OAAO8D,EAAKC,YAAY/D,+BCfhC,aAQApB,EAAOJ,QAAU,CACbK,SAAU,CAACC,WAAY,KACvBC,aAAc,OACdC,WAAY,CAAC,UAAW,cAAe,SAASY,EAASE,GACrD,IAAIb,EAAKC,KAkBT,GAhBAD,EAAG+E,QAAU,WACT,OAAOpE,EAAQ,kBAARA,CAA2B,WAGtCX,EAAGuE,aAAe,GAClBvE,EAAGkB,YAAa,EAChBlB,EAAGgF,gBAAiB,EAGhBhF,EAAGH,WAAWoF,KAAKvD,IAAIC,OAAOuD,YAA8D,SAAhDlF,EAAGH,WAAWoF,KAAKvD,IAAIC,OAAOuD,WAAW,KACrFlF,EAAGgF,gBAAiB,GAGpBhF,EAAGH,WAAWoF,KAAKvD,IAAIC,OAAOwD,IAA8C,kBAAxCnF,EAAGH,WAAWoF,KAAKvD,IAAIC,OAAOwD,GAAG,KACrEnF,EAAGgF,gBAAiB,IAEnBhF,EAAGgF,eAAe,CAInB,IAAI7D,EAASN,EAAYO,QAGzB,GAAID,EAAQ,CACR,IACME,EAAQF,EAAOF,MADP,8BAEVI,IAAsB,KAAZA,EAAM,IAAkC,KAApBC,SAASD,EAAM,OAC7CrB,EAAGkB,YAAa,GAKxB,IAAIkE,EAAQpF,EAAGH,WAAWoF,KAAKvD,IAAIG,QAAQwD,SAAS,GAChDC,EAAQ,GACRtF,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQuD,OAAuD,EAA9CtF,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQuD,MAAM7F,SAC7E6F,EAAQtF,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQuD,MAAM,IAEjD,IAAIC,EAAe,GACfvF,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQwD,cAAqE,EAArDvF,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQwD,aAAa9F,SAC3F8F,EAAevF,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQwD,aAAa,IAE/D,IAAIC,EAAU,GACVxF,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQyD,SAA2D,EAAhDxF,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQyD,QAAQ/F,SACjF+F,EAAUxF,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQyD,QAAQC,KAAK,OAE1D,IAAIC,EAAO,GACP1F,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQ2D,MAAqD,EAA7C1F,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQ2D,KAAKjG,SAC3EiG,EAAO1F,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQ2D,KAAK,IAE/C,IAAIpD,EAAa,GACjB,GAAItC,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQO,YAAiE,EAAnDtC,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQO,WAAW7C,OAAY,CACnG,IAAIkG,EAAQ3F,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQO,WAAW,IACtB,EAA5BqD,EAAMC,QAAQ,aAEqB,EAA5BD,EAAMC,QAAQ,WADrBtD,EAAatC,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQO,WAAWmD,KAAK,MAAMlF,QAAQ,SAAU,IAAIA,QAAQ,OAAQ,KAGxE,EAAzBoF,EAAMC,QAAQ,QACrBtD,EAAa,SAAWqD,EAAME,UAAUF,EAAMC,QAAQ,OAAS,IAC/B,EAAzBD,EAAMC,QAAQ,UACrBtD,EAAa,SAAWqD,EAAME,UAAUF,EAAMC,QAAQ,OAAS,IAGvE,IAAIE,EAAYC,UAAUD,UAGtBE,EAAU,kBAAoBZ,EAAQ,OAASE,EAAQ,IAGvDW,EAAOtF,EAAQ,kBAARA,CAA2B,mBAAqB,oBAA2B2E,EAAQ,aAAeE,EAAU,WAAaD,EAAe,WAAaG,EAAO,YAAcN,EAAQ,iBAAmB9C,EAAa,iBAAmBwD,EAAY,aAAe3E,EAAS,iBAAmBnB,EAAGkB,WAAa,SAEvTlB,EAAGuE,aAAe,+BAAsC2B,mBAAmBF,GAAW,SAAWE,mBAAmBD,GAAQ,6BAIpIzF,SAAA,s7BCvFsBC,QAAQd,OAAO,iBAAkB,CAAC,gBACxCe,UAAU,qBAAsBzB,EAAQ,iGCF5DU,EAAOJ,QAAU,CAAC4G,QAAQ,EACzBpF,IACG,CAAC6C,GAAA,kRAGAC,GAAA,6QAGAC,GAAA,mRAGAC,GAAA,4RAGJqC,MAAM,uBACNC,IAAI,8DCfL,IACQC,GAAAA,EAAkB7F,QAAQd,OAAO,iBAAkB,CAAC,iBACxCe,UAAU,oBAAqBzB,EAAQ,6BACvDqH,EAAgB5F,UAAU,mBAAoBzB,EAAQ,+GCH1D,aAMAU,EAAOJ,QAAU,CACbK,SAAU,CAACC,WAAY,KACvBC,aAAc,OACdC,WAAY,CAAC,YAAa,aAAc,WAAY,SAASwG,EAAW9C,EAAY+C,GAChF,IAAIxG,EAAKC,KACTA,KAAKwG,SAAW,WACZ,GAA4B,aAAxBC,SAASC,WAA8C,CACvD,IAAI,IAAIC,EAAOF,SAASG,cAAc,mCAAmCC,cACzE,MAAMpI,GACFsB,EAAG+G,UAAW,EAEdH,IACAA,EAAKI,gBAAgB,UACrBJ,EAAKK,aAAa,aAAc,aAChCjH,EAAG+G,UAAW,iCCpBlC,aASApH,EAAOJ,QAAU,CACTK,SAAU,CAACC,WAAY,KACvBW,SAAU,4FACVV,aAAc,OACdC,WAAY,CAAC,aAAc,SAAS0D,GAEhC,IAAIzD,EAAKC,KAaT,GANAD,EAAGkH,MAAQjI,EAAQ,gBAGnBe,EAAGmG,QAAS,KAGRnG,EAAGkH,MAAMf,OAAgB,CAGzB,IAAIgB,EAAQC,KAAKC,MACZ,IAAID,KAAKpH,EAAGkH,MAAMd,OAASe,GAAWA,EAAQ,IAAIC,KAAKpH,EAAGkH,MAAMb,OAEjErG,EAAGmG,QAAS,GAKpBnG,EAAG+E,QAAU,WACT,IAAIuC,EAAO,CAAC,KAAM,KAAM,KAAM,MAAM3C,SAASlB,EAAWmB,OAASnB,EAAWmB,MAAM,KAClF,OAAO5E,EAAGmG,OAASnG,EAAGkH,MAAMnG,IAAIuG,GAAQ,IAQ5CtH,EAAGH,WAAW0H,mBAAoB,0DC3C9CtI,EAAA,8BACAA,EAAA,uBACAA,EAAA,wCACAA,EAAA,kCACAA,EAAA,sBACAA,EAAA,uBACAA,EAAA,wBACAA,EAAA,wBAEUwB,QAAQd,OAAO,aAAc,CAAC,cACA,gBACA,iBACA,wBACA,kBACA,gBACA,iBACA,kBACA,gSCvBxC,IAGQ6H,GAAAA,EAAM/G,QAAQd,OAAO,gBAAiB,CAAC,iBAgBvCI,WAAW,wBAAyB,CAAC,UAAW,WAAY,SAAUY,EAAS6F,EAAUiB,EAAUC,EAAQC,GAC3G,IAAI3H,EAAKC,KAGTA,KAAK2H,KAAOpB,EAAS,GAAGM,cAGxB7G,KAAKwG,SAAW,WACZ,IAAImB,GAAO,EACPC,EAAa,EAiBjB,QAf0C1F,IAAtClC,KAAK2H,KAAKE,SAAS,GAAGA,SAAS,SAAuE3F,IAAlDlC,KAAK2H,KAAKE,SAAS,GAAGA,SAAS,GAAGA,SAAS,IAAuC,kBAAnB9H,EAAG+H,oBAM3E5F,IAAtClC,KAAK2H,KAAKE,SAAS,GAAGA,SAAS,SAAsE3F,IAAlDlC,KAAK2H,KAAKE,SAAS,GAAGA,SAAS,GAAGA,SAAS,KACnGF,EAAO3H,KAAK2H,KAAKE,SAAS,GAAGA,SAAS,GAAGA,SAAS,GAClDD,EAAa,IAPbD,EAAO3H,KAAK2H,KAAKE,SAAS,GAAGA,SAAS,GAAGA,SAAS,GAC3B,kBAAnB9H,EAAG+H,iBACHF,EAAa,IAYjBD,GAAQA,EAAKE,SAASrI,QAAUoI,GAAqC,EAAvBD,EAAKE,SAASrI,QAAcO,EAAGwB,eAAe,wBAChGxB,EAAGgI,qBAAuBhI,EAAG+H,eAAgB,CAEzC/H,EAAGgI,oBAAsBhI,EAAG+H,eAC5B,IAAIE,EAAA,8CAA4DjI,EAAGkI,cAA/D,OACJ,GAAuB,mBAAnBlI,EAAG+H,eAAmC,CACtC,IAAIhH,EAAMJ,EAAQ,kBAARA,CAA2B,aACrC,GAAIX,EAAGmI,iBACH,IAAIC,EAAA,+dAUAA,EAAA,oGAAyGpI,EAAGH,WAAWS,IAAvH,QAIR2H,GAAA,2FAA0GG,EAA1G,OAAmHrH,EAAnH,cAGJkH,GAAA,eAA8BhI,KAAKJ,WAAW4D,WAAW4E,QAAQ,8BAAjE,qBAAmHpI,KAAKJ,WAAW4D,WAAW4E,QAAQ,mCAAtJ,iBACA,IAAIC,EAAe7H,QAAQ8H,QAAQN,GAAa,GAG5CL,EAAKE,SAASrI,QAAUoI,EAExBD,EAAKY,aAAaF,EAAcV,EAAKE,SAASD,EAAa,IAG3DD,EAAKE,SAASF,EAAKE,SAASrI,OAAS,GAAGgJ,YAAYH,KAShEI,OAAOC,eAAe3I,EAAGH,WAAY,OAAQ,CACzC+I,cAAc,EACdC,IAAK,WAEG,IAAIjB,EAAO3H,KAAK6I,gBAAgB,CAAC,QAAS,eAAe,GACzD,IAAK9I,EAAGwB,eAAe,8BACnB,IAAK,IAAI1C,EAAI,EAAGA,EAAI8I,EAAKnI,OAAQX,IAC7B,GAAmB,qBAAf8I,EAAK9I,GAAGiK,IAA2B,CAQnCnB,EAAK9I,GAAGkK,QAAQC,KAPhB,SAAkB9J,EAAG+J,GACjB,IAAIC,EAAoB,CAAC,aAAc,eAGvC,OAFAhK,EAAIgK,EAAkBvD,QAAQzG,EAAEwD,UAChCuG,EAAIC,EAAkBvD,QAAQsD,EAAEvG,QACZ,EACbxD,EAAI+J,EAAI,GAAK,IAGxBlJ,EAAA,4BAAmC,EAI/C,OAAO4H,KAMnB5H,EAAGoJ,OAAS,WACR,SAAOpJ,EAAGH,WAAWwJ,gBAA+G,EAA7FrJ,EAAGH,WAAWwJ,eAAeC,SAAS,mBAAmB1D,QAAQ,4BAG5G5F,EAAGuJ,SAAW,uBAGdvJ,EAAG+H,aAAe,WAEd,MAAI,CAAC,qBAAsB,0BAA2B,0BAA0BpD,SAAS3E,EAAGH,WAAW2J,eAC5F,yBACA,CAAC,0BACA,+BACA,+BACK7E,SAAS3E,EAAGH,WAAW2J,eAC7BxJ,EAAGoJ,SAAW,sBAAwB,kBACN,+BAAhCpJ,EAAGH,WAAW2J,cACd,iBAEA,sBAGfxJ,EAAGkI,YAAc,WAEb,OAAOvH,EAAQ,kBAARA,CAA2BX,EAAG+H,iBAIzC/H,EAAGmI,eAAiB,WAEhB,IADA,IAAIsB,EAAc/C,SAASgD,qBAAqB,QACvC5K,EAAI,EAAGH,EAAI8K,EAAYhK,OAAQX,EAAIH,EAAGG,IAC3C,GAAiD,wBAA7C2K,EAAY3K,GAAG6K,aAAa,eACoC,IAAhEF,EAAY3K,GAAG8K,WAAWC,UAAUjE,QAAQ,eAE5C,OAAO6D,EAAY3K,IAsB/BkB,EAAG8J,UAAY,WACX,IAAIC,EAAS/J,EAAGmI,iBACZ4B,EACCA,EAAOC,QAERC,OAAOC,SAASC,KAAOF,OAAOC,SAASE,OAAS,2BAA6BpK,EAAGH,WAAWS,QAWvGkH,EAAI9G,UAAU,kBAAmB,CAC7Bd,SAAU,CAAEC,WAAY,KACxBE,WAAY,0BA0BhByH,EAAIzH,WAAW,oBAAqB,CAAC,WACjC,IAAIC,EAAKC,KACTD,EAAGqK,YAAc,UACjBrK,EAAGsK,YAAc,4BAEjBtK,EAAGuK,cAAgB,WACf,OAAIvK,EAAGH,WAAW2K,KAAgD,QAAzCxK,EAAGH,WAAW2K,IAAIN,SAASO,YACzC,6BAEAzK,EAAGsK,aAGlBtK,EAAGI,KAAOJ,EAAGH,WAAW6K,kBAAkBpK,IAAIC,QAAQ,IAAK,KAC3DP,EAAG2K,WAAa,WAEZ,OAAO3K,EAAGH,WAAW+K,QAAU5K,EAAGH,WAAW+K,QAAQV,SAASW,uBAAyB,IAE3F3K,QAAQC,IAAIH,MAIhBwH,EAAI9G,UAAU,wBAAyB,CACnCd,SAAU,CAAEC,WAAY,KACxBE,WAAY,oBACZD,aAAc,OACdU,SAAA,+QAMLgH,EAAIsD,QAAQ,cAAe,CAAC,YAAa,SAAUC,GAC/C9K,KAAK+K,QAAU,WACX,IAAIC,EAAMC,eAAeC,QAAQ,mBACjC,IAAKF,EACD,OAAO,EAEX,IAAIG,EAAeL,EAAUM,YAAYJ,GAEzC,QAD0C,UAA3BG,EAAaE,UAAwBF,EAAaG,SAAW,KAUhFtL,KAAKmB,MAAQ,WACT,IAAI6J,EAAMC,eAAeC,QAAQ,mBACjC,GAAKF,EAGL,OAAOF,EAAUM,YAAYJ,GAAKO,WAU1ChE,EAAIzH,WAAW,mBAAoB,CAAC,SAAU,cAAe,SAAU2H,EAAQ7G,GAI3E,OAFA6G,EAAO+D,OAAS5K,EAAYmK,UAEP,GAAjBtD,EAAO+D,OAMIhL,QAAQ8H,QAAQ7B,SAASG,cAAc,kBACtC6E,YAAY,cANbjL,QAAQ8H,QAAQ7B,SAASG,cAAc,kBACtC8E,SAAS,iBAW7BnE,EAAI9G,UAAU,6BAA8B,CACxCd,SAAU,CAAEC,WAAY,KACxBE,WAAY,mBACZS,SAAU,KAGbgH,EAAI9G,UAAU,iBAAkB,CAC5Bd,SAAU,CAAEC,WAAY,KAExBW,SAAA,2JAMJgH,EAAIzH,WAAW,qBAAsB,CAAC,SAAU,SAAU2H,GACtD,IAAI1H,EAAKC,KACTD,EAAG4L,SAEH,WACI,IAAIC,EAAK7L,EAAGH,WAAWiM,sBAAsBC,SAASC,SAClDC,EAAQxL,QAAQ8H,QAAQ7B,SAASG,cAAc,kBAEnD,OAAgB,EAAZgF,EAAGpM,OACIwM,EAAMN,SAAS,SAKfM,EAAMP,YAAY,aAOrClE,EAAI9G,UAAU,kBAAmB,CAC7Bd,SAAU,CAAEC,WAAY,KACxBE,WAAY,qBACZS,SAAU","file":"custom.js","sourcesContent":["(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c=\"function\"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error(\"Cannot find module '\"+i+\"'\");throw a.code=\"MODULE_NOT_FOUND\",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u=\"function\"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()","\"use strict\";\r\n\r\n/*\r\n OBJECTIF: Ajouter le lien vers SWITCH edu-ID.\r\n REMARQUES: contient juste les liens vers SWITCH edu-ID et vers\r\n l'application de changement des code-barres.\r\n*/\r\n\r\nmodule.exports = {\r\n bindings: {parentCtrl: '<'},\r\n controllerAs: 'ctrl',\r\n controller: [function() {\r\n var vm = this;\r\n console.log(vm);\r\n vm.view = vm.parentCtrl.accountLinksService.vid.replace(':', '-');\r\n\r\n }],\r\n template: `<div ng-if=\"ctrl.parentCtrl.tabName=='personalsettings'\"><img width=\"20px\" ng-src=\"/discovery/custom/{{ ctrl.view }}/img/information.png\" /> {{ 'switchEduID' | customTranslate | trustHtml }} <a href=\\\"https://eduid.ch\\\">https://eduid.ch</a></div>`\r\n};\r\n","(function () {\r\n var account_module = angular.module('accountModule', ['angularLoad']);\r\n account_module.component('prmAccountLinksAfter', require('./accountlinks.component.js'));\r\n})()\r\n","module.exports = {\r\n bindings: {parentCtrl: '<'},\r\n controllerAs: 'ctrl',\r\n controller: ['$filter', '$http', 'userService', function($filter, $http, userService) {\r\n var vm = this\r\n function parse_doi(txt){\r\n var re = /10\\.\\d{4,9}\\/[-._;()/:A-Z0-9]+/i;\r\n var m = txt.match(re);\r\n if (m){\r\n return m[0]\r\n }\r\n\r\n }\r\n vm.is_epfl_IP = false;\r\n var userIP = userService.getIP();\r\n // console.log(userIP);\r\n // Vérification du range EPFL\r\n if (userIP) {\r\n const regex = /128\\.17([89])\\.(\\d{1,3})\\./;\r\n const found = userIP.match(regex);\r\n if (found && (found[1] == '8' || parseInt(found[2])>=128)) {\r\n vm.is_epfl_IP = true;\r\n }\r\n }\r\n\r\n vm.get_doi = function(){\r\n if (vm.parentCtrl.hasOwnProperty('result') && vm.parentCtrl.result.hasOwnProperty('pnx')){\r\n var pnx = vm.parentCtrl.result.pnx;\r\n\r\n // Recherche dans la section addata\r\n if ('addata' in pnx && 'doi' in pnx.addata && parse_doi(pnx.addata.doi[0]) && pnx.control.recordtype[0]==='article') {\r\n return parse_doi(pnx.addata.doi[0])\r\n }\r\n\r\n // Recherche dans la section display\r\n if ('display' in pnx && 'identifier' in pnx.display) {\r\n for (const identifier of pnx.display.identifier){\r\n if (parse_doi(identifier)){\r\n return parse_doi(identifier)\r\n }\r\n }\r\n }\r\n }\r\n }\r\n\r\n vm.check_doi = function(){\r\n if (!vm.hasOwnProperty('doi')){\r\n if (vm.parentCtrl.hasOwnProperty('result') && vm.parentCtrl.result.hasOwnProperty('pnx')){\r\n if (vm.get_doi()){\r\n vm.doi = vm.get_doi();\r\n vm.set_url_pdf()\r\n\r\n } else {\r\n vm.doi = null;\r\n }\r\n }\r\n }\r\n if (vm.hasOwnProperty('pdf_link')) {\r\n return true\r\n }\r\n return false\r\n }\r\n vm.set_url_pdf = function(){\r\n var url = `https://public-api.thirdiron.com/public/v1/libraries/183/articles/doi/${vm.doi}?access_token=adc54dee-c6a6-4b99-a917-2ed400f1f2d3`;\r\n $http({\r\n method: 'GET',\r\n url: url\r\n }).then(function successCallback(response) {\r\n\r\n if (response.status === 200) {\r\n try{\r\n var pdf_link = response.data.data.fullTextFile;\r\n } catch(e){\r\n var pdf_link = '';\r\n }\r\n if (pdf_link.length > 0) {\r\n vm.pdf_link = pdf_link;\r\n }\r\n }\r\n // console.log(vm.pdf_link);\r\n }, function(response) {\r\n vm.doi = null;\r\n });\r\n\r\n }\r\n // console.log(vm);\r\n }],\r\n template: `<div><div class=\"pdf_btn\" ng-if=\"ctrl.check_doi() &amp;&amp; ctrl.is_epfl_IP\">\r\n <a href=\"{{ctrl.pdf_link}}\" target=\"_blank\"><prm-icon icon-type=\"svg\" svg-icon-set=\"primo-ui\" icon-definition=\"pdf\"></prm-icon> {{ 'pdfAccess' | customTranslate }}</a></div></div>`\r\n}\r\n","(function () {\r\n var briefview_module = angular.module('briefviewModule', ['angularLoad']);\r\n briefview_module.component(/*'prmBriefResultContainerAfter'*/'prmSearchResultAvailabilityLineAfter', require('./availabilityline.component.js'));\r\n})()\r\n","(function () {\r\n var homepage_module = angular.module('databasesModule', ['angularLoad']);\r\n homepage_module.component('prmTreeNavAfter', require('./treenav.component.js'));\r\n})()\r\n","\"use strict\";\r\n\r\n/*\r\n OBJECTIF: Ne fait rien pour le moment\r\n*/\r\n\r\nmodule.exports = {\r\n bindings: {parentCtrl: '<'},\r\n controllerAs: 'ctrl',\r\n controller: ['$filter', function($filter) {\r\n var vm = this;\r\n // console.log(vm);\r\n }]\r\n}\r\n","\"use strict\";\r\n\r\n/***********************/\r\n/* FILTRE : traduction */\r\n/***********************/\r\n\r\n/*\r\n OBJECTIF: traduire des éléments, tant des urls que du texte.\r\n UTILISATION:\r\n - Dans le template:\r\n 1. comme un filtre: {{ clé | customTranslate }}\r\n - Dans un controlleur:\r\n Même si les filtres sont d'abord prévus pour être utilisés dans le\r\n template, on peut les appeler dans les controlleurs.\r\n 1. Ajouter le service dans l'en-tête du controlleur\r\n 2. Appeler le service avec la fonction $filter\r\n EXEMPLE:\r\n controller:function($http, $filter){...\r\n var traduction = $filter('customTranslate')('cleTrad');\r\n ...}\r\n CONFIGURATION:\r\n L'ajout de traduction se fait à travers des objets. La clé indique le\r\n terme à utiliser dans le template ou le controlleur pour ensuite\r\n renvoyer la traduction. Les noms associés n'appaaraissent donc pas tels\r\n quels. La structure de chaque élément traduit disponible est comme suit:\r\n clé1:{\r\n fr: traductionFrançaise\r\n en: traductionAnglaise\r\n },\r\n clé2:{\r\n fr: traductionFrançaise\r\n en: traductionAnglaise\r\n }\r\n*/\r\n(function () {\r\n\r\n var custom_translate_module = angular.module('customTranslateFilter', [])\r\n .filter('customTranslate', ['$translate', function($translate){\r\n return function(txt){\r\n var trad = {\r\n\r\n costWarningScan:{\r\n fr: \"<b><span class=\\\"bigfont\\\" style=\\\"font-size:20px\\\">Service payant:</span></b><b> les collaborateurs et les étudiants de l’EPFL peuvent bénéficier de ce service gratuitement, en utilisant le formulaire:</b>\",\r\n en: \"<b><span class=\\\"bigfont\\\" style=\\\"font-size:20px\\\">Fee-based service:</span></b><b> EPFL employees and students can benefit from this service free of charge by using the form:</b>\",\r\n de: \"<b><span class=\\\"bigfont\\\" style=\\\"font-size:20px\\\">Kostenpflichtiger Service:</span></b><b> Mitarbeitern und Studenten der EPFL steht dieser Dienst über das Fernleihe-Formular gratis zur Verfügung.</b>\",\r\n it: \"<b><span class=\\\"bigfont\\\" style=\\\"font-size:20px\\\">Servizio a pagamento:</span></b><b> I dipendenti e gli studenti dell'EPFL possono usufruire gratuitamente di questo servizio utilizzando il modulo:</b>\"\r\n },\r\n costWarningScanEPFL:{\r\n fr: \"<b>Service gratuit pour les collaborateurs et les étudiants EPFL.</b>\",\r\n en: \"<b>Free of charge for EPFL staff and students.</b>\",\r\n de: \"<b>Service für Mitarbeiter und Studenten der EPFL kostenlos</b>\",\r\n it: \"<b>Servizio gratuito per i dipendenti e gli studenti dell’EPFL.<b>\"\r\n },\r\n costWarningNetworkLoan:{\r\n fr: \"<b>Service gratuit en cas de retrait à la Bibliothèque de l’EPFL.</b>\",\r\n en: \"<b>Free of charge if withdrawal at the EPFL Library.</b>\",\r\n de: \"<b>Service bei Abholung in der EPFL-Bibliothek kostenlos.</b>\",\r\n it: \"<b>Servizio gratuito in caso di ritiro alla Biblioteca dell’EPFL</b>\"\r\n },\r\n costWarningPEB:{\r\n fr: \"<b>Service gratuit pour les collaborateurs et les étudiants de l’EPFL.</b> Avant de passer une commande d’un document physique via le prêt entre bibliothèques, merci de vous assurer que ce document n'est pas disponible dans d’autres bibliothèques du réseau SLSP dans swisscovery.\",\r\n en: \"<b>Free of charge for EPFL staff and students.</b> Before placing an order for a physical document via the interlibrary loan, please make sure that this document is not available in other SLSP network libraries on swisscovery.\",\r\n de: \"<b>Kostenloser Service für Mitarbeiter und Studenten der EPFL.</b> Bevor Sie ein Medium über die Fernleihe bestellen, vergewissern Sie sich bitte zunächst in swisscovery, dass es nicht in einer anderen Bibliothek des SLSP-Netzwerks verfügbar ist.\",\r\n it: \"<b>Servizio gratuito per i dipendenti e gli studenti dell’EPFL.</b> Prima di ordinare un documento cartaceo tramite il prestito interbibliotecario, assicuratevi che questo documento non sia disponibile in altre biblioteche della rete SLSP in swisscovery.\"\r\n },\r\n mainTitle:{\r\n fr: \"Catalogue BEAST\",\r\n en: \"BEAST discovery tool\",\r\n de: \"BEAST Wissensportal\",\r\n it: \"Catalogo BEAST\"\r\n },\r\n subTitle:{\r\n fr: \"Le point d\\'accès à toutes les ressources de la Bibliothèque de l\\'EPFL\",\r\n en: \"The access portal to all the resources of the EPFL Library\",\r\n de: \"Der Zugangspunkt zu allen Ressourcen der EPFL Bibliothek\",\r\n it: \"Il punto d’accesso a tutte le risorse della Biblioteca dell’EPFL\"\r\n },\r\n switchEduID:{\r\n fr: \"Modifier vos informations personnelles sur\",\r\n en: \"Change your personal data on\",\r\n de: \"Ändern Sie Ihre persönlichen Daten auf\",\r\n it: \"Modifica i tuoi dati personali sul\"\r\n },\r\n illButton:{\r\n fr: \"Prêt entre bibliothèques (PEB)\",\r\n en: \"Inter Library Loan (ILL)\",\r\n de: \"Fernleihe\",\r\n it: \"Prestito interbibliotecario\"\r\n },\r\n feedbackLink:{\r\n fr: \"Signaler un problème d'accès\",\r\n en: \"Report an access problem\",\r\n de: \"Zugriffsproblem melden\",\r\n it: \"Segnalare un problema di accesso\"\r\n },\r\n vpnMSG:{\r\n fr: \"Les ressources électroniques sont accessibles depuis tous les postes de l’EPFL, et à distance via le <a target=\\\"_blank\\\" href=\\\"https://www.epfl.ch/campus/services/ressources-informatiques/network-services-reseau/acces-intranet-a-distance/clients-vpn-disponibles/\\\">VPN</a> EPFL.\",\r\n en: \"Electronic resources are accessible from all EPFL workstations, and remotely via the EPFL <a target=\\\"_blank\\\" href=\\\"https://www.epfl.ch/campus/services/en/it-services/network-services/remote-intranet-access/vpn-clients-available/\\\">VPN</a>.\",\r\n de: \"Elektronische Informationsressourcen sind an allen EPFL-Arbeitsplätzen und per EPFL <a target=\\\"_blank\\\" href=\\\"https://www.epfl.ch/campus/services/en/it-services/network-services/remote-intranet-access/vpn-clients-available/\\\">VPN</a> abrufbar.\",\r\n it: \"Le risorse elettroniche sono accessibili da tutte le postazioni di lavoro dell'EPFL e a distanza tramite <a target=\\\"_blank\\\" href=\\\"https://www.epfl.ch/campus/services/en/it-services/network-services/remote-intranet-access/vpn-clients-available/\\\">VPN</a> EPFL.\"\r\n },\r\n // vpnLink:{\r\n // fr: \"https://www.epfl.ch/campus/services/ressources-informatiques/network-services-reseau/acces-intranet-a-distance/clients-vpn-disponibles/\",\r\n // en: \"https://www.epfl.ch/campus/services/en/it-services/network-services/remote-intranet-access/vpn-clients-available/\",\r\n // de: \"https://www.epfl.ch/campus/services/en/it-services/network-services/remote-intranet-access/vpn-clients-available/\",\r\n // it: \"https://www.epfl.ch/campus/services/en/it-services/network-services/remote-intranet-access/vpn-clients-available/\"\r\n // },\r\n feedbackLinkMSG:{\r\n fr: \"Je rencontre un problème d’accès à la ressource électronique ci-dessous. Je vous remercie de m’informer lorsque l’accès sera rétabli.\",\r\n en: \"I have a problem accessing the electronic resource below. Please let me know when the access will be restored.\",\r\n de: \"I have a problem accessing the electronic resource below. Please let me know when the access will be restored.\",\r\n it: \"I have a problem accessing the electronic resource below. Please let me know when the access will be restored.\"\r\n },\r\n pdfAccess:{\r\n fr: \"Accès direct au pdf\",\r\n en: \"Direct access to the pdf\",\r\n de: \"Direct access to the pdf\",\r\n it: \"Direct access to the pdf\"\r\n }\r\n };\r\n if (['en', 'fr', 'it', 'de'].includes($translate.use())) {\r\n return trad[txt][$translate.use()]\r\n } else {\r\n return trad[txt].fr\r\n }\r\n };\r\n }]);\r\n\r\n}) ()\r\n","\"use strict\";\r\n\r\n/***********************/\r\n/* FILTRE : traduction */\r\n/***********************/\r\n\r\n/*\r\n OBJECTIF: Permettre des balises html dans les champs.\r\n UTILISATION: S'utilise dans une balise comme un filtre.\r\n EXEMPLE: {{ variable | trustHtml }}\r\n*/\r\n(function () {\r\nangular.module('trustHtmlFilter', [])\r\n .filter('trustHtml', ['$sce', function($sce){\r\n return function(txt){\r\n return $sce.trustAsHtml(txt);\r\n };\r\n}]);\r\n}) ()\r\n","\"use strict\";\r\n\r\n/*\r\n OBJECTIF: Ajouter un lien pour rapporter les problèmes d'accès aux\r\n ressources électroniques. Un message d'avertissement s'affiche quand la\r\n la personne n'est pas sur le réseau EPFL\r\n*/\r\n\r\nmodule.exports = {\r\n bindings: {parentCtrl: '<'},\r\n controllerAs: 'ctrl',\r\n controller: ['$filter', 'userService', function($filter, userService) {\r\n var vm = this;\r\n\r\n vm.get_txt = function() {\r\n return $filter('customTranslate')('vpnMSG');\r\n }\r\n\r\n vm.feedbackLink = '';\r\n vm.is_epfl_IP = false;\r\n vm.no_report_link = false;\r\n\r\n // not for open access\r\n if (vm.parentCtrl.item.pnx.addata.openaccess && vm.parentCtrl.item.pnx.addata.openaccess[0] === 'true') {\r\n vm.no_report_link = true;\r\n }\r\n // not for cdi open access\r\n if (vm.parentCtrl.item.pnx.addata.oa && vm.parentCtrl.item.pnx.addata.oa[0] === 'free_for_read') {\r\n vm.no_report_link = true;\r\n }\r\n if (!vm.no_report_link){\r\n\r\n /* Obtient l'adresse ip depuis un service se trouvant dans le\r\n module \\js\\slsp\\epfl_custom_slsp.js */\r\n var userIP = userService.getIP();\r\n // console.log(userIP);\r\n // Vérification du range EPFL\r\n if (userIP) {\r\n const regex = /128\\.17([89])\\.(\\d{1,3})\\./;\r\n const found = userIP.match(regex);\r\n if (found && (found[1] == '8' || parseInt(found[2])>=128)) {\r\n vm.is_epfl_IP = true;\r\n }\r\n }\r\n\r\n // Récupération des métadonnées de la ressource\r\n var mmsId = vm.parentCtrl.item.pnx.control.recordid[0];\r\n var title = '';\r\n if (vm.parentCtrl.item.pnx.display.title && vm.parentCtrl.item.pnx.display.title.length > 0) {\r\n title = vm.parentCtrl.item.pnx.display.title[0];\r\n }\r\n var creationdate = '';\r\n if (vm.parentCtrl.item.pnx.display.creationdate && vm.parentCtrl.item.pnx.display.creationdate.length > 0) {\r\n creationdate = vm.parentCtrl.item.pnx.display.creationdate[0];\r\n }\r\n var creator = '';\r\n if (vm.parentCtrl.item.pnx.display.creator && vm.parentCtrl.item.pnx.display.creator.length > 0) {\r\n creator = vm.parentCtrl.item.pnx.display.creator.join(', ');\r\n }\r\n var type = '';\r\n if (vm.parentCtrl.item.pnx.display.type && vm.parentCtrl.item.pnx.display.type.length > 0) {\r\n type = vm.parentCtrl.item.pnx.display.type[0];\r\n }\r\n var identifier = '';\r\n if (vm.parentCtrl.item.pnx.display.identifier && vm.parentCtrl.item.pnx.display.identifier.length > 0) {\r\n var ident = vm.parentCtrl.item.pnx.display.identifier[0];\r\n if (ident.indexOf('<b>ISBN') > -1) {\r\n identifier = vm.parentCtrl.item.pnx.display.identifier.join(', ').replace(/<\\/b>/g, '').replace(/<b>/g, '');\r\n } else if (ident.indexOf('<b>ISSN') > -1) {\r\n identifier = vm.parentCtrl.item.pnx.display.identifier.join(', ').replace(/<\\/b>/g, '').replace(/<b>/g, '');\r\n } else if (ident.indexOf('ISBN') > -1) {\r\n identifier = 'ISBN: ' + ident.substring(ident.indexOf('$$V') + 3);\r\n } else if (ident.indexOf('ISSN') > -1) {\r\n identifier = 'ISSN: ' + ident.substring(ident.indexOf('$$V') + 3);\r\n }\r\n }\r\n var userAgent = navigator.userAgent;\r\n\r\n // Création de l'objet du message\r\n var subject = 'Access problem ' + mmsId + ' - \"' + title + '\"';\r\n\r\n // Création du corps du message\r\n var body = $filter('customTranslate')('feedbackLinkMSG') + '\\n\\n' + '****\\nTitle: ' + title + '\\nAuthor: ' + creator + '\\nYear: ' + creationdate + '\\nType: ' + type + '\\nDocId: ' + mmsId + '\\nIdentifier: ' + identifier + '\\nUser_agent: ' + userAgent + '\\nUserIP: ' + userIP + '\\nRange EPFL: ' + vm.is_epfl_IP + '\\n****';\r\n\r\n vm.feedbackLink = 'mailto:edoc@epfl.ch' + '?subject=' + encodeURIComponent(subject) + '&body=' + encodeURIComponent(body) + '&Content-Type=text/html';\r\n }\r\n\r\n }],\r\n template: `<div class=\"bar alert-bar\" ng-if=\"ctrl.no_report_link==false && ctrl.is_epfl_IP==false\">\r\n <div ng-bind-html=\"ctrl.get_txt()\"></div><md-icon ng-if=\"::($ctrl.iconDefinition &amp;&amp; !$ctrl.isCustom &amp;&amp; !$ctrl.isEmailMode())\" md-svg-icon=\"primo-ui:open-in-new\" role=\"presentation\" class=\"md-primoExplore-theme\"></md-icon\r\n <div class=\"feedbacklink\"> <a href=\"{{ ::ctrl.feedbackLink }}\"><md-icon md-svg-icon=\"primo-ui:envelope-outline\" role=\"presentation\" class=\"md-primoExplore-theme\"></md-icon> {{ 'feedbackLink' | customTranslate }}</a></div>\r\n </div>\r\n <div class=\"feedbacklink\" ng-if=\"ctrl.no_report_link==false && ctrl.is_epfl_IP==true\"> <a href=\"{{ ::ctrl.feedbackLink }}\"><md-icon md-svg-icon=\"primo-ui:envelope-outline\" role=\"presentation\" class=\"md-primoExplore-theme\"></md-icon> {{ 'feedbackLink' | customTranslate }}</a></div>`}\r\n","(function () {\r\n var fullview_module = angular.module('fullviewModule', ['angularLoad']);\r\n fullview_module.component('prmAlmaViewitAfter', require('./almaviewit.component.js'));\r\n})()\r\n","module.exports = {active: true,\r\n txt:\r\n {fr: `<div class=\"info-symbol\" style=\\\"text-align:left\\\">\r\n <div><p>Le réseau NEBIS a pris fin le 7 décembre 2020 pour être remplacé par un nouveau réseau plus vaste : <a class=\"md-primoExplore-theme\" href=\"https://slsp.ch/fr\">swisscovery</a></p></div>\r\n </div>`,\r\n en: `<div class=\"info-symbol\" style=\\\"text-align:left\\\">\r\n <div><p>The NEBIS network ended on December 7, 2020. It has been replaced by <a class=\"md-primoExplore-theme\" href=\"https://slsp.ch/it\">swisscovery</a>: a new and wider network.</p></div>\r\n </div>`,\r\n de: `<div class=\"info-symbol\" style=\\\"text-align:left\\\">\r\n <div><p>Das NEBIS-Netzwerk wurde am 07.12.2020 abgeschaltet und durch ein neues, grösseres Netzwerk ersetzt: <a class=\"md-primoExplore-theme\" href=\"https://slsp.ch/de\">swisscovery</a></p></div>\r\n </div>`,\r\n it: `<div class=\"info-symbol\" style=\\\"text-align:left\\\">\r\n <div><p>La rete NEBIS è stata sciolta il 7 dicembre 2020 per essere sostituita da una rete piú ampia di biblioteche: <a class=\"md-primoExplore-theme\" href=\"https://slsp.ch/it\">swisscovery</a></p></div>\r\n </div>`},\r\n begin:\"2020-01-04T00:00:00Z\",\r\n end:\"2021-03-31T12:00:00Z\"}\r\n","(function () {\r\n var homepage_module = angular.module('homepageModule', ['angularLoad']);\r\n homepage_module.component('prmSearchBarAfter', require('./searchbar.component.js'));\r\n homepage_module.component('prmMainMenuAfter', require('./mainmenu.component.js'));\r\n})()\r\n","\"use strict\";\r\n\r\n/*\r\n OBJECTIF: corriger le lien du menu principal vers les bases de données.\r\n*/\r\n\r\nmodule.exports = {\r\n bindings: {parentCtrl: '<'},\r\n controllerAs: 'ctrl',\r\n controller: ['$location', '$translate', '$element', function($location, $translate, $element) {\r\n var vm = this;\r\n this.$doCheck = function() {\r\n if (document.readyState === 'complete' /*&& !vm.modified*/){\r\n try{var elem = document.querySelector(\"[translate='mainmenu.label.db']\").parentElement;}\r\n catch(e){\r\n vm.modified = false;\r\n }\r\n if (elem){\r\n elem.removeAttribute('target');\r\n elem.setAttribute('aria-label', 'Databases');\r\n vm.modified = true;\r\n }\r\n }\r\n };\r\n // console.log(vm.url);\r\n }]\r\n};\r\n","\"use strict\";\r\n\r\n/*\r\n OBJECTIFS:\r\n - Toujours afficher l'onglet pour modifier le scope\r\n - Afficher une alerte si les dates correspondent\r\n UTILISATION:\r\n Pour paramétrer l'alerte, il faut modifier le fichier alert.json (dans ce dossier)\r\n*/\r\nmodule.exports = {\r\n bindings: {parentCtrl: '<'},\r\n template: '<div class=\"epfl-alert-message\" ng-if=\"ctrl.active\" ng-bind-html=\"ctrl.get_txt() \"></div>',\r\n controllerAs: 'ctrl',\r\n controller: ['$translate', function($translate){\r\n\r\n var vm = this;\r\n\r\n /********************/\r\n /* MESSAGE D'ALERTE */\r\n /********************/\r\n\r\n // récupère le fichier json avec les paramètres de l'alerte\r\n vm.alert = require(\"./alert.js\");\r\n\r\n // par défaut, l'alerte n'est pas considérée comme active\r\n vm.active = false;\r\n\r\n // Vérifie dans le fichier json si une alerte est prévue\r\n if (vm.alert.active === true){\r\n\r\n // Teste si les dates correspondent pour l'affichage de l'alerte\r\n var d_now = Date.now();\r\n if ((new Date(vm.alert.begin) < d_now) && (d_now < new Date(vm.alert.end))) {\r\n // déclenche l'affichage de l'alerte\r\n vm.active = true;\r\n }\r\n }\r\n\r\n // getteur qui retourne le texte en fonction de la langue\r\n vm.get_txt = function(){\r\n var lang = ['en', 'fr', 'it', 'de'].includes($translate.use()) ? $translate.use():'en';\r\n return vm.active ? vm.alert.txt[lang] : \"\";\r\n }\r\n\r\n /*******************/\r\n /* SCOPE PERMANENT */\r\n /*******************/\r\n\r\n // Rendre permanent l'affichage des onglets permettant de sélectionnet le scope\r\n vm.parentCtrl.showTabsAndScopes = true;\r\n\r\n // console.log(vm.alert);\r\n }\r\n ]};\r\n","/************************/\r\n/* List of used modules */\r\n/************************/\r\n\r\n// Import central SLSP package ;\r\n// import { centralCustom } from './slsp/custom_slsp.js';\r\nimport { centralCustom } from './slsp/epfl_custom_slsp.js';\r\nimport { homepageModule } from './homepage/index.js';\r\nimport { customTranslateFilter } from './filters/custom_translate.filter.js';\r\nimport { trustHtmlFilter } from './filters/trust_html.filter.js';\r\nimport { accountModule } from './account/index.js';\r\nimport { fullviewModule } from './fullview/index.js';\r\nimport { briefviewModule } from './briefview/index.js';\r\nimport { databasesModule } from './databases/index.js';\r\n\r\nvar app = angular.module('viewCustom', ['angularLoad',\r\n 'centralCustom',\r\n 'homepageModule',\r\n 'customTranslateFilter',\r\n 'trustHtmlFilter',\r\n 'accountModule',\r\n 'fullviewModule',\r\n 'briefviewModule',\r\n 'databasesModule']);\r\n","(function () {\r\n\r\n\r\n var app = angular.module('centralCustom', ['angularLoad']);\r\n\r\n\r\n /*\r\n ## VERSION SLSP DU CONTROLLEUR ##\r\n # Ajoute le lien vers les amendes\r\n\r\n app.controller('CourierInfoController', [function () {\r\n var vm = this;\r\n vm.linkBase = \"https:\\/\\/slsp.ch\\/fees\";\r\n\r\n }]);\r\n */\r\n\r\n /* ## VERSION EPFL DU CONTROLLEUR ## */\r\n\r\n app.controller('CourierInfoController', ['$filter', '$element', function ($filter, $element, $compile, $scope, $rootScope) {\r\n var vm = this;\r\n\r\n //shortcut for convenience\r\n this.form = $element[0].parentElement;\r\n\r\n //function for inserting block\r\n this.$doCheck = function() {\r\n let form = false;\r\n let formLength = 2;\r\n // console.log(this.form);\r\n if (this.form.children[0].children[1] !== undefined && (this.form.children[0].children[1].children[0] !== undefined || vm.typeFeeAlert()=='costWarningPEB')) {\r\n form = this.form.children[0].children[1].children[0];\r\n if (vm.typeFeeAlert()=='costWarningPEB'){\r\n formLength = 3;\r\n }\r\n }\r\n else if (this.form.children[0].children[0] !== undefined && this.form.children[0].children[0].children[0] !== undefined) {\r\n form = this.form.children[0].children[0].children[0];\r\n formLength = 3;\r\n }\r\n // console.log(vm.typeFeeAlert());\r\n\r\n //create and insert info block if not present\r\n // if (form){\r\n // // console.log('---' + String(formLength) + ' - ' + String(form.children.length));}\r\n if (form && form.children.length == formLength && form.children.length > 1 || vm.hasOwnProperty('currentTypeFeeAlert') &&\r\n vm.currentTypeFeeAlert != vm.typeFeeAlert()) {\r\n // console.log('cccc---' + String(formLength) + ' - ' + String(form.children.length));\r\n vm.currentTypeFeeAlert = vm.typeFeeAlert();\r\n var htmlwarning = `<div class=\"courier-info bar alert-bar\"><p>${vm.getFeeAlert()}</p>`;\r\n if (vm.typeFeeAlert()=='costWarningScan') {\r\n var txt = $filter('customTranslate')('illButton');\r\n if (vm.get_peb_button()){\r\n var fn = `javascript:(function() {\r\n for (var elem of document.getElementsByTagName('span')) {\r\n if (elem.getAttribute('translate') === 'AlmaResourceSharing' &&\r\n elem.parentNode.className.indexOf('greenbutton') === -1)\r\n {\r\n elem.click();\r\n break;\r\n }\r\n };})()`;}\r\n else {\r\n var fn = `javascript:(function() {window.location.href = window.location.origin + '/discovery/blankIll?vid=${vm.parentCtrl.vid}'})()`;\r\n }\r\n\r\n\r\n htmlwarning += `<p><span class=\"button-confirm md-button md-primoExplore-theme md-ink-ripple\" onclick=\"${fn}\" \">${txt}</span></p>`;\r\n\r\n }\r\n htmlwarning += `<p><a href=\"${this.parentCtrl.$translate.instant('customize.fullview.feesUrl')}\" target=\"_blank\">${this.parentCtrl.$translate.instant('customize.fullview.feesLinkText')}</a></p></div>`;\r\n var htmlcompiled = angular.element(htmlwarning)[0];\r\n\r\n // console.log('---' + String(formLength) + ' - ' + String(form.children.length));\r\n if (form.children.length == formLength) {\r\n // console.log('---' + String(formLength) + ' - ' + String(form.children.length));\r\n form.insertBefore(htmlcompiled, form.children[formLength - 1]);\r\n } else {\r\n // console.log(String(formLength) + ' - ' + String(form.children.length));\r\n form.children[form.children.length - 2].replaceWith(htmlcompiled);\r\n }\r\n }\r\n }\r\n\r\n\r\n\r\n\r\n // Remonte l'EPFL dans la liste des bibliothèques\r\n Object.defineProperty(vm.parentCtrl, \"form\", {\r\n configurable: !0,\r\n get: function(){\r\n // Mettre l'EPFL en première position\r\n var form = this.getFilteredForm(['label', 'multiLabel'], false);\r\n if (!vm.hasOwnProperty('pickupLocationsListOrdered')){\r\n for (var i = 0; i < form.length; i++){\r\n if (form[i].key == 'pickupInstitution'){\r\n function compare( a, b ){\r\n var onTopInstitutions = ['41SLSP_EPF', '41SLSP_EPFL'];\r\n a = onTopInstitutions.indexOf(a.value);\r\n b = onTopInstitutions.indexOf(b.value);\r\n if (a == b) {return 0};\r\n return a < b ? 1 : -1;\r\n }\r\n form[i].options.sort(compare);\r\n vm['pickupLocationsListOrdered'] = true;\r\n }\r\n }\r\n }\r\n return form;\r\n }\r\n }\r\n );\r\n\r\n // Vérifie si l'EPFL est la provenance de l'exemplaire sélectionné\r\n vm.isEPFL = function() {\r\n return vm.parentCtrl.requestService && vm.parentCtrl.requestService._service['link-to-service'].indexOf('institution=41SLSP_EPF') > 0 ? true : false;\r\n }\r\n\r\n vm.linkBase = \"https:\\/\\/slsp.ch\\/fees\";\r\n\r\n // Personnalisation du message des frais\r\n vm.typeFeeAlert = function() {\r\n // console.log(vm.parentCtrl.requestHeader);\r\n if (['almaRequest.header', 'almaRequestOther.header', 'almaItemRequest.header'].includes(vm.parentCtrl.requestHeader)) {\r\n return 'costWarningNetworkLoan'; // $filter('customTranslate')(costWarningNetworkLoan');\r\n } else if (['almaDigitization.header',\r\n 'almaDigitizationOther.header',\r\n 'almaItemDigitization.header']\r\n .includes(vm.parentCtrl.requestHeader)) {\r\n return vm.isEPFL() ? 'costWarningScanEPFL' : 'costWarningScan';\r\n } else if (vm.parentCtrl.requestHeader === 'almaResourceSharing.header') {\r\n return 'costWarningPEB';\r\n } else {\r\n return 'costWarningGeneral';\r\n }\r\n }\r\n vm.getFeeAlert = function() {\r\n // console.log(vm.typeFeeAlert());\r\n return $filter('customTranslate')(vm.typeFeeAlert());\r\n }\r\n\r\n // Récupère le bouton PEB de la page afin de simuler un clic dessus\r\n vm.get_peb_button = function(){\r\n var allElements = document.getElementsByTagName('span');\r\n for (var i = 0, n = allElements.length; i < n; i++) {\r\n if (allElements[i].getAttribute('translate') === 'AlmaResourceSharing' &&\r\n allElements[i].parentNode.className.indexOf('greenbutton') === -1)\r\n {\r\n return allElements[i];\r\n }\r\n }\r\n\r\n }\r\n // vm.get_request_button = function(){\r\n // var allElements = document.getElementsByTagName('prm-opac');\r\n // if (allElements.length === 0) { return null; }\r\n // var opac = allElements[0];\r\n // if (opac.closest('prm-alma-other-members')) { return null; }\r\n //\r\n // var buttons = opac.getElementsByTagName('span');\r\n // for (var i = 0, n = buttons.length; i < n; i++) {\r\n // if (buttons[i].getAttribute('translate') == 'AlmaRequest')\r\n // {\r\n // return buttons[i];\r\n // }\r\n // }\r\n // }\r\n\r\n // Fonction simulant un clic sur le bouton PEB quand on clique sur les\r\n // frais.\r\n vm.click_peb = function(){\r\n var button = vm.get_peb_button();\r\n if (button) {\r\n button.click();\r\n } else {\r\n window.location.href = window.location.origin + '/discovery/blankIll?vid=' + vm.parentCtrl.vid;\r\n }\r\n }\r\n // vm.click_request = function(){\r\n // vm.get_request_button().click();\r\n // }\r\n\r\n // console.log(vm);\r\n\r\n }]);\r\n\r\n app.component('prmRequestAfter', {\r\n bindings: { parentCtrl: '<' },\r\n controller: 'CourierInfoController',\r\n // template:\r\n // `<div layout=\"row\" class=\"courier-info feemsg alert-bar layout-align-center-center\" layout-align=\"center center\">\r\n // <img width=\"35px\" ng-src=\"/discovery/custom/41SLSP_EPF-prod/img/information.png\" />\r\n // <div>\r\n // <div ng-if=\"$ctrl.typeFeeAlert()!='costWarningScanEPFL'\">\r\n // <span class=\"md-subhead\">\r\n // <a href=\"{{ $ctrl.linkBase }}\" target=\"_blank\">\r\n // <span translate=\"customized.fulldisplay.fees\"></span>\r\n // </a>\r\n // </span>\r\n // </div>\r\n // <div>\r\n // <span ng-if=\"$ctrl.typeFeeAlert()!='costWarningGeneral'\" ng-bind-html=\"$ctrl.getFeeAlert() \"></span>\r\n // <span ng-if=\"$ctrl.typeFeeAlert()=='costWarningScan'\"><button class=\"greenbutton button-as-link md-button md-primoExplore-theme md-ink-ripple\" ng-click=\"$ctrl.click_peb()\"><span>{{ 'illButton' | customTranslate }}</span></button></span>\r\n // </div>\r\n //\r\n // </div>\r\n // </div>`\r\n });\r\n\r\n\r\n\r\n\r\n\r\n\r\n app.controller('LibInfoController', [function () {\r\n var vm = this;\r\n vm.biblinkText = \"Library\";\r\n vm.biblinkBase = \"https:\\/\\/slsp.ch\\/libraries\";\r\n\r\n vm.getLibraryUrl = function() {\r\n if (vm.parentCtrl.loc && vm.parentCtrl.loc.location.libraryCode==='E02') {\r\n return \"https://go.epfl.ch/library\";\r\n } else {\r\n return vm.biblinkBase;\r\n }\r\n }\r\n vm.view = vm.parentCtrl.configurationUtil.vid.replace(':', '-');\r\n vm.getLibrary = function() {\r\n // return vm.parentCtrl.currLoc.location.librarycodeTranslation;\r\n return vm.parentCtrl.currLoc ? vm.parentCtrl.currLoc.location.librarycodeTranslation : '';\r\n }\r\n console.log(vm);\r\n\r\n }]);\r\n\r\n app.component('prmLocationItemsAfter', {\r\n bindings: { parentCtrl: '<' },\r\n controller: 'LibInfoController',\r\n controllerAs: 'ctrl',\r\n template: `<div layout=\"row\" class=\"LibInfo\" layout-align=\"start center\"><span class=\"md-subhead\"><a ng-href=\"{{ ctrl.getLibraryUrl() }}\" target=\"_blank\"><img width=\"20px\" ng-src=\"/discovery/custom/{{ ctrl.view }}/img/information.png\" />{{ ctrl.getLibrary() }}</a></span></div>`\r\n });\r\n\r\n\r\n\r\n //--------ILL Signin Order - if logged out ---------------------------------------\r\n app.service('userService', ['jwtHelper', function (jwtHelper) {\r\n this.isGuest = function () {\r\n var jwt = sessionStorage.getItem('primoExploreJwt');\r\n if (!jwt) {\r\n return true;\r\n }\r\n var decodedToken = jwtHelper.decodeToken(jwt);\r\n let userName = decodedToken.userGroup !== 'GUEST' ? decodedToken.userName : '';\r\n if (userName) {\r\n return false\r\n }\r\n else {\r\n return true;\r\n }\r\n }\r\n /* ----------------------------------- */\r\n /* - Ajout pour obtenir l'adresse IP - */\r\n this.getIP = function () {\r\n var jwt = sessionStorage.getItem('primoExploreJwt');\r\n if (!jwt) {\r\n return;\r\n }\r\n return jwtHelper.decodeToken(jwt).userIp;\r\n }\r\n\r\n\r\n /* --------- Fin de l'ajout --------- */\r\n /* ---------------------------------- */\r\n\r\n }])\r\n\r\n\r\n app.controller('IllBoxController', ['$scope', 'userService', function ($scope, userService) {\r\n\r\n $scope.usrNme = userService.isGuest();\r\n\r\n if ($scope.usrNme == true) {\r\n var myEl = angular.element(document.querySelector('primo-explore'));\r\n return myEl.addClass('logged-out')\r\n }\r\n\r\n else {\r\n var myEl = angular.element(document.querySelector('primo-explore'));\r\n return myEl.removeClass('logged-out');\r\n }\r\n\r\n\r\n }]);\r\n\r\n app.component('prmUserAreaExpandableAfter', {\r\n bindings: { parentCtrl: '<' },\r\n controller: 'IllBoxController',\r\n template: ''\r\n });\r\n\r\n app.component('prmTopbarAfter', {\r\n bindings: { parentCtrl: '<' },\r\n // controller: 'IllBoxController',\r\n template: `<div class=\"main-title\"><h1><a href=\"{{ starturl }}\">{{ 'mainTitle' | customTranslate }}</a></h1><h2>{{ 'subTitle' | customTranslate }}</h2></div>`\r\n });\r\n\r\n //----------------------------------------------------------------------------------------------\r\n\r\n\r\n app.controller('AlertMsgController', ['$scope', function ($scope) {\r\n var vm = this;\r\n vm.getAlert = getAlert\r\n\r\n function getAlert() {\r\n var ga = vm.parentCtrl.almaHowToGetitService.reqAlert._htmlMsg;\r\n var myEl2 = angular.element(document.querySelector('primo-explore'));\r\n\r\n if (ga.length > 0) {\r\n return myEl2.addClass('alert');\r\n\r\n }\r\n else {\r\n\r\n return myEl2.removeClass('alert');\r\n\r\n }\r\n }\r\n\r\n }]);\r\n\r\n app.component('almaHowovpAfter', {\r\n bindings: { parentCtrl: '<' },\r\n controller: 'AlertMsgController',\r\n template: '<div style=\"display:none\">{{$ctrl.getAlert()}}</div>'\r\n });\r\n\r\n\r\n\r\n})();\r\n"],"sourceRoot":"/source/"}
\ No newline at end of file
diff --git a/primo-explore/custom/41SLSP_EPF-test/js/databases/index.js b/primo-explore/custom/41SLSP_EPF-test/js/databases/index.js
deleted file mode 100644
index eeb5df9..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/js/databases/index.js
+++ /dev/null
@@ -1,4 +0,0 @@
-(function () {
- var homepage_module = angular.module('databasesModule', ['angularLoad']);
- homepage_module.component('prmTreeNavAfter', require('./treenav.component.js'));
-})()
diff --git a/primo-explore/custom/41SLSP_EPF-test/js/databases/treenav.component.js b/primo-explore/custom/41SLSP_EPF-test/js/databases/treenav.component.js
deleted file mode 100644
index 26468df..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/js/databases/treenav.component.js
+++ /dev/null
@@ -1,14 +0,0 @@
-"use strict";
-
-/*
- OBJECTIF: Ne fait rien pour le moment
-*/
-
-module.exports = {
- bindings: {parentCtrl: '<'},
- controllerAs: 'ctrl',
- controller: ['$filter', function($filter) {
- var vm = this;
- // console.log(vm);
- }]
-}
diff --git a/primo-explore/custom/41SLSP_EPF-test/js/filters/custom_translate.filter.js b/primo-explore/custom/41SLSP_EPF-test/js/filters/custom_translate.filter.js
deleted file mode 100644
index 3a489fd..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/js/filters/custom_translate.filter.js
+++ /dev/null
@@ -1,129 +0,0 @@
-"use strict";
-
-/***********************/
-/* FILTRE : traduction */
-/***********************/
-
-/*
- OBJECTIF: traduire des éléments, tant des urls que du texte.
- UTILISATION:
- - Dans le template:
- 1. comme un filtre: {{ clé | customTranslate }}
- - Dans un controlleur:
- Même si les filtres sont d'abord prévus pour être utilisés dans le
- template, on peut les appeler dans les controlleurs.
- 1. Ajouter le service dans l'en-tête du controlleur
- 2. Appeler le service avec la fonction $filter
- EXEMPLE:
- controller:function($http, $filter){...
- var traduction = $filter('customTranslate')('cleTrad');
- ...}
- CONFIGURATION:
- L'ajout de traduction se fait à travers des objets. La clé indique le
- terme à utiliser dans le template ou le controlleur pour ensuite
- renvoyer la traduction. Les noms associés n'appaaraissent donc pas tels
- quels. La structure de chaque élément traduit disponible est comme suit:
- clé1:{
- fr: traductionFrançaise
- en: traductionAnglaise
- },
- clé2:{
- fr: traductionFrançaise
- en: traductionAnglaise
- }
-*/
-(function () {
-
- var custom_translate_module = angular.module('customTranslateFilter', [])
- .filter('customTranslate', ['$translate', function($translate){
- return function(txt){
- var trad = {
-
- costWarningScan:{
- fr: "<b><span class=\"bigfont\" style=\"font-size:20px\">Service payant:</span></b><b> les collaborateurs et les étudiants de l’EPFL peuvent bénéficier de ce service gratuitement, en utilisant le formulaire:</b>",
- en: "<b><span class=\"bigfont\" style=\"font-size:20px\">Fee-based service:</span></b><b> EPFL employees and students can benefit from this service free of charge by using the form:</b>",
- de: "<b><span class=\"bigfont\" style=\"font-size:20px\">Kostenpflichtiger Service:</span></b><b> Mitarbeitern und Studenten der EPFL steht dieser Dienst über das Fernleihe-Formular gratis zur Verfügung.</b>",
- it: "<b><span class=\"bigfont\" style=\"font-size:20px\">Servizio a pagamento:</span></b><b> I dipendenti e gli studenti dell'EPFL possono usufruire gratuitamente di questo servizio utilizzando il modulo:</b>"
- },
- costWarningScanEPFL:{
- fr: "<b>Service gratuit pour les collaborateurs et les étudiants EPFL.</b>",
- en: "<b>Free of charge for EPFL staff and students.</b>",
- de: "<b>Service für Mitarbeiter und Studenten der EPFL kostenlos</b>",
- it: "<b>Servizio gratuito per i dipendenti e gli studenti dell’EPFL.<b>"
- },
- costWarningNetworkLoan:{
- fr: "<b>Service gratuit en cas de retrait à la Bibliothèque de l’EPFL.</b>",
- en: "<b>Free of charge if withdrawal at the EPFL Library.</b>",
- de: "<b>Service bei Abholung in der EPFL-Bibliothek kostenlos.</b>",
- it: "<b>Servizio gratuito in caso di ritiro alla Biblioteca dell’EPFL</b>"
- },
- costWarningPEB:{
- fr: "<b>Service gratuit pour les collaborateurs et les étudiants de l’EPFL.</b> Avant de passer une commande d’un document physique via le prêt entre bibliothèques, merci de vous assurer que ce document n'est pas disponible dans d’autres bibliothèques du réseau SLSP dans swisscovery.",
- en: "<b>Free of charge for EPFL staff and students.</b> Before placing an order for a physical document via the interlibrary loan, please make sure that this document is not available in other SLSP network libraries on swisscovery.",
- de: "<b>Kostenloser Service für Mitarbeiter und Studenten der EPFL.</b> Bevor Sie ein Medium über die Fernleihe bestellen, vergewissern Sie sich bitte zunächst in swisscovery, dass es nicht in einer anderen Bibliothek des SLSP-Netzwerks verfügbar ist.",
- it: "<b>Servizio gratuito per i dipendenti e gli studenti dell’EPFL.</b> Prima di ordinare un documento cartaceo tramite il prestito interbibliotecario, assicuratevi che questo documento non sia disponibile in altre biblioteche della rete SLSP in swisscovery."
- },
- mainTitle:{
- fr: "Catalogue BEAST",
- en: "BEAST discovery tool",
- de: "BEAST Wissensportal",
- it: "Catalogo BEAST"
- },
- subTitle:{
- fr: "Le point d\'accès à toutes les ressources de la Bibliothèque de l\'EPFL",
- en: "The access portal to all the resources of the EPFL Library",
- de: "Der Zugangspunkt zu allen Ressourcen der EPFL Bibliothek",
- it: "Il punto d’accesso a tutte le risorse della Biblioteca dell’EPFL"
- },
- switchEduID:{
- fr: "Modifier vos informations personnelles sur",
- en: "Change your personal data on",
- de: "Ändern Sie Ihre persönlichen Daten auf",
- it: "Modifica i tuoi dati personali sul"
- },
- illButton:{
- fr: "Prêt entre bibliothèques (PEB)",
- en: "Inter Library Loan (ILL)",
- de: "Fernleihe",
- it: "Prestito interbibliotecario"
- },
- feedbackLink:{
- fr: "Signaler un problème d'accès",
- en: "Report an access problem",
- de: "Zugriffsproblem melden",
- it: "Segnalare un problema di accesso"
- },
- vpnMSG:{
- fr: "Les ressources électroniques sont accessibles depuis tous les postes de l’EPFL, et à distance via le <a target=\"_blank\" href=\"https://www.epfl.ch/campus/services/ressources-informatiques/network-services-reseau/acces-intranet-a-distance/clients-vpn-disponibles/\">VPN</a> EPFL.",
- en: "Electronic resources are accessible from all EPFL workstations, and remotely via the EPFL <a target=\"_blank\" href=\"https://www.epfl.ch/campus/services/en/it-services/network-services/remote-intranet-access/vpn-clients-available/\">VPN</a>.",
- de: "Elektronische Informationsressourcen sind an allen EPFL-Arbeitsplätzen und per EPFL <a target=\"_blank\" href=\"https://www.epfl.ch/campus/services/en/it-services/network-services/remote-intranet-access/vpn-clients-available/\">VPN</a> abrufbar.",
- it: "Le risorse elettroniche sono accessibili da tutte le postazioni di lavoro dell'EPFL e a distanza tramite <a target=\"_blank\" href=\"https://www.epfl.ch/campus/services/en/it-services/network-services/remote-intranet-access/vpn-clients-available/\">VPN</a> EPFL."
- },
- // vpnLink:{
- // fr: "https://www.epfl.ch/campus/services/ressources-informatiques/network-services-reseau/acces-intranet-a-distance/clients-vpn-disponibles/",
- // en: "https://www.epfl.ch/campus/services/en/it-services/network-services/remote-intranet-access/vpn-clients-available/",
- // de: "https://www.epfl.ch/campus/services/en/it-services/network-services/remote-intranet-access/vpn-clients-available/",
- // it: "https://www.epfl.ch/campus/services/en/it-services/network-services/remote-intranet-access/vpn-clients-available/"
- // },
- feedbackLinkMSG:{
- fr: "Je rencontre un problème d’accès à la ressource électronique ci-dessous. Je vous remercie de m’informer lorsque l’accès sera rétabli.",
- en: "I have a problem accessing the electronic resource below. Please let me know when the access will be restored.",
- de: "I have a problem accessing the electronic resource below. Please let me know when the access will be restored.",
- it: "I have a problem accessing the electronic resource below. Please let me know when the access will be restored."
- },
- pdfAccess:{
- fr: "Accès direct au pdf",
- en: "Direct access to the pdf",
- de: "Direct access to the pdf",
- it: "Direct access to the pdf"
- }
- };
- if (['en', 'fr', 'it', 'de'].includes($translate.use())) {
- return trad[txt][$translate.use()]
- } else {
- return trad[txt].fr
- }
- };
- }]);
-
-}) ()
diff --git a/primo-explore/custom/41SLSP_EPF-test/js/filters/trust_html.filter.js b/primo-explore/custom/41SLSP_EPF-test/js/filters/trust_html.filter.js
deleted file mode 100644
index 5399f5e..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/js/filters/trust_html.filter.js
+++ /dev/null
@@ -1,19 +0,0 @@
-"use strict";
-
-/***********************/
-/* FILTRE : traduction */
-/***********************/
-
-/*
- OBJECTIF: Permettre des balises html dans les champs.
- UTILISATION: S'utilise dans une balise comme un filtre.
- EXEMPLE: {{ variable | trustHtml }}
-*/
-(function () {
-angular.module('trustHtmlFilter', [])
- .filter('trustHtml', ['$sce', function($sce){
- return function(txt){
- return $sce.trustAsHtml(txt);
- };
-}]);
-}) ()
diff --git a/primo-explore/custom/41SLSP_EPF-test/js/fullview/almaviewit.component.js b/primo-explore/custom/41SLSP_EPF-test/js/fullview/almaviewit.component.js
deleted file mode 100644
index efbc7e9..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/js/fullview/almaviewit.component.js
+++ /dev/null
@@ -1,93 +0,0 @@
-"use strict";
-
-/*
- OBJECTIF: Ajouter un lien pour rapporter les problèmes d'accès aux
- ressources électroniques. Un message d'avertissement s'affiche quand la
- la personne n'est pas sur le réseau EPFL
-*/
-
-module.exports = {
- bindings: {parentCtrl: '<'},
- controllerAs: 'ctrl',
- controller: ['$filter', 'userService', function($filter, userService) {
- var vm = this;
-
- vm.get_txt = function() {
- return $filter('customTranslate')('vpnMSG');
- }
-
- vm.feedbackLink = '';
- vm.is_epfl_IP = false;
- vm.no_report_link = false;
-
- // not for open access
- if (vm.parentCtrl.item.pnx.addata.openaccess && vm.parentCtrl.item.pnx.addata.openaccess[0] === 'true') {
- vm.no_report_link = true;
- }
- // not for cdi open access
- if (vm.parentCtrl.item.pnx.addata.oa && vm.parentCtrl.item.pnx.addata.oa[0] === 'free_for_read') {
- vm.no_report_link = true;
- }
- if (!vm.no_report_link){
-
- /* Obtient l'adresse ip depuis un service se trouvant dans le
- module \js\slsp\epfl_custom_slsp.js */
- var userIP = userService.getIP();
- // console.log(userIP);
- // Vérification du range EPFL
- if (userIP) {
- const regex = /128\.17([89])\.(\d{1,3})\./;
- const found = userIP.match(regex);
- if (found && (found[1] == '8' || parseInt(found[2])>=128)) {
- vm.is_epfl_IP = true;
- }
- }
-
- // Récupération des métadonnées de la ressource
- var mmsId = vm.parentCtrl.item.pnx.control.recordid[0];
- var title = '';
- if (vm.parentCtrl.item.pnx.display.title && vm.parentCtrl.item.pnx.display.title.length > 0) {
- title = vm.parentCtrl.item.pnx.display.title[0];
- }
- var creationdate = '';
- if (vm.parentCtrl.item.pnx.display.creationdate && vm.parentCtrl.item.pnx.display.creationdate.length > 0) {
- creationdate = vm.parentCtrl.item.pnx.display.creationdate[0];
- }
- var creator = '';
- if (vm.parentCtrl.item.pnx.display.creator && vm.parentCtrl.item.pnx.display.creator.length > 0) {
- creator = vm.parentCtrl.item.pnx.display.creator.join(', ');
- }
- var type = '';
- if (vm.parentCtrl.item.pnx.display.type && vm.parentCtrl.item.pnx.display.type.length > 0) {
- type = vm.parentCtrl.item.pnx.display.type[0];
- }
- var identifier = '';
- if (vm.parentCtrl.item.pnx.display.identifier && vm.parentCtrl.item.pnx.display.identifier.length > 0) {
- var ident = vm.parentCtrl.item.pnx.display.identifier[0];
- if (ident.indexOf('<b>ISBN') > -1) {
- identifier = vm.parentCtrl.item.pnx.display.identifier.join(', ').replace(/<\/b>/g, '').replace(/<b>/g, '');
- } else if (ident.indexOf('<b>ISSN') > -1) {
- identifier = vm.parentCtrl.item.pnx.display.identifier.join(', ').replace(/<\/b>/g, '').replace(/<b>/g, '');
- } else if (ident.indexOf('ISBN') > -1) {
- identifier = 'ISBN: ' + ident.substring(ident.indexOf('$$V') + 3);
- } else if (ident.indexOf('ISSN') > -1) {
- identifier = 'ISSN: ' + ident.substring(ident.indexOf('$$V') + 3);
- }
- }
- var userAgent = navigator.userAgent;
-
- // Création de l'objet du message
- var subject = 'Access problem ' + mmsId + ' - "' + title + '"';
-
- // Création du corps du message
- var body = $filter('customTranslate')('feedbackLinkMSG') + '\n\n' + '****\nTitle: ' + title + '\nAuthor: ' + creator + '\nYear: ' + creationdate + '\nType: ' + type + '\nDocId: ' + mmsId + '\nIdentifier: ' + identifier + '\nUser_agent: ' + userAgent + '\nUserIP: ' + userIP + '\nRange EPFL: ' + vm.is_epfl_IP + '\n****';
-
- vm.feedbackLink = 'mailto:edoc@epfl.ch' + '?subject=' + encodeURIComponent(subject) + '&body=' + encodeURIComponent(body) + '&Content-Type=text/html';
- }
-
- }],
- template: `<div class="bar alert-bar" ng-if="ctrl.no_report_link==false && ctrl.is_epfl_IP==false">
- <div ng-bind-html="ctrl.get_txt()"></div><md-icon ng-if="::($ctrl.iconDefinition &amp;&amp; !$ctrl.isCustom &amp;&amp; !$ctrl.isEmailMode())" md-svg-icon="primo-ui:open-in-new" role="presentation" class="md-primoExplore-theme"></md-icon
- <div class="feedbacklink"> <a href="{{ ::ctrl.feedbackLink }}"><md-icon md-svg-icon="primo-ui:envelope-outline" role="presentation" class="md-primoExplore-theme"></md-icon> {{ 'feedbackLink' | customTranslate }}</a></div>
- </div>
- <div class="feedbacklink" ng-if="ctrl.no_report_link==false && ctrl.is_epfl_IP==true"> <a href="{{ ::ctrl.feedbackLink }}"><md-icon md-svg-icon="primo-ui:envelope-outline" role="presentation" class="md-primoExplore-theme"></md-icon> {{ 'feedbackLink' | customTranslate }}</a></div>`}
diff --git a/primo-explore/custom/41SLSP_EPF-test/js/fullview/index.js b/primo-explore/custom/41SLSP_EPF-test/js/fullview/index.js
deleted file mode 100644
index d9f0922..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/js/fullview/index.js
+++ /dev/null
@@ -1,4 +0,0 @@
-(function () {
- var fullview_module = angular.module('fullviewModule', ['angularLoad']);
- fullview_module.component('prmAlmaViewitAfter', require('./almaviewit.component.js'));
-})()
diff --git a/primo-explore/custom/41SLSP_EPF-test/js/homepage/alert.js b/primo-explore/custom/41SLSP_EPF-test/js/homepage/alert.js
deleted file mode 100644
index f39245e..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/js/homepage/alert.js
+++ /dev/null
@@ -1,16 +0,0 @@
-module.exports = {active: true,
- txt:
- {fr: `<div class="info-symbol" style=\"text-align:left\">
- <div><p>Le réseau NEBIS a pris fin le 7 décembre 2020 pour être remplacé par un nouveau réseau plus vaste : <a class="md-primoExplore-theme" href="https://slsp.ch/fr">swisscovery</a></p></div>
- </div>`,
- en: `<div class="info-symbol" style=\"text-align:left\">
- <div><p>The NEBIS network ended on December 7, 2020. It has been replaced by <a class="md-primoExplore-theme" href="https://slsp.ch/it">swisscovery</a>: a new and wider network.</p></div>
- </div>`,
- de: `<div class="info-symbol" style=\"text-align:left\">
- <div><p>Das NEBIS-Netzwerk wurde am 07.12.2020 abgeschaltet und durch ein neues, grösseres Netzwerk ersetzt: <a class="md-primoExplore-theme" href="https://slsp.ch/de">swisscovery</a></p></div>
- </div>`,
- it: `<div class="info-symbol" style=\"text-align:left\">
- <div><p>La rete NEBIS è stata sciolta il 7 dicembre 2020 per essere sostituita da una rete piú ampia di biblioteche: <a class="md-primoExplore-theme" href="https://slsp.ch/it">swisscovery</a></p></div>
- </div>`},
- begin:"2020-01-04T00:00:00Z",
- end:"2021-03-31T12:00:00Z"}
diff --git a/primo-explore/custom/41SLSP_EPF-test/js/homepage/index.js b/primo-explore/custom/41SLSP_EPF-test/js/homepage/index.js
deleted file mode 100644
index 080f013..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/js/homepage/index.js
+++ /dev/null
@@ -1,5 +0,0 @@
-(function () {
- var homepage_module = angular.module('homepageModule', ['angularLoad']);
- homepage_module.component('prmSearchBarAfter', require('./searchbar.component.js'));
- homepage_module.component('prmMainMenuAfter', require('./mainmenu.component.js'));
-})()
diff --git a/primo-explore/custom/41SLSP_EPF-test/js/homepage/mainmenu.component.js b/primo-explore/custom/41SLSP_EPF-test/js/homepage/mainmenu.component.js
deleted file mode 100644
index 66f6860..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/js/homepage/mainmenu.component.js
+++ /dev/null
@@ -1,27 +0,0 @@
-"use strict";
-
-/*
- OBJECTIF: corriger le lien du menu principal vers les bases de données.
-*/
-
-module.exports = {
- bindings: {parentCtrl: '<'},
- controllerAs: 'ctrl',
- controller: ['$location', '$translate', '$element', function($location, $translate, $element) {
- var vm = this;
- this.$doCheck = function() {
- if (document.readyState === 'complete' /*&& !vm.modified*/){
- try{var elem = document.querySelector("[translate='mainmenu.label.db']").parentElement;}
- catch(e){
- vm.modified = false;
- }
- if (elem){
- elem.removeAttribute('target');
- elem.setAttribute('aria-label', 'Databases');
- vm.modified = true;
- }
- }
- };
- // console.log(vm.url);
- }]
-};
diff --git a/primo-explore/custom/41SLSP_EPF-test/js/homepage/searchbar.component.js b/primo-explore/custom/41SLSP_EPF-test/js/homepage/searchbar.component.js
deleted file mode 100644
index 360c673..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/js/homepage/searchbar.component.js
+++ /dev/null
@@ -1,54 +0,0 @@
-"use strict";
-
-/*
- OBJECTIFS:
- - Toujours afficher l'onglet pour modifier le scope
- - Afficher une alerte si les dates correspondent
- UTILISATION:
- Pour paramétrer l'alerte, il faut modifier le fichier alert.json (dans ce dossier)
-*/
-module.exports = {
- bindings: {parentCtrl: '<'},
- template: '<div class="epfl-alert-message" ng-if="ctrl.active" ng-bind-html="ctrl.get_txt() "></div>',
- controllerAs: 'ctrl',
- controller: ['$translate', function($translate){
-
- var vm = this;
-
- /********************/
- /* MESSAGE D'ALERTE */
- /********************/
-
- // récupère le fichier json avec les paramètres de l'alerte
- vm.alert = require("./alert.js");
-
- // par défaut, l'alerte n'est pas considérée comme active
- vm.active = false;
-
- // Vérifie dans le fichier json si une alerte est prévue
- if (vm.alert.active === true){
-
- // Teste si les dates correspondent pour l'affichage de l'alerte
- var d_now = Date.now();
- if ((new Date(vm.alert.begin) < d_now) && (d_now < new Date(vm.alert.end))) {
- // déclenche l'affichage de l'alerte
- vm.active = true;
- }
- }
-
- // getteur qui retourne le texte en fonction de la langue
- vm.get_txt = function(){
- var lang = ['en', 'fr', 'it', 'de'].includes($translate.use()) ? $translate.use():'en';
- return vm.active ? vm.alert.txt[lang] : "";
- }
-
- /*******************/
- /* SCOPE PERMANENT */
- /*******************/
-
- // Rendre permanent l'affichage des onglets permettant de sélectionnet le scope
- vm.parentCtrl.showTabsAndScopes = true;
-
- // console.log(vm.alert);
- }
- ]};
diff --git a/primo-explore/custom/41SLSP_EPF-test/js/homepage/topbar.component.js b/primo-explore/custom/41SLSP_EPF-test/js/homepage/topbar.component.js
deleted file mode 100644
index 600c339..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/js/homepage/topbar.component.js
+++ /dev/null
@@ -1,19 +0,0 @@
-"use strict";
-
-/*
- OBJECTIF: afficher l'entête de la page.
- REMARQUES: contient le titre BEAST, le teaser, le fil d'ariance. Le controlleur vérifie
- si on se trouve dans le compte de lecteur afin de paramétrer le fil d'ariane.
-*/
-
-module.exports = {
- bindings: {parentCtrl: '<'},
- controllerAs: 'ctrl',
- controller: ['$location', '$translate', '$element', function($location, $translate, $element) {
- var vm = this;
- vm.url = window.location.href.split('?')[0] + '?vid=' + vm.parentCtrl.configurationUtil.vid + '&lang=' + $translate.use();
- // console.log(vm.url);
- }],
- template: `<div class="main-title"><h1><a href="{{ ::ctrl.url }}">{{ 'mainTitle' | customTranslate }}</a></h1><h2>{{ 'subTitle' | customTranslate }}</h2></div>`
- //templateUrl: './custom/41SLSP_EPF-prod/js/homepage/templates/topbar.html'
-};
diff --git a/primo-explore/custom/41SLSP_EPF-test/js/main.js b/primo-explore/custom/41SLSP_EPF-test/js/main.js
deleted file mode 100644
index ffa81fa..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/js/main.js
+++ /dev/null
@@ -1,24 +0,0 @@
-/************************/
-/* List of used modules */
-/************************/
-
-// Import central SLSP package ;
-// import { centralCustom } from './slsp/custom_slsp.js';
-import { centralCustom } from './slsp/epfl_custom_slsp.js';
-import { homepageModule } from './homepage/index.js';
-import { customTranslateFilter } from './filters/custom_translate.filter.js';
-import { trustHtmlFilter } from './filters/trust_html.filter.js';
-import { accountModule } from './account/index.js';
-import { fullviewModule } from './fullview/index.js';
-import { briefviewModule } from './briefview/index.js';
-import { databasesModule } from './databases/index.js';
-
-var app = angular.module('viewCustom', ['angularLoad',
- 'centralCustom',
- 'homepageModule',
- 'customTranslateFilter',
- 'trustHtmlFilter',
- 'accountModule',
- 'fullviewModule',
- 'briefviewModule',
- 'databasesModule']);
diff --git a/primo-explore/custom/41SLSP_EPF-test/js/slsp/README.md b/primo-explore/custom/41SLSP_EPF-test/js/slsp/README.md
deleted file mode 100644
index aa122c6..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/js/slsp/README.md
+++ /dev/null
@@ -1,9 +0,0 @@
-# Changes to customization js file from SLSP
-`custom_slsp.js`
-
-This file contains all the changes to the master template provided by SLSP.
-
-Originally the file is named `custom.js` in the customization package.
-
-## List of Changes
-* links to img: l. 42 - replace `custom/41SLSP_NETWORK-CENTRAL_PACKAGE` with `custom/41SLSP_EPF-prod`
diff --git a/primo-explore/custom/41SLSP_EPF-test/js/slsp/custom_slsp.js b/primo-explore/custom/41SLSP_EPF-test/js/slsp/custom_slsp.js
deleted file mode 100644
index 01bf93c..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/js/slsp/custom_slsp.js
+++ /dev/null
@@ -1,44 +0,0 @@
-(function () {
-
-
- var app = angular.module('centralCustom', ['angularLoad']);
-
-
- app.controller('CourierInfoController', [function () {
- var vm = this;
- vm.linkBase = "https:\/\/slsp.ch\/fees";
-
- }]);
-
- app.component('prmRequestAfter', {
- bindings: { parentCtrl: '<' },
- controller: 'CourierInfoController',
- template: '<div layout="row" class="courier-info bar alert-bar layout-align-center-center layout-row" layout-align="center center"><span class="md-subhead"><a href="{{ $ctrl.linkBase }}" target="_blank"><span translate="customized.fulldisplay.fees"></span></a></span></div>'
- });
-
-
-
-
-
-
- app.controller('LibInfoController', [function () {
- var vm = this;
- vm.getLibrary = getLibrary;
- vm.biblinkText = "Library";
- vm.biblinkBase = "https:\/\/slsp.ch\/libraries";
-
- function getLibrary() {
- return vm.parentCtrl.currLoc.location.librarycodeTranslation;
- }
-
- }]);
-
- app.component('prmLocationItemsAfter', {
- bindings: { parentCtrl: '<' },
- controller: 'LibInfoController',
- template: '<div layout="row" class="LibInfo" layout-align="start center"><span class="md-subhead"><a ng-href="{{ $ctrl.biblinkBase }}" target="_blank"><img width="35px" ng-src="/discovery/custom/41SLSP_NETWORK-CENTRAL_PACKAGE/img/information.png" />{{ $ctrl.getLibrary() }}</a></span></div>'
- });
-
-
-
-})();
diff --git a/primo-explore/custom/41SLSP_EPF-test/js/slsp/custom_slsp_new.js b/primo-explore/custom/41SLSP_EPF-test/js/slsp/custom_slsp_new.js
deleted file mode 100644
index adb18e5..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/js/slsp/custom_slsp_new.js
+++ /dev/null
@@ -1,118 +0,0 @@
-(function () {
-
-
- var app = angular.module('centralCustom', ['angularLoad']);
-
-
- app.controller('CourierInfoController', [function () {
- var vm = this;
- vm.linkBase = "https:\/\/slsp.ch\/fees";
-
- }]);
-
- app.component('prmRequestAfter', {
- bindings: { parentCtrl: '<' },
- controller: 'CourierInfoController',
- template: '<div layout="row" class="courier-info bar alert-bar layout-align-center-center layout-row" layout-align="center center"><span class="md-subhead"><a href="{{ $ctrl.linkBase }}" target="_blank"><span translate="customized.fulldisplay.fees"></span></a></span></div>'
- });
-
-
-
-
-
-
- app.controller('LibInfoController', [function () {
- var vm = this;
- vm.getLibrary = getLibrary;
- vm.biblinkText = "Library";
- vm.biblinkBase = "https:\/\/slsp.ch\/libraries";
-
- function getLibrary() {
- return vm.parentCtrl.currLoc.location.librarycodeTranslation;
- }
-
- }]);
-
- app.component('prmLocationItemsAfter', {
- bindings: { parentCtrl: '<' },
- controller: 'LibInfoController',
- template: '<div layout="row" class="LibInfo" layout-align="start center"><span class="md-subhead"><a ng-href="{{ $ctrl.biblinkBase }}" target="_blank"><img width="35px" ng-src="/discovery/custom/41SLSP_NETWORK-CENTRAL_PACKAGE/img/information.png" />{{ $ctrl.getLibrary() }}</a></span></div>'
- });
-
-
-
- // ILL Signin Order
- app.service('userService', ['jwtHelper', function (jwtHelper) {
- this.isGuest = function () {
- var jwt = sessionStorage.getItem('primoExploreJwt');
- if (!jwt) {
- return true;
- }
- var decodedToken = jwtHelper.decodeToken(jwt);
- let userName = decodedToken.userGroup !== 'GUEST' ? decodedToken.userName : '';
- if (userName) {
- return false
- }
- else {
- return true;
- }
- }
- }])
-
-
- app.controller('IllBoxController', function ($scope, userService) {
-
- $scope.usrNme = userService.isGuest();
-
- if ($scope.usrNme == true) {
- var myEl = angular.element(document.querySelector('primo-explore'));
- return myEl.addClass('logged-out')
- }
-
- else {
- var myEl = angular.element(document.querySelector('primo-explore'));
- return myEl.removeClass('logged-out');
- }
-
-
- });
-
- app.component('prmTopbarAfter', {
- bindings: { parentCtrl: '<' },
- controller: 'IllBoxController',
- template: ''
- });
-
- //----------------------------------------------------------------------------------------------
-
-
- app.controller('AlertMsgController', ['$scope', function ($scope) {
- var vm = this;
- vm.getAlert = getAlert
-
- function getAlert() {
- var ga = vm.parentCtrl.almaHowToGetitService.reqAlert._htmlMsg;
- var myEl2 = angular.element(document.querySelector('primo-explore'));
-
- if (ga.length > 0) {
- return myEl2.addClass('alert');
-
- }
- else {
-
- return myEl2.removeClass('alert');
-
- }
- }
-
- }]);
-
- app.component('almaHowovpAfter', {
- bindings: { parentCtrl: '<' },
- controller: 'AlertMsgController',
- template: '<div style="display:none">{{$ctrl.getAlert()}}</div>'
- });
-
-
-
-})();
diff --git a/primo-explore/custom/41SLSP_EPF-test/js/slsp/epfl_custom_slsp.js b/primo-explore/custom/41SLSP_EPF-test/js/slsp/epfl_custom_slsp.js
deleted file mode 100644
index 1934704..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/js/slsp/epfl_custom_slsp.js
+++ /dev/null
@@ -1,339 +0,0 @@
-(function () {
-
-
- var app = angular.module('centralCustom', ['angularLoad']);
-
-
- /*
- ## VERSION SLSP DU CONTROLLEUR ##
- # Ajoute le lien vers les amendes
-
- app.controller('CourierInfoController', [function () {
- var vm = this;
- vm.linkBase = "https:\/\/slsp.ch\/fees";
-
- }]);
- */
-
- /* ## VERSION EPFL DU CONTROLLEUR ## */
-
- app.controller('CourierInfoController', ['$filter', '$element', function ($filter, $element, $compile, $scope, $rootScope) {
- var vm = this;
-
- //shortcut for convenience
- this.form = $element[0].parentElement;
-
- //function for inserting block
- this.$doCheck = function() {
- let form = false;
- let formLength = 2;
- // console.log(this.form);
- if (this.form.children[0].children[1] !== undefined && (this.form.children[0].children[1].children[0] !== undefined || vm.typeFeeAlert()=='costWarningPEB')) {
- form = this.form.children[0].children[1].children[0];
- if (vm.typeFeeAlert()=='costWarningPEB'){
- formLength = 3;
- }
- }
- else if (this.form.children[0].children[0] !== undefined && this.form.children[0].children[0].children[0] !== undefined) {
- form = this.form.children[0].children[0].children[0];
- formLength = 3;
- }
- // console.log(vm.typeFeeAlert());
-
- //create and insert info block if not present
- // if (form){
- // // console.log('---' + String(formLength) + ' - ' + String(form.children.length));}
- if (form && form.children.length == formLength && form.children.length > 1 || vm.hasOwnProperty('currentTypeFeeAlert') &&
- vm.currentTypeFeeAlert != vm.typeFeeAlert()) {
- // console.log('cccc---' + String(formLength) + ' - ' + String(form.children.length));
- vm.currentTypeFeeAlert = vm.typeFeeAlert();
- var htmlwarning = `<div class="courier-info bar alert-bar"><p>${vm.getFeeAlert()}</p>`;
- if (vm.typeFeeAlert()=='costWarningScan') {
- var txt = $filter('customTranslate')('illButton');
- if (vm.get_peb_button()){
- var fn = `javascript:(function() {
- for (var elem of document.getElementsByTagName('span')) {
- if (elem.getAttribute('translate') === 'AlmaResourceSharing' &&
- elem.parentNode.className.indexOf('greenbutton') === -1)
- {
- elem.click();
- break;
- }
- };})()`;}
- else {
- var fn = `javascript:(function() {window.location.href = window.location.origin + '/discovery/blankIll?vid=${vm.parentCtrl.vid}'})()`;
- }
-
-
- htmlwarning += `<p><span class="button-confirm md-button md-primoExplore-theme md-ink-ripple" onclick="${fn}" ">${txt}</span></p>`;
-
- }
- htmlwarning += `<p><a href="${this.parentCtrl.$translate.instant('customize.fullview.feesUrl')}" target="_blank">${this.parentCtrl.$translate.instant('customize.fullview.feesLinkText')}</a></p></div>`;
- var htmlcompiled = angular.element(htmlwarning)[0];
-
- // console.log('---' + String(formLength) + ' - ' + String(form.children.length));
- if (form.children.length == formLength) {
- // console.log('---' + String(formLength) + ' - ' + String(form.children.length));
- form.insertBefore(htmlcompiled, form.children[formLength - 1]);
- } else {
- // console.log(String(formLength) + ' - ' + String(form.children.length));
- form.children[form.children.length - 2].replaceWith(htmlcompiled);
- }
- }
- }
-
-
-
-
- // Remonte l'EPFL dans la liste des bibliothèques
- Object.defineProperty(vm.parentCtrl, "form", {
- configurable: !0,
- get: function(){
- // Mettre l'EPFL en première position
- var form = this.getFilteredForm(['label', 'multiLabel'], false);
- if (!vm.hasOwnProperty('pickupLocationsListOrdered')){
- for (var i = 0; i < form.length; i++){
- if (form[i].key == 'pickupInstitution'){
- function compare( a, b ){
- var onTopInstitutions = ['41SLSP_EPF', '41SLSP_EPFL'];
- a = onTopInstitutions.indexOf(a.value);
- b = onTopInstitutions.indexOf(b.value);
- if (a == b) {return 0};
- return a < b ? 1 : -1;
- }
- form[i].options.sort(compare);
- vm['pickupLocationsListOrdered'] = true;
- }
- }
- }
- return form;
- }
- }
- );
-
- // Vérifie si l'EPFL est la provenance de l'exemplaire sélectionné
- vm.isEPFL = function() {
- return vm.parentCtrl.requestService && vm.parentCtrl.requestService._service['link-to-service'].indexOf('institution=41SLSP_EPF') > 0 ? true : false;
- }
-
- vm.linkBase = "https:\/\/slsp.ch\/fees";
-
- // Personnalisation du message des frais
- vm.typeFeeAlert = function() {
- // console.log(vm.parentCtrl.requestHeader);
- if (['almaRequest.header', 'almaRequestOther.header', 'almaItemRequest.header'].includes(vm.parentCtrl.requestHeader)) {
- return 'costWarningNetworkLoan'; // $filter('customTranslate')(costWarningNetworkLoan');
- } else if (['almaDigitization.header',
- 'almaDigitizationOther.header',
- 'almaItemDigitization.header']
- .includes(vm.parentCtrl.requestHeader)) {
- return vm.isEPFL() ? 'costWarningScanEPFL' : 'costWarningScan';
- } else if (vm.parentCtrl.requestHeader === 'almaResourceSharing.header') {
- return 'costWarningPEB';
- } else {
- return 'costWarningGeneral';
- }
- }
- vm.getFeeAlert = function() {
- // console.log(vm.typeFeeAlert());
- return $filter('customTranslate')(vm.typeFeeAlert());
- }
-
- // Récupère le bouton PEB de la page afin de simuler un clic dessus
- vm.get_peb_button = function(){
- var allElements = document.getElementsByTagName('span');
- for (var i = 0, n = allElements.length; i < n; i++) {
- if (allElements[i].getAttribute('translate') === 'AlmaResourceSharing' &&
- allElements[i].parentNode.className.indexOf('greenbutton') === -1)
- {
- return allElements[i];
- }
- }
-
- }
- // vm.get_request_button = function(){
- // var allElements = document.getElementsByTagName('prm-opac');
- // if (allElements.length === 0) { return null; }
- // var opac = allElements[0];
- // if (opac.closest('prm-alma-other-members')) { return null; }
- //
- // var buttons = opac.getElementsByTagName('span');
- // for (var i = 0, n = buttons.length; i < n; i++) {
- // if (buttons[i].getAttribute('translate') == 'AlmaRequest')
- // {
- // return buttons[i];
- // }
- // }
- // }
-
- // Fonction simulant un clic sur le bouton PEB quand on clique sur les
- // frais.
- vm.click_peb = function(){
- var button = vm.get_peb_button();
- if (button) {
- button.click();
- } else {
- window.location.href = window.location.origin + '/discovery/blankIll?vid=' + vm.parentCtrl.vid;
- }
- }
- // vm.click_request = function(){
- // vm.get_request_button().click();
- // }
-
- // console.log(vm);
-
- }]);
-
- app.component('prmRequestAfter', {
- bindings: { parentCtrl: '<' },
- controller: 'CourierInfoController',
- // template:
- // `<div layout="row" class="courier-info feemsg alert-bar layout-align-center-center" layout-align="center center">
- // <img width="35px" ng-src="/discovery/custom/41SLSP_EPF-prod/img/information.png" />
- // <div>
- // <div ng-if="$ctrl.typeFeeAlert()!='costWarningScanEPFL'">
- // <span class="md-subhead">
- // <a href="{{ $ctrl.linkBase }}" target="_blank">
- // <span translate="customized.fulldisplay.fees"></span>
- // </a>
- // </span>
- // </div>
- // <div>
- // <span ng-if="$ctrl.typeFeeAlert()!='costWarningGeneral'" ng-bind-html="$ctrl.getFeeAlert() "></span>
- // <span ng-if="$ctrl.typeFeeAlert()=='costWarningScan'"><button class="greenbutton button-as-link md-button md-primoExplore-theme md-ink-ripple" ng-click="$ctrl.click_peb()"><span>{{ 'illButton' | customTranslate }}</span></button></span>
- // </div>
- //
- // </div>
- // </div>`
- });
-
-
-
-
-
-
- app.controller('LibInfoController', [function () {
- var vm = this;
- vm.biblinkText = "Library";
- vm.biblinkBase = "https:\/\/slsp.ch\/libraries";
-
- vm.getLibraryUrl = function() {
- if (vm.parentCtrl.loc && vm.parentCtrl.loc.location.libraryCode==='E02') {
- return "https://go.epfl.ch/library";
- } else {
- return vm.biblinkBase;
- }
- }
- vm.view = vm.parentCtrl.configurationUtil.vid.replace(':', '-');
- vm.getLibrary = function() {
- // return vm.parentCtrl.currLoc.location.librarycodeTranslation;
- return vm.parentCtrl.currLoc ? vm.parentCtrl.currLoc.location.librarycodeTranslation : '';
- }
- console.log(vm);
-
- }]);
-
- app.component('prmLocationItemsAfter', {
- bindings: { parentCtrl: '<' },
- controller: 'LibInfoController',
- controllerAs: 'ctrl',
- template: `<div layout="row" class="LibInfo" layout-align="start center"><span class="md-subhead"><a ng-href="{{ ctrl.getLibraryUrl() }}" target="_blank"><img width="20px" ng-src="/discovery/custom/{{ ctrl.view }}/img/information.png" />{{ ctrl.getLibrary() }}</a></span></div>`
- });
-
-
-
- //--------ILL Signin Order - if logged out ---------------------------------------
- app.service('userService', ['jwtHelper', function (jwtHelper) {
- this.isGuest = function () {
- var jwt = sessionStorage.getItem('primoExploreJwt');
- if (!jwt) {
- return true;
- }
- var decodedToken = jwtHelper.decodeToken(jwt);
- let userName = decodedToken.userGroup !== 'GUEST' ? decodedToken.userName : '';
- if (userName) {
- return false
- }
- else {
- return true;
- }
- }
- /* ----------------------------------- */
- /* - Ajout pour obtenir l'adresse IP - */
- this.getIP = function () {
- var jwt = sessionStorage.getItem('primoExploreJwt');
- if (!jwt) {
- return;
- }
- return jwtHelper.decodeToken(jwt).userIp;
- }
-
-
- /* --------- Fin de l'ajout --------- */
- /* ---------------------------------- */
-
- }])
-
-
- app.controller('IllBoxController', ['$scope', 'userService', function ($scope, userService) {
-
- $scope.usrNme = userService.isGuest();
-
- if ($scope.usrNme == true) {
- var myEl = angular.element(document.querySelector('primo-explore'));
- return myEl.addClass('logged-out')
- }
-
- else {
- var myEl = angular.element(document.querySelector('primo-explore'));
- return myEl.removeClass('logged-out');
- }
-
-
- }]);
-
- app.component('prmUserAreaExpandableAfter', {
- bindings: { parentCtrl: '<' },
- controller: 'IllBoxController',
- template: ''
- });
-
- app.component('prmTopbarAfter', {
- bindings: { parentCtrl: '<' },
- // controller: 'IllBoxController',
- template: `<div class="main-title"><h1><a href="{{ starturl }}">{{ 'mainTitle' | customTranslate }}</a></h1><h2>{{ 'subTitle' | customTranslate }}</h2></div>`
- });
-
- //----------------------------------------------------------------------------------------------
-
-
- app.controller('AlertMsgController', ['$scope', function ($scope) {
- var vm = this;
- vm.getAlert = getAlert
-
- function getAlert() {
- var ga = vm.parentCtrl.almaHowToGetitService.reqAlert._htmlMsg;
- var myEl2 = angular.element(document.querySelector('primo-explore'));
-
- if (ga.length > 0) {
- return myEl2.addClass('alert');
-
- }
- else {
-
- return myEl2.removeClass('alert');
-
- }
- }
-
- }]);
-
- app.component('almaHowovpAfter', {
- bindings: { parentCtrl: '<' },
- controller: 'AlertMsgController',
- template: '<div style="display:none">{{$ctrl.getAlert()}}</div>'
- });
-
-
-
-})();
diff --git a/primo-explore/custom/41SLSP_EPF-test/showDirectives.txt b/primo-explore/custom/41SLSP_EPF-test/showDirectives.txt
deleted file mode 100644
index 9dcbb56..0000000
--- a/primo-explore/custom/41SLSP_EPF-test/showDirectives.txt
+++ /dev/null
@@ -1 +0,0 @@
-javascript:(function(){var script=document.createElement("SCRIPT");script.src='https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js';script.type='text/javascript';document.getElementsByTagName("head")[0].appendChild(script);var checkReady=function(callback){if(window.jQuery){callback(jQuery)}else{window.setTimeout(function(){checkReady(callback)},100)}};checkReady(function($){$('primo-explore').find('*[parent-ctrl="ctrl"]').each(function(){$(this).append('<a href="#" title="'+$(this)[0].outerHTML.replace(/</g,'').replace(/>/g,'').replace(/\//g,'').replace(/"/g,'').replace(/parent-ctrl.*/g,'').replace(/-([a-z])/g,function(m,w){return w.toUpperCase()})+'" style="display:block;height:auto;color:black;">Hover for id</a>')})})})();
\ No newline at end of file
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/README.md b/primo-explore/custom/41SLSP_HPH-EPFL/README.md
deleted file mode 100644
index 2a12059..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/README.md
+++ /dev/null
@@ -1,40 +0,0 @@
-
-# The UI Customization Workflow Development Environment
-
-
-##Package documentation
-
-The development package allows you to configure :
-
-- css
-
-- images
-
-- html
-
-- JavaScript
-
-- The root directory of the package should be named either by the `viewCode` or `CENTRAL_PACKAGE` in case of a consortia level package
-- Whether you develop a consortia level package or a view level package the process remains the same
-- Once deployed the hierarchy is as follows:
- 1. For css - use the cascading ability of css and load the consortia level (CENTRAL_PACKAGE) css first and the view level css afterwards
- 2. For images and html - the system checks for every file if it exists in each level - and prefers the view level file if exists
- 3. For JavaScript - the two package types define 2 different Angular modules:
- - ```var app = angular.module('viewCustom', ['angularLoad']);```
- - ```var app = angular.module('centralCustom', ['angularLoad']);```
-
- and loads both of the modules,
-
-- For each configuration type there is a specified folder in the custom package folder (that can be downloaded form your Primo Back Office)
-- In each folder you will find a specific README.md file with recipes/examples.
-
-
-
-
-
-
-
-
-
-
-
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/colors.json.txt b/primo-explore/custom/41SLSP_HPH-EPFL/colors.json.txt
deleted file mode 100644
index 876cf62..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/colors.json.txt
+++ /dev/null
@@ -1 +0,0 @@
-{"primary":"#ff0000","secondary":"#292929","backgroundColor":"#ffffff","links":"#14413c","warning":"#FFB816","positive":"#029986","negative":"#808080","notice":"#e08303"}
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/css/README.md b/primo-explore/custom/41SLSP_HPH-EPFL/css/README.md
deleted file mode 100644
index 71d9441..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/css/README.md
+++ /dev/null
@@ -1,129 +0,0 @@
-# The Primo New UI Customization Workflow Development Environment
-
-
-##css documentation
-
-- Primo uses Angular Directives massively in this project
-
-- To learn more about directives see:
-> https://docs.angularjs.org/guide/directive
-
-- Primo uses external directives from the Angular-material framework :
-> https://material.angularjs.org/latest/
-
-- Those directives are tagged by a prefix : "md-"
-
-- Primo also creates its own directives which are tagged by the "prm-" prefix.
-
-
-Example:
-```
- <header layout="column" layout-fill class="topbar-wrapper">
- <prm-topbar>
- </prm-topbar>
-
- <prm-search-bar (search-event)="prmSearch.onSearchBarSearchEvent()">
- </prm-search-bar>
-
- <md-progress-linear class="header-progress-bar animation-scale-up-down" md-mode="indeterminate" ng-show="prmSearch.searchInProgress">
- </md-progress-linear>
-
- </header>
-```
-
-
-- You can see in the example how we use :
-
-1. An HTML5 tag - header
-2. A Primo directive : prm-topbar , prm-search-bar.
-3. An external material design directive : md-progress-bar :
-> https://material.angularjs.org/latest/api/directive/mdProgressLinear
-
-
-
-- When defining css rules it is important to understand the css cascading/specifity logic:
-
-> http://www.w3.org/TR/css3-cascade/
-
-> https://specificity.keegan.st/
-
-
-
-
-- When you start working on customizing your css be aware of the ability to define css selectors based on the directive name, which is actually equivalent
-to an html tag - this will enable you changing the design of a component cross-system without relying on id's/classes
-
-- For the example above we can define selectors:
-
-```
-prm-topbar input {....}
-prm-topbar.md-primoExplore-theme input {....}
-```
-- Primo is using a theme inside angular-material to define a palette of colors see:
-> https://material.angularjs.org/latest/Theming/01_introduction
-
-
-- This means that you will often encounter a class "md-primoExplore-theme" attached to elements.
-
-
-
-##Recipes/Examples:
-
-
-# css Recipe 1 - Color Scheme
-
-- Open a new command line window
-
-- cd to the project base directory (C:\**\**\primo-explore-devenv)
-- Run `gulp css-colors` to save the OTB css file
-- Run `css-color-extractor primo-explore/tmp/app.css --format=css > primo-explore/tmp/colors.css` to extract the color definitions from the OTB css file and copy the css rules to primo-explore/custom/css/custom1.css
-
-
-Run the following steps repeatedly until you are satisfied with the result
-
-
-- Choose a color from the interface (using your browsers' dev tools or extensions such as colorzilla)
-
-
-- Choose the new color from your library color scheme
-- Replace all values in the custom1.css file
-- Save and refresh your browser
-
-
-
-# css Recipe 2 - Moving the Facets to the Left
-
-
-- Select the parent container containing the search result and the facets
-- Copy the selector definition using your browsers' dev tools
-- Define the container as
-```
-display:flex;
-flex-flow:row-reverse;
-```
-
-
-- complete css definition:
-```
-prm-search > md-content.md-primoExplore-theme .main {
- display: -webkit-flex; !* Safari *!
- -webkit-flex-flow: row-reverse wrap; !* Safari 6.1+ *!
- display: flex;
- flex-flow: row-reverse wrap;
-
-}
-.screen-gt-sm .sidebar{
- webkit-flex: 0 0 15%;
- flex: 0 0 15%;
-}
-```
-- Save and refresh your browser
-
-
-
-
-
-
-
-
-
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/css/collection.css b/primo-explore/custom/41SLSP_HPH-EPFL/css/collection.css
deleted file mode 100644
index dfb8157..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/css/collection.css
+++ /dev/null
@@ -1,6 +0,0 @@
-/* Affichage des collections */
-
-/* Supprime le chevauchement du titre */
-prm-collection-gallery-header .collection-header-inner.has-transparent-topbar{
- margin-top: 0px !important;
-}
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/css/custom1.css b/primo-explore/custom/41SLSP_HPH-EPFL/css/custom1.css
deleted file mode 100644
index 0b07473..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/css/custom1.css
+++ /dev/null
@@ -1,980 +0,0 @@
-/* Affichage des collections */
-
-/* Supprime le chevauchement du titre */
-prm-collection-gallery-header .collection-header-inner.has-transparent-topbar{
- margin-top: 0px !important;
-}
-
-
-/******************************************************************************/
-/******************************************************************************/
-/******************************************************************************/
-/*************************** Central Package CSS ******************************/
-/******************************************************************************/
-/******************************************************************************/
-/******************************************************************************/
-
-
-/*************** Navigation ******************/
-
-/*Font Navigation and buttons*/
-#mainMenu > div > a, button#signInBtn, button#more-links-button, prm-topbar > div > prm-user-area-expandable > md-menu > button > span {
- font-size: small !important;
- font-weight: 500 !important;
- color: #111 !important;
-}
- /*hover effect Navigation and buttons*/
- #mainMenu > div > a:hover, button#signInBtn:hover, prm-topbar > div > prm-user-area-expandable > md-menu > button:hover, button#more-links-button:hover,
- prm-search-bookmark-filter > a:hover, a#favorites-button:hover, a#search-button:hover, .md-button.button-as-link:hover:not([disabled]),
- .md-button.button-link:hover:not([disabled]), .md-button.button-link:focus:not([disabled]), prm-user-area-expandable .button-with-menu-arrow:hover .menu-arrow:hover:not([disabled]),
- button.item-expand-button.md-button.md-primoExplore-theme.md-ink-ripple:hover:not([disabled]),
- button.item-expand-button.md-button.md-primoExplore-theme.md-ink-ripple:focus:not([disabled]) {
- background-color: #ddd !important;
- color: #111 !important;
- }
-/*remove capitalized text*/
-.md-button {
- text-transform: none;
-}
- /*Menu button*/
- button.button-with-menu-arrow.md-button.md-primoExplore-theme.md-ink-ripple:hover, button#signInBtn, .md-button.button-link,
- .md-button.button-as-link.link-alt-color, prm-icon md-icon, .section-title prm-icon, prm-icon.rotate-180, svg#chevron-up,
- span.user-name, span.menu-arrow, .md-button.button-as-link, #sidebar-trigger > prm-icon > md-icon {
- color: #111 !important;
- }
-/*hide hover effect on Library Logo*/
-#banner > a.md-button.md-primoExplore-theme.md-ink-ripple:hover {
- background: none;
-}
-/*background buttons*/
-prm-search-bookmark-filter .md-button {
- background-color: #fff !important;
-}
-/*hiding Refworks from the pulldown menu*/
-.my-refworks-ctm, .my-refworks-separator-ctm {
- display: none;
-}
-/*switch to advanced search button*/
-button.switch-to-advanced.zero-margin.button-with-icon.md-button.md-primoExplore-theme.md-ink-ripple {
- border-style: solid;
- border-width: 1px;
- border-radius: 5px;
-}
-
-.md-button.button-as-link {
- line-height: 36px;
- padding: 0 12px;
-}
-
-.md-button.md-primary:hover:not([disabled]), .md-button.md-primary:focus:not([disabled]), prm-favorites-labels .md-chips .md-chip.toggleable-chip:not(.chip-toggled-on) .md-chip-content:hover:not([disabled]), prm-favorites-labels .md-chips .md-chip:not(.chip-toggled-on) .md-chip-content:hover:not([disabled]), .bar prm-authentication .md-button:hover:not([disabled]), button.dismiss-alert-button:hover {
- color: #fff;
- background-color: #111;
-}
-
-/*the main color border on mobile view*/
-@media (max-width: 599px) {
- prm-topbar .top-nav-bar {
- border-bottom-style: solid;
- border-bottom-width: 8px;
- }
-}
-
-.md-button.button-as-link {
- line-height: 36px;
- padding: 0 6px;
-}
-
-.md-autocomplete-suggestions li {
- white-space: nowrap;
-}
-
-
-/*************** Main Content ******************/
-
-/*backgound of the Textboxes Homepage*/
-prm-search > div > md-content, md-card.default-card._md.md-primoExplore-theme {
- background-color: #fff !important;
- border-radius: 3px;
-}
-
-/*first header of the Textboxes*/
-.cardbox h1 {
- font-size: 48px;
- line-height: 56px;
-}
-
-/*second header of the Textboxes*/
-.cardbox h2 {
- font-size: 32px;
- line-height: 36px;
-}
-/*third header of the Textboxes (if needed)*/
-.cardbox h3 {
- font-size: 26px;
- line-height: 30px;
-}
-
-/*removes the upper and lower space in a list */
-.cardbox ul, .cardbox ol {
- margin-top: 0px !important;
- margin-bottom: 0px !important;
-}
-/*links in the textboxes*/
-md-card-content a, prm-service-details a {
- color: #222222 !important;
-}
-
-md-card-content a, prm-service-details a, div.courier-info > span a {
- text-decoration: underline !important;
-}
-
- md-card-content a:hover, prm-service-details a:hover {
- color: #111;
- background-color: rgba(47, 47, 47, 0.1) !important;
-}
-
-/*Responsive Video Frame*/
-.resp-container {
- position: relative;
- overflow: hidden;
- padding-top: 56.25%;
-}
-
-.resp-iframe {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- border: 0;
-}
-
-/*footer layout*/
-md-card.prm-primary-bg.psfooter {
- margin: 16px 0 0 0;
-}
-/*footer layout*/
-md-card.prm-primary-bg.psfooter-legal {
- margin: 1px 0 0 0;
-}
-/*Responsive footer layout*/
-@media (min-width: 960px) {
-
- md-card-content.prm-primary-bg.layout-align-gt-sm-end-stretch.flex-gt-sm-70 {
- text-align: end;
- }
-}
-/*footer links*/
-md-icon.ps_icon, a.ps_link {
- margin-right: 5%;
- text-decoration: underline;
-}
-
- /*md-icon.ps_icon:hover, a.ps_link:hover, a.ps_link.legal:hover, span.legal a:hover {
- background-color: rgba(61,110,148,.1) !important;
- }*/
-
-
-/*footer text*/
-md-card-content.prm-primary-bg {
- font-weight: 300;
-}
-
-
-/*links in the legal part of the footer*/
-a.ps_link.legal, span.legal {
- font-size: 14px;
- font-weight: 300;
-}
-
- /************************************************************************************************
-span.legal {
- color: #14413c;
-}
-*/
- span.legal > a {
- /*color: #14413c;*/
- font-weight: 600;
- }
-
-/*main container width for footer positioning*/
-prm-static.md-padding.flex {
- min-width: 100%;
- padding: 0;
-}
-
-/*mainly white background*/
-.prm-primary-bg.prm-hue1, prm-atoz-search-bar.prm-hue1, prm-browse-search-bar.prm-hue1, prm-collection-gallery-header .prm-hue1.collection-header-inner, prm-newspapers-search-bar.prm-hue1, prm-search-bar.prm-hue1, prm-spinner.prm-hue1.overlay-cover.light-on-dark:after, prm-tags-search-bar.prm-hue1, prm-topbar .top-nav-bar, prm-tree-nav prm-spinner .prm-hue1.diamond {
- background-color: #fff !important;
-}
-
-
-/*font color on white background*/
-.hoverable-over-dark, .md-button.button-over-dark, prm-main-menu[menu-type=full] .md-button.md-focused, prm-main-menu[menu-type=full] .md-button .md-input-container-dummy > .md-select-dummy:focus, prm-main-menu[menu-type=full] .md-button:focus, prm-main-menu[menu-type=full] .md-button:hover, prm-main-menu[menu-type=full] .md-button md-select:focus, prm-main-menu[menu-type=full] .overlay-menu-item.md-focused, prm-main-menu[menu-type=full] .overlay-menu-item .md-input-container-dummy > .md-select-dummy:focus, prm-main-menu[menu-type=full] .overlay-menu-item:focus, prm-main-menu[menu-type=full] .overlay-menu-item:hover, prm-main-menu[menu-type=full] .overlay-menu-item md-select:focus, prm-main-menu[menu-type=full] md-button:focus, prm-main-menu[menu-type=full] md-button:hover, prm-topbar .md-button, prm-user-area .md-button.user-menu-button, prm-user-area md-fab-toolbar ._md-fab-action-item .md-button, prm-user-area md-fab-toolbar ._md-fab-action-item md-input-container, prm-user-area md-fab-toolbar .md-fab-action-item .md-button, prm-user-area md-fab-toolbar .md-fab-action-item md-input-container {
- color: #222 !important;
-}
-
-/*************** Brief results ******************/
-
-/*color of the Alertbar*/
-.bar.alert-bar, .classic-input .search-scope, .prm-alert-bg {
- /*background-color: #8dd8d8 !important;*/
- border: none !important;
-}
-
-/*backgound search results boxes*/
-.list-item-wrapper {
- background-color: #f9f9f9;
-}
-/*Title color*/
-prm-brief-result .item-title span {
- color: #333;
-}
-
- prm-brief-result .item-title span:hover {
- color: #111;
- background-color: rgba(47, 47, 47, 0.1) !important;
- }
-
-/*remove hover effect from title links*/
-.md-button.arrow-link-button .button-content:focus, .md-button.arrow-link-button .button-content:hover, .md-button.arrow-link-button .hover.button-content, .md-button.arrow-link-button:focus .button-content, .md-button.arrow-link-button:hover .button-content, .recommendations-title.hover > span > span, .recommendations-title:hover > span > span, a.hover, a:focus, a:hover, prm-chapters-and-reviews md-card > .md-button:focus .item-title span, prm-chapters-and-reviews md-card > .md-button:hover .item-title span, prm-citation-trails-item.active-item md-card > .md-button:focus .item-title span, prm-citation-trails-item.active-item md-card > .md-button:hover .item-title span, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong, prm-tags-list .md-chips md-chip .md-chip-content:hover strong, prm-tags-list md-chips .md-chip .md-chip-content:hover strong, prm-tags-list md-chips md-chip .md-chip-content:hover strong {
- box-shadow: none !important;
-}
-
-/*background color of bookmarked items*/
-.list-item-wrapper .item-bookmarked, .list-item-wrapper .item-bookmarked:hover, .prm-highlight, .prm-highlight.prm-hue1, prm-breadcrumbs .md-chip.persistent-facet, prm-breadcrumbs .prm-hue1.md-chip.persistent-facet {
- background-color: #ddd !important;
-}
-
-/*hover effect on all Links*/
-.md-button.arrow-link-button .button-content:focus, .md-button.arrow-link-button .button-content:hover, .md-button.arrow-link-button .hover.button-content,
-.md-button.arrow-link-button:focus .button-content, .md-button.arrow-link-button:hover .button-content, .prm-links-background.prm-hue-1,
-.recommendations-title.hover > span > span, .recommendations-title:hover > span > span, a.hover, a:focus, a:hover,
-prm-chapters-and-reviews md-card > .md-button:focus .item-title span, prm-chapters-and-reviews md-card > .md-button:hover .item-title span,
-prm-citation-trails-item.active-item md-card > .md-button:focus .item-title span, prm-citation-trails-item.active-item md-card > .md-button:hover .item-title span,
-prm-tags-list .md-chips .md-chip .md-chip-content:hover strong, prm-tags-list .md-chips md-chip .md-chip-content:hover strong,
-prm-tags-list md-chips .md-chip .md-chip-content:hover strong, prm-tags-list md-chips md-chip .md-chip-content:hover strong {
- color: #222 !important;
-}
-
-div.custom-links-container.layout-wrap.layout-align-sm-start-start.layout-align-center-start.layout-row > div > a:hover {
- background-color: #6b6b6b !important;
-}
-
-/*Facet titles*/
-span.section-title-header:hover {
- color: #8a8a8a !important;
-}
-/*underlined search results*/
-/*.text-highlight, mark {
- box-shadow: inset 0 -0.15em 0 0 #8dd8d8;
-}*/
-
-/*versions link and other*/
-.getit, .md-button.arrow-link-button prm-search-result-frbr-line .button-content > prm-icon:first-child, .prm-notice, .status-maybe, .worldcat, [class*=_more], [class*=_unknown], [class*=check_], [class*=does_not_exist], [class*=may_], [class*=NFT], prm-search-result-frbr-line .md-button.arrow-link-button .button-content > prm-icon:first-child, prm-search-result-frbr-line a > prm-icon:first-child, prm-service-links a {
- color: #222 !important;
-}
-/*icon color and text color in request forms*/
-.prm-primary-color, .request-form md-input-container label, .request-form md-input-container label:not(.md-no-float):not(._md-container-ignore), .request-form md-input-container md-select .md-select-value.md-select-placeholder, .request-form md-input-container .md-input-container-dummy > .md-select-dummy .md-select-value.md-select-placeholder, .request-form md-input-container md-select ._md-select-value._md-select-placeholder, .request-form md-input-container .md-input-container-dummy > .md-select-dummy ._md-select-value._md-select-placeholder, .result-item-actions .md-icon-button, .result-item-actions .more-options-button, prm-add-query-to-saved-searches .custom-button, prm-pre-filters md-input-container.is-active, .md-autocomplete-suggestions .suggestion-scope, md-tab-content .tab-content-header md-input-container md-select-value .md-text {
- color: #222 !important;
-}
-/*space between item details in Fullview*/
-#item-details > div > div {
- margin-bottom: .8em !important;
-}
-
-/*View Results Journals - Item Details*/
-prm-location-items .md-list-item-text.layout-wrap.layout-row.flex {
- flex-direction: column;
-}
-prm-location-items h3, prm-location-items h4 {
- margin:10px 0 !important;
-}
-prm-location-items > md-list > md-list-item > div > div.md-list-item-text > div.weak-text > div > div > p {
- margin: 4px 18px !important;
- display: list-item;
-}
-prm-location-items > md-list > md-list-item > div > div > div.layout-wrap {
- flex-direction: row !important;
- justify-content: flex-start !important;
- max-width: 100% !important;
-}
-prm-location-items > md-list > md-list-item > div > div > div > div > prm-service-button > button {
- box-shadow: inset 0 -0.15em 0 0 #8dd8d8;
-}
-
-/* Hide "search inside" for print journals */
-.search-within-p-only { display:none }
-
-/*fullview background of the left part*/
-.md-dialog-container.fixed-container {
- background-color: #444 !important;
-}
-
-/*background color of the signin window and the fullscreen navigation*/
-md-backdrop._md-dialog-backdrop.md-opaque.md-primoExplore-theme {
- background-color: #1f1f1f !important;
-}
-/*text color of the signin window and the fullscreen navigation*/
-prm-main-menu[menu-type=full] .md-button .md-headline, prm-main-menu[menu-type=full] .overlay-menu-item .md-headline, .light-on-dark-dialog .md-button.button-as-link, .light-on-dark-dialog .md-button.button-confirm, md-dialog.light-on-dark-dialog md-list md-list-item.list-login .md-button {
- color: #fff !important;
-}
-/*hiding the Library Logo in the login window*/
-.login-header {
- display: none !important;
-}
-/*alertbar for the courier info*/
-
-.courier-info {
- margin: 0px 8px;
-}
-
-.courier-info.bar.alert-bar {
- height: unset;
- margin: 6px 8px;
- padding: .5em .5em 0.25em;
- text-align: center;
-}
-
-/*Library info icon*/
-prm-location-items-after > div > span > a > img {
- vertical-align: middle;
- max-width: 30px;
- margin: 4px 12px;
-}
-
-/*Library card Personal details display*/
-#personalDetails > md-card-content > div {
- flex-flow: column;
-}
-
-#personalDetails .md-input-has-value.layout-column {
- min-width: 400px;
-}
-
-prm-personal-info-after {
- display: flex;
-}
-
-/*Full view Resource sharing */
-
-#getit_link1_0 > div > prm-full-view-service-container > div.section-body > div {
- display: flex;
- flex-direction: column;
-}
-
-prm-opac {
- order: 1;
-}
-
-prm-alma-other-members {
- order: 2;
- display: grid;
-}
-
-alma-htgi-svc {
- order: 3;
-}
-
-primo-explore.logged-out alma-htgi-svc, primo-explore.alert alma-htgi-svc {
- order: 0 !important;
-}
-
-.medium-uppercase-bold {
- text-transform: none;
- font-size: 1em;
-}
-
-/*Full view Resource sharing expand section*/
-
-prm-alma-other-units button.layout-fill, prm-alma-other-members button.layout-fill {
- height: auto;
- min-height: auto;
-}
-
-/* Full view change sections order */
-
-#full-view-container >*:first-child {
- display: flex;
- flex-direction: column;
-}
-
-#brief {
- order: 0 !important;
-}
-
-#details {
- order: 3 !important;
-}
-
-#links {
- order: 4 !important;
-}
-
-#getit_link1_0 {
- order: 1 !important;
-}
-
-#action_list {
- order: 2 !important;
-}
-
-#virtualBrowse {
- order: 5 !important;
-}
-
-/* Change of links in left navigation bar ENG */
-
-[aria-label="Top"] {
- order: 0 !important;
-}
-
-[aria-label="Details"] {
- order: 4 !important;
-}
-
-[aria-label="Links"] {
- order: 5 !important;
-}
-
-[aria-label="Loan and request options"] {
- order: 1 !important;
-}
-
-[aria-label="Send to"] {
- order: 3 !important;
-}
-
-[aria-label="Virtual Browse"] {
- order: 6 !important;
-}
-
-[aria-label="View Online"] {
- order: 2 !important;
-}
-
-/* Change of links in left navigation bar GER */
-
-[aria-label="Top"] {
- order: 0 !important;
-}
-
-[aria-label="Details"] {
- order: 4 !important;
-}
-
-[aria-label="Links"] {
- order: 5 !important;
-}
-
-[aria-label="Ausleih- und Bestelloptionen"] {
- order: 1 !important;
-}
-
-[aria-label="Senden an"] {
- order: 3 !important;
-}
-
-[aria-label="Virtuelles Regal"] {
- order: 6 !important;
-}
-
-[aria-label="Online ansehen"] {
- order: 2 !important;
-}
-
-/* Change of links in left navigation bar FRE */
-
-[aria-label="Haut"] {
- order: 0 !important;
-}
-
-[aria-label="D&#233;tails"] {
- order: 4 !important;
-}
-
-[aria-label="Liens"] {
- order: 5 !important;
-}
-
-[aria-label="Options de pr&#234;t et de demande"] {
- order: 1 !important;
-}
-
-[aria-label="Envoyer vers"] {
- order: 3 !important;
-}
-
-[aria-label="Etag&#232;re virtuelle"] {
- order: 6 !important;
-}
-
-[aria-label="Consulter en ligne"] {
- order: 2 !important;
-}
-
-/* Change of links in left navigation bar ITA */
-
-[aria-label="Top"] {
- order: 0 !important;
-}
-
-[aria-label="Dettagli"] {
- order: 4 !important;
-}
-
-[aria-label="Link"] {
- order: 5 !important;
-}
-
-[aria-label="Opzioni di prestito e richiesta"]{
- order: 1 !important;
-}
-
-[aria-label="Invia a"] {
- order: 3 !important;
-}
-
-[aria-label="Scorri virtualmente"] {
- order: 5 !important;
-}
-
-[aria-label="Visualizza online"] {
- order: 2 !important;
-}
-
-/******************************************************************************/
-/************************************ Help Page *******************************/
-/******************************************************************************/
-#help img {
- max-width: 100%;
- height: auto;
-}
-
-img.icon_up1 {
- width: 16px;
- float: right;
- margin: 13px 2px;
-}
-
-img.icon_up2 {
- width: 10px;
- float: right;
- margin: 4px;
-}
-
-a > h3:hover {
- background-color: #eee !important;
-}
-
-
-/******************************************************************************/
-/******************************************************************************/
-/******************************************************************************/
-/********************** End of the Central Package CSS ************************/
-/******************************************************************************/
-/******************************************************************************/
-/******************************************************************************/
-
-/******************************************************************************/
-/******************************************************************************/
-/******************************************************************************/
-/*************************** EPFL CUSTOM COLORS *******************************/
-/******************************************************************************/
-/******************************************************************************/
-/******************************************************************************/
-
-/* This file contains the EPFL part of the custom package. The SLSP part is in
- the custom_slsp.css file. */
-
-/*****************This two entries are the background of the primary color*******************/
-
-prm-primary-bg, prm-atoz-search-bar, prm-browse-search-bar, prm-collection-gallery-header .collection-header-inner, prm-search-bar, prm-newspapers-search-bar,
-prm-spinner.overlay-cover.light-on-dark:after, prm-tags-search-bar, prm-tree-nav prm-spinner .diamond, .prm-primary-bg, md-checkbox.md-checked .md-icon,
-md-tabs md-ink-bar, md-radio-button.md-checked .md-on, button.switch-to-simple, .md-button.button-confirm {
- background-color: #ff0000 !important;
-}
-
-/* Suppression configuration master template */
-prm-request-services .md-button.button-as-link{
- background-color: unset !important;
-}
-
-md-tabs.tabs-as-app .back-button {
- background-color: #777 !important;
- line-height: 24px !important;
- min-height: 24px !important;
- margin: 4px 0 !important;
-}
-
-@media (max-width: 599px) {
- prm-topbar .top-nav-bar {
- border-color: #ff0000 !important;
- }
-}
-
-/*.search-actions button{
- background-color: #fff !important;
- color: #222;
-} */
-
-
-/*****************This entry is the mouse over background of the links and buttons*******************/
-md-card.prm-primary-bg.psfooter > md-card-content a:hover, md-icon.ps_icon:hover, a.ps_link:hover, a.ps_link.legal:hover, span.legal a:hover, button.switch-to-advanced:hover,
-button.switch-to-simple:hover, .md-button.button-confirm:hover {
- background-color: #ae0010 !important;
-}
-
-.md-button.button-as-link:hover:not([disabled]){
- background-color: unset !important;
-}
-
-md-tabs.tabs-as-app .back-button:hover:not([disabled]){
- background-color: #555 !important;
-}
-
-/*****************This two entries are the font color of the primary color*******************/
-.prm-primary-bg, prm-atoz-search-bar, prm-browse-search-bar, prm-collection-gallery-header .collection-header-inner, prm-newspapers-search-bar,
-prm-spinner.overlay-cover.light-on-dark:after, prm-tags-search-bar, prm-tree-nav prm-spinner .diamond, .prm-primary-bg, md-checkbox.md-checked .md-icon:after, .md-button.switch-to-advanced, button.switch-to-simple,
-span.legal, span.legal > a, a.ps_link.legal, .ps_icon, md-card.prm-primary-bg.psfooter > md-card-content a, .md-button.button-confirm, md-tabs.tabs-as-app .back-button, prm-request-services .md-button.button-as-link {
- color: #fff !important;
- }
-
-
-button.switch-to-advanced.zero-margin.button-with-icon.md-button.md-primoExplore-theme.md-ink-ripple {
- border-color: #c1c1c1 !important;
-}
-
-
-
-/*****************This two entries are the background of the secondary color*******************/
-
-.bar.alert-bar, .classic-input .search-scope, .prm-alert-bg {
- background-color: #ffcccc !important;
-}
-
-.text-highlight, mark {
- box-shadow: inset 0 -0.15em 0 0 #ff0000 ;
-}
-
-
-/*****************This entry is the font color of the secondary color*******************/
-
-.bar.alert-bar, .classic-input .search-scope, .prm-alert-bg, .bar prm-authentication .md-button, button.dismiss-alert-button, div.courier-info > span a {
- color: #111111 !important;
-}
-
-/*****************Selected text color*******************/
-
-::selection {
- background: #ffbe8f; /* WebKit/Blink Browsers */
-}
-::-moz-selection {
- background: #ffbe8f; /* Gecko Browsers */
-}
-
-/*****************This entry remove default color from various texts*******************/
-
-md-dialog.light-on-dark-dialog .md-list[class$="-line"] md-list-item .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog .md-list[class$="-line"] md-list-item .md-list-item-text h3, md-dialog.light-on-dark-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3, md-dialog.light-on-dark-dialog .md-list md-list-item .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog .md-list md-list-item .md-list-item-text h3, md-dialog.light-on-dark-dialog .md-list md-list-item > .md-no-style .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog .md-list md-list-item > .md-no-style .md-list-item-text h3, md-dialog.light-on-dark-dialog md-list md-list-item .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog md-list md-list-item .md-list-item-text h3, md-dialog.light-on-dark-dialog md-list md-list-item > .md-no-style .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog md-list md-list-item > .md-no-style .md-list-item-text h3, md-button.arrow-link-button md-dialog.light-on-dark-dialog .button-content, md-dialog.light-on-dark-dialog .md-button.arrow-link-button .button-content, md-dialog.light-on-dark-dialog a{
- color: #ffcccc !important;
-}
-
-/*Bouton pour confirmer une demande*/
-prm-request button.md-button.button-confirm, span[translate="fulldisplay.locations.showmore"], .courier-info .button-confirm {
- background-color: #080 !important;
- border-radius: 2px;
-}
-prm-request button.md-button.button-confirm:hover, span[translate="fulldisplay.locations.showmore"]:hover, .courier-info .button-confirm:hover {
- background-color: #050 !important;
-}
-
-span[translate="fulldisplay.locations.showmore"]{
- line-height: 24px !important;
- padding: 5px 8px;
- margin: 4px 0 !important;
- color: white;
- border-radius: 2px;
-}
-/* Suppression du fond du bouton + d'exemplaires */
-prm-location-items .md-button.button-link:hover:not([disabled]){
- background-color: transparent !important;
-}
-
-button[ng-hide="!$ctrl.currLoc.isMore"] {
- background-color: transparent !important;
-}
-/* Fix SLSP pour la couleur du bouton secondaire */
-.bar prm-authentication .md-button:hover:not([disabled]), button.dismiss-alert-button:hover{
- background-color:#ffdddd !important;
- border: 1px solid #ae0010;
-}
-
-/* Fix SLSP pour le bouton ""élargir" */
-button.item-expand-button.md-button.md-primoExplore-theme.md-ink-ripple{
- background-color: #D3D3D3!important;
-}
-
-/*****************This entry remove default color from various forms*******************/
-
-.md-input-color-underline, .new-result-item .list-item-count, .prm-secondary-bg.prm-hue1,
-md-input-container.empty-select-on-init:not(.md-input-focused) .md-input-container-dummy > .md-select-dummy md-select-value::after,
-md-input-container.empty-select-on-init:not(.md-input-focused) md-select md-select-value::after, md-input-container::after,
-md-progress-linear[md-mode="indeterminate"].header-progress-bar .prm-hue1.md-bar, md-radio-button.md-checked ._md-on,
-md-radio-button.md-checked .md-on, md-tabs md-ink-bar, prm-tags-list .md-chips ._md-chip-input-container::after,
-prm-tags-list .md-chips .md-chip-input-container::after, prm-tags-list md-chips ._md-chip-input-container::after,
-prm-tags-list md-chips .md-chip-input-container::after {
- background-color: #ff0000 !important;
-}
-
-
-md-card.psfooter, md-card.psfooter-legal,
-md-card.psfooter > md-card-content.prm-primary-bg, md-card.psfooter-legal > md-card-content.prm-primary-bg,
-md-card.prm-primary-bg.psfooter > md-card-content a:hover, md-card.prm-primary-bg.psfooter-legal > md-card-content a:hover{
- background-color: #d6d6d6 !important;
-}
-
-md-card.psfooter md-card-content, md-card.psfooter-legal md-card-content,
-md-card.prm-primary-bg.psfooter > md-card-content a, md-card.prm-primary-bg.psfooter-legal > md-card-content a,
-md-card.prm-primary-bg.psfooter-legal span.legal {
- color: #3a3a3a !important;
-}
-
-md-card.prm-primary-bg.psfooter > md-card-content a:hover, md-card.prm-primary-bg.psfooter-legal > md-card-content a:hover {
- color: #ff0000 !important;
-}
-
-/* Couleur rouge pour les logos téléphone, mail, etc. */
-.puce{
- text-decoration: none !important;
-}
-.puce > span:first-child{
- color: #ff0000;
- fill: #ff0000;
-}
-h1.md-headline{
- font-size: 36px;
- line-height: 42px;
-}
-h2.md-headline{
- font-size: 28px;
- line-height: 34px;
-}
-md-content.epfl-row {
- justify-content: center;
-}
-.epfl-row md-card-title{
- flex: none;
-}
-.epfl-row md-card {
- height: 100%;
-}
-.epfl-social a{
- text-decoration: none !important;
-}
-
-/* Augmente l'espace pour réduire la probabilité de clic sur le lien */
-prm-login md-list md-list-item:first-child p[translate="parallel.login.description1"]{
- margin-top:15px !important;
-}
-
-/* Réduit la taille du lien Alma */
-prm-login md-list md-list-item:last-child {
- font-size: x-small !important;
-}
-
-prm-account-links-after div {
- display: flex;
- align-items: center;
- margin-top: 10px;
-}
-prm-account-links-after img{
- margin-right: 5px;
-}
-
-
-/* Empêcher les retours à la ligne pour les cotes */
-span[ng-if="$ctrl.location.callNumber"]{
- white-space: nowrap
-}
-
-/*****************This entry adapt the message fee*******************/
-
-.feemsg {
- background-color: #ffcccc;
- border-radius: 3px;
- padding: 8px;
-}
-
-.feemsg>div {
- margin-left: 10px;
-}
-
-.bigfont {
- font-size: 20px;
-}
-
-
-/* Bouton de la recherche avancée */
-.search-switch-buttons span{
- font-variant: small-caps;
- font-size: 1.15em;
-}
-.search-switch-buttons button{
- border: none !important;
-}
-
-/* Message d'alerte */
-prm-search-bar>div {
- height: inherit !important;
- min-height: inherit !important;
-}
-prm-search-bar-after>div {
- background-color: #fff !important;
- margin-top: 20px;
- padding: 10px 15px;
-}
-prm-search-bar-after p {
- margin: 0 12px;
-}
-.info-symbol::before {
- content: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 34 34' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Crect fill='%234a90e2' width='34' height='34' rx='4'/%3E%3Cpath d='M17 25V15M17 13V9' stroke='%23FFF' stroke-width='4'/%3E%3C/g%3E%3C/svg%3E");
- width: 24px;
- height: 24px;
- position: absolute;
- display: inline-block;
- top: 50%;
- left: .6rem;
- width: 1.6rem;
- height: 1.6rem;
- margin-top: -.8rem;
-}
-.info-symbol {
- position: relative;
-}
-.info-symbol div {
- margin-left: 50px;
-}
-prm-search-bar-after p {
- padding: .25em 0 .25em;
- margin: 0;
-}
-prm-search-bar-after a {
- color: black;
- text-decoration: underline;
-}
-
-/* Mise en évidence des boutons pour les demandes de service */
-/* span[translate="AlmaRequest"] {
- text-decoration: underline #0B0 3px;
- padding: 2px 6px;
-}
-span[translate="AlmaRequest"]:hover{
- background-color: #050 !important;
- text-decoration: none;
- color: white;
- border-radius: 2px;
-} */
-/* span[translate="nui.request.request"]{
- display: none;
-} */
-
-/* Soulignement des boutons proposant un service */
-prm-service-button button, .greenbutton {
- padding-left: 0px !important;
- padding-right: 0px !important;
-}
-prm-service-button button > span, .greenbutton>span {
- background-color: #080 !important;
- color: white !important;
- padding: 2px 6px;
- border-radius: 2px;
-}
-prm-service-button button > span:hover, .greenbutton>span:hover {
- background-color: #050 !important;
-}
-prm-location-items > md-list > md-list-item > div > div > div > div > prm-service-button > button {
- box-shadow: unset !important;
-}
-/* Alignement de l'intitulé "Demandes" */
-prm-request-services h3.section-title{
- top: 0px;
-}
-
-/* Alignement central des boutons de demande */
-prm-request-services .labeled-block {
- align-items: center;
-}
-
-/* Suppression du sous-titre demande
-span[translate="nui.request.request"]{
- display: none;
-}*/
-
-/* Suppression du bouton PEB
-span[translate="AlmaResourceSharing"]{
- display: none;
-}
-.links-block .separated-block-item::after{
- content: none !important;
-} */
-
-/* Crée la place pour le titre et le sous-titre */
-prm-topbar {
- height: 150px !important;
-}
-prm-main-menu[menu-type="menu"],
-.top-nav-bar,
-prm-search-bookmark-filter
-{
- max-height: 60px !important;
- height: 60px !important;
- min-height: auto !important;
-}
-
-/* Mise en forme du titre et sous-titre */
-.main-title{
- padding: .85em;
- background-color: white;
-}
-.main-title h1{
- font-size: 2em !important;
- margin-bottom: 0;
-}
-.main-title h1 > a{
- color: black;
-}
-prm-main-menu[menu-type="menu"] #mainMenu>div {
- border-bottom: solid #ddd 1px;
-}
-.main-title h2{
- font-size: 1.2em !important;
- font-weight: bold;
-}
-
-/* Adapte le sous-titre lorsque l'écran est relativement petit */
-@media only screen and (max-width: 660px){
- .main-title h2{
- font-size: 1.1em !important;
- }
-}
-
-/* Menu sur les petits écrans */
-prm-main-menu[menu-type="full"] .md-button .md-headline{
- color: #ff9999 !important;
-}
-prm-main-menu .md-subhead{
- display: none;
-}
-.__sm prm-main-menu[menu-type="full"] .settings-container + md-divider{
- margin-top: 6em !important;
-}
-
-/* Menu sur grand écran */
-prm-main-menu[menu-type="menu"] .button-over-dark, prm-topbar .md-button:not(.disable-hover){
- color: #222 !important;
-}
-
-/* Petit triangle du menu */
-prm-user-area-expandable .button-with-menu-arrow:hover .menu-arrow:hover:not([disabled]){
- background-color: inherit;
-}
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/css/custom_slsp.css b/primo-explore/custom/41SLSP_HPH-EPFL/css/custom_slsp.css
deleted file mode 100644
index c2621b1..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/css/custom_slsp.css
+++ /dev/null
@@ -1,570 +0,0 @@
-
-/******************************************************************************/
-/******************************************************************************/
-/******************************************************************************/
-/*************************** Central Package CSS ******************************/
-/******************************************************************************/
-/******************************************************************************/
-/******************************************************************************/
-
-
-/*************** Navigation ******************/
-
-/*Font Navigation and buttons*/
-#mainMenu > div > a, button#signInBtn, button#more-links-button, prm-topbar > div > prm-user-area-expandable > md-menu > button > span {
- font-size: small !important;
- font-weight: 500 !important;
- color: #111 !important;
-}
- /*hover effect Navigation and buttons*/
- #mainMenu > div > a:hover, button#signInBtn:hover, prm-topbar > div > prm-user-area-expandable > md-menu > button:hover, button#more-links-button:hover,
- prm-search-bookmark-filter > a:hover, a#favorites-button:hover, a#search-button:hover, .md-button.button-as-link:hover:not([disabled]),
- .md-button.button-link:hover:not([disabled]), .md-button.button-link:focus:not([disabled]), prm-user-area-expandable .button-with-menu-arrow:hover .menu-arrow:hover:not([disabled]),
- button.item-expand-button.md-button.md-primoExplore-theme.md-ink-ripple:hover:not([disabled]),
- button.item-expand-button.md-button.md-primoExplore-theme.md-ink-ripple:focus:not([disabled]) {
- background-color: #ddd !important;
- color: #111 !important;
- }
-/*remove capitalized text*/
-.md-button {
- text-transform: none;
-}
- /*Menu button*/
- button.button-with-menu-arrow.md-button.md-primoExplore-theme.md-ink-ripple:hover, button#signInBtn, .md-button.button-link,
- .md-button.button-as-link.link-alt-color, prm-icon md-icon, .section-title prm-icon, prm-icon.rotate-180, svg#chevron-up,
- span.user-name, span.menu-arrow, .md-button.button-as-link, #sidebar-trigger > prm-icon > md-icon {
- color: #111 !important;
- }
-/*hide hover effect on Library Logo*/
-#banner > a.md-button.md-primoExplore-theme.md-ink-ripple:hover {
- background: none;
-}
-/*background buttons*/
-prm-search-bookmark-filter .md-button {
- background-color: #fff !important;
-}
-/*hiding Refworks from the pulldown menu*/
-.my-refworks-ctm, .my-refworks-separator-ctm {
- display: none;
-}
-/*switch to advanced search button*/
-button.switch-to-advanced.zero-margin.button-with-icon.md-button.md-primoExplore-theme.md-ink-ripple {
- border-style: solid;
- border-width: 1px;
- border-radius: 5px;
-}
-
-.md-button.button-as-link {
- line-height: 36px;
- padding: 0 12px;
-}
-
-.md-button.md-primary:hover:not([disabled]), .md-button.md-primary:focus:not([disabled]), prm-favorites-labels .md-chips .md-chip.toggleable-chip:not(.chip-toggled-on) .md-chip-content:hover:not([disabled]), prm-favorites-labels .md-chips .md-chip:not(.chip-toggled-on) .md-chip-content:hover:not([disabled]), .bar prm-authentication .md-button:hover:not([disabled]), button.dismiss-alert-button:hover {
- color: #fff;
- background-color: #111;
-}
-
-/*the main color border on mobile view*/
-@media (max-width: 599px) {
- prm-topbar .top-nav-bar {
- border-bottom-style: solid;
- border-bottom-width: 8px;
- }
-}
-
-.md-button.button-as-link {
- line-height: 36px;
- padding: 0 6px;
-}
-
-.md-autocomplete-suggestions li {
- white-space: nowrap;
-}
-
-
-/*************** Main Content ******************/
-
-/*backgound of the Textboxes Homepage*/
-prm-search > div > md-content, md-card.default-card._md.md-primoExplore-theme {
- background-color: #fff !important;
- border-radius: 3px;
-}
-
-/*first header of the Textboxes*/
-.cardbox h1 {
- font-size: 48px;
- line-height: 56px;
-}
-
-/*second header of the Textboxes*/
-.cardbox h2 {
- font-size: 32px;
- line-height: 36px;
-}
-/*third header of the Textboxes (if needed)*/
-.cardbox h3 {
- font-size: 26px;
- line-height: 30px;
-}
-
-/*removes the upper and lower space in a list */
-.cardbox ul, .cardbox ol {
- margin-top: 0px !important;
- margin-bottom: 0px !important;
-}
-/*links in the textboxes*/
-md-card-content a, prm-service-details a {
- color: #222222 !important;
-}
-
-md-card-content a, prm-service-details a, div.courier-info > span a {
- text-decoration: underline !important;
-}
-
- md-card-content a:hover, prm-service-details a:hover {
- color: #111;
- background-color: rgba(47, 47, 47, 0.1) !important;
-}
-
-/*Responsive Video Frame*/
-.resp-container {
- position: relative;
- overflow: hidden;
- padding-top: 56.25%;
-}
-
-.resp-iframe {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- border: 0;
-}
-
-/*footer layout*/
-md-card.prm-primary-bg.psfooter {
- margin: 16px 0 0 0;
-}
-/*footer layout*/
-md-card.prm-primary-bg.psfooter-legal {
- margin: 1px 0 0 0;
-}
-/*Responsive footer layout*/
-@media (min-width: 960px) {
-
- md-card-content.prm-primary-bg.layout-align-gt-sm-end-stretch.flex-gt-sm-70 {
- text-align: end;
- }
-}
-/*footer links*/
-md-icon.ps_icon, a.ps_link {
- margin-right: 5%;
- text-decoration: underline;
-}
-
- /*md-icon.ps_icon:hover, a.ps_link:hover, a.ps_link.legal:hover, span.legal a:hover {
- background-color: rgba(61,110,148,.1) !important;
- }*/
-
-
-/*footer text*/
-md-card-content.prm-primary-bg {
- font-weight: 300;
-}
-
-
-/*links in the legal part of the footer*/
-a.ps_link.legal, span.legal {
- font-size: 14px;
- font-weight: 300;
-}
-
- /************************************************************************************************
-span.legal {
- color: #14413c;
-}
-*/
- span.legal > a {
- /*color: #14413c;*/
- font-weight: 600;
- }
-
-/*main container width for footer positioning*/
-prm-static.md-padding.flex {
- min-width: 100%;
- padding: 0;
-}
-
-/*mainly white background*/
-.prm-primary-bg.prm-hue1, prm-atoz-search-bar.prm-hue1, prm-browse-search-bar.prm-hue1, prm-collection-gallery-header .prm-hue1.collection-header-inner, prm-newspapers-search-bar.prm-hue1, prm-search-bar.prm-hue1, prm-spinner.prm-hue1.overlay-cover.light-on-dark:after, prm-tags-search-bar.prm-hue1, prm-topbar .top-nav-bar, prm-tree-nav prm-spinner .prm-hue1.diamond {
- background-color: #fff !important;
-}
-
-
-/*font color on white background*/
-.hoverable-over-dark, .md-button.button-over-dark, prm-main-menu[menu-type=full] .md-button.md-focused, prm-main-menu[menu-type=full] .md-button .md-input-container-dummy > .md-select-dummy:focus, prm-main-menu[menu-type=full] .md-button:focus, prm-main-menu[menu-type=full] .md-button:hover, prm-main-menu[menu-type=full] .md-button md-select:focus, prm-main-menu[menu-type=full] .overlay-menu-item.md-focused, prm-main-menu[menu-type=full] .overlay-menu-item .md-input-container-dummy > .md-select-dummy:focus, prm-main-menu[menu-type=full] .overlay-menu-item:focus, prm-main-menu[menu-type=full] .overlay-menu-item:hover, prm-main-menu[menu-type=full] .overlay-menu-item md-select:focus, prm-main-menu[menu-type=full] md-button:focus, prm-main-menu[menu-type=full] md-button:hover, prm-topbar .md-button, prm-user-area .md-button.user-menu-button, prm-user-area md-fab-toolbar ._md-fab-action-item .md-button, prm-user-area md-fab-toolbar ._md-fab-action-item md-input-container, prm-user-area md-fab-toolbar .md-fab-action-item .md-button, prm-user-area md-fab-toolbar .md-fab-action-item md-input-container {
- color: #222 !important;
-}
-
-/*************** Brief results ******************/
-
-/*color of the Alertbar*/
-.bar.alert-bar, .classic-input .search-scope, .prm-alert-bg {
- /*background-color: #8dd8d8 !important;*/
- border: none !important;
-}
-
-/*backgound search results boxes*/
-.list-item-wrapper {
- background-color: #f9f9f9;
-}
-/*Title color*/
-prm-brief-result .item-title span {
- color: #333;
-}
-
- prm-brief-result .item-title span:hover {
- color: #111;
- background-color: rgba(47, 47, 47, 0.1) !important;
- }
-
-/*remove hover effect from title links*/
-.md-button.arrow-link-button .button-content:focus, .md-button.arrow-link-button .button-content:hover, .md-button.arrow-link-button .hover.button-content, .md-button.arrow-link-button:focus .button-content, .md-button.arrow-link-button:hover .button-content, .recommendations-title.hover > span > span, .recommendations-title:hover > span > span, a.hover, a:focus, a:hover, prm-chapters-and-reviews md-card > .md-button:focus .item-title span, prm-chapters-and-reviews md-card > .md-button:hover .item-title span, prm-citation-trails-item.active-item md-card > .md-button:focus .item-title span, prm-citation-trails-item.active-item md-card > .md-button:hover .item-title span, prm-tags-list .md-chips .md-chip .md-chip-content:hover strong, prm-tags-list .md-chips md-chip .md-chip-content:hover strong, prm-tags-list md-chips .md-chip .md-chip-content:hover strong, prm-tags-list md-chips md-chip .md-chip-content:hover strong {
- box-shadow: none !important;
-}
-
-/*background color of bookmarked items*/
-.list-item-wrapper .item-bookmarked, .list-item-wrapper .item-bookmarked:hover, .prm-highlight, .prm-highlight.prm-hue1, prm-breadcrumbs .md-chip.persistent-facet, prm-breadcrumbs .prm-hue1.md-chip.persistent-facet {
- background-color: #ddd !important;
-}
-
-/*hover effect on all Links*/
-.md-button.arrow-link-button .button-content:focus, .md-button.arrow-link-button .button-content:hover, .md-button.arrow-link-button .hover.button-content,
-.md-button.arrow-link-button:focus .button-content, .md-button.arrow-link-button:hover .button-content, .prm-links-background.prm-hue-1,
-.recommendations-title.hover > span > span, .recommendations-title:hover > span > span, a.hover, a:focus, a:hover,
-prm-chapters-and-reviews md-card > .md-button:focus .item-title span, prm-chapters-and-reviews md-card > .md-button:hover .item-title span,
-prm-citation-trails-item.active-item md-card > .md-button:focus .item-title span, prm-citation-trails-item.active-item md-card > .md-button:hover .item-title span,
-prm-tags-list .md-chips .md-chip .md-chip-content:hover strong, prm-tags-list .md-chips md-chip .md-chip-content:hover strong,
-prm-tags-list md-chips .md-chip .md-chip-content:hover strong, prm-tags-list md-chips md-chip .md-chip-content:hover strong {
- color: #222 !important;
-}
-
-div.custom-links-container.layout-wrap.layout-align-sm-start-start.layout-align-center-start.layout-row > div > a:hover {
- background-color: #6b6b6b !important;
-}
-
-/*Facet titles*/
-span.section-title-header:hover {
- color: #8a8a8a !important;
-}
-/*underlined search results*/
-/*.text-highlight, mark {
- box-shadow: inset 0 -0.15em 0 0 #8dd8d8;
-}*/
-
-/*versions link and other*/
-.getit, .md-button.arrow-link-button prm-search-result-frbr-line .button-content > prm-icon:first-child, .prm-notice, .status-maybe, .worldcat, [class*=_more], [class*=_unknown], [class*=check_], [class*=does_not_exist], [class*=may_], [class*=NFT], prm-search-result-frbr-line .md-button.arrow-link-button .button-content > prm-icon:first-child, prm-search-result-frbr-line a > prm-icon:first-child, prm-service-links a {
- color: #222 !important;
-}
-/*icon color and text color in request forms*/
-.prm-primary-color, .request-form md-input-container label, .request-form md-input-container label:not(.md-no-float):not(._md-container-ignore), .request-form md-input-container md-select .md-select-value.md-select-placeholder, .request-form md-input-container .md-input-container-dummy > .md-select-dummy .md-select-value.md-select-placeholder, .request-form md-input-container md-select ._md-select-value._md-select-placeholder, .request-form md-input-container .md-input-container-dummy > .md-select-dummy ._md-select-value._md-select-placeholder, .result-item-actions .md-icon-button, .result-item-actions .more-options-button, prm-add-query-to-saved-searches .custom-button, prm-pre-filters md-input-container.is-active, .md-autocomplete-suggestions .suggestion-scope, md-tab-content .tab-content-header md-input-container md-select-value .md-text {
- color: #222 !important;
-}
-/*space between item details in Fullview*/
-#item-details > div > div {
- margin-bottom: .8em !important;
-}
-
-/*View Results Journals - Item Details*/
-prm-location-items .md-list-item-text.layout-wrap.layout-row.flex {
- flex-direction: column;
-}
-prm-location-items h3, prm-location-items h4 {
- margin:10px 0 !important;
-}
-prm-location-items > md-list > md-list-item > div > div.md-list-item-text > div.weak-text > div > div > p {
- margin: 4px 18px !important;
- display: list-item;
-}
-prm-location-items > md-list > md-list-item > div > div > div.layout-wrap {
- flex-direction: row !important;
- justify-content: flex-start !important;
- max-width: 100% !important;
-}
-prm-location-items > md-list > md-list-item > div > div > div > div > prm-service-button > button {
- box-shadow: inset 0 -0.15em 0 0 #8dd8d8;
-}
-
-/* Hide "search inside" for print journals */
-.search-within-p-only { display:none }
-
-/*fullview background of the left part*/
-.md-dialog-container.fixed-container {
- background-color: #444 !important;
-}
-
-/*background color of the signin window and the fullscreen navigation*/
-md-backdrop._md-dialog-backdrop.md-opaque.md-primoExplore-theme {
- background-color: #1f1f1f !important;
-}
-/*text color of the signin window and the fullscreen navigation*/
-prm-main-menu[menu-type=full] .md-button .md-headline, prm-main-menu[menu-type=full] .overlay-menu-item .md-headline, .light-on-dark-dialog .md-button.button-as-link, .light-on-dark-dialog .md-button.button-confirm, md-dialog.light-on-dark-dialog md-list md-list-item.list-login .md-button {
- color: #fff !important;
-}
-/*hiding the Library Logo in the login window*/
-.login-header {
- display: none !important;
-}
-/*alertbar for the courier info*/
-
-.courier-info {
- margin: 0px 8px;
-}
-
-.courier-info.bar.alert-bar {
- height: unset;
- margin: 6px 8px;
- padding: .5em .5em 0.25em;
- text-align: center;
-}
-
-/*Library info icon*/
-prm-location-items-after > div > span > a > img {
- vertical-align: middle;
- max-width: 30px;
- margin: 4px 12px;
-}
-
-/*Library card Personal details display*/
-#personalDetails > md-card-content > div {
- flex-flow: column;
-}
-
-#personalDetails .md-input-has-value.layout-column {
- min-width: 400px;
-}
-
-prm-personal-info-after {
- display: flex;
-}
-
-/*Full view Resource sharing */
-
-#getit_link1_0 > div > prm-full-view-service-container > div.section-body > div {
- display: flex;
- flex-direction: column;
-}
-
-prm-opac {
- order: 1;
-}
-
-prm-alma-other-members {
- order: 2;
- display: grid;
-}
-
-alma-htgi-svc {
- order: 3;
-}
-
-primo-explore.logged-out alma-htgi-svc, primo-explore.alert alma-htgi-svc {
- order: 0 !important;
-}
-
-.medium-uppercase-bold {
- text-transform: none;
- font-size: 1em;
-}
-
-/*Full view Resource sharing expand section*/
-
-prm-alma-other-units button.layout-fill, prm-alma-other-members button.layout-fill {
- height: auto;
- min-height: auto;
-}
-
-/* Full view change sections order */
-
-#full-view-container >*:first-child {
- display: flex;
- flex-direction: column;
-}
-
-#brief {
- order: 0 !important;
-}
-
-#details {
- order: 3 !important;
-}
-
-#links {
- order: 4 !important;
-}
-
-#getit_link1_0 {
- order: 1 !important;
-}
-
-#action_list {
- order: 2 !important;
-}
-
-#virtualBrowse {
- order: 5 !important;
-}
-
-/* Change of links in left navigation bar ENG */
-
-[aria-label="Top"] {
- order: 0 !important;
-}
-
-[aria-label="Details"] {
- order: 4 !important;
-}
-
-[aria-label="Links"] {
- order: 5 !important;
-}
-
-[aria-label="Loan and request options"] {
- order: 1 !important;
-}
-
-[aria-label="Send to"] {
- order: 3 !important;
-}
-
-[aria-label="Virtual Browse"] {
- order: 6 !important;
-}
-
-[aria-label="View Online"] {
- order: 2 !important;
-}
-
-/* Change of links in left navigation bar GER */
-
-[aria-label="Top"] {
- order: 0 !important;
-}
-
-[aria-label="Details"] {
- order: 4 !important;
-}
-
-[aria-label="Links"] {
- order: 5 !important;
-}
-
-[aria-label="Ausleih- und Bestelloptionen"] {
- order: 1 !important;
-}
-
-[aria-label="Senden an"] {
- order: 3 !important;
-}
-
-[aria-label="Virtuelles Regal"] {
- order: 6 !important;
-}
-
-[aria-label="Online ansehen"] {
- order: 2 !important;
-}
-
-/* Change of links in left navigation bar FRE */
-
-[aria-label="Haut"] {
- order: 0 !important;
-}
-
-[aria-label="D&#233;tails"] {
- order: 4 !important;
-}
-
-[aria-label="Liens"] {
- order: 5 !important;
-}
-
-[aria-label="Options de pr&#234;t et de demande"] {
- order: 1 !important;
-}
-
-[aria-label="Envoyer vers"] {
- order: 3 !important;
-}
-
-[aria-label="Etag&#232;re virtuelle"] {
- order: 6 !important;
-}
-
-[aria-label="Consulter en ligne"] {
- order: 2 !important;
-}
-
-/* Change of links in left navigation bar ITA */
-
-[aria-label="Top"] {
- order: 0 !important;
-}
-
-[aria-label="Dettagli"] {
- order: 4 !important;
-}
-
-[aria-label="Link"] {
- order: 5 !important;
-}
-
-[aria-label="Opzioni di prestito e richiesta"]{
- order: 1 !important;
-}
-
-[aria-label="Invia a"] {
- order: 3 !important;
-}
-
-[aria-label="Scorri virtualmente"] {
- order: 5 !important;
-}
-
-[aria-label="Visualizza online"] {
- order: 2 !important;
-}
-
-/******************************************************************************/
-/************************************ Help Page *******************************/
-/******************************************************************************/
-#help img {
- max-width: 100%;
- height: auto;
-}
-
-img.icon_up1 {
- width: 16px;
- float: right;
- margin: 13px 2px;
-}
-
-img.icon_up2 {
- width: 10px;
- float: right;
- margin: 4px;
-}
-
-a > h3:hover {
- background-color: #eee !important;
-}
-
-
-/******************************************************************************/
-/******************************************************************************/
-/******************************************************************************/
-/********************** End of the Central Package CSS ************************/
-/******************************************************************************/
-/******************************************************************************/
-/******************************************************************************/
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/css/custom_slsp_epfl_part.css b/primo-explore/custom/41SLSP_HPH-EPFL/css/custom_slsp_epfl_part.css
deleted file mode 100644
index cf24e03..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/css/custom_slsp_epfl_part.css
+++ /dev/null
@@ -1,87 +0,0 @@
-/******************************************************************************/
-/******************************************************************************/
-/******************************************************************************/
-/*************************** EPFL CUSTOM COLORS *******************************/
-/******************************************************************************/
-/******************************************************************************/
-/******************************************************************************/
-
-/* This file contains the EPFL part of the custom package. The SLSP part is in
- the custom_slsp.css file. */
-
-/*****************This two entries are the background of the primary color*******************/
-
-prm-primary-bg, prm-atoz-search-bar, prm-browse-search-bar, prm-collection-gallery-header .collection-header-inner, prm-search-bar, prm-newspapers-search-bar,
-prm-spinner.overlay-cover.light-on-dark:after, prm-tags-search-bar, prm-tree-nav prm-spinner .diamond, .prm-primary-bg, md-checkbox.md-checked .md-icon,
-md-tabs md-ink-bar, md-radio-button.md-checked .md-on, button.switch-to-simple, .md-button.button-confirm {
- background-color: #ff0000 !important;
-}
-
-/* Suppression configuration master template */
-prm-request-services .md-button.button-as-link{
- background-color: unset !important;
-}
-
-md-tabs.tabs-as-app .back-button {
- background-color: #777 !important;
- line-height: 24px !important;
- min-height: 24px !important;
- margin: 4px 0 !important;
-}
-
-@media (max-width: 599px) {
- prm-topbar .top-nav-bar {
- border-color: #ff0000 !important;
- }
-}
-
-/*.search-actions button{
- background-color: #fff !important;
- color: #222;
-} */
-
-
-/*****************This entry is the mouse over background of the links and buttons*******************/
-md-card.prm-primary-bg.psfooter > md-card-content a:hover, md-icon.ps_icon:hover, a.ps_link:hover, a.ps_link.legal:hover, span.legal a:hover, button.switch-to-advanced:hover,
-button.switch-to-simple:hover, .md-button.button-confirm:hover {
- background-color: #ae0010 !important;
-}
-
-.md-button.button-as-link:hover:not([disabled]){
- background-color: unset !important;
-}
-
-md-tabs.tabs-as-app .back-button:hover:not([disabled]){
- background-color: #555 !important;
-}
-
-/*****************This two entries are the font color of the primary color*******************/
-.prm-primary-bg, prm-atoz-search-bar, prm-browse-search-bar, prm-collection-gallery-header .collection-header-inner, prm-newspapers-search-bar,
-prm-spinner.overlay-cover.light-on-dark:after, prm-tags-search-bar, prm-tree-nav prm-spinner .diamond, .prm-primary-bg, md-checkbox.md-checked .md-icon:after, .md-button.switch-to-advanced, button.switch-to-simple,
-span.legal, span.legal > a, a.ps_link.legal, .ps_icon, md-card.prm-primary-bg.psfooter > md-card-content a, .md-button.button-confirm, md-tabs.tabs-as-app .back-button, prm-request-services .md-button.button-as-link {
- color: #fff !important;
- }
-
-
-button.switch-to-advanced.zero-margin.button-with-icon.md-button.md-primoExplore-theme.md-ink-ripple {
- border-color: #c1c1c1 !important;
-}
-
-
-
-/*****************This two entries are the background of the secondary color*******************/
-
-.bar.alert-bar, .classic-input .search-scope, .prm-alert-bg {
- background-color: #ffcccc !important;
-}
-
-.text-highlight, mark {
- box-shadow: inset 0 -0.15em 0 0 #ff0000 ;
-}
-
-
-/*****************This entry is the font color of the secondary color*******************/
-
-.bar.alert-bar, .classic-input .search-scope, .prm-alert-bg, .bar prm-authentication .md-button, button.dismiss-alert-button, div.courier-info > span a {
- color: #111111 !important;
-}
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/css/epfl_colors.css b/primo-explore/custom/41SLSP_HPH-EPFL/css/epfl_colors.css
deleted file mode 100644
index da4436f..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/css/epfl_colors.css
+++ /dev/null
@@ -1,61 +0,0 @@
-/*****************Selected text color*******************/
-
-::selection {
- background: #ffbe8f; /* WebKit/Blink Browsers */
-}
-::-moz-selection {
- background: #ffbe8f; /* Gecko Browsers */
-}
-
-/*****************This entry remove default color from various texts*******************/
-
-md-dialog.light-on-dark-dialog .md-list[class$="-line"] md-list-item .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog .md-list[class$="-line"] md-list-item .md-list-item-text h3, md-dialog.light-on-dark-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog .md-list[class$="-line"] md-list-item > .md-no-style .md-list-item-text h3, md-dialog.light-on-dark-dialog .md-list md-list-item .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog .md-list md-list-item .md-list-item-text h3, md-dialog.light-on-dark-dialog .md-list md-list-item > .md-no-style .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog .md-list md-list-item > .md-no-style .md-list-item-text h3, md-dialog.light-on-dark-dialog md-list md-list-item .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog md-list md-list-item .md-list-item-text h3, md-dialog.light-on-dark-dialog md-list md-list-item > .md-no-style .md-list-item-text .list-item-title, md-dialog.light-on-dark-dialog md-list md-list-item > .md-no-style .md-list-item-text h3, md-button.arrow-link-button md-dialog.light-on-dark-dialog .button-content, md-dialog.light-on-dark-dialog .md-button.arrow-link-button .button-content, md-dialog.light-on-dark-dialog a{
- color: #ffcccc !important;
-}
-
-/*Bouton pour confirmer une demande*/
-prm-request button.md-button.button-confirm, span[translate="fulldisplay.locations.showmore"], .courier-info .button-confirm {
- background-color: #080 !important;
- border-radius: 2px;
-}
-prm-request button.md-button.button-confirm:hover, span[translate="fulldisplay.locations.showmore"]:hover, .courier-info .button-confirm:hover {
- background-color: #050 !important;
-}
-
-span[translate="fulldisplay.locations.showmore"]{
- line-height: 24px !important;
- padding: 5px 8px;
- margin: 4px 0 !important;
- color: white;
- border-radius: 2px;
-}
-/* Suppression du fond du bouton + d'exemplaires */
-prm-location-items .md-button.button-link:hover:not([disabled]){
- background-color: transparent !important;
-}
-
-button[ng-hide="!$ctrl.currLoc.isMore"] {
- background-color: transparent !important;
-}
-/* Fix SLSP pour la couleur du bouton secondaire */
-.bar prm-authentication .md-button:hover:not([disabled]), button.dismiss-alert-button:hover{
- background-color:#ffdddd !important;
- border: 1px solid #ae0010;
-}
-
-/* Fix SLSP pour le bouton ""élargir" */
-button.item-expand-button.md-button.md-primoExplore-theme.md-ink-ripple{
- background-color: #D3D3D3!important;
-}
-
-/*****************This entry remove default color from various forms*******************/
-
-.md-input-color-underline, .new-result-item .list-item-count, .prm-secondary-bg.prm-hue1,
-md-input-container.empty-select-on-init:not(.md-input-focused) .md-input-container-dummy > .md-select-dummy md-select-value::after,
-md-input-container.empty-select-on-init:not(.md-input-focused) md-select md-select-value::after, md-input-container::after,
-md-progress-linear[md-mode="indeterminate"].header-progress-bar .prm-hue1.md-bar, md-radio-button.md-checked ._md-on,
-md-radio-button.md-checked .md-on, md-tabs md-ink-bar, prm-tags-list .md-chips ._md-chip-input-container::after,
-prm-tags-list .md-chips .md-chip-input-container::after, prm-tags-list md-chips ._md-chip-input-container::after,
-prm-tags-list md-chips .md-chip-input-container::after {
- background-color: #ff0000 !important;
-}
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/css/footer.css b/primo-explore/custom/41SLSP_HPH-EPFL/css/footer.css
deleted file mode 100644
index 0602f89..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/css/footer.css
+++ /dev/null
@@ -1,16 +0,0 @@
-
-md-card.psfooter, md-card.psfooter-legal,
-md-card.psfooter > md-card-content.prm-primary-bg, md-card.psfooter-legal > md-card-content.prm-primary-bg,
-md-card.prm-primary-bg.psfooter > md-card-content a:hover, md-card.prm-primary-bg.psfooter-legal > md-card-content a:hover{
- background-color: #d6d6d6 !important;
-}
-
-md-card.psfooter md-card-content, md-card.psfooter-legal md-card-content,
-md-card.prm-primary-bg.psfooter > md-card-content a, md-card.prm-primary-bg.psfooter-legal > md-card-content a,
-md-card.prm-primary-bg.psfooter-legal span.legal {
- color: #3a3a3a !important;
-}
-
-md-card.prm-primary-bg.psfooter > md-card-content a:hover, md-card.prm-primary-bg.psfooter-legal > md-card-content a:hover {
- color: #ff0000 !important;
-}
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/css/homepage.css b/primo-explore/custom/41SLSP_HPH-EPFL/css/homepage.css
deleted file mode 100644
index e5309b3..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/css/homepage.css
+++ /dev/null
@@ -1,28 +0,0 @@
-/* Couleur rouge pour les logos téléphone, mail, etc. */
-.puce{
- text-decoration: none !important;
-}
-.puce > span:first-child{
- color: #ff0000;
- fill: #ff0000;
-}
-h1.md-headline{
- font-size: 36px;
- line-height: 42px;
-}
-h2.md-headline{
- font-size: 28px;
- line-height: 34px;
-}
-md-content.epfl-row {
- justify-content: center;
-}
-.epfl-row md-card-title{
- flex: none;
-}
-.epfl-row md-card {
- height: 100%;
-}
-.epfl-social a{
- text-decoration: none !important;
-}
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/css/login.css b/primo-explore/custom/41SLSP_HPH-EPFL/css/login.css
deleted file mode 100644
index d69a52d..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/css/login.css
+++ /dev/null
@@ -1,9 +0,0 @@
-/* Augmente l'espace pour réduire la probabilité de clic sur le lien */
-prm-login md-list md-list-item:first-child p[translate="parallel.login.description1"]{
- margin-top:15px !important;
-}
-
-/* Réduit la taille du lien Alma */
-prm-login md-list md-list-item:last-child {
- font-size: x-small !important;
-}
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/css/prmAccountLink.css b/primo-explore/custom/41SLSP_HPH-EPFL/css/prmAccountLink.css
deleted file mode 100644
index 25c5181..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/css/prmAccountLink.css
+++ /dev/null
@@ -1,8 +0,0 @@
-prm-account-links-after div {
- display: flex;
- align-items: center;
- margin-top: 10px;
-}
-prm-account-links-after img{
- margin-right: 5px;
-}
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/css/prmLocation.css b/primo-explore/custom/41SLSP_HPH-EPFL/css/prmLocation.css
deleted file mode 100644
index 6a0ff03..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/css/prmLocation.css
+++ /dev/null
@@ -1,5 +0,0 @@
-
-/* Empêcher les retours à la ligne pour les cotes */
-span[ng-if="$ctrl.location.callNumber"]{
- white-space: nowrap
-}
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/css/prmRequest.css b/primo-explore/custom/41SLSP_HPH-EPFL/css/prmRequest.css
deleted file mode 100644
index 1ebe3ea..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/css/prmRequest.css
+++ /dev/null
@@ -1,15 +0,0 @@
-/*****************This entry adapt the message fee*******************/
-
-.feemsg {
- background-color: #ffcccc;
- border-radius: 3px;
- padding: 8px;
-}
-
-.feemsg>div {
- margin-left: 10px;
-}
-
-.bigfont {
- font-size: 20px;
-}
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/css/prmSearchbar.css b/primo-explore/custom/41SLSP_HPH-EPFL/css/prmSearchbar.css
deleted file mode 100644
index d9ee590..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/css/prmSearchbar.css
+++ /dev/null
@@ -1,49 +0,0 @@
-
-/* Bouton de la recherche avancée */
-.search-switch-buttons span{
- font-variant: small-caps;
- font-size: 1.15em;
-}
-.search-switch-buttons button{
- border: none !important;
-}
-
-/* Message d'alerte */
-prm-search-bar>div {
- height: inherit !important;
- min-height: inherit !important;
-}
-prm-search-bar-after>div {
- background-color: #fff !important;
- margin-top: 20px;
- padding: 10px 15px;
-}
-prm-search-bar-after p {
- margin: 0 12px;
-}
-.info-symbol::before {
- content: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 34 34' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Crect fill='%234a90e2' width='34' height='34' rx='4'/%3E%3Cpath d='M17 25V15M17 13V9' stroke='%23FFF' stroke-width='4'/%3E%3C/g%3E%3C/svg%3E");
- width: 24px;
- height: 24px;
- position: absolute;
- display: inline-block;
- top: 50%;
- left: .6rem;
- width: 1.6rem;
- height: 1.6rem;
- margin-top: -.8rem;
-}
-.info-symbol {
- position: relative;
-}
-.info-symbol div {
- margin-left: 50px;
-}
-prm-search-bar-after p {
- padding: .25em 0 .25em;
- margin: 0;
-}
-prm-search-bar-after a {
- color: black;
- text-decoration: underline;
-}
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/css/prmServiceButton.css b/primo-explore/custom/41SLSP_HPH-EPFL/css/prmServiceButton.css
deleted file mode 100644
index 93067c6..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/css/prmServiceButton.css
+++ /dev/null
@@ -1,54 +0,0 @@
-/* Mise en évidence des boutons pour les demandes de service */
-/* span[translate="AlmaRequest"] {
- text-decoration: underline #0B0 3px;
- padding: 2px 6px;
-}
-span[translate="AlmaRequest"]:hover{
- background-color: #050 !important;
- text-decoration: none;
- color: white;
- border-radius: 2px;
-} */
-/* span[translate="nui.request.request"]{
- display: none;
-} */
-
-/* Soulignement des boutons proposant un service */
-prm-service-button button, .greenbutton {
- padding-left: 0px !important;
- padding-right: 0px !important;
-}
-prm-service-button button > span, .greenbutton>span {
- background-color: #080 !important;
- color: white !important;
- padding: 2px 6px;
- border-radius: 2px;
-}
-prm-service-button button > span:hover, .greenbutton>span:hover {
- background-color: #050 !important;
-}
-prm-location-items > md-list > md-list-item > div > div > div > div > prm-service-button > button {
- box-shadow: unset !important;
-}
-/* Alignement de l'intitulé "Demandes" */
-prm-request-services h3.section-title{
- top: 0px;
-}
-
-/* Alignement central des boutons de demande */
-prm-request-services .labeled-block {
- align-items: center;
-}
-
-/* Suppression du sous-titre demande
-span[translate="nui.request.request"]{
- display: none;
-}*/
-
-/* Suppression du bouton PEB
-span[translate="AlmaResourceSharing"]{
- display: none;
-}
-.links-block .separated-block-item::after{
- content: none !important;
-} */
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/css/prmTopbar.css b/primo-explore/custom/41SLSP_HPH-EPFL/css/prmTopbar.css
deleted file mode 100644
index 327399a..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/css/prmTopbar.css
+++ /dev/null
@@ -1,60 +0,0 @@
-/* Crée la place pour le titre et le sous-titre */
-prm-topbar {
- height: 150px !important;
-}
-prm-main-menu[menu-type="menu"],
-.top-nav-bar,
-prm-search-bookmark-filter
-{
- max-height: 60px !important;
- height: 60px !important;
- min-height: auto !important;
-}
-
-/* Mise en forme du titre et sous-titre */
-.main-title{
- padding: .85em;
- background-color: white;
-}
-.main-title h1{
- font-size: 2em !important;
- margin-bottom: 0;
-}
-.main-title h1 > a{
- color: black;
-}
-prm-main-menu[menu-type="menu"] #mainMenu>div {
- border-bottom: solid #ddd 1px;
-}
-.main-title h2{
- font-size: 1.2em !important;
- font-weight: bold;
-}
-
-/* Adapte le sous-titre lorsque l'écran est relativement petit */
-@media only screen and (max-width: 660px){
- .main-title h2{
- font-size: 1.1em !important;
- }
-}
-
-/* Menu sur les petits écrans */
-prm-main-menu[menu-type="full"] .md-button .md-headline{
- color: #ff9999 !important;
-}
-prm-main-menu .md-subhead{
- display: none;
-}
-.__sm prm-main-menu[menu-type="full"] .settings-container + md-divider{
- margin-top: 6em !important;
-}
-
-/* Menu sur grand écran */
-prm-main-menu[menu-type="menu"] .button-over-dark, prm-topbar .md-button:not(.disable-hover){
- color: #222 !important;
-}
-
-/* Petit triangle du menu */
-prm-user-area-expandable .button-with-menu-arrow:hover .menu-arrow:hover:not([disabled]){
- background-color: inherit;
-}
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/features.json.txt b/primo-explore/custom/41SLSP_HPH-EPFL/features.json.txt
deleted file mode 100644
index b6892d6..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/features.json.txt
+++ /dev/null
@@ -1 +0,0 @@
-{"prm-explore-footer-after":["prm-explore-footer-after-app-store-generated"],"prm-alma-viewit-items-after":["prm-alma-viewit-items-after-app-store-generated","prm-alma-viewit-items-after-app-store-generated"]}
\ No newline at end of file
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/html/README.md b/primo-explore/custom/41SLSP_HPH-EPFL/html/README.md
deleted file mode 100644
index 78ee724..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/html/README.md
+++ /dev/null
@@ -1,14 +0,0 @@
-# The Primo New UI Customization Workflow Development Environment
-
-
-##html documentation
-
- - In this folder you will find static html files in their OTB state
- - You can edit the html to comply with your library requirements
- - Note that you can use Angular Material directives in your html:
- > https://material.angularjs.org/latest/
-
-
-
-
-
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/html/email/email_en.tmpl.html b/primo-explore/custom/41SLSP_HPH-EPFL/html/email/email_en.tmpl.html
deleted file mode 100644
index a01ece6..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/html/email/email_en.tmpl.html
+++ /dev/null
@@ -1,109 +0,0 @@
-<!-- HEADER -->
-<table style="width: 600px;
- display: block !important;
- max-width: 600px !important;
- margin: 0 auto !important;
- clear: both !important;
- border-spacing: 0 !important;
- padding: 0 !important;
- border-top-left-radius: 15px !important;
- border-top-right-radius: 15px !important;" align="center" bgcolor="#fff"
- border="0" cellpadding="0"
- cellspacing="0">
- <tbody>
- <tr>
- <td style="cursor: default;
- padding: 1em 0.5em;">
- <prm-logo style="height: 66px;"></prm-logo>
- </td>
- </tr>
- </tbody>
-</table>
-
-<!-- BODY -->
-<table style="width: 600px;
- display: block !important;
- max-width: 600px !important;
- margin: 0 auto !important;
- clear: both !important;
- border-spacing: 0 !important;
- padding: 0 !important;" align="center" border="0" cellpadding="0"
- cellspacing="0">
- <tr>
- <td>
- <div translate="nui.email.institutionNote"></div>
- </td>
- </tr>
- <tr>
- <!--<td></td>-->
- <td style="display: block !important;
- max-width: 600px !important;
- margin: 0 auto !important;
- clear: both !important;
- padding: 0 !important;" bgcolor="#f3f3f3">
-
- <div style=" padding: 0 !important;
- max-width: 600px;
- margin: 0 auto;
- display: block;">
- <table style="width: 600px;
- display: block !important;
- max-width: 600px !important;
- margin: 0 auto !important;
- clear: both !important;
- border-spacing: 0 !important;
- padding: 0 !important;">
- <tr ng-if="$ctrl.parentCtrl.note">
- <td style="padding: 15px 10px;
- font-style: italic;">
- <b translate="email.note"></b> {{$ctrl.parentCtrl.note}}
- </td>
- </tr>
- </table>
- <table id="email-template-items" style="background-color: #f3f3f3; width: 100%;">
- <tr ng-if="$ctrl.parentCtrl.fullViewLoaded"
- ng-repeat="item in $ctrl.parentCtrl.delayedItems">
- <td style="padding: 10px 15px; margin: 2px; cursor: default; width: 100%;"
- bgcolor="white">
- <prm-brief-result-container style="width: 100%;"
- [item]="item"
- display-mode="email"
- (load-email-template-event)="$ctrl.parentCtrl.popItem()">
- </prm-brief-result-container>
- </td>
- </tr>
- </table>
- </div><!-- /content -->
-
- </td>
- <!--<td></td>-->
- </tr>
-</table>
-<!-- /BODY -->
-
-<!-- FOOTER -->
-<table class="footer-wrap" align="center" border="0" cellpadding="0" cellspacing="0">
- <tr>
- <td></td>
- </tr>
-</table>
-<!-- /FOOTER -->
-
-<!-- DISCLAIMER MESSAGE -->
-<table style="width: 600px;
- display: block !important;
- max-width: 600px !important;
- margin: 0 auto !important;
- clear: both !important;
- border-spacing: 0 !important;
- padding: 0 !important;
- border: 2px solid red;" align="center" border="0" cellpadding="0"
- cellspacing="0">
- <tbody>
- <tr>
- <td align="center">
- <p style="margin: 0.5em;" translate="nui.email.disclaimer"></p>
- </td>
- </tr>
- </tbody>
-</table>
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/html/help/help_de.html b/primo-explore/custom/41SLSP_HPH-EPFL/html/help/help_de.html
deleted file mode 100644
index aa452cc..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/html/help/help_de.html
+++ /dev/null
@@ -1,503 +0,0 @@
-
-<md-content id="help">
- <div class="ps_content md-padding" layout-gt-sm="row" layout-align="center center">
- <div flex="100" flex-md="100" flex-lg="80" flex-xl="60" layout="column">
- <md-card class="default-card">
- <md-card-title>
- <md-card-title-text>
- <h1 class="md-headline"><b>swisscovery Help Page</b></h1>
- </md-card-title-text>
- </md-card-title>
-
- </md-card>
-
- <md-card class="default-card">
-
- <md-card-content>
- <h4>Einf&uuml;hrung:</h4>
- <p>Sehr geehrte Benutzerin, sehr geehrter Benutzer,</p>
- <p>herzlich willkommen auf der Hilfeseite von swisscovery.</p>
- <p>swisscovery ist das Suchportal des <a href="https://slsp.ch/de" target="_blank">Swiss Library Service Platform Network (SLSP)</a>. . Auf dieser Seite finden Sie n&uuml;tzliche Informationen dar&uuml;ber, wie Sie swisscovery verwenden und wie das SLSP-Netzwerk organisiert ist. </p>
- <p>Achtung: Diese Hilfeseite wurde f&uuml;r das gesamte SLSP-Netzwerk erstellt! Das bedeutet, dass einige Services auf dieser speziellen Bedienoberfl&auml;che m&ouml;glicherweise nicht verf&uuml;gbar sind. Bitte beachten Sie, dass die Startseite oder die Volltitelanzeige des Datensatzes von Institution zu Institution anders aussehen k&ouml;nnen als auf dieser Hilfeseite.</p>
- </md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="index">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Index</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <h3><a href="#general">Allgemein</a></h3>
- <ul>
- <!--<li><a href="#gen1">Ein kurzes Einf&uuml;hrungsvideo zu swisscovery</a></li>-->
- <li><a href="#gen2">SLSP: Die Swiss Library Service Platform</a></li>
- <li><a href="#gen3">SLSP-Netzwerk</a></li>
- <li><a href="#gen4">Ein Konto erstellen</a></li>
- <li><a href="#gen5">Bibliotheksausweis</a></li>
- <li><a href="#gen6">Anmelden und Abmelden</a></li>
- <li><a href="#gen7">Mein Konto</a></li>
- <li><a href="#gen8">Konto aktualisieren </a></li>
- <li><a href="#gen9">Sprache einstellen</a></li>
- </ul>
- <h3><a href="#online">Online-Ressourcen</a></h3>
- <ul>
- <li><a href="#onl1">Online-Ressourcen</a></li>
- <li><a href="#onl2">Online-Services f&uuml;r Mitglieder einer Universit&auml;t</a> </li>
- <li><a href="#onl3">Online-Services f&uuml;r Personen, die nicht Mitglied einer Universit&auml;t sind </a></li>
- <li><a href="#onl4">Open Access </a></li>
- <li><a href="#onl5">Nationale Lizenzen </a></li>
- </ul>
- <h3><a href="#borrow">Fernleihe-/Bestelldokumente</a></h3>
- <ul>
- <li><a href="#bor1">Fernleihe-/Bestelldokumente </a></li>
- <li><a href="#bor2">Fernleihen ausserhalb des SLSP-Netzwerks</a></li>
- <li><a href="#bor3">Ausleihfristen verl&auml;ngern</a></li>
- <li><a href="#bor4">Liste der fr&uuml;heren Ausleihen </a></li>
- </ul>
- <h3><a href="#search">Suchen</a></h3>
- <ul>
- <li><a href="#sea1">SLSP-Suchprofile </a></li>
- <li><a href="#sea2">Einfache Suche</a></li>
- <li><a href="#sea3">Erweiterte Suche </a></li>
- <li><a href="#sea4">Nach einer Wortgruppe suchen</a></li>
- <li><a href="#sea5">Mit Platzhaltern suchen </a></li>
- <li><a href="#sea6">Boolesche Operatoren zum Erweitern oder Eingrenzen einer Suche verwenden</a></li>
- <li><a href="#sea7">Meine Favoriten </a></li>
- <li><a href="#sea8">Suchhistorie</a></li>
- <li><a href="#sea9">Suchen speichern und verwalten </a></li>
- <!--<li><a href="#sea10">Citation Linker </a></li>-->
- </ul>
- <h3><a href="#display">Ergebnisse anzeigen</a></h3>
- <ul>
- <li><a href="#dis1">Ergebnisse eingrenzen </a></li>
- <li><a href="#dis2">Ergebnisliste: Sortieren </a></li>
- <li><a href="#dis3">Ergebnisliste: Versionen</a> </li>
- <li><a href="#dis4">Einzelne Titel anzeigen </a></li>
- </ul>
- <h3><a href="#questions">Fragen?</a></h3>
- <ul>
- <li><a href="#que1">Kontaktangabe</a></li>
- </ul>
- </md-card-content>
- </md-card>
-
- <md-card class="default-card" id="general">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Allgemein </h2></a>
- </md-card-title-text>
- </md-card-title>
- <!--<md-card-content id="gen1">
- <a href="#index"><h3>Ein kurzes Einf&uuml;hrungsvideo zu swisscovery<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3></a>
- <div class="resp-container">
- <iframe class="resp-iframe" src="https://www.youtube.com/embed/1fZwnu_nzPU" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
- </div>
- </md-card-content>r-->
- <md-card-content id="gen2">
- <a href="#index">
- <h3>SLSP: Die Swiss Library Service Platform<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Die Swiss Library Service Platform ist zusammen mit dem ihr untergeordneten Konsortium der Schweizer Hochschulbibliotheken mit &uuml;ber <a href="https://slsp.ch/libraries" target="_blank">450 Mitgliedern</a> das gr&ouml;sste Netzwerk von akademischen und Forschungsbibliotheken in der Schweiz. Sie wurde von Bibliotheken f&uuml;r Bibliotheken ins Leben gerufen und ist ein gemeinsames Projekt, mit dem landesweit eine Reihe von Services angeboten werden sollen, z. B. ein gemeinsamer mehrsprachiger Katalog mit wissenschaftlichen Informationen, ein gemeinsamer Vertreter f&uuml;r die Lizenzierung von E-Ressourcen und ein leistungsf&auml;higes Kuriernetzwerk f&uuml;r die gemeinsame Nutzung physischer Exemplare.</p>
- <p>SLSP stellt einen innovativen und bedeutenden Schritt in Richtung der digitalen Entwicklung der wissenschaftlichen Bibliotheken in der Schweiz dar. Durch die Verwaltung des cloud-gest&uuml;tzten Alma-Systems f&uuml;hrt die Organisation wissenschaftliche Informationen zusammen, die in Bibliotheken in der ganzen Schweiz gespeichert sind. Indem sie diese Informationen zug&auml;nglich und leicht auffindbar macht, tr&auml;gt SLSP zu wissenschaftlichen Entdeckungen und Fortschritten bei.</p>
-</md-card-content>
- <md-card-content id="gen3">
- <a href="#index">
- <h3>SLSP-Netzwerk<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>Das SLSP-Netzwerk ist in mehrere &laquo;Zonen&raquo; unterteilt. SLSP selbst verwaltet die Netzwerkzone (NZ) namens swisscovery, w&auml;hrend die Bibliotheken in 29 &laquo;Institutionsbereiche&raquo; - bzw. "Institution Zones" (IZ) aufgeteilt sind. </p>
- <p>Eine IZ ist eine Gruppe von Bibliotheken mit &auml;hnlichen Bed&uuml;rfnissen. Die IZ ist eine Schl&uuml;sselkomponente im SLSP-System und stellt eine Abteilung dar, die Synergien freisetzt und Effizienz steigert. In SLSP unterscheiden wir zwei Arten von IZs: Zonen mit einzelnen Einheiten und Zonen mit gemischten Einheiten. </p>
- <p>In einer Zone mit einer einzelnen Einheit ist der Grossteil der Bibliotheken rechtlich mit einer Haupteinheit (z. B. einer Universit&auml;t) verbunden. In einer Zone mit gemischten Einheiten sind Bibliotheken rechtlich mit verschiedenen Einheiten verbunden (z. B. werden sie aus geografischen &Uuml;berlegungen heraus zusammengelegt).</p>
- <p>Um auf die Ressourcen der SLSP-Mitglieder zugreifen zu k&ouml;nnen, m&uuml;ssen die Benutzende auf die Bedienoberfl&auml;chen, die sogenannten &laquo;Views&raquo;, zugreifen. In SLSP haben wir eine View f&uuml;r die Netzwerkzone (NZ), eine View f&uuml;r jede IZ und mehrere Views f&uuml;r einzelne Bibliotheken vorbereitet. </p>
- <p>Jede View hat ihre spezifischen Suchbereiche, die unterschiedliche Ergebnisse liefern, wenn sie f&uuml;r die Suche verwendet werden. Die Netzwerkzone in swisscovery enth&auml;lt alle Datens&auml;tze, die aus den SLSP-Bibliotheken stammen, einige allgemeine externe Ressourcen (z. B. e-rara, ZORA usw.) und den Central Discovery Index (CDI). Die IZ-View oder Bibliotheks-View enth&auml;lt den lokalen Bestand der IZ / Bibliothek, allgemeine und lokale externe Ressourcen und den CDI-Index. </p>
- <p>Central Discovery Index (CDI): ist eine zentrale Datenbank mit mehr als 3 Milliarden Datens&auml;tzen; z. B.: Zeitschriftenartikel, E-Books, Dissertationen, Konferenzberichte usw. </p>
- <img width="935" height="665" src="custom/41SLSP_EPF-prod/img/help/swisscovery_ger.png" />
- <p>Unter dem folgenden <a href="https://slsp.ch/libraries" target="_blank">Link</a> finden Sie die Topologie des SLSP-Netzwerks, eine umfassende Liste aller SLSP-Mitgliedsbibliotheken, aufgeteilt nach IZ, sowie den Link zu jeder vorhandenen View unseres Netzwerks. F&uuml;r jede IZ und Bibliothek finden Sie die Adresse, die Kontaktinformationen und die angebotenen Services. </p>
-</md-card-content>
- <md-card-content id="gen4">
- <a href="#index">
- <h3>Ein Konto erstellen<img class="icon_up2" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Um sich in SLSP zu registrieren, gehen Sie bitte zun&auml;chst auf: <a href="https://registration.slsp.ch" target="_blank">https://registration.slsp.ch</a></p>
- <p>Nach dem Start des Registrierungsprozesses werden Sie aufgefordert, sich mit einem SWITCH edu-ID-Benutzungskonto anzumelden. Wenn Sie bereits ein SWITCH edu-ID-Benutzungskonto haben, melden Sie sich einfach an, um mit der Registrierung fortzufahren. Falls Sie Ihr Passwort noch nicht haben, finden Sie einen Link zum Zur&uuml;cksetzen des Passworts auf der Anmeldeseite.</p>
- <p>Wenn Sie noch kein SWITCH edu-ID-Benutzungskonto haben, k&ouml;nnen Sie auf der Anmeldeseite auf &laquo;Konto erstellen&raquo; klicken. </p>
- <p><strong>Hinweis:</strong> Wenn Sie an einer Universit&auml;t studieren, ist es m&ouml;glich, dass Sie schon einmal in SLSP registriert waren. In diesem Fall erscheint eine Meldung und Sie werden zum Anmeldebereich der View weitergeleitet.</p>
-</md-card-content>
- <md-card-content id="gen5">
- <a href="#index">
- <h3>Bibliotheksausweis<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Mit Ihrem Bibliotheksausweis haben Sie Zugang zu einer Reihe von Services, Sie k&ouml;nnen zum Beispiel ein physisches Exemplar in einer Bibliothek ausleihen. </p>
- <p>Wenn Sie bereits einen Bibliotheksausweis des <a href="https://www.nb.admin.ch/snl/de/home/dienstleistungen/ausleihe-benutzung/bibliopass.html" target="_blank">BibliOpass-Netzwerks</a> besitzen, k&ouml;nnen Sie die Bibliotheksausweisnummer optional bei der Registrierung bei SLSP oder sp&auml;ter angeben. Einige Campus-/Universit&auml;ts-/Studentenausweise sind auch als Bibliotheksausweis g&uuml;ltig. Einige Universit&auml;ten stellen ihren Benutzenden auch die Bibliotheksausweisnummer zur Verf&uuml;gung. Welche Bibliotheksausweisnummern mit einem SLSP-Konto verkn&uuml;pft sind, wird w&auml;hrend des Registrierungsprozesses bei SLSP angezeigt (siehe Kapitel &laquo;Ein Konto erstellen&raquo;). </p>
- <p>Wenn Sie keinen physischen Bibliotheksausweis besitzen, k&ouml;nnen Sie Ihre Bibliothek bitten, Ihnen einen auszustellen.</p>
-</md-card-content>
- <md-card-content id="gen6">
- <a href="#index">
- <h3>Anmelden und Abmelden<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>In swisscovery: Klicken Sie auf &laquo;Anmelden&raquo; - w&auml;hlen Sie Ihre IZ - klicken Sie auf &laquo;SWITCH edu-ID&raquo; - geben Sie Ihre E-Mail-Adresse und Ihr Passwort ein - klicken Sie auf &laquo;Anmelden&raquo; </p>
- <p>In einer IZ / Bibliotheks-View: Klicken Sie auf &laquo;Anmelden&raquo; - klicken Sie auf &laquo;SWITCH edu-ID&raquo; - geben Sie Ihre E-Mail-Adresse und Ihr Passwort ein - klicken Sie auf &laquo;Anmelden&raquo;</p>
- <img width="460" height="74" src="custom/41SLSP_EPF-prod/img/help/signin_ger.png" />
- <p>F&uuml;r die folgenden Schritte m&uuml;ssen Sie angemeldet sein:</p>
- <ul>
- <li>Dokumente anfordern (Ausleihe, Digitalisierungsauftrag, ILL)</li>
- <li>Ihre Ausleihen und Vormerkungen von Bibliotheken im SLSP-Netzwerk anzeigen und kontrollieren. </li>
- <li>Ausleihfristen verl&auml;ngern, Reservierungen stornieren </li>
- <li>Favoriten speichern</li>
- <li>Suchen speichern und Benachrichtigungen einstellen</li>
- <li>Spracheinstellungen dauerhaft &auml;ndern </li>
- </ul>
- <p>Als Gast k&ouml;nnen Ihre Favoriten, Suchanfragen und die gew&auml;hlte Sprache nur f&uuml;r die aktuelle Browser-Sitzung gespeichert werden. </p>
- <p>Melden Sie sich nach einer Sitzung ab, um Ihr Konto vor dem Zugriff durch andere Benutzende zu sch&uuml;tzen. </p>
- <h4>HINWEIS:</h4>
- <p>Gewisse Online-Ressourcen sind ohne Anmeldung zug&auml;nglich, aber um auf das gesamte Angebot zugreifen zu k&ouml;nnen, m&uuml;ssen Sie sich anmelden. </p>
- <p>
- Der Zugang zu Online-Ressourcen h&auml;ngt oft von Ihrer Zugeh&ouml;rigkeit, z. B. als Studierende oder als Forschende, zu einer lizenzierenden Hochschulinstitution (HEI) ab. Einige HEIs erm&ouml;glichen den Benutzenden den Fernzugriff auf Online-Ressourcen. Weitere Informationen zu den Bedingungen f&uuml;r den Zugriff auf die Online-Ressourcen finden Sie im Kapitel &laquo;Online-Ressourcen&raquo; auf dieser Hilfeseite oder auf der Website der Bibliothek, f&uuml;r welche die jeweilige Ressource lizenziert ist.
- </p>
- <p>Diese Bedingungen gelten nicht f&uuml;r nationale Lizenzen (weitere Informationen finden Sie im entsprechenden Kapitel auf dieser Hilfeseite). </p>
-</md-card-content>
- <md-card-content id="gen7">
- <a href="#index">
- <h3>Mein Konto <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Sie m&uuml;ssen sich anmelden, um auf Ihr Konto zugreifen zu k&ouml;nnen. Klicken Sie im Anschluss oben rechts auf der Seite auf Ihren Namen. Sie sehen nun ein Men&uuml;, das einige Untermen&uuml;s f&uuml;r Ihr Konto enth&auml;lt. Um vollen Zugriff auf das Konto f&uuml;r Ihre Daten zu erhalten, klicken Sie auf &laquo;Mein Konto&raquo;.</p>
- <p>Von dieser Seite aus k&ouml;nnen Sie Ihre Ausleihen, Vormerkungen, Geb&uuml;hren, Meldungen und viele andere Funktionen einsehen. </p>
- <p><strong>HINWEIS:</strong> Jede IZ hat ihren eigenen Bereich. Das bedeutet zum Beispiel, dass wenn Sie eine Ressource in der IZ der KUB Freiburg und eine Ressource in der IZ der ETH Z&uuml;rich ausleihen, diese auf verschiedene Seiten aufgeteilt sind, siehe unten:</p>
- <img width="935" height="627" src="custom/41SLSP_EPF-prod/img/help/myAccount_ger.png" />
-</md-card-content>
- <md-card-content id="gen8">
- <a href="#index">
- <h3>Konto aktualisieren <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Um Ihre Adresse oder andere Informationen bez&uuml;glich Ihres Kontos zu &auml;ndern, gehen Sie auf die Seite &laquo;Meine edu-ID&raquo; auf <a href="https://eduid.ch/" target="_blank">https://eduid.ch/</a> und aktualisieren Sie Ihr edu-ID-Konto. Bitte beachten Sie, dass &Auml;nderungen, die in &laquo;Mein Konto&raquo; in swisscovery oder in den IZs vorgenommen werden, mit den Informationen von edu-ID &uuml;berschrieben werden. Wenn Sie Ihre Bibliotheksausweisnummern verwalten m&ouml;chten, gehen Sie bitte auf <a href="https://registration.slsp.ch/register/library-card/" target="_blank">https://registration.slsp.ch/register/library-card/</a> </p>
-</md-card-content>
- <md-card-content id="gen9">
- <a href="#index">
- <h3>Sprache einstellen <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Klicken Sie auf &laquo;Anzeige-Sprache&raquo;, um die Spracheinstellungen f&uuml;r die aktuelle Sitzung zu &auml;ndern. Wenn Sie angemeldet sind, wird die eingestellte Sprache dauerhaft gespeichert. Sie k&ouml;nnen auch die Sprache Ihrer Oberfl&auml;che &auml;ndern, indem Sie in Ihrem Konto in den Bereich &laquo;Pers&ouml;nliche Details&raquo; gehen. </p>
- <img width="333" height="211" src="custom/41SLSP_EPF-prod/img/help/setLanguage_ger.png" />
-</md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="online">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Online-Ressourcen</h2></a>
-</md-card-title-text>
- </md-card-title>
- <md-card-content>
-
- <md-card-content id="onl1">
- <a href="#index">
- <h3>Online-Ressourcen<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Alle Arten von Online-Ressourcen, die von den teilnehmenden Bibliotheken angeboten werden, werden bei der Suche indexiert: B&uuml;cher, Zeitschriften, Datenbanken, digitalisierte Fotos, Landkarten, Manuskripte und andere Sammelexemplare. Jedoch sind nicht alle Dokumente frei zug&auml;nglich. Viele Dokumente werden &uuml;ber eine Lizenz erworben und sind nur im Netzwerk der Universit&auml;t zug&auml;nglich, die &uuml;ber eine Lizenz f&uuml;r diese Ressource verf&uuml;gt. Mit Hilfe von Filtern k&ouml;nnen Sie die Suche auf lizenzierte Online-Dokumente und Open-Access-Dokumente (Online verf&uuml;gbar) eingrenzen oder nur frei zug&auml;ngliche Dokumente (Open Access) ausw&auml;hlen.</p>
- <img width="233" height="218" src="custom/41SLSP_EPF-prod/img/help/showonly_ger.png" />
- <p>
- Bei Online-Ressourcen enth&auml;lt der Bereich &laquo;Online ansehen&raquo; in der Volltitelanzeige Informationen &uuml;ber die Verf&uuml;gbarkeit der Ressource in Ihrer Institution und in anderen Institutionsbereichen des SLSP-Netzwerks. Um auf die Ressource zuzugreifen, klicken Sie auf das Symbol <img width="41" height="42" src="custom/41SLSP_EPF-prod/img/help/viewOnlineIcon.png" />
- </p>
- <img width="935" height="462" src="custom/41SLSP_EPF-prod/img/help/viewOnline_ger.png" />
-</md-card-content>
- <md-card-content id="onl2">
- <a href="#index">
- <h3>Online-Services f&uuml;r Mitglieder einer Universit&auml;t<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>Neben Open-Access-Dokumenten k&ouml;nnen Sie auch die Online-Services Ihrer Universit&auml;t nutzen. E-Journals, E-Books und Datenbanken werden &uuml;ber Lizenzen erworben und der Zugriff ist ausschliesslich auf das Netzwerk der Institution mit der entsprechenden Lizenz (auf dem Campus) beschr&auml;nkt. Von ausserhalb der Universit&auml;t k&ouml;nnen Sie VPN, Eduroam, EZProxy usw. verwenden, um auf solche Dokumente zuzugreifen. Informationen zum Fernzugriff finden Sie auf der IT-Website Ihrer Bibliothek oder Ihrer Universit&auml;t.</p>
- <p>
- Der Bereich &laquo;Online ansehen&raquo; bietet verf&uuml;gbare Services f&uuml;r die Ressourcen in Ihrer Institution und in anderen IZs des SLSP-Netzwerks. Klicken Sie auf &laquo;Online verf&uuml;gbar&raquo; und auf das Symbol <img width="41" src="custom/41SLSP_EPF-prod/img/help/viewOnlineIcon.png" />, um zur Volltitelanzeige zu gelangen.
- </p>
- <img width="935" height="170" src="custom/41SLSP_EPF-prod/img/help/availOnline_ger.png" />
- <img width="935" height="439" src="custom/41SLSP_EPF-prod/img/help/availOnlineFull_ger.png" />
-</md-card-content>
- <md-card-content id="onl3">
- <a href="#index">
- <h3>Online-Services f&uuml;r Personen, die nicht Mitglied einer Universit&auml;t sind <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Zus&auml;tzlich zu Open-Access- und Online-Ressourcen unter einer nationalen Lizenz k&ouml;nnen Sie auch die lizenzierten Ressourcen der Universit&auml;ten nutzen, falls Sie sich innerhalb der Universit&auml;t befinden. </p>
- <p>Wissenschaftliche E-Journals, E-Books und Datenbanken werden &uuml;ber Lizenzen erworben und der Zugriff ist ausschliesslich auf das Netzwerk der Institution mit entsprechender Lizenz (auf dem Campus) beschr&auml;nkt. Sie k&ouml;nnen die Ressourcen vor Ort bei ebendieser Bibliothek herunterladen und/oder darauf zugreifen. </p>
- <p>Welche Bibliotheken Zugang zu einer Online-Ressource anbieten, wird unter &laquo;Standorte&raquo; angezeigt: </p>
- <img width="935" height="170" src="custom/41SLSP_EPF-prod/img/help/availOnline2_ger.png" />
- <img width="935" height="345" src="custom/41SLSP_EPF-prod/img/help/locationItems_ger.png" />
-</md-card-content>
- <md-card-content id="onl4">
- <a href="#index">
- <h3>Open Access<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Open-Access-Dokumente sind frei zug&auml;nglich. Es handelt sich zum einen um Zeitschriftenartikel oder E-Books auf verschiedenen Plattformen oder in institutionellen Best&auml;nden und zum anderen um digitalisierte Dokumente aus Bibliotheksbest&auml;nden. Diese Dokumente sind in der Ergebnisliste mit einem Open-Access-Symbol gekennzeichnet. </p>
- <img width="935" height="188" src="custom/41SLSP_EPF-prod/img/help/openAccess_ger.png" />
-</md-card-content>
- <md-card-content id="onl5">
- <a href="#index">
- <h3>Nationale Lizenzen<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Alle Personen, die in der Schweiz leben, haben Zugang zu den &uuml;ber nationale Lizenzen verf&uuml;gbaren Ressourcen. Hierf&uuml;r ist eine einmalige Registrierung erforderlich; weitere Informationen finden Sie unter
- <a href="https://consortium.ch/zugriff/?lang=en" target="_blank">https://consortium.ch/zugriff/?lang=en </a>. Bitte beachten Sie, dass f&uuml;r die Registrierung f&uuml;r die nationalen Lizenzen dieselbe edu-ID wie f&uuml;r swisscovery verwendet werden kann.</p>
- <p>Verf&uuml;gbare Ressourcen aus nationalen Lizenzen sind im Bereich &laquo;Volltext-verf&uuml;gbarkeit&raquo; in Klammern gekennzeichnet.</p>
- <img width="935" height="160" src="custom/41SLSP_EPF-prod/img/help/NationalLicenses_ger.png" />
-</md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="borrow">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Fernleihe-/Bestelldokumente </h2></a>
-</md-card-title-text>
- </md-card-title>
- <md-card-content id="bor1">
- <a href="#index">
- <h3>Fernleihe-/Bestelldokumente<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Unter &laquo;Ausleihen&raquo; in der Volltitelanzeige sehen Sie die Bibliotheken, in denen das Dokument vorhanden ist, und ob es derzeit verf&uuml;gbar ist. Die Lieferung eines Exemplars an einen Abholstandort kann kostenpflichtig sein.</p>
- <p>Unter &laquo;Andere Optionen&raquo; sehen Sie, ob SLSP-Bibliotheken anderer Institutionsbereiche das Dokument ebenfalls im Bestand haben.</p>
- <img width="935" height="455" src="custom/41SLSP_EPF-prod/img/help/getIt_ger.png" />
- <p>W&auml;hlen Sie die gew&uuml;nschte Vormerkungsoption: Vormerkung (physisches Exemplar/Buchung) oder Digitalisierung (elektronisch oder Papierform). Sie m&uuml;ssen angemeldet sein, um eine Vormerkung aufgeben zu k&ouml;nnen.</p>
- <img width="935" height="349" src="custom/41SLSP_EPF-prod/img/help/requestOption_ger.png" />
- <p>Wenn Sie "Vormerkung" ausw&auml;hlen, k&ouml;nnen Sie ein physisches Exemplar zur Abholung in einer Bibliothek vormerken lassen. Einige Exemplare k&ouml;nnen auch f&uuml;r eine Lieferung auf dem Postweg (geb&uuml;hrenpflichtig) vorgemerkt werden. Wenn diese Option angeboten wird, k&ouml;nnen Sie sie w&auml;hlen, indem Sie im Feld &laquo;Abhol-Institution&raquo; Ihre Institution und im Feld &laquo;Abholort&raquo; Heimadresse ausw&auml;hlen. </p>
- <p>Wenn Sie ein elektronisches oder ausgedrucktes Exemplar eines Artikels oder Kapitels erhalten m&ouml;chten, klicken Sie auf "Digitalisierung" und f&uuml;llen Sie das Formular mit so vielen Angaben wie m&ouml;glich aus. </p>
- <p><strong>HINWEIS:</strong> Diese Services sind in Ihrer IZ / Bibliothek m&ouml;glicherweise nicht verf&uuml;gbar und k&ouml;nnen kostenpflichtig sein. Weitere Informationen finden Sie <a href="https://slsp.ch/fees" target="_blank">hier</a>. </p>
-</md-card-content>
- <md-card-content id="bor2">
- <a href="#index">
- <h3>Vormerkungen zur Fernleihe<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>
- Obwohl das SLSP-Netzwerk Zugriff auf mehr als 50 Millionen Titel und unz&auml;hlige elektronische Ressourcen bietet, kann es sein, dass die Publikation, nach der Sie suchen, nicht darunter ist. In diesem Fall k&ouml;nnen Sie einen Fernleihauftrag aufgeben und die Bibliothek leiht die Publikation bei einer anderen Bibliothek in der Schweiz oder im Ausland aus (geb&uuml;hrenpflichtig). Bitte f&uuml;llen Sie hierzu <a href="https://slsp.ch/en" target="_blank">dieses Formular aus</a>.
- </p>
- <p><strong>HINWEIS:</strong> F&uuml;r diesen Service k&ouml;nnen zus&auml;tzliche Geb&uuml;hren anfallen. Weitere Informationen zu Geb&uuml;hren <a href="https://slsp.ch/fees" target="_blank">finden Sie auf dieser Seite</a>.</p>
-</md-card-content>
- <md-card-content id="bor3">
- <a href="#index">
- <h3>Ausleihfristen verl&auml;ngern <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>In &laquo;Mein Konto&raquo; sehen Sie Ihre aktuellen Ausleihen und k&ouml;nnen sie einzeln oder alle verl&auml;ngern, sofern dies die Ausleihbedingungen erlauben. </p>
- <img width="935" height="524" src="custom/41SLSP_EPF-prod/img/help/renewLoans_ger.png" />
- <!--<p><strong>Note:</strong> The new loan period always runs as of immediately. If you renew a document yourself before the automatic loan period ends, the maximum possible loan period becomes shorter. </p>-->
- <p><strong>HINWEIS:</strong> Die Ausleihbedingungen k&ouml;nnen je nach Institution und Art des Materials variieren.</p>
-</md-card-content>
- <md-card-content id="bor4">
- <a href="#index">
- <h3>Liste der fr&uuml;heren Ausleihen<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>In &laquo;Mein Konto&raquo; k&ouml;nnen Sie im Bereich &laquo;Ausleihen&raquo; der IZs Ihre aktiven und fr&uuml;heren Ausleihen sehen. </p>
- <img width="352" height="150" src="custom/41SLSP_EPF-prod/img/help/activeLoans_ger.png" />
- <p><strong>HINWEIS:</strong> In einigen IZs / Bibliotheken steht diese Option aufgrund kantonaler Datenschutzbestimmungen nicht zur Verf&uuml;gung.</p>
-</md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="search">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Suchen</h2></a>
-</md-card-title-text>
- </md-card-title>
- <md-card-content id="sea1">
- <a href="#index">
- <h3>SLSP-Suchprofile <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>SLSP arbeitet mit zwei Standard-Suchprofilen, die in jeder Ansicht zu finden sind. Das erste ist "swisscovery" und umfasst die Ressourcen aller Bibliotheken des SLSP Netzwerks , das zweite ist &laquo;Meine Bibliothek&raquo;. Auf der folgenden Infografik sehen Sie den Unterschied der beiden Standard-Suchprofile. In bestimmten IZs oder Bibliotheks-Views werden zus&auml;tzliche kundenspezifische Suchprofile angezeigt, die von der IZ / Bibliothek erstellt wurden. </p>
- <img width="935" height="899" src="custom/41SLSP_EPF-prod/img/help/infographig_ger.png" />
- <p><strong>Meine Bibliothek: </strong> Umfasst den lokalen Bestand der IZ / Bibliothek + externe Ressourcen, die in dieser IZ eingespielt sind (allgemein und lokal) + CDI (CDI kann auch als separates Suchprofil verwendet werden). Dieses Suchprofil ist immer nach der Institution benannt.</p>
- <p><strong>swisscovery:</strong> Alle Datens&auml;tze des SLSP-Netzwerks + allgemeine externe Ressourcen + CDI. </p>
- <p><strong>Eigene Suchprofile:</strong> Einige Institutionsbereiche / Bibliotheken haben ihre eigenen Suchprofile einschliesslich spezifischer lokaler Daten erstellt.</p>
- <p><strong>Central Discovery Index (CDI):</strong> Ist eine zentrale Datenbank, die unz&auml;hlbare Quellen f&uuml;r insgesamt mehr als 3 Milliarden Datens&auml;tze umfasst, z. B.: Zeitschriftenartikel, E-Books, Dissertationen, Konferenzberichte, Patente, Berichte, Regierungsdokumente, Bilder und Videos. Je nach IZ /Bibliotheks-View kann der CDI im Suchprofil &laquo;Meine Bibliothek&raquo;, in einem separaten Suchprofil oder in beiden durchsucht werden. </p>
- <p><strong>Allgemeine Externe Ressourcen:</strong> swisscovery wurde um allgemeine elektronische externe Ressourcen erweitert, haupts&auml;chlich aus institutionellen Repositorien. </p>
- <p><strong>Lokale Externe Ressourcen: </strong> Zus&auml;tzlich zu den allgemeinen externen Ressourcen bieten einige Institutionsbereiche auch lokale externe Ressourcen an, die nur f&uuml;r die eigenen Benutzenden zug&auml;nglich sind. </p>
-</md-card-content>
- <md-card-content id="sea2">
- <a href="#index">
- <h3>Einfache Suche<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Die einfache Suche erm&ouml;glicht einen schnellen Zugriff auf die Bibliotheksressourcen. </p>
- <img width="935" src="custom/41SLSP_EPF-prod/img/help/simpleSearch_ger.png" />
-</md-card-content>
- <md-card-content id="sea3">
- <a href="#index">
- <h3>Erweiterte Suche <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Die Suchfelder der erweiterten Suche k&ouml;nnen mit UND, ODER oder NICHT verkn&uuml;pft werden. </p>
- <img width="935" height="426" src="custom/41SLSP_EPF-prod/img/help/advancedSearch_ger.png" />
- <p>In diesem Beispiel ist die Suche auf B&uuml;cher in englischer Sprache beschr&auml;nkt, die &laquo;mountain railway*&raquo; im Titel und "Switzerland " als Thema enthalten. </p>
- <p>Via Dropdown Menu in der zweiten (bzw. dritten) Spalte der Zeile k&ouml;nnen Sie zwischen &laquo;enth&auml;lt&raquo; oder &laquo;ist(exakt)&raquo; oder &laquo;beginnt mit&raquo; w&auml;hlen. Dadurch legen Sie fest, ob die Suchbegriffe im Feld enthalten sein sollen, ob das Ergebnis exakt mit den Suchbegriffen &uuml;bereinstimmen muss oder ob das Element mit einem bestimmten Begriff beginnen muss. </p>
- <p>Sie k&ouml;nnen ein paar Stichw&ouml;rter des Titels eingeben (beliebige Reihenfolge):</p>
- <img width="408" height="57" src="custom/41SLSP_EPF-prod/img/help/advancedField1_ger.png" /><br />
- <p>Sie k&ouml;nnen den exakten Titel suchen:</p>
- <img width="408" height="70" src="custom/41SLSP_EPF-prod/img/help/advancedField2_ger.png" />
- <p>Sie k&ouml;nnen nach Titeln suchen, die mit dem Wort &laquo;mountain&raquo; beginnen:</p>
- <img width="408" height="62" src="custom/41SLSP_EPF-prod/img/help/advancedField3_ger.png" />
-</md-card-content>
- <md-card-content id="sea4">
- <a href="#index">
- <h3>Nach einer Wortgruppe suchen <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Wenn Sie nach einer Wortgruppe suchen m&ouml;chten, setzen Sie diese in Anf&uuml;hrungszeichen. Sie k&ouml;nnen bei einer Suche Wortgruppen und W&ouml;rter kombinieren. </p>
- <img width="935" height="85" src="custom/41SLSP_EPF-prod/img/help/searchPhrase_ger.png" />
- <p>Die Ergebnisse der obigen Suche umfassen Dokumente, die sowohl die Wortgruppe &laquo;piz buin&raquo; als auch den Wort &laquo;mountain&raquo; enthalten. </p>
-</md-card-content>
- <md-card-content id="sea5">
- <a href="#index">
- <h3>Mit Platzhaltern suchen<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Der Asterisk * und das Fragezeichen ? k&ouml;nnen bei der Suche als Platzhalter verwendet werden:</p>
- <p>Der Asterisk * ist der Platzhalter f&uuml;r null bis mehrere beliebige Zeichen: </p>
- <img width="935" height="74" src="custom/41SLSP_EPF-prod/img/help/searchWildcard1_ger.png" />
- <p>sucht nach culture, cultures, cultural usw.</p>
- <p>Der Asterisk * kann auch dabei helfen, verschiedene Schreibweisen bei der Suche zu ber&uuml;cksichtigen: </p>
- <img width="935" height="77" src="custom/41SLSP_EPF-prod/img/help/searchWildcard2_ger.png" />
- <p>sucht nach yogurt, yoghurt, yogourt, yoghourt usw.</p>
- <p>Das Fragezeichen ? ist der Platzhalter f&uuml;r ein einzelnes Zeichen: </p>
- <img width="935" height="84" src="custom/41SLSP_EPF-prod/img/help/searchWildcard3_ger.png" />
- <p>sucht sowohl nach woman als auch nach women.</p>
- <p>Sie k&ouml;nnen ebenfalls folgende beide Zeichen auch kombinieren</p>
- <img width="935" height="84" src="custom/41SLSP_EPF-prod/img/help/searchWildcard4_ger.png" />
- <p>Sie erhalten Ergebnisse mit yoghurt, yogourt, yohurts oder yogourts</p>
-</md-card-content>
- <md-card-content id="sea6">
- <a href="#index">
- <h3>Boolesche Operatoren zum Erweitern oder Eingrenzen einer Suche verwenden<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>Sie k&ouml;nnen die booleschen Operatoren UND, ODER und NICHT verwenden. Diese m&uuml;ssen zwingend in Grossbuchstaben geschrieben werden, damit sie angewendet werden. </p>
- <p>Ohne Operatoren werden die Suchbegriffe automatisch mit <strong>UND</strong> verkn&uuml;pft. Somit m&uuml;ssen alle Suchbegriffe f&uuml;r die Ergebnisse zutreffend sein. </p>
- <p><strong>ODER</strong></p>
- <p>Mindestens einer der mit ODER verkn&uuml;pften Suchbegriffe muss in den Ergebnissen zutreffen. Verwenden Sie ODER zum Beispiel, um verwandte Begriffe zu kombinieren und so die Suche auf mehrere Begriffe (Synonyme, unterschiedliche Schreibweisen) zu erweitern:</p>
- <img width="935" height="76" src="custom/41SLSP_EPF-prod/img/help/searchOR_ger.png" />
- <p><strong>NICHT</strong></p>
- <p>Der mit NICHT ausgeschlossene Suchbegriff darf nicht in den Ergebnissen erscheinen. Auf diese Weise k&ouml;nnen W&ouml;rter oder Wortgruppen explizit ausgeschlossen werden. </p>
- <!--<p><strong>NOTE:</strong> The Boolean operator NOT is available only in the simple search </p>-->
- <img width="935" height="79" src="custom/41SLSP_EPF-prod/img/help/searchNOT_ger.png" />
- <p>Die Ergebnisse umfassen Dokumente, die die Wortgruppen &laquo;climate change&raquo;, aber nicht &laquo;global warming&raquo; enthalten.</p>
-</md-card-content>
- <md-card-content id="sea7">
- <a href="#index">
- <h3>Meine Favoriten<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>In &laquo;Meine Favoriten&raquo; k&ouml;nnen Sie Treffer speichern, die Sie w&auml;hrend Ihrer Suche gefunden haben. Langfristiges Speichern ist nur m&ouml;glich, wenn Sie angemeldet sind. Als Gast stehen Ihnen die Favoriten nur w&auml;hrend der aktuellen Browser-Sitzung zur Verf&uuml;gung.</p>
- <p>
- Wenn Sie auf das Stecknadel-Symbol
- <img width="14" height="18" src="custom/41SLSP_EPF-prod/img/help/pinIcon1.png" /> n der Trefferanzeige klicken, wird der Titel zu Ihren Favoriten hinzugef&uuml;gt; das Stecknadel-Symbol &auml;ndert sich zu
- <img width="14" height="15" src="custom/41SLSP_EPF-prod/img/help/pinIcon2.png" />. Wenn Sie auf
- <img width="14" height="15" src="custom/41SLSP_EPF-prod/img/help/pinIcon2.png" /> klicken, wird der Titel aus Ihren Favoriten entfernt.
- </p>
- <p>
- &Uuml;ber das Stecknadel-Symbol
- <img width="14" height="18" src="custom/41SLSP_EPF-prod/img/help/pinIcon1.png" /> oben rechts auf der Seite k&ouml;nnen Sie auf Ihre Favoritensammlung zugreifen.
- </p>
- <p>Sie k&ouml;nnen einzelne Titel aus Ihrer Favoritenliste entfernen oder exportieren. Markieren Sie einen oder mehrere Titel und verwenden Sie die Symbole oben auf der Seite, um sie zu l&ouml;schen, Beschriftungen hinzuzuf&uuml;gen, sie in Referenzverwaltungsprogramme zu exportieren, sie zu drucken oder per E-Mail zu versenden: </p>
- <img width="935" height="481" src="custom/41SLSP_EPF-prod/img/help/myFavorites_ger.png" />
- <p>Um die Details eines Titels anzuzeigen, klicken Sie auf den Titel.</p>
- <p>Unter &laquo;Meine Favoriten&raquo; finden Sie auch die Suchhistorie f&uuml;r die aktuelle Sitzung. </p>
-</md-card-content>
- <md-card-content id="sea8">
- <a href="#index">
- <h3>Suchhistorie<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Die Suchanfragen der aktuellen Sitzung werden in Ihren Favoriten unter &laquo;Suchhistorie&raquo; aufgezeichnet.</p>
- <p>
- Zum &Ouml;ffnen der Suchhistorie klicken Sie auf das Symbol
- <img width="30" height="30" src="custom/41SLSP_EPF-prod/img/help/searchHistoryIcon.png" />oben rechts auf der Seite.
- </p>
- <img width="470" height="311" src="custom/41SLSP_EPF-prod/img/help/searchHistory_ger.png" />
-</md-card-content>
- <md-card-content id="sea9">
- <a href="#index">
- <h3>Suchen speichern und verwalten<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>Wenn Sie angemeldet sind, k&ouml;nnen Sie Suchanfragen dauerhaft speichern. Klicken Sie dazu auf &laquo;Suchanfrage speichern&raquo; oberhalb der Ergebnisliste:</p>
- <img width="935" height="148" src="custom/41SLSP_EPF-prod/img/help/saveQuery_ger.png" />
- <p><strong>HINWEIS:</strong> Die Option &laquo;Suchanfrage speichern&raquo; wird nur angezeigt, wenn Sie angemeldet sind und eine Suchanfrage gestellt haben. </p>
- <p>Wenn Sie Ihre Suchanfrage speichern, k&ouml;nnen Sie E-Mail-Benachrichtigungen abonnieren. In diesem Fall erhalten Sie eine E-Mail, wenn es Neuigkeiten zu Ihrer Anfrage gibt. Zur Aktivierung dieses Service erscheint oben auf der Seite automatisch eine Meldung.</p>
- <img width="935" height="73" src="custom/41SLSP_EPF-prod/img/help/emailNotification_ger.png" /><br />
- <img width="418" height="333" src="custom/41SLSP_EPF-prod/img/help/emailNotificationSettings_ger.png" />
- <p>
- Die gespeicherten Suchen werden unter &laquo;Meine Favoriten&raquo;
- <img width="14" height="18" src="custom/41SLSP_EPF-prod/img/help/pinIcon1.png" /> in der Registerkarte &laquo;gespeicherte Suchen&raquo; gespeichert.
- </p>
- <img width="935" height="250" src="custom/41SLSP_EPF-prod/img/help/savedSearches_ger.png" />
- <p>Wenn Sie auf den Eintrag der gespeicherten Suche klicken, wird die Suchanfrage erneut ausgef&uuml;hrt. Mit den Symbolen auf der rechten Seite k&ouml;nnen Sie eine Benachrichtigung (per RSS oder E-Mail) einrichten, die Sie &uuml;ber neu hinzugef&uuml;gte Dokumente informieren, die Ihre Suchkriterien erf&uuml;llen. </p>
-</md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="display">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Ergebnisse anzeigen</h2></a>
-</md-card-title-text>
- </md-card-title>
- <md-card-content id="dis1">
- <a href="#index">
- <h3>Ergebnisse eingrenzen<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>In der linken Spalte werden Filterm&ouml;glichkeiten vorgeschlagen, mit denen Sie Ihre Suchergebnisse eingrenzen k&ouml;nnen: </p>
- <img width="302" height="195" src="custom/41SLSP_EPF-prod/img/help/facets1_ger.png" />
- <p>Wenn Sie auf &laquo;Artikel&raquo; klicken, wird im obigen Beispiel die Ergebnisliste auf die 113 gefundene Artikel begrenzt.</p>
- <p>Um einen Begriff auszuschliessen, klicken Sie auf das rote Symbol rechts neben dem Begriff. </p>
- <img width="320" height="215" src="custom/41SLSP_EPF-prod/img/help/facets2_ger.png" />
- <p>Mit &laquo;Weitere anzeigen&raquo; k&ouml;nnen Sie weitere Begriffe anzeigen lassen und die Suche verfeinern, indem Sie mehrere Begriffe ein- oder ausschliessen. </p>
- <p>Beispiel: Grenzen Sie die Ergebnisse auf &laquo;B&uuml;cher&raquo;, &laquo;Hochschulschriften&raquo; und &laquo;Videos&raquo; ein.</p>
- <img width="349" height="506" src="custom/41SLSP_EPF-prod/img/help/facets3_ger.png" />
- <p>Um einen Filter zu entfernen, klicken Sie auf das x neben dem entsprechenden Begriff. Mit &laquo;Filter zur&uuml;cksetzen&raquo; werden alle Filter entfernt.</p>
- <img width="313" height="228" src="custom/41SLSP_EPF-prod/img/help/filters1_ger.png" />
- <p>Durch eine neue Sucheingabe werden automatisch alle Filter entfernt. Sie k&ouml;nnen jedoch einen Filter f&uuml;r die Dauer der Browser-Sitzung speichern, indem Sie ihn ausw&auml;hlen und dann auf das Schloss-Symbol klicken. Um diesen Filter zu entfernen, klicken Sie erneut auf das Schloss-Symbol. </p>
- <img width="273" height="241" src="custom/41SLSP_EPF-prod/img/help/filters2_ger.png" />
-</md-card-content>
- <md-card-content id="dis2">
- <a href="#index">
- <h3>Ergebnisliste: Sortieren<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>Die Ergebnisse sind standardm&auml;ssig nach Relevanz sortiert. Sie k&ouml;nnen sie auch nach Datum, Verfasser und Titel sortieren lassen. </p>
- <img width="177" height="315" src="custom/41SLSP_EPF-prod/img/help/sorting_ger.png" />
-</md-card-content>
- <md-card-content id="dis3">
- <a href="#index">
- <h3>Ergebnisliste: Versionen <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Wenn ein Werk in mehreren Versionen (d.h. in verschiedenen Ausgaben oder Druckversionen) erh&auml;ltlich ist, klicken Sie auf das Symbol, den Titel oder &laquo;Alle Versionen anzeigen&raquo;, um alle Versionen aufzulisten. </p>
- <img width="512" height="193" src="custom/41SLSP_EPF-prod/img/help/versions_ger.png" />
- <p>Sie k&ouml;nnen zur Ergebnisliste zur&uuml;ckkehren, indem Sie die Liste der Versionen unter &laquo;Aktive Filter&raquo; schliessen.</p>
- <img width="263" height="191" src="custom/41SLSP_EPF-prod/img/help/activeFilters_ger.png" />
-</md-card-content>
- <md-card-content id="dis4">
- <a href="#index">
- <h3>Einzelne Titel anzeigen <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Wenn Sie auf einen Titel klicken, k&ouml;nnen Sie die folgenden Aktionen ausw&auml;hlen: </p>
- <img width="144" height="274" src="custom/41SLSP_EPF-prod/img/help/fullViewNavigation_ger.png" />
- <p><strong>Top:</strong> Zur&uuml;ck zum Seitenanfang</p>
- <p><strong>Senden an: </strong> Titelinformationen in Referenzverwaltungsprogramm exportieren, Literaturangaben exportieren, Permalink zum Ergebnis erstellen, Titel ausdrucken oder per EMail versenden. Export-Aktionen k&ouml;nnen f&uuml;r bis zu 50 Datens&auml;tze gleichzeitig angewendet werden.</p>
- <p><strong>Wie man es ausleiht:</strong> Standorte anzeigen, Bestellungen f&uuml;r Ausleihen, Reservierungen oder Kopien aufgeben.</p>
- <p><strong>Details:</strong> weitere Informationen zum Titel.</p>
- <p><strong>Verkn&uuml;pfungen:</strong> Links zum Inhaltsverzeichnis, zum fr&uuml;heren/sp&auml;teren Titel, zu allen B&auml;nden einer Reihe.</p>
- <p><strong>Virtuelle Indexsuche:</strong> Hier sehen Sie ein Bibliotheksregal f&uuml;r den ausgew&auml;hlten Datensatz, sodass Sie noch weitere Exemplare finden k&ouml;nnen, die mit Ihrer Suche in Zusammenhang stehen.</p>
-</md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="questions">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Fragen?</h2></a>
-</md-card-title-text>
- </md-card-title>
- <md-card-content id="que1">
- <a href="mailto:library@epfl.ch">
- <h3>Kontaktangabe<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>Bei Fragen, Unklarheiten, Kommentaren oder Anregungen k&ouml;nnen Sie uns sehr gern jederzeit <a href="mailto:swisscovery@slsp.ch" target="_blank">kontaktieren</a>.</p>
-
-</md-card-content>
-
- </md-card>
-
- </div>
-
-
-
- </div>
-
-</md-content>
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/html/help/help_en.html b/primo-explore/custom/41SLSP_HPH-EPFL/html/help/help_en.html
deleted file mode 100644
index 46a52f1..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/html/help/help_en.html
+++ /dev/null
@@ -1,505 +0,0 @@
-
-<md-content id="help">
- <div class="ps_content md-padding" layout-gt-sm="row" layout-align="center center">
- <div flex="100" flex-md="100" flex-lg="80" flex-xl="60" layout="column">
- <md-card class="default-card">
- <md-card-title>
- <md-card-title-text>
- <h1 class="md-headline"><b>swisscovery Help Page</b></h1>
- </md-card-title-text>
- </md-card-title>
- </md-card>
- <md-card class="default-card">
- <md-card-content>
- <h4>Introduction:</h4>
- <p>Dear User</p>
- <p>Welcome to the Swisscovery's help page.</p>
- <p>Swisscovery is the <a href="https://slsp.ch/en" target="_blank">Swiss Library Service Platform Network (SLSP)</a> discovery tool. In this page you will find useful information about how to use Swisscovery and how the SLSP network is organized.</p>
- <p>Attention: this help page has been created for the whole SLSP Network! This means that some services may not be available in this specific user interface. Please note that the start page or the record's full display may look different from institution to institution to what is showed in this help page.</p>
- </md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="index">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Index</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <h3><a href="#general">General</a></h3>
- <ul>
- <!--<li><a href="#gen1">A short video introduction to Swisscovery</a></li>-->
- <li><a href="#gen2">SLSP: The Swiss Library Service Platform</a></li>
- <li><a href="#gen3">SLSP Network</a></li>
- <li><a href="#gen4">Open an account</a></li>
- <li><a href="#gen5">Library card</a></li>
- <li><a href="#gen6">How to Sign in and Sign out</a></li>
- <li><a href="#gen7">My Account</a></li>
- <li><a href="#gen8">Update your account </a></li>
- <li><a href="#gen9">Set language</a></li>
- </ul>
- <h3><a href="#online">Online resources</a></h3>
- <ul>
- <li><a href="#onl1">Online resources </a></li>
- <li><a href="#onl2">Online services for university members</a> </li>
- <li><a href="#onl3">Online services for people who are not members of a university </a></li>
- <li><a href="#onl4">Open Access </a></li>
- <li><a href="#onl5">National licences </a></li>
- </ul>
- <h3><a href="#borrow">Borrowing/ordering documents</a></h3>
- <ul>
- <li><a href="#bor1">Borrowing/ordering documents </a></li>
- <li><a href="#bor2">Interlibrary loan requests outside SLSP network </a></li>
- <li><a href="#bor3">Extending loan periods </a></li>
- <li><a href="#bor4">List of previous loans </a></li>
- </ul>
- <h3><a href="#search">Searching</a></h3>
- <ul>
- <li><a href="#sea1">SLSP search profiles </a></li>
- <li><a href="#sea2">Simple search </a></li>
- <li><a href="#sea3">Advanced search </a></li>
- <li><a href="#sea4">Searching for a phrase </a></li>
- <li><a href="#sea5">Searching with wildcards </a></li>
- <li><a href="#sea6">Using Boolean operators to expand or narrow a search </a></li>
- <li><a href="#sea7">My favorites </a></li>
- <li><a href="#sea8">Search history </a></li>
- <li><a href="#sea9">Saving and managing searches </a></li>
- <!--<li><a href="#sea10">Citation Linker </a></li>-->
- </ul>
- <h3><a href="#display">Displaying the results</a></h3>
- <ul>
- <li><a href="#dis1">Narrowing down results </a></li>
- <li><a href="#dis2">List of results: sorting </a></li>
- <li><a href="#dis3">List of results: versions</a> </li>
- <li><a href="#dis4">Viewing individual titles </a></li>
- </ul>
- <h3><a href="#questions">Questions?</a></h3>
- <ul>
- <li><a href="#que1">Contact information</a></li>
- </ul>
- </md-card-content>
- </md-card>
-
- <md-card class="default-card" id="general">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">General </h2></a>
- </md-card-title-text>
- </md-card-title>
- <!--<md-card-content id="gen1">
- <a href="#index"><h3>A short video introduction to Swisscovery<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3></a>
- <div class="resp-container">
- <iframe class="resp-iframe" src="https://www.youtube.com/embed/1fZwnu_nzPU" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
- </div>
- </md-card-content>r-->
- <md-card-content id="gen2">
- <a href="#index">
- <h3>SLSP: The Swiss Library Service Platfom<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>
- The Swiss Library Service Platform, along with his subsidiary Consortium of Swiss Academic Libraries, with more than
- <a href="https://slsp.ch/libraries" target="_blank">450 members</a>, is the biggest network of academic and research libraries in Switzerland. Created by libraries, for libraries, it is a joint effort to provide a series of services at the entire country such as, a shared multilingual catalogue of scientific information, a unique representative for e-resources licensing and a performant courier network for physical items sharing.
- </p>
- <p>SLSP represents an innovative and significant step forward in the digital evolution of scientific libraries in Switzerland. By managing the cloud-based Alma system, the organisation brings together scientific information stored in libraries across Switzerland. By making this information accessible and easily findable, SLSP contributes to scientific discovery and progress.</p>
- </md-card-content>
- <md-card-content id="gen3">
- <a href="#index">
- <h3>SLSP Network<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>SLSP Network is divided in several "zones". SLSP itself manage the network zone (NZ) called Swisscovery, while libraries have been distributed in 29 "institution zones" (IZ).</p>
- <p>An institution zone (IZ) is a group of libraries that have similar needs. The IZ is a key component in the SLSP system and represents a division that enables synergies and increases efficiency. In SLSP we distinguish two types of institution zone: single entity zones and mixed entity zones.</p>
- <p>In a single entity zone, most of libraries are legally related to one main entity (for instance a university). In a mixed entity zone, libraries are legally related to different entities (for instance they are grouped together due to geographical considerations)</p>
- <p>To access the resources of SLSP members, users must access the users' interfaces called "views". In SLSP we have prepared a view for the Network Zone (NZ), a view for every Institution Zone (IZ) and several views for single libraries.</p>
- <p>Every view has its specifics search scopes, which will return different results when used for the search. The Swisscovery network zone contains all records coming from the SLSP libraries, some general external resource (for example e-rara data) and the CDI index. The institution zones views and the library views contain the local inventory of the institution zone / library, general and local external resources and the CDI index.</p>
- <p>Central Discovery Index (CDI): is a central database of more than 3 billion of records such as: journals articles, e-books, dissertations, conference proceedings, etc.</p>
- <img width="935" height="665" src="custom/41SLSP_EPF-prod/img/help/swisscovery.png" />
- <p>At the following <a href="https://slsp.ch/libraries" target="_blank">link</a> you can find the topology of the SLSP Network, comprehensive of the list of all SLSP member libraries divided per institution zone and the link to every existing view of our network. For every IZ and library you can find the address, the contact information and the services they provide. </p>
- </md-card-content>
- <md-card-content id="gen4">
- <a href="#index">
- <h3>Open an account <img class="icon_up2" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>To register with SLSP please first visit to: <a href="https://registration.slsp.ch" target="_blank">https://registration.slsp.ch</a></p>
- <p>After starting the registration, you will be asked to login with a SWITCH edu-ID account. If you already have a SWITCH edu-ID account just login to proceed with the registration. If you don't have your password yet, there is a password reset link on the login page.</p>
- <p>If you don't have a SWITCH edu-ID account yet, you can click on "Create account" on the login page. </p>
- <p><strong>Note:</strong> If you study at a university it is possible that you registered with SLSP previously. In this case a message will appear, and you will be forwarded to the view's login section. </p>
- </md-card-content>
- <md-card-content id="gen5">
- <a href="#index">
- <h3>Library card<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>With your library card you have access to a series of services, for instance, you can loan a physical item in a library. </p>
- <p>If you already have a library card of the <a href="https://www.nb.admin.ch/snl/en/home/services/user-services/bibliopass.html" target="_blank">BibliOpass network</a> you can optionally provide the library card number during the registration with SLSP or afterwards. Some campus / university / student cards are also valid as library card. Also, some universities will provide the library card number for their users. Which library card numbers are associated to an SLSP account, will be show during registration process with SLSP (see "Open an "account" chapter). </p>
- <p>If you don't have a physical library card, you can ask your library to provide you with one. </p>
- </md-card-content>
- <md-card-content id="gen6">
- <a href="#index">
- <h3>How to Sign in and Sign out<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>In Swisscovery: click on "Sign in" - choose your institution zone - click on "SWITCH edu-ID" - enter your email address and password - click on "Login" </p>
- <p>In an institution zone / library view: click on "Sign in" - click on "SWITCH edu-ID" - enter your email address and password - click on "Login" </p>
- <img width="460" height="74" src="custom/41SLSP_EPF-prod/img/help/signin.png" />
- <p>You need to be signed in to do the following:</p>
- <ul>
- <li>Order documents (loan, digitization order, ILL) </li>
- <li>View and control your loans and requests from libraries in the SLSP network. </li>
- <li>Extend loan periods, cancel reservations </li>
- <li>Save favorites </li>
- <li>Save searches and set alerts </li>
- <li>Change your language settings permanently </li>
- </ul>
- <p>As a guest, your favorites, search requests and selected language can only be saved for the current browser session. </p>
- <p>Sign out after a session to protect your account against access by other users. </p>
- <h4>NOTE:</h4>
- <p>To access online resources, it is not relevant to sign in. </p>
- <p>
- Access to online resources often depends on whether your device is within the network of a licensing university and if you work for or study at this university. Some universities and libraries allow users to access online resources from outside their network using a proxy service. For more information concerning the conditions to access the online resources, you can consult the chapter "Online resources" of this help page,
- the <a href="https://consortium.ch/?lang=en" target="_blank">Consortium's website</a> or the website of the library which licenses for the respective resource.
- </p>
- <p>These conditions aren't applied to the National licences (for more information see the corresponding chapter of this help page). </p>
- </md-card-content>
- <md-card-content id="gen7">
- <a href="#index">
- <h3>My Account <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>You must sign in to access your account. Once you did that, click on your name at the top right of the page, you will access to a menu containing some of the submenu of your account. To have full access at your data's account click on "My Account". </p>
- <p>From this page you will be able to consult your loans, fees, reminders, requests, messages and many other functionalities. </p>
- <p><strong>NOTE:</strong> every institution zone has its own space, this means, for example, that if you loan a resource in the BCU Fribourg's institution zone and one at ETH Z&uuml;rich's institution zone they are splitted in different pages, see below: </p>
- <img width="935" height="627" src="custom/41SLSP_EPF-prod/img/help/myAccount.png" />
- </md-card-content>
- <md-card-content id="gen8">
- <a href="#index">
- <h3>Update your account<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>To modify your address or other information of your account go to the My edu-ID page on <a href="https://eduid.ch/" target="_blank">https://eduid.ch/</a> and update your edu-ID account. If you want to manage your library card numbers, please go to <a href="https://registration.slsp.ch/register/library-card/" target="_blank">https://registration.slsp.ch/register/library-card/</a> </p>
- </md-card-content>
- <md-card-content id="gen9">
- <a href="#index">
- <h3>Set language <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Click on "Menu - Display language" to change the language settings for the current session. If you are signed in, the language set will be saved permanently. You can change your interface language also by entering the "Personal details" section of your account. </p>
- <img width="333" height="211" src="custom/41SLSP_EPF-prod/img/help/setLanguage.png" />
- </md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="online">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Online resources</h2></a>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
-
- <md-card-content id="onl1">
- <a href="#index">
- <h3>Online resources<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>All kinds of online resources offered by the participating libraries are indexed in the search: books, journals, databases, digitized photos, maps, manuscripts and other collection items. However, not all documents are freely accessible. Many documents are acquired with what is known as a licence and are only available in the network of the licensing university. With the aid of filters, you can narrow the search down to freely accessible (Online - Open Access) or licenced (Online) documents. </p>
- <img width="233" height="218" src="custom/41SLSP_EPF-prod/img/help/showonly.png" />
- <p>
- For online resources, the "View Online" section in the full display provides information about the availability of the resource in your institution and in others IZs of the SLSP Network. To access the resource,
- click on the icon <img width="41" height="42" src="custom/41SLSP_EPF-prod/img/help/viewOnlineIcon.png" />
- </p>
- <img width="935" height="462" src="custom/41SLSP_EPF-prod/img/help/viewOnline.png" />
- </md-card-content>
- <md-card-content id="onl2">
- <a href="#index">
- <h3>Online services for university members<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>In addition to Open Access documents, you can use your university's online services. E-journals, eBooks and databases are acquired with what are known as licences and the access is restricted exclusively to the network of the licensing institution (on campus). From outside the university, you can use VPN, Eduroam, EZProxy, etc. to access these documents. Please check your library or IT university's website for remote access information. </p>
- <p>
- The "View Online" section provides available services for the resource at your institution and in other institution zones of the SLSP Network. Click on "Available online"
- and the icon <img width="41" src="custom/41SLSP_EPF-prod/img/help/viewOnlineIcon.png" />to get the full display view.
- </p>
- <img width="935" height="170" src="custom/41SLSP_EPF-prod/img/help/availOnline.png" />
- <img width="935" height="439" src="custom/41SLSP_EPF-prod/img/help/availOnlineFull.png" />
- </md-card-content>
- <md-card-content id="onl3">
- <a href="#index">
- <h3>Online services for people who are not members of a university <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>In addition to Open Access and online resources under a national licence, you can also use the universities' licensed resources, albeit not from your own computer. </p>
- <p>Academic e-journals, eBooks and databases are acquired with what are known as licences and the access is restricted exclusively to the network of the licensing institution (on campus). You can download and/or access the resources on premise of the licensing library. </p>
- <p>Which libraries offer access to an online resource are displayed under locations: </p>
- <img width="935" height="170" src="custom/41SLSP_EPF-prod/img/help/availOnline2.png" />
- <img width="935" height="345" src="custom/41SLSP_EPF-prod/img/help/locationItems.png" />
- </md-card-content>
- <md-card-content id="onl4">
- <a href="#index">
- <h3>Open Access<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Open Access documents are freely accessible. These are journal articles or books on various platforms or in institutional repositories on the one hand and digitized documents from library holdings on the other. These documents are marked in the list of results. </p>
- <img width="935" height="188" src="custom/41SLSP_EPF-prod/img/help/openAccess.png" />
- </md-card-content>
- <md-card-content id="onl5">
- <a href="#index">
- <h3>National licenses<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>All people who reside in Switzerland have access to online resources under the national license. This requires a one-off free registration; further information is available at the address <a href="https://consortium.ch/zugriff/?lang=en" target="_blank">https://consortium.ch/zugriff/?lang=en </a>. Resources available under a National licence are marked in bracket in the "Full text availability" section.</p>
- <img width="935" height="160" src="custom/41SLSP_EPF-prod/img/help/NationalLicenses.png" />
- </md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="borrow">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Borrowing/requesting documents </h2></a>
- </md-card-title-text>
- </md-card-title>
- <md-card-content id="bor1">
- <a href="#index">
- <h3>Borrowing/requesting documents<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Under "Get It" in the full display, you can see the libraries where the document is located and whether it is currently available.</p>
- <p>Under "Other options" you can see if SLSP libraries from other IZs also have this item available.</p>
- <img width="935" height="455" src="custom/41SLSP_EPF-prod/img/help/getIt.png" />
- <p>Select your desired request option: Request (physical item), Digitization (electronic or paper copy) or Resource Sharing. You must be signed in to place an order. </p>
- <img width="935" height="349" src="custom/41SLSP_EPF-prod/img/help/requestOption.png" />
- <p>If you select Request, you can request a physical item to pick-up at a library. You can also order some items per post. If this option is allowed, you can choose it by selecting your institution in the "Pick-up institution" field and Home Address in the "Pick-up location" field. </p>
- <p>If you would like to get an electronic or paper copy of an article or chapter, click on Digitization and fill in the form with as much details as possible. </p>
- <p><strong>Note:</strong> These services may not be available in your IZ / library and may be subject to costs. For further information click <a href="https://slsp.ch/fees" target="_blank">here</a>. </p>
- </md-card-content>
- <md-card-content id="bor2">
- <a href="#index">
- <h3>Interlibrary Loan Requests<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>
- Despite the SLSP network offers access to more than 17 million of physical bibliographic records and an uncountable number of electronic resources, it is possible your item is not available.
- In this case, we invite you to fill in this <a href="https://slsp.ch/en" target="_blank">form</a>, your library will take care of your request.
- </p>
- <p><strong>Note:</strong> This offer may not be available in your IZ / library and may be subject to additional fees. For more information about the possible fees please, <a href="https://slsp.ch/fees" target="_blank">consult this page</a>.</p>
- </md-card-content>
- <md-card-content id="bor3">
- <a href="#index">
- <h3>Extending loan periods <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>In My Account, you see your current loans and can renew them all or individually, provided this is permitted by the loan conditions. </p>
- <img width="935" height="524" src="custom/41SLSP_EPF-prod/img/help/renewLoans.png" />
- <p><strong>Note:</strong> The new loan period always runs as of immediately. If you renew a document yourself before the automatic loan period ends, the maximum possible loan period becomes shorter. </p>
- <p><strong>Note:</strong> Loan conditions may vary depending on the institutions and type of material.</p>
- </md-card-content>
- <md-card-content id="bor4">
- <a href="#index">
- <h3>List of previous loans <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>In My Account, in every the "Loans" section of the IZs, you can see your active and previous loans. </p>
- <img width="352" height="150" src="custom/41SLSP_EPF-prod/img/help/activeLoans.png" />
- <p><strong>Note:</strong> In some institutions zones / libraries this option is not available due to cantonal privacy laws restrictions. </p>
- </md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="search">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Searching</h2></a>
- </md-card-title-text>
- </md-card-title>
- <md-card-content id="sea1">
- <a href="#index">
- <h3>SLSP search profiles <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>SLSP operates with two standard search profiles that can be found in every view. The first is "All SLSP libraries", the second is "My Library". This infographic explains where you search while using one of the two. In certain institution zones or library views it is possible to find additional custom search profiles created by the institution zone / library. </p>
- <img width="935" height="899" src="custom/41SLSP_EPF-prod/img/help/infographic_en.png" />
- <p><strong>My library:</strong> Includes the local inventory of the institution zone / library + external resources loaded in this institution zone (general and local) + CDI (CDI could also be used as a separate search profile). This search profile is always named after the institution. </p>
- <p><strong>All SLSP libraries:</strong> All records of the SLSP network + general external resources + CDI </p>
- <p><strong>Custom Search Profile:</strong> Some institution zones / libraries prepared their own search profiles including Custom Local Data Scope(s). </p>
- <p><strong>Central Discovery Index (CDI):</strong> Is a central database comprehensive of thousands of sources for a total of more than 3 billion of records such as: journals articles, e-books, dissertations, conference proceedings, patents, reports, government document, images and videos. Depending on the institution zone / library view, the CDI is searchable in the "My Library" search profile, in a separate search profile or both. </p>
- <p><strong>General External resources:</strong> Swisscovery has been enriched by adding general electronic external resources. A detailed list of these resources is available here. </p>
- <p><strong>Local external resources:</strong> In addition to the general external resource, some institution zones also provide local external resource. </p>
- </md-card-content>
- <md-card-content id="sea2">
- <a href="#index">
- <h3>Simple search<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>The simple search enables a rapid access to the library resources. </p>
- <img width="935" src="custom/41SLSP_EPF-prod/img/help/simpleSearch.png" />
- </md-card-content>
- <md-card-content id="sea3">
- <a href="#index">
- <h3>Advanced search <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>The search fields of the advanced search can be combined with AND, OR or NOT. </p>
- <img width="935" height="426" src="custom/41SLSP_EPF-prod/img/help/advancedSearch.png" />
- <p>In this example the search is limited to books in English that contain "mountain railway*" in the title and Switzerland as a subject. </p>
- <p>With the aid of the second (or third field), you can specify whether the search terms should be contained in the field or if it must correspond exactly at the search terms.</p>
- <img width="408" height="57" src="custom/41SLSP_EPF-prod/img/help/advancedField1.png" /><br />
- <p>Here you can put a few words from the title, not necessarily in order</p>
- <img width="408" height="70" src="custom/41SLSP_EPF-prod/img/help/advancedField2.png" />
- <p>Here you are looking for this exact title</p>
- <img width="408" height="62" src="custom/41SLSP_EPF-prod/img/help/advancedField3.png" />
- <p>And here, you're looking for titles that start with the word "mountain"</p>
- </md-card-content>
- <md-card-content id="sea4">
- <a href="#index">
- <h3>Searching for a phrase <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>If you would like to search for a phrase (word group), put it in quotation marks. You can combine phrases and words in a search: </p>
- <img width="935" height="85" src="custom/41SLSP_EPF-prod/img/help/searchPhrase.png" />
- <p>The results include documents that contain both the term "piz buin" and the aspect "mountain". </p>
- </md-card-content>
- <md-card-content id="sea5">
- <a href="#index">
- <h3>Searching with wildcards <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>The asterisk * and the question mark ? can be used as wildcards for the search.</p>
- <p>The asterisk * is used to replace zero, one or several characters: </p>
- <img width="935" height="74" src="custom/41SLSP_EPF-prod/img/help/searchWildcard1.png" />
- <p>For example, it allow to searches for culture, cultures, cultural etc. </p>
- <p>The asterisk * can also help to find different spellings: </p>
- <img width="935" height="77" src="custom/41SLSP_EPF-prod/img/help/searchWildcard2.png" />
- <p>searches for yogurt, yoghurt, yogourt, yoghourt, etc.</p>
- <p>The question mark ? is the wildcard for replacing one single character: </p>
- <img width="935" height="84" src="custom/41SLSP_EPF-prod/img/help/searchWildcard3.png" />
- <p>searches for both woman and women.</p>
- <p>You can also combine these two characters: </p>
- <img width="935" height="84" src="custom/41SLSP_EPF-prod/img/help/searchWildcard4.png" />
- <p>You'll get results with yoghurt, yogurt, yoghurts or yogurts.</p>
- </md-card-content>
- <md-card-content id="sea6">
- <a href="#index">
- <h3>Using Boolean operators to expand or narrow a search<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>You can use the Boolean operators AND, OR and NOT. These must be written in capital letters. </p>
- <p>Without operators, the search terms are automatically combined with AND. In other words, all search terms must appear in the results. </p>
- <p><strong>OR</strong></p>
- <p>At least one of the search terms linked with OR must appear in the results. For example, use OR to combine related terms in order to expand the search to several terms (synonyms, different spellings):</p>
- <img width="935" height="76" src="custom/41SLSP_EPF-prod/img/help/searchOR.png" />
- <p><strong>NOT</strong></p>
- <p>The search term excluded with NOT must not appear in the results. In other words, NOT enables words or phrases to explicitly be excluded. </p>
- <p><strong>NOTE:</strong> The Boolean operator NOT is available only in the simple search </p>
- <img width="935" height="79" src="custom/41SLSP_EPF-prod/img/help/searchNOT.png" />
- <p>The results include documents that contain the phrases "climate change", but not "global warming". </p>
- </md-card-content>
- <md-card-content id="sea7">
- <a href="#index">
- <h3>My Favorites<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>In "My Favorites", you can save titles that you find during your search. Long-term saving is only possible if you are signed in. As a guest, the favorites are only at your disposal during the current browser session. </p>
- <p>
- If you click on the pin icon
- <img width="14" height="18" src="custom/41SLSP_EPF-prod/img/help/pinIcon1.png" /> of a title, the title is added to your favorites; the pin icon changes to
- <img width="14" height="15" src="custom/41SLSP_EPF-prod/img/help/pinIcon2.png" />. If you click on
- <img width="14" height="15" src="custom/41SLSP_EPF-prod/img/help/pinIcon2.png" />, the title is removed from the favorites.
- </p>
- <p>
- You can access your collection of favorites via the pin icon
- <img width="14" height="18" src="custom/41SLSP_EPF-prod/img/help/pinIcon1.png" /> at the top right of the page.
- </p>
- <p>You can remove or export individual titles from your favorites list. Highlight one or several titles and use the symbols at the top of the page in order to delete them, add labels, export them to reference management programs, print them or send them via email: </p>
- <img width="935" height="481" src="custom/41SLSP_EPF-prod/img/help/myFavorites.png" />
- <p>In order to view the details of a title, click on the title. </p>
- <p>You will also find the search history for the current session in "My favorites". </p>
- </md-card-content>
- <md-card-content id="sea8">
- <a href="#index">
- <h3>Search history<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>The searches from the current session are recorded in your favorites under "Search history".</p>
- <p>
- You reach it directly via the icon
- <img width="30" height="30" src="custom/41SLSP_EPF-prod/img/help/searchHistoryIcon.png" />at the top right of the page.
- </p>
- <img width="470" height="311" src="custom/41SLSP_EPF-prod/img/help/searchHistory.png" />
- </md-card-content>
- <md-card-content id="sea9">
- <a href="#index">
- <h3>Saving and managing searches<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>If you are signed in, you can save searches permanently. To do so, click on "Save query" above the list of results: </p>
- <img width="935" height="148" src="custom/41SLSP_EPF-prod/img/help/saveQuery.png" />
- <p><strong>NOTE:</strong> The "Save query" option is only displayed if you are signed in and have submitted a search. </p>
- <p>When saving your query, you can receive email notifications when there is an update to the query. To activate this service a message will appear automatically at the top of the page.</p>
- <img width="935" height="73" src="custom/41SLSP_EPF-prod/img/help/emailNotification.png" /><br />
- <img width="418" height="333" src="custom/41SLSP_EPF-prod/img/help/emailNotificationSettings.png" />
- <p>
- The saved searches are stored in "My Favorites"
- <img width="14" height="18" src="custom/41SLSP_EPF-prod/img/help/pinIcon1.png" /> in the tab "Saved searches".
- </p>
- <img width="935" height="250" src="custom/41SLSP_EPF-prod/img/help/savedSearches.png" />
- <p>You can perform the search again by clicking it. You can set up a notification (by RSS or email) using the symbols on the right to keep you informed of newly added documents that match you search. </p>
- </md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="display">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Displaying the results</h2></a>
- </md-card-title-text>
- </md-card-title>
- <md-card-content id="dis1">
- <a href="#index">
- <h3>Narrowing down results<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Filtering terms are proposed on the left-hand column which enable you to narrow down your search results: </p>
- <img width="302" height="195" src="custom/41SLSP_EPF-prod/img/help/facets1.png" />
- <p>Clicking on "Books" limits the list of results to the 4'075 books found. </p>
- <p>In order to exclude a term, click on the red symbol on the right next to the term. </p>
- <img width="320" height="215" src="custom/41SLSP_EPF-prod/img/help/facets2.png" />
- <p>With "Show more", you can display additional terms and refine the search by including or excluding several terms. </p>
- <p>Example: Narrow down the results to "dissertations", "videos" and "audios".</p>
- <img width="349" height="506" src="custom/41SLSP_EPF-prod/img/help/facets3.png" />
- <p>In order to remove one filter, click on the x. "Reset filters" removes all filters. </p>
- <img width="313" height="228" src="custom/41SLSP_EPF-prod/img/help/filters1.png" />
- <p>A new search entry automatically removes all filters. However, you can retain a filter for the duration of the browser session by selecting it and then clicking on the lock symbol. To remove this filter, click on the lock again. </p>
- <img width="273" height="241" src="custom/41SLSP_EPF-prod/img/help/filters2.png" />
- </md-card-content>
- <md-card-content id="dis2">
- <a href="#index">
- <h3>List of results: sorting<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>By default, the results are sorted by relevance. You can also sort them by date, author and title. </p>
- <img width="177" height="315" src="custom/41SLSP_EPF-prod/img/help/sorting.png" />
- </md-card-content>
- <md-card-content id="dis3">
- <a href="#index">
- <h3>List of results: versions <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>If a work is available in several versions (i.e. in different editions or prints), click on the icon, the title or "See all versions" to list all the versions. </p>
- <img width="512" height="193" src="custom/41SLSP_EPF-prod/img/help/versions.png" />
- <p>You can return to the list of results by closing the list of versions under "Active filters". </p>
- <img width="263" height="191" src="custom/41SLSP_EPF-prod/img/help/activeFilters.png" />
- </md-card-content>
- <md-card-content id="dis4">
- <a href="#index">
- <h3>Viewing individual titles <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>When you click on a title, you can select the following actions: </p>
- <img width="144" height="274" src="custom/41SLSP_EPF-prod/img/help/fullViewNavigation.png" />
- <p><strong>Top:</strong> go back at the top of the page</p>
- <p><strong>Send to: </strong> export title information to reference management program, export citation, create permalink to result, print or send title by email. Export actions can be applied in bulk up to 50 records. </p>
- <p><strong>How to get it:</strong> view locations, place orders for loans, reservations or photocopies.</p>
- <p><strong>Details:</strong> further information on the title.</p>
- <p><strong>Links:</strong> links to table of contents, to earlier/later title, to all volumes of a series.</p>
- <p><strong>Virtual browse:</strong> you can see a library shelf in relation to the selected record so that you may find other items that are related to their search. </p>
- </md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="questions">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Questions?</h2></a>
- </md-card-title-text>
- </md-card-title>
- <md-card-content id="que1">
- <a href="mailto:library@epfl.ch">
- <h3>Contact information<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>For any question, doubt, comment or request don�t hesitate to <a href="mailto:swisscovery@slsp.ch" target="_blank">contact us</a></p>
-
- </md-card-content>
-
- </md-card>
-
- </div>
-
-
-
- </div>
-
-</md-content>
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/html/help/help_fr.html b/primo-explore/custom/41SLSP_HPH-EPFL/html/help/help_fr.html
deleted file mode 100644
index e9dc78e..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/html/help/help_fr.html
+++ /dev/null
@@ -1,501 +0,0 @@
-
-<md-content id="help">
- <div class="ps_content md-padding" layout-gt-sm="row" layout-align="center center">
- <div flex="100" flex-md="100" flex-lg="80" flex-xl="60" layout="column">
- <md-card class="default-card">
- <md-card-title>
- <md-card-title-text>
- <h1 class="md-headline"><b>swisscovery Help Page</b></h1>
- </md-card-title-text>
- </md-card-title>
-
- </md-card>
-
- <md-card class="default-card">
-
- <md-card-content>
- <h4>Introduction:</h4>
- <p>Cher usager,</p>
- <p>Bienvenue sur la page d'aide de swisscovery.</p>
- <p>Swisscovery est l'outil de d&eacute;couverte de <a href="https://slsp.ch/en" target="_blank">Swiss Library Service Platform Network (SLSP)</a>. Sur cette page, vous trouverez des informations utiles sur la mani&egrave;re d'utiliser swisscovery et sur l'organisation du r&eacute;seau de SLSP.</p>
- <p>Attention: cette page d'aide a &eacute;t&eacute; cr&eacute;&eacute;e pour l'ensemble du r&eacute;seau SLSP! Cela signifie que certains services peuvent ne pas &ecirc;tre disponibles dans cette interface usager sp&eacute;cifique. Veuillez noter que la page d'accueil ou l'affichage complet de la notice peut varier d'une institution &agrave; l'autre par rapport &agrave; ce qui est pr&eacute;sent&eacute; ici.</p>
- </md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="index">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Index</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <h3><a href="#general">G&eacute;n&eacute;ral</a></h3>
- <ul>
- <!--<li><a href="#gen1">Br&egrave;ve introduction vid&eacute;o &agrave; swisscovery</a></li>-->
- <li><a href="#gen2">SLSP: Swiss Library Service Platform</a></li>
- <li><a href="#gen3">R&eacute;seau SLSP</a></li>
- <li><a href="#gen4">Cr&eacute;er un compte</a></li>
- <li><a href="#gen5">Carte de biblioth&egrave;que</a></li>
- <li><a href="#gen6">Comment s'identifier et se d&eacute;connecter</a></li>
- <li><a href="#gen7">Mon compte</a></li>
- <li><a href="#gen8">Mettre &agrave; jour votre compte</a></li>
- <li><a href="#gen9">D&eacute;finir la langue</a></li>
- </ul>
- <h3><a href="#online">Ressources en ligne</a></h3>
- <ul>
- <li><a href="#onl1">Ressources en ligne</a></li>
- <li><a href="#onl2">Ressources en ligne pour les membres des Universit&eacute;s</a> </li>
- <li><a href="#onl3">Ressources en ligne pour les personnes qui ne sont pas membres d'une Universit&eacute;</a></li>
- <li><a href="#onl4">Open Access </a></li>
- <li><a href="#onl5">Licences nationales</a></li>
- </ul>
- <h3><a href="#borrow">Emprunter/demander des documents</a></h3>
- <ul>
- <li><a href="#bor1">Emprunter/demander des documents</a></li>
- <li><a href="#bor2">Demandes de pr&ecirc;t entre biblioth&egrave;ques en dehors du r&eacute;seau SLSP</a></li>
- <li><a href="#bor3">Prolonger le d&eacute;lai de pr&ecirc;t</a></li>
- <li><a href="#bor4">Liste des pr&ecirc;ts pr&eacute;c&eacute;dents</a></li>
- </ul>
- <h3><a href="#search">Rechercher</a></h3>
- <ul>
- <li><a href="#sea1">Profils de recherche de SLSP</a></li>
- <li><a href="#sea2">Recherche simple</a></li>
- <li><a href="#sea3">Recherche avanc&eacute;e</a></li>
- <li><a href="#sea4">Rechercher une expression</a></li>
- <li><a href="#sea5">Rechercher avec des caract&egrave;res g&eacute;n&eacute;riques</a></li>
- <li><a href="#sea6">Utiliser les op&eacute;rateurs bool&eacute;ens pour &eacute;tendre ou restreindre une recherche</a></li>
- <li><a href="#sea7">Mes favoris</a></li>
- <li><a href="#sea8">Historique des recherches</a></li>
- <li><a href="#sea9">Enregistrer et g&eacute;rer les recherches</a></li>
- <!--<li><a href="#sea10">Citation Linker </a></li>-->
- </ul>
- <h3><a href="#display">Afficher les r&eacute;sultats</a></h3>
- <ul>
- <li><a href="#dis1">Limiter le nombre de r&eacute;sultats</a></li>
- <li><a href="#dis2">Liste de r&eacute;sultats: tri</a></li>
- <li><a href="#dis3">Liste de r&eacute;sultats: versions</a> </li>
- <li><a href="#dis4">Afficher des titres individuels</a></li>
- </ul>
- <h3><a href="#questions">Des questions?</a></h3>
- <ul>
- <li><a href="#que1">Informations de contact</a></li>
- </ul>
- </md-card-content>
- </md-card>
-
- <md-card class="default-card" id="general">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">G&eacute;n&eacute;ral</h2></a>
- </md-card-title-text>
- </md-card-title>
- <!--<md-card-content id="gen1">
- <a href="#index"><h3>Br&egrave;ve introduction vid&eacute;o &agrave; swisscovery<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3></a>
- <div class="resp-container">
- <iframe class="resp-iframe" src="https://www.youtube.com/embed/1fZwnu_nzPU" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
- </div>
- </md-card-content>r-->
- <md-card-content id="gen2">
- <a href="#index">
- <h3>SLSP: Swiss Library Service Platform<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Swiss Library Service Platform ainsi que sa filiale, le Consortium des biblioth&egrave;ques universitaires suisses, comptant plus de 450 membres, est le plus large r&eacute;seau de biblioth&egrave;ques de recherche universitaires de Suisse. Cr&eacute;&eacute; par des biblioth&egrave;ques pour les biblioth&egrave;ques, il s'agit d'un effort conjoint visant &agrave; offrir un panel de services dans tout le pays tels qu'un catalogue multilingue partag&eacute; d'informations scientifiques, une repr&eacute;sentation unique de l'octroi de licences pour les ressources &eacute;lectroniques et un r&eacute;seau performant de navettes dans le cadre du partage des exemplaires physiques.</p>
- <p>SLSP repr&eacute;sente une avanc&eacute;e novatrice et significative dans l'&eacute;volution num&eacute;rique des biblioth&egrave;ques scientifiques en Suisse. En g&eacute;rant le syst&egrave;me bas&eacute; dans le cloud Alma, l'organisation rassemble les informations scientifiques conserv&eacute;es dans les biblioth&egrave;ques sur tout le territoire. En rendant ces informations accessibles et faciles &agrave; trouver, SLSP contribue &agrave; la d&eacute;couverte et au progr&egrave;s scientifiques.</p>
-</md-card-content>
- <md-card-content id="gen3">
- <a href="#index">
- <h3>R&eacute;seau SLSP<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>Le r&eacute;seau SLSP est divis&eacute; en plusieurs &laquo;zones&raquo;. SLSP g&egrave;re la zone r&eacute;seau (NZ) appel&eacute;e swisscovery, tandis que les biblioth&egrave;ques ont &eacute;t&eacute; r&eacute;parties en 29 "zones institutionnelles" (IZ).</p>
- <p>Une zone institutionnelle (IZ) est un groupe de biblioth&egrave;ques ayant des besoins similaires. L'IZ est un &eacute;l&eacute;ment-cl&eacute; du syst&egrave;me SLSP, il permet des associations et accro&icirc;t l'efficacit&eacute;. Au sein de SLSP, nous distinguons deux types de zone institutionnelles: les zones &agrave; entit&eacute; unique et les zones &agrave; entit&eacute; mixte.</p>
- <p>Dans une zone &agrave; entit&eacute; unique, les biblioth&egrave;ques sont li&eacute;es &agrave; une entit&eacute; principale d'un point de vue juridique (par exemple une Universit&eacute;). Dans une zone &agrave; entit&eacute; mixte, les biblioth&egrave;ques sont li&eacute;es &agrave; diff&eacute;rentes entit&eacute;s juridiques (elles sont par exemple group&eacute;es ensemble pour des consid&eacute;rations d'ordre g&eacute;ographique).</p>
- <p>Pour acc&eacute;der aux ressources des membres de SLSP, les usagers doivent acc&eacute;der aux interfaces usagers appel&eacute;es &laquo;vues&raquo;. Au sein de SLSP, nous avons pr&eacute;par&eacute; une vue pour la Zone r&eacute;seau (NZ), une vue pour la Zone institutionnelle (IZ) et plusieurs vues pour les biblioth&egrave;ques individuelles.</p>
- <p>Chaque vue dispose de domaines de recherche sp&eacute;cifiques qui donneront des r&eacute;sultats diff&eacute;rents lors de la recherche. La zone r&eacute;seau swisscovery comprend l'ensemble des notices des biblioth&egrave;ques SLSP, certaines ressources externes g&eacute;n&eacute;rales (par exemple la base de donn&eacute;es e-rara) et l'index CDI (Central Discovery Index). Les vues des zones institutionnelles et les vues des biblioth&egrave;ques contiennent l'inventaire local de la zone institutionnelle / biblioth&egrave;que, des ressources externes g&eacute;n&eacute;rales et locales ainsi que l'index CDI.</p>
- <p>Central Discovery Index (CDI): il s'agit d'une base de donn&eacute;es centralis&eacute;e comportant plus de 3 milliards de notices telles que: articles de p&eacute;riodiques, e-books, th&egrave;ses, comptes rendus de conf&eacute;rences, etc.</p>
- <img width="935" height="665" src="custom/41SLSP_EPF-prod/img/help/swisscovery_fre.png" />
- <p>En cliquant sur le <a href="https://slsp.ch/en" target="_blank">lien</a> suivant, vous trouvez la topologie du r&eacute;seau de la SLSP, une liste d&eacute;taill&eacute;e de l'ensemble des biblioth&egrave;ques membres, organis&eacute;e par zone institutionnelle ainsi que le lien vers chaque vue existante de notre r&eacute;seau. Vous y trouvez l'adresse, les coordonn&eacute;es et les services propos&eacute;s par chaque IZ et biblioth&egrave;que.</p>
-</md-card-content>
- <md-card-content id="gen4">
- <a href="#index">
- <h3>Cr&eacute;er un compte<img class="icon_up2" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Pour s'enregistrer sur SLSP, rendez-vous d'abord sur: <a href="https://registration.slsp.ch" target="_blank">https://registration.slsp.ch</a></p>
- <p>Au d&eacute;but de l'enregistrement, il vous est demand&eacute; de vous connecter avec un compte SWITCH edu-ID. Si vous avez d&eacute;j&agrave; un compte SWITCH edu-ID, connectez-vous pour proc&eacute;der &agrave; l'enregistrement. Si vous n'avez pas encore de mot de passe, un lien sur la page de connexion vous permet de le r&eacute;initialiser.</p>
- <p>Si vous n'avez pas encore de compte SWITCH edu-ID, cliquez sur "Cr&eacute;er un compte" sur la page de connexion.</p>
- <p><strong>Remarque:</strong> Si vous &eacute;tudiez dans une Universit&eacute;, il est possible que vous soyez d&eacute;j&agrave; enregistr&eacute;(e) sur SLSP auparavant. Si tel est le cas, un message appara&icirc;tra et vous serez redirig&eacute;(e) vers la page de connexion. </p>
-</md-card-content>
- <md-card-content id="gen5">
- <a href="#index">
- <h3>Carte de biblioth&egrave;que<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Avec votre carte de biblioth&egrave;que, vous avez acc&egrave;s &agrave; tout un panel de services, vous pouvez par exemple emprunter un exemplaire physique dans une biblioth&egrave;que.</p>
- <p>Si vous poss&eacute;dez d&eacute;j&agrave; une carte de biblioth&egrave;que du <a href="https://www.nb.admin.ch/snl/en/home/services/user-services/bibliopass.html" target="_blank">r&eacute;seau BibliOpass</a>, vous pouvez &eacute;ventuellement indiquer ce num&eacute;ro de carte lors de l'enregistrement sur la SLSP ou ult&eacute;rieurement. Certaines cartes de campus / d'Universit&eacute; / d'&eacute;tudiant peuvent &eacute;galement faire office de carte de biblioth&egrave;que. De m&ecirc;me, certaines Universit&eacute;s fourniront le num&eacute;ro de carte de biblioth&egrave;que &agrave; leurs utilisateurs. Les num&eacute;ros de carte de biblioth&egrave;que associ&eacute;s &agrave; un compte SLSP seront affich&eacute;s pendant le processus d'enregistrement sur SLSP (voir le chapitre "Cr&eacute;er un compte"). </p>
- <p>Si vous ne poss&eacute;dez pas de carte de biblioth&egrave;que, vous pouvez demander &agrave; votre biblioth&egrave;que de vous en fournir une.</p>
-</md-card-content>
- <md-card-content id="gen6">
- <a href="#index">
- <h3>Comment s'identifier et se d&eacute;connecter<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Dans swisscovery: cliquez sur &laquo;S'identifier&raquo; - choisissez votre zone institutionnelle - cliquez sur &laquo;SWITCH edu-ID&raquo; - entrez votre adresse e-mail et votre mot de passe - cliquez sur &laquo;Connexion&raquo;</p>
- <p>Dans la vue de votre zone institutionnelle / biblioth&egrave;que: cliquez sur &laquo;S'identifier&raquo; -- cliquez sur &laquo;SWITCH edu-ID&raquo; - entrez votre adresse e-mail et votre mot de passe - cliquez sur &laquo;Connexion&raquo;</p>
- <img width="460" height="74" src="custom/41SLSP_EPF-prod/img/help/signin_fre.png" />
- <p>Vous devez &ecirc;tre connect&eacute;(e) pour proc&eacute;der aux actions suivantes:</p>
- <ul>
- <li>Demander des documents (pr&ecirc;t, demande de num&eacute;risation, pr&ecirc;t entre biblioth&egrave;ques)</li>
- <li>Afficher et surveiller vos pr&ecirc;ts et demandes en provenance de biblioth&egrave;ques du r&eacute;seau de SLSP.</li>
- <li>Prolonger un d&eacute;lai de pr&ecirc;t, annuler des r&eacute;servations</li>
- <li>Sauvegarder vos favoris</li>
- <li>Enregistrer les requ&ecirc;tes et activer des notifications</li>
- <li>Modifier la langue de mani&egrave;re d&eacute;finitive</li>
- </ul>
- <p>En tant qu'invit&eacute;, vos favoris, demandes de recherche et la langue s&eacute;lectionn&eacute;e ne peuvent &ecirc;tre enregistr&eacute;s que pour la session de navigation courante.</p>
- <p>D&eacute;connectez-vous apr&egrave;s une session pour prot&eacute;ger votre compte d'un &eacute;ventuel acc&egrave;s par d'autres usagers.</p>
- <h4>NOTE:</h4>
- <p>Certaines ressources en ligne sont accessibles sans identification, mais pour acc&eacute;der &agrave; l'ensemble des ressources disponibles selon votre institution, il est utile de s'identifier.</p>
- <p>
- L'acc&egrave;s aux ressources en ligne d&eacute;pend souvent de votre affiliation &agrave; une Haute Ecole octroyant des licences, p. ex. en tant qu'&eacute;tudiant ou que chercheur. Certaines Hautes Ecoles autorisent les usagers &agrave; acc&eacute;der aux ressources en ligne &agrave; distance (remote access). Pour plus d'informations sur les conditions d'acc&egrave;s aux ressources en ligne, vous pouvez consulter le chapitre &laquo;Ressources en ligne&raquo; sur cette page d'aide, le <a href="https://consortium.ch/?lang=en" target="_blank">Consortium's website</a> ou le site Web de la biblioth&egrave;que.
- </p>
- <p>Ces conditions ne s'appliquent pas aux licences nationales (pour plus d'informations, voir le chapitre correspondant sur cette page d'aide).</p>
-</md-card-content>
- <md-card-content id="gen7">
- <a href="#index">
- <h3>Mon compte<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Vous devez vous identifier pour acc&eacute;der &agrave; votre compte. Une fois identifi&eacute;(e), cliquez sur votre nom situ&eacute; en haut &agrave; droite de la page. Vous acc&eacute;dez &agrave; un menu contenant certains des sous-menus de votre compte. Pour avoir un acc&egrave;s complet aux donn&eacute;es de votre compte, cliquez sur &laquo;Mon compte&raquo;.</p>
- <p>Depuis cette page, vous serez en mesure de consulter vos pr&ecirc;ts, demandes, amendes, messages ainsi que bien d'autres fonctionnalit&eacute;s.</p>
- <p><strong>NOTE:</strong> Chaque zone institutionnelle dispose de son propre espace. Cela signifie que si vous empruntez une ressource &agrave; la zone institutionnelle &laquo; EPF Lausanne &raquo; par exemple, et une autre &agrave; la zone institutionnelle &laquo; ETH Zurich &raquo;, vos emprunts sont r&eacute;partis sur des pages diff&eacute;rentes, voir ci-dessous: </p>
- <img width="935" height="627" src="custom/41SLSP_EPF-prod/img/help/myAccount_fre.png" />
-</md-card-content>
- <md-card-content id="gen8">
- <a href="#index">
- <h3>Mettre &agrave; jour votre compte<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Pour modifier votre adresse ou toute autre information concernant votre compte, allez sur la page Mon edu-ID sur <a href="https://eduid.ch/" target="_blank">https://eduid.ch/</a> et mettez &agrave; jour votre compte edu-ID. Veuillez noter que les modifications effectu&eacute;es sur &laquo;Mon compte&raquo; dans swisscovery ou dans les zones institution seront &eacute;cras&eacute;es par les informations provenant d'edu-ID. Si vous souhaitez g&eacute;rer vos num&eacute;ros de carte de biblioth&egrave;que, allez sur <a href="https://registration.slsp.ch/register/library-card/" target="_blank">https://registration.slsp.ch/register/library-card/</a> </p>
-</md-card-content>
- <md-card-content id="gen9">
- <a href="#index">
- <h3>D&eacute;finir la langue <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Cliquez sur votre nom, puis sur &laquo;Langue d'affichage&raquo; pour modifier la langue pour la session actuelle. Si vous &ecirc;tes connect&eacute;(e), la langue que vous d&eacute;finissez sera enregistr&eacute;e de mani&egrave;re permanente. Vous pouvez &eacute;galement modifier la langue de votre interface en remplissant la section &laquo;informations personnelles&raquo; de votre compte.</p>
- <img width="333" height="211" src="custom/41SLSP_EPF-prod/img/help/setLanguage_fre.png" />
-</md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="online">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Ressources en ligne</h2></a>
-</md-card-title-text>
- </md-card-title>
- <md-card-content>
-
- <md-card-content id="onl1">
- <a href="#index">
- <h3>Ressources en ligne<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Lors d'une recherche, l'ensemble des ressources propos&eacute;es par les biblioth&egrave;ques participantes sont index&eacute;es: livres, p&eacute;riodiques, bases de donn&eacute;es, photos num&eacute;ris&eacute;es, cartes, manuscrits et autres objets. Toutefois, tous les documents ne sont pas en libre acc&egrave;s. De nombreux documents n&eacute;cessitent une licence et ne sont disponibles que dans le r&eacute;seau de l'Universit&eacute; qui poss&egrave;de la licence. l'aide de filtres, vous pouvez restreindre la recherche aux documents sous licence et en libre-acc&egrave;s (Online) ou s&eacute;lectionner uniquement les documents en libre acc&egrave;s (Online - Open Access).</p>
- <img width="233" height="218" src="custom/41SLSP_EPF-prod/img/help/showonly_fre.png" />
- <p>
- Pour les ressources en ligne, la section &laquo;Consulter en ligne&raquo; dans l'affichage complet donne des informations sur la disponibilit&eacute; de la ressource dans votre institution et dans d'autres IZ du r&eacute;seau de SLSP. Pour acc&eacute;der &agrave; la ressource, cliquez sur l'ic&ocirc;ne <img width="41" height="42" src="custom/41SLSP_EPF-prod/img/help/viewOnlineIcon.png" />
- </p>
- <img width="935" height="462" src="custom/41SLSP_EPF-prod/img/help/viewOnline_fre.png" />
-</md-card-content>
- <md-card-content id="onl2">
- <a href="#index">
- <h3>Ressources en ligne pour les membres des Universit&eacute;s<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>Outre les documents en libre-acc&egrave;s (Open Access), vous pouvez utiliser les services en ligne de votre Universit&eacute;. Les p&eacute;riodiques &eacute;lectroniques, e-books et bases de donn&eacute;es sont acquises via des licences et l'acc&egrave;s est limit&eacute; exclusivement au r&eacute;seau de l'institution licenci&eacute;e licences (sur le campus). En dehors de l'Universit&eacute;, vous pouvez utiliser un acc&egrave;s VPN, Eduroam, EZProxy, etc. pour acc&eacute;der &agrave; ces documents. Veuillez consulter le site du service informatique de votre biblioth&egrave;que ou Universit&eacute; pour obtenir plus d'informations sur l'acc&egrave;s &agrave; distance.</p>
- <p>
- La section &laquo;Consulter en ligne&raquo; indique les services disponibles pour les ressources dans votre institution et dans d'autres zones institutionnelles du r&eacute;seau de SLSP. Cliquez sur &laquo;Disponible en ligne&raquo; et sur l'ic&ocirc;ne <img width="41" src="custom/41SLSP_EPF-prod/img/help/viewOnlineIcon.png" />pour obtenir l'affichage complet.
- </p>
- <img width="935" height="170" src="custom/41SLSP_EPF-prod/img/help/availOnline_fre.png" />
- <img width="935" height="439" src="custom/41SLSP_EPF-prod/img/help/availOnlineFull_fre.png" />
-</md-card-content>
- <md-card-content id="onl3">
- <a href="#index">
- <h3>Ressources en ligne pour les personnes qui ne sont pas membres d'une Universit&eacute;<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Outre les ressources en libre acc&egrave;s (Open Access) et les ressources en ligne sous licence nationale, vous pouvez utiliser les ressources sous licence des Universit&eacute;s &agrave; condition d'&ecirc;tre dans leurs locaux.</p>
- <p>Les p&eacute;riodiques &eacute;lectroniques, e-books et bases de donn&eacute;es universitaires sont acquises via des licences et l'acc&egrave;s est limit&eacute; exclusivement au r&eacute;seau de l'institution licenci&eacute;e (sur le campus). Vous pouvez ainsi t&eacute;l&eacute;charger et/ou avoir acc&egrave;s aux ressources dans les locaux de la biblioth&egrave;que.</p>
- <p>Les biblioth&egrave;ques donnant acc&egrave;s &agrave; une ressource en ligne sont affich&eacute;es dans localisations:</p>
- <img width="935" height="170" src="custom/41SLSP_EPF-prod/img/help/availOnline2_fre.png" />
- <img width="935" height="345" src="custom/41SLSP_EPF-prod/img/help/locationItems_fre.png" />
-</md-card-content>
- <md-card-content id="onl4">
- <a href="#index">
- <h3>Open Access<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Les documents &laquo; Open Access &raquo; sont libres d'acc&egrave;s. Il s'agit d'une part d'articles de p&eacute;riodiques ou d'e-books sur diff&eacute;rentes plateformes ou dans des r&eacute;pertoires institutionnels, et d'autre part de documents num&eacute;ris&eacute;s des biblioth&egrave;ques. Ces documents sont indiqu&eacute;s dans la liste de r&eacute;sultats avec une ic&ocirc;ne &laquo; open access &raquo;.</p>
- <img width="935" height="188" src="custom/41SLSP_EPF-prod/img/help/openAccess_fre.png" />
-</md-card-content>
- <md-card-content id="onl5">
- <a href="#index">
- <h3>Licences nationales<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Toute personne r&eacute;sidant en Suisse a acc&egrave;s aux licences nationales. Cela requiert un enregistrement unique gratuit; vous trouvez plus d'informations sur <a href="https://consortium.ch/zugriff/?lang=en" target="_blank">https://consortium.ch/zugriff/?lang=en </a>. Veuillez noter que pour l'enregistrement destin&eacute; &agrave; l'acc&egrave;s aux licences nationales, il est possible d'utiliser le m&ecirc;me edu-ID que pour swisscovery. Les ressources disponibles sous licences nationales sont indiqu&eacute;es entre parenth&egrave;ses dans la section &laquo;Disponibilit&eacute; du texte int&eacute;gral&raquo;.</p>
- <img width="935" height="160" src="custom/41SLSP_EPF-prod/img/help/NationalLicenses_fre.png" />
-</md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="borrow">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Emprunter/demander des documents</h2></a>
-</md-card-title-text>
- </md-card-title>
- <md-card-content id="bor1">
- <a href="#index">
- <h3>Emprunter/demander des documents<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Sous &laquo;Obtenir&raquo; dans l'affichage complet, vous pouvez voir les biblioth&egrave;ques o&ugrave; se trouve le document et s'il est disponible. La livraison d'un exemplaire vers une biblioth&egrave;que de retrait peut &ecirc;tre payante.</p>
- <p>Sous &laquo;Autres options&raquo; , vous pouvez voir si des biblioth&egrave;ques d'autres zones institutionnelles SLSP poss&egrave;dent &eacute;galement cet exemplaire.</p>
- <img width="935" height="455" src="custom/41SLSP_EPF-prod/img/help/getIt_fre.png" />
- <p>S&eacute;lectionnez l'option de demande que vous souhaitez: Demander (exemplaire physique/r&eacute;servation) ou Num&eacute;risation (exemplaire &eacute;lectronique ou papier). Vous devez &ecirc;tre connect&eacute;(e) pour effectuer une demande.</p>
- <img width="935" height="349" src="custom/41SLSP_EPF-prod/img/help/requestOption_fre.png" />
- <p>Si vous s&eacute;lectionnez Demander, vous pouvez demander un exemplaire physique &agrave; retirer dans une biblioth&egrave;que. Vous pouvez &eacute;galement demander certains exemplaires via le service d'acc&egrave;s par navette (service payant). Si cette option est propos&eacute;e, vous pouvez l'utiliser en s&eacute;lectionnant votre institution dans le champ &laquo;institution de retrait&raquo; et l'adresse de votre domicile dans le champ &laquo;lieu de retrait&raquo;.</p>
- <p>Si vous souhaitez obtenir un exemplaire &eacute;lectronique ou papier d'un article ou d'un chapitre, cliquez sur Num&eacute;risation et remplissez le formulaire avec autant d'informations que possible.</p>
- <p><strong>Note:</strong>Ces services ne sont pas n&eacute;cessairement disponibles dans votre IZ / biblioth&egrave;que et peuvent &ecirc;tre payants. Pour plus d'informations, <a href="https://slsp.ch/en" target="_blank">cliquez ici</a>. </p>
-</md-card-content>
- <md-card-content id="bor2">
- <a href="#index">
- <h3>Demandes de pr&ecirc;t entre biblioth&egrave;ques<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>
- En d&eacute;pit du fait que le r&eacute;seau SLSP donne acc&egrave;s &agrave; plus de 50 millions d'exemplaires ainsi qu'&agrave; un nombre incalculable de ressources &eacute;lectroniques, il est possible que la publication que vous recherchez ne soit pas disponible. Dans ce cas, vous pouvez faire une demande de pr&ecirc;t entre biblioth&egrave;ques, et le document sera emprunt&eacute; &agrave; une autre biblioth&egrave;que en Suisse ou &agrave; l'&eacute;tranger (service payant). Nous vous invitons &agrave; remplir ce <a href="https://slsp.ch/en" target="_blank">formulaire</a>, votre biblioth&egrave;que s'occupera ensuite de votre demande.
- </p>
- <p><strong>Note:</strong> Ce service peut faire l'objet de frais suppl&eacute;mentaires. Pour obtenir plus d'informations sur les frais &eacute;ventuels, <a href="https://slsp.ch/en" target="_blank">consultez cette page</a>.</p>
-</md-card-content>
- <md-card-content id="bor3">
- <a href="#index">
- <h3>Prolonger les p&eacute;riodes de pr&ecirc;t<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Dans Mon compte, vous pouvez voir vos pr&ecirc;ts en cours et les renouveler tous ou individuellement sous r&eacute;serve que les conditions du pr&ecirc;t le permettent.</p>
- <img width="935" height="524" src="custom/41SLSP_EPF-prod/img/help/renewLoans_fre.png" />
- <!--<p><strong>Note:</strong> The new loan period always runs as of immediately. If you renew a document yourself before the automatic loan period ends, the maximum possible loan period becomes shorter. </p>-->
- <p><strong>Note:</strong> les conditions de pr&ecirc;t peuvent varier en fonction des institutions et du type de mat&eacute;riel.</p>
-</md-card-content>
- <md-card-content id="bor4">
- <a href="#index">
- <h3>Historique des pr&ecirc;ts pass&eacute;s<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Dans Mon compte, dans la section &laquo;Pr&ecirc;ts&raquo; des IZ, vous pouvez voir vos pr&ecirc;ts en cours et pass&eacute;s.</p>
- <img width="352" height="150" src="custom/41SLSP_EPF-prod/img/help/activeLoans_fre.png" />
- <p><strong>Note:</strong> dans certaines zones institutionnelles / biblioth&egrave;ques, cette option n'est pas disponible en raison de restrictions impos&eacute;es par la loi cantonale sur la protection de la vie priv&eacute;e. </p>
-</md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="search">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Rechercher</h2></a>
-</md-card-title-text>
- </md-card-title>
- <md-card-content id="sea1">
- <a href="#index">
- <h3>Profils de recherche de SLSP <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>SLSP fonctionne avec deux profils de recherche standards disponibles dans toutes les vues. Le premier s'intitule &laquo; Toutes les biblioth&egrave;ques SLSP &raquo; et le second &laquo; Ma biblioth&egrave;que &raquo;. Ce sch&eacute;ma explique dans quelle zone est effectu&eacute;e votre recherche lorsque vous utilisez l'un ou l'autre. Dans certaines zones institutionnelles ou vues de biblioth&egrave;que, il est possible d'avoir des profils de recherche suppl&eacute;mentaires personnalis&eacute;s cr&eacute;&eacute;s par la zone institutionnelle / biblioth&egrave;que.</p>
- <img width="935" height="899" src="custom/41SLSP_EPF-prod/img/help/infographig_fre.png" />
- <p><strong>Ma biblioth&egrave;que:</strong> Inclut l'inventaire local de la zone institutionnelle / biblioth&egrave;que + les sources de donn&eacute;es externes t&eacute;l&eacute;charg&eacute;es dans cette zone institutionnelles (sources de donn&eacute;es g&eacute;n&eacute;rales et sources de donn&eacute;es locales ou r&eacute;pertoires institutionnels) + le Central Discovery Index (le CDI peut &eacute;galement &ecirc;tre utilis&eacute; comme profil de recherche distinct). Ce profil de recherche porte toujours le nom de l'institution.</p>
- <p><strong>swisscovery:</strong> inclut l'ensemble des notices du r&eacute;seau SLSP + les sources de donn&eacute;es externes g&eacute;n&eacute;rales + le Central Discovery Index </p>
- <p><strong>Profil de recherche personnalis&eacute;:</strong> certaines zones institutionnelles / biblioth&egrave;ques ont cr&eacute;&eacute; leurs propres profils de recherche, y compris des profils de recherche limit&eacute;s &agrave; des donn&eacute;es locales.</p>
- <p><strong>Central Discovery Index (CDI):</strong> est une base de donn&eacute;es centralis&eacute;e comportant des milliers de ressources pour un total de 3 milliards de notices telles que: articles de revues, e-books, th&egrave;ses, comptes rendus de conf&eacute;rences, brevets, rapports, documents gouvernementaux, images, vid&eacute;os, etc. Suivant la vue zone institutionnelle / biblioth&egrave;que, il est possible de chercher dans le CDI par le profil de recherche &laquo;Ma biblioth&egrave;que&raquo;, par un profil de recherche distinct ou par les deux profils </p>
- <p><strong>Ressources externes g&eacute;n&eacute;rales:</strong> swisscovery s'est vu dot&eacute; de ressources &eacute;lectroniques externes g&eacute;n&eacute;rales, en particulier de r&eacute;pertoires institutionnelles.</p>
- <p><strong>Ressources externes locales:</strong> outre les ressources externes g&eacute;n&eacute;rales, certaines zones institutionnelles proposent &eacute;galement des ressources externes locales.</p>
-</md-card-content>
- <md-card-content id="sea2">
- <a href="#index">
- <h3>Recherche simple<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>La recherche simple permet d'acc&eacute;der rapidement aux ressources de la biblioth&egrave;que.</p>
- <img width="935" src="custom/41SLSP_EPF-prod/img/help/simpleSearch_fre.png" />
-</md-card-content>
- <md-card-content id="sea3">
- <a href="#index">
- <h3>Recherche avanc&eacute;e <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Les champs de recherche de la recherche avanc&eacute;e peuvent &ecirc;tre combin&eacute;s avec ET, OU ou SAUF.</p>
- <img width="935" height="426" src="custom/41SLSP_EPF-prod/img/help/advancedSearch_fre.png" />
- <p>Dans cet exemple, la recherche est limit&eacute;e aux livres en anglais qui contiennent &laquo;mountain railway&raquo; dans leur titre et qui ont pour sujet la Suisse.</p>
- <p>Avec l'aide du deuxi&egrave;me (ou troisi&egrave;me) champ, vous pouvez choisir entre &laquo;contient&raquo;, &laquo;est(exact)&raquo; ou &laquo;commence par&raquo; pour sp&eacute;cifier si les termes de la recherche doivent &ecirc;tre contenus dans le champ, si l'&eacute;l&eacute;ment doit correspondre exactement aux termes de la recherche ou s'il doit commencer par un terme sp&eacute;cifique.</p>
- <p>Ici vous pouvez mettre quelques mots du titre, pas n&eacute;cessairement dans l'ordre</p>
- <img width="408" height="57" src="custom/41SLSP_EPF-prod/img/help/advancedField1_fre.png" /><br />
- <p>L&agrave;, vous recherchez ce titre exact</p>
- <img width="408" height="70" src="custom/41SLSP_EPF-prod/img/help/advancedField2_fre.png" />
- <p>Et l&agrave;, vous recherchez des titres qui commencent par le mot &laquo; mountain &raquo;</p>
- <img width="408" height="62" src="custom/41SLSP_EPF-prod/img/help/advancedField3_fre.png" />
-</md-card-content>
- <md-card-content id="sea4">
- <a href="#index">
- <h3>Rechercher une expression <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Si vous souhaitez rechercher une expression pr&eacute;cise (groupe de mots), mettez-la entre guillemets. Vous pouvez associer expressions et mots dans une recherche.</p>
- <img width="935" height="85" src="custom/41SLSP_EPF-prod/img/help/searchPhrase_fre.png" />
- <p>Les r&eacute;sultats incluent des documents qui contiennent &agrave; la fois l'expression exacte &laquo;piz buin&raquo; et le sujet &laquo;mountain&raquo;.</p>
-</md-card-content>
- <md-card-content id="sea5">
- <a href="#index">
- <h3>Rechercher avec des caract&egrave;res g&eacute;n&eacute;riques <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>L'ast&eacute;risque * et le point d'interrogation ? peuvent &ecirc;tre utilis&eacute;s comme caract&egrave;res g&eacute;n&eacute;riques (ou caract&egrave;res de remplacement) pour la recherche:</p>
- <p>L'ast&eacute;risque * sert &agrave; remplacer z&eacute;ro, un ou plusieurs caract&egrave;res: </p>
- <img width="935" height="74" src="custom/41SLSP_EPF-prod/img/help/searchWildcard1_fre.png" />
- <p>Permet de rechercher culture, cultures, cultural etc. </p>
- <p>L'ast&eacute;risque * peut &eacute;galement aider &agrave; trouver diff&eacute;rentes orthographes: </p>
- <img width="935" height="77" src="custom/41SLSP_EPF-prod/img/help/searchWildcard2_fre.png" />
- <p>Recherche yogurt, yoghurt, yogourt, yoghourt, etc.</p>
- <p>Le point d'interrogation ? est le caract&egrave;re de remplacement pour un seul caract&egrave;re: </p>
- <img width="935" height="84" src="custom/41SLSP_EPF-prod/img/help/searchWildcard3_fre.png" />
- <p>Recherche &agrave; la fois woman et women.</p>
- <p>Vous pouvez &eacute;galement combiner ces deux caract&egrave;res: </p>
- <img width="935" height="84" src="custom/41SLSP_EPF-prod/img/help/searchWildcard4_fre.png" />
- <p>Vous obtiendrez des r&eacute;sultats avec yoghurt, yogourt, yohurts ou yogourts</p>
-</md-card-content>
- <md-card-content id="sea6">
- <a href="#index">
- <h3>Utiliser les op&eacute;rateurs bool&eacute;ens pour &eacute;tendre ou restreindre une recherche<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>Vous pouvez utiliser les op&eacute;rateurs bool&eacute;ens ET, OU et SAUF. Ils doivent &ecirc;tre &eacute;crits en majuscules. </p>
- <p>Sans indication sp&eacute;cifique, les termes de la recherche sont automatiquement associ&eacute;s avec <strong>ET</strong>. En d'autres termes, tous les termes de la recherche doivent appara&icirc;tre dans les r&eacute;sultats.</p>
- <p><strong>OU</strong></p>
- <p>Au moins l'un des termes de recherche reli&eacute; avec OU doit appara&icirc;tre dans les r&eacute;sultats. Par exemple, utilisez OU pour associer des termes li&eacute;s afin d'&eacute;tendre la recherche &agrave; plusieurs termes (synonymes, orthographes diff&eacute;rentes):</p>
- <img width="935" height="76" src="custom/41SLSP_EPF-prod/img/help/searchOR_fre.png" />
- <p><strong>SAUF</strong></p>
- <p>Le terme de la recherche exclu avec SAUF ne doit pas appara&icirc;tre dans les r&eacute;sultats. Autrement dit, SAUF permet d'exclure explicitement des mots ou des expressions.</p>
- <!--<p><strong>NOTE:</strong> The Boolean operator NOT is available only in the simple search </p>-->
- <img width="935" height="79" src="custom/41SLSP_EPF-prod/img/help/searchNOT_fre.png" />
- <p>Les r&eacute;sultats seront des documents qui contiennent l'expression &laquo;climate change&raquo;, mais pas &laquo;global warming&raquo;. </p>
-</md-card-content>
- <md-card-content id="sea7">
- <a href="#index">
- <h3>Mes favoris<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>Dans &laquo;Mes Favoris&raquo;, vous pouvez enregistrer les titres que vous trouvez pendant votre recherche. Vous ne pouvez les enregistrer sur le long terme que si vous vous &ecirc;tes identifi&eacute;(e). En tant qu'invit&eacute;, le contenu des favoris n'est disponible que durant la session de navigation en cours. </p>
- <p>
- Si vous cliquez sur l'ic&ocirc;ne &eacute;pingle
- <img width="14" height="18" src="custom/41SLSP_EPF-prod/img/help/pinIcon1.png" /> d'un titre, celui-ci est ajout&eacute; &agrave; vos favoris; l'ic&ocirc;ne &eacute;pingle se transforme alors en
- <img width="14" height="15" src="custom/41SLSP_EPF-prod/img/help/pinIcon2.png" />. Si vous cliquez &agrave; nouveau sur
- <img width="14" height="15" src="custom/41SLSP_EPF-prod/img/help/pinIcon2.png" />, le titre est retir&eacute; de vos favoris.
- </p>
- <p>
- Vous pouvez acc&eacute;der &agrave; votre liste de favoris via l'ic&ocirc;ne &eacute;pingle
- <img width="14" height="18" src="custom/41SLSP_EPF-prod/img/help/pinIcon1.png" /> situ&eacute; en haut &agrave; droite de la page.
- </p>
- <p>Vous pouvez retirer ou exporter des titres individuels depuis votre liste de favoris. Surlignez un ou plusieurs titres et utilisez les symboles situ&eacute;s en haut de la page pour les retirer, ajouter des libell&eacute;s, les exporter vers des outils de gestion des r&eacute;f&eacute;rences, les imprimer ou les envoyer par e-mail: </p>
- <img width="935" height="481" src="custom/41SLSP_EPF-prod/img/help/myFavorites_fre.png" />
- <p>Afin de voir les d&eacute;tails d'une notice, cliquez sur le titre en question. </p>
- <p>Vous trouvez &eacute;galement l'historique de recherche pour la session de navigation en cours dans &laquo;Mes favoris&raquo;. </p>
-</md-card-content>
- <md-card-content id="sea8">
- <a href="#index">
- <h3>Historique de recherche<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Les recherches de la session de navigation en cours sont enregistr&eacute;es dans vos favoris dans &laquo;Historique de recherche&raquo;.</p>
- <p>
- Vous pouvez y acc&eacute;der directement via l'ic&ocirc;ne
- <img width="30" height="30" src="custom/41SLSP_EPF-prod/img/help/searchHistoryIcon.png" />situ&eacute; en haut &agrave; droite de la page.
- </p>
- <img width="470" height="311" src="custom/41SLSP_EPF-prod/img/help/searchHistory_fre.png" />
-</md-card-content>
- <md-card-content id="sea9">
- <a href="#index">
- <h3>Enregistrer et g&eacute;rer les recherches<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>Si vous vous &ecirc;tes identifi&eacute; (e), vous pouvez enregistrer vos recherches de mani&egrave;re permanente. Pour cela, cliquez sur &laquo;Enregistrer la requ&ecirc;te&raquo; situ&eacute; au-dessus de la liste de r&eacute;sultats: </p>
- <img width="935" height="148" src="custom/41SLSP_EPF-prod/img/help/saveQuery_fre.png" />
- <p><strong>NOTE:</strong> L'option &laquo;Enregistrer la requ&ecirc;te&raquo; s'affiche uniquement si vous vous &ecirc;tes identifi&eacute;(e) et si vous avez lanc&eacute; une recherche </p>
- <p>Lors de l'enregistrement de la requ&ecirc;te, un message appara&icirc;t en haut de la page vous permettant de recevoir des notifications par e-mail lorsque la requ&ecirc;te est mise &agrave; jour. Cliquez sur ce message pour activer les notifications.</p>
- <img width="935" height="73" src="custom/41SLSP_EPF-prod/img/help/emailNotification_fre.png" /><br />
- <img width="418" height="333" src="custom/41SLSP_EPF-prod/img/help/emailNotificationSettings_fre.png" />
- <p>
- Les recherches enregistr&eacute;es sont conserv&eacute;es dans &laquo;Mes Favoris&raquo;
- <img width="14" height="18" src="custom/41SLSP_EPF-prod/img/help/pinIcon1.png" /> dans l'onglet &laquo;Recherches sauvegard&eacute;es&raquo;.
- </p>
- <img width="935" height="250" src="custom/41SLSP_EPF-prod/img/help/savedSearches_fre.png" />
- <p>Vous pouvez lancer &agrave; nouveau la m&ecirc;me recherche en cliquant sur les termes de la requ&ecirc;te. Vous pouvez configurer une notification (par RSS ou par e-mail) en utilisant les symboles situ&eacute;s &agrave; droite pour vous tenir inform&eacute;(e) des derniers documents ajout&eacute;s qui correspondent &agrave; vos crit&egrave;res de recherche.</p>
-</md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="display">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Afficher les r&eacute;sultats</h2></a>
-</md-card-title-text>
- </md-card-title>
- <md-card-content id="dis1">
- <a href="#index">
- <h3>R&eacute;duire le nombre de r&eacute;sultats<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Le filtre par termes est propos&eacute; dans la colonne de gauche, il vous permet de r&eacute;duire le nombre de r&eacute;sultats dans votre recherche: </p>
- <img width="302" height="195" src="custom/41SLSP_EPF-prod/img/help/facets1_fre.png" />
- <p>Cliquer sur &laquo;Articles&raquo; r&eacute;duit la liste de r&eacute;sultats aux articles trouv&eacute;s. </p>
- <p>Afin d'exclure un terme, cliquez sur le symbole rouge situ&eacute; &agrave; c&ocirc;t&eacute; du terme sur la droite. </p>
- <img width="320" height="215" src="custom/41SLSP_EPF-prod/img/help/facets2_fre.png" />
- <p>&laquo;Voir plus&raquo; permet d'afficher des termes suppl&eacute;mentaires et d'affiner la recherche en incluant ou en excluant plusieurs termes. </p>
- <p>Exemple: R&eacute;duisez la recherche &agrave; &laquo;Articles de journal&raquo;, &laquo;Comptes rendus&raquo; et &laquo;Livres&raquo;.</p>
- <img width="349" height="506" src="custom/41SLSP_EPF-prod/img/help/facets3_fre.png" />
- <p>Pour supprimer un filtre, cliquez sur la croix X situ&eacute;e &agrave; c&ocirc;t&eacute; du terme. &laquo;R&eacute;initialiser les filtres&raquo; permet de supprimer tous les filtres. </p>
- <img width="313" height="228" src="custom/41SLSP_EPF-prod/img/help/filters1_fre.png" />
- <p>La saisie d'une nouvelle recherche supprime automatiquement tous les filtres. Toutefois, vous pouvez conserver un filtre pendant toute la dur&eacute;e de la session de navigation en le s&eacute;lectionnant puis en cliquant sur le symbole cadenas. Pour supprimer ce filtre, cliquez &agrave; nouveau sur le cadenas. </p>
- <img width="273" height="241" src="custom/41SLSP_EPF-prod/img/help/filters2_fre.png" />
-</md-card-content>
- <md-card-content id="dis2">
- <a href="#index">
- <h3>Liste de r&eacute;sultats: tri<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>Par d&eacute;faut, les r&eacute;sultats sont tri&eacute;s par pertinence. Vous pouvez les trier par date, titre ou auteur. </p>
- <img width="177" height="315" src="custom/41SLSP_EPF-prod/img/help/sorting_fre.png" />
-</md-card-content>
- <md-card-content id="dis3">
- <a href="#index">
- <h3>Liste de r&eacute;sultats: versions <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Si un travail est disponible en plusieurs versions (c'est-&agrave;-dire en plusieurs &eacute;ditions ou r&eacute;impressions), cliquez sur l'ic&ocirc;ne, le titre ou &laquo;Voir toute les versions&raquo; pour obtenir la liste de toutes les versions. </p>
- <img width="512" height="193" src="custom/41SLSP_EPF-prod/img/help/versions_fre.png" />
- <p>Vous pouvez revenir &agrave; la liste des r&eacute;sultats en fermant la liste des versions dans &laquo;Filtres activ&eacute;s&raquo;. </p>
- <img width="263" height="191" src="custom/41SLSP_EPF-prod/img/help/activeFilters_fre.png" />
-</md-card-content>
- <md-card-content id="dis4">
- <a href="#index">
- <h3>Afficher des titres individuels <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Lorsque vous cliquez sur un titre, vous pouvez s&eacute;lectionner les actions suivantes: </p>
- <img width="144" height="274" src="custom/41SLSP_EPF-prod/img/help/fullViewNavigation_fre.png" />
- <p><strong>Haut:</strong> revenir en haut de la page</p>
- <p><strong>Envoyer vers: </strong> eexporter les informations sur un titre vers un programme de gestion des r&eacute;f&eacute;rences, exporter des citations, cr&eacute;er un lien permanent vers le r&eacute;sultat, imprimer ou envoyer par e-mail. Les actions d'exportation peuvent s'appliquer &agrave; un groupe comportant jusqu'&agrave; 50 notices. </p>
- <p><strong>Obtenir:</strong> afficher les localisations, faire des demandes de pr&ecirc;t, des r&eacute;servations ou des copies.</p>
- <p><strong>D&eacute;tails:</strong> informations d&eacute;taill&eacute;es sur le titre.</p>
- <p><strong>Liens:</strong> liens vers la table des mati&egrave;res, vers un titre ant&eacute;rieur/ult&eacute;rieur, vers l'ensemble des volumes d'une s&eacute;rie.</p>
- <p><strong>&Eacute;tag&egrave;re virtuelle:</strong> vous pouvez voir un rayon de la biblioth&egrave;que en lien avec la notice s&eacute;lectionn&eacute;e </p>
-</md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="questions">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Des questions?</h2></a>
-</md-card-title-text>
- </md-card-title>
- <md-card-content id="que1">
- <a href="mailto:library@epfl.ch">
- <h3>Informations de contact<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>N'h&eacute;sitez pas &agrave; prendre contact avec nous pour toute question, h&eacute;sitation, commentaire ou requ&ecirc;te.</p>
-
-</md-card-content>
-
- </md-card>
-
- </div>
-
-
-
- </div>
-
-</md-content>
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/html/help/help_it.html b/primo-explore/custom/41SLSP_HPH-EPFL/html/help/help_it.html
deleted file mode 100644
index 6512db0..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/html/help/help_it.html
+++ /dev/null
@@ -1,506 +0,0 @@
-
-<md-content id="help">
- <div class="ps_content md-padding" layout-gt-sm="row" layout-align="center center">
- <div flex="100" flex-md="100" flex-lg="80" flex-xl="60" layout="column">
- <md-card class="default-card">
- <md-card-title>
- <md-card-title-text>
- <h1 class="md-headline"><b>swisscovery Help Page</b></h1>
- </md-card-title-text>
- </md-card-title>
-
- </md-card>
-
- <md-card class="default-card">
-
- <md-card-content>
- <h4>Introduzione: </h4>
- <p>Gentili utenti,</p>
- <p>Benvenuti nella pagina di aiuto di swisscovery.</p>
- <p>swisscovery &egrave; lo strumento di discovery della <a href="https://slsp.ch/it" target="_blank">Swiss Library Service Platform Network (SLSP)</a>. In questa pagina sono disponibili informazioni utili su come usare swisscovery e su come &egrave; organizzata la rete SLSP. </p>
- <p>Attenzione: questa pagina &egrave; stata creata per l'intero network SLSP! Ci&igrave; significa che alcuni servizi potrebbero non essere disponibili in questa specifica interfaccia utenti. Tenete presente che l'aspetto della pagina iniziale o la visualizzazione dei record pu&igrave; variare da istituzione a istituzione, rispetto a quanto mostrato qui.</p>
- </md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="index">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Indice:</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <h3><a href="#general">Informazioni generali </a></h3>
- <ul>
- <!--<li><a href="#gen1">Un breve video di introduzione a swisscovery</a></li>-->
- <li><a href="#gen2">SLSP: La Swiss Library Service Platform</a></li>
- <li><a href="#gen3">La rete SLSP</a></li>
- <li><a href="#gen4">Creare un conto</a></li>
- <li><a href="#gen5">Tessera della biblioteca</a></li>
- <li><a href="#gen6">Come identificarsi</a></li>
- <li><a href="#gen7">Conto utente</a></li>
- <li><a href="#gen8">Aggiornare il proprio conto </a></li>
- <li><a href="#gen9">Impostazione lingua</a></li>
- </ul>
- <h3><a href="#online">Risorse online</a></h3>
- <ul>
- <li><a href="#onl1">Risorse online</a></li>
- <li><a href="#onl2">Servizi online per membri universitari </a> </li>
- <li><a href="#onl3">Servizi online per persone che non sono membri di un'universit&agrave; </a></li>
- <li><a href="#onl4">Open Access</a></li>
- <li><a href="#onl5">Licenze nazionali </a></li>
- </ul>
- <h3><a href="#borrow">Richiesta di prestito/richiesta documenti</a></h3>
- <ul>
- <li><a href="#bor1">Richiesta di prestito/richiesta documenti</a></li>
- <li><a href="#bor2">Richieste di prestito interbibliotecario all'esterno della rete SLSP</a></li>
- <li><a href="#bor3">Prolungamento del periodo di prestito</a></li>
- <li><a href="#bor4">Lista dei prestiti precedenti</a></li>
- </ul>
- <h3><a href="#search">Ricerca</a></h3>
- <ul>
- <li><a href="#sea1">Profili di ricerca SLSP</a></li>
- <li><a href="#sea2">Ricerca semplice </a></li>
- <li><a href="#sea3">Ricerca avanzata </a></li>
- <li><a href="#sea4">Ricerca per frase </a></li>
- <li><a href="#sea5">Ricerca con le wildcard </a></li>
- <li><a href="#sea6">Uso di operatori booleani per espandere o restringere una ricerca </a></li>
- <li><a href="#sea7">Preferiti</a></li>
- <li><a href="#sea8">Storico di ricerca</a></li>
- <li><a href="#sea9">Salvare e gestire le ricerche</a></li>
- <!--<li><a href="#sea10">Citation Linker </a></li>-->
- </ul>
- <h3><a href="#display">Visualizzazione dei risultati</a></h3>
- <ul>
- <li><a href="#dis1">Restringere i risultati </a></li>
- <li><a href="#dis2">Lista dei risultati: classificazione </a></li>
- <li><a href="#dis3">Lista dei risultati: versioni</a> </li>
- <li><a href="#dis4">Visualizzazione di titoli singoli </a></li>
- </ul>
- <h3><a href="#questions">Domande?</a></h3>
- <ul>
- <li><a href="#que1">Informazioni di contatto</a></li>
- </ul>
- </md-card-content>
- </md-card>
-
- <md-card class="default-card" id="general">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Informazioni generali </h2></a>
- </md-card-title-text>
- </md-card-title>
- <!--<md-card-content id="gen1">
- <a href="#index"><h3>Un breve video di introduzione a swisscovery<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3></a>
- <div class="resp-container">
- <iframe class="resp-iframe" src="https://www.youtube.com/embed/1fZwnu_nzPU" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
- </div>
- </md-card-content>r-->
- <md-card-content id="gen2">
- <a href="#index">
- <h3>SLSP: La Swiss Library Service Platform <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>La Swiss Library Service Platform insieme alla sua controllata Consorzio delle biblioteche universitarie svizzere &egrave;, con oltre <a href="https://slsp.ch/libraries" target="_blank">450 membri</a> la rete di biblioteche universitarie e di ricerca pi&ugrave; grande della Svizzera. Creata dalle biblioteche per le biblioteche, si tratta di un impegno comune per fornire una serie di servizi all'intero paese, quali un catalogo multilingue condiviso di informazioni scientifiche, una rappresentazione unica per le licenze di risorse elettroniche e una rete di corrieri efficiente per la condivisione di risorse fisiche. </p>
- <p>SLSP rappresenta un passaggio innovativo e significativo in direzione dell'evoluzione digitale delle biblioteche in Svizzera. Grazie alla gestione del sistema Alma basato su un cloud, l'organizzazione unisce le informazioni scientifiche archiviate nelle biblioteche in tutta la Svizzera. Rendendo accessibili e facilmente trovabili tali informazioni, SLSP fornisce un contributo alla ricerca e al progresso scientifico.</p>
-</md-card-content>
- <md-card-content id="gen3">
- <a href="#index">
- <h3>La rete SLSP<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>Il network SLSP &egrave; suddiviso in diverse &laquo;zone&raquo;. La SLSP gestisce la network zone (NZ) chiamata swisscovery, mentre le biblioteche sono state distribuite in 29 &laquo;institution zone&raquo; (IZ). </p>
- <p>Una institution zone (IZ) raggruppa le biblioteche con esigenze simili. L'IZ &egrave; una componente chiave nel sistema SLSP, esso permette di creare sinergie e incrementare l'efficienza. In SLSP distinguiamo due tipi di institution zone: zone ad entit&agrave; singola e zone ad entit&agrave; mista. </p>
- <p>In una zona ad entit&agrave; singola la maggior parte delle biblioteche sono legate giuridicamente ad un ente principale (per esempio ad un'universit&agrave;). In una zona ad entit&agrave; mista, le biblioteche sono legate giuridicamente ad enti diversi (per esempio sono raggruppati sulla base di considerazioni geografiche).</p>
- <p>Per accedere alle risorse delle biblioteche membre di SLSP, gli utenti devono accedere alle interfacce utenti chiamate &laquo;Views&raquo;. In SLSP abbiamo preparato un'interfaccia per la Network Zone (NZ), un'interfaccia per tutte le Institution Zone (IZ) e diverse interfacce per singole biblioteche. </p>
- <p>Ogni interfaccia ha ambiti di ricerca specifici che daranno risultati diversi quando vengono usate per la ricerca. La network zone di swisscovery contiene tutti i record provenienti dalle biblioteche SLSP, alcune risorse generali esterne (per esempio i documenti di e-rara) e l'indice CDI (Central Discovery Index). Le interfacce delle institution zone e le Library view contengono l'inventario locale della institution zone / biblioteca, risorse esterne generali e locali e l'indice CDI. </p>
- <p>Il Central Discovery Index (CDI) &egrave; un database centrale con oltre 3 miliardi di record quali: articoli di riviste, e-book, dissertazioni, atti di convegni, ecc. </p>
- <img width="935" height="665" src="custom/41SLSP_EPF-prod/img/help/swisscovery_ita.png" />
- <p>Nel seguente <a href="https://slsp.ch/libraries" target="_blank">link</a> &egrave; possibile trovare la topologia del network SLSP, che comprende la lista di tutte le biblioteche membre di SLSP suddivise per institution zone e il link per ogni interfaccia esistente del nostro network. Per ciascuna institution zone e biblioteca &egrave; possibile trovare l'indirizzo, le informazioni di contatto e i servizi da loro forniti.</p>
-</md-card-content>
- <md-card-content id="gen4">
- <a href="#index">
- <h3>Creare un conto<img class="icon_up2" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Per registrarsi su SLSP, visitate innanzitutto: <a href="https://registration.slsp.ch" target="_blank">https://registration.slsp.ch</a></p>
- <p>Dopo aver avviato la registrazione verr&agrave; chiesto di eseguire il login ad un account SWITCH edu-ID. Se si &egrave; gi&agrave; in possesso di un account SWITCH edu-ID, basta eseguire il login per procedere con la registrazione. Se non si possiede ancora una password, sulla pagina di login &egrave; disponibile un link di reset della password.</p>
- <p>Se non si possiede ancora un account utente SWITCH edu-ID cliccate su &laquo;Creare un conto&raquo; nella pagina di login. </p>
- <p><strong>ATTENZIONE:</strong> Se siete studenti presso un'universit&agrave;, &egrave; possibile che siate gi&agrave; registrati su SLSP. In tal caso apparir&agrave; un messaggio e si verrete inoltrati alla sezione di login dell'interfaccia. </p>
-</md-card-content>
- <md-card-content id="gen5">
- <a href="#index">
- <h3>Tessera della biblioteca<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>La propria tessera della biblioteca consente di accedere ad una serie di servizi, per esempio &egrave; possibile prendere in prestito una copia fisica di un libro da una biblioteca. </p>
- <p>Se si &egrave; gi&agrave; in possesso di una tessera della biblioteca della rete <a href="https://www.nb.admin.ch/snl/it/home/servizi/prestito-utilizzo/bibliopass.html" target="_blank">BibliOpass</a>, &egrave; possibile fornire il numero di tessera della biblioteca durante la registrazione a SLSP o successivamente. Valgono come tessera della biblioteca anche alcune tessere di campus / universit&agrave; / studenti. Inoltre, alcune universit&agrave; forniscono il numero di tessera della biblioteca per i loro utenti. Il numero di tessera della biblioteca associato all'account SLSP viene mostrato durante il processo di registrazione alla SLSP (vedi capitolo &laquo;Creare un conto&raquo;).</p>
- <p>Se non si possiede una tessera della biblioteca, &egrave; possibile chiedere al proprio bibliotecario di fornirne una. </p>
-</md-card-content>
- <md-card-content id="gen6">
- <a href="#index">
- <h3>Come identificarsi<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Su swisscovery: cliccate su &laquo;identificati&raquo; - scegliere la propria institution zone - cliccare su &laquo;SWITCH edu-ID&raquo; - inserire il proprio indirizzo e-mail e password - cliccare su &laquo;Accedi&raquo;</p>
- <p>In una institution zone / library view: cliccare su &laquo;Identificati&raquo; - cliccare su &laquo;SWITCH edu-ID&raquo; -inserire il proprio indirizzo e-mail e password - cliccare su &laquo;Accedi&raquo; </p>
- <img width="460" height="74" src="custom/41SLSP_EPF-prod/img/help/signin_ita.png" />
- <p>La registrazione &egrave; necessaria per svolgere le seguenti attivit&agrave;:</p>
- <ul>
- <li>Richiesta di documenti (prestito, richiesta di digitalizzazione, prestito interbibliotecario)</li>
- <li>Visualizzare e controllare i propri prestiti e richieste da biblioteche nel network SLSP. </li>
- <li>Prolungare il periodo di prestito, cancellare prenotazioni</li>
- <li>Salvare preferiti</li>
- <li>Salvare ricerche e impostare avvisi</li>
- <li>Cambiare in modo permanente la lingua impostata </li>
- </ul>
- <p>Come ospite, i propri preferiti, le richieste di ricerca e la lingua selezionata possono essere salvati solo per la corrente sessione. </p>
- <p>Disconnettersi dopo una sessione per proteggere il proprio account dall'accesso da parte di altri utenti.</p>
- <h4>ATTENZIONE:</h4>
- <p>Alcune risorse online sono accessibili senza identificarsi, ma per accedere all'insieme delle risorse disponibili nella vostra istituzione &egrave; necessario. </p>
- <p>
- L'accesso alle risorse online dipende spesso dalla propria appartenenza (per es. come studente o ricercatore) a un'istituzione di istruzione superiore. Alcune istituzioni di istruzione superiore permettono agli utenti l'accesso remoto alle risorse online. Per maggiori informazioni sulle condizioni di accesso alle risorse online &egrave; possibile consultare il capitolo &laquo;Risorse online&raquo; sulla presente pagina d'aiuto o sul sito web della vostra biblioteca.
- </p>
- <p>Tali condizioni non vengono applicate alle licenze nazionali (per maggiori informazioni vedere il capitolo relativo in questa pagina). </p>
-</md-card-content>
- <md-card-content id="gen7">
- <a href="#index">
- <h3>Conto utente <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Per accedere al proprio conto &egrave; necessario registrarsi. Dopo la registrazione, cliccate sul vostro nome in alto a destra della pagina. Accederete ad un menu contenente alcuni sottomenu del proprio conto. Per avere il pieno accesso ai dati del proprio account, cliccate su &laquo;Conto utente&raquo;.</p>
- <p>Da questa pagina sar&agrave; possibile consultare i propri prestiti, richieste, tariffe, messaggi e tante altre funzioni. </p>
- <p><strong>ATTENZIONE:</strong> Ogni institution zone ha il suo proprio spazio. Ci&igrave; significa, per esempio, che se si prende in prestito una risorsa nella institution zone della BCU Fribourg, e una all'institution zone dell'ETH Z&uuml;rich, esse vengono separate in pagine diverse, come mostrato di seguito:</p>
- <img width="935" height="627" src="custom/41SLSP_EPF-prod/img/help/myAccount_ita.png" />
-</md-card-content>
- <md-card-content id="gen8">
- <a href="#index">
- <h3>Aggiornare il proprio conto <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Per modificare il proprio indirizzo o altre informazioni relative al proprio conto, andate sulla pagina "Mia edu-ID" <a href="https://eduid.ch/" target="_blank">https://eduid.ch/</a> e aggiornare il proprio account edu-ID. Attenzione: le modifiche eseguite nel &laquo;Conto utente&raquo; in swisscovery o nelle institution zone vengono sovrascritte dalle informazioni provenienti dall'account edu-ID. Per gestire i propri numeri di tessera della biblioteca, andate su <a href="https://registration.slsp.ch/register/library-card/" target="_blank">https://registration.slsp.ch/register/library-card/</a> </p>
-</md-card-content>
- <md-card-content id="gen9">
- <a href="#index">
- <h3>Impostazione lingua <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Cliccare su &laquo;Mostra lingua&raquo; per modificare la lingua impostata per la sessione corrente. Se si &egrave; registrati, la lingua impostata verr&agrave; salvata in modo permanente. &Egrave; anche possibile modificare la lingua della propria interfaccia compilando la sezione &laquo;Dettagli personali&raquo; del proprio conto. </p>
- <img width="333" height="211" src="custom/41SLSP_EPF-prod/img/help/setLanguage_ita.png" />
-</md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="online">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Risorse online</h2></a>
-</md-card-title-text>
- </md-card-title>
- <md-card-content>
-
- <md-card-content id="onl1">
- <a href="#index">
- <h3>Risorse online<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Tutti i tipi di risorse online offerti dalle biblioteche partecipanti sono indicizzati nella ricerca: libri, riviste, database, fotografie digitalizzate, mappe, manoscritti e altri esemplari della collezione. Tuttavia, non tutti i documenti sono accessibili liberamente. Molti documenti vengono acquisiti attraverso una licenza e sono disponibili unicamente nella rete dell'universit&agrave; titolare della licenza. Mediante l'uso dei filtri, &egrave; possibile restringere la ricerca ai documenti con licenza online e Open Access (Disponibile online) o selezionare unicamente i documenti accessibili liberamente (Open Access). </p>
- <img width="233" height="218" src="custom/41SLSP_EPF-prod/img/help/showonly_ita.png" />
- <p>
- Per le risorse online, la sezione &laquo;Visualizza Online&raquo; nella visualizzazione completa fornisce informazioni sulla disponibilit&agrave; della risorsa nella propria istituzione e in altre institution zones del network SLSP. Per accedere alle risorse, cliccate sull'icona <img width="41" height="42" src="custom/41SLSP_EPF-prod/img/help/viewOnlineIcon.png" />
- </p>
- <img width="935" height="462" src="custom/41SLSP_EPF-prod/img/help/viewOnline_ita.png" />
-</md-card-content>
- <md-card-content id="onl2">
- <a href="#index">
- <h3>Servizi online per membri universitari<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>Oltre ai documenti Open Access &egrave; possibile usare i servizi online della propria universit&agrave;. Riviste elettroniche, e-book e database vengono acquisiti attraverso licenze e il loro accesso &egrave; riservato esclusivamente al network dell'istituzione titolare della licenza (sul campus). Per accedere a tali documenti dall'esterno dell'universit&agrave;, &egrave; possibile utilizzare strumenti come VPN, Eduroam, EZProxy, ecc. Consultate le informazioni relative all'accesso remoto presso la vostra biblioteca o il sito web IT della vostra universit&agrave;.</p>
- <p>
- La sezione &laquo;Visualizza Online&raquo; fornisce i servizi disponibili per le risorse della propria istituzione e di altre institution zone del network SLSP. Cliccate su &laquo;Disponibile online&raquo; e l'icona <img width="41" src="custom/41SLSP_EPF-prod/img/help/viewOnlineIcon.png" />per ottenere la visualizzazione completa.
- </p>
- <img width="935" height="170" src="custom/41SLSP_EPF-prod/img/help/availOnline_ita.png" />
- <img width="935" height="439" src="custom/41SLSP_EPF-prod/img/help/availOnlineFull_ita.png" />
-</md-card-content>
- <md-card-content id="onl3">
- <a href="#index">
- <h3>Servizi online per persone che non sono membri di un'universit&agrave; <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Oltre alle risorse Open Access e online con licenza nazionale, &egrave; anche possibile usare le risorse con la licenza acquistata dall'universit&agrave;, a condizione di essere nei locali della stessa.</p>
- <p>Le riviste universitarie elettroniche, gli e-book e i database vengono acquisiti attraverso licenze e il loro accesso &egrave; riservato esclusivamente alla rete dell'istituzione titolare della licenza (sul campus), &egrave; possibile scaricare e/o accedere a tali risorse dalla sede della biblioteca titolare della licenza. </p>
- <p>Le biblioteche che offrono l'accesso a risorse online sono visualizzate sotto localizzazione. </p>
- <img width="935" height="170" src="custom/41SLSP_EPF-prod/img/help/availOnline2_ita.png" />
- <img width="935" height="345" src="custom/41SLSP_EPF-prod/img/help/locationItems_ita.png" />
-</md-card-content>
- <md-card-content id="onl4">
- <a href="#index">
- <h3>Open Access<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>I documenti Open Access sono accessibili liberamente. Si tratta sia di articoli di riviste o e-book provenienti da diverse piattaforme o repository istituzionali, sia di documenti digitalizzati dalle biblioteche. Questi documenti sono contrassegnati nella lista dei risultati con l'icona "open access".</p>
- <img width="935" height="188" src="custom/41SLSP_EPF-prod/img/help/openAccess_ita.png" />
-</md-card-content>
- <md-card-content id="onl5">
- <a href="#index">
- <h3>Licenze nazionali<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Tutte le persone che vivono in Svizzera hanno accesso alle licenze nazionali. Ci&igrave; richiede una registrazione gratuita, maggiori informazioni sono disponibili sulla pagina <a href="https://consortium.ch/zugriff/?lang=en" target="_blank">https://consortium.ch/zugriff/?lang=en </a>. Attenzione: per la registrazione per licenze nazionali pu&igrave; essere utilizzata la medesima edu-ID di swisscovery. </p>
- <p>Le risorse disponibili attraverso le licenze nazionali sono contrassegnate in parentesi nella sezione &laquo;Disponibilit&agrave; full text&raquo;.</p>
- <img width="935" height="160" src="custom/41SLSP_EPF-prod/img/help/NationalLicenses_ita.png" />
-</md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="borrow">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Richiesta di prestito/richiesta documenti </h2></a>
-</md-card-title-text>
- </md-card-title>
- <md-card-content id="bor1">
- <a href="#index">
- <h3>Richiesta di prestito/richiesta documenti<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Sotto &laquo;Lo trovi in&raquo; nella visualizzazione completa, &egrave; possibile vedere le biblioteche dove &egrave; localizzato il documento e se &egrave; attualmente disponibile. La fornitura di un esemplare in una localizzazione di presa in consegna pu&igrave; essere soggetta a costi.</p>
- <p>Sotto &laquo;Altre opzioni&raquo; &egrave; possibile vedere se biblioteche SLSP di altre institution zone posseggono questo esemplare. </p>
- <img width="935" height="455" src="custom/41SLSP_EPF-prod/img/help/getIt_ita.png" />
- <p>Selezionare l'opzione di richiesta che si desidera: "Richiesta" (copia fisica/prenotazione) o "Digitalizzazione" (Copia digitale o cartacea). Per effettuare una richiesta &egrave; necessario essere registrati.</p>
- <img width="935" height="349" src="custom/41SLSP_EPF-prod/img/help/requestOption_ita.png" />
- <p>Selezionando "Richiesta", &egrave; possibile richiedere una copia fisica da ritirare nella biblioteca. &Egrave; anche possibile richiedere la fornitura di alcuni esemplari via posta (servizio a pagamento). Se &egrave; disponibile questa opzione, selezionate la vostra istituzione nel campo &laquo;Istituzione di ritiro&raquo; e l'indirizzo postale nel campo &laquo;Luogo di ritiro&raquo;.</p>
- <p>Se si desidera ricevere una copia elettronica o cartacea di un articolo o di un capitolo, cliccarte su Digitalizzazione e compilare il modulo con tutti i dettagli possibili.</p>
- <p><strong>ATTENZIONE:</strong> Questi servizi possono non essere disponibili nella propria IZ / biblioteca e possono essere soggetti a costi. Per maggiori informazioni cliccare <a href="https://slsp.ch/en" target="_blank">qui</a>. </p>
-</md-card-content>
- <md-card-content id="bor2">
- <a href="#index">
- <h3>Richieste di prestito interbibliotecario<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>
- Nonostante il network SLSP offra accesso ad oltre 50 milioni di record di esemplari e ad un numero inestimabile di risorse elettroniche, &egrave; possibile che la pubblicazione che cercate non sia disponibile. In tal caso &egrave; possibile effettuare una richiesta di prestito interbibliotecario e la pubblicazione verr&agrave; presa in prestito presso un'altra biblioteca in Svizzera o all'estero (servizio a pagamento). Si prega di compilare il presente <a href="https://slsp.ch/en" target="_blank">modulo</a>, e la propria biblioteca si prender&agrave; cura della richiesta.
- </p>
- <p><strong>ATTENZIONE:</strong> Questo servizio pu&igrave; essere soggetto a commissioni aggiuntive. Per maggiori informazioni in merito alle possibili commissioni si prega di <a href="https://slsp.ch/fees" target="_blank">consultare la presente pagina</a>.</p>
-</md-card-content>
- <md-card-content id="bor3">
- <a href="#index">
- <h3>Prolungamento del periodo di prestito <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Nel Conto utente, &egrave; possibile vedere i prestiti in corso e rinnovarli tutti o singolarmente, posto che le condizioni di prestito lo consentano. </p>
- <img width="935" height="524" src="custom/41SLSP_EPF-prod/img/help/renewLoans_ita.png" />
- <p><strong>ATTENZIONE:</strong> Il nuovo periodo di prestito decorre sempre da subito. Se si rinnova un documento prima del termine automatico del periodo di prestito, il massimo periodo di prestito possibile si accorcia.</p>
- <p><strong>ATTENZIONE:</strong> le condizioni di prestito possono variare a seconda delle istituzioni e del tipo di materiale. </p>
-</md-card-content>
- <md-card-content id="bor4">
- <a href="#index">
- <h3>Lista dei prestiti precedenti<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Nel Conto utente, nella sezione &laquo;Prestiti&raquo; delle IZ &egrave; possibile vedere i propri prestiti attivi e precedenti.</p>
- <img width="352" height="150" src="custom/41SLSP_EPF-prod/img/help/activeLoans_ita.png" />
- <p><strong>ATTENZIONE:</strong> in alcune institution zone / biblioteche questa opzione non &egrave; disponibile a causa delle norme cantonali sulla protezione dei dati.</p>
-</md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="search">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Ricerca</h2></a>
-</md-card-title-text>
- </md-card-title>
- <md-card-content id="sea1">
- <a href="#index">
- <h3>Profili di ricerca SLSP <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>SLSP lavora con due profili di ricerca standard disponibili in ciascuna interfaccia. Il primo &egrave; &laquo;swisscovery&raquo;, il secondo &egrave; &laquo;La mia biblioteca&raquo;. Questa infografica illustra dove viene effettuata la ricerca a seconda del profilo utilizzato. In alcune institution zone o Views di biblioteche &egrave; possibile trovare ulteriori profili di ricerca personalizzati creati dalla institution zone / biblioteca. </p>
- <img width="935" height="899" src="custom/41SLSP_EPF-prod/img/help/infographig_ita.png" />
- <p><strong>La mia biblioteca:</strong> Comprende l'inventario locale della institution zone / biblioteca + risorse esterne caricate in questa institution zone (generale e locale) + CDI (CDI pu&igrave; anche essere usato come profilo di ricerca separato). Questo profilo di ricerca ha sempre il nome dell'istituzione / biblioteca.</p>
- <p><strong>swisscovery:</strong> Tutti i record del network SLSP + risorse esterne generali + CDI </p>
- <p><strong>Profilo di ricerca personalizzato: </strong> Alcune institution zone / biblioteche hanno realizzato i propri profili di ricerca, che includono dei dati locali.</p>
- <p><strong>Central Discovery Index (CDI):</strong> &egrave; un database centrale che comprende migliaia di fonti per un totale di oltre 3 miliardi di record quali: articoli di riviste, e-book, dissertazioni, atti di convegni, brevetti, report, documenti governativi, immagini e video. A seconda della institution zone / view della biblioteca, il CDI pu&igrave; essere cercato nel profilo di ricerca &laquo;La mia biblioteca&raquo;, in un profilo di ricerca separato o in entrambi</p>
- <p><strong>Risorse esterne generali: </strong> swisscovery &egrave; stata arricchita con l'aggiunta di risorse esterne elettroniche generali, in particolare repositories istituzionali.</p>
- <p><strong>Risorse esterne locali:</strong> oltre alle risorse esterne generali, alcune institution zone forniscono alcune risorse esterne locali. </p>
-</md-card-content>
- <md-card-content id="sea2">
- <a href="#index">
- <h3>Ricerca semplice<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>La ricerca semplice consente l'accesso rapido alle risorse bibliotecarie. </p>
- <img width="935" src="custom/41SLSP_EPF-prod/img/help/simpleSearch_ita.png" />
-</md-card-content>
- <md-card-content id="sea3">
- <a href="#index">
- <h3>Ricerca avanzata<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>I campi di ricerca della ricerca avanzata possono essere combinati con &laquo;E&raquo;, &laquo;O&raquo; o &laquo;NON&raquo;. </p>
- <img width="935" height="426" src="custom/41SLSP_EPF-prod/img/help/advancedSearch_ita.png" />
- <p>In questo esempio la ricerca &egrave; limitata a libri in inglese che nel titolo contengono &laquo;mountain railway*&raquo; e hanno come soggetto la Svizzera. </p>
- <p>Con l'aiuto del secondo (o terzo campo), &egrave; possibile scegliere tra &laquo;contiene&raquo; o &laquo;&egrave;(esatto)&raquo; o &laquo;inizia con&raquo;, per specificare se i termini di ricerca devono essere contenuti nel campo, se devono corrispondere esattamente ai termini di ricerca o se l'elemento deve iniziare con un termine specifico. </p>
- <p>Qui potete scrivere qualche parola del titolo, non necessariamente nell'ordine esatto:</p>
- <img width="408" height="57" src="custom/41SLSP_EPF-prod/img/help/advancedField1_ita.png" /><br />
- <p>In questo caso invece, state cercando il titolo esatto:</p>
- <img width="408" height="70" src="custom/41SLSP_EPF-prod/img/help/advancedField2_ita.png" />
- <p>Scegliendo "inizia con" invece, cercherete i titoli che iniziano con "mountain":</p>
- <img width="408" height="62" src="custom/41SLSP_EPF-prod/img/help/advancedField3_ita.png" />
-</md-card-content>
- <md-card-content id="sea4">
- <a href="#index">
- <h3>Ricerca per frase<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Se si desidera cercare una frase (gruppo di parole), inserirle tra virgolette. In una ricerca &egrave; possibile combinare frasi e parole. </p>
- <img width="935" height="85" src="custom/41SLSP_EPF-prod/img/help/searchPhrase_ita.png" />
- <p>I risultati includono documenti che contengono entrambi i termini &laquo;piz buin&raquo; e l'aspetto &laquo;mountain&raquo;.</p>
-</md-card-content>
- <md-card-content id="sea5">
- <a href="#index">
- <h3>Ricerca con le wildcard<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>L'asterisco * e il punto interrogativo ? possono essere utilizzati come wildcard per la ricerca:</p>
- <p>L'asterisco * &egrave; la wildcard per cercare diversi caratteri in fondo a una parola: </p>
- <img width="935" height="74" src="custom/41SLSP_EPF-prod/img/help/searchWildcard1_ita.png" />
- <p>ricerca per cultura, culture, culturale ecc. </p>
- <p>L'asterisco * pu&igrave; anche aiutare a trovare ortografie diverse: </p>
- <img width="935" height="77" src="custom/41SLSP_EPF-prod/img/help/searchWildcard2_ita.png" />
- <p>In questo caso ricerca yogurt, yoghurt, yogourt, yoghourt, ecc.</p>
- <p>Il punto interrogativo ? &egrave; la wildcard che rimpiazza un singolo carattere: </p>
- <img width="935" height="84" src="custom/41SLSP_EPF-prod/img/help/searchWildcard3_ita.png" />
- <p>ricerca woman e women.</p>
- <p>Inoltre, potete combinare i due caratteri </p>
- <img width="935" height="84" src="custom/41SLSP_EPF-prod/img/help/searchWildcard4_ita.png" />
- <p>Otterrete dei risultati per yoghurt, yogourt, yohurts o yogourts</p>
-</md-card-content>
- <md-card-content id="sea6">
- <a href="#index">
- <h3>Uso di operatori booleani per espandere o restringere una ricerca<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>&Egrave; possibile utilizzare operatori booleani &laquo;E&raquo;, &laquo;O&raquo; e &laquo;NON&raquo;. Questi devono essere scritti in lettere maiuscole. </p>
- <p>Senza operatori, i termini di ricerca vengono automaticamente combinati con <strong>&laquo;E&raquo;</strong>. In altre parole, tutti i termini di ricerca devono apparire nei risultati. </p>
- <p><strong>O</strong></p>
- <p>Almeno uno dei termini di ricerca collegati con &laquo;O&raquo; devono comparire nei risultati. Per esempio, usare &laquo;O&raquo; per combinare termini correlati per espandere la ricerca a diversi termini (sinonimi, diverse ortografie):</p>
- <img width="935" height="76" src="custom/41SLSP_EPF-prod/img/help/searchOR_ita.png" />
- <p><strong>NON</strong></p>
- <p>Il termine di ricerca escluso con &laquo;NON&raquo; non deve apparire nei risultati. In altre parole, &laquo;NON&raquo; fa s&igrave; che le parole o frasi vengano esplicitamente escluse. </p>
- <!--<p><strong>NOTE:</strong> The Boolean operator NOT is available only in the simple search </p>-->
- <img width="935" height="79" src="custom/41SLSP_EPF-prod/img/help/searchNOT_ita.png" />
- <p>I risultati includono documenti che contengono le frasi &laquo;climate change&raquo;, ma non &laquo;global warming&raquo;. </p>
-</md-card-content>
- <md-card-content id="sea7">
- <a href="#index">
- <h3>Preferiti<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>In &laquo;Preferiti&raquo; &egrave; possibile salvare i titoli trovati durante la propria ricerca. Il salvataggio a lungo termine &egrave; possibile unicamente se si &egrave; registrati. Come ospite, i preferiti sono a disposizione solamente durante la sessione browser corrente.</p>
- <p>
- Facendo clic sull'icona
- <img width="14" height="18" src="custom/41SLSP_EPF-prod/img/help/pinIcon1.png" /> di un titolo, il titolo viene aggiunto tra i propri preferiti e cambia in
- <img width="14" height="15" src="custom/41SLSP_EPF-prod/img/help/pinIcon2.png" />. Facendo clic su
- <img width="14" height="15" src="custom/41SLSP_EPF-prod/img/help/pinIcon2.png" />, il titolo viene rimosso dai preferiti.
- </p>
- <p>
- &Egrave; possibile accedere alla propria collezione di preferiti attraverso l'icona
- <img width="14" height="18" src="custom/41SLSP_EPF-prod/img/help/pinIcon1.png" /> in alto a destra della pagina.
- </p>
- <p>&Egrave; possibile rimuovere o esportare singoli titoli dalla propria lista dei preferiti. Evidenziare uno o pi&ugrave; titoli e usare i simboli in alto nella pagina per eliminarli, aggiungere etichette, esportarli in programmi per la gestione dei riferimenti, stamparli o inviarli via e-mail: </p>
- <img width="935" height="481" src="custom/41SLSP_EPF-prod/img/help/myFavorites_ita.png" />
- <p>Per visualizzare i dettagli di un titolo, cliccare sul titolo. </p>
- <p>In &laquo;Preferiti&raquo; &egrave; anche possibile trovare lo storico di ricerca per la sessione corrente. </p>
-</md-card-content>
- <md-card-content id="sea8">
- <a href="#index">
- <h3>Storico di ricerca<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Le ricerche della sessione corrente sono salvate tra i preferiti sotto &laquo;Storico di ricerca&raquo;.</p>
- <p>
- &Egrave; possibile raggiungerli direttamente attraverso l'icona
- <img width="30" height="30" src="custom/41SLSP_EPF-prod/img/help/searchHistoryIcon.png" /> in alto a destra della pagina.
- </p>
- <img width="470" height="311" src="custom/41SLSP_EPF-prod/img/help/searchHistory_ita.png" />
-</md-card-content>
- <md-card-content id="sea9">
- <a href="#index">
- <h3>Salvare e gestire le ricerche<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>Se si &egrave; registrati, &egrave; possibile salvare le ricerche in modo permanente. Per farlo, cliccare su &laquo;Salva query&raquo; sopra la lista dei risultati: </p>
- <img width="935" height="148" src="custom/41SLSP_EPF-prod/img/help/saveQuery_ita.png" />
- <p><strong>ATTENZIONE:</strong> L'opzione &laquo;Salva query&raquo; viene visualizzata soltanto se si &egrave; registrati ed &egrave; stata effettuata una ricerca. </p>
- <p>Quando si salva la propria query, &egrave; possibile ricevere notifiche via e-mail per gli aggiornamenti relativi alla query. Per attivare questo servizio, appare automaticamente un messaggio in alto nella pagina. </p>
- <img width="935" height="73" src="custom/41SLSP_EPF-prod/img/help/emailNotification_ita.png" /><br />
- <img width="418" height="333" src="custom/41SLSP_EPF-prod/img/help/emailNotificationSettings_ita.png" />
- <p>
- Le ricerche salvate vengono archiviate in &laquo;Preferiti&raquo;
- <img width="14" height="18" src="custom/41SLSP_EPF-prod/img/help/pinIcon1.png" /> nella scheda &laquo;Ricerche salvate&raquo;.
- </p>
- <img width="935" height="250" src="custom/41SLSP_EPF-prod/img/help/savedSearches_ita.png" />
- <p>&Egrave; possibile eseguire nuovamente la ricerca cliccandoci nuovamente sopra. &Egrave; possibile attivare una notifica (via RSS o e-mail) usando i simboli a destra per ricevere informazioni sui nuovi documenti aggiunti corrispondenti alla propria ricerca. </p>
-</md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="display">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Visualizzazione dei risultati</h2></a>
-</md-card-title-text>
- </md-card-title>
- <md-card-content id="dis1">
- <a href="#index">
- <h3>Restringere i risultati<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>I termini di filtro vengono proposti nella colonna a sinistra e consentono di restringere i risultati di ricerca:</p>
- <img width="302" height="195" src="custom/41SLSP_EPF-prod/img/help/facets1_ita.png" />
- <p>Facendo clic su &laquo;Libri&raquo;, in questo esempio, si limita la lista dei risultati ai 1.432 libri trovati.</p>
- <p>Per escludere un termine, cliccate sul simbolo rosso a destra vicino al termine. </p>
- <img width="320" height="215" src="custom/41SLSP_EPF-prod/img/help/facets2_ita.png" />
- <p>Con &laquo;Mostra di pi&ugrave;&raquo; &egrave; possibile visualizzare ulteriori termini e affinare la ricerca includendo o escludendo diversi termini. </p>
- <p>Esempio: Restringere i risultati a &laquo;Tesi&raquo;; &laquo;Video&raquo; e &laquo;Audio&raquo;.</p>
- <img width="349" height="506" src="custom/41SLSP_EPF-prod/img/help/facets3_ita.png" />
- <p>Per rimuovere un filtro, cliccare sulla croce x a fianco del termine. &laquo;Ripristina filtri&raquo; invece rimuove tutti i filtri. </p>
- <img width="313" height="228" src="custom/41SLSP_EPF-prod/img/help/filters1_ita.png" />
- <p>L'inserimento di una nuova ricerca rimuove automaticamente tutti i filtri. In ogni caso &egrave; possibile mantenere un filtro per la durata della sessione browser selezionandolo e facendo clic sul simbolo del lucchetto. Per rimuovere il filtro, cliccare nuovamente sul lucchetto.</p>
- <img width="273" height="241" src="custom/41SLSP_EPF-prod/img/help/filters2_ita.png" />
-</md-card-content>
- <md-card-content id="dis2">
- <a href="#index">
- <h3>Lista dei risultati: classificazione<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>BDi default, i risultati sono ordinati per rilevanza. &Egrave; anche possibile ordinarli per data, autore e titolo. </p>
- <img width="177" height="315" src="custom/41SLSP_EPF-prod/img/help/sorting_ita.png" />
-</md-card-content>
- <md-card-content id="dis3">
- <a href="#index">
- <h3>Lista dei risultati: versioni <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Se un'opera &egrave; disponibile in diverse versioni (per es. in diverse edizioni o stampe), cliccare sull'icona, il titolo o &laquo;Visualizza tutte le versioni&raquo; per elencare tutte le versioni.</p>
- <img width="512" height="193" src="custom/41SLSP_EPF-prod/img/help/versions_ita.png" />
- <p>&Egrave; possibile ritornare alla lista dei risultati chiudendo la lista delle versioni sotto &laquo;Filtri attivi&raquo;. </p>
- <img width="263" height="191" src="custom/41SLSP_EPF-prod/img/help/activeFilters_ita.png" />
-</md-card-content>
- <md-card-content id="dis4">
- <a href="#index">
- <h3>Visualizzazione di titoli singoli <img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /></h3>
- </a>
- <p>Facendo clic su un titolo &egrave; possibile selezionare le seguenti azioni: </p>
- <img width="144" height="274" src="custom/41SLSP_EPF-prod/img/help/fullViewNavigation_ita.png" />
- <p><strong>Top:</strong> torna in alto nella pagina</p>
- <p><strong>Invia a: </strong> esporta informazioni del titolo al programma di gestione dei riferimenti, esporta citazioni, crea link permanenti al risultato, stampa o invia il titolo via e-mail. Le azioni di esportazione possono essere applicate fino a 50 record alla volta. </p>
- <p><strong>Ottenerlo:</strong> visualizza localizzazioni, effettua ordini di prestiti, prenotazioni o fotocopie.</p>
- <p><strong>Dettagli:</strong> maggiori informazioni sul titolo. </p>
- <p><strong>Link:</strong> collega agli indici, al titolo precedente/successivo, a tutti i volumi di una serie.</p>
- <p><strong>Scorri virtualmente:</strong> &egrave; possibile vedere uno scaffale della biblioteca relativo al record selezionato, di modo che sia possibile trovare altri esemplari corrispondenti alla propria ricerca.</p>
- <p>Se un'opera &egrave; disponibile in diverse versioni (per es. in diverse edizioni o stampe), cliccare sull'icona, il titolo o &laquo;Visualizza tutte le versioni&raquo; elencare tutte le versioni.</p>
- <img width="682" height="240" src="custom/41SLSP_EPF-prod/img/help/versions_ita.png" />
- <p>&Egrave; possibile ritornare alla lista dei risultati chiudendo la lista delle versioni sotto &laquo;Filtri Attivi&raquo;.</p>
- <img width="370" height="301" src="custom/41SLSP_EPF-prod/img/help/activeFilters_ita.png" />
-</md-card-content>
- </md-card>
-
-
- <md-card class="default-card" id="questions">
- <md-card-title>
- <md-card-title-text>
- <a href="#index"><img class="icon_up1" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /><h2 class="md-headline">Domande?</h2></a>
-</md-card-title-text>
- </md-card-title>
- <md-card-content id="que1">
- <a href="mailto:library@epfl.ch">
- <h3>Informazioni di contatto<img class="icon_up2" height="20" width="15" src="custom/41SLSP_EPF-prod/img/help/iconUp.png" /> </h3>
- </a>
- <p>Per qualsiasi domanda, dubbio, commento o richiesta non esitate <a href="mailto:swisscovery@slsp.ch" target="_blank">a contattarci</a>.</p>
-
-</md-card-content>
-
- </md-card>
-
- </div>
-
-
-
- </div>
-
-</md-content>
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/html/homepage/homepage_de.html b/primo-explore/custom/41SLSP_HPH-EPFL/html/homepage/homepage_de.html
deleted file mode 100644
index c009c2f..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/html/homepage/homepage_de.html
+++ /dev/null
@@ -1,137 +0,0 @@
-<md-content layout-xs="column" layout="row" class="_md md-primoExplore-theme layout-xs-column layout-row epfl-row">
- <div flex-sm="100" flex-md="60" flex-lg="35" flex-xl="30" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h1 class="md-headline">Willkommen bei <b>BEAST</b></h1>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p>Der Katalog <b>BEAST</b> (<b>B</b>ooks, <b>E</b>books and <b>A</b>rticles <b>S</b>earch <b>T</b>ool) bietet Ihnen Zugang zu allen dokumentarischen Ressourcen der Bibliothek der EPFL (Bücher, Zeitschriften und Artikel in gedruckter und elektronischer Form, Dissertationen der EPFL, DVDs, Videospiele usw.) sowie zu den Sammlungen der anderen Bibliotheken des <a href="https://slsp.ch/de">swisscovery-Netzes</a>.</p>
- </md-card-content>
- </md-card>
- </div>
- <div flex-sm="100" flex-md="40" flex-lg="20" flex-xl="20" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Inscription swisscovery</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p>Ihr NEBIS-Konto wurde nicht migriert, was bedeutet, dass alle Benutzerinnen und Benutzer ein neues Konto beim swisscovery erstellen m&uuml;ssen.</p>
- <p><b><a href="https://registration.slsp.ch/?iz=epfl&lang=de" class="puce"><span>&#x25b6;&nbsp;&nbsp;</span><u>Erstellen Sie ein swisscovery-Konto</u></a></b></p>
- <p><b><a href="https://slsp-epfl.primo.exlibrisgroup.com/discovery/account?vid=41SLSP_EPF:prod" class="puce"><span>&#x25b6;&nbsp;&nbsp;</span><u>Sehen Sie Ihr swisscovery-Konto</u></a></b></p>
- </md-card-content>
- </md-card>
- </div>
-</md-content>
-<md-content layout-xs="column" layout="row" class="_md md-primoExplore-theme layout-xs-column layout-row epfl-row">
- <div flex-sm="100" flex-md="60" flex-lg="35" flex-xl="30" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Dienstleistungen</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p>Bitte <a href="https://registration.slsp.ch?iz=epfl&lang=de" target="_blank">registrieren</a> Sie sich f&uuml;r die swisscovery-Netzwerkdienstleistungen, um auf folgende Dienstleistungen zugreifen zu k&ouml;nnen:</p>
- <ul>
- <li>Zugang zu den Sammlungen von mehr als <a href="https://slsp.ch/libraries" target="_blank">450 wissenschaftlichen Bibliotheken</a> in der Schweiz</li>
- <li>Nutzung lizenzierter elektronischer Ressourcen der Bibliothek der EPFL</li>
- <li>Dokumente aus anderen Bibliotheken bestellen (kostenlos, wenn sie in der Bibliothek der EPFL abgeholt werden)</li>
- <li>Zugriff auf Bibliothekskonto, Ausleihen und Reservierungen</li>
- </ul>
- </md-card-content>
- </md-card>
- </div>
- <div flex-sm="100" flex-md="40" flex-lg="20" flex-xl="20" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Fragen? Brauchen Sie Hilfe? </h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p><a href="https://www.epfl.ch/campus/library/slsp-network-and-swisscovery-opening/" class="puce"><span><md-icon md-svg-icon="primo-ui:help-circle-outline" alt="" class="md-primoExplore-theme" aria-hidden="true"></md-icon>&nbsp;&nbsp;</span><span><u>FAQ</u></span></a></p>
- <p>
- <a href="mailto:library@epfl.ch" class="puce"><span>
- <prm-icon aria-label="Cliquer pour envoyer un email à un bibliothécaire" class="md-icon-button-custom" icon-type="svg" svg-icon-set="primo-actions" icon-definition="email"></prm-icon>&nbsp;&nbsp;
- </span><span><u>library@epfl.ch</u></span></a>
- </p>
- <p>
- <a href="tel:+41 21 693 2156" class="puce"><span><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" id="svg8" version="1.1" viewBox="0 0 5.8208332 4.7625001" height="18" width="22">
- <defs id="defs2" />
- <metadata id="metadata5">
- <rdf:RDF>
- <cc:Work rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title></dc:title>
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g transform="translate(0,-292.23748)" id="layer1">
- <path id="path3724"
- d="m 1.055825,292.26314 c 0,0 0.9625162,0.58692 0.9450235,1.05996 -0.013351,0.361 -0.7790059,0.75345 -0.7790059,0.75345 0,0 0.7151529,1.2643 2.0432941,1.87728 0,0 0.2369017,-0.82813 0.6129882,-0.94501 0.3442827,-0.10707 1.1876644,0.80455 1.1876644,0.80455 -0.088535,0.46531 -0.6221609,1.20306 -1.4430764,1.20042 -1.2544625,-0.003 -3.61407604,-2.55411 -3.56299368,-3.5119 0.05108229,-0.9578 0.6896117,-1.22598 0.99610578,-1.23875 z"
- style="fill-opacity:1;stroke:none;stroke-width:0.30815426px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- </g>
- </svg>&nbsp;&nbsp;</span><span><u>+41 21 693 21 56</u></span></a>
- </p>
- </md-card-content>
- </md-card>
- </div>
-</md-content>
-<md-content>
- <div flex="100">
- <md-card class="prm-primary-bg psfooter" flex layout-gt-sm="row" layout-align="space-around start">
- <md-card-content class="prm-primary-bg">
- <!-- <span class="md-headline">Adresse:</span> -->
- <p>EPFL Biblioth&egrave;que</p>
- <p>Rolex Learning Center</p>
- <p>Station 20</p>
- <p>CH-1015 Lausanne</p>
- </md-card-content>
- <md-card-content class="prm-primary-bg">
- <!-- <span class="md-headline">Contact:</span> -->
- <p><a href="tel:+41216932156">+41 21 693 21 56</a></p>
- <p><a href="mailto:library@epfl.ch">library@epfl.ch</a></p>
- <p><a href="https://www.epfl.ch/campus/library/" target="_blank">https://www.epfl.ch/campus/library/</a></p>
- <p class="epfl-social">
- <a href="https://www.facebook.com/EPFLlibrary/" target="_blank" aria-label="Facebook">
- <img src="custom/41SLSP_EPF-prod/img/facebook.png" />
- </a>
- <a href="https://www.instagram.com/epfllibrary/" target="_blank" aria-label="Instagram">
- <img src="custom/41SLSP_EPF-prod/img/Instagram.png" />
- </a>
- <a href="https://twitter.com/epfllibrary" target="_blank" aria-label="Twitter">
- <img src="custom/41SLSP_EPF-prod/img/Twitter.png" />
- </a>
- <a href="https://www.youtube.com/channel/UCOylyf3oGEBGF-0gWYsBWqQ" target="_blank" aria-label="Youtube">
- <img src="custom/41SLSP_EPF-prod/img/Youtube.png" />
- </a>
- <a href="https://www.linkedin.com/showcase/10468051" target="_blank" aria-label="LinkedIn">
- <img src="custom/41SLSP_EPF-prod/img/LinkedIn.png" />
- </a>
- </p>
- </md-card-content>
- <md-card-content class="prm-primary-bg">
- <!-- <span class="md-headline">Description:</span> -->
- <p>Diese Seite ist der Zugangspunkt zu den Ressourcen der</p>
- <p><a class="ps_link" href="https://www.epfl.ch/campus/library/" target="_blank">Biblioth&egrave;que de l'EPFL</a></p>
- </md-card-content>
- </md-card>
- <md-card class="prm-primary-bg psfooter-legal" flex layout-gt-sm="row" layout-align-gt-sm="center start">
- <md-card-content class="prm-primary-bg" flex-gt-sm="70" layout-align-gt-sm="end">
- <span class="legal">Die EPFL Bibliothek ist Mitglied der <a href="https://slsp.ch" target="_blank" class="ps_link">Swiss Library Service Platform (SLSP) network</a></span>
- </md-card-content>
- <md-card-content class="prm-primary-bg" flex-gt-sm="15" layout-align-gt-sm="end">
- <a class="ps_link legal" href="https://slsp.ch/termsofuse" target="_blank">Rechtliche Informationen</a>
- </md-card-content>
- <md-card-content class="prm-primary-bg" flex-gt-sm="15" layout-align-gt-sm="end">
- <a class="ps_link legal" href="https://slsp.ch/en/dataprotection" target="_blank">Datenschutz</a>
- </md-card-content>
- </md-card>
- </div>
-</md-content>
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/html/homepage/homepage_de_old.html b/primo-explore/custom/41SLSP_HPH-EPFL/html/homepage/homepage_de_old.html
deleted file mode 100644
index ae92f88..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/html/homepage/homepage_de_old.html
+++ /dev/null
@@ -1,119 +0,0 @@
-<md-content>
-
- <div class="ps_content md-padding" layout-gt-sm="row" layout-align="start start">
- <div flex="0" flex-md="0" flex-lg="20" flex-xl="25"></div>
- <div flex-sm="100" flex-md="60" flex-lg="35" flex-xl="30" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h1 class="md-headline">Willkommen bei <b>swisscovery</b></h1>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p>
- Hier stehen Ihnen einfache und erweiterte Suchfunktionen f&uuml;r B&uuml;cher, E-Books, <a href="https://consortium.ch/lizenzen/" target="_blank">Zeitschriften</a>, <a href="https://consortium.ch/lizenzen/" target="_blank">Datenbanken</a> und weitere Medien zur Verf&uuml;gung.
- <br />
- <br />
- Bitte <a href="#" target="_blank">loggen Sie sich ein</a> und profitieren Sie von unseren SLSP-Services, wie z. B.:
- </p>
- <ul>
- <li>Erhalten Sie Zugang zu &uuml;ber <a href="https://slsp.ch/libraries" target="_blank">450 wissenschaftlichen Bibliotheken</a> in der Schweiz</li>
- <li>Nutzen Sie von Ihrer Bibliothek lizenzierte E-Medien und erhalten Sie Zugang zu freien Titeln</li>
- <li>Bestellen Sie Artikel bei Bibliotheken, direkt oder via SLSP Courier</li>
- <li>Verwalten Sie Ihr Konto, Ihre Ausleihen und Ihre Vormerkungen</li>
- </ul>
- <br />
- <p>
- <b>
- Registrierung
- </b>
- </p>
- <p>
- Um ein SLSP-Nutzer zu werden, registrieren Sie sich bitte auf unserer <a href="https://registration.slsp.ch" target="_blank">Registrierungsplattform</a>.
- </p>
- </md-card-content>
- </md-card>
-
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Search Scope</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <img width="100%" src="custom/41SLSP_EPF-prod/img/infographic_de.png" />
- </md-card-content>
- </md-card>
- </div>
- <div flex-sm="100" flex-md="40" flex-lg="20" flex-xl="20" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Library Search</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <div class="resp-container">
- <iframe class="resp-iframe" src="https://tube.switch.ch/embed/bff2c4a6" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
- </div>
- </md-card-content>
- </md-card>
- <div flex-gt-sm="40" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Fragen, Kommentare und Support</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p>
- Haben Sie Fragen oder m&ouml;chten Sie einen Kommentar anbringen? Haben Sie Probleme mit swisscovery? Dann <a href="mailto:?" target="_blank">kontaktieren Sie uns</a>! Wir freuen uns auf Ihre Nachricht.
- </p>
- </md-card-content>
- </md-card>
- </div>
- </div>
- </div>
-</md-content>
-<md-content>
- <div flex="100">
- <md-card class="prm-primary-bg psfooter" flex layout-gt-sm="row" layout-align="space-around start">
- <md-card-content class="prm-primary-bg">
- <span class="md-headline">Adresse:</span>
- <p>&#91;Name der Institution / Bibliothek&#93;</p>
- <p>&#91;Stra&szlig;enname und -nummer&#93;</p>
- <p>&#91;Postleitzahl und Stadt&#93;</p>
- </md-card-content>
- <md-card-content class="prm-primary-bg">
- <span class="md-headline">Kontakt:</span>
- <p>&#91;phone number&#93;</p>
- <p><a href="mailto:?">&#91;E-Mail-Adresse&#93;</a></p>
- <p><a href="#" target="_blank">&#91;website&#93;</a></p>
- <p>
- <md-button href="#" target="_blank" class="ps-button md-icon-button" aria-label="Youtube">
- <md-icon class="ps_icon" md-svg-icon="custom/41SLSP_EPF-prod/img/youtube.svg"></md-icon>
- </md-button>
- <md-button href="#" target="_blank" class="ps-button md-icon-button" aria-label="LinkedIn">
- <md-icon class="ps_icon" md-svg-icon="custom/41SLSP_EPF-prod/img/linkedin.svg"></md-icon>
- </md-button>
- </p>
- </md-card-content>
- <md-card-content class="prm-primary-bg">
- <span class="md-headline">Beschreibung:</span>
- <p>Diese Seite ist der Zugangspunkt zu den Ressourcen der</p>
- <p><a class="ps_link" href="#" target="_blank">&#91;Name der Bibliothek / die folgenden Bibliotheken&#93;</a></p>
- </md-card-content>
- </md-card>
- <md-card class="prm-primary-bg psfooter-legal" flex layout-gt-sm="row" layout-align-gt-sm="center start">
- <md-card-content class="prm-primary-bg" flex-gt-sm="70" layout-align-gt-sm="end">
- <span class="legal">Der &#91;Name der Institution / Bibliothek/ies&#93; ist Mitglied der <a href="https://slsp.ch" target="_blank" class="ps_link">Swiss Library Service Platform (SLSP) network</a></span>
- </md-card-content>
- <md-card-content class="prm-primary-bg" flex-gt-sm="15" layout-align-gt-sm="end">
- <a class="ps_link legal" href="https://slsp.ch/termsofuse" target="_blank">Rechtliche Informationen</a>
- </md-card-content>
- <md-card-content class="prm-primary-bg" flex-gt-sm="15" layout-align-gt-sm="end">
- <a class="ps_link legal" href="https://slsp.ch/en/dataprotection" target="_blank">Datenschutz</a>
- </md-card-content>
- </md-card>
- </div>
-</md-content>
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/html/homepage/homepage_en.html b/primo-explore/custom/41SLSP_HPH-EPFL/html/homepage/homepage_en.html
deleted file mode 100644
index 8e7d7f6..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/html/homepage/homepage_en.html
+++ /dev/null
@@ -1,137 +0,0 @@
-<md-content layout-xs="column" layout="row" class="_md md-primoExplore-theme layout-xs-column layout-row epfl-row">
- <div flex-sm="100" flex-md="60" flex-lg="35" flex-xl="30" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h1 class="md-headline">Welcome to <b>BEAST</b></h1>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p>The <b>BEAST</b> catalog (<b>B</b>ooks, <b>E</b>books and <b>A</b>rticles <b>S</b>earch <b>T</b>ool) allows you to search through all EPFL Library documentary resources (books and ebooks, online and printed journals and articles, EPFL theses, DVDs, video games, etc.), as well as through the collections of the other libraries of <a href="https://slsp.ch">swisscovery</a> network.</p>
- </md-card-content>
- </md-card>
- </div>
- <div flex-sm="100" flex-md="40" flex-lg="20" flex-xl="20" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">swisscovery Registration</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p>The NEBIS reader accounts have not been migrated, which means that all users must create a new account with swisscovery.</p>
- <p><b><a href="https://registration.slsp.ch/?iz=epfl&lang=en" class="puce"><span>&#x25b6;&nbsp;&nbsp;</span><u>Create an swisscovery account</u></a></b></p>
- <p><b><a href="https://slsp-epfl.primo.exlibrisgroup.com/discovery/account?vid=41SLSP_EPF:prod" class="puce"><span>&#x25b6;&nbsp;&nbsp;</span><u>View your swisscovery account</u></a></b></p>
- </md-card-content>
- </md-card>
- </div>
-</md-content>
-<md-content layout-xs="column" layout="row" class="_md md-primoExplore-theme layout-xs-column layout-row epfl-row">
- <div flex-sm="100" flex-md="60" flex-lg="35" flex-xl="30" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Services</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p>Please <a href="https://registration.slsp.ch?iz=epfl&lang=en" target="_blank">register</a> for swisscovery network to benefit from services such as:</p>
- <ul>
- <li>Access to the collections of more than <a href="https://slsp.ch/libraries" target="_blank">450 scientific libraries</a> in Switzerland</li>
- <li>Use electronic resources available through EPFL Library license</li>
- <li>Order documents from other libraries (free of charge if picked up at the EPFL Library)</li>
- <li>Access your reader account, loans and reservations</li>
- </ul>
- </md-card-content>
- </md-card>
- </div>
- <div flex-sm="100" flex-md="40" flex-lg="20" flex-xl="20" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Need some help?</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p><a href="https://www.epfl.ch/campus/library/slsp-network-and-swisscovery-opening/" class="puce"><span><md-icon md-svg-icon="primo-ui:help-circle-outline" alt="" class="md-primoExplore-theme" aria-hidden="true"></md-icon>&nbsp;&nbsp;</span><span><u>FAQ</u></span></a></p>
- <p>
- <a href="mailto:library@epfl.ch" class="puce"><span>
- <prm-icon aria-label="Cliquer pour envoyer un email à un bibliothécaire" class="md-icon-button-custom" icon-type="svg" svg-icon-set="primo-actions" icon-definition="email"></prm-icon>&nbsp;&nbsp;
- </span><span><u>library@epfl.ch</u></span></a>
- </p>
- <p>
- <a href="tel:+41 21 693 2156" class="puce"><span><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" id="svg8" version="1.1" viewBox="0 0 5.8208332 4.7625001" height="18" width="22">
- <defs id="defs2" />
- <metadata id="metadata5">
- <rdf:RDF>
- <cc:Work rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title></dc:title>
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g transform="translate(0,-292.23748)" id="layer1">
- <path id="path3724"
- d="m 1.055825,292.26314 c 0,0 0.9625162,0.58692 0.9450235,1.05996 -0.013351,0.361 -0.7790059,0.75345 -0.7790059,0.75345 0,0 0.7151529,1.2643 2.0432941,1.87728 0,0 0.2369017,-0.82813 0.6129882,-0.94501 0.3442827,-0.10707 1.1876644,0.80455 1.1876644,0.80455 -0.088535,0.46531 -0.6221609,1.20306 -1.4430764,1.20042 -1.2544625,-0.003 -3.61407604,-2.55411 -3.56299368,-3.5119 0.05108229,-0.9578 0.6896117,-1.22598 0.99610578,-1.23875 z"
- style="fill-opacity:1;stroke:none;stroke-width:0.30815426px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- </g>
- </svg>&nbsp;&nbsp;</span><span><u>+41 21 693 21 56</u></span></a>
- </p>
- </md-card-content>
- </md-card>
- </div>
-</md-content>
-<md-content>
- <div flex="100">
- <md-card class="prm-primary-bg psfooter" flex layout-gt-sm="row" layout-align="space-around start">
- <md-card-content class="prm-primary-bg">
- <!-- <span class="md-headline">Adresse:</span> -->
- <p>EPFL Biblioth&egrave;que</p>
- <p>Rolex Learning Center</p>
- <p>Station 20</p>
- <p>CH-1015 Lausanne</p>
- </md-card-content>
- <md-card-content class="prm-primary-bg">
- <!-- <span class="md-headline">Contact:</span> -->
- <p><a href="tel:+41216932156">+41 21 693 21 56</a></p>
- <p><a href="mailto:library@epfl.ch">library@epfl.ch</a></p>
- <p><a href="https://www.epfl.ch/campus/library/" target="_blank">https://www.epfl.ch/campus/library/</a></p>
- <p class="epfl-social">
- <a href="https://www.facebook.com/EPFLlibrary/" target="_blank" aria-label="Facebook">
- <img src="custom/41SLSP_EPF-prod/img/facebook.png" />
- </a>
- <a href="https://www.instagram.com/epfllibrary/" target="_blank" aria-label="Instagram">
- <img src="custom/41SLSP_EPF-prod/img/Instagram.png" />
- </a>
- <a href="https://twitter.com/epfllibrary" target="_blank" aria-label="Twitter">
- <img src="custom/41SLSP_EPF-prod/img/Twitter.png" />
- </a>
- <a href="https://www.youtube.com/channel/UCOylyf3oGEBGF-0gWYsBWqQ" target="_blank" aria-label="Youtube">
- <img src="custom/41SLSP_EPF-prod/img/Youtube.png" />
- </a>
- <a href="https://www.linkedin.com/showcase/10468051" target="_blank" aria-label="LinkedIn">
- <img src="custom/41SLSP_EPF-prod/img/LinkedIn.png" />
- </a>
- </p>
- </md-card-content>
- <md-card-content class="prm-primary-bg">
- <!-- <span class="md-headline">Description:</span> -->
- <p>This page is the access point to the resources of the</p>
- <p><a class="ps_link" href="https://www.epfl.ch/campus/library/" target="_blank">EPFL Library</a></p>
- </md-card-content>
- </md-card>
- <md-card class="prm-primary-bg psfooter-legal" flex layout-gt-sm="row" layout-align-gt-sm="center start">
- <md-card-content class="prm-primary-bg" flex-gt-sm="70" layout-align-gt-sm="end">
- <span class="legal">The EPFL library is member of the <a href="https://slsp.ch" target="_blank" class="ps_link">Swiss Library Service Platform (SLSP) network</a></span>
- </md-card-content>
- <md-card-content class="prm-primary-bg" flex-gt-sm="15" layout-align-gt-sm="end">
- <a class="ps_link legal" href="https://slsp.ch/termsofuse" target="_blank">Legal Information</a>
- </md-card-content>
- <md-card-content class="prm-primary-bg" flex-gt-sm="15" layout-align-gt-sm="end">
- <a class="ps_link legal" href="https://slsp.ch/en/dataprotection" target="_blank">Data Protection</a>
- </md-card-content>
- </md-card>
- </div>
-</md-content>
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/html/homepage/homepage_en_old.html b/primo-explore/custom/41SLSP_HPH-EPFL/html/homepage/homepage_en_old.html
deleted file mode 100644
index 7aa7ee5..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/html/homepage/homepage_en_old.html
+++ /dev/null
@@ -1,119 +0,0 @@
-<md-content>
-
- <div class="ps_content md-padding" layout-gt-sm="row" layout-align="start start">
- <div flex="0" flex-md="0" flex-lg="20" flex-xl="25"></div>
- <div flex-sm="100" flex-md="60" flex-lg="35" flex-xl="30" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h1 class="md-headline">Welcome to <b>swisscovery</b></h1>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p>
- Here you can perform simple and advanced searches for books, e-books, <a href="https://consortium.ch/lizenzen/?lang=en" target="_blank">journals</a>, <a href="https://consortium.ch/lizenzen/?lang=en" target="_blank">databases</a> and other media.
- <br />
- <br />
- Please <a href="#" target="_blank">sign in</a> in order profit from our SLSP services such as:
- </p>
- <ul>
- <li>Get access to more than <a href="https://slsp.ch/libraries" target="_blank">450 scientific libraries</a> in Switzerland</li>
- <li>Use e-media licensed by your library and access free titles</li>
- <li>Request books from libraries, directly or via SLSP courier</li>
- <li>Manage your account, your loans and your requests</li>
- </ul>
- <br />
- <p>
- <b>
- Registration
- </b>
- </p>
- <p>
- To become a SLSP user please register at our <a href="https://registration.slsp.ch" target="_blank">registration platform</a>.
- </p>
- </md-card-content>
- </md-card>
-
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Search Scope</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <img width="100%" src="custom/41SLSP_EPF-prod/img/infographic_en.png" />
- </md-card-content>
- </md-card>
- </div>
- <div flex-sm="100" flex-md="40" flex-lg="20" flex-xl="20" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Library Search</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <div class="resp-container">
- <iframe class="resp-iframe" src="https://tube.switch.ch/embed/bff2c4a6" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
- </div>
- </md-card-content>
- </md-card>
- <div flex-gt-sm="40" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Questions, comments and support</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p>
- Do you have any questions or comments? Are you experiencing problems with swisscovery? Don't hesitate to <a href="mailto:?" target="_blank">contact us</a>! We are looking forward to reading your message.
- </p>
- </md-card-content>
- </md-card>
- </div>
- </div>
- </div>
-</md-content>
-<md-content>
- <div flex="100">
- <md-card class="prm-primary-bg psfooter" flex layout-gt-sm="row" layout-align="space-around start">
- <md-card-content class="prm-primary-bg">
- <span class="md-headline">Address:</span>
- <p>&#91;name of the Institution / Library&#93;</p>
- <p>&#91;street name and number&#93;</p>
- <p>&#91;post code and city&#93;</p>
- </md-card-content>
- <md-card-content class="prm-primary-bg">
- <span class="md-headline">Contact us:</span>
- <p>&#91;phone number&#93;</p>
- <p><a href="mailto:?">&#91;email address&#93;</a></p>
- <p><a href="#" target="_blank">&#91;website&#93;</a></p>
- <p>
- <md-button href="#" target="_blank" class="ps-button md-icon-button" aria-label="Youtube">
- <md-icon class="ps_icon" md-svg-icon="custom/41SLSP_EPF-prod/img/youtube.svg"></md-icon>
- </md-button>
- <md-button href="#" target="_blank" class="ps-button md-icon-button" aria-label="LinkedIn">
- <md-icon class="ps_icon" md-svg-icon="custom/41SLSP_EPF-prod/img/linkedin.svg"></md-icon>
- </md-button>
- </p>
- </md-card-content>
- <md-card-content class="prm-primary-bg">
- <span class="md-headline">Description:</span>
- <p>This page is the access point to the resources of the</p>
- <p><a class="ps_link" href="#" target="_blank">&#91;name of the library / the following libraries&#93;</a></p>
- </md-card-content>
- </md-card>
- <md-card class="prm-primary-bg psfooter-legal" flex layout-gt-sm="row" layout-align-gt-sm="center start">
- <md-card-content class="prm-primary-bg" flex-gt-sm="70" layout-align-gt-sm="end">
- <span class="legal">The &#91;Name of the Institution / Library/ies&#93; is member of the <a href="https://slsp.ch" target="_blank" class="ps_link">Swiss Library Service Platform (SLSP) network</a></span>
- </md-card-content>
- <md-card-content class="prm-primary-bg" flex-gt-sm="15" layout-align-gt-sm="end">
- <a class="ps_link legal" href="https://slsp.ch/termsofuse" target="_blank">Legal Information</a>
- </md-card-content>
- <md-card-content class="prm-primary-bg" flex-gt-sm="15" layout-align-gt-sm="end">
- <a class="ps_link legal" href="https://slsp.ch/en/dataprotection" target="_blank">Data Protection</a>
- </md-card-content>
- </md-card>
- </div>
-</md-content>
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/html/homepage/homepage_fr.html b/primo-explore/custom/41SLSP_HPH-EPFL/html/homepage/homepage_fr.html
deleted file mode 100644
index 4436d90..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/html/homepage/homepage_fr.html
+++ /dev/null
@@ -1,137 +0,0 @@
-<md-content layout-xs="column" layout="row" class="_md md-primoExplore-theme layout-xs-column layout-row epfl-row">
- <div flex-sm="100" flex-md="60" flex-lg="35" flex-xl="30" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h1 class="md-headline">Bienvenue sur <b>BEAST</b></h1>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p><b>BEAST</b> - <b>B</b>ooks, <b>E</b>books and <b>A</b>rticles <b>S</b>earch <b>T</b>ool - vous donne acc&egrave;s &agrave; l’ensemble des ressources documentatires de la Biblioth&egrave;que de l'EPFL (livres, revues et articles imprim&eacute;s et &eacute;lectroniques, th&egrave;ses EPFL, DVDs, jeux vid&eacute;o, etc.), ainsi qu'aux collections des autres biblioth&egrave;ques du r&eacute;seau <a href="https://slsp.ch/fr">swisscovery</a>.</p>
- </md-card-content>
- </md-card>
- </div>
- <div flex-sm="100" flex-md="40" flex-lg="20" flex-xl="20" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Inscription swisscovery</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p>Les comptes lecteurs n'ont pas &eacute;t&eacute; migr&eacute;s, ce qui signifie que tous les utilisateurs doivent se cr&eacute;er un nouveau compte aupr&egrave;s de swisscovery.</p>
- <p><b><a href="https://registration.slsp.ch/?iz=epfl&lang=fr" class="puce"><span>&#x25b6;&nbsp;&nbsp;</span><u>Cr&eacute;er un compte swisscovery</u></a></b></p>
- <p><b><a href="https://slsp-epfl.primo.exlibrisgroup.com/discovery/account?vid=41SLSP_EPF:prod" class="puce"><span>&#x25b6;&nbsp;&nbsp;</span><u>Voir votre compte swisscovery</u></a></b></p>
- </md-card-content>
- </md-card>
- </div>
-</md-content>
-<md-content layout-xs="column" layout="row" class="_md md-primoExplore-theme layout-xs-column layout-row epfl-row">
- <div flex-sm="100" flex-md="60" flex-lg="35" flex-xl="30" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Services</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p>Veuillez vous <a href="https://registration.slsp.ch?iz=epfl&lang=fr" target="_blank">inscrire</a> pour b&eacute;n&eacute;ficier de nombreux services tels que&nbsp;:</p>
- <ul>
- <li>Acc&eacute;der &agrave; plus de <a href="https://slsp.ch/libraries" target="_blank">450 biblioth&egrave;ques scientifiques</a> en Suisse</li>
- <li>Utiliser les m&eacute;dias &eacute;lectroniques sous licence de la Bibliothèque de l'EPFL et acc&eacute;der &agrave; des titres gratuits</li>
- <li>Commander des documents provenant d'autres biblioth&egrave;ques (service gratuit si retrait sur place)</li>
- <li>G&eacute;rer votre compte, vos pr&ecirc;ts et vos demandes</li>
- </ul>
- </md-card-content>
- </md-card>
- </div>
- <div flex-sm="100" flex-md="40" flex-lg="20" flex-xl="20" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Besoin d'aide ?</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p><a href="https://www.epfl.ch/campus/library/fr/ouverture-du-reseau-slsp-et-de-swisscovery/" class="puce"><span><md-icon md-svg-icon="primo-ui:help-circle-outline" alt="" class="md-primoExplore-theme" aria-hidden="true"></md-icon>&nbsp;&nbsp;</span><span><u>FAQ</u></span></a></p>
- <p>
- <a href="mailto:library@epfl.ch" class="puce"><span>
- <prm-icon aria-label="Cliquer pour envoyer un email à un bibliothécaire" class="md-icon-button-custom" icon-type="svg" svg-icon-set="primo-actions" icon-definition="email"></prm-icon>&nbsp;&nbsp;
- </span><span><u>library@epfl.ch</u></span></a>
- </p>
- <p>
- <a href="tel:+41 21 693 2156" class="puce"><span><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" id="svg8" version="1.1" viewBox="0 0 5.8208332 4.7625001" height="18" width="22">
- <defs id="defs2" />
- <metadata id="metadata5">
- <rdf:RDF>
- <cc:Work rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title></dc:title>
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g transform="translate(0,-292.23748)" id="layer1">
- <path id="path3724"
- d="m 1.055825,292.26314 c 0,0 0.9625162,0.58692 0.9450235,1.05996 -0.013351,0.361 -0.7790059,0.75345 -0.7790059,0.75345 0,0 0.7151529,1.2643 2.0432941,1.87728 0,0 0.2369017,-0.82813 0.6129882,-0.94501 0.3442827,-0.10707 1.1876644,0.80455 1.1876644,0.80455 -0.088535,0.46531 -0.6221609,1.20306 -1.4430764,1.20042 -1.2544625,-0.003 -3.61407604,-2.55411 -3.56299368,-3.5119 0.05108229,-0.9578 0.6896117,-1.22598 0.99610578,-1.23875 z"
- style="fill-opacity:1;stroke:none;stroke-width:0.30815426px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- </g>
- </svg>&nbsp;&nbsp;</span><span><u>+41 21 693 21 56</u></span></a>
- </p>
- </md-card-content>
- </md-card>
- </div>
-</md-content>
-<md-content>
- <div flex="100">
- <md-card class="prm-primary-bg psfooter" flex layout-gt-sm="row" layout-align="space-around start">
- <md-card-content class="prm-primary-bg">
- <!-- <span class="md-headline">Adresse:</span> -->
- <p>EPFL Biblioth&egrave;que</p>
- <p>Rolex Learning Center</p>
- <p>Station 20</p>
- <p>CH-1015 Lausanne</p>
- </md-card-content>
- <md-card-content class="prm-primary-bg">
- <!-- <span class="md-headline">Contact:</span> -->
- <p><a href="tel:+41216932156">+41 21 693 21 56</a></p>
- <p><a href="mailto:library@epfl.ch">library@epfl.ch</a></p>
- <p><a href="https://go.epfl.ch/bibliotheque" target="_blank">https://go.epfl.ch/bibliotheque</a></p>
- <p class="epfl-social">
- <a href="https://www.facebook.com/EPFLlibrary/" target="_blank" aria-label="Facebook">
- <img src="custom/41SLSP_EPF-prod/img/facebook.png" />
- </a>
- <a href="https://www.instagram.com/epfllibrary/" target="_blank" aria-label="Instagram">
- <img src="custom/41SLSP_EPF-prod/img/Instagram.png" />
- </a>
- <a href="https://twitter.com/epfllibrary" target="_blank" aria-label="Twitter">
- <img src="custom/41SLSP_EPF-prod/img/Twitter.png" />
- </a>
- <a href="https://www.youtube.com/channel/UCOylyf3oGEBGF-0gWYsBWqQ" target="_blank" aria-label="Youtube">
- <img src="custom/41SLSP_EPF-prod/img/Youtube.png" />
- </a>
- <a href="https://www.linkedin.com/showcase/10468051" target="_blank" aria-label="LinkedIn">
- <img src="custom/41SLSP_EPF-prod/img/LinkedIn.png" />
- </a>
- </p>
- </md-card-content>
- <md-card-content class="prm-primary-bg">
- <!-- <span class="md-headline">Description:</span> -->
- <p>Cette page est le point d&rsquo;acc&egrave;s aux ressources de</p>
- <p><a class="ps_link" href="https://go.epfl.ch/bibliotheque" target="_blank">La Biblioth&egrave;que de l'EPFL</a></p>
- </md-card-content>
- </md-card>
- <md-card class="prm-primary-bg psfooter-legal" flex layout-gt-sm="row" layout-align-gt-sm="center start">
- <md-card-content class="prm-primary-bg" flex-gt-sm="70" layout-align-gt-sm="end">
- <span class="legal">La Biblioth&egrave;que de l'EPFL est membre du <a href="https://slsp.ch" target="_blank" class="ps_link">Swiss Library Service Platform (SLSP) network</a></span>
- </md-card-content>
- <md-card-content class="prm-primary-bg" flex-gt-sm="15" layout-align-gt-sm="end">
- <a class="ps_link legal" href="https://slsp.ch/termsofuse" target="_blank">Informations juridiques</a>
- </md-card-content>
- <md-card-content class="prm-primary-bg" flex-gt-sm="15" layout-align-gt-sm="end">
- <a class="ps_link legal" href="https://slsp.ch/en/dataprotection" target="_blank">Protection des donn&eacute;es</a>
- </md-card-content>
- </md-card>
- </div>
-</md-content>
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/html/homepage/homepage_it.html b/primo-explore/custom/41SLSP_HPH-EPFL/html/homepage/homepage_it.html
deleted file mode 100644
index 7e2c9c3..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/html/homepage/homepage_it.html
+++ /dev/null
@@ -1,137 +0,0 @@
-<md-content layout-xs="column" layout="row" class="_md md-primoExplore-theme layout-xs-column layout-row epfl-row">
- <div flex-sm="100" flex-md="60" flex-lg="35" flex-xl="30" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h1 class="md-headline">Benvenuti su <b>BEAST</b></h1>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p>Il catalogo <b>BEAST</b> (<b>B</b>ooks, <b>E</b>books and <b>A</b>rticles <b>S</b>earch <b>T</b>ool) vi permette di accedere all’insieme delle risorse documentarie della Biblioteca dell’EPFL (libri, riviste e articoli in formato cartaceo ed elettronico, tesi dell’EPFL, DVD, videogiochi, ecc.) cosi come alle collezioni delle altre biblioteche della rete <a href="https://slsp.ch/it">swisscovery</a>.</p>
- </md-card-content>
- </md-card>
- </div>
- <div flex-sm="100" flex-md="40" flex-lg="20" flex-xl="20" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Iscrizione a swisscovery</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p>Gli account utente NEBIS non sono stati migrati sulla nuova piattaforma. Tutti i lettori dovranno quindi crearsi un nuovo account swisscovery. </p>
- <p><b><a href="https://registration.slsp.ch/?iz=epfl&lang=it" class="puce"><span>&#x25b6;&nbsp;&nbsp;</span><u>Creare un account swisscovery</u></a></b></p>
- <p><b><a href="https://slsp-epfl.primo.exlibrisgroup.com/discovery/account?vid=41SLSP_EPF:prod" class="puce"><span>&#x25b6;&nbsp;&nbsp;</span><u>Visualizza il tuo conto swisscovery</u></a></b></p>
- </md-card-content>
- </md-card>
- </div>
-</md-content>
-<md-content layout-xs="column" layout="row" class="_md md-primoExplore-theme layout-xs-column layout-row epfl-row">
- <div flex-sm="100" flex-md="60" flex-lg="35" flex-xl="30" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Servizi</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p>&Egrave; necessario <a href="https://registration.slsp.ch?iz=epfl&lang=it" target="_blank">iscriversi</a> per usfruire dei servizi della rete swisscovery, come ad esempio:</p>
- <ul>
- <li>Accedere alle collezioni di oltre <a href="https://slsp.ch/libraries" target="_blank">450 biblioteche</a> scientifiche in Svizzera</li>
- <li>Utilizzare le risorse elettroniche in abbonamento alla Biblioteca dell’EPFL</li>
- <li>Ordinare dei documenti provenienti dalle altre biblioteche (il servizio è gratuito se i documenti vengono ritirati alla Biblioteca dell’EPFL)</li>
- <li>Gestire il vostro account utente, i vostri prestiti e le vostre prenotazioni</li>
- </ul>
- </md-card-content>
- </md-card>
- </div>
- <div flex-sm="100" flex-md="40" flex-lg="20" flex-xl="20" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Bisogno d’aiuto?</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p><a href="https://www.epfl.ch/campus/library/slsp-network-and-swisscovery-opening/" class="puce"><span><md-icon md-svg-icon="primo-ui:help-circle-outline" alt="" class="md-primoExplore-theme" aria-hidden="true"></md-icon>&nbsp;&nbsp;</span><span><u>FAQ</u></span></a></p>
- <p>
- <a href="mailto:library@epfl.ch" class="puce"><span>
- <prm-icon aria-label="Cliquer pour envoyer un email à un bibliothécaire" class="md-icon-button-custom" icon-type="svg" svg-icon-set="primo-actions" icon-definition="email"></prm-icon>&nbsp;&nbsp;
- </span><span><u>library@epfl.ch</u></span></a>
- </p>
- <p>
- <a href="tel:+41 21 693 2156" class="puce"><span><svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" id="svg8" version="1.1" viewBox="0 0 5.8208332 4.7625001" height="18" width="22">
- <defs id="defs2" />
- <metadata id="metadata5">
- <rdf:RDF>
- <cc:Work rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- <dc:title></dc:title>
- </cc:Work>
- </rdf:RDF>
- </metadata>
- <g transform="translate(0,-292.23748)" id="layer1">
- <path id="path3724"
- d="m 1.055825,292.26314 c 0,0 0.9625162,0.58692 0.9450235,1.05996 -0.013351,0.361 -0.7790059,0.75345 -0.7790059,0.75345 0,0 0.7151529,1.2643 2.0432941,1.87728 0,0 0.2369017,-0.82813 0.6129882,-0.94501 0.3442827,-0.10707 1.1876644,0.80455 1.1876644,0.80455 -0.088535,0.46531 -0.6221609,1.20306 -1.4430764,1.20042 -1.2544625,-0.003 -3.61407604,-2.55411 -3.56299368,-3.5119 0.05108229,-0.9578 0.6896117,-1.22598 0.99610578,-1.23875 z"
- style="fill-opacity:1;stroke:none;stroke-width:0.30815426px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
- </g>
- </svg>&nbsp;&nbsp;</span><span><u>+41 21 693 21 56</u></span></a>
- </p>
- </md-card-content>
- </md-card>
- </div>
-</md-content>
-<md-content>
- <div flex="100">
- <md-card class="prm-primary-bg psfooter" flex layout-gt-sm="row" layout-align="space-around start">
- <md-card-content class="prm-primary-bg">
- <!-- <span class="md-headline">Adresse:</span> -->
- <p>EPFL Biblioth&egrave;que</p>
- <p>Rolex Learning Center</p>
- <p>Station 20</p>
- <p>CH-1015 Lausanne</p>
- </md-card-content>
- <md-card-content class="prm-primary-bg">
- <!-- <span class="md-headline">Contact:</span> -->
- <p><a href="tel:+41216932156">+41 21 693 21 56</a></p>
- <p><a href="mailto:library@epfl.ch">library@epfl.ch</a></p>
- <p><a href="https://www.epfl.ch/campus/library/" target="_blank">https://www.epfl.ch/campus/library/</a></p>
- <p class="epfl-social">
- <a href="https://www.facebook.com/EPFLlibrary/" target="_blank" aria-label="Facebook">
- <img src="custom/41SLSP_EPF-prod/img/facebook.png" />
- </a>
- <a href="https://www.instagram.com/epfllibrary/" target="_blank" aria-label="Instagram">
- <img src="custom/41SLSP_EPF-prod/img/Instagram.png" />
- </a>
- <a href="https://twitter.com/epfllibrary" target="_blank" aria-label="Twitter">
- <img src="custom/41SLSP_EPF-prod/img/Twitter.png" />
- </a>
- <a href="https://www.youtube.com/channel/UCOylyf3oGEBGF-0gWYsBWqQ" target="_blank" aria-label="Youtube">
- <img src="custom/41SLSP_EPF-prod/img/Youtube.png" />
- </a>
- <a href="https://www.linkedin.com/showcase/10468051" target="_blank" aria-label="LinkedIn">
- <img src="custom/41SLSP_EPF-prod/img/LinkedIn.png" />
- </a>
- </p>
- </md-card-content>
- <md-card-content class="prm-primary-bg">
- <!-- <span class="md-headline">Description:</span> -->
- <p>Questa pagina &egrave; il punto di accesso per le risorse della</p>
- <p><a class="ps_link" href="https://www.epfl.ch/campus/library/" target="_blank">Biblioth&egrave;que de l'EPFL</a></p>
- </md-card-content>
- </md-card>
- <md-card class="prm-primary-bg psfooter-legal" flex layout-gt-sm="row" layout-align-gt-sm="center start">
- <md-card-content class="prm-primary-bg" flex-gt-sm="70" layout-align-gt-sm="end">
- <span class="legal">La Bibliothèque de l'EPFL &egrave; membro del <a href="https://slsp.ch" target="_blank" class="ps_link">Swiss Library Service Platform (SLSP) network</a></span>
- </md-card-content>
- <md-card-content class="prm-primary-bg" flex-gt-sm="15" layout-align-gt-sm="end">
- <a class="ps_link legal" href="https://slsp.ch/termsofuse" target="_blank">Informazioni legali</a>
- </md-card-content>
- <md-card-content class="prm-primary-bg" flex-gt-sm="15" layout-align-gt-sm="end">
- <a class="ps_link legal" href="https://slsp.ch/en/dataprotection" target="_blank">Protezione dei dati</a>
- </md-card-content>
- </md-card>
- </div>
-</md-content>
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/html/homepage/homepage_it_old.html b/primo-explore/custom/41SLSP_HPH-EPFL/html/homepage/homepage_it_old.html
deleted file mode 100644
index 4fce2fb..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/html/homepage/homepage_it_old.html
+++ /dev/null
@@ -1,119 +0,0 @@
-<md-content>
-
- <div class="ps_content md-padding" layout-gt-sm="row" layout-align="start start">
- <div flex="0" flex-md="0" flex-lg="20" flex-xl="25"></div>
- <div flex-sm="100" flex-md="60" flex-lg="35" flex-xl="30" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h1 class="md-headline">Benvenuti in <b>swisscovery</b></h1>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p>
- Qui potete effettuare ricerche semplici e avanzate di libri, e-book, <a href="https://consortium.ch/lizenzen/?lang=it" target="_blank">periodici</a>, <a href="https://consortium.ch/lizenzen/?lang=it" target="_blank">banche dati</a> e altri media.
- <br />
- <br />
- La <a href="#" target="_blank">registrazione</a> permette di usufruire dei servizi SLSP come:
- </p>
- <ul>
- <li>L&rsquo;accesso a oltre <a href="https://slsp.ch/libraries" target="_blank">450 biblioteche scientifiche</a> in Svizzera</li>
- <li>L&rsquo;utilizzo di risorse elettroniche concesse in licenza dalla vostra biblioteca e l&rsquo;accesso a titoli gratuiti</li>
- <li>La richiesta di opere alle biblioteche, direttamente o tramite SLSP Courier</li>
- <li>La gestione del vostro account, dei prestiti e delle vostre richieste</li>
- </ul>
- <br />
- <p>
- <b>
- Registrazione
- </b>
- </p>
- <p>
- Per diventare un utente SLSP &egrave; necessario registrarsi sulla nostra <a href="https://registration.slsp.ch" target="_blank">piattaforma di registrazione</a>.
- </p>
- </md-card-content>
- </md-card>
-
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Search Scope</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <img width="100%" src="custom/41SLSP_EPF-prod/img/infographic_it.png" />
- </md-card-content>
- </md-card>
- </div>
- <div flex-sm="100" flex-md="40" flex-lg="20" flex-xl="20" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Library Search</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <div class="resp-container">
- <iframe class="resp-iframe" src="https://tube.switch.ch/embed/bff2c4a6" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
- </div>
- </md-card-content>
- </md-card>
- <div flex-gt-sm="40" flex="100" layout="column">
- <md-card class="cardbox default-card">
- <md-card-title>
- <md-card-title-text>
- <h2 class="md-headline">Domande, commenti e supporto</h2>
- </md-card-title-text>
- </md-card-title>
- <md-card-content>
- <p>
- Avete domande o commenti? Avete problemi con swisscovery? Non esitate a <a href="mailto:?" target="_blank">contattarci</a>! Saremo lieti di ricevere il vostro messaggio.
- </p>
- </md-card-content>
- </md-card>
- </div>
- </div>
- </div>
-</md-content>
-<md-content>
- <div flex="100">
- <md-card class="prm-primary-bg psfooter" flex layout-gt-sm="row" layout-align="space-around start">
- <md-card-content class="prm-primary-bg">
- <span class="md-headline">Indirizzo:</span>
- <p>&#91;nome dell&rsquo;istituzione / biblioteca</p>
- <p>&#91;numero e nome della via&#93;</p>
- <p>&#91;codice postale e citt&agrave;&#93;</p>
- </md-card-content>
- <md-card-content class="prm-primary-bg">
- <span class="md-headline">Contatto:</span>
- <p>&#91;numero di telefono&#93;</p>
- <p><a href="mailto:?">&#91;indirizzo email&#93;</a></p>
- <p><a href="#" target="_blank">&#91;sito internet&#93;</a></p>
- <p>
- <md-button href="#" target="_blank" class="ps-button md-icon-button" aria-label="Youtube">
- <md-icon class="ps_icon" md-svg-icon="custom/41SLSP_EPF-prod/img/youtube.svg"></md-icon>
- </md-button>
- <md-button href="#" target="_blank" class="ps-button md-icon-button" aria-label="LinkedIn">
- <md-icon class="ps_icon" md-svg-icon="custom/41SLSP_EPF-prod/img/linkedin.svg"></md-icon>
- </md-button>
- </p>
- </md-card-content>
- <md-card-content class="prm-primary-bg">
- <span class="md-headline">Descrizione:</span>
- <p>Questa pagina &egrave; il punto di accesso per le risorse della</p>
- <p><a class="ps_link" href="#" target="_blank">&#91;nome della biblioteca / delle seguenti biblioteche&#93;</a></p>
- </md-card-content>
- </md-card>
- <md-card class="prm-primary-bg psfooter-legal" flex layout-gt-sm="row" layout-align-gt-sm="center start">
- <md-card-content class="prm-primary-bg" flex-gt-sm="70" layout-align-gt-sm="end">
- <span class="legal">La &#91;Nome dell&rsquo;istituzione / biblioteca/che&#93; &egrave; membro del <a href="https://slsp.ch" target="_blank" class="ps_link">Swiss Library Service Platform (SLSP) network</a></span>
- </md-card-content>
- <md-card-content class="prm-primary-bg" flex-gt-sm="15" layout-align-gt-sm="end">
- <a class="ps_link legal" href="https://slsp.ch/termsofuse" target="_blank">Informazioni legali</a>
- </md-card-content>
- <md-card-content class="prm-primary-bg" flex-gt-sm="15" layout-align-gt-sm="end">
- <a class="ps_link legal" href="https://slsp.ch/en/dataprotection" target="_blank">Protezione dei dati</a>
- </md-card-content>
- </md-card>
- </div>
-</md-content>
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/Infographic.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/Infographic.png
deleted file mode 100644
index b8d2357..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/Infographic.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/Instagram.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/Instagram.png
deleted file mode 100644
index 222110a..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/Instagram.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/LinkedIn.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/LinkedIn.png
deleted file mode 100644
index 7f5d23a..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/LinkedIn.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/README.md b/primo-explore/custom/41SLSP_HPH-EPFL/img/README.md
deleted file mode 100644
index bdafeb3..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/img/README.md
+++ /dev/null
@@ -1,20 +0,0 @@
-# The Primo New UI Customization Workflow Development Environment
-
-
-##images documentation
-
- - Primo allows the customization of the following images;
- 1. Library Logo - just place a file named `library-logo.png` in this location
- 2. Library favicon - just place a file named `favicon.ico` in this location
- 3. Default Resource Types - just place a files following this convention :
- `icon_<resource_type>.png`
-
- For Example:
- `icon_book.png`
-
-
-
-
-
-
-
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/Twitter.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/Twitter.png
deleted file mode 100644
index 835fb9f..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/Twitter.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/Youtube.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/Youtube.png
deleted file mode 100644
index cd1acb1..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/Youtube.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/blog.svg b/primo-explore/custom/41SLSP_HPH-EPFL/img/blog.svg
deleted file mode 100644
index bede3ac..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/img/blog.svg
+++ /dev/null
@@ -1,33 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
- "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
-<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
- width="1097.000000pt" height="1313.000000pt" viewBox="0 0 1097.000000 1313.000000"
- preserveAspectRatio="xMidYMid meet">
-<metadata>
-Created by potrace 1.16, written by Peter Selinger 2001-2019
-</metadata>
-<g transform="translate(0.000000,1313.000000) scale(0.100000,-0.100000)"
-fill="#000000" stroke="none">
-<path d="M5150 10304 c-516 -62 -1037 -281 -1435 -604 -502 -407 -856 -985
--989 -1615 -71 -340 -75 -768 -11 -1110 79 -414 263 -827 523 -1174 115 -153
-392 -430 542 -543 431 -322 914 -510 1434 -559 164 -15 543 -6 686 16 304 47
-549 125 825 260 307 151 501 290 751 539 249 250 388 444 539 751 135 276 213
-521 260 825 22 143 31 522 16 686 -49 520 -237 1003 -559 1434 -113 150 -390
-427 -543 542 -347 260 -760 444 -1174 523 -242 45 -621 58 -865 29z m735 -34
-c325 -49 591 -135 881 -284 431 -222 780 -535 1049 -941 621 -933 618 -2161
--7 -3092 -709 -1058 -2036 -1504 -3238 -1088 -663 230 -1215 702 -1548 1323
--153 286 -252 585 -303 922 -32 210 -32 581 0 790 51 335 136 596 285 886 440
-853 1270 1410 2243 1504 145 14 480 4 638 -20z"/>
-<path d="M4622 9258 c-490 -2438 -774 -3846 -778 -3861 -5 -16 15 -17 351 -15
-l357 3 66 162 c37 90 70 163 73 163 4 0 24 -30 45 -66 53 -91 171 -200 273
--253 116 -60 210 -82 356 -82 198 0 368 42 560 137 563 279 984 947 1065 1689
-14 129 14 427 0 541 -50 413 -237 702 -527 819 -108 44 -210 58 -377 52 -120
--4 -169 -10 -241 -30 -178 -50 -345 -133 -518 -258 -54 -39 -100 -69 -102 -67
--2 2 30 129 71 283 41 154 111 453 155 665 44 212 91 436 105 498 13 63 24
-115 24 118 0 2 -193 4 -428 4 l-429 0 -101 -502z m1297 -1443 c94 -52 159
--155 186 -300 18 -90 20 -322 4 -445 -70 -569 -388 -1016 -753 -1058 -189 -22
--354 64 -441 231 l-29 55 118 583 119 584 45 65 c145 205 367 323 597 317 89
--2 106 -6 154 -32z"/>
-</g>
-</svg>
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/custom-ui.svg b/primo-explore/custom/41SLSP_HPH-EPFL/img/custom-ui.svg
deleted file mode 100644
index 75baa9d..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/img/custom-ui.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="24" height="5000" viewBox="0 0 24 5000"><svg id="emoticon-cool" viewBox="0 0 24 24"><path xmlns="http://www.w3.org/2000/svg" d="M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z"/></svg><svg id="beach" viewBox="0 0 24 24"><path xmlns="http://www.w3.org/2000/svg" d="M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z"/></svg><svg id="beer" viewBox="0 0 24 24"><path xmlns="http://www.w3.org/2000/svg" d="M17,9h5.5L17,3.5V9 M10,2h8l6,6v12c0,1.1-0.9,2-2,2H10c-1.1,0-2-0.9-2-2V4C8,2.9,8.9,2,10,2 M15,4h-5v16h5h7v-9h-7V4z"/><path xmlns="http://www.w3.org/2000/svg" d="M7.3,20H6V4h1.3V2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h1.3V20z"/><path xmlns="http://www.w3.org/2000/svg" d="M3.3,20H2V4h1.3V2H2C0.9,2,0,2.9,0,4v16c0,1.1,0.9,2,2,2h1.3V20z"/></svg><svg id="sun" viewBox="0 0 24 24"><path xmlns="http://www.w3.org/2000/svg" d="M17,9h5.5L17,3.5V9 M10,2h8l6,6v12c0,1.1-0.9,2-2,2H10c-1.1,0-2-0.9-2-2V4C8,2.9,8.9,2,10,2 M15,4h-5v16h5h7v-9h-7V4z"/><path xmlns="http://www.w3.org/2000/svg" d="M7.3,20H6V4h1.3V2H6C4.9,2,4,2.9,4,4v16c0,1.1,0.9,2,2,2h1.3V20z"/><path xmlns="http://www.w3.org/2000/svg" d="M3.3,20H2V4h1.3V2H2C0.9,2,0,2.9,0,4v16c0,1.1,0.9,2,2,2h1.3V20z"/></svg></svg>
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/facebook.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/facebook.png
deleted file mode 100644
index 823e4d8..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/facebook.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/facebook.svg b/primo-explore/custom/41SLSP_HPH-EPFL/img/facebook.svg
deleted file mode 100644
index 0016036..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/img/facebook.svg
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
- "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
-<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
- width="130.000000pt" height="130.000000pt" viewBox="0 0 130.000000 130.000000"
- preserveAspectRatio="xMidYMid meet">
-<metadata>
-Created by potrace 1.16, written by Peter Selinger 2001-2019
-</metadata>
-<g transform="translate(0.000000,130.000000) scale(0.100000,-0.100000)"
-fill="#000000" stroke="none">
-<path d="M9 8H6v4h3v12h5V12h3.642L18 8h-4V6.333C14 5.378 14.192 5 15.115 5H18V0h-3.808C10.596 0 9 1.583 9 4.615V8z"></path>
-</g>
-</svg>
\ No newline at end of file
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/facebook_old.svg b/primo-explore/custom/41SLSP_HPH-EPFL/img/facebook_old.svg
deleted file mode 100644
index 4c7c0ff..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/img/facebook_old.svg
+++ /dev/null
@@ -1,20 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
- "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
-<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
- width="130.000000pt" height="130.000000pt" viewBox="0 0 130.000000 130.000000"
- preserveAspectRatio="xMidYMid meet">
-<metadata>
-Created by potrace 1.16, written by Peter Selinger 2001-2019
-</metadata>
-<g transform="translate(0.000000,130.000000) scale(0.100000,-0.100000)"
-fill="#000000" stroke="none">
-<path d="M491 1234 c-192 -52 -354 -207 -418 -399 -22 -67 -26 -98 -26 -190 0
--93 4 -122 27 -188 54 -161 163 -286 311 -357 44 -22 99 -42 123 -46 l42 -7 0
-217 0 216 -75 0 -75 0 0 85 0 85 75 0 75 0 0 91 c0 116 14 164 65 214 48 49
-98 65 196 65 122 0 120 1 117 -89 l-3 -76 -60 -3 c-89 -5 -105 -23 -105 -124
-l0 -78 80 0 c91 0 86 7 69 -101 l-12 -69 -68 0 -69 0 0 -215 c0 -248 -8 -233
-104 -191 201 76 346 246 386 454 19 93 8 231 -23 322 -66 186 -226 334 -417
-385 -71 19 -248 18 -319 -1z"/>
-</g>
-</svg>
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/facebook_white.svg b/primo-explore/custom/41SLSP_HPH-EPFL/img/facebook_white.svg
deleted file mode 100644
index 5b20741..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/img/facebook_white.svg
+++ /dev/null
@@ -1,61 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
- sodipodi:docname="facebook - Copia.svg"
- id="svg40"
- preserveAspectRatio="xMidYMid meet"
- viewBox="0 0 130.000000 130.000000"
- height="130.000000pt"
- width="130.000000pt"
- version="1.0">
- <defs
- id="defs44" />
- <sodipodi:namedview
- inkscape:current-layer="svg40"
- inkscape:window-maximized="1"
- inkscape:window-y="-9"
- inkscape:window-x="-9"
- inkscape:cy="86.666667"
- inkscape:cx="86.666667"
- inkscape:zoom="4.7884615"
- showgrid="false"
- id="namedview42"
- inkscape:window-height="1001"
- inkscape:window-width="1920"
- inkscape:pageshadow="2"
- inkscape:pageopacity="0"
- guidetolerance="10"
- gridtolerance="10"
- objecttolerance="10"
- borderopacity="1"
- bordercolor="#666666"
- pagecolor="#ffffff" />
- <metadata
- id="metadata34">
-Created by potrace 1.16, written by Peter Selinger 2001-2019
-<rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
-</rdf:RDF>
-</metadata>
- <g
- id="g38"
- stroke="none"
- fill="#ffffff"
- transform="translate(0.000000,130.000000) scale(0.100000,-0.100000)">
- <path
- id="path36"
- d="M491 1234 c-192 -52 -354 -207 -418 -399 -22 -67 -26 -98 -26 -190 0 -93 4 -122 27 -188 54 -161 163 -286 311 -357 44 -22 99 -42 123 -46 l42 -7 0 217 0 216 -75 0 -75 0 0 85 0 85 75 0 75 0 0 91 c0 116 14 164 65 214 48 49 98 65 196 65 122 0 120 1 117 -89 l-3 -76 -60 -3 c-89 -5 -105 -23 -105 -124 l0 -78 80 0 c91 0 86 7 69 -101 l-12 -69 -68 0 -69 0 0 -215 c0 -248 -8 -233 104 -191 201 76 346 246 386 454 19 93 8 231 -23 322 -66 186 -226 334 -417 385 -71 19 -248 18 -319 -1z" />
- </g>
-</svg>
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/favicon.ico b/primo-explore/custom/41SLSP_HPH-EPFL/img/favicon.ico
deleted file mode 100644
index d5f51c1..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/favicon.ico and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/NationalLicenses.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/NationalLicenses.png
deleted file mode 100644
index c7d60bf..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/NationalLicenses.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/NationalLicenses_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/NationalLicenses_fre.png
deleted file mode 100644
index b863055..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/NationalLicenses_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/NationalLicenses_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/NationalLicenses_ger.png
deleted file mode 100644
index 71ccc2a..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/NationalLicenses_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/NationalLicenses_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/NationalLicenses_ita.png
deleted file mode 100644
index fb08fc3..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/NationalLicenses_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeFilters.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeFilters.png
deleted file mode 100644
index 9b34b8f..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeFilters.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeFilters_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeFilters_fre.png
deleted file mode 100644
index 586d6b8..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeFilters_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeFilters_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeFilters_ger.png
deleted file mode 100644
index 4d00d4f..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeFilters_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeFilters_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeFilters_ita.png
deleted file mode 100644
index 7a00495..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeFilters_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeLoans.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeLoans.png
deleted file mode 100644
index 91a9787..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeLoans.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeLoans_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeLoans_fre.png
deleted file mode 100644
index 6bd5d81..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeLoans_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeLoans_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeLoans_ger.png
deleted file mode 100644
index 089bb4e..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeLoans_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeLoans_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeLoans_ita.png
deleted file mode 100644
index aff1f28..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/activeLoans_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField1.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField1.png
deleted file mode 100644
index 0ba0dbc..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField1.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField1_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField1_fre.png
deleted file mode 100644
index 6e0698f..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField1_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField1_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField1_ger.png
deleted file mode 100644
index eac0c87..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField1_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField1_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField1_ita.png
deleted file mode 100644
index c29f7bd..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField1_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField2.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField2.png
deleted file mode 100644
index 6b5add0..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField2.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField2_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField2_fre.png
deleted file mode 100644
index 12801c4..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField2_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField2_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField2_ger.png
deleted file mode 100644
index db8aa25..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField2_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField2_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField2_ita.png
deleted file mode 100644
index 508c029..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField2_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField3.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField3.png
deleted file mode 100644
index 622d6d1..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField3.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField3_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField3_fre.png
deleted file mode 100644
index 5c71503..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField3_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField3_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField3_ger.png
deleted file mode 100644
index 261c807..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField3_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField3_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField3_ita.png
deleted file mode 100644
index 1586679..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedField3_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedSearch.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedSearch.png
deleted file mode 100644
index 3dc8f15..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedSearch.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedSearch_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedSearch_fre.png
deleted file mode 100644
index d76dc84..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedSearch_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedSearch_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedSearch_ger.png
deleted file mode 100644
index 73abbb6..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedSearch_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedSearch_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedSearch_ita.png
deleted file mode 100644
index c74b788..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/advancedSearch_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline.png
deleted file mode 100644
index 798db7c..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline2.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline2.png
deleted file mode 100644
index ea02e6f..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline2.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline2_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline2_fre.png
deleted file mode 100644
index 2bea675..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline2_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline2_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline2_ger.png
deleted file mode 100644
index 4f2e1f5..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline2_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline2_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline2_ita.png
deleted file mode 100644
index 1a968da..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline2_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnlineFull.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnlineFull.png
deleted file mode 100644
index ac52ef6..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnlineFull.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnlineFull_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnlineFull_fre.png
deleted file mode 100644
index 5c1c8f4..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnlineFull_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnlineFull_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnlineFull_ger.png
deleted file mode 100644
index ac360cf..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnlineFull_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnlineFull_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnlineFull_ita.png
deleted file mode 100644
index 713b9e3..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnlineFull_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline_fre.png
deleted file mode 100644
index 1a76daa..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline_ger.png
deleted file mode 100644
index af7376f..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline_ita.png
deleted file mode 100644
index 1a968da..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/availOnline_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotification.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotification.png
deleted file mode 100644
index 6e72a4b..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotification.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotificationSettings.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotificationSettings.png
deleted file mode 100644
index 444c902..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotificationSettings.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotificationSettings_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotificationSettings_fre.png
deleted file mode 100644
index 85e8600..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotificationSettings_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotificationSettings_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotificationSettings_ger.png
deleted file mode 100644
index 70bd63f..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotificationSettings_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotificationSettings_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotificationSettings_ita.png
deleted file mode 100644
index 4569cf1..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotificationSettings_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotification_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotification_fre.png
deleted file mode 100644
index 6504fc8..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotification_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotification_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotification_ger.png
deleted file mode 100644
index a4e7bf5..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotification_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotification_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotification_ita.png
deleted file mode 100644
index 94c0fe4..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/emailNotification_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets1.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets1.png
deleted file mode 100644
index e20514e..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets1.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets1_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets1_fre.png
deleted file mode 100644
index dd85460..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets1_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets1_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets1_ger.png
deleted file mode 100644
index 2c3e437..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets1_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets1_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets1_ita.png
deleted file mode 100644
index 6b15ada..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets1_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets2.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets2.png
deleted file mode 100644
index 163de86..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets2.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets2_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets2_fre.png
deleted file mode 100644
index 88f2fea..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets2_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets2_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets2_ger.png
deleted file mode 100644
index a6cfeba..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets2_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets2_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets2_ita.png
deleted file mode 100644
index ef72aae..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets2_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets3.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets3.png
deleted file mode 100644
index fc0565b..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets3.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets3_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets3_fre.png
deleted file mode 100644
index 343a5cb..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets3_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets3_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets3_ger.png
deleted file mode 100644
index 48e7473..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets3_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets3_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets3_ita.png
deleted file mode 100644
index 9e31f44..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/facets3_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters1.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters1.png
deleted file mode 100644
index 53fd6ec..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters1.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters1_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters1_fre.png
deleted file mode 100644
index b9e2477..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters1_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters1_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters1_ger.png
deleted file mode 100644
index 99741a7..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters1_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters1_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters1_ita.png
deleted file mode 100644
index b01308e..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters1_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters2.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters2.png
deleted file mode 100644
index a137393..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters2.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters2_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters2_fre.png
deleted file mode 100644
index e2ceb36..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters2_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters2_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters2_ger.png
deleted file mode 100644
index e02a4d9..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters2_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters2_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters2_ita.png
deleted file mode 100644
index 9fd1eed..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/filters2_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/fullViewNavigation.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/fullViewNavigation.png
deleted file mode 100644
index b025493..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/fullViewNavigation.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/fullViewNavigation_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/fullViewNavigation_fre.png
deleted file mode 100644
index 36ac190..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/fullViewNavigation_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/fullViewNavigation_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/fullViewNavigation_ger.png
deleted file mode 100644
index 7504398..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/fullViewNavigation_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/fullViewNavigation_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/fullViewNavigation_ita.png
deleted file mode 100644
index 1a493b7..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/fullViewNavigation_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/getIt.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/getIt.png
deleted file mode 100644
index 4407423..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/getIt.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/getIt_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/getIt_fre.png
deleted file mode 100644
index eeb3c76..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/getIt_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/getIt_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/getIt_ger.png
deleted file mode 100644
index 44f78c5..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/getIt_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/getIt_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/getIt_ita.png
deleted file mode 100644
index 5a22cd0..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/getIt_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/iconUp.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/iconUp.png
deleted file mode 100644
index 0a2fb6e..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/iconUp.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/infographic_en.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/infographic_en.png
deleted file mode 100644
index d90abc9..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/infographic_en.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/infographig_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/infographig_fre.png
deleted file mode 100644
index 132cd34..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/infographig_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/infographig_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/infographig_ger.png
deleted file mode 100644
index 6579478..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/infographig_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/infographig_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/infographig_ita.png
deleted file mode 100644
index ea4c1f1..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/infographig_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/locationItems.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/locationItems.png
deleted file mode 100644
index 96d965e..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/locationItems.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/locationItems_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/locationItems_fre.png
deleted file mode 100644
index be96f2c..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/locationItems_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/locationItems_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/locationItems_ger.png
deleted file mode 100644
index 48b781f..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/locationItems_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/locationItems_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/locationItems_ita.png
deleted file mode 100644
index 7e335b7..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/locationItems_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myAccount.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myAccount.png
deleted file mode 100644
index 4cd905f..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myAccount.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myAccount_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myAccount_fre.png
deleted file mode 100644
index c6be761..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myAccount_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myAccount_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myAccount_ger.png
deleted file mode 100644
index 606daac..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myAccount_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myAccount_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myAccount_ita.png
deleted file mode 100644
index 8724123..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myAccount_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myFavorites.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myFavorites.png
deleted file mode 100644
index 40c0372..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myFavorites.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myFavorites_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myFavorites_fre.png
deleted file mode 100644
index 3949204..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myFavorites_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myFavorites_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myFavorites_ger.png
deleted file mode 100644
index 836c25f..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myFavorites_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myFavorites_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myFavorites_ita.png
deleted file mode 100644
index 84ea1e0..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/myFavorites_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/openAccess.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/openAccess.png
deleted file mode 100644
index 1056591..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/openAccess.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/openAccess_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/openAccess_fre.png
deleted file mode 100644
index 9fe2ef5..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/openAccess_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/openAccess_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/openAccess_ger.png
deleted file mode 100644
index f5e326b..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/openAccess_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/openAccess_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/openAccess_ita.png
deleted file mode 100644
index e3904a1..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/openAccess_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/pinIcon1.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/pinIcon1.png
deleted file mode 100644
index e546754..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/pinIcon1.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/pinIcon2.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/pinIcon2.png
deleted file mode 100644
index e274fe4..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/pinIcon2.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/renewLoans.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/renewLoans.png
deleted file mode 100644
index 557bb11..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/renewLoans.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/renewLoans_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/renewLoans_fre.png
deleted file mode 100644
index 6e48a13..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/renewLoans_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/renewLoans_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/renewLoans_ger.png
deleted file mode 100644
index fadfa93..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/renewLoans_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/renewLoans_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/renewLoans_ita.png
deleted file mode 100644
index 426716d..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/renewLoans_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/requestOption.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/requestOption.png
deleted file mode 100644
index ea37de3..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/requestOption.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/requestOption_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/requestOption_fre.png
deleted file mode 100644
index a0da526..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/requestOption_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/requestOption_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/requestOption_ger.png
deleted file mode 100644
index ed69283..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/requestOption_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/requestOption_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/requestOption_ita.png
deleted file mode 100644
index 994911b..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/requestOption_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/saveQuery.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/saveQuery.png
deleted file mode 100644
index dc006bb..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/saveQuery.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/saveQuery_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/saveQuery_fre.png
deleted file mode 100644
index 4f6a1c7..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/saveQuery_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/saveQuery_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/saveQuery_ger.png
deleted file mode 100644
index d54601d..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/saveQuery_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/saveQuery_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/saveQuery_ita.png
deleted file mode 100644
index 83ee324..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/saveQuery_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/savedSearches.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/savedSearches.png
deleted file mode 100644
index f2988c4..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/savedSearches.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/savedSearches_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/savedSearches_fre.png
deleted file mode 100644
index 7376d31..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/savedSearches_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/savedSearches_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/savedSearches_ger.png
deleted file mode 100644
index 80ad814..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/savedSearches_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/savedSearches_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/savedSearches_ita.png
deleted file mode 100644
index 7d43577..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/savedSearches_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchHistory.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchHistory.png
deleted file mode 100644
index 589306b..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchHistory.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchHistoryIcon.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchHistoryIcon.png
deleted file mode 100644
index 2061e93..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchHistoryIcon.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchHistory_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchHistory_fre.png
deleted file mode 100644
index 51eaa60..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchHistory_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchHistory_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchHistory_ger.png
deleted file mode 100644
index c641e91..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchHistory_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchHistory_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchHistory_ita.png
deleted file mode 100644
index 42bc4bc..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchHistory_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchNOT.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchNOT.png
deleted file mode 100644
index 6dba5b2..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchNOT.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchNOT_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchNOT_fre.png
deleted file mode 100644
index fcc2e5e..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchNOT_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchNOT_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchNOT_ger.png
deleted file mode 100644
index ec6fc14..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchNOT_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchNOT_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchNOT_ita.png
deleted file mode 100644
index a643677..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchNOT_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchOR.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchOR.png
deleted file mode 100644
index 15daa61..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchOR.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchOR_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchOR_fre.png
deleted file mode 100644
index 11cf8fa..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchOR_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchOR_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchOR_ger.png
deleted file mode 100644
index d393355..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchOR_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchOR_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchOR_ita.png
deleted file mode 100644
index 0f2d55d..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchOR_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchPhrase.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchPhrase.png
deleted file mode 100644
index 1610115..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchPhrase.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchPhrase_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchPhrase_fre.png
deleted file mode 100644
index 371eac4..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchPhrase_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchPhrase_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchPhrase_ger.png
deleted file mode 100644
index 024de48..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchPhrase_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchPhrase_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchPhrase_ita.png
deleted file mode 100644
index 3d4e758..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchPhrase_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard1.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard1.png
deleted file mode 100644
index abe7906..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard1.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard1_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard1_fre.png
deleted file mode 100644
index 8cdc7d3..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard1_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard1_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard1_ger.png
deleted file mode 100644
index fd61743..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard1_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard1_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard1_ita.png
deleted file mode 100644
index 9af5514..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard1_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard2.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard2.png
deleted file mode 100644
index eb0445b..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard2.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard2_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard2_fre.png
deleted file mode 100644
index b11ba78..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard2_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard2_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard2_ger.png
deleted file mode 100644
index 3bef7ae..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard2_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard2_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard2_ita.png
deleted file mode 100644
index 530521b..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard2_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard3.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard3.png
deleted file mode 100644
index f523219..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard3.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard3_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard3_fre.png
deleted file mode 100644
index 8e403a3..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard3_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard3_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard3_ger.png
deleted file mode 100644
index 4fce32e..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard3_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard3_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard3_ita.png
deleted file mode 100644
index f3bd621..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard3_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard4_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard4_fre.png
deleted file mode 100644
index f87a29f..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard4_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard4_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard4_ger.png
deleted file mode 100644
index eecb53b..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard4_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard4_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard4_ita.png
deleted file mode 100644
index fb0d635..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/searchWildcard4_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/setLanguage.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/setLanguage.png
deleted file mode 100644
index d210592..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/setLanguage.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/setLanguage_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/setLanguage_fre.png
deleted file mode 100644
index 8fd5f73..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/setLanguage_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/setLanguage_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/setLanguage_ger.png
deleted file mode 100644
index fa73d11..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/setLanguage_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/setLanguage_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/setLanguage_ita.png
deleted file mode 100644
index e67eb71..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/setLanguage_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/showonly.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/showonly.png
deleted file mode 100644
index a350b8a..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/showonly.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/showonly_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/showonly_fre.png
deleted file mode 100644
index d82284a..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/showonly_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/showonly_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/showonly_ger.png
deleted file mode 100644
index 91ce64c..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/showonly_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/showonly_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/showonly_ita.png
deleted file mode 100644
index bad6d39..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/showonly_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/signin.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/signin.png
deleted file mode 100644
index 35d73c0..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/signin.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/signin_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/signin_fre.png
deleted file mode 100644
index 949db61..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/signin_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/signin_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/signin_ger.png
deleted file mode 100644
index 498a6ff..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/signin_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/signin_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/signin_ita.png
deleted file mode 100644
index 9662d63..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/signin_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/simpleSearch.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/simpleSearch.png
deleted file mode 100644
index af950b4..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/simpleSearch.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/simpleSearch_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/simpleSearch_fre.png
deleted file mode 100644
index 3eadb0f..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/simpleSearch_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/simpleSearch_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/simpleSearch_ger.png
deleted file mode 100644
index e39a7ec..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/simpleSearch_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/simpleSearch_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/simpleSearch_ita.png
deleted file mode 100644
index 1dc57ac..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/simpleSearch_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/sorting.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/sorting.png
deleted file mode 100644
index da58e3f..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/sorting.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/sorting_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/sorting_fre.png
deleted file mode 100644
index 5f2f91f..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/sorting_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/sorting_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/sorting_ger.png
deleted file mode 100644
index 5553f86..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/sorting_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/sorting_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/sorting_ita.png
deleted file mode 100644
index deceec5..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/sorting_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/swisscovery.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/swisscovery.png
deleted file mode 100644
index 8e58e37..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/swisscovery.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/swisscovery_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/swisscovery_fre.png
deleted file mode 100644
index 3e4d5ce..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/swisscovery_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/swisscovery_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/swisscovery_ger.png
deleted file mode 100644
index 668af4a..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/swisscovery_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/swisscovery_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/swisscovery_ita.png
deleted file mode 100644
index b24c483..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/swisscovery_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/versions.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/versions.png
deleted file mode 100644
index e65676b..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/versions.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/versions_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/versions_fre.png
deleted file mode 100644
index bbbd06c..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/versions_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/versions_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/versions_ger.png
deleted file mode 100644
index 3af5d15..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/versions_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/versions_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/versions_ita.png
deleted file mode 100644
index 5969cf7..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/versions_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/viewOnline.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/viewOnline.png
deleted file mode 100644
index 26df829..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/viewOnline.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/viewOnlineIcon.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/viewOnlineIcon.png
deleted file mode 100644
index 6ef1440..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/viewOnlineIcon.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/viewOnline_fre.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/viewOnline_fre.png
deleted file mode 100644
index cb0ec57..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/viewOnline_fre.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/viewOnline_ger.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/viewOnline_ger.png
deleted file mode 100644
index 5fa0e3c..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/viewOnline_ger.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/viewOnline_ita.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/help/viewOnline_ita.png
deleted file mode 100644
index bf8fa06..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/help/viewOnline_ita.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_archival_material.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_archival_material.png
deleted file mode 100644
index e5f49d4..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_archival_material.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_article.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_article.png
deleted file mode 100644
index 2dc1a01..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_article.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_audio.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_audio.png
deleted file mode 100644
index 4755ba7..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_audio.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_book.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_book.png
deleted file mode 100644
index 3d77eb6..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_book.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_book_chapter.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_book_chapter.png
deleted file mode 100644
index 3d77eb6..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_book_chapter.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_cd-rom.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_cd-rom.png
deleted file mode 100644
index c85492d..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_cd-rom.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_cdrom.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_cdrom.png
deleted file mode 100644
index c85492d..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_cdrom.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_conference_ proceeding.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_conference_ proceeding.png
deleted file mode 100644
index 3d77eb6..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_conference_ proceeding.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_conference_proceeding.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_conference_proceeding.png
deleted file mode 100644
index 3d77eb6..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_conference_proceeding.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_database.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_database.png
deleted file mode 100644
index 97768da..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_database.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_dataset.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_dataset.png
deleted file mode 100644
index 22d9ece..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_dataset.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_dissertation.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_dissertation.png
deleted file mode 100644
index 3d77eb6..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_dissertation.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_ebook.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_ebook.png
deleted file mode 100644
index 3d77eb6..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_ebook.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_ejournal.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_ejournal.png
deleted file mode 100644
index e709902..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_ejournal.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_government_document.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_government_document.png
deleted file mode 100644
index eb87193..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_government_document.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_image.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_image.png
deleted file mode 100644
index 88cfb39..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_image.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_journal.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_journal.png
deleted file mode 100644
index e709902..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_journal.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_kit.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_kit.png
deleted file mode 100644
index 2b1562f..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_kit.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_kit_multimedia.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_kit_multimedia.png
deleted file mode 100644
index 2b1562f..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_kit_multimedia.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_legal_document.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_legal_document.png
deleted file mode 100644
index eb87193..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_legal_document.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_legal_document_.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_legal_document_.png
deleted file mode 100644
index eb87193..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_legal_document_.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_manuscript.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_manuscript.png
deleted file mode 100644
index 06e9b43..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_manuscript.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_map.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_map.png
deleted file mode 100644
index 5e78ef1..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_map.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_microform.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_microform.png
deleted file mode 100644
index ca098f0..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_microform.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_microform_not_used.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_microform_not_used.png
deleted file mode 100644
index ca098f0..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_microform_not_used.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_microforms.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_microforms.png
deleted file mode 100644
index eb87193..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_microforms.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_newspaper.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_newspaper.png
deleted file mode 100644
index 16408c0..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_newspaper.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_newspaper_article.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_newspaper_article.png
deleted file mode 100644
index 16408c0..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_newspaper_article.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_other.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_other.png
deleted file mode 100644
index eb87193..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_other.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_patent.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_patent.png
deleted file mode 100644
index eb87193..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_patent.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_reference_entry.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_reference_entry.png
deleted file mode 100644
index eb87193..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_reference_entry.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_report.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_report.png
deleted file mode 100644
index 3d77eb6..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_report.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_research_data.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_research_data.png
deleted file mode 100644
index 32c237a..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_research_data.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_research_dataset.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_research_dataset.png
deleted file mode 100644
index 32c237a..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_research_dataset.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_review.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_review.png
deleted file mode 100644
index eb87193..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_review.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_score.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_score.png
deleted file mode 100644
index 858173e..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_score.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_statistical_data.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_statistical_data.png
deleted file mode 100644
index 32c237a..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_statistical_data.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_text_resource.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_text_resource.png
deleted file mode 100644
index eb87193..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_text_resource.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_versions.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_versions.png
deleted file mode 100644
index 4aa4b7f..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_versions.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_video.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_video.png
deleted file mode 100644
index 820996d..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_video.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_website.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_website.png
deleted file mode 100644
index d67bf35..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/icon_website.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/infographic_de.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/infographic_de.png
deleted file mode 100644
index 6579478..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/infographic_de.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/infographic_en.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/infographic_en.png
deleted file mode 100644
index 372997f..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/infographic_en.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/infographic_fr.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/infographic_fr.png
deleted file mode 100644
index 132cd34..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/infographic_fr.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/infographic_it.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/infographic_it.png
deleted file mode 100644
index cbfcfc5..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/infographic_it.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/information.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/information.png
deleted file mode 100644
index b9a6e4c..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/information.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/instagram.svg b/primo-explore/custom/41SLSP_HPH-EPFL/img/instagram.svg
deleted file mode 100644
index de1bc35..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/img/instagram.svg
+++ /dev/null
@@ -1,34 +0,0 @@
-<?xml version="1.0" standalone="no"?>
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
- "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
-<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
- width="504.000000pt" height="504.000000pt" viewBox="0 0 504.000000 504.000000"
- preserveAspectRatio="xMidYMid meet">
-<metadata>
-Created by potrace 1.16, written by Peter Selinger 2001-2019
-</metadata>
-<g transform="translate(0.000000,504.000000) scale(0.100000,-0.100000)"
-fill="#000000" stroke="none">
-<path d="M1550 5034 c-540 -27 -861 -144 -1130 -414 -236 -235 -358 -522 -402
--940 -19 -179 -19 -2141 0 -2320 44 -418 166 -705 402 -940 235 -236 522 -358
-940 -402 179 -19 2141 -19 2320 0 418 44 705 166 940 402 236 235 358 522 402
-940 19 179 19 2141 0 2320 -44 418 -166 705 -402 940 -230 231 -513 354 -920
-401 -74 8 -396 13 -1095 14 -544 1 -1019 0 -1055 -1z m2070 -473 c128 -13 245
--36 325 -63 317 -105 518 -339 589 -688 37 -183 41 -309 41 -1290 0 -981 -4
--1107 -41 -1290 -81 -396 -328 -643 -724 -724 -183 -37 -309 -41 -1290 -41
--981 0 -1107 4 -1290 41 -399 82 -646 330 -724 729 -33 166 -38 296 -43 1100
--5 796 3 1203 27 1380 68 491 346 768 840 835 47 7 162 15 255 20 250 12 1907
-4 2035 -9z"/>
-<path d="M3750 4153 c-63 -23 -151 -113 -173 -177 -9 -27 -17 -77 -17 -111 0
--92 24 -151 89 -216 65 -65 124 -89 216 -89 92 0 151 24 216 89 66 66 89 124
-89 220 0 169 -135 302 -305 300 -38 0 -90 -8 -115 -16z"/>
-<path d="M2355 3809 c-305 -41 -562 -173 -775 -395 -239 -249 -354 -540 -354
--894 0 -358 116 -648 362 -902 255 -264 560 -392 932 -392 372 0 677 128 932
-392 246 254 362 544 362 902 0 358 -116 648 -362 902 -191 198 -419 322 -685
-373 -101 20 -317 27 -412 14z m400 -489 c276 -88 479 -293 567 -570 20 -65 23
--95 23 -230 0 -135 -3 -165 -23 -230 -88 -279 -293 -484 -572 -572 -65 -20
--95 -23 -230 -23 -135 0 -165 3 -230 23 -279 88 -484 293 -572 572 -20 65 -23
-95 -23 230 0 135 3 165 23 230 96 303 338 526 643 590 24 5 107 8 184 6 111
--3 155 -8 210 -26z"/>
-</g>
-</svg>
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/instagram_white.svg b/primo-explore/custom/41SLSP_HPH-EPFL/img/instagram_white.svg
deleted file mode 100644
index fc51415..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/img/instagram_white.svg
+++ /dev/null
@@ -1,67 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<svg
- xmlns:dc="http://purl.org/dc/elements/1.1/"
- xmlns:cc="http://creativecommons.org/ns#"
- xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
- xmlns:svg="http://www.w3.org/2000/svg"
- xmlns="http://www.w3.org/2000/svg"
- xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
- xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
- inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
- sodipodi:docname="instagram - Copia.svg"
- id="svg36"
- preserveAspectRatio="xMidYMid meet"
- viewBox="0 0 504.000000 504.000000"
- height="504.000000pt"
- width="504.000000pt"
- version="1.0">
- <defs
- id="defs40" />
- <sodipodi:namedview
- inkscape:current-layer="svg36"
- inkscape:window-maximized="1"
- inkscape:window-y="-9"
- inkscape:window-x="-9"
- inkscape:cy="198.36145"
- inkscape:cx="336"
- inkscape:zoom="1.235119"
- showgrid="false"
- id="namedview38"
- inkscape:window-height="1001"
- inkscape:window-width="1920"
- inkscape:pageshadow="2"
- inkscape:pageopacity="0"
- guidetolerance="10"
- gridtolerance="10"
- objecttolerance="10"
- borderopacity="1"
- bordercolor="#666666"
- pagecolor="#ffffff" />
- <metadata
- id="metadata26">
-Created by potrace 1.16, written by Peter Selinger 2001-2019
-<rdf:RDF>
- <cc:Work
- rdf:about="">
- <dc:format>image/svg+xml</dc:format>
- <dc:type
- rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
- </cc:Work>
-</rdf:RDF>
-</metadata>
- <g
- id="g34"
- stroke="none"
- fill="#ffffff"
- transform="translate(0.000000,504.000000) scale(0.100000,-0.100000)">
- <path
- id="path28"
- d="M1550 5034 c-540 -27 -861 -144 -1130 -414 -236 -235 -358 -522 -402 -940 -19 -179 -19 -2141 0 -2320 44 -418 166 -705 402 -940 235 -236 522 -358 940 -402 179 -19 2141 -19 2320 0 418 44 705 166 940 402 236 235 358 522 402 940 19 179 19 2141 0 2320 -44 418 -166 705 -402 940 -230 231 -513 354 -920 401 -74 8 -396 13 -1095 14 -544 1 -1019 0 -1055 -1z m2070 -473 c128 -13 245 -36 325 -63 317 -105 518 -339 589 -688 37 -183 41 -309 41 -1290 0 -981 -4 -1107 -41 -1290 -81 -396 -328 -643 -724 -724 -183 -37 -309 -41 -1290 -41 -981 0 -1107 4 -1290 41 -399 82 -646 330 -724 729 -33 166 -38 296 -43 1100 -5 796 3 1203 27 1380 68 491 346 768 840 835 47 7 162 15 255 20 250 12 1907 4 2035 -9z" />
- <path
- id="path30"
- d="M3750 4153 c-63 -23 -151 -113 -173 -177 -9 -27 -17 -77 -17 -111 0 -92 24 -151 89 -216 65 -65 124 -89 216 -89 92 0 151 24 216 89 66 66 89 124 89 220 0 169 -135 302 -305 300 -38 0 -90 -8 -115 -16z" />
- <path
- id="path32"
- d="M2355 3809 c-305 -41 -562 -173 -775 -395 -239 -249 -354 -540 -354 -894 0 -358 116 -648 362 -902 255 -264 560 -392 932 -392 372 0 677 128 932 392 246 254 362 544 362 902 0 358 -116 648 -362 902 -191 198 -419 322 -685 373 -101 20 -317 27 -412 14z m400 -489 c276 -88 479 -293 567 -570 20 -65 23 -95 23 -230 0 -135 -3 -165 -23 -230 -88 -279 -293 -484 -572 -572 -65 -20 -95 -23 -230 -23 -135 0 -165 3 -230 23 -279 88 -484 293 -572 572 -20 65 -23 95 -23 230 0 135 3 165 23 230 96 303 338 526 643 590 24 5 107 8 184 6 111 -3 155 -8 210 -26z" />
- </g>
-</svg>
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/library-logo.png b/primo-explore/custom/41SLSP_HPH-EPFL/img/library-logo.png
deleted file mode 100644
index 4863f84..0000000
Binary files a/primo-explore/custom/41SLSP_HPH-EPFL/img/library-logo.png and /dev/null differ
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/linkedin.svg b/primo-explore/custom/41SLSP_HPH-EPFL/img/linkedin.svg
deleted file mode 100644
index 3d8a056..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/img/linkedin.svg
+++ /dev/null
@@ -1 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M0 0v24h24v-24h-24zm8 19h-3v-11h3v11zm-1.5-12.268c-.966 0-1.75-.79-1.75-1.764s.784-1.764 1.75-1.764 1.75.79 1.75 1.764-.783 1.764-1.75 1.764zm13.5 12.268h-3v-5.604c0-3.368-4-3.113-4 0v5.604h-3v-11h3v1.765c1.397-2.586 7-2.777 7 2.476v6.759z"/></svg>
\ No newline at end of file
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/twitter.svg b/primo-explore/custom/41SLSP_HPH-EPFL/img/twitter.svg
deleted file mode 100644
index 298af2a..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/img/twitter.svg
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 20.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
-<svg version="1.1" id="White" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
- viewBox="0 0 400 400" style="enable-background:new 0 0 400 400;" xml:space="preserve">
-<style type="text/css">
- .st0{fill:#FFFFFF;}
-</style>
-<path class="st0" d="M400,200c0,110.5-89.5,200-200,200S0,310.5,0,200S89.5,0,200,0S400,89.5,400,200z M163.4,305.5
- c88.7,0,137.2-73.5,137.2-137.2c0-2.1,0-4.2-0.1-6.2c9.4-6.8,17.6-15.3,24.1-25c-8.6,3.8-17.9,6.4-27.7,7.6
- c10-6,17.6-15.4,21.2-26.7c-9.3,5.5-19.6,9.5-30.6,11.7c-8.8-9.4-21.3-15.2-35.2-15.2c-26.6,0-48.2,21.6-48.2,48.2
- c0,3.8,0.4,7.5,1.3,11c-40.1-2-75.6-21.2-99.4-50.4c-4.1,7.1-6.5,15.4-6.5,24.2c0,16.7,8.5,31.5,21.5,40.1c-7.9-0.2-15.3-2.4-21.8-6
- c0,0.2,0,0.4,0,0.6c0,23.4,16.6,42.8,38.7,47.3c-4,1.1-8.3,1.7-12.7,1.7c-3.1,0-6.1-0.3-9.1-0.9c6.1,19.2,23.9,33.1,45,33.5
- c-16.5,12.9-37.3,20.6-59.9,20.6c-3.9,0-7.7-0.2-11.5-0.7C110.8,297.5,136.2,305.5,163.4,305.5"/>
-</svg>
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/img/youtube.svg b/primo-explore/custom/41SLSP_HPH-EPFL/img/youtube.svg
deleted file mode 100644
index b1e20ee..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/img/youtube.svg
+++ /dev/null
@@ -1,45 +0,0 @@
-<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
-<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
- viewBox="0 0 512 512" style="enable-background:new 0 0 512 512;" xml:space="preserve">
-<g>
- <g>
- <path d="M490.24,113.92c-13.888-24.704-28.96-29.248-59.648-30.976C399.936,80.864,322.848,80,256.064,80
- c-66.912,0-144.032,0.864-174.656,2.912c-30.624,1.76-45.728,6.272-59.744,31.008C7.36,138.592,0,181.088,0,255.904
- C0,255.968,0,256,0,256c0,0.064,0,0.096,0,0.096v0.064c0,74.496,7.36,117.312,21.664,141.728
- c14.016,24.704,29.088,29.184,59.712,31.264C112.032,430.944,189.152,432,256.064,432c66.784,0,143.872-1.056,174.56-2.816
- c30.688-2.08,45.76-6.56,59.648-31.264C504.704,373.504,512,330.688,512,256.192c0,0,0-0.096,0-0.16c0,0,0-0.064,0-0.096
- C512,181.088,504.704,138.592,490.24,113.92z M192,352V160l160,96L192,352z"/>
- </g>
-</g>
-<g>
-</g>
-<g>
-</g>
-<g>
-</g>
-<g>
-</g>
-<g>
-</g>
-<g>
-</g>
-<g>
-</g>
-<g>
-</g>
-<g>
-</g>
-<g>
-</g>
-<g>
-</g>
-<g>
-</g>
-<g>
-</g>
-<g>
-</g>
-<g>
-</g>
-</svg>
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/js/README.md b/primo-explore/custom/41SLSP_HPH-EPFL/js/README.md
deleted file mode 100644
index 8c73521..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/js/README.md
+++ /dev/null
@@ -1,199 +0,0 @@
-# The Primo New UI Customization Workflow Development Environment
-
-
-##JavaScript documentation
-
-- When you want to add functionality to your Primo installation you will be using Angular Directives.
-
-- To learn more about directives see:
-> https://docs.angularjs.org/guide/directive
-
-- Primo uses external directives from the Angular-material framework:
-> https://material.angularjs.org/latest/
-
-- Those directives are tagged by a prefix : "md-"
-
-- Primo also creates its own directives which are tagged by the "prm-" prefix.
-
-
-Example:
-```
- <header layout="column" layout-fill class="topbar-wrapper">
- <prm-topbar>
- </prm-topbar>
-
- <prm-search-bar (search-event)="prmSearch.onSearchBarSearchEvent()">
- </prm-search-bar>
-
- <md-progress-linear class="header-progress-bar animation-scale-up-down" md-mode="indeterminate" ng-show="prmSearch.searchInProgress">
- </md-progress-linear>
-
- </header>
-```
-
-
-- You can see in the example how we use :
-
-1. An HTML5 tag - header
-2. A Primo directive : prm-topbar , prm-search-bar.
-3. An external material design directive : md-progress-bar :
-> https://material.angularjs.org/latest/api/directive/mdProgressLinear
-
-
-
-##Concept
-
-- When You want to add your own JavaScript functionality - you will need to plug-in to placeholder Directives we added to the system.
-- Those directive are added as the last child element for every Primo directive (defined by the `prm-` prefix)
-- The placeholder directives are injected (as input) with the Controller of their parent, thus have access to the data model of the parent directive
-- Use the examples below as starting points for your JavaScript plug-in directives
-- Learn about Angular Directives to better understand the different abilities this workflow offers
-> https://docs.angularjs.org/guide/directive
-
-
-
-##Recipes/Examples:
-
-
-# JavaScript Recipe 1 - a Static `hello world` html Message
-
-
-- Use the `showDirectives` (located in the root directory of this package is the showDirectives.txt file
-, just add the content of the file as a bookmark to your browser) scriplet to identify the `prmSearchBarAfter` directive which you will plugin to
-- Edit the primo-explore/custom/js/custom.js file and add a component declaration for the `prmSearchBarAfter` directive
-
- ```
- app.component('prmSearchBarAfter', {
-
-
- });
- ```
-- Add the template property with your static message
-
- ```
- app.component('prmSearchBarAfter', {
- template: `<span style="margin-left: 40%;">Hello World</span>`
-
- });
- ```
-
-- Save and refresh your browser
-
-
-
-# JavaScript Recipe 2 - a Dynamic Directive
-- Use the `showDirectives` scriplet to identify the `prmSearchBarAfter` directive which you will plugin to
-- Run the following command in your browsers' console tab:
-```
- angular.reloadWithDebugInfo()
-```
-- Focus on the `prmSearchBarAfter` directive
-- Run the following command in your browsers' console tab:
-```
- angular.element($0).scope().ctrl
-```
-
-- Review the properties of the directive to decide which data elements can be used, avoid methods/functions as they wont be backwards compatible
-
-- Edit primo-explore/custom/js/custom.js file and add a component declaration for the `prmSearchBarAfter` directive
-
-- Add a binding definition the input parentCtrl
-```
- bindings: {parentCtrl: '<'},
-```
-- Add a controller definition:
-```
- controller: 'SearchAfterController',
-```
-- Define a controller with 2 getter methods to return the query and selected scope
-```
-app.controller('SearchBarAfterController', [function () {
- var vm = this;
-
- vm.getSelectdScope = getSelectdScope;
- vm.getQuery = getQuery;
-
- function getSelectdScope() {
- return vm.parentCtrl.scopeField;
- }
-
- function getQuery() {
- return vm.parentCtrl.mainSearchField;
- }
-
-```
-- Edit the directive template to reference the getter methods
-``` <div layout="row" layout-align="center center">
- <md-card flex="80">
- <md-card-title>
- <md-card-title-text><span class="md-headline">
- This is a demo presenting the ability to display query
- information below the search box</span>
- <span class="md-subhead">Query: {{$ctrl.getQuery()}}</span>
- <span class="md-subhead">Scope: {{$ctrl.getSelectdScope()}}</span>
- </md-card-title-text>
- <md-card-title-media>
- <div class="md-media-sm card-media"></div>
- </md-card-title-media>
- </md-card-title>
- <md-card-actions layout="row" layout-align="end center">
- <md-button>Action 1</md-button>
- <md-button>Action 2</md-button>
- </md-card-actions>
- </md-card>
- </div>
- ```
-- Save and refresh your browser
-
-
-# JavaScript Recipe 3 - Adding the Altmetrics Widget
-- Use the `showDirectives` scriplet to identify the `prmFullViewAfter` directive which you will plugin to
-- Run the following command in your browsers' console tab:
-`angular.reloadWithDebugInfo()`
-- Focus on the `prmFullViewAfter` directive
-- Run the following command in your browsers' console tab:
-`angular.element($0).scope().ctrl`
-
-- Review the properties of the directive to decide which data elements can be used, avoid methods/functions as they wont be backwards compatible
-
-- Edit primo-explore/custom/js/custom.js file and add a component declaration for the `prmFullViewAfter` directive
-
-- Add a binding definition the input parentCtrl
-`bindings: {parentCtrl: '<'},`
-- Add a controller definition:
-`controller: 'FullViewAfterController',`
-- Define a controller that populates the doi and loads the Altmetrics js file
-```app.controller('FullViewAfterController', ['angularLoad', function (angularLoad) {
- var vm = this;
- vm.doi = vm.parentCtrl.item.pnx.addata.doi[0] || '';
-
- vm.$onInit = function () {
- angularLoad.loadScript('https://d1bxh8uas1mnw7.cloudfront.net/assets/embed.js?' + Date.now()).then(function () {
-
- });
- };
- }]);
-```
-- Edit the directive template to add the Altmetrics div and bind the data-doi attribure to the controller
-```<div class="full-view-section-content" ng-if="$ctrl.doi">
- <div class="section-header" layout="row" layout-align="center center">
- <h2 class="section-title md-title light-text">
- Social Popularity Statistics (AltMetrics) :
- </h2>
- <md-divider flex>
- </md-divider>
- </div>
- <div class="full-view-section">
- <div class="full-view-section-content">
- <div class="section-body" layout="row" layout-align="center center">
- <div class="spaced-rows" layout="column">
- <div ng-if="$ctrl.doi" class="altmetric-embed" data-badge-type="medium-donut" data-badge-details="right" data-doi="{{$ctrl.doi}}">
- </div>
- </div>
- </div>
- </div>
- </div>
- </div>
- ```
-- Save and refresh your browser
-
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/js/account/accountlinks.component.js b/primo-explore/custom/41SLSP_HPH-EPFL/js/account/accountlinks.component.js
deleted file mode 100644
index dd90628..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/js/account/accountlinks.component.js
+++ /dev/null
@@ -1,19 +0,0 @@
-"use strict";
-
-/*
- OBJECTIF: Ajouter le lien vers SWITCH edu-ID.
- REMARQUES: contient juste les liens vers SWITCH edu-ID et vers
- l'application de changement des code-barres.
-*/
-
-module.exports = {
- bindings: {parentCtrl: '<'},
- controllerAs: 'ctrl',
- controller: [function() {
- var vm = this;
- console.log(vm);
- vm.view = vm.parentCtrl.accountLinksService.vid.replace(':', '-');
-
- }],
- template: `<div ng-if="ctrl.parentCtrl.tabName=='personalsettings'"><img width="20px" ng-src="/discovery/custom/{{ ctrl.view }}/img/information.png" /> {{ 'switchEduID' | customTranslate | trustHtml }} <a href=\"https://eduid.ch\">https://eduid.ch</a></div>`
-};
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/js/account/index.js b/primo-explore/custom/41SLSP_HPH-EPFL/js/account/index.js
deleted file mode 100644
index 1ad5b8a..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/js/account/index.js
+++ /dev/null
@@ -1,4 +0,0 @@
-(function () {
- var account_module = angular.module('accountModule', ['angularLoad']);
- account_module.component('prmAccountLinksAfter', require('./accountlinks.component.js'));
-})()
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/js/custom.js b/primo-explore/custom/41SLSP_HPH-EPFL/js/custom.js
deleted file mode 100644
index 128e81d..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/js/custom.js
+++ /dev/null
@@ -1,2 +0,0 @@
-!function a(s,l,o){function c(t,e){if(!l[t]){if(!s[t]){var r="function"==typeof require&&require;if(!e&&r)return r(t,!0);if(u)return u(t,!0);var n=new Error("Cannot find module '"+t+"'");throw n.code="MODULE_NOT_FOUND",n}var i=l[t]={exports:{}};s[t][0].call(i.exports,function(e){return c(s[t][1][e]||e)},i,i.exports,a,s,l,o)}return l[t].exports}for(var u="function"==typeof require&&require,e=0;e<o.length;e++)c(o[e]);return c}({1:[function(e,t,r){"use strict";t.exports={bindings:{parentCtrl:"<"},controllerAs:"ctrl",controller:[function(){var e=this;console.log(e),e.view=e.parentCtrl.accountLinksService.vid.replace(":","-")}],template:'<div ng-if="ctrl.parentCtrl.tabName==\'personalsettings\'"><img width="20px" ng-src="/discovery/custom/{{ ctrl.view }}/img/information.png" /> {{ \'switchEduID\' | customTranslate | trustHtml }} <a href="https://eduid.ch">https://eduid.ch</a></div>'}},{}],2:[function(e,t,r){"use strict";angular.module("accountModule",["angularLoad"]).component("prmAccountLinksAfter",e("./accountlinks.component.js"))},{"./accountlinks.component.js":1}],3:[function(e,t,r){"use strict";angular.module("customTranslateFilter",[]).filter("customTranslate",["$translate",function(r){return function(e){var t={costWarningScan:{fr:'<b><span class="bigfont" style="font-size:20px">Service payant:</span></b><b> les collaborateurs et les étudiants de l’EPFL peuvent bénéficier de ce service gratuitement, en utilisant le formulaire:</b>',en:'<b><span class="bigfont" style="font-size:20px">Fee-based service:</span></b><b> EPFL employees and students can benefit from this service free of charge by using the form:</b>',de:'<b><span class="bigfont" style="font-size:20px">Kostenpflichtiger Service:</span></b><b> Mitarbeitern und Studenten der EPFL steht dieser Dienst über das Fernleihe-Formular gratis zur Verfügung.</b>',it:'<b><span class="bigfont" style="font-size:20px">Servizio a pagamento:</span></b><b> I dipendenti e gli studenti dell\'EPFL possono usufruire gratuitamente di questo servizio utilizzando il modulo:</b>'},costWarningScanEPFL:{fr:"<b>Service gratuit pour les collaborateurs et les étudiants EPFL.</b>",en:"<b>Free of charge for EPFL staff and students.</b>",de:"<b>Service für Mitarbeiter und Studenten der EPFL kostenlos</b>",it:"<b>Servizio gratuito per i dipendenti e gli studenti dell’EPFL.<b>"},costWarningNetworkLoan:{fr:"<b>Service gratuit en cas de retrait à la Bibliothèque de l’EPFL.</b>",en:"<b>Free of charge if withdrawal at the EPFL Library.</b>",de:"<b>Service bei Abholung in der EPFL-Bibliothek kostenlos.</b>",it:"<b>Servizio gratuito in caso di ritiro alla Biblioteca dell’EPFL</b>"},costWarningPEB:{fr:"<b>Service gratuit pour les collaborateurs et les étudiants de l’EPFL.</b> Avant de passer une commande d’un document physique via le prêt entre bibliothèques, merci de vous assurer que ce document n'est pas disponible dans d’autres bibliothèques du réseau SLSP dans swisscovery.",en:"<b>Free of charge for EPFL staff and students.</b> Before placing an order for a physical document via the interlibrary loan, please make sure that this document is not available in other SLSP network libraries on swisscovery.",de:"<b>Kostenloser Service für Mitarbeiter und Studenten der EPFL.</b> Bevor Sie ein Medium über die Fernleihe bestellen, vergewissern Sie sich bitte zunächst in swisscovery, dass es nicht in einer anderen Bibliothek des SLSP-Netzwerks verfügbar ist.",it:"<b>Servizio gratuito per i dipendenti e gli studenti dell’EPFL.</b> Prima di ordinare un documento cartaceo tramite il prestito interbibliotecario, assicuratevi che questo documento non sia disponibile in altre biblioteche della rete SLSP in swisscovery."},mainTitle:{fr:"Catalogue BEAST",en:"BEAST discovery tool",de:"BEAST Wissensportal",it:"Catalogo BEAST"},subTitle:{fr:"Le point d'accès à toutes les ressources de la Bibliothèque de l'EPFL",en:"The access portal to all the resources of the EPFL Library",de:"Der Zugangspunkt zu allen Ressourcen der EPFL Bibliothek",it:"Il punto d’accesso a tutte le risorse della Biblioteca dell’EPFL"},switchEduID:{fr:"Modifier vos informations personnelles sur",en:"Change your personal data on",de:"Ändern Sie Ihre persönlichen Daten auf",it:"Modifica i tuoi dati personali sul"},illButton:{fr:"Prêt entre bibliothèques (PEB)",en:"Inter Library Loan (ILL)",de:"Fernleihe",it:"Prestito interbibliotecario"}};return["en","fr","it","de"].includes(r.use())?t[e][r.use()]:t[e].fr}}])},{}],4:[function(e,t,r){"use strict";angular.module("trustHtmlFilter",[]).filter("trustHtml",["$sce",function(t){return function(e){return t.trustAsHtml(e)}}])},{}],5:[function(e,t,r){"use strict";t.exports={active:!0,txt:{fr:'<div class="info-symbol" style="text-align:left">\n <div><p>Le réseau NEBIS a pris fin le 7 décembre 2020 pour être remplacé par un nouveau réseau plus vaste : <a class="md-primoExplore-theme" href="https://slsp.ch/fr">swisscovery</a></p></div>\n </div>',en:'<div class="info-symbol" style="text-align:left">\n <div><p>The NEBIS network ended on December 7, 2020. It has been replaced by <a class="md-primoExplore-theme" href="https://slsp.ch/it">swisscovery</a>: a new and wider network.</p></div>\n </div>',de:'<div class="info-symbol" style="text-align:left">\n <div><p>Das NEBIS-Netzwerk wurde am 07.12.2020 abgeschaltet und durch ein neues, grösseres Netzwerk ersetzt: <a class="md-primoExplore-theme" href="https://slsp.ch/de">swisscovery</a></p></div>\n </div>',it:'<div class="info-symbol" style="text-align:left">\n <div><p>La rete NEBIS è stata sciolta il 7 dicembre 2020 per essere sostituita da una rete piú ampia di biblioteche: <a class="md-primoExplore-theme" href="https://slsp.ch/it">swisscovery</a></p></div>\n </div>'},begin:"2020-01-04T00:00:00Z",end:"2021-03-31T12:00:00Z"}},{}],6:[function(e,t,r){"use strict";angular.module("homepageModule",["angularLoad"]).component("prmSearchBarAfter",e("./searchbar.component.js"))},{"./searchbar.component.js":7}],7:[function(n,e,t){"use strict";e.exports={bindings:{parentCtrl:"<"},template:'<div class="epfl-alert-message" ng-if="ctrl.active" ng-bind-html="ctrl.get_txt() "></div>',controllerAs:"ctrl",controller:["$translate",function(t){var r=this;if(r.alert=n("./alert.js"),!(r.active=!1)===r.alert.active){var e=Date.now();new Date(r.alert.begin)<e&&e<new Date(r.alert.end)&&(r.active=!0)}r.get_txt=function(){var e=["en","fr","it","de"].includes(t.use())?t.use():"en";return r.active?r.alert.txt[e]:""},r.parentCtrl.showTabsAndScopes=!0}]}},{"./alert.js":5}],8:[function(e,t,r){"use strict";e("./slsp/epfl_custom_slsp.js"),e("./homepage/index.js"),e("./filters/custom_translate.filter.js"),e("./filters/trust_html.filter.js"),e("./account/index.js"),angular.module("viewCustom",["angularLoad","centralCustom","homepageModule","customTranslateFilter","trustHtmlFilter","accountModule"])},{"./account/index.js":2,"./filters/custom_translate.filter.js":3,"./filters/trust_html.filter.js":4,"./homepage/index.js":6,"./slsp/epfl_custom_slsp.js":9}],9:[function(e,t,r){"use strict";var n;(n=angular.module("centralCustom",["angularLoad"])).controller("CourierInfoController",["$filter","$element",function(a,e,t,r,n){var s=this;this.form=e[0].parentElement,this.$doCheck=function(){var e=!1;if(void 0!==this.form.children[1].children[1]&&void 0!==this.form.children[1].children[1].children[0]?e=this.form.children[1].children[1].children[0]:void 0!==this.form.children[1].children[0]&&void 0!==this.form.children[1].children[0].children[0]&&(e=this.form.children[1].children[0].children[0]),e&&2==e.children.length||s.hasOwnProperty("currentTypeFeeAlert")&&s.currentTypeFeeAlert!=s.typeFeeAlert()){s.currentTypeFeeAlert=s.typeFeeAlert();var t='<div class="courier-info bar alert-bar"><p>'+s.getFeeAlert()+"</p>";if("costWarningScan"==s.typeFeeAlert()){var r=a("customTranslate")("illButton");if(s.get_peb_button())var n="javascript:(function() {\n for (var elem of document.getElementsByTagName('span')) {\n if (elem.getAttribute('translate') === 'AlmaResourceSharing' &&\n elem.parentNode.className.indexOf('greenbutton') === -1)\n {\n elem.click();\n break;\n }\n };})()";else n="javascript:(function() {window.location.href = window.location.origin + '/discovery/blankIll?vid="+s.parentCtrl.vid+"'})()";t+='<p><span class="button-confirm md-button md-primoExplore-theme md-ink-ripple" onclick="'+n+'" ">'+r+"</span></p>"}t+='<p><a href="'+this.parentCtrl.$translate.instant("customize.fullview.feesUrl")+'" target="_blank">'+this.parentCtrl.$translate.instant("customize.fullview.feesLinkText")+"</a></p></div>";var i=angular.element(t)[0];2==e.children.length?e.insertBefore(i,e.children[1]):e.children[1].replaceWith(i)}},Object.defineProperty(s.parentCtrl,"form",{configurable:!0,get:function(){var e=this.getFilteredForm(["label","multiLabel"],!1);if(!s.hasOwnProperty("pickupLocationsListOrdered"))for(var t=0;t<e.length;t++)if("pickupInstitution"==e[t].key){e[t].options.sort(function(e,t){var r=["41SLSP_EPF","41SLSP_EPFL"];return(e=r.indexOf(e.value))==(t=r.indexOf(t.value))?0:e<t?1:-1}),s.pickupLocationsListOrdered=!0}return e}}),s.isEPFL=function(){return!!(s.parentCtrl.requestService&&0<s.parentCtrl.requestService._service["link-to-service"].indexOf("institution=41SLSP_EPF"))},s.linkBase="https://slsp.ch/fees",s.typeFeeAlert=function(){return["almaRequest.header","almaRequestOther.header","almaItemRequest.header"].includes(s.parentCtrl.requestHeader)?"costWarningNetworkLoan":["almaDigitization.header","almaDigitizationOther.header","almaItemDigitization.header"].includes(s.parentCtrl.requestHeader)?s.isEPFL()?"costWarningScanEPFL":"costWarningScan":"almaResourceSharing.header"===s.parentCtrl.requestHeader?"costWarningPEB":"costWarningGeneral"},s.getFeeAlert=function(){return a("customTranslate")(s.typeFeeAlert())},s.get_peb_button=function(){for(var e=document.getElementsByTagName("span"),t=0,r=e.length;t<r;t++)if("AlmaResourceSharing"===e[t].getAttribute("translate")&&-1===e[t].parentNode.className.indexOf("greenbutton"))return e[t]},s.click_peb=function(){var e=s.get_peb_button();e?e.click():window.location.href=window.location.origin+"/discovery/blankIll?vid="+s.parentCtrl.vid}}]),n.component("prmRequestAfter",{bindings:{parentCtrl:"<"},controller:"CourierInfoController"}),n.controller("LibInfoController",[function(){var e=this;e.biblinkText="Library",e.biblinkBase="https://slsp.ch/libraries",e.getLibraryUrl=function(){return e.parentCtrl.loc&&"E02"===e.parentCtrl.loc.location.libraryCode?"https://go.epfl.ch/library":e.biblinkBase},e.view=e.parentCtrl.configurationUtil.vid.replace(":","-"),e.getLibrary=function(){return e.parentCtrl.currLoc?e.parentCtrl.currLoc.location.librarycodeTranslation:""}}]),n.component("prmLocationItemsAfter",{bindings:{parentCtrl:"<"},controller:"LibInfoController",controllerAs:"ctrl",template:'<div layout="row" class="LibInfo" layout-align="start center"><span class="md-subhead"><a ng-href="{{ ctrl.getLibraryUrl() }}" target="_blank"><img width="20px" ng-src="/discovery/custom/{{ ctrl.view }}/img/information.png" />{{ ctrl.getLibrary() }}</a></span></div>'}),n.service("userService",["jwtHelper",function(r){this.isGuest=function(){var e=sessionStorage.getItem("primoExploreJwt");if(!e)return!0;var t=r.decodeToken(e);return!("GUEST"!==t.userGroup?t.userName:"")}}]),n.controller("IllBoxController",["$scope","userService",function(e,t){return e.usrNme=t.isGuest(),1!=e.usrNme?angular.element(document.querySelector("primo-explore")).removeClass("logged-out"):angular.element(document.querySelector("primo-explore")).addClass("logged-out")}]),n.component("prmUserAreaExpandableAfter",{bindings:{parentCtrl:"<"},controller:"IllBoxController",template:""}),n.component("prmTopbarAfter",{bindings:{parentCtrl:"<"},template:"<div class=\"main-title\"><h1><a href=\"{{ starturl }}\">{{ 'mainTitle' | customTranslate }}</a></h1><h2>{{ 'subTitle' | customTranslate }}</h2></div>"}),n.controller("AlertMsgController",["$scope",function(e){var r=this;r.getAlert=function(){var e=r.parentCtrl.almaHowToGetitService.reqAlert._htmlMsg,t=angular.element(document.querySelector("primo-explore"));return 0<e.length?t.addClass("alert"):t.removeClass("alert")}}]),n.component("almaHowovpAfter",{bindings:{parentCtrl:"<"},controller:"AlertMsgController",template:'<div style="display:none">{{$ctrl.getAlert()}}</div>'})},{}]},{},[8]);
-//# sourceMappingURL=custom.js.map
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/js/custom.js.map b/primo-explore/custom/41SLSP_HPH-EPFL/js/custom.js.map
deleted file mode 100644
index c6a5037..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/js/custom.js.map
+++ /dev/null
@@ -1 +0,0 @@
-{"version":3,"sources":["node_modules/browser-pack/_prelude.js","primo-explore/custom/41SLSP_EPF-prod/js/account/accountlinks.component.js","primo-explore/custom/41SLSP_EPF-prod/js/account/index.js","primo-explore/custom/41SLSP_EPF-prod/js/filters/custom_translate.filter.js","primo-explore/custom/41SLSP_EPF-prod/js/filters/trust_html.filter.js","primo-explore/custom/41SLSP_EPF-prod/js/homepage/alert.js","primo-explore/custom/41SLSP_EPF-prod/js/homepage/index.js","primo-explore/custom/41SLSP_EPF-prod/js/homepage/searchbar.component.js","primo-explore/custom/41SLSP_EPF-prod/js/main.js","primo-explore/custom/41SLSP_EPF-prod/js/slsp/epfl_custom_slsp.js"],"names":["r","e","n","t","o","i","f","c","require","u","a","Error","code","p","exports","call","length","1","module","bindings","parentCtrl","controllerAs","controller","vm","this","console","log","view","accountLinksService","vid","replace","template","angular","component","filter","$translate","txt","trad","costWarningScan","fr","en","de","it","costWarningScanEPFL","costWarningNetworkLoan","costWarningPEB","mainTitle","subTitle","switchEduID","illButton","includes","use","$sce","trustAsHtml","active","begin","end","alert","d_now","Date","now","get_txt","lang","showTabsAndScopes","app","$filter","$element","$compile","$scope","$rootScope","form","parentElement","$doCheck","undefined","children","hasOwnProperty","currentTypeFeeAlert","typeFeeAlert","htmlwarning","getFeeAlert","get_peb_button","fn","instant","htmlcompiled","element","insertBefore","replaceWith","Object","defineProperty","configurable","get","getFilteredForm","key","options","sort","b","onTopInstitutions","indexOf","value","isEPFL","requestService","_service","linkBase","requestHeader","allElements","document","getElementsByTagName","getAttribute","parentNode","className","click_peb","button","click","window","location","href","origin","biblinkText","biblinkBase","getLibraryUrl","loc","libraryCode","configurationUtil","getLibrary","currLoc","librarycodeTranslation","service","jwtHelper","isGuest","jwt","sessionStorage","getItem","decodedToken","decodeToken","userGroup","userName","userService","usrNme","querySelector","removeClass","addClass","getAlert","ga","almaHowToGetitService","reqAlert","_htmlMsg","myEl2"],"mappings":"CAAA,SAAAA,EAAAC,EAAAC,EAAAC,GAAA,SAAAC,EAAAC,EAAAC,GAAA,IAAAJ,EAAAG,GAAA,CAAA,IAAAJ,EAAAI,GAAA,CAAA,IAAAE,EAAA,mBAAAC,SAAAA,QAAA,IAAAF,GAAAC,EAAA,OAAAA,EAAAF,GAAA,GAAA,GAAAI,EAAA,OAAAA,EAAAJ,GAAA,GAAA,IAAAK,EAAA,IAAAC,MAAA,uBAAAN,EAAA,KAAA,MAAAK,EAAAE,KAAA,mBAAAF,EAAA,IAAAG,EAAAX,EAAAG,GAAA,CAAAS,QAAA,IAAAb,EAAAI,GAAA,GAAAU,KAAAF,EAAAC,QAAA,SAAAd,GAAA,OAAAI,EAAAH,EAAAI,GAAA,GAAAL,IAAAA,IAAAa,EAAAA,EAAAC,QAAAd,EAAAC,EAAAC,EAAAC,GAAA,OAAAD,EAAAG,GAAAS,QAAA,IAAA,IAAAL,EAAA,mBAAAD,SAAAA,QAAAH,EAAA,EAAAA,EAAAF,EAAAa,OAAAX,IAAAD,EAAAD,EAAAE,IAAA,OAAAD,EAAA,CAAA,CAAAa,EAAA,CAAA,SAAAT,EAAAU,EAAAJ,GCAA,aAQAI,EAAOJ,QAAU,CACbK,SAAU,CAACC,WAAY,KACvBC,aAAc,OACdC,WAAY,CAAC,WACT,IAAIC,EAAKC,KACTC,QAAQC,IAAIH,GACZA,EAAGI,KAAOJ,EAAGH,WAAWQ,oBAAoBC,IAAIC,QAAQ,IAAK,OAGjEC,SAAA,kSChBqBC,QAAQd,OAAO,gBAAiB,CAAC,gBACvCe,UAAU,uBAAwBzB,EAAQ,uFCF7D,aAoCkCwB,QAAQd,OAAO,wBAAyB,IACjEgB,OAAO,kBAAmB,CAAC,aAAc,SAASC,GACnD,OAAO,SAASC,GACZ,IAAIC,EAAO,CAEPC,gBAAgB,CACZC,GAAI,6MACJC,GAAI,mLACJC,GAAI,yMACJC,GAAI,4MAERC,oBAAoB,CAChBJ,GAAI,wEACJC,GAAI,qDACJC,GAAI,kEACJC,GAAI,sEAERE,uBAAuB,CACnBL,GAAI,wEACJC,GAAI,2DACJC,GAAI,gEACJC,GAAI,wEAERG,eAAe,CACXN,GAAI,0RACJC,GAAI,qOACJC,GAAI,yPACJC,GAAI,kQAERI,UAAU,CACNP,GAAI,kBACJC,GAAI,uBACJC,GAAI,sBACJC,GAAI,kBAERK,SAAS,CACLR,GAAI,wEACJC,GAAI,6DACJC,GAAI,2DACJC,GAAI,oEAERM,YAAY,CACRT,GAAI,6CACJC,GAAI,+BACJC,GAAI,yCACJC,GAAI,sCAERO,UAAU,CACNV,GAAI,iCACJC,GAAI,2BACJC,GAAI,YACJC,GAAI,gCAGZ,MAAI,CAAC,KAAM,KAAM,KAAM,MAAMQ,SAASf,EAAWgB,OACtCd,EAAKD,GAAKD,EAAWgB,OAErBd,EAAKD,GAAKG,+BC7FjC,aAYAP,QAAQd,OAAO,kBAAmB,IAC7BgB,OAAO,YAAa,CAAC,OAAQ,SAASkB,GACvC,OAAO,SAAShB,GACZ,OAAOgB,EAAKC,YAAYjB,4CCfhClB,EAAOJ,QAAU,CAACwC,QAAQ,EACzBlB,IACG,CAACG,GAAA,kRAGAC,GAAA,6QAGAC,GAAA,mRAGAC,GAAA,4RAGJa,MAAM,uBACNC,IAAI,6DCdqBxB,QAAQd,OAAO,iBAAkB,CAAC,gBACxCe,UAAU,oBAAqBzB,EAAQ,iFCF3D,aASAU,EAAOJ,QAAU,CACTK,SAAU,CAACC,WAAY,KACvBW,SAAU,4FACVV,aAAc,OACdC,WAAY,CAAC,aAAc,SAASa,GAEhC,IAAIZ,EAAKC,KAaT,GANAD,EAAGkC,MAAQjD,EAAQ,gBAGnBe,EAAG+B,QAAS,KAGR/B,EAAGkC,MAAMH,OAAgB,CAGzB,IAAII,EAAQC,KAAKC,MACZ,IAAID,KAAKpC,EAAGkC,MAAMF,OAASG,GAAWA,EAAQ,IAAIC,KAAKpC,EAAGkC,MAAMD,OAEjEjC,EAAG+B,QAAS,GAKpB/B,EAAGsC,QAAU,WACT,IAAIC,EAAO,CAAC,KAAM,KAAM,KAAM,MAAMZ,SAASf,EAAWgB,OAAShB,EAAWgB,MAAM,KAClF,OAAO5B,EAAG+B,OAAS/B,EAAGkC,MAAMrB,IAAI0B,GAAQ,IAQ5CvC,EAAGH,WAAW2C,mBAAoB,wDC3C9CvD,EAAA,8BACAA,EAAA,uBACAA,EAAA,wCACAA,EAAA,kCACAA,EAAA,sBAEUwB,QAAQd,OAAO,aAAc,CAAC,cAAe,gBAAiB,iBAAkB,wBAAyB,kBAAmB,gNCZtI,IAGQ8C,GAAAA,EAAMhC,QAAQd,OAAO,gBAAiB,CAAC,iBAgBvCI,WAAW,wBAAyB,CAAC,UAAW,WAAY,SAAU2C,EAASC,EAAUC,EAAUC,EAAQC,GAC3G,IAAI9C,EAAKC,KAGTA,KAAK8C,KAAOJ,EAAS,GAAGK,cAGxB/C,KAAKgD,SAAW,WACZ,IAAIF,GAAO,EAYX,QAX0CG,IAAtCjD,KAAK8C,KAAKI,SAAS,GAAGA,SAAS,SACeD,IAAlDjD,KAAK8C,KAAKI,SAAS,GAAGA,SAAS,GAAGA,SAAS,GACvCJ,EAAO9C,KAAK8C,KAAKI,SAAS,GAAGA,SAAS,GAAGA,SAAS,QAEPD,IAAtCjD,KAAK8C,KAAKI,SAAS,GAAGA,SAAS,SACUD,IAAlDjD,KAAK8C,KAAKI,SAAS,GAAGA,SAAS,GAAGA,SAAS,KACvCJ,EAAO9C,KAAK8C,KAAKI,SAAS,GAAGA,SAAS,GAAGA,SAAS,IAKlDJ,GAAgC,GAAxBA,EAAKI,SAAS1D,QAAeO,EAAGoD,eAAe,wBAC3DpD,EAAGqD,qBAAuBrD,EAAGsD,eAAgB,CACzCtD,EAAGqD,oBAAsBrD,EAAGsD,eAC5B,IAAIC,EAAA,8CAA4DvD,EAAGwD,cAA/D,OACJ,GAAuB,mBAAnBxD,EAAGsD,eAAmC,CACtC,IAAIzC,EAAM6B,EAAQ,kBAARA,CAA2B,aACrC,GAAI1C,EAAGyD,iBACH,IAAIC,EAAA,+dAUAA,EAAA,oGAAyG1D,EAAGH,WAAWS,IAAvH,QAIRiD,GAAA,2FAA0GG,EAA1G,OAAmH7C,EAAnH,cAGJ0C,GAAA,eAA8BtD,KAAKJ,WAAWe,WAAW+C,QAAQ,8BAAjE,qBAAmH1D,KAAKJ,WAAWe,WAAW+C,QAAQ,mCAAtJ,iBACA,IAAIC,EAAenD,QAAQoD,QAAQN,GAAa,GACpB,GAAxBR,EAAKI,SAAS1D,OACdsD,EAAKe,aAAaF,EAAcb,EAAKI,SAAS,IAE9CJ,EAAKI,SAAS,GAAGY,YAAYH,KASzCI,OAAOC,eAAejE,EAAGH,WAAY,OAAQ,CACzCqE,cAAc,EACdC,IAAK,WAEG,IAAIpB,EAAO9C,KAAKmE,gBAAgB,CAAC,QAAS,eAAe,GACzD,IAAKpE,EAAGoD,eAAe,8BACnB,IAAK,IAAItE,EAAI,EAAGA,EAAIiE,EAAKtD,OAAQX,IAC7B,GAAmB,qBAAfiE,EAAKjE,GAAGuF,IAA2B,CAQnCtB,EAAKjE,GAAGwF,QAAQC,KAPhB,SAAkBpF,EAAGqF,GACjB,IAAIC,EAAoB,CAAC,aAAc,eAGvC,OAFAtF,EAAIsF,EAAkBC,QAAQvF,EAAEwF,UAChCH,EAAIC,EAAkBC,QAAQF,EAAEG,QACZ,EACbxF,EAAIqF,EAAI,GAAK,IAGxBxE,EAAA,4BAAmC,EAI/C,OAAO+C,KAMnB/C,EAAG4E,OAAS,WACR,SAAO5E,EAAGH,WAAWgF,gBAA+G,EAA7F7E,EAAGH,WAAWgF,eAAeC,SAAS,mBAAmBJ,QAAQ,4BAG5G1E,EAAG+E,SAAW,uBAGd/E,EAAGsD,aAAe,WAEd,MAAI,CAAC,qBAAsB,0BAA2B,0BAA0B3B,SAAS3B,EAAGH,WAAWmF,eAC5F,yBACA,CAAC,0BACA,+BACA,+BACKrD,SAAS3B,EAAGH,WAAWmF,eAC7BhF,EAAG4E,SAAW,sBAAwB,kBACN,+BAAhC5E,EAAGH,WAAWmF,cACd,iBAEA,sBAGfhF,EAAGwD,YAAc,WAEb,OAAOd,EAAQ,kBAARA,CAA2B1C,EAAGsD,iBAIzCtD,EAAGyD,eAAiB,WAEhB,IADA,IAAIwB,EAAcC,SAASC,qBAAqB,QACvCrG,EAAI,EAAGH,EAAIsG,EAAYxF,OAAQX,EAAIH,EAAGG,IAC3C,GAAiD,wBAA7CmG,EAAYnG,GAAGsG,aAAa,eACoC,IAAhEH,EAAYnG,GAAGuG,WAAWC,UAAUZ,QAAQ,eAE5C,OAAOO,EAAYnG,IAsB/BkB,EAAGuF,UAAY,WACX,IAAIC,EAASxF,EAAGyD,iBACZ+B,EACCA,EAAOC,QAERC,OAAOC,SAASC,KAAOF,OAAOC,SAASE,OAAS,2BAA6B7F,EAAGH,WAAWS,QAWvGmC,EAAI/B,UAAU,kBAAmB,CAC7Bd,SAAU,CAAEC,WAAY,KACxBE,WAAY,0BA0BhB0C,EAAI1C,WAAW,oBAAqB,CAAC,WACjC,IAAIC,EAAKC,KACTD,EAAG8F,YAAc,UACjB9F,EAAG+F,YAAc,4BAEjB/F,EAAGgG,cAAgB,WACf,OAAIhG,EAAGH,WAAWoG,KAAgD,QAAzCjG,EAAGH,WAAWoG,IAAIN,SAASO,YACzC,6BAEAlG,EAAG+F,aAGlB/F,EAAGI,KAAOJ,EAAGH,WAAWsG,kBAAkB7F,IAAIC,QAAQ,IAAK,KAC3DP,EAAGoG,WAAa,WAEZ,OAAOpG,EAAGH,WAAWwG,QAAUrG,EAAGH,WAAWwG,QAAQV,SAASW,uBAAyB,OAK/F7D,EAAI/B,UAAU,wBAAyB,CACnCd,SAAU,CAAEC,WAAY,KACxBE,WAAY,oBACZD,aAAc,OACdU,SAAA,+QAMLiC,EAAI8D,QAAQ,cAAe,CAAC,YAAa,SAAUC,GAC/CvG,KAAKwG,QAAU,WACX,IAAIC,EAAMC,eAAeC,QAAQ,mBACjC,IAAKF,EACD,OAAO,EAEX,IAAIG,EAAeL,EAAUM,YAAYJ,GAEzC,QAD0C,UAA3BG,EAAaE,UAAwBF,EAAaG,SAAW,QAWpFvE,EAAI1C,WAAW,mBAAoB,CAAC,SAAU,cAAe,SAAU8C,EAAQoE,GAI3E,OAFApE,EAAOqE,OAASD,EAAYR,UAEP,GAAjB5D,EAAOqE,OAMIzG,QAAQoD,QAAQqB,SAASiC,cAAc,kBACtCC,YAAY,cANb3G,QAAQoD,QAAQqB,SAASiC,cAAc,kBACtCE,SAAS,iBAW7B5E,EAAI/B,UAAU,6BAA8B,CACxCd,SAAU,CAAEC,WAAY,KACxBE,WAAY,mBACZS,SAAU,KAGbiC,EAAI/B,UAAU,iBAAkB,CAC5Bd,SAAU,CAAEC,WAAY,KAExBW,SAAA,2JAMJiC,EAAI1C,WAAW,qBAAsB,CAAC,SAAU,SAAU8C,GACtD,IAAI7C,EAAKC,KACTD,EAAGsH,SAEH,WACI,IAAIC,EAAKvH,EAAGH,WAAW2H,sBAAsBC,SAASC,SAClDC,EAAQlH,QAAQoD,QAAQqB,SAASiC,cAAc,kBAEnD,OAAgB,EAAZI,EAAG9H,OACIkI,EAAMN,SAAS,SAKfM,EAAMP,YAAY,aAOrC3E,EAAI/B,UAAU,kBAAmB,CAC7Bd,SAAU,CAAEC,WAAY,KACxBE,WAAY,qBACZS,SAAU","file":"custom.js","sourcesContent":["(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c=\"function\"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error(\"Cannot find module '\"+i+\"'\");throw a.code=\"MODULE_NOT_FOUND\",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u=\"function\"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()","\"use strict\";\r\n\r\n/*\r\n OBJECTIF: Ajouter le lien vers SWITCH edu-ID.\r\n REMARQUES: contient juste les liens vers SWITCH edu-ID et vers\r\n l'application de changement des code-barres.\r\n*/\r\n\r\nmodule.exports = {\r\n bindings: {parentCtrl: '<'},\r\n controllerAs: 'ctrl',\r\n controller: [function() {\r\n var vm = this;\r\n console.log(vm);\r\n vm.view = vm.parentCtrl.accountLinksService.vid.replace(':', '-');\r\n\r\n }],\r\n template: `<div ng-if=\"ctrl.parentCtrl.tabName=='personalsettings'\"><img width=\"20px\" ng-src=\"/discovery/custom/{{ ctrl.view }}/img/information.png\" /> {{ 'switchEduID' | customTranslate | trustHtml }} <a href=\\\"https://eduid.ch\\\">https://eduid.ch</a></div>`\r\n};\r\n","(function () {\r\n var account_module = angular.module('accountModule', ['angularLoad']);\r\n account_module.component('prmAccountLinksAfter', require('./accountlinks.component.js'));\r\n})()\r\n","\"use strict\";\r\n\r\n/***********************/\r\n/* FILTRE : traduction */\r\n/***********************/\r\n\r\n/*\r\n OBJECTIF: traduire des éléments, tant des urls que du texte.\r\n UTILISATION:\r\n - Dans le template:\r\n 1. comme un filtre: {{ clé | customTranslate }}\r\n - Dans un controlleur:\r\n Même si les filtres sont d'abord prévus pour être utilisés dans le\r\n template, on peut les appeler dans les controlleurs.\r\n 1. Ajouter le service dans l'en-tête du controlleur\r\n 2. Appeler le service avec la fonction $filter\r\n EXEMPLE:\r\n controller:function($http, $filter){...\r\n var traduction = $filter('customTranslate')('cleTrad');\r\n ...}\r\n CONFIGURATION:\r\n L'ajout de traduction se fait à travers des objets. La clé indique le\r\n terme à utiliser dans le template ou le controlleur pour ensuite\r\n renvoyer la traduction. Les noms associés n'appaaraissent donc pas tels\r\n quels. La structure de chaque élément traduit disponible est comme suit:\r\n clé1:{\r\n fr: traductionFrançaise\r\n en: traductionAnglaise\r\n },\r\n clé2:{\r\n fr: traductionFrançaise\r\n en: traductionAnglaise\r\n }\r\n*/\r\n(function () {\r\n\r\n var custom_translate_module = angular.module('customTranslateFilter', [])\r\n .filter('customTranslate', ['$translate', function($translate){\r\n return function(txt){\r\n var trad = {\r\n\r\n costWarningScan:{\r\n fr: \"<b><span class=\\\"bigfont\\\" style=\\\"font-size:20px\\\">Service payant:</span></b><b> les collaborateurs et les étudiants de l’EPFL peuvent bénéficier de ce service gratuitement, en utilisant le formulaire:</b>\",\r\n en: \"<b><span class=\\\"bigfont\\\" style=\\\"font-size:20px\\\">Fee-based service:</span></b><b> EPFL employees and students can benefit from this service free of charge by using the form:</b>\",\r\n de: \"<b><span class=\\\"bigfont\\\" style=\\\"font-size:20px\\\">Kostenpflichtiger Service:</span></b><b> Mitarbeitern und Studenten der EPFL steht dieser Dienst über das Fernleihe-Formular gratis zur Verfügung.</b>\",\r\n it: \"<b><span class=\\\"bigfont\\\" style=\\\"font-size:20px\\\">Servizio a pagamento:</span></b><b> I dipendenti e gli studenti dell'EPFL possono usufruire gratuitamente di questo servizio utilizzando il modulo:</b>\"\r\n },\r\n costWarningScanEPFL:{\r\n fr: \"<b>Service gratuit pour les collaborateurs et les étudiants EPFL.</b>\",\r\n en: \"<b>Free of charge for EPFL staff and students.</b>\",\r\n de: \"<b>Service für Mitarbeiter und Studenten der EPFL kostenlos</b>\",\r\n it: \"<b>Servizio gratuito per i dipendenti e gli studenti dell’EPFL.<b>\"\r\n },\r\n costWarningNetworkLoan:{\r\n fr: \"<b>Service gratuit en cas de retrait à la Bibliothèque de l’EPFL.</b>\",\r\n en: \"<b>Free of charge if withdrawal at the EPFL Library.</b>\",\r\n de: \"<b>Service bei Abholung in der EPFL-Bibliothek kostenlos.</b>\",\r\n it: \"<b>Servizio gratuito in caso di ritiro alla Biblioteca dell’EPFL</b>\"\r\n },\r\n costWarningPEB:{\r\n fr: \"<b>Service gratuit pour les collaborateurs et les étudiants de l’EPFL.</b> Avant de passer une commande d’un document physique via le prêt entre bibliothèques, merci de vous assurer que ce document n'est pas disponible dans d’autres bibliothèques du réseau SLSP dans swisscovery.\",\r\n en: \"<b>Free of charge for EPFL staff and students.</b> Before placing an order for a physical document via the interlibrary loan, please make sure that this document is not available in other SLSP network libraries on swisscovery.\",\r\n de: \"<b>Kostenloser Service für Mitarbeiter und Studenten der EPFL.</b> Bevor Sie ein Medium über die Fernleihe bestellen, vergewissern Sie sich bitte zunächst in swisscovery, dass es nicht in einer anderen Bibliothek des SLSP-Netzwerks verfügbar ist.\",\r\n it: \"<b>Servizio gratuito per i dipendenti e gli studenti dell’EPFL.</b> Prima di ordinare un documento cartaceo tramite il prestito interbibliotecario, assicuratevi che questo documento non sia disponibile in altre biblioteche della rete SLSP in swisscovery.\"\r\n },\r\n mainTitle:{\r\n fr: \"Catalogue BEAST\",\r\n en: \"BEAST discovery tool\",\r\n de: \"BEAST Wissensportal\",\r\n it: \"Catalogo BEAST\"\r\n },\r\n subTitle:{\r\n fr: \"Le point d\\'accès à toutes les ressources de la Bibliothèque de l\\'EPFL\",\r\n en: \"The access portal to all the resources of the EPFL Library\",\r\n de: \"Der Zugangspunkt zu allen Ressourcen der EPFL Bibliothek\",\r\n it: \"Il punto d’accesso a tutte le risorse della Biblioteca dell’EPFL\"\r\n },\r\n switchEduID:{\r\n fr: \"Modifier vos informations personnelles sur\",\r\n en: \"Change your personal data on\",\r\n de: \"Ändern Sie Ihre persönlichen Daten auf\",\r\n it: \"Modifica i tuoi dati personali sul\"\r\n },\r\n illButton:{\r\n fr: \"Prêt entre bibliothèques (PEB)\",\r\n en: \"Inter Library Loan (ILL)\",\r\n de: \"Fernleihe\",\r\n it: \"Prestito interbibliotecario\"\r\n }\r\n };\r\n if (['en', 'fr', 'it', 'de'].includes($translate.use())) {\r\n return trad[txt][$translate.use()]\r\n } else {\r\n return trad[txt].fr\r\n }\r\n };\r\n }]);\r\n\r\n}) ()\r\n","\"use strict\";\r\n\r\n/***********************/\r\n/* FILTRE : traduction */\r\n/***********************/\r\n\r\n/*\r\n OBJECTIF: Permettre des balises html dans les champs.\r\n UTILISATION: S'utilise dans une balise comme un filtre.\r\n EXEMPLE: {{ variable | trustHtml }}\r\n*/\r\n(function () {\r\nangular.module('trustHtmlFilter', [])\r\n .filter('trustHtml', ['$sce', function($sce){\r\n return function(txt){\r\n return $sce.trustAsHtml(txt);\r\n };\r\n}]);\r\n}) ()\r\n","module.exports = {active: true,\r\n txt:\r\n {fr: `<div class=\"info-symbol\" style=\\\"text-align:left\\\">\r\n <div><p>Le réseau NEBIS a pris fin le 7 décembre 2020 pour être remplacé par un nouveau réseau plus vaste : <a class=\"md-primoExplore-theme\" href=\"https://slsp.ch/fr\">swisscovery</a></p></div>\r\n </div>`,\r\n en: `<div class=\"info-symbol\" style=\\\"text-align:left\\\">\r\n <div><p>The NEBIS network ended on December 7, 2020. It has been replaced by <a class=\"md-primoExplore-theme\" href=\"https://slsp.ch/it\">swisscovery</a>: a new and wider network.</p></div>\r\n </div>`,\r\n de: `<div class=\"info-symbol\" style=\\\"text-align:left\\\">\r\n <div><p>Das NEBIS-Netzwerk wurde am 07.12.2020 abgeschaltet und durch ein neues, grösseres Netzwerk ersetzt: <a class=\"md-primoExplore-theme\" href=\"https://slsp.ch/de\">swisscovery</a></p></div>\r\n </div>`,\r\n it: `<div class=\"info-symbol\" style=\\\"text-align:left\\\">\r\n <div><p>La rete NEBIS è stata sciolta il 7 dicembre 2020 per essere sostituita da una rete piú ampia di biblioteche: <a class=\"md-primoExplore-theme\" href=\"https://slsp.ch/it\">swisscovery</a></p></div>\r\n </div>`},\r\n begin:\"2020-01-04T00:00:00Z\",\r\n end:\"2021-03-31T12:00:00Z\"}\r\n","(function () {\r\n var homepage_module = angular.module('homepageModule', ['angularLoad']);\r\n homepage_module.component('prmSearchBarAfter', require('./searchbar.component.js'));\r\n})()\r\n","\"use strict\";\r\n\r\n/*\r\n OBJECTIFS:\r\n - Toujours afficher l'onglet pour modifier le scope\r\n - Afficher une alerte si les dates correspondent\r\n UTILISATION:\r\n Pour paramétrer l'alerte, il faut modifier le fichier alert.json (dans ce dossier)\r\n*/\r\nmodule.exports = {\r\n bindings: {parentCtrl: '<'},\r\n template: '<div class=\"epfl-alert-message\" ng-if=\"ctrl.active\" ng-bind-html=\"ctrl.get_txt() \"></div>',\r\n controllerAs: 'ctrl',\r\n controller: ['$translate', function($translate){\r\n\r\n var vm = this;\r\n\r\n /********************/\r\n /* MESSAGE D'ALERTE */\r\n /********************/\r\n\r\n // récupère le fichier json avec les paramètres de l'alerte\r\n vm.alert = require(\"./alert.js\");\r\n\r\n // par défaut, l'alerte n'est pas considérée comme active\r\n vm.active = false;\r\n\r\n // Vérifie dans le fichier json si une alerte est prévue\r\n if (vm.alert.active === true){\r\n\r\n // Teste si les dates correspondent pour l'affichage de l'alerte\r\n var d_now = Date.now();\r\n if ((new Date(vm.alert.begin) < d_now) && (d_now < new Date(vm.alert.end))) {\r\n // déclenche l'affichage de l'alerte\r\n vm.active = true;\r\n }\r\n }\r\n\r\n // getteur qui retourne le texte en fonction de la langue\r\n vm.get_txt = function(){\r\n var lang = ['en', 'fr', 'it', 'de'].includes($translate.use()) ? $translate.use():'en';\r\n return vm.active ? vm.alert.txt[lang] : \"\";\r\n }\r\n\r\n /*******************/\r\n /* SCOPE PERMANENT */\r\n /*******************/\r\n\r\n // Rendre permanent l'affichage des onglets permettant de sélectionnet le scope\r\n vm.parentCtrl.showTabsAndScopes = true;\r\n\r\n // console.log(vm.alert);\r\n }\r\n ]};\r\n","/************************/\r\n/* List of used modules */\r\n/************************/\r\n\r\n// Import central SLSP package ;\r\n// import { centralCustom } from './slsp/custom_slsp.js';\r\nimport { centralCustom } from './slsp/epfl_custom_slsp.js';\r\nimport { homepageModule } from './homepage/index.js';\r\nimport { customTranslateFilter } from './filters/custom_translate.filter.js';\r\nimport { trustHtmlFilter } from './filters/trust_html.filter.js';\r\nimport { accountModule } from './account/index.js';\r\n\r\nvar app = angular.module('viewCustom', ['angularLoad', 'centralCustom', 'homepageModule', 'customTranslateFilter', 'trustHtmlFilter', 'accountModule']);\r\n","(function () {\r\n\r\n\r\n var app = angular.module('centralCustom', ['angularLoad']);\r\n\r\n\r\n /*\r\n ## VERSION SLSP DU CONTROLLEUR ##\r\n # Ajoute le lien vers les amendes\r\n\r\n app.controller('CourierInfoController', [function () {\r\n var vm = this;\r\n vm.linkBase = \"https:\\/\\/slsp.ch\\/fees\";\r\n\r\n }]);\r\n */\r\n\r\n /* ## VERSION EPFL DU CONTROLLEUR ## */\r\n\r\n app.controller('CourierInfoController', ['$filter', '$element', function ($filter, $element, $compile, $scope, $rootScope) {\r\n var vm = this;\r\n\r\n //shortcut for convenience\r\n this.form = $element[0].parentElement;\r\n\r\n //function for inserting block\r\n this.$doCheck = function() {\r\n let form = false;\r\n if (this.form.children[1].children[1] !== undefined &&\r\n this.form.children[1].children[1].children[0] !== undefined) {\r\n form = this.form.children[1].children[1].children[0];\r\n }\r\n else if (this.form.children[1].children[0] !== undefined &&\r\n this.form.children[1].children[0].children[0] !== undefined) {\r\n form = this.form.children[1].children[0].children[0];\r\n }\r\n\r\n //create and insert info block if not present\r\n\r\n if (form && form.children.length == 2 || vm.hasOwnProperty('currentTypeFeeAlert') &&\r\n vm.currentTypeFeeAlert != vm.typeFeeAlert()) {\r\n vm.currentTypeFeeAlert = vm.typeFeeAlert();\r\n var htmlwarning = `<div class=\"courier-info bar alert-bar\"><p>${vm.getFeeAlert()}</p>`;\r\n if (vm.typeFeeAlert()=='costWarningScan') {\r\n var txt = $filter('customTranslate')('illButton');\r\n if (vm.get_peb_button()){\r\n var fn = `javascript:(function() {\r\n for (var elem of document.getElementsByTagName('span')) {\r\n if (elem.getAttribute('translate') === 'AlmaResourceSharing' &&\r\n elem.parentNode.className.indexOf('greenbutton') === -1)\r\n {\r\n elem.click();\r\n break;\r\n }\r\n };})()`;}\r\n else {\r\n var fn = `javascript:(function() {window.location.href = window.location.origin + '/discovery/blankIll?vid=${vm.parentCtrl.vid}'})()`;\r\n }\r\n\r\n\r\n htmlwarning += `<p><span class=\"button-confirm md-button md-primoExplore-theme md-ink-ripple\" onclick=\"${fn}\" \">${txt}</span></p>`;\r\n\r\n }\r\n htmlwarning += `<p><a href=\"${this.parentCtrl.$translate.instant('customize.fullview.feesUrl')}\" target=\"_blank\">${this.parentCtrl.$translate.instant('customize.fullview.feesLinkText')}</a></p></div>`;\r\n var htmlcompiled = angular.element(htmlwarning)[0];\r\n if (form.children.length == 2) {\r\n form.insertBefore(htmlcompiled, form.children[1]);\r\n } else {\r\n form.children[1].replaceWith(htmlcompiled);\r\n }\r\n }\r\n }\r\n\r\n\r\n\r\n\r\n // Remonte l'EPFL dans la liste des bibliothèques\r\n Object.defineProperty(vm.parentCtrl, \"form\", {\r\n configurable: !0,\r\n get: function(){\r\n // Mettre l'EPFL en première position\r\n var form = this.getFilteredForm(['label', 'multiLabel'], false);\r\n if (!vm.hasOwnProperty('pickupLocationsListOrdered')){\r\n for (var i = 0; i < form.length; i++){\r\n if (form[i].key == 'pickupInstitution'){\r\n function compare( a, b ){\r\n var onTopInstitutions = ['41SLSP_EPF', '41SLSP_EPFL'];\r\n a = onTopInstitutions.indexOf(a.value);\r\n b = onTopInstitutions.indexOf(b.value);\r\n if (a == b) {return 0};\r\n return a < b ? 1 : -1;\r\n }\r\n form[i].options.sort(compare);\r\n vm['pickupLocationsListOrdered'] = true;\r\n }\r\n }\r\n }\r\n return form;\r\n }\r\n }\r\n );\r\n\r\n // Vérifie si l'EPFL est la provenance de l'exemplaire sélectionné\r\n vm.isEPFL = function() {\r\n return vm.parentCtrl.requestService && vm.parentCtrl.requestService._service['link-to-service'].indexOf('institution=41SLSP_EPF') > 0 ? true : false;\r\n }\r\n\r\n vm.linkBase = \"https:\\/\\/slsp.ch\\/fees\";\r\n\r\n // Personnalisation du message des frais\r\n vm.typeFeeAlert = function() {\r\n // console.log(vm.parentCtrl.requestHeader);\r\n if (['almaRequest.header', 'almaRequestOther.header', 'almaItemRequest.header'].includes(vm.parentCtrl.requestHeader)) {\r\n return 'costWarningNetworkLoan'; // $filter('customTranslate')(costWarningNetworkLoan');\r\n } else if (['almaDigitization.header',\r\n 'almaDigitizationOther.header',\r\n 'almaItemDigitization.header']\r\n .includes(vm.parentCtrl.requestHeader)) {\r\n return vm.isEPFL() ? 'costWarningScanEPFL' : 'costWarningScan';\r\n } else if (vm.parentCtrl.requestHeader === 'almaResourceSharing.header') {\r\n return 'costWarningPEB';\r\n } else {\r\n return 'costWarningGeneral';\r\n }\r\n }\r\n vm.getFeeAlert = function() {\r\n // console.log(vm.typeFeeAlert());\r\n return $filter('customTranslate')(vm.typeFeeAlert());\r\n }\r\n\r\n // Récupère le bouton PEB de la page afin de simuler un clic dessus\r\n vm.get_peb_button = function(){\r\n var allElements = document.getElementsByTagName('span');\r\n for (var i = 0, n = allElements.length; i < n; i++) {\r\n if (allElements[i].getAttribute('translate') === 'AlmaResourceSharing' &&\r\n allElements[i].parentNode.className.indexOf('greenbutton') === -1)\r\n {\r\n return allElements[i];\r\n }\r\n }\r\n\r\n }\r\n // vm.get_request_button = function(){\r\n // var allElements = document.getElementsByTagName('prm-opac');\r\n // if (allElements.length === 0) { return null; }\r\n // var opac = allElements[0];\r\n // if (opac.closest('prm-alma-other-members')) { return null; }\r\n //\r\n // var buttons = opac.getElementsByTagName('span');\r\n // for (var i = 0, n = buttons.length; i < n; i++) {\r\n // if (buttons[i].getAttribute('translate') == 'AlmaRequest')\r\n // {\r\n // return buttons[i];\r\n // }\r\n // }\r\n // }\r\n\r\n // Fonction simulant un clic sur le bouton PEB quand on clique sur les\r\n // frais.\r\n vm.click_peb = function(){\r\n var button = vm.get_peb_button();\r\n if (button) {\r\n button.click();\r\n } else {\r\n window.location.href = window.location.origin + '/discovery/blankIll?vid=' + vm.parentCtrl.vid;\r\n }\r\n }\r\n // vm.click_request = function(){\r\n // vm.get_request_button().click();\r\n // }\r\n\r\n // console.log(vm);\r\n\r\n }]);\r\n\r\n app.component('prmRequestAfter', {\r\n bindings: { parentCtrl: '<' },\r\n controller: 'CourierInfoController',\r\n // template:\r\n // `<div layout=\"row\" class=\"courier-info feemsg alert-bar layout-align-center-center\" layout-align=\"center center\">\r\n // <img width=\"35px\" ng-src=\"/discovery/custom/41SLSP_EPF-prod/img/information.png\" />\r\n // <div>\r\n // <div ng-if=\"$ctrl.typeFeeAlert()!='costWarningScanEPFL'\">\r\n // <span class=\"md-subhead\">\r\n // <a href=\"{{ $ctrl.linkBase }}\" target=\"_blank\">\r\n // <span translate=\"customized.fulldisplay.fees\"></span>\r\n // </a>\r\n // </span>\r\n // </div>\r\n // <div>\r\n // <span ng-if=\"$ctrl.typeFeeAlert()!='costWarningGeneral'\" ng-bind-html=\"$ctrl.getFeeAlert() \"></span>\r\n // <span ng-if=\"$ctrl.typeFeeAlert()=='costWarningScan'\"><button class=\"greenbutton button-as-link md-button md-primoExplore-theme md-ink-ripple\" ng-click=\"$ctrl.click_peb()\"><span>{{ 'illButton' | customTranslate }}</span></button></span>\r\n // </div>\r\n //\r\n // </div>\r\n // </div>`\r\n });\r\n\r\n\r\n\r\n\r\n\r\n\r\n app.controller('LibInfoController', [function () {\r\n var vm = this;\r\n vm.biblinkText = \"Library\";\r\n vm.biblinkBase = \"https:\\/\\/slsp.ch\\/libraries\";\r\n\r\n vm.getLibraryUrl = function() {\r\n if (vm.parentCtrl.loc && vm.parentCtrl.loc.location.libraryCode==='E02') {\r\n return \"https://go.epfl.ch/library\";\r\n } else {\r\n return vm.biblinkBase;\r\n }\r\n }\r\n vm.view = vm.parentCtrl.configurationUtil.vid.replace(':', '-');\r\n vm.getLibrary = function() {\r\n // return vm.parentCtrl.currLoc.location.librarycodeTranslation;\r\n return vm.parentCtrl.currLoc ? vm.parentCtrl.currLoc.location.librarycodeTranslation : '';\r\n }\r\n\r\n }]);\r\n\r\n app.component('prmLocationItemsAfter', {\r\n bindings: { parentCtrl: '<' },\r\n controller: 'LibInfoController',\r\n controllerAs: 'ctrl',\r\n template: `<div layout=\"row\" class=\"LibInfo\" layout-align=\"start center\"><span class=\"md-subhead\"><a ng-href=\"{{ ctrl.getLibraryUrl() }}\" target=\"_blank\"><img width=\"20px\" ng-src=\"/discovery/custom/{{ ctrl.view }}/img/information.png\" />{{ ctrl.getLibrary() }}</a></span></div>`\r\n });\r\n\r\n\r\n\r\n //--------ILL Signin Order - if logged out ---------------------------------------\r\n app.service('userService', ['jwtHelper', function (jwtHelper) {\r\n this.isGuest = function () {\r\n var jwt = sessionStorage.getItem('primoExploreJwt');\r\n if (!jwt) {\r\n return true;\r\n }\r\n var decodedToken = jwtHelper.decodeToken(jwt);\r\n let userName = decodedToken.userGroup !== 'GUEST' ? decodedToken.userName : '';\r\n if (userName) {\r\n return false\r\n }\r\n else {\r\n return true;\r\n }\r\n }\r\n }])\r\n\r\n\r\n app.controller('IllBoxController', ['$scope', 'userService', function ($scope, userService) {\r\n\r\n $scope.usrNme = userService.isGuest();\r\n\r\n if ($scope.usrNme == true) {\r\n var myEl = angular.element(document.querySelector('primo-explore'));\r\n return myEl.addClass('logged-out')\r\n }\r\n\r\n else {\r\n var myEl = angular.element(document.querySelector('primo-explore'));\r\n return myEl.removeClass('logged-out');\r\n }\r\n\r\n\r\n }]);\r\n\r\n app.component('prmUserAreaExpandableAfter', {\r\n bindings: { parentCtrl: '<' },\r\n controller: 'IllBoxController',\r\n template: ''\r\n });\r\n\r\n app.component('prmTopbarAfter', {\r\n bindings: { parentCtrl: '<' },\r\n // controller: 'IllBoxController',\r\n template: `<div class=\"main-title\"><h1><a href=\"{{ starturl }}\">{{ 'mainTitle' | customTranslate }}</a></h1><h2>{{ 'subTitle' | customTranslate }}</h2></div>`\r\n });\r\n\r\n //----------------------------------------------------------------------------------------------\r\n\r\n\r\n app.controller('AlertMsgController', ['$scope', function ($scope) {\r\n var vm = this;\r\n vm.getAlert = getAlert\r\n\r\n function getAlert() {\r\n var ga = vm.parentCtrl.almaHowToGetitService.reqAlert._htmlMsg;\r\n var myEl2 = angular.element(document.querySelector('primo-explore'));\r\n\r\n if (ga.length > 0) {\r\n return myEl2.addClass('alert');\r\n\r\n }\r\n else {\r\n\r\n return myEl2.removeClass('alert');\r\n\r\n }\r\n }\r\n\r\n }]);\r\n\r\n app.component('almaHowovpAfter', {\r\n bindings: { parentCtrl: '<' },\r\n controller: 'AlertMsgController',\r\n template: '<div style=\"display:none\">{{$ctrl.getAlert()}}</div>'\r\n });\r\n\r\n\r\n\r\n})();\r\n"],"sourceRoot":"/source/"}
\ No newline at end of file
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/js/filters/custom_translate.filter.js b/primo-explore/custom/41SLSP_HPH-EPFL/js/filters/custom_translate.filter.js
deleted file mode 100644
index 50912cf..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/js/filters/custom_translate.filter.js
+++ /dev/null
@@ -1,99 +0,0 @@
-"use strict";
-
-/***********************/
-/* FILTRE : traduction */
-/***********************/
-
-/*
- OBJECTIF: traduire des éléments, tant des urls que du texte.
- UTILISATION:
- - Dans le template:
- 1. comme un filtre: {{ clé | customTranslate }}
- - Dans un controlleur:
- Même si les filtres sont d'abord prévus pour être utilisés dans le
- template, on peut les appeler dans les controlleurs.
- 1. Ajouter le service dans l'en-tête du controlleur
- 2. Appeler le service avec la fonction $filter
- EXEMPLE:
- controller:function($http, $filter){...
- var traduction = $filter('customTranslate')('cleTrad');
- ...}
- CONFIGURATION:
- L'ajout de traduction se fait à travers des objets. La clé indique le
- terme à utiliser dans le template ou le controlleur pour ensuite
- renvoyer la traduction. Les noms associés n'appaaraissent donc pas tels
- quels. La structure de chaque élément traduit disponible est comme suit:
- clé1:{
- fr: traductionFrançaise
- en: traductionAnglaise
- },
- clé2:{
- fr: traductionFrançaise
- en: traductionAnglaise
- }
-*/
-(function () {
-
- var custom_translate_module = angular.module('customTranslateFilter', [])
- .filter('customTranslate', ['$translate', function($translate){
- return function(txt){
- var trad = {
-
- costWarningScan:{
- fr: "<b><span class=\"bigfont\" style=\"font-size:20px\">Service payant:</span></b><b> les collaborateurs et les étudiants de l’EPFL peuvent bénéficier de ce service gratuitement, en utilisant le formulaire:</b>",
- en: "<b><span class=\"bigfont\" style=\"font-size:20px\">Fee-based service:</span></b><b> EPFL employees and students can benefit from this service free of charge by using the form:</b>",
- de: "<b><span class=\"bigfont\" style=\"font-size:20px\">Kostenpflichtiger Service:</span></b><b> Mitarbeitern und Studenten der EPFL steht dieser Dienst über das Fernleihe-Formular gratis zur Verfügung.</b>",
- it: "<b><span class=\"bigfont\" style=\"font-size:20px\">Servizio a pagamento:</span></b><b> I dipendenti e gli studenti dell'EPFL possono usufruire gratuitamente di questo servizio utilizzando il modulo:</b>"
- },
- costWarningScanEPFL:{
- fr: "<b>Service gratuit pour les collaborateurs et les étudiants EPFL.</b>",
- en: "<b>Free of charge for EPFL staff and students.</b>",
- de: "<b>Service für Mitarbeiter und Studenten der EPFL kostenlos</b>",
- it: "<b>Servizio gratuito per i dipendenti e gli studenti dell’EPFL.<b>"
- },
- costWarningNetworkLoan:{
- fr: "<b>Service gratuit en cas de retrait à la Bibliothèque de l’EPFL.</b>",
- en: "<b>Free of charge if withdrawal at the EPFL Library.</b>",
- de: "<b>Service bei Abholung in der EPFL-Bibliothek kostenlos.</b>",
- it: "<b>Servizio gratuito in caso di ritiro alla Biblioteca dell’EPFL</b>"
- },
- costWarningPEB:{
- fr: "<b>Service gratuit pour les collaborateurs et les étudiants de l’EPFL.</b> Avant de passer une commande d’un document physique via le prêt entre bibliothèques, merci de vous assurer que ce document n'est pas disponible dans d’autres bibliothèques du réseau SLSP dans swisscovery.",
- en: "<b>Free of charge for EPFL staff and students.</b> Before placing an order for a physical document via the interlibrary loan, please make sure that this document is not available in other SLSP network libraries on swisscovery.",
- de: "<b>Kostenloser Service für Mitarbeiter und Studenten der EPFL.</b> Bevor Sie ein Medium über die Fernleihe bestellen, vergewissern Sie sich bitte zunächst in swisscovery, dass es nicht in einer anderen Bibliothek des SLSP-Netzwerks verfügbar ist.",
- it: "<b>Servizio gratuito per i dipendenti e gli studenti dell’EPFL.</b> Prima di ordinare un documento cartaceo tramite il prestito interbibliotecario, assicuratevi che questo documento non sia disponibile in altre biblioteche della rete SLSP in swisscovery."
- },
- mainTitle:{
- fr: "Catalogue BEAST",
- en: "BEAST discovery tool",
- de: "BEAST Wissensportal",
- it: "Catalogo BEAST"
- },
- subTitle:{
- fr: "Le point d\'accès à toutes les ressources de la Bibliothèque de l\'EPFL",
- en: "The access portal to all the resources of the EPFL Library",
- de: "Der Zugangspunkt zu allen Ressourcen der EPFL Bibliothek",
- it: "Il punto d’accesso a tutte le risorse della Biblioteca dell’EPFL"
- },
- switchEduID:{
- fr: "Modifier vos informations personnelles sur",
- en: "Change your personal data on",
- de: "Ändern Sie Ihre persönlichen Daten auf",
- it: "Modifica i tuoi dati personali sul"
- },
- illButton:{
- fr: "Prêt entre bibliothèques (PEB)",
- en: "Inter Library Loan (ILL)",
- de: "Fernleihe",
- it: "Prestito interbibliotecario"
- }
- };
- if (['en', 'fr', 'it', 'de'].includes($translate.use())) {
- return trad[txt][$translate.use()]
- } else {
- return trad[txt].fr
- }
- };
- }]);
-
-}) ()
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/js/filters/trust_html.filter.js b/primo-explore/custom/41SLSP_HPH-EPFL/js/filters/trust_html.filter.js
deleted file mode 100644
index 5399f5e..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/js/filters/trust_html.filter.js
+++ /dev/null
@@ -1,19 +0,0 @@
-"use strict";
-
-/***********************/
-/* FILTRE : traduction */
-/***********************/
-
-/*
- OBJECTIF: Permettre des balises html dans les champs.
- UTILISATION: S'utilise dans une balise comme un filtre.
- EXEMPLE: {{ variable | trustHtml }}
-*/
-(function () {
-angular.module('trustHtmlFilter', [])
- .filter('trustHtml', ['$sce', function($sce){
- return function(txt){
- return $sce.trustAsHtml(txt);
- };
-}]);
-}) ()
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/js/homepage/alert.js b/primo-explore/custom/41SLSP_HPH-EPFL/js/homepage/alert.js
deleted file mode 100644
index f39245e..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/js/homepage/alert.js
+++ /dev/null
@@ -1,16 +0,0 @@
-module.exports = {active: true,
- txt:
- {fr: `<div class="info-symbol" style=\"text-align:left\">
- <div><p>Le réseau NEBIS a pris fin le 7 décembre 2020 pour être remplacé par un nouveau réseau plus vaste : <a class="md-primoExplore-theme" href="https://slsp.ch/fr">swisscovery</a></p></div>
- </div>`,
- en: `<div class="info-symbol" style=\"text-align:left\">
- <div><p>The NEBIS network ended on December 7, 2020. It has been replaced by <a class="md-primoExplore-theme" href="https://slsp.ch/it">swisscovery</a>: a new and wider network.</p></div>
- </div>`,
- de: `<div class="info-symbol" style=\"text-align:left\">
- <div><p>Das NEBIS-Netzwerk wurde am 07.12.2020 abgeschaltet und durch ein neues, grösseres Netzwerk ersetzt: <a class="md-primoExplore-theme" href="https://slsp.ch/de">swisscovery</a></p></div>
- </div>`,
- it: `<div class="info-symbol" style=\"text-align:left\">
- <div><p>La rete NEBIS è stata sciolta il 7 dicembre 2020 per essere sostituita da una rete piú ampia di biblioteche: <a class="md-primoExplore-theme" href="https://slsp.ch/it">swisscovery</a></p></div>
- </div>`},
- begin:"2020-01-04T00:00:00Z",
- end:"2021-03-31T12:00:00Z"}
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/js/homepage/index.js b/primo-explore/custom/41SLSP_HPH-EPFL/js/homepage/index.js
deleted file mode 100644
index 44d86a7..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/js/homepage/index.js
+++ /dev/null
@@ -1,4 +0,0 @@
-(function () {
- var homepage_module = angular.module('homepageModule', ['angularLoad']);
- homepage_module.component('prmSearchBarAfter', require('./searchbar.component.js'));
-})()
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/js/homepage/searchbar.component.js b/primo-explore/custom/41SLSP_HPH-EPFL/js/homepage/searchbar.component.js
deleted file mode 100644
index 360c673..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/js/homepage/searchbar.component.js
+++ /dev/null
@@ -1,54 +0,0 @@
-"use strict";
-
-/*
- OBJECTIFS:
- - Toujours afficher l'onglet pour modifier le scope
- - Afficher une alerte si les dates correspondent
- UTILISATION:
- Pour paramétrer l'alerte, il faut modifier le fichier alert.json (dans ce dossier)
-*/
-module.exports = {
- bindings: {parentCtrl: '<'},
- template: '<div class="epfl-alert-message" ng-if="ctrl.active" ng-bind-html="ctrl.get_txt() "></div>',
- controllerAs: 'ctrl',
- controller: ['$translate', function($translate){
-
- var vm = this;
-
- /********************/
- /* MESSAGE D'ALERTE */
- /********************/
-
- // récupère le fichier json avec les paramètres de l'alerte
- vm.alert = require("./alert.js");
-
- // par défaut, l'alerte n'est pas considérée comme active
- vm.active = false;
-
- // Vérifie dans le fichier json si une alerte est prévue
- if (vm.alert.active === true){
-
- // Teste si les dates correspondent pour l'affichage de l'alerte
- var d_now = Date.now();
- if ((new Date(vm.alert.begin) < d_now) && (d_now < new Date(vm.alert.end))) {
- // déclenche l'affichage de l'alerte
- vm.active = true;
- }
- }
-
- // getteur qui retourne le texte en fonction de la langue
- vm.get_txt = function(){
- var lang = ['en', 'fr', 'it', 'de'].includes($translate.use()) ? $translate.use():'en';
- return vm.active ? vm.alert.txt[lang] : "";
- }
-
- /*******************/
- /* SCOPE PERMANENT */
- /*******************/
-
- // Rendre permanent l'affichage des onglets permettant de sélectionnet le scope
- vm.parentCtrl.showTabsAndScopes = true;
-
- // console.log(vm.alert);
- }
- ]};
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/js/homepage/topbar.component.js b/primo-explore/custom/41SLSP_HPH-EPFL/js/homepage/topbar.component.js
deleted file mode 100644
index 3541a67..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/js/homepage/topbar.component.js
+++ /dev/null
@@ -1,20 +0,0 @@
-"use strict";
-
-/*
- OBJECTIF: afficher l'entête de la page.
- REMARQUES: contient le titre BEAST, le teaser, le fil d'ariance. Le controlleur vérifie
- si on se trouve dans le compte de lecteur afin de paramétrer le fil d'ariane.
-*/
-
-module.exports = {
- bindings: {parentCtrl: '<'},
- controllerAs: 'ctrl',
- controller: ['$location', '$translate', function($location, $translate) {
- var vm = this;
- vm.url = window.location.href.split('?')[0] + '?vid=' + vm.parentCtrl.configurationUtil.vid + '&lang=' + $translate.use();
- // console.log(vm);
- // console.log(vm.url);
- }],
- template: `<div class="main-title"><h1><a href="{{ ::ctrl.url }}">{{ 'mainTitle' | customTranslate }}</a></h1><h2>{{ 'subTitle' | customTranslate }}</h2></div>`
- //templateUrl: './custom/41SLSP_EPF-prod/js/homepage/templates/topbar.html'
-};
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/js/main.js b/primo-explore/custom/41SLSP_HPH-EPFL/js/main.js
deleted file mode 100644
index 7893b42..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/js/main.js
+++ /dev/null
@@ -1,13 +0,0 @@
-/************************/
-/* List of used modules */
-/************************/
-
-// Import central SLSP package ;
-// import { centralCustom } from './slsp/custom_slsp.js';
-import { centralCustom } from './slsp/epfl_custom_slsp.js';
-import { homepageModule } from './homepage/index.js';
-import { customTranslateFilter } from './filters/custom_translate.filter.js';
-import { trustHtmlFilter } from './filters/trust_html.filter.js';
-import { accountModule } from './account/index.js';
-
-var app = angular.module('viewCustom', ['angularLoad', 'centralCustom', 'homepageModule', 'customTranslateFilter', 'trustHtmlFilter', 'accountModule']);
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/js/slsp/README.md b/primo-explore/custom/41SLSP_HPH-EPFL/js/slsp/README.md
deleted file mode 100644
index aa122c6..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/js/slsp/README.md
+++ /dev/null
@@ -1,9 +0,0 @@
-# Changes to customization js file from SLSP
-`custom_slsp.js`
-
-This file contains all the changes to the master template provided by SLSP.
-
-Originally the file is named `custom.js` in the customization package.
-
-## List of Changes
-* links to img: l. 42 - replace `custom/41SLSP_NETWORK-CENTRAL_PACKAGE` with `custom/41SLSP_EPF-prod`
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/js/slsp/custom_slsp.js b/primo-explore/custom/41SLSP_HPH-EPFL/js/slsp/custom_slsp.js
deleted file mode 100644
index 01bf93c..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/js/slsp/custom_slsp.js
+++ /dev/null
@@ -1,44 +0,0 @@
-(function () {
-
-
- var app = angular.module('centralCustom', ['angularLoad']);
-
-
- app.controller('CourierInfoController', [function () {
- var vm = this;
- vm.linkBase = "https:\/\/slsp.ch\/fees";
-
- }]);
-
- app.component('prmRequestAfter', {
- bindings: { parentCtrl: '<' },
- controller: 'CourierInfoController',
- template: '<div layout="row" class="courier-info bar alert-bar layout-align-center-center layout-row" layout-align="center center"><span class="md-subhead"><a href="{{ $ctrl.linkBase }}" target="_blank"><span translate="customized.fulldisplay.fees"></span></a></span></div>'
- });
-
-
-
-
-
-
- app.controller('LibInfoController', [function () {
- var vm = this;
- vm.getLibrary = getLibrary;
- vm.biblinkText = "Library";
- vm.biblinkBase = "https:\/\/slsp.ch\/libraries";
-
- function getLibrary() {
- return vm.parentCtrl.currLoc.location.librarycodeTranslation;
- }
-
- }]);
-
- app.component('prmLocationItemsAfter', {
- bindings: { parentCtrl: '<' },
- controller: 'LibInfoController',
- template: '<div layout="row" class="LibInfo" layout-align="start center"><span class="md-subhead"><a ng-href="{{ $ctrl.biblinkBase }}" target="_blank"><img width="35px" ng-src="/discovery/custom/41SLSP_NETWORK-CENTRAL_PACKAGE/img/information.png" />{{ $ctrl.getLibrary() }}</a></span></div>'
- });
-
-
-
-})();
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/js/slsp/custom_slsp_new.js b/primo-explore/custom/41SLSP_HPH-EPFL/js/slsp/custom_slsp_new.js
deleted file mode 100644
index adb18e5..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/js/slsp/custom_slsp_new.js
+++ /dev/null
@@ -1,118 +0,0 @@
-(function () {
-
-
- var app = angular.module('centralCustom', ['angularLoad']);
-
-
- app.controller('CourierInfoController', [function () {
- var vm = this;
- vm.linkBase = "https:\/\/slsp.ch\/fees";
-
- }]);
-
- app.component('prmRequestAfter', {
- bindings: { parentCtrl: '<' },
- controller: 'CourierInfoController',
- template: '<div layout="row" class="courier-info bar alert-bar layout-align-center-center layout-row" layout-align="center center"><span class="md-subhead"><a href="{{ $ctrl.linkBase }}" target="_blank"><span translate="customized.fulldisplay.fees"></span></a></span></div>'
- });
-
-
-
-
-
-
- app.controller('LibInfoController', [function () {
- var vm = this;
- vm.getLibrary = getLibrary;
- vm.biblinkText = "Library";
- vm.biblinkBase = "https:\/\/slsp.ch\/libraries";
-
- function getLibrary() {
- return vm.parentCtrl.currLoc.location.librarycodeTranslation;
- }
-
- }]);
-
- app.component('prmLocationItemsAfter', {
- bindings: { parentCtrl: '<' },
- controller: 'LibInfoController',
- template: '<div layout="row" class="LibInfo" layout-align="start center"><span class="md-subhead"><a ng-href="{{ $ctrl.biblinkBase }}" target="_blank"><img width="35px" ng-src="/discovery/custom/41SLSP_NETWORK-CENTRAL_PACKAGE/img/information.png" />{{ $ctrl.getLibrary() }}</a></span></div>'
- });
-
-
-
- // ILL Signin Order
- app.service('userService', ['jwtHelper', function (jwtHelper) {
- this.isGuest = function () {
- var jwt = sessionStorage.getItem('primoExploreJwt');
- if (!jwt) {
- return true;
- }
- var decodedToken = jwtHelper.decodeToken(jwt);
- let userName = decodedToken.userGroup !== 'GUEST' ? decodedToken.userName : '';
- if (userName) {
- return false
- }
- else {
- return true;
- }
- }
- }])
-
-
- app.controller('IllBoxController', function ($scope, userService) {
-
- $scope.usrNme = userService.isGuest();
-
- if ($scope.usrNme == true) {
- var myEl = angular.element(document.querySelector('primo-explore'));
- return myEl.addClass('logged-out')
- }
-
- else {
- var myEl = angular.element(document.querySelector('primo-explore'));
- return myEl.removeClass('logged-out');
- }
-
-
- });
-
- app.component('prmTopbarAfter', {
- bindings: { parentCtrl: '<' },
- controller: 'IllBoxController',
- template: ''
- });
-
- //----------------------------------------------------------------------------------------------
-
-
- app.controller('AlertMsgController', ['$scope', function ($scope) {
- var vm = this;
- vm.getAlert = getAlert
-
- function getAlert() {
- var ga = vm.parentCtrl.almaHowToGetitService.reqAlert._htmlMsg;
- var myEl2 = angular.element(document.querySelector('primo-explore'));
-
- if (ga.length > 0) {
- return myEl2.addClass('alert');
-
- }
- else {
-
- return myEl2.removeClass('alert');
-
- }
- }
-
- }]);
-
- app.component('almaHowovpAfter', {
- bindings: { parentCtrl: '<' },
- controller: 'AlertMsgController',
- template: '<div style="display:none">{{$ctrl.getAlert()}}</div>'
- });
-
-
-
-})();
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/js/slsp/epfl_custom_slsp.js b/primo-explore/custom/41SLSP_HPH-EPFL/js/slsp/epfl_custom_slsp.js
deleted file mode 100644
index a2086eb..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/js/slsp/epfl_custom_slsp.js
+++ /dev/null
@@ -1,313 +0,0 @@
-(function () {
-
-
- var app = angular.module('centralCustom', ['angularLoad']);
-
-
- /*
- ## VERSION SLSP DU CONTROLLEUR ##
- # Ajoute le lien vers les amendes
-
- app.controller('CourierInfoController', [function () {
- var vm = this;
- vm.linkBase = "https:\/\/slsp.ch\/fees";
-
- }]);
- */
-
- /* ## VERSION EPFL DU CONTROLLEUR ## */
-
- app.controller('CourierInfoController', ['$filter', '$element', function ($filter, $element, $compile, $scope, $rootScope) {
- var vm = this;
-
- //shortcut for convenience
- this.form = $element[0].parentElement;
-
- //function for inserting block
- this.$doCheck = function() {
- let form = false;
- if (this.form.children[1].children[1] !== undefined &&
- this.form.children[1].children[1].children[0] !== undefined) {
- form = this.form.children[1].children[1].children[0];
- }
- else if (this.form.children[1].children[0] !== undefined &&
- this.form.children[1].children[0].children[0] !== undefined) {
- form = this.form.children[1].children[0].children[0];
- }
-
- //create and insert info block if not present
-
- if (form && form.children.length == 2 || vm.hasOwnProperty('currentTypeFeeAlert') &&
- vm.currentTypeFeeAlert != vm.typeFeeAlert()) {
- vm.currentTypeFeeAlert = vm.typeFeeAlert();
- var htmlwarning = `<div class="courier-info bar alert-bar"><p>${vm.getFeeAlert()}</p>`;
- if (vm.typeFeeAlert()=='costWarningScan') {
- var txt = $filter('customTranslate')('illButton');
- if (vm.get_peb_button()){
- var fn = `javascript:(function() {
- for (var elem of document.getElementsByTagName('span')) {
- if (elem.getAttribute('translate') === 'AlmaResourceSharing' &&
- elem.parentNode.className.indexOf('greenbutton') === -1)
- {
- elem.click();
- break;
- }
- };})()`;}
- else {
- var fn = `javascript:(function() {window.location.href = window.location.origin + '/discovery/blankIll?vid=${vm.parentCtrl.vid}'})()`;
- }
-
-
- htmlwarning += `<p><span class="button-confirm md-button md-primoExplore-theme md-ink-ripple" onclick="${fn}" ">${txt}</span></p>`;
-
- }
- htmlwarning += `<p><a href="${this.parentCtrl.$translate.instant('customize.fullview.feesUrl')}" target="_blank">${this.parentCtrl.$translate.instant('customize.fullview.feesLinkText')}</a></p></div>`;
- var htmlcompiled = angular.element(htmlwarning)[0];
- if (form.children.length == 2) {
- form.insertBefore(htmlcompiled, form.children[1]);
- } else {
- form.children[1].replaceWith(htmlcompiled);
- }
- }
- }
-
-
-
-
- // Remonte l'EPFL dans la liste des bibliothèques
- Object.defineProperty(vm.parentCtrl, "form", {
- configurable: !0,
- get: function(){
- // Mettre l'EPFL en première position
- var form = this.getFilteredForm(['label', 'multiLabel'], false);
- if (!vm.hasOwnProperty('pickupLocationsListOrdered')){
- for (var i = 0; i < form.length; i++){
- if (form[i].key == 'pickupInstitution'){
- function compare( a, b ){
- var onTopInstitutions = ['41SLSP_EPF', '41SLSP_EPFL'];
- a = onTopInstitutions.indexOf(a.value);
- b = onTopInstitutions.indexOf(b.value);
- if (a == b) {return 0};
- return a < b ? 1 : -1;
- }
- form[i].options.sort(compare);
- vm['pickupLocationsListOrdered'] = true;
- }
- }
- }
- return form;
- }
- }
- );
-
- // Vérifie si l'EPFL est la provenance de l'exemplaire sélectionné
- vm.isEPFL = function() {
- return vm.parentCtrl.requestService && vm.parentCtrl.requestService._service['link-to-service'].indexOf('institution=41SLSP_EPF') > 0 ? true : false;
- }
-
- vm.linkBase = "https:\/\/slsp.ch\/fees";
-
- // Personnalisation du message des frais
- vm.typeFeeAlert = function() {
- // console.log(vm.parentCtrl.requestHeader);
- if (['almaRequest.header', 'almaRequestOther.header', 'almaItemRequest.header'].includes(vm.parentCtrl.requestHeader)) {
- return 'costWarningNetworkLoan'; // $filter('customTranslate')(costWarningNetworkLoan');
- } else if (['almaDigitization.header',
- 'almaDigitizationOther.header',
- 'almaItemDigitization.header']
- .includes(vm.parentCtrl.requestHeader)) {
- return vm.isEPFL() ? 'costWarningScanEPFL' : 'costWarningScan';
- } else if (vm.parentCtrl.requestHeader === 'almaResourceSharing.header') {
- return 'costWarningPEB';
- } else {
- return 'costWarningGeneral';
- }
- }
- vm.getFeeAlert = function() {
- // console.log(vm.typeFeeAlert());
- return $filter('customTranslate')(vm.typeFeeAlert());
- }
-
- // Récupère le bouton PEB de la page afin de simuler un clic dessus
- vm.get_peb_button = function(){
- var allElements = document.getElementsByTagName('span');
- for (var i = 0, n = allElements.length; i < n; i++) {
- if (allElements[i].getAttribute('translate') === 'AlmaResourceSharing' &&
- allElements[i].parentNode.className.indexOf('greenbutton') === -1)
- {
- return allElements[i];
- }
- }
-
- }
- // vm.get_request_button = function(){
- // var allElements = document.getElementsByTagName('prm-opac');
- // if (allElements.length === 0) { return null; }
- // var opac = allElements[0];
- // if (opac.closest('prm-alma-other-members')) { return null; }
- //
- // var buttons = opac.getElementsByTagName('span');
- // for (var i = 0, n = buttons.length; i < n; i++) {
- // if (buttons[i].getAttribute('translate') == 'AlmaRequest')
- // {
- // return buttons[i];
- // }
- // }
- // }
-
- // Fonction simulant un clic sur le bouton PEB quand on clique sur les
- // frais.
- vm.click_peb = function(){
- var button = vm.get_peb_button();
- if (button) {
- button.click();
- } else {
- window.location.href = window.location.origin + '/discovery/blankIll?vid=' + vm.parentCtrl.vid;
- }
- }
- // vm.click_request = function(){
- // vm.get_request_button().click();
- // }
-
- // console.log(vm);
-
- }]);
-
- app.component('prmRequestAfter', {
- bindings: { parentCtrl: '<' },
- controller: 'CourierInfoController',
- // template:
- // `<div layout="row" class="courier-info feemsg alert-bar layout-align-center-center" layout-align="center center">
- // <img width="35px" ng-src="/discovery/custom/41SLSP_EPF-prod/img/information.png" />
- // <div>
- // <div ng-if="$ctrl.typeFeeAlert()!='costWarningScanEPFL'">
- // <span class="md-subhead">
- // <a href="{{ $ctrl.linkBase }}" target="_blank">
- // <span translate="customized.fulldisplay.fees"></span>
- // </a>
- // </span>
- // </div>
- // <div>
- // <span ng-if="$ctrl.typeFeeAlert()!='costWarningGeneral'" ng-bind-html="$ctrl.getFeeAlert() "></span>
- // <span ng-if="$ctrl.typeFeeAlert()=='costWarningScan'"><button class="greenbutton button-as-link md-button md-primoExplore-theme md-ink-ripple" ng-click="$ctrl.click_peb()"><span>{{ 'illButton' | customTranslate }}</span></button></span>
- // </div>
- //
- // </div>
- // </div>`
- });
-
-
-
-
-
-
- app.controller('LibInfoController', [function () {
- var vm = this;
- vm.biblinkText = "Library";
- vm.biblinkBase = "https:\/\/slsp.ch\/libraries";
-
- vm.getLibraryUrl = function() {
- if (vm.parentCtrl.loc && vm.parentCtrl.loc.location.libraryCode==='E02') {
- return "https://go.epfl.ch/library";
- } else {
- return vm.biblinkBase;
- }
- }
- vm.view = vm.parentCtrl.configurationUtil.vid.replace(':', '-');
- vm.getLibrary = function() {
- // return vm.parentCtrl.currLoc.location.librarycodeTranslation;
- return vm.parentCtrl.currLoc ? vm.parentCtrl.currLoc.location.librarycodeTranslation : '';
- }
-
- }]);
-
- app.component('prmLocationItemsAfter', {
- bindings: { parentCtrl: '<' },
- controller: 'LibInfoController',
- controllerAs: 'ctrl',
- template: `<div layout="row" class="LibInfo" layout-align="start center"><span class="md-subhead"><a ng-href="{{ ctrl.getLibraryUrl() }}" target="_blank"><img width="20px" ng-src="/discovery/custom/{{ ctrl.view }}/img/information.png" />{{ ctrl.getLibrary() }}</a></span></div>`
- });
-
-
-
- //--------ILL Signin Order - if logged out ---------------------------------------
- app.service('userService', ['jwtHelper', function (jwtHelper) {
- this.isGuest = function () {
- var jwt = sessionStorage.getItem('primoExploreJwt');
- if (!jwt) {
- return true;
- }
- var decodedToken = jwtHelper.decodeToken(jwt);
- let userName = decodedToken.userGroup !== 'GUEST' ? decodedToken.userName : '';
- if (userName) {
- return false
- }
- else {
- return true;
- }
- }
- }])
-
-
- app.controller('IllBoxController', ['$scope', 'userService', function ($scope, userService) {
-
- $scope.usrNme = userService.isGuest();
-
- if ($scope.usrNme == true) {
- var myEl = angular.element(document.querySelector('primo-explore'));
- return myEl.addClass('logged-out')
- }
-
- else {
- var myEl = angular.element(document.querySelector('primo-explore'));
- return myEl.removeClass('logged-out');
- }
-
-
- }]);
-
- app.component('prmUserAreaExpandableAfter', {
- bindings: { parentCtrl: '<' },
- controller: 'IllBoxController',
- template: ''
- });
-
- app.component('prmTopbarAfter', {
- bindings: { parentCtrl: '<' },
- // controller: 'IllBoxController',
- template: `<div class="main-title"><h1><a href="{{ starturl }}">{{ 'mainTitle' | customTranslate }}</a></h1><h2>{{ 'subTitle' | customTranslate }}</h2></div>`
- });
-
- //----------------------------------------------------------------------------------------------
-
-
- app.controller('AlertMsgController', ['$scope', function ($scope) {
- var vm = this;
- vm.getAlert = getAlert
-
- function getAlert() {
- var ga = vm.parentCtrl.almaHowToGetitService.reqAlert._htmlMsg;
- var myEl2 = angular.element(document.querySelector('primo-explore'));
-
- if (ga.length > 0) {
- return myEl2.addClass('alert');
-
- }
- else {
-
- return myEl2.removeClass('alert');
-
- }
- }
-
- }]);
-
- app.component('almaHowovpAfter', {
- bindings: { parentCtrl: '<' },
- controller: 'AlertMsgController',
- template: '<div style="display:none">{{$ctrl.getAlert()}}</div>'
- });
-
-
-
-})();
diff --git a/primo-explore/custom/41SLSP_HPH-EPFL/showDirectives.txt b/primo-explore/custom/41SLSP_HPH-EPFL/showDirectives.txt
deleted file mode 100644
index 9dcbb56..0000000
--- a/primo-explore/custom/41SLSP_HPH-EPFL/showDirectives.txt
+++ /dev/null
@@ -1 +0,0 @@
-javascript:(function(){var script=document.createElement("SCRIPT");script.src='https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js';script.type='text/javascript';document.getElementsByTagName("head")[0].appendChild(script);var checkReady=function(callback){if(window.jQuery){callback(jQuery)}else{window.setTimeout(function(){checkReady(callback)},100)}};checkReady(function($){$('primo-explore').find('*[parent-ctrl="ctrl"]').each(function(){$(this).append('<a href="#" title="'+$(this)[0].outerHTML.replace(/</g,'').replace(/>/g,'').replace(/\//g,'').replace(/"/g,'').replace(/parent-ctrl.*/g,'').replace(/-([a-z])/g,function(m,w){return w.toUpperCase()})+'" style="display:block;height:auto;color:black;">Hover for id</a>')})})})();
\ No newline at end of file
diff --git a/primo-explore/custom/41SLSP_EPF-prod/README.md b/primo-explore/custom/src/README.md
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/README.md
rename to primo-explore/custom/src/README.md
diff --git a/primo-explore/custom/41SLSP_EPF-prod/colors.json.txt b/primo-explore/custom/src/colors.json.txt
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/colors.json.txt
rename to primo-explore/custom/src/colors.json.txt
diff --git a/primo-explore/custom/41SLSP_EPF-prod/css/README.md b/primo-explore/custom/src/css/README.md
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/css/README.md
rename to primo-explore/custom/src/css/README.md
diff --git a/primo-explore/custom/41SLSP_EPF-prod/css/collection.css b/primo-explore/custom/src/css/collection.css
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/css/collection.css
rename to primo-explore/custom/src/css/collection.css
diff --git a/primo-explore/custom/41SLSP_EPF-prod/css/custom1.css b/primo-explore/custom/src/css/custom1.css
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/css/custom1.css
rename to primo-explore/custom/src/css/custom1.css
diff --git a/primo-explore/custom/41SLSP_EPF-prod/css/custom_slsp.css b/primo-explore/custom/src/css/custom_slsp.css
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/css/custom_slsp.css
rename to primo-explore/custom/src/css/custom_slsp.css
diff --git a/primo-explore/custom/41SLSP_EPF-prod/css/custom_slsp_epfl_part.css b/primo-explore/custom/src/css/custom_slsp_epfl_part.css
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/css/custom_slsp_epfl_part.css
rename to primo-explore/custom/src/css/custom_slsp_epfl_part.css
diff --git a/primo-explore/custom/41SLSP_EPF-prod/css/databases.css b/primo-explore/custom/src/css/databases.css
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/css/databases.css
rename to primo-explore/custom/src/css/databases.css
diff --git a/primo-explore/custom/41SLSP_EPF-prod/css/epfl_colors.css b/primo-explore/custom/src/css/epfl_colors.css
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/css/epfl_colors.css
rename to primo-explore/custom/src/css/epfl_colors.css
diff --git a/primo-explore/custom/41SLSP_EPF-prod/css/footer.css b/primo-explore/custom/src/css/footer.css
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/css/footer.css
rename to primo-explore/custom/src/css/footer.css
diff --git a/primo-explore/custom/41SLSP_EPF-prod/css/homepage.css b/primo-explore/custom/src/css/homepage.css
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/css/homepage.css
rename to primo-explore/custom/src/css/homepage.css
diff --git a/primo-explore/custom/41SLSP_EPF-prod/css/login.css b/primo-explore/custom/src/css/login.css
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/css/login.css
rename to primo-explore/custom/src/css/login.css
diff --git a/primo-explore/custom/41SLSP_EPF-prod/css/prmAccountLink.css b/primo-explore/custom/src/css/prmAccountLink.css
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/css/prmAccountLink.css
rename to primo-explore/custom/src/css/prmAccountLink.css
diff --git a/primo-explore/custom/41SLSP_EPF-prod/css/prmAlmaviewit.css b/primo-explore/custom/src/css/prmAlmaviewit.css
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/css/prmAlmaviewit.css
rename to primo-explore/custom/src/css/prmAlmaviewit.css
diff --git a/primo-explore/custom/41SLSP_EPF-prod/css/prmLocation.css b/primo-explore/custom/src/css/prmLocation.css
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/css/prmLocation.css
rename to primo-explore/custom/src/css/prmLocation.css
diff --git a/primo-explore/custom/41SLSP_EPF-prod/css/prmRequest.css b/primo-explore/custom/src/css/prmRequest.css
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/css/prmRequest.css
rename to primo-explore/custom/src/css/prmRequest.css
diff --git a/primo-explore/custom/41SLSP_EPF-prod/css/prmSearchResultAvailabilityLine.css b/primo-explore/custom/src/css/prmSearchResultAvailabilityLine.css
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/css/prmSearchResultAvailabilityLine.css
rename to primo-explore/custom/src/css/prmSearchResultAvailabilityLine.css
diff --git a/primo-explore/custom/41SLSP_EPF-prod/css/prmSearchbar.css b/primo-explore/custom/src/css/prmSearchbar.css
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/css/prmSearchbar.css
rename to primo-explore/custom/src/css/prmSearchbar.css
diff --git a/primo-explore/custom/41SLSP_EPF-prod/css/prmServiceButton.css b/primo-explore/custom/src/css/prmServiceButton.css
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/css/prmServiceButton.css
rename to primo-explore/custom/src/css/prmServiceButton.css
diff --git a/primo-explore/custom/41SLSP_EPF-prod/css/prmTopbar.css b/primo-explore/custom/src/css/prmTopbar.css
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/css/prmTopbar.css
rename to primo-explore/custom/src/css/prmTopbar.css
diff --git a/primo-explore/custom/41SLSP_EPF-prod/css/prmTreeNav.css b/primo-explore/custom/src/css/prmTreeNav.css
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/css/prmTreeNav.css
rename to primo-explore/custom/src/css/prmTreeNav.css
diff --git a/primo-explore/custom/41SLSP_EPF-prod/features.json.txt b/primo-explore/custom/src/features.json.txt
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/features.json.txt
rename to primo-explore/custom/src/features.json.txt
diff --git a/primo-explore/custom/41SLSP_EPF-prod/html/README.md b/primo-explore/custom/src/html/README.md
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/html/README.md
rename to primo-explore/custom/src/html/README.md
diff --git a/primo-explore/custom/41SLSP_EPF-prod/html/email/email_en.tmpl.html b/primo-explore/custom/src/html/email/email_en.tmpl.html
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/html/email/email_en.tmpl.html
rename to primo-explore/custom/src/html/email/email_en.tmpl.html
diff --git a/primo-explore/custom/41SLSP_EPF-prod/html/help/help_de.html b/primo-explore/custom/src/html/help/help_de.html
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/html/help/help_de.html
rename to primo-explore/custom/src/html/help/help_de.html
diff --git a/primo-explore/custom/41SLSP_EPF-prod/html/help/help_en.html b/primo-explore/custom/src/html/help/help_en.html
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/html/help/help_en.html
rename to primo-explore/custom/src/html/help/help_en.html
diff --git a/primo-explore/custom/41SLSP_EPF-prod/html/help/help_fr.html b/primo-explore/custom/src/html/help/help_fr.html
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/html/help/help_fr.html
rename to primo-explore/custom/src/html/help/help_fr.html
diff --git a/primo-explore/custom/41SLSP_EPF-prod/html/help/help_it.html b/primo-explore/custom/src/html/help/help_it.html
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/html/help/help_it.html
rename to primo-explore/custom/src/html/help/help_it.html
diff --git a/primo-explore/custom/41SLSP_EPF-prod/html/homepage/homepage_de.html b/primo-explore/custom/src/html/homepage/homepage_de.html
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/html/homepage/homepage_de.html
rename to primo-explore/custom/src/html/homepage/homepage_de.html
diff --git a/primo-explore/custom/41SLSP_EPF-prod/html/homepage/homepage_de_old.html b/primo-explore/custom/src/html/homepage/homepage_de_old.html
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/html/homepage/homepage_de_old.html
rename to primo-explore/custom/src/html/homepage/homepage_de_old.html
diff --git a/primo-explore/custom/41SLSP_EPF-prod/html/homepage/homepage_en.html b/primo-explore/custom/src/html/homepage/homepage_en.html
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/html/homepage/homepage_en.html
rename to primo-explore/custom/src/html/homepage/homepage_en.html
diff --git a/primo-explore/custom/41SLSP_EPF-prod/html/homepage/homepage_en_old.html b/primo-explore/custom/src/html/homepage/homepage_en_old.html
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/html/homepage/homepage_en_old.html
rename to primo-explore/custom/src/html/homepage/homepage_en_old.html
diff --git a/primo-explore/custom/41SLSP_EPF-prod/html/homepage/homepage_fr.html b/primo-explore/custom/src/html/homepage/homepage_fr.html
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/html/homepage/homepage_fr.html
rename to primo-explore/custom/src/html/homepage/homepage_fr.html
diff --git a/primo-explore/custom/41SLSP_EPF-prod/html/homepage/homepage_it.html b/primo-explore/custom/src/html/homepage/homepage_it.html
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/html/homepage/homepage_it.html
rename to primo-explore/custom/src/html/homepage/homepage_it.html
diff --git a/primo-explore/custom/41SLSP_EPF-prod/html/homepage/homepage_it_old.html b/primo-explore/custom/src/html/homepage/homepage_it_old.html
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/html/homepage/homepage_it_old.html
rename to primo-explore/custom/src/html/homepage/homepage_it_old.html
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/Infographic.png b/primo-explore/custom/src/img/Infographic.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/Infographic.png
rename to primo-explore/custom/src/img/Infographic.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/Instagram.png b/primo-explore/custom/src/img/Instagram.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/Instagram.png
rename to primo-explore/custom/src/img/Instagram.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/LinkedIn.png b/primo-explore/custom/src/img/LinkedIn.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/LinkedIn.png
rename to primo-explore/custom/src/img/LinkedIn.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/README.md b/primo-explore/custom/src/img/README.md
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/README.md
rename to primo-explore/custom/src/img/README.md
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/Twitter.png b/primo-explore/custom/src/img/Twitter.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/Twitter.png
rename to primo-explore/custom/src/img/Twitter.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/Youtube.png b/primo-explore/custom/src/img/Youtube.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/Youtube.png
rename to primo-explore/custom/src/img/Youtube.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/blog.svg b/primo-explore/custom/src/img/blog.svg
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/blog.svg
rename to primo-explore/custom/src/img/blog.svg
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/custom-ui.svg b/primo-explore/custom/src/img/custom-ui.svg
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/custom-ui.svg
rename to primo-explore/custom/src/img/custom-ui.svg
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/facebook.png b/primo-explore/custom/src/img/facebook.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/facebook.png
rename to primo-explore/custom/src/img/facebook.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/facebook.svg b/primo-explore/custom/src/img/facebook.svg
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/facebook.svg
rename to primo-explore/custom/src/img/facebook.svg
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/facebook_old.svg b/primo-explore/custom/src/img/facebook_old.svg
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/facebook_old.svg
rename to primo-explore/custom/src/img/facebook_old.svg
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/facebook_white.svg b/primo-explore/custom/src/img/facebook_white.svg
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/facebook_white.svg
rename to primo-explore/custom/src/img/facebook_white.svg
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/favicon.ico b/primo-explore/custom/src/img/favicon.ico
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/favicon.ico
rename to primo-explore/custom/src/img/favicon.ico
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/NationalLicenses.png b/primo-explore/custom/src/img/help/NationalLicenses.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/NationalLicenses.png
rename to primo-explore/custom/src/img/help/NationalLicenses.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/NationalLicenses_fre.png b/primo-explore/custom/src/img/help/NationalLicenses_fre.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/NationalLicenses_fre.png
rename to primo-explore/custom/src/img/help/NationalLicenses_fre.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/NationalLicenses_ger.png b/primo-explore/custom/src/img/help/NationalLicenses_ger.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/NationalLicenses_ger.png
rename to primo-explore/custom/src/img/help/NationalLicenses_ger.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/NationalLicenses_ita.png b/primo-explore/custom/src/img/help/NationalLicenses_ita.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/NationalLicenses_ita.png
rename to primo-explore/custom/src/img/help/NationalLicenses_ita.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/activeFilters.png b/primo-explore/custom/src/img/help/activeFilters.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/activeFilters.png
rename to primo-explore/custom/src/img/help/activeFilters.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/activeFilters_fre.png b/primo-explore/custom/src/img/help/activeFilters_fre.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/activeFilters_fre.png
rename to primo-explore/custom/src/img/help/activeFilters_fre.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/activeFilters_ger.png b/primo-explore/custom/src/img/help/activeFilters_ger.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/activeFilters_ger.png
rename to primo-explore/custom/src/img/help/activeFilters_ger.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/activeFilters_ita.png b/primo-explore/custom/src/img/help/activeFilters_ita.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/activeFilters_ita.png
rename to primo-explore/custom/src/img/help/activeFilters_ita.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/activeLoans.png b/primo-explore/custom/src/img/help/activeLoans.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/activeLoans.png
rename to primo-explore/custom/src/img/help/activeLoans.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/activeLoans_fre.png b/primo-explore/custom/src/img/help/activeLoans_fre.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/activeLoans_fre.png
rename to primo-explore/custom/src/img/help/activeLoans_fre.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/activeLoans_ger.png b/primo-explore/custom/src/img/help/activeLoans_ger.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/activeLoans_ger.png
rename to primo-explore/custom/src/img/help/activeLoans_ger.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/activeLoans_ita.png b/primo-explore/custom/src/img/help/activeLoans_ita.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/activeLoans_ita.png
rename to primo-explore/custom/src/img/help/activeLoans_ita.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/advancedField1.png b/primo-explore/custom/src/img/help/advancedField1.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/advancedField1.png
rename to primo-explore/custom/src/img/help/advancedField1.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/advancedField1_fre.png b/primo-explore/custom/src/img/help/advancedField1_fre.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/advancedField1_fre.png
rename to primo-explore/custom/src/img/help/advancedField1_fre.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/advancedField1_ger.png b/primo-explore/custom/src/img/help/advancedField1_ger.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/advancedField1_ger.png
rename to primo-explore/custom/src/img/help/advancedField1_ger.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/advancedField1_ita.png b/primo-explore/custom/src/img/help/advancedField1_ita.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/advancedField1_ita.png
rename to primo-explore/custom/src/img/help/advancedField1_ita.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/advancedField2.png b/primo-explore/custom/src/img/help/advancedField2.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/advancedField2.png
rename to primo-explore/custom/src/img/help/advancedField2.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/advancedField2_fre.png b/primo-explore/custom/src/img/help/advancedField2_fre.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/advancedField2_fre.png
rename to primo-explore/custom/src/img/help/advancedField2_fre.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/advancedField2_ger.png b/primo-explore/custom/src/img/help/advancedField2_ger.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/advancedField2_ger.png
rename to primo-explore/custom/src/img/help/advancedField2_ger.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/advancedField2_ita.png b/primo-explore/custom/src/img/help/advancedField2_ita.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/advancedField2_ita.png
rename to primo-explore/custom/src/img/help/advancedField2_ita.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/advancedField3.png b/primo-explore/custom/src/img/help/advancedField3.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/advancedField3.png
rename to primo-explore/custom/src/img/help/advancedField3.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/advancedField3_fre.png b/primo-explore/custom/src/img/help/advancedField3_fre.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/advancedField3_fre.png
rename to primo-explore/custom/src/img/help/advancedField3_fre.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/advancedField3_ger.png b/primo-explore/custom/src/img/help/advancedField3_ger.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/advancedField3_ger.png
rename to primo-explore/custom/src/img/help/advancedField3_ger.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/advancedField3_ita.png b/primo-explore/custom/src/img/help/advancedField3_ita.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/advancedField3_ita.png
rename to primo-explore/custom/src/img/help/advancedField3_ita.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/advancedSearch.png b/primo-explore/custom/src/img/help/advancedSearch.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/advancedSearch.png
rename to primo-explore/custom/src/img/help/advancedSearch.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/advancedSearch_fre.png b/primo-explore/custom/src/img/help/advancedSearch_fre.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/advancedSearch_fre.png
rename to primo-explore/custom/src/img/help/advancedSearch_fre.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/advancedSearch_ger.png b/primo-explore/custom/src/img/help/advancedSearch_ger.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/advancedSearch_ger.png
rename to primo-explore/custom/src/img/help/advancedSearch_ger.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/advancedSearch_ita.png b/primo-explore/custom/src/img/help/advancedSearch_ita.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/advancedSearch_ita.png
rename to primo-explore/custom/src/img/help/advancedSearch_ita.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/availOnline.png b/primo-explore/custom/src/img/help/availOnline.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/availOnline.png
rename to primo-explore/custom/src/img/help/availOnline.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/availOnline2.png b/primo-explore/custom/src/img/help/availOnline2.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/availOnline2.png
rename to primo-explore/custom/src/img/help/availOnline2.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/availOnline2_fre.png b/primo-explore/custom/src/img/help/availOnline2_fre.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/availOnline2_fre.png
rename to primo-explore/custom/src/img/help/availOnline2_fre.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/availOnline2_ger.png b/primo-explore/custom/src/img/help/availOnline2_ger.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/availOnline2_ger.png
rename to primo-explore/custom/src/img/help/availOnline2_ger.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/availOnline2_ita.png b/primo-explore/custom/src/img/help/availOnline2_ita.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/availOnline2_ita.png
rename to primo-explore/custom/src/img/help/availOnline2_ita.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/availOnlineFull.png b/primo-explore/custom/src/img/help/availOnlineFull.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/availOnlineFull.png
rename to primo-explore/custom/src/img/help/availOnlineFull.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/availOnlineFull_fre.png b/primo-explore/custom/src/img/help/availOnlineFull_fre.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/availOnlineFull_fre.png
rename to primo-explore/custom/src/img/help/availOnlineFull_fre.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/availOnlineFull_ger.png b/primo-explore/custom/src/img/help/availOnlineFull_ger.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/availOnlineFull_ger.png
rename to primo-explore/custom/src/img/help/availOnlineFull_ger.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/availOnlineFull_ita.png b/primo-explore/custom/src/img/help/availOnlineFull_ita.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/availOnlineFull_ita.png
rename to primo-explore/custom/src/img/help/availOnlineFull_ita.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/availOnline_fre.png b/primo-explore/custom/src/img/help/availOnline_fre.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/availOnline_fre.png
rename to primo-explore/custom/src/img/help/availOnline_fre.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/availOnline_ger.png b/primo-explore/custom/src/img/help/availOnline_ger.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/availOnline_ger.png
rename to primo-explore/custom/src/img/help/availOnline_ger.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/availOnline_ita.png b/primo-explore/custom/src/img/help/availOnline_ita.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/availOnline_ita.png
rename to primo-explore/custom/src/img/help/availOnline_ita.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/emailNotification.png b/primo-explore/custom/src/img/help/emailNotification.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/emailNotification.png
rename to primo-explore/custom/src/img/help/emailNotification.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/emailNotificationSettings.png b/primo-explore/custom/src/img/help/emailNotificationSettings.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/emailNotificationSettings.png
rename to primo-explore/custom/src/img/help/emailNotificationSettings.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/emailNotificationSettings_fre.png b/primo-explore/custom/src/img/help/emailNotificationSettings_fre.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/emailNotificationSettings_fre.png
rename to primo-explore/custom/src/img/help/emailNotificationSettings_fre.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/emailNotificationSettings_ger.png b/primo-explore/custom/src/img/help/emailNotificationSettings_ger.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/emailNotificationSettings_ger.png
rename to primo-explore/custom/src/img/help/emailNotificationSettings_ger.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/emailNotificationSettings_ita.png b/primo-explore/custom/src/img/help/emailNotificationSettings_ita.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/emailNotificationSettings_ita.png
rename to primo-explore/custom/src/img/help/emailNotificationSettings_ita.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/emailNotification_fre.png b/primo-explore/custom/src/img/help/emailNotification_fre.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/emailNotification_fre.png
rename to primo-explore/custom/src/img/help/emailNotification_fre.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/emailNotification_ger.png b/primo-explore/custom/src/img/help/emailNotification_ger.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/emailNotification_ger.png
rename to primo-explore/custom/src/img/help/emailNotification_ger.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/emailNotification_ita.png b/primo-explore/custom/src/img/help/emailNotification_ita.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/emailNotification_ita.png
rename to primo-explore/custom/src/img/help/emailNotification_ita.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/facets1.png b/primo-explore/custom/src/img/help/facets1.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/facets1.png
rename to primo-explore/custom/src/img/help/facets1.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/facets1_fre.png b/primo-explore/custom/src/img/help/facets1_fre.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/facets1_fre.png
rename to primo-explore/custom/src/img/help/facets1_fre.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/facets1_ger.png b/primo-explore/custom/src/img/help/facets1_ger.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/facets1_ger.png
rename to primo-explore/custom/src/img/help/facets1_ger.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/facets1_ita.png b/primo-explore/custom/src/img/help/facets1_ita.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/facets1_ita.png
rename to primo-explore/custom/src/img/help/facets1_ita.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/facets2.png b/primo-explore/custom/src/img/help/facets2.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/facets2.png
rename to primo-explore/custom/src/img/help/facets2.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/facets2_fre.png b/primo-explore/custom/src/img/help/facets2_fre.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/facets2_fre.png
rename to primo-explore/custom/src/img/help/facets2_fre.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/facets2_ger.png b/primo-explore/custom/src/img/help/facets2_ger.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/facets2_ger.png
rename to primo-explore/custom/src/img/help/facets2_ger.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/facets2_ita.png b/primo-explore/custom/src/img/help/facets2_ita.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/facets2_ita.png
rename to primo-explore/custom/src/img/help/facets2_ita.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/facets3.png b/primo-explore/custom/src/img/help/facets3.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/facets3.png
rename to primo-explore/custom/src/img/help/facets3.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/facets3_fre.png b/primo-explore/custom/src/img/help/facets3_fre.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/facets3_fre.png
rename to primo-explore/custom/src/img/help/facets3_fre.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/facets3_ger.png b/primo-explore/custom/src/img/help/facets3_ger.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/facets3_ger.png
rename to primo-explore/custom/src/img/help/facets3_ger.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/facets3_ita.png b/primo-explore/custom/src/img/help/facets3_ita.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/facets3_ita.png
rename to primo-explore/custom/src/img/help/facets3_ita.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/filters1.png b/primo-explore/custom/src/img/help/filters1.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/filters1.png
rename to primo-explore/custom/src/img/help/filters1.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/filters1_fre.png b/primo-explore/custom/src/img/help/filters1_fre.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/filters1_fre.png
rename to primo-explore/custom/src/img/help/filters1_fre.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/filters1_ger.png b/primo-explore/custom/src/img/help/filters1_ger.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/filters1_ger.png
rename to primo-explore/custom/src/img/help/filters1_ger.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/filters1_ita.png b/primo-explore/custom/src/img/help/filters1_ita.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/filters1_ita.png
rename to primo-explore/custom/src/img/help/filters1_ita.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/filters2.png b/primo-explore/custom/src/img/help/filters2.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/filters2.png
rename to primo-explore/custom/src/img/help/filters2.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/filters2_fre.png b/primo-explore/custom/src/img/help/filters2_fre.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/filters2_fre.png
rename to primo-explore/custom/src/img/help/filters2_fre.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/filters2_ger.png b/primo-explore/custom/src/img/help/filters2_ger.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/filters2_ger.png
rename to primo-explore/custom/src/img/help/filters2_ger.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/filters2_ita.png b/primo-explore/custom/src/img/help/filters2_ita.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/filters2_ita.png
rename to primo-explore/custom/src/img/help/filters2_ita.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/fullViewNavigation.png b/primo-explore/custom/src/img/help/fullViewNavigation.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/fullViewNavigation.png
rename to primo-explore/custom/src/img/help/fullViewNavigation.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/fullViewNavigation_fre.png b/primo-explore/custom/src/img/help/fullViewNavigation_fre.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/fullViewNavigation_fre.png
rename to primo-explore/custom/src/img/help/fullViewNavigation_fre.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/fullViewNavigation_ger.png b/primo-explore/custom/src/img/help/fullViewNavigation_ger.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/fullViewNavigation_ger.png
rename to primo-explore/custom/src/img/help/fullViewNavigation_ger.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/fullViewNavigation_ita.png b/primo-explore/custom/src/img/help/fullViewNavigation_ita.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/fullViewNavigation_ita.png
rename to primo-explore/custom/src/img/help/fullViewNavigation_ita.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/getIt.png b/primo-explore/custom/src/img/help/getIt.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/getIt.png
rename to primo-explore/custom/src/img/help/getIt.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/getIt_fre.png b/primo-explore/custom/src/img/help/getIt_fre.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/getIt_fre.png
rename to primo-explore/custom/src/img/help/getIt_fre.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/getIt_ger.png b/primo-explore/custom/src/img/help/getIt_ger.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/getIt_ger.png
rename to primo-explore/custom/src/img/help/getIt_ger.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/getIt_ita.png b/primo-explore/custom/src/img/help/getIt_ita.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/getIt_ita.png
rename to primo-explore/custom/src/img/help/getIt_ita.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/iconUp.png b/primo-explore/custom/src/img/help/iconUp.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/iconUp.png
rename to primo-explore/custom/src/img/help/iconUp.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/infographic_en.png b/primo-explore/custom/src/img/help/infographic_en.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/infographic_en.png
rename to primo-explore/custom/src/img/help/infographic_en.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/infographig_fre.png b/primo-explore/custom/src/img/help/infographig_fre.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/infographig_fre.png
rename to primo-explore/custom/src/img/help/infographig_fre.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/infographig_ger.png b/primo-explore/custom/src/img/help/infographig_ger.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/infographig_ger.png
rename to primo-explore/custom/src/img/help/infographig_ger.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/infographig_ita.png b/primo-explore/custom/src/img/help/infographig_ita.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/infographig_ita.png
rename to primo-explore/custom/src/img/help/infographig_ita.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/locationItems.png b/primo-explore/custom/src/img/help/locationItems.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/locationItems.png
rename to primo-explore/custom/src/img/help/locationItems.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/locationItems_fre.png b/primo-explore/custom/src/img/help/locationItems_fre.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/locationItems_fre.png
rename to primo-explore/custom/src/img/help/locationItems_fre.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/locationItems_ger.png b/primo-explore/custom/src/img/help/locationItems_ger.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/locationItems_ger.png
rename to primo-explore/custom/src/img/help/locationItems_ger.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/locationItems_ita.png b/primo-explore/custom/src/img/help/locationItems_ita.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/locationItems_ita.png
rename to primo-explore/custom/src/img/help/locationItems_ita.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/myAccount.png b/primo-explore/custom/src/img/help/myAccount.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/myAccount.png
rename to primo-explore/custom/src/img/help/myAccount.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/myAccount_fre.png b/primo-explore/custom/src/img/help/myAccount_fre.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/myAccount_fre.png
rename to primo-explore/custom/src/img/help/myAccount_fre.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/myAccount_ger.png b/primo-explore/custom/src/img/help/myAccount_ger.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/myAccount_ger.png
rename to primo-explore/custom/src/img/help/myAccount_ger.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/myAccount_ita.png b/primo-explore/custom/src/img/help/myAccount_ita.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/myAccount_ita.png
rename to primo-explore/custom/src/img/help/myAccount_ita.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/myFavorites.png b/primo-explore/custom/src/img/help/myFavorites.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/myFavorites.png
rename to primo-explore/custom/src/img/help/myFavorites.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/myFavorites_fre.png b/primo-explore/custom/src/img/help/myFavorites_fre.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/myFavorites_fre.png
rename to primo-explore/custom/src/img/help/myFavorites_fre.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/myFavorites_ger.png b/primo-explore/custom/src/img/help/myFavorites_ger.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/myFavorites_ger.png
rename to primo-explore/custom/src/img/help/myFavorites_ger.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/myFavorites_ita.png b/primo-explore/custom/src/img/help/myFavorites_ita.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/myFavorites_ita.png
rename to primo-explore/custom/src/img/help/myFavorites_ita.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/openAccess.png b/primo-explore/custom/src/img/help/openAccess.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/openAccess.png
rename to primo-explore/custom/src/img/help/openAccess.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/openAccess_fre.png b/primo-explore/custom/src/img/help/openAccess_fre.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/openAccess_fre.png
rename to primo-explore/custom/src/img/help/openAccess_fre.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/openAccess_ger.png b/primo-explore/custom/src/img/help/openAccess_ger.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/openAccess_ger.png
rename to primo-explore/custom/src/img/help/openAccess_ger.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/openAccess_ita.png b/primo-explore/custom/src/img/help/openAccess_ita.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/openAccess_ita.png
rename to primo-explore/custom/src/img/help/openAccess_ita.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/pinIcon1.png b/primo-explore/custom/src/img/help/pinIcon1.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/pinIcon1.png
rename to primo-explore/custom/src/img/help/pinIcon1.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/pinIcon2.png b/primo-explore/custom/src/img/help/pinIcon2.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/pinIcon2.png
rename to primo-explore/custom/src/img/help/pinIcon2.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/renewLoans.png b/primo-explore/custom/src/img/help/renewLoans.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/renewLoans.png
rename to primo-explore/custom/src/img/help/renewLoans.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/renewLoans_fre.png b/primo-explore/custom/src/img/help/renewLoans_fre.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/renewLoans_fre.png
rename to primo-explore/custom/src/img/help/renewLoans_fre.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/renewLoans_ger.png b/primo-explore/custom/src/img/help/renewLoans_ger.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/renewLoans_ger.png
rename to primo-explore/custom/src/img/help/renewLoans_ger.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/renewLoans_ita.png b/primo-explore/custom/src/img/help/renewLoans_ita.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/renewLoans_ita.png
rename to primo-explore/custom/src/img/help/renewLoans_ita.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/requestOption.png b/primo-explore/custom/src/img/help/requestOption.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/requestOption.png
rename to primo-explore/custom/src/img/help/requestOption.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/requestOption_fre.png b/primo-explore/custom/src/img/help/requestOption_fre.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/requestOption_fre.png
rename to primo-explore/custom/src/img/help/requestOption_fre.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/requestOption_ger.png b/primo-explore/custom/src/img/help/requestOption_ger.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/requestOption_ger.png
rename to primo-explore/custom/src/img/help/requestOption_ger.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/requestOption_ita.png b/primo-explore/custom/src/img/help/requestOption_ita.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/requestOption_ita.png
rename to primo-explore/custom/src/img/help/requestOption_ita.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/saveQuery.png b/primo-explore/custom/src/img/help/saveQuery.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/saveQuery.png
rename to primo-explore/custom/src/img/help/saveQuery.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/saveQuery_fre.png b/primo-explore/custom/src/img/help/saveQuery_fre.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/saveQuery_fre.png
rename to primo-explore/custom/src/img/help/saveQuery_fre.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/saveQuery_ger.png b/primo-explore/custom/src/img/help/saveQuery_ger.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/saveQuery_ger.png
rename to primo-explore/custom/src/img/help/saveQuery_ger.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/saveQuery_ita.png b/primo-explore/custom/src/img/help/saveQuery_ita.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/saveQuery_ita.png
rename to primo-explore/custom/src/img/help/saveQuery_ita.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/savedSearches.png b/primo-explore/custom/src/img/help/savedSearches.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/savedSearches.png
rename to primo-explore/custom/src/img/help/savedSearches.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/savedSearches_fre.png b/primo-explore/custom/src/img/help/savedSearches_fre.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/savedSearches_fre.png
rename to primo-explore/custom/src/img/help/savedSearches_fre.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/savedSearches_ger.png b/primo-explore/custom/src/img/help/savedSearches_ger.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/savedSearches_ger.png
rename to primo-explore/custom/src/img/help/savedSearches_ger.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/savedSearches_ita.png b/primo-explore/custom/src/img/help/savedSearches_ita.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/savedSearches_ita.png
rename to primo-explore/custom/src/img/help/savedSearches_ita.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/searchHistory.png b/primo-explore/custom/src/img/help/searchHistory.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/searchHistory.png
rename to primo-explore/custom/src/img/help/searchHistory.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/searchHistoryIcon.png b/primo-explore/custom/src/img/help/searchHistoryIcon.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/searchHistoryIcon.png
rename to primo-explore/custom/src/img/help/searchHistoryIcon.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/searchHistory_fre.png b/primo-explore/custom/src/img/help/searchHistory_fre.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/searchHistory_fre.png
rename to primo-explore/custom/src/img/help/searchHistory_fre.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/searchHistory_ger.png b/primo-explore/custom/src/img/help/searchHistory_ger.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/searchHistory_ger.png
rename to primo-explore/custom/src/img/help/searchHistory_ger.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/searchHistory_ita.png b/primo-explore/custom/src/img/help/searchHistory_ita.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/searchHistory_ita.png
rename to primo-explore/custom/src/img/help/searchHistory_ita.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/searchNOT.png b/primo-explore/custom/src/img/help/searchNOT.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/searchNOT.png
rename to primo-explore/custom/src/img/help/searchNOT.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/searchNOT_fre.png b/primo-explore/custom/src/img/help/searchNOT_fre.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/searchNOT_fre.png
rename to primo-explore/custom/src/img/help/searchNOT_fre.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/searchNOT_ger.png b/primo-explore/custom/src/img/help/searchNOT_ger.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/searchNOT_ger.png
rename to primo-explore/custom/src/img/help/searchNOT_ger.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/searchNOT_ita.png b/primo-explore/custom/src/img/help/searchNOT_ita.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/searchNOT_ita.png
rename to primo-explore/custom/src/img/help/searchNOT_ita.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/searchOR.png b/primo-explore/custom/src/img/help/searchOR.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/searchOR.png
rename to primo-explore/custom/src/img/help/searchOR.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/searchOR_fre.png b/primo-explore/custom/src/img/help/searchOR_fre.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/searchOR_fre.png
rename to primo-explore/custom/src/img/help/searchOR_fre.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/searchOR_ger.png b/primo-explore/custom/src/img/help/searchOR_ger.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/searchOR_ger.png
rename to primo-explore/custom/src/img/help/searchOR_ger.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/searchOR_ita.png b/primo-explore/custom/src/img/help/searchOR_ita.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/searchOR_ita.png
rename to primo-explore/custom/src/img/help/searchOR_ita.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/searchPhrase.png b/primo-explore/custom/src/img/help/searchPhrase.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/searchPhrase.png
rename to primo-explore/custom/src/img/help/searchPhrase.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/searchPhrase_fre.png b/primo-explore/custom/src/img/help/searchPhrase_fre.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/searchPhrase_fre.png
rename to primo-explore/custom/src/img/help/searchPhrase_fre.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/searchPhrase_ger.png b/primo-explore/custom/src/img/help/searchPhrase_ger.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/searchPhrase_ger.png
rename to primo-explore/custom/src/img/help/searchPhrase_ger.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/searchPhrase_ita.png b/primo-explore/custom/src/img/help/searchPhrase_ita.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/searchPhrase_ita.png
rename to primo-explore/custom/src/img/help/searchPhrase_ita.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/searchWildcard1.png b/primo-explore/custom/src/img/help/searchWildcard1.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/searchWildcard1.png
rename to primo-explore/custom/src/img/help/searchWildcard1.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/searchWildcard1_fre.png b/primo-explore/custom/src/img/help/searchWildcard1_fre.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/searchWildcard1_fre.png
rename to primo-explore/custom/src/img/help/searchWildcard1_fre.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/searchWildcard1_ger.png b/primo-explore/custom/src/img/help/searchWildcard1_ger.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/searchWildcard1_ger.png
rename to primo-explore/custom/src/img/help/searchWildcard1_ger.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/searchWildcard1_ita.png b/primo-explore/custom/src/img/help/searchWildcard1_ita.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/searchWildcard1_ita.png
rename to primo-explore/custom/src/img/help/searchWildcard1_ita.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/searchWildcard2.png b/primo-explore/custom/src/img/help/searchWildcard2.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/searchWildcard2.png
rename to primo-explore/custom/src/img/help/searchWildcard2.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/searchWildcard2_fre.png b/primo-explore/custom/src/img/help/searchWildcard2_fre.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/searchWildcard2_fre.png
rename to primo-explore/custom/src/img/help/searchWildcard2_fre.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/searchWildcard2_ger.png b/primo-explore/custom/src/img/help/searchWildcard2_ger.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/searchWildcard2_ger.png
rename to primo-explore/custom/src/img/help/searchWildcard2_ger.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/searchWildcard2_ita.png b/primo-explore/custom/src/img/help/searchWildcard2_ita.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/searchWildcard2_ita.png
rename to primo-explore/custom/src/img/help/searchWildcard2_ita.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/searchWildcard3.png b/primo-explore/custom/src/img/help/searchWildcard3.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/searchWildcard3.png
rename to primo-explore/custom/src/img/help/searchWildcard3.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/searchWildcard3_fre.png b/primo-explore/custom/src/img/help/searchWildcard3_fre.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/searchWildcard3_fre.png
rename to primo-explore/custom/src/img/help/searchWildcard3_fre.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/searchWildcard3_ger.png b/primo-explore/custom/src/img/help/searchWildcard3_ger.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/searchWildcard3_ger.png
rename to primo-explore/custom/src/img/help/searchWildcard3_ger.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/searchWildcard3_ita.png b/primo-explore/custom/src/img/help/searchWildcard3_ita.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/searchWildcard3_ita.png
rename to primo-explore/custom/src/img/help/searchWildcard3_ita.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/searchWildcard4_fre.png b/primo-explore/custom/src/img/help/searchWildcard4_fre.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/searchWildcard4_fre.png
rename to primo-explore/custom/src/img/help/searchWildcard4_fre.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/searchWildcard4_ger.png b/primo-explore/custom/src/img/help/searchWildcard4_ger.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/searchWildcard4_ger.png
rename to primo-explore/custom/src/img/help/searchWildcard4_ger.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/searchWildcard4_ita.png b/primo-explore/custom/src/img/help/searchWildcard4_ita.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/searchWildcard4_ita.png
rename to primo-explore/custom/src/img/help/searchWildcard4_ita.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/setLanguage.png b/primo-explore/custom/src/img/help/setLanguage.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/setLanguage.png
rename to primo-explore/custom/src/img/help/setLanguage.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/setLanguage_fre.png b/primo-explore/custom/src/img/help/setLanguage_fre.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/setLanguage_fre.png
rename to primo-explore/custom/src/img/help/setLanguage_fre.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/setLanguage_ger.png b/primo-explore/custom/src/img/help/setLanguage_ger.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/setLanguage_ger.png
rename to primo-explore/custom/src/img/help/setLanguage_ger.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/setLanguage_ita.png b/primo-explore/custom/src/img/help/setLanguage_ita.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/setLanguage_ita.png
rename to primo-explore/custom/src/img/help/setLanguage_ita.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/showonly.png b/primo-explore/custom/src/img/help/showonly.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/showonly.png
rename to primo-explore/custom/src/img/help/showonly.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/showonly_fre.png b/primo-explore/custom/src/img/help/showonly_fre.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/showonly_fre.png
rename to primo-explore/custom/src/img/help/showonly_fre.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/showonly_ger.png b/primo-explore/custom/src/img/help/showonly_ger.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/showonly_ger.png
rename to primo-explore/custom/src/img/help/showonly_ger.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/showonly_ita.png b/primo-explore/custom/src/img/help/showonly_ita.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/showonly_ita.png
rename to primo-explore/custom/src/img/help/showonly_ita.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/signin.png b/primo-explore/custom/src/img/help/signin.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/signin.png
rename to primo-explore/custom/src/img/help/signin.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/signin_fre.png b/primo-explore/custom/src/img/help/signin_fre.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/signin_fre.png
rename to primo-explore/custom/src/img/help/signin_fre.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/signin_ger.png b/primo-explore/custom/src/img/help/signin_ger.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/signin_ger.png
rename to primo-explore/custom/src/img/help/signin_ger.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/signin_ita.png b/primo-explore/custom/src/img/help/signin_ita.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/signin_ita.png
rename to primo-explore/custom/src/img/help/signin_ita.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/simpleSearch.png b/primo-explore/custom/src/img/help/simpleSearch.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/simpleSearch.png
rename to primo-explore/custom/src/img/help/simpleSearch.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/simpleSearch_fre.png b/primo-explore/custom/src/img/help/simpleSearch_fre.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/simpleSearch_fre.png
rename to primo-explore/custom/src/img/help/simpleSearch_fre.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/simpleSearch_ger.png b/primo-explore/custom/src/img/help/simpleSearch_ger.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/simpleSearch_ger.png
rename to primo-explore/custom/src/img/help/simpleSearch_ger.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/simpleSearch_ita.png b/primo-explore/custom/src/img/help/simpleSearch_ita.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/simpleSearch_ita.png
rename to primo-explore/custom/src/img/help/simpleSearch_ita.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/sorting.png b/primo-explore/custom/src/img/help/sorting.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/sorting.png
rename to primo-explore/custom/src/img/help/sorting.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/sorting_fre.png b/primo-explore/custom/src/img/help/sorting_fre.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/sorting_fre.png
rename to primo-explore/custom/src/img/help/sorting_fre.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/sorting_ger.png b/primo-explore/custom/src/img/help/sorting_ger.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/sorting_ger.png
rename to primo-explore/custom/src/img/help/sorting_ger.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/sorting_ita.png b/primo-explore/custom/src/img/help/sorting_ita.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/sorting_ita.png
rename to primo-explore/custom/src/img/help/sorting_ita.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/swisscovery.png b/primo-explore/custom/src/img/help/swisscovery.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/swisscovery.png
rename to primo-explore/custom/src/img/help/swisscovery.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/swisscovery_fre.png b/primo-explore/custom/src/img/help/swisscovery_fre.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/swisscovery_fre.png
rename to primo-explore/custom/src/img/help/swisscovery_fre.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/swisscovery_ger.png b/primo-explore/custom/src/img/help/swisscovery_ger.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/swisscovery_ger.png
rename to primo-explore/custom/src/img/help/swisscovery_ger.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/swisscovery_ita.png b/primo-explore/custom/src/img/help/swisscovery_ita.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/swisscovery_ita.png
rename to primo-explore/custom/src/img/help/swisscovery_ita.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/versions.png b/primo-explore/custom/src/img/help/versions.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/versions.png
rename to primo-explore/custom/src/img/help/versions.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/versions_fre.png b/primo-explore/custom/src/img/help/versions_fre.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/versions_fre.png
rename to primo-explore/custom/src/img/help/versions_fre.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/versions_ger.png b/primo-explore/custom/src/img/help/versions_ger.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/versions_ger.png
rename to primo-explore/custom/src/img/help/versions_ger.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/versions_ita.png b/primo-explore/custom/src/img/help/versions_ita.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/versions_ita.png
rename to primo-explore/custom/src/img/help/versions_ita.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/viewOnline.png b/primo-explore/custom/src/img/help/viewOnline.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/viewOnline.png
rename to primo-explore/custom/src/img/help/viewOnline.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/viewOnlineIcon.png b/primo-explore/custom/src/img/help/viewOnlineIcon.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/viewOnlineIcon.png
rename to primo-explore/custom/src/img/help/viewOnlineIcon.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/viewOnline_fre.png b/primo-explore/custom/src/img/help/viewOnline_fre.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/viewOnline_fre.png
rename to primo-explore/custom/src/img/help/viewOnline_fre.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/viewOnline_ger.png b/primo-explore/custom/src/img/help/viewOnline_ger.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/viewOnline_ger.png
rename to primo-explore/custom/src/img/help/viewOnline_ger.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/help/viewOnline_ita.png b/primo-explore/custom/src/img/help/viewOnline_ita.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/help/viewOnline_ita.png
rename to primo-explore/custom/src/img/help/viewOnline_ita.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/icon_archival_material.png b/primo-explore/custom/src/img/icon_archival_material.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/icon_archival_material.png
rename to primo-explore/custom/src/img/icon_archival_material.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/icon_article.png b/primo-explore/custom/src/img/icon_article.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/icon_article.png
rename to primo-explore/custom/src/img/icon_article.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/icon_audio.png b/primo-explore/custom/src/img/icon_audio.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/icon_audio.png
rename to primo-explore/custom/src/img/icon_audio.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/icon_book.png b/primo-explore/custom/src/img/icon_book.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/icon_book.png
rename to primo-explore/custom/src/img/icon_book.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/icon_book_chapter.png b/primo-explore/custom/src/img/icon_book_chapter.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/icon_book_chapter.png
rename to primo-explore/custom/src/img/icon_book_chapter.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/icon_cd-rom.png b/primo-explore/custom/src/img/icon_cd-rom.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/icon_cd-rom.png
rename to primo-explore/custom/src/img/icon_cd-rom.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/icon_cdrom.png b/primo-explore/custom/src/img/icon_cdrom.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/icon_cdrom.png
rename to primo-explore/custom/src/img/icon_cdrom.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/icon_conference_ proceeding.png b/primo-explore/custom/src/img/icon_conference_ proceeding.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/icon_conference_ proceeding.png
rename to primo-explore/custom/src/img/icon_conference_ proceeding.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/icon_conference_proceeding.png b/primo-explore/custom/src/img/icon_conference_proceeding.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/icon_conference_proceeding.png
rename to primo-explore/custom/src/img/icon_conference_proceeding.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/icon_database.png b/primo-explore/custom/src/img/icon_database.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/icon_database.png
rename to primo-explore/custom/src/img/icon_database.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/icon_dataset.png b/primo-explore/custom/src/img/icon_dataset.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/icon_dataset.png
rename to primo-explore/custom/src/img/icon_dataset.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/icon_dissertation.png b/primo-explore/custom/src/img/icon_dissertation.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/icon_dissertation.png
rename to primo-explore/custom/src/img/icon_dissertation.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/icon_ebook.png b/primo-explore/custom/src/img/icon_ebook.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/icon_ebook.png
rename to primo-explore/custom/src/img/icon_ebook.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/icon_ejournal.png b/primo-explore/custom/src/img/icon_ejournal.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/icon_ejournal.png
rename to primo-explore/custom/src/img/icon_ejournal.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/icon_government_document.png b/primo-explore/custom/src/img/icon_government_document.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/icon_government_document.png
rename to primo-explore/custom/src/img/icon_government_document.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/icon_image.png b/primo-explore/custom/src/img/icon_image.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/icon_image.png
rename to primo-explore/custom/src/img/icon_image.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/icon_journal.png b/primo-explore/custom/src/img/icon_journal.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/icon_journal.png
rename to primo-explore/custom/src/img/icon_journal.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/icon_kit.png b/primo-explore/custom/src/img/icon_kit.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/icon_kit.png
rename to primo-explore/custom/src/img/icon_kit.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/icon_kit_multimedia.png b/primo-explore/custom/src/img/icon_kit_multimedia.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/icon_kit_multimedia.png
rename to primo-explore/custom/src/img/icon_kit_multimedia.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/icon_legal_document.png b/primo-explore/custom/src/img/icon_legal_document.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/icon_legal_document.png
rename to primo-explore/custom/src/img/icon_legal_document.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/icon_legal_document_.png b/primo-explore/custom/src/img/icon_legal_document_.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/icon_legal_document_.png
rename to primo-explore/custom/src/img/icon_legal_document_.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/icon_manuscript.png b/primo-explore/custom/src/img/icon_manuscript.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/icon_manuscript.png
rename to primo-explore/custom/src/img/icon_manuscript.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/icon_map.png b/primo-explore/custom/src/img/icon_map.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/icon_map.png
rename to primo-explore/custom/src/img/icon_map.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/icon_microform.png b/primo-explore/custom/src/img/icon_microform.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/icon_microform.png
rename to primo-explore/custom/src/img/icon_microform.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/icon_microform_not_used.png b/primo-explore/custom/src/img/icon_microform_not_used.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/icon_microform_not_used.png
rename to primo-explore/custom/src/img/icon_microform_not_used.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/icon_microforms.png b/primo-explore/custom/src/img/icon_microforms.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/icon_microforms.png
rename to primo-explore/custom/src/img/icon_microforms.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/icon_newspaper.png b/primo-explore/custom/src/img/icon_newspaper.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/icon_newspaper.png
rename to primo-explore/custom/src/img/icon_newspaper.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/icon_newspaper_article.png b/primo-explore/custom/src/img/icon_newspaper_article.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/icon_newspaper_article.png
rename to primo-explore/custom/src/img/icon_newspaper_article.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/icon_other.png b/primo-explore/custom/src/img/icon_other.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/icon_other.png
rename to primo-explore/custom/src/img/icon_other.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/icon_patent.png b/primo-explore/custom/src/img/icon_patent.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/icon_patent.png
rename to primo-explore/custom/src/img/icon_patent.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/icon_reference_entry.png b/primo-explore/custom/src/img/icon_reference_entry.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/icon_reference_entry.png
rename to primo-explore/custom/src/img/icon_reference_entry.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/icon_report.png b/primo-explore/custom/src/img/icon_report.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/icon_report.png
rename to primo-explore/custom/src/img/icon_report.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/icon_research_data.png b/primo-explore/custom/src/img/icon_research_data.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/icon_research_data.png
rename to primo-explore/custom/src/img/icon_research_data.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/icon_research_dataset.png b/primo-explore/custom/src/img/icon_research_dataset.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/icon_research_dataset.png
rename to primo-explore/custom/src/img/icon_research_dataset.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/icon_review.png b/primo-explore/custom/src/img/icon_review.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/icon_review.png
rename to primo-explore/custom/src/img/icon_review.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/icon_score.png b/primo-explore/custom/src/img/icon_score.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/icon_score.png
rename to primo-explore/custom/src/img/icon_score.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/icon_statistical_data.png b/primo-explore/custom/src/img/icon_statistical_data.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/icon_statistical_data.png
rename to primo-explore/custom/src/img/icon_statistical_data.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/icon_text_resource.png b/primo-explore/custom/src/img/icon_text_resource.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/icon_text_resource.png
rename to primo-explore/custom/src/img/icon_text_resource.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/icon_versions.png b/primo-explore/custom/src/img/icon_versions.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/icon_versions.png
rename to primo-explore/custom/src/img/icon_versions.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/icon_video.png b/primo-explore/custom/src/img/icon_video.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/icon_video.png
rename to primo-explore/custom/src/img/icon_video.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/icon_website.png b/primo-explore/custom/src/img/icon_website.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/icon_website.png
rename to primo-explore/custom/src/img/icon_website.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/infographic_de.png b/primo-explore/custom/src/img/infographic_de.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/infographic_de.png
rename to primo-explore/custom/src/img/infographic_de.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/infographic_en.png b/primo-explore/custom/src/img/infographic_en.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/infographic_en.png
rename to primo-explore/custom/src/img/infographic_en.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/infographic_fr.png b/primo-explore/custom/src/img/infographic_fr.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/infographic_fr.png
rename to primo-explore/custom/src/img/infographic_fr.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/infographic_it.png b/primo-explore/custom/src/img/infographic_it.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/infographic_it.png
rename to primo-explore/custom/src/img/infographic_it.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/information.png b/primo-explore/custom/src/img/information.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/information.png
rename to primo-explore/custom/src/img/information.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/instagram.svg b/primo-explore/custom/src/img/instagram.svg
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/instagram.svg
rename to primo-explore/custom/src/img/instagram.svg
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/instagram_white.svg b/primo-explore/custom/src/img/instagram_white.svg
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/instagram_white.svg
rename to primo-explore/custom/src/img/instagram_white.svg
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/library-logo.png b/primo-explore/custom/src/img/library-logo.png
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/library-logo.png
rename to primo-explore/custom/src/img/library-logo.png
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/linkedin.svg b/primo-explore/custom/src/img/linkedin.svg
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/linkedin.svg
rename to primo-explore/custom/src/img/linkedin.svg
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/twitter.svg b/primo-explore/custom/src/img/twitter.svg
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/twitter.svg
rename to primo-explore/custom/src/img/twitter.svg
diff --git a/primo-explore/custom/41SLSP_EPF-prod/img/youtube.svg b/primo-explore/custom/src/img/youtube.svg
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/img/youtube.svg
rename to primo-explore/custom/src/img/youtube.svg
diff --git a/primo-explore/custom/41SLSP_EPF-prod/js/README.md b/primo-explore/custom/src/js/README.md
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/js/README.md
rename to primo-explore/custom/src/js/README.md
diff --git a/primo-explore/custom/41SLSP_EPF-prod/js/account/accountlinks.component.js b/primo-explore/custom/src/js/account/accountlinks.component.js
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/js/account/accountlinks.component.js
rename to primo-explore/custom/src/js/account/accountlinks.component.js
diff --git a/primo-explore/custom/41SLSP_EPF-prod/js/account/index.js b/primo-explore/custom/src/js/account/index.js
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/js/account/index.js
rename to primo-explore/custom/src/js/account/index.js
diff --git a/primo-explore/custom/41SLSP_EPF-prod/js/briefview/availabilityline.component.js b/primo-explore/custom/src/js/briefview/availabilityline.component.js
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/js/briefview/availabilityline.component.js
rename to primo-explore/custom/src/js/briefview/availabilityline.component.js
diff --git a/primo-explore/custom/41SLSP_EPF-prod/js/briefview/index.js b/primo-explore/custom/src/js/briefview/index.js
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/js/briefview/index.js
rename to primo-explore/custom/src/js/briefview/index.js
diff --git a/primo-explore/custom/41SLSP_EPF-prod/js/custom.js b/primo-explore/custom/src/js/custom.js
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/js/custom.js
rename to primo-explore/custom/src/js/custom.js
diff --git a/primo-explore/custom/src/js/custom.js.map b/primo-explore/custom/src/js/custom.js.map
new file mode 100644
index 0000000..47370f5
--- /dev/null
+++ b/primo-explore/custom/src/js/custom.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["node_modules/browser-pack/_prelude.js","primo-explore/custom/src/js/account/accountlinks.component.js","primo-explore/custom/src/js/account/index.js","primo-explore/custom/src/js/briefview/availabilityline.component.js","primo-explore/custom/src/js/briefview/index.js","primo-explore/custom/src/js/databases/index.js","primo-explore/custom/src/js/databases/treenav.component.js","primo-explore/custom/src/js/filters/custom_translate.filter.js","primo-explore/custom/src/js/filters/trust_html.filter.js","primo-explore/custom/src/js/fullview/almaviewit.component.js","primo-explore/custom/src/js/fullview/index.js","primo-explore/custom/src/js/homepage/alert.js","primo-explore/custom/src/js/homepage/index.js","primo-explore/custom/src/js/homepage/mainmenu.component.js","primo-explore/custom/src/js/homepage/searchbar.component.js","primo-explore/custom/src/js/homepage/topbar.component.js","primo-explore/custom/src/js/main.js","primo-explore/custom/src/js/slsp/epfl_custom_slsp.js"],"names":["r","e","n","t","o","i","f","c","require","u","a","Error","code","p","exports","call","length","1","module","bindings","parentCtrl","controllerAs","controller","vm","this","console","log","view","accountLinksService","vid","replace","template","angular","component","$filter","$http","userService","parse_doi","txt","m","match","is_epfl_IP","userIP","getIP","found","parseInt","get_doi","hasOwnProperty","result","pnx","addata","doi","control","recordtype","display","_iteratorNormalCompletion","_didIteratorError","_iteratorError","undefined","_step","_iterator","identifier","Symbol","iterator","next","done","value","err","return","check_doi","set_url_pdf","url","method","then","response","status","pdf_link","data","fullTextFile","filter","$translate","trad","costWarningScan","fr","en","de","it","costWarningScanEPFL","costWarningNetworkLoan","costWarningPEB","mainTitle","subTitle","switchEduID","illButton","feedbackLink","vpnMSG","feedbackLinkMSG","pdfAccess","includes","use","$sce","trustAsHtml","get_txt","no_report_link","item","openaccess","oa","mmsId","recordid","title","creationdate","creator","join","type","ident","indexOf","substring","userAgent","navigator","subject","body","encodeURIComponent","active","begin","end","homepage_module","$location","$element","$doCheck","document","readyState","elem","querySelector","parentElement","modified","removeAttribute","setAttribute","alert","d_now","Date","now","lang","showTabsAndScopes","window","location","href","split","configurationUtil","app","$compile","$scope","$rootScope","form","formLength","children","typeFeeAlert","currentTypeFeeAlert","htmlwarning","getFeeAlert","get_peb_button","fn","instant","htmlcompiled","element","insertBefore","replaceWith","Object","defineProperty","configurable","get","getFilteredForm","key","options","sort","b","onTopInstitutions","isEPFL","requestService","_service","linkBase","requestHeader","allElements","getElementsByTagName","getAttribute","parentNode","className","click_peb","button","click","origin","biblinkText","biblinkBase","getLibraryUrl","loc","libraryCode","getLibrary","currLoc","librarycodeTranslation","service","jwtHelper","isGuest","jwt","sessionStorage","getItem","decodedToken","decodeToken","userGroup","userName","userIp","usrNme","removeClass","addClass","getAlert","ga","almaHowToGetitService","reqAlert","_htmlMsg","myEl2"],"mappings":"CAAA,SAAAA,EAAAC,EAAAC,EAAAC,GAAA,SAAAC,EAAAC,EAAAC,GAAA,IAAAJ,EAAAG,GAAA,CAAA,IAAAJ,EAAAI,GAAA,CAAA,IAAAE,EAAA,mBAAAC,SAAAA,QAAA,IAAAF,GAAAC,EAAA,OAAAA,EAAAF,GAAA,GAAA,GAAAI,EAAA,OAAAA,EAAAJ,GAAA,GAAA,IAAAK,EAAA,IAAAC,MAAA,uBAAAN,EAAA,KAAA,MAAAK,EAAAE,KAAA,mBAAAF,EAAA,IAAAG,EAAAX,EAAAG,GAAA,CAAAS,QAAA,IAAAb,EAAAI,GAAA,GAAAU,KAAAF,EAAAC,QAAA,SAAAd,GAAA,OAAAI,EAAAH,EAAAI,GAAA,GAAAL,IAAAA,IAAAa,EAAAA,EAAAC,QAAAd,EAAAC,EAAAC,EAAAC,GAAA,OAAAD,EAAAG,GAAAS,QAAA,IAAA,IAAAL,EAAA,mBAAAD,SAAAA,QAAAH,EAAA,EAAAA,EAAAF,EAAAa,OAAAX,IAAAD,EAAAD,EAAAE,IAAA,OAAAD,EAAA,CAAA,CAAAa,EAAA,CAAA,SAAAT,EAAAU,EAAAJ,GCAA,aAQAI,EAAOJ,QAAU,CACbK,SAAU,CAACC,WAAY,KACvBC,aAAc,OACdC,WAAY,CAAC,WACT,IAAIC,EAAKC,KACTC,QAAQC,IAAIH,GACZA,EAAGI,KAAOJ,EAAGH,WAAWQ,oBAAoBC,IAAIC,QAAQ,IAAK,OAGjEC,SAAA,kSChBqBC,QAAQd,OAAO,gBAAiB,CAAC,gBACvCe,UAAU,uBAAwBzB,EAAQ,oGCF7DU,EAAOJ,QAAU,CACbK,SAAU,CAACC,WAAY,KACvBC,aAAc,OACdC,WAAY,CAAC,UAAW,QAAS,cAAe,SAASY,EAASC,EAAOC,GACrE,IAAIb,EAAKC,KACT,SAASa,EAAUC,GACf,IACIC,EAAID,EAAIE,MADH,mCAET,GAAID,EACA,OAAOA,EAAE,GAIjBhB,EAAGkB,YAAa,EAChB,IAAIC,EAASN,EAAYO,QAGzB,GAAID,EAAQ,CACR,IACME,EAAQF,EAAOF,MADP,8BAEVI,IAAsB,KAAZA,EAAM,IAAkC,KAApBC,SAASD,EAAM,OAC7CrB,EAAGkB,YAAa,GAIxBlB,EAAGuB,QAAU,WACT,GAAIvB,EAAGH,WAAW2B,eAAe,WAAaxB,EAAGH,WAAW4B,OAAOD,eAAe,OAAO,CACrF,IAAIE,EAAM1B,EAAGH,WAAW4B,OAAOC,IAG/B,GAAI,WAAYA,GAAO,QAASA,EAAIC,QAAUb,EAAUY,EAAIC,OAAOC,IAAI,KAAmC,YAA5BF,EAAIG,QAAQC,WAAW,GACjG,OAAOhB,EAAUY,EAAIC,OAAOC,IAAI,IAIpC,GAAI,YAAaF,GAAO,eAAgBA,EAAIK,QAAS,CAAA,IAAAC,GAAA,EAAAC,GAAA,EAAAC,OAAAC,EAAA,IACjD,IAAA,IAAAC,EAAAC,EAAyBX,EAAIK,QAAQO,WAArCC,OAAAC,cAAAR,GAAAI,EAAAC,EAAAI,QAAAC,MAAAV,GAAA,EAAgD,CAAA,IAArCM,EAAqCF,EAAAO,MAC5C,GAAI7B,EAAUwB,GACV,OAAOxB,EAAUwB,IAHwB,MAAAM,GAAAX,GAAA,EAAAC,EAAAU,EAAA,QAAA,KAAAZ,GAAAK,EAAAQ,QAAAR,EAAAQ,SAAA,QAAA,GAAAZ,EAAA,MAAAC,OAU7DlC,EAAG8C,UAAY,WAYX,OAXK9C,EAAGwB,eAAe,QACfxB,EAAGH,WAAW2B,eAAe,WAAaxB,EAAGH,WAAW4B,OAAOD,eAAe,SAC1ExB,EAAGuB,WACHvB,EAAG4B,IAAM5B,EAAGuB,UACZvB,EAAG+C,eAGH/C,EAAG4B,IAAM,QAIjB5B,EAAGwB,eAAe,aAK1BxB,EAAG+C,YAAc,WACb,IAAIC,EAAA,yEAA+EhD,EAAG4B,IAAlF,qDACJhB,EAAM,CACFqC,OAAQ,MACRD,IAAKA,IACNE,KAAK,SAAyBC,GAE7B,GAAwB,MAApBA,EAASC,OAAgB,CACzB,IACI,IAAIC,EAAWF,EAASG,KAAKA,KAAKC,aACpC,MAAM7E,GACA2E,EAAW,GAEG,EAAlBA,EAAS5D,SACTO,EAAGqD,SAAWA,KAIvB,SAASF,GACRnD,EAAG4B,IAAM,UAMrBpB,SAAA,kTCtFuBC,QAAQd,OAAO,kBAAmB,CAAC,gBACzCe,UAA4C,uCAAwCzB,EAAQ,4GCDvFwB,QAAQd,OAAO,kBAAmB,CAAC,gBACzCe,UAAU,kBAAmBzB,EAAQ,6ECFzD,aAMAU,EAAOJ,QAAU,CACbK,SAAU,CAACC,WAAY,KACvBC,aAAc,OACdC,WAAY,CAAC,UAAW,SAASY,+BCTrC,aAoCkCF,QAAQd,OAAO,wBAAyB,IACjE6D,OAAO,kBAAmB,CAAC,aAAc,SAASC,GACnD,OAAO,SAAS1C,GACZ,IAAI2C,EAAO,CAEPC,gBAAgB,CACZC,GAAI,6MACJC,GAAI,mLACJC,GAAI,yMACJC,GAAI,4MAERC,oBAAoB,CAChBJ,GAAI,wEACJC,GAAI,qDACJC,GAAI,kEACJC,GAAI,sEAERE,uBAAuB,CACnBL,GAAI,wEACJC,GAAI,2DACJC,GAAI,gEACJC,GAAI,wEAERG,eAAe,CACXN,GAAI,0RACJC,GAAI,qOACJC,GAAI,yPACJC,GAAI,kQAERI,UAAU,CACNP,GAAI,kBACJC,GAAI,uBACJC,GAAI,sBACJC,GAAI,kBAERK,SAAS,CACLR,GAAI,wEACJC,GAAI,6DACJC,GAAI,2DACJC,GAAI,oEAERM,YAAY,CACRT,GAAI,6CACJC,GAAI,+BACJC,GAAI,yCACJC,GAAI,sCAERO,UAAU,CACNV,GAAI,iCACJC,GAAI,2BACJC,GAAI,YACJC,GAAI,+BAERQ,aAAa,CACTX,GAAI,+BACJC,GAAI,2BACJC,GAAI,yBACJC,GAAI,oCAERS,OAAO,CACHZ,GAAI,uRACJC,GAAI,iPACJC,GAAI,oPACJC,GAAI,uQAQRU,gBAAgB,CACZb,GAAI,iHACJC,GAAI,iHACJC,GAAI,iHACJC,GAAI,kHAERW,UAAU,CACNd,GAAI,sBACJC,GAAI,2BACJC,GAAI,2BACJC,GAAI,6BAGZ,MAAI,CAAC,KAAM,KAAM,KAAM,MAAMY,SAASlB,EAAWmB,OACtClB,EAAK3C,GAAK0C,EAAWmB,OAErBlB,EAAK3C,GAAK6C,+BC3HjC,aAYAnD,QAAQd,OAAO,kBAAmB,IAC7B6D,OAAO,YAAa,CAAC,OAAQ,SAASqB,GACvC,OAAO,SAAS9D,GACZ,OAAO8D,EAAKC,YAAY/D,+BCfhC,aAQApB,EAAOJ,QAAU,CACbK,SAAU,CAACC,WAAY,KACvBC,aAAc,OACdC,WAAY,CAAC,UAAW,cAAe,SAASY,EAASE,GACrD,IAAIb,EAAKC,KAkBT,GAhBAD,EAAG+E,QAAU,WACT,OAAOpE,EAAQ,kBAARA,CAA2B,WAGtCX,EAAGuE,aAAe,GAClBvE,EAAGkB,YAAa,EAChBlB,EAAGgF,gBAAiB,EAGhBhF,EAAGH,WAAWoF,KAAKvD,IAAIC,OAAOuD,YAA8D,SAAhDlF,EAAGH,WAAWoF,KAAKvD,IAAIC,OAAOuD,WAAW,KACrFlF,EAAGgF,gBAAiB,GAGpBhF,EAAGH,WAAWoF,KAAKvD,IAAIC,OAAOwD,IAA8C,kBAAxCnF,EAAGH,WAAWoF,KAAKvD,IAAIC,OAAOwD,GAAG,KACrEnF,EAAGgF,gBAAiB,IAEnBhF,EAAGgF,eAAe,CAInB,IAAI7D,EAASN,EAAYO,QAGzB,GAAID,EAAQ,CACR,IACME,EAAQF,EAAOF,MADP,8BAEVI,IAAsB,KAAZA,EAAM,IAAkC,KAApBC,SAASD,EAAM,OAC7CrB,EAAGkB,YAAa,GAKxB,IAAIkE,EAAQpF,EAAGH,WAAWoF,KAAKvD,IAAIG,QAAQwD,SAAS,GAChDC,EAAQ,GACRtF,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQuD,OAAuD,EAA9CtF,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQuD,MAAM7F,SAC7E6F,EAAQtF,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQuD,MAAM,IAEjD,IAAIC,EAAe,GACfvF,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQwD,cAAqE,EAArDvF,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQwD,aAAa9F,SAC3F8F,EAAevF,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQwD,aAAa,IAE/D,IAAIC,EAAU,GACVxF,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQyD,SAA2D,EAAhDxF,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQyD,QAAQ/F,SACjF+F,EAAUxF,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQyD,QAAQC,KAAK,OAE1D,IAAIC,EAAO,GACP1F,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQ2D,MAAqD,EAA7C1F,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQ2D,KAAKjG,SAC3EiG,EAAO1F,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQ2D,KAAK,IAE/C,IAAIpD,EAAa,GACjB,GAAItC,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQO,YAAiE,EAAnDtC,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQO,WAAW7C,OAAY,CACnG,IAAIkG,EAAQ3F,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQO,WAAW,IACtB,EAA5BqD,EAAMC,QAAQ,aAEqB,EAA5BD,EAAMC,QAAQ,WADrBtD,EAAatC,EAAGH,WAAWoF,KAAKvD,IAAIK,QAAQO,WAAWmD,KAAK,MAAMlF,QAAQ,SAAU,IAAIA,QAAQ,OAAQ,KAGxE,EAAzBoF,EAAMC,QAAQ,QACrBtD,EAAa,SAAWqD,EAAME,UAAUF,EAAMC,QAAQ,OAAS,IAC/B,EAAzBD,EAAMC,QAAQ,UACrBtD,EAAa,SAAWqD,EAAME,UAAUF,EAAMC,QAAQ,OAAS,IAGvE,IAAIE,EAAYC,UAAUD,UAGtBE,EAAU,kBAAoBZ,EAAQ,OAASE,EAAQ,IAGvDW,EAAOtF,EAAQ,kBAARA,CAA2B,mBAAqB,oBAA2B2E,EAAQ,aAAeE,EAAU,WAAaD,EAAe,WAAaG,EAAO,YAAcN,EAAQ,iBAAmB9C,EAAa,iBAAmBwD,EAAY,aAAe3E,EAAS,iBAAmBnB,EAAGkB,WAAa,SAEvTlB,EAAGuE,aAAe,qCAA4C2B,mBAAmBF,GAAW,SAAWE,mBAAmBD,GAAQ,6BAI1IzF,SAAA,s7BCvFsBC,QAAQd,OAAO,iBAAkB,CAAC,gBACxCe,UAAU,qBAAsBzB,EAAQ,iGCF5DU,EAAOJ,QAAU,CAAC4G,QAAQ,EACzBpF,IACG,CAAC6C,GAAA,kRAGAC,GAAA,6QAGAC,GAAA,mRAGAC,GAAA,4RAGJqC,MAAM,uBACNC,IAAI,8DCfL,IACQC,GAAAA,EAAkB7F,QAAQd,OAAO,iBAAkB,CAAC,iBACxCe,UAAU,oBAAqBzB,EAAQ,6BACvDqH,EAAgB5F,UAAU,mBAAoBzB,EAAQ,4BACtDqH,EAAgB5F,UAAU,iBAAkBzB,EAAQ,wICJxD,aAMAU,EAAOJ,QAAU,CACbK,SAAU,CAACC,WAAY,KACvBC,aAAc,OACdC,WAAY,CAAC,YAAa,aAAc,WAAY,SAASwG,EAAW9C,EAAY+C,GAChF,IAAIxG,EAAKC,KACTA,KAAKwG,SAAW,WACZ,GAA4B,aAAxBC,SAASC,WAA8C,CACvD,IAAI,IAAIC,EAAOF,SAASG,cAAc,mCAAmCC,cACzE,MAAMpI,GACFsB,EAAG+G,UAAW,EAEdH,IACAA,EAAKI,gBAAgB,UACrBJ,EAAKK,aAAa,aAAc,aAChCjH,EAAG+G,UAAW,iCCpBlC,aASApH,EAAOJ,QAAU,CACTK,SAAU,CAACC,WAAY,KACvBW,SAAU,4FACVV,aAAc,OACdC,WAAY,CAAC,aAAc,SAAS0D,GAEhC,IAAIzD,EAAKC,KAaT,GANAD,EAAGkH,MAAQjI,EAAQ,gBAGnBe,EAAGmG,QAAS,KAGRnG,EAAGkH,MAAMf,OAAgB,CAGzB,IAAIgB,EAAQC,KAAKC,MACZ,IAAID,KAAKpH,EAAGkH,MAAMd,OAASe,GAAWA,EAAQ,IAAIC,KAAKpH,EAAGkH,MAAMb,OAEjErG,EAAGmG,QAAS,GAKpBnG,EAAG+E,QAAU,WACT,IAAIuC,EAAO,CAAC,KAAM,KAAM,KAAM,MAAM3C,SAASlB,EAAWmB,OAASnB,EAAWmB,MAAM,KAClF,OAAO5E,EAAGmG,OAASnG,EAAGkH,MAAMnG,IAAIuG,GAAQ,IAQ5CtH,EAAGH,WAAW0H,mBAAoB,6CCjD9C,aAQA5H,EAAOJ,QAAU,CACbK,SAAU,CAACC,WAAY,KACvBC,aAAc,OACdC,WAAY,CAAC,YAAa,aAAc,WAAY,SAASwG,EAAW9C,EAAY+C,GACvEvG,KACN+C,IAAMwE,OAAOC,SAASC,KAAKC,MAAM,KAAK,GAAK,QADrC1H,KACkDJ,WAAW+H,kBAAkBtH,IAAM,SAAWmD,EAAWmB,QAGxHpE,SAAA,kMCVJvB,EAAA,8BACAA,EAAA,uBACAA,EAAA,wCACAA,EAAA,kCACAA,EAAA,sBACAA,EAAA,uBACAA,EAAA,wBACAA,EAAA,wBAEUwB,QAAQd,OAAO,aAAc,CAAC,cACA,gBACA,iBACA,wBACA,kBACA,gBACA,iBACA,kBACA,gSCvBxC,IAGQkI,GAAAA,EAAMpH,QAAQd,OAAO,gBAAiB,CAAC,iBAgBvCI,WAAW,wBAAyB,CAAC,UAAW,WAAY,SAAUY,EAAS6F,EAAUsB,EAAUC,EAAQC,GAC3G,IAAIhI,EAAKC,KAGTA,KAAKgI,KAAOzB,EAAS,GAAGM,cAGxB7G,KAAKwG,SAAW,WACZ,IAAIwB,GAAO,EACPC,EAAa,EAiBjB,QAf0C/F,IAAtClC,KAAKgI,KAAKE,SAAS,GAAGA,SAAS,SAAuEhG,IAAlDlC,KAAKgI,KAAKE,SAAS,GAAGA,SAAS,GAAGA,SAAS,IAAuC,kBAAnBnI,EAAGoI,oBAM3EjG,IAAtClC,KAAKgI,KAAKE,SAAS,GAAGA,SAAS,SAAsEhG,IAAlDlC,KAAKgI,KAAKE,SAAS,GAAGA,SAAS,GAAGA,SAAS,KACnGF,EAAOhI,KAAKgI,KAAKE,SAAS,GAAGA,SAAS,GAAGA,SAAS,GAClDD,EAAa,IAPbD,EAAOhI,KAAKgI,KAAKE,SAAS,GAAGA,SAAS,GAAGA,SAAS,GAC3B,kBAAnBnI,EAAGoI,iBACHF,EAAa,IAYjBD,GAAQA,EAAKE,SAAS1I,QAAUyI,GAAqC,EAAvBD,EAAKE,SAAS1I,QAAcO,EAAGwB,eAAe,wBAChGxB,EAAGqI,qBAAuBrI,EAAGoI,eAAgB,CAEzCpI,EAAGqI,oBAAsBrI,EAAGoI,eAC5B,IAAIE,EAAA,8CAA4DtI,EAAGuI,cAA/D,OACJ,GAAuB,mBAAnBvI,EAAGoI,eAAmC,CACtC,IAAIrH,EAAMJ,EAAQ,kBAARA,CAA2B,aACrC,GAAIX,EAAGwI,iBACH,IAAIC,EAAA,+dAUAA,EAAA,oGAAyGzI,EAAGH,WAAWS,IAAvH,QAIRgI,GAAA,2FAA0GG,EAA1G,OAAmH1H,EAAnH,cAGJuH,GAAA,eAA8BrI,KAAKJ,WAAW4D,WAAWiF,QAAQ,8BAAjE,qBAAmHzI,KAAKJ,WAAW4D,WAAWiF,QAAQ,mCAAtJ,iBACA,IAAIC,EAAelI,QAAQmI,QAAQN,GAAa,GAG5CL,EAAKE,SAAS1I,QAAUyI,EAExBD,EAAKY,aAAaF,EAAcV,EAAKE,SAASD,EAAa,IAG3DD,EAAKE,SAASF,EAAKE,SAAS1I,OAAS,GAAGqJ,YAAYH,KAShEI,OAAOC,eAAehJ,EAAGH,WAAY,OAAQ,CACzCoJ,cAAc,EACdC,IAAK,WAEG,IAAIjB,EAAOhI,KAAKkJ,gBAAgB,CAAC,QAAS,eAAe,GACzD,IAAKnJ,EAAGwB,eAAe,8BACnB,IAAK,IAAI1C,EAAI,EAAGA,EAAImJ,EAAKxI,OAAQX,IAC7B,GAAmB,qBAAfmJ,EAAKnJ,GAAGsK,IAA2B,CAQnCnB,EAAKnJ,GAAGuK,QAAQC,KAPhB,SAAkBnK,EAAGoK,GACjB,IAAIC,EAAoB,CAAC,aAAc,eAGvC,OAFArK,EAAIqK,EAAkB5D,QAAQzG,EAAEwD,UAChC4G,EAAIC,EAAkB5D,QAAQ2D,EAAE5G,QACZ,EACbxD,EAAIoK,EAAI,GAAK,IAGxBvJ,EAAA,4BAAmC,EAI/C,OAAOiI,KAMnBjI,EAAGyJ,OAAS,WACR,SAAOzJ,EAAGH,WAAW6J,gBAA+G,EAA7F1J,EAAGH,WAAW6J,eAAeC,SAAS,mBAAmB/D,QAAQ,4BAG5G5F,EAAG4J,SAAW,uBAGd5J,EAAGoI,aAAe,WAEd,MAAI,CAAC,qBAAsB,0BAA2B,0BAA0BzD,SAAS3E,EAAGH,WAAWgK,eAC5F,yBACA,CAAC,0BACA,+BACA,+BACKlF,SAAS3E,EAAGH,WAAWgK,eAC7B7J,EAAGyJ,SAAW,sBAAwB,kBACN,+BAAhCzJ,EAAGH,WAAWgK,cACd,iBAEA,sBAGf7J,EAAGuI,YAAc,WAEb,OAAO5H,EAAQ,kBAARA,CAA2BX,EAAGoI,iBAIzCpI,EAAGwI,eAAiB,WAEhB,IADA,IAAIsB,EAAcpD,SAASqD,qBAAqB,QACvCjL,EAAI,EAAGH,EAAImL,EAAYrK,OAAQX,EAAIH,EAAGG,IAC3C,GAAiD,wBAA7CgL,EAAYhL,GAAGkL,aAAa,eACoC,IAAhEF,EAAYhL,GAAGmL,WAAWC,UAAUtE,QAAQ,eAE5C,OAAOkE,EAAYhL,IAsB/BkB,EAAGmK,UAAY,WACX,IAAIC,EAASpK,EAAGwI,iBACZ4B,EACCA,EAAOC,QAER7C,OAAOC,SAASC,KAAOF,OAAOC,SAAS6C,OAAS,2BAA6BtK,EAAGH,WAAWS,QAWvGuH,EAAInH,UAAU,kBAAmB,CAC7Bd,SAAU,CAAEC,WAAY,KACxBE,WAAY,0BA0BhB8H,EAAI9H,WAAW,oBAAqB,CAAC,WACjC,IAAIC,EAAKC,KACTD,EAAGuK,YAAc,UACjBvK,EAAGwK,YAAc,4BAEjBxK,EAAGyK,cAAgB,WACf,OAAIzK,EAAGH,WAAW6K,KAAgD,QAAzC1K,EAAGH,WAAW6K,IAAIjD,SAASkD,YACzC,6BAEA3K,EAAGwK,aAGlBxK,EAAGI,KAAOJ,EAAGH,WAAW+H,kBAAkBtH,IAAIC,QAAQ,IAAK,KAC3DP,EAAG4K,WAAa,WAEZ,OAAO5K,EAAGH,WAAWgL,QAAU7K,EAAGH,WAAWgL,QAAQpD,SAASqD,uBAAyB,IAE3F5K,QAAQC,IAAIH,MAIhB6H,EAAInH,UAAU,wBAAyB,CACnCd,SAAU,CAAEC,WAAY,KACxBE,WAAY,oBACZD,aAAc,OACdU,SAAA,+QAMLqH,EAAIkD,QAAQ,cAAe,CAAC,YAAa,SAAUC,GAC/C/K,KAAKgL,QAAU,WACX,IAAIC,EAAMC,eAAeC,QAAQ,mBACjC,IAAKF,EACD,OAAO,EAEX,IAAIG,EAAeL,EAAUM,YAAYJ,GAEzC,QAD0C,UAA3BG,EAAaE,UAAwBF,EAAaG,SAAW,KAUhFvL,KAAKmB,MAAQ,WACT,IAAI8J,EAAMC,eAAeC,QAAQ,mBACjC,GAAKF,EAGL,OAAOF,EAAUM,YAAYJ,GAAKO,WAU1C5D,EAAI9H,WAAW,mBAAoB,CAAC,SAAU,cAAe,SAAUgI,EAAQlH,GAI3E,OAFAkH,EAAO2D,OAAS7K,EAAYoK,UAEP,GAAjBlD,EAAO2D,OAMIjL,QAAQmI,QAAQlC,SAASG,cAAc,kBACtC8E,YAAY,cANblL,QAAQmI,QAAQlC,SAASG,cAAc,kBACtC+E,SAAS,iBAW7B/D,EAAInH,UAAU,6BAA8B,CACxCd,SAAU,CAAEC,WAAY,KACxBE,WAAY,mBACZS,SAAU,KAYbqH,EAAI9H,WAAW,qBAAsB,CAAC,SAAU,SAAUgI,GACtD,IAAI/H,EAAKC,KACTD,EAAG6L,SAEH,WACI,IAAIC,EAAK9L,EAAGH,WAAWkM,sBAAsBC,SAASC,SAClDC,EAAQzL,QAAQmI,QAAQlC,SAASG,cAAc,kBAEnD,OAAgB,EAAZiF,EAAGrM,OACIyM,EAAMN,SAAS,SAKfM,EAAMP,YAAY,aAOrC9D,EAAInH,UAAU,kBAAmB,CAC7Bd,SAAU,CAAEC,WAAY,KACxBE,WAAY,qBACZS,SAAU","file":"custom.js","sourcesContent":["(function(){function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c=\"function\"==typeof require&&require;if(!f&&c)return c(i,!0);if(u)return u(i,!0);var a=new Error(\"Cannot find module '\"+i+\"'\");throw a.code=\"MODULE_NOT_FOUND\",a}var p=n[i]={exports:{}};e[i][0].call(p.exports,function(r){var n=e[i][1][r];return o(n||r)},p,p.exports,r,e,n,t)}return n[i].exports}for(var u=\"function\"==typeof require&&require,i=0;i<t.length;i++)o(t[i]);return o}return r})()","\"use strict\";\r\n\r\n/*\r\n OBJECTIF: Ajouter le lien vers SWITCH edu-ID.\r\n REMARQUES: contient juste les liens vers SWITCH edu-ID et vers\r\n l'application de changement des code-barres.\r\n*/\r\n\r\nmodule.exports = {\r\n bindings: {parentCtrl: '<'},\r\n controllerAs: 'ctrl',\r\n controller: [function() {\r\n var vm = this;\r\n console.log(vm);\r\n vm.view = vm.parentCtrl.accountLinksService.vid.replace(':', '-');\r\n\r\n }],\r\n template: `<div ng-if=\"ctrl.parentCtrl.tabName=='personalsettings'\"><img width=\"20px\" ng-src=\"/discovery/custom/{{ ctrl.view }}/img/information.png\" /> {{ 'switchEduID' | customTranslate | trustHtml }} <a href=\\\"https://eduid.ch\\\">https://eduid.ch</a></div>`\r\n};\r\n","(function () {\r\n var account_module = angular.module('accountModule', ['angularLoad']);\r\n account_module.component('prmAccountLinksAfter', require('./accountlinks.component.js'));\r\n})()\r\n","module.exports = {\r\n bindings: {parentCtrl: '<'},\r\n controllerAs: 'ctrl',\r\n controller: ['$filter', '$http', 'userService', function($filter, $http, userService) {\r\n var vm = this\r\n function parse_doi(txt){\r\n var re = /10\\.\\d{4,9}\\/[-._;()/:A-Z0-9]+/i;\r\n var m = txt.match(re);\r\n if (m){\r\n return m[0]\r\n }\r\n\r\n }\r\n vm.is_epfl_IP = false;\r\n var userIP = userService.getIP();\r\n // console.log(userIP);\r\n // Vérification du range EPFL\r\n if (userIP) {\r\n const regex = /128\\.17([89])\\.(\\d{1,3})\\./;\r\n const found = userIP.match(regex);\r\n if (found && (found[1] == '8' || parseInt(found[2])>=128)) {\r\n vm.is_epfl_IP = true;\r\n }\r\n }\r\n\r\n vm.get_doi = function(){\r\n if (vm.parentCtrl.hasOwnProperty('result') && vm.parentCtrl.result.hasOwnProperty('pnx')){\r\n var pnx = vm.parentCtrl.result.pnx;\r\n\r\n // Recherche dans la section addata\r\n if ('addata' in pnx && 'doi' in pnx.addata && parse_doi(pnx.addata.doi[0]) && pnx.control.recordtype[0]==='article') {\r\n return parse_doi(pnx.addata.doi[0])\r\n }\r\n\r\n // Recherche dans la section display\r\n if ('display' in pnx && 'identifier' in pnx.display) {\r\n for (const identifier of pnx.display.identifier){\r\n if (parse_doi(identifier)){\r\n return parse_doi(identifier)\r\n }\r\n }\r\n }\r\n }\r\n }\r\n\r\n vm.check_doi = function(){\r\n if (!vm.hasOwnProperty('doi')){\r\n if (vm.parentCtrl.hasOwnProperty('result') && vm.parentCtrl.result.hasOwnProperty('pnx')){\r\n if (vm.get_doi()){\r\n vm.doi = vm.get_doi();\r\n vm.set_url_pdf()\r\n\r\n } else {\r\n vm.doi = null;\r\n }\r\n }\r\n }\r\n if (vm.hasOwnProperty('pdf_link')) {\r\n return true\r\n }\r\n return false\r\n }\r\n vm.set_url_pdf = function(){\r\n var url = `https://public-api.thirdiron.com/public/v1/libraries/183/articles/doi/${vm.doi}?access_token=adc54dee-c6a6-4b99-a917-2ed400f1f2d3`;\r\n $http({\r\n method: 'GET',\r\n url: url\r\n }).then(function successCallback(response) {\r\n\r\n if (response.status === 200) {\r\n try{\r\n var pdf_link = response.data.data.fullTextFile;\r\n } catch(e){\r\n var pdf_link = '';\r\n }\r\n if (pdf_link.length > 0) {\r\n vm.pdf_link = pdf_link;\r\n }\r\n }\r\n // console.log(vm.pdf_link);\r\n }, function(response) {\r\n vm.doi = null;\r\n });\r\n\r\n }\r\n // console.log(vm);\r\n }],\r\n template: `<div><div class=\"pdf_btn\" ng-if=\"ctrl.check_doi() &amp;&amp; ctrl.is_epfl_IP\">\r\n <a href=\"{{ctrl.pdf_link}}\" target=\"_blank\"><prm-icon icon-type=\"svg\" svg-icon-set=\"primo-ui\" icon-definition=\"pdf\"></prm-icon> {{ 'pdfAccess' | customTranslate }}</a></div></div>`\r\n}\r\n","(function () {\r\n var briefview_module = angular.module('briefviewModule', ['angularLoad']);\r\n briefview_module.component(/*'prmBriefResultContainerAfter'*/'prmSearchResultAvailabilityLineAfter', require('./availabilityline.component.js'));\r\n})()\r\n","(function () {\r\n var homepage_module = angular.module('databasesModule', ['angularLoad']);\r\n homepage_module.component('prmTreeNavAfter', require('./treenav.component.js'));\r\n})()\r\n","\"use strict\";\r\n\r\n/*\r\n OBJECTIF: Ne fait rien pour le moment\r\n*/\r\n\r\nmodule.exports = {\r\n bindings: {parentCtrl: '<'},\r\n controllerAs: 'ctrl',\r\n controller: ['$filter', function($filter) {\r\n var vm = this;\r\n // console.log(vm);\r\n }]\r\n}\r\n","\"use strict\";\r\n\r\n/***********************/\r\n/* FILTRE : traduction */\r\n/***********************/\r\n\r\n/*\r\n OBJECTIF: traduire des éléments, tant des urls que du texte.\r\n UTILISATION:\r\n - Dans le template:\r\n 1. comme un filtre: {{ clé | customTranslate }}\r\n - Dans un controlleur:\r\n Même si les filtres sont d'abord prévus pour être utilisés dans le\r\n template, on peut les appeler dans les controlleurs.\r\n 1. Ajouter le service dans l'en-tête du controlleur\r\n 2. Appeler le service avec la fonction $filter\r\n EXEMPLE:\r\n controller:function($http, $filter){...\r\n var traduction = $filter('customTranslate')('cleTrad');\r\n ...}\r\n CONFIGURATION:\r\n L'ajout de traduction se fait à travers des objets. La clé indique le\r\n terme à utiliser dans le template ou le controlleur pour ensuite\r\n renvoyer la traduction. Les noms associés n'appaaraissent donc pas tels\r\n quels. La structure de chaque élément traduit disponible est comme suit:\r\n clé1:{\r\n fr: traductionFrançaise\r\n en: traductionAnglaise\r\n },\r\n clé2:{\r\n fr: traductionFrançaise\r\n en: traductionAnglaise\r\n }\r\n*/\r\n(function () {\r\n\r\n var custom_translate_module = angular.module('customTranslateFilter', [])\r\n .filter('customTranslate', ['$translate', function($translate){\r\n return function(txt){\r\n var trad = {\r\n\r\n costWarningScan:{\r\n fr: \"<b><span class=\\\"bigfont\\\" style=\\\"font-size:20px\\\">Service payant:</span></b><b> les collaborateurs et les étudiants de l’EPFL peuvent bénéficier de ce service gratuitement, en utilisant le formulaire:</b>\",\r\n en: \"<b><span class=\\\"bigfont\\\" style=\\\"font-size:20px\\\">Fee-based service:</span></b><b> EPFL employees and students can benefit from this service free of charge by using the form:</b>\",\r\n de: \"<b><span class=\\\"bigfont\\\" style=\\\"font-size:20px\\\">Kostenpflichtiger Service:</span></b><b> Mitarbeitern und Studenten der EPFL steht dieser Dienst über das Fernleihe-Formular gratis zur Verfügung.</b>\",\r\n it: \"<b><span class=\\\"bigfont\\\" style=\\\"font-size:20px\\\">Servizio a pagamento:</span></b><b> I dipendenti e gli studenti dell'EPFL possono usufruire gratuitamente di questo servizio utilizzando il modulo:</b>\"\r\n },\r\n costWarningScanEPFL:{\r\n fr: \"<b>Service gratuit pour les collaborateurs et les étudiants EPFL.</b>\",\r\n en: \"<b>Free of charge for EPFL staff and students.</b>\",\r\n de: \"<b>Service für Mitarbeiter und Studenten der EPFL kostenlos</b>\",\r\n it: \"<b>Servizio gratuito per i dipendenti e gli studenti dell’EPFL.<b>\"\r\n },\r\n costWarningNetworkLoan:{\r\n fr: \"<b>Service gratuit en cas de retrait à la Bibliothèque de l’EPFL.</b>\",\r\n en: \"<b>Free of charge if withdrawal at the EPFL Library.</b>\",\r\n de: \"<b>Service bei Abholung in der EPFL-Bibliothek kostenlos.</b>\",\r\n it: \"<b>Servizio gratuito in caso di ritiro alla Biblioteca dell’EPFL</b>\"\r\n },\r\n costWarningPEB:{\r\n fr: \"<b>Service gratuit pour les collaborateurs et les étudiants de l’EPFL.</b> Avant de passer une commande d’un document physique via le prêt entre bibliothèques, merci de vous assurer que ce document n'est pas disponible dans d’autres bibliothèques du réseau SLSP dans swisscovery.\",\r\n en: \"<b>Free of charge for EPFL staff and students.</b> Before placing an order for a physical document via the interlibrary loan, please make sure that this document is not available in other SLSP network libraries on swisscovery.\",\r\n de: \"<b>Kostenloser Service für Mitarbeiter und Studenten der EPFL.</b> Bevor Sie ein Medium über die Fernleihe bestellen, vergewissern Sie sich bitte zunächst in swisscovery, dass es nicht in einer anderen Bibliothek des SLSP-Netzwerks verfügbar ist.\",\r\n it: \"<b>Servizio gratuito per i dipendenti e gli studenti dell’EPFL.</b> Prima di ordinare un documento cartaceo tramite il prestito interbibliotecario, assicuratevi che questo documento non sia disponibile in altre biblioteche della rete SLSP in swisscovery.\"\r\n },\r\n mainTitle:{\r\n fr: \"Catalogue BEAST\",\r\n en: \"BEAST discovery tool\",\r\n de: \"BEAST Wissensportal\",\r\n it: \"Catalogo BEAST\"\r\n },\r\n subTitle:{\r\n fr: \"Le point d\\'accès à toutes les ressources de la Bibliothèque de l\\'EPFL\",\r\n en: \"The access portal to all the resources of the EPFL Library\",\r\n de: \"Der Zugangspunkt zu allen Ressourcen der EPFL Bibliothek\",\r\n it: \"Il punto d’accesso a tutte le risorse della Biblioteca dell’EPFL\"\r\n },\r\n switchEduID:{\r\n fr: \"Modifier vos informations personnelles sur\",\r\n en: \"Change your personal data on\",\r\n de: \"Ändern Sie Ihre persönlichen Daten auf\",\r\n it: \"Modifica i tuoi dati personali sul\"\r\n },\r\n illButton:{\r\n fr: \"Prêt entre bibliothèques (PEB)\",\r\n en: \"Inter Library Loan (ILL)\",\r\n de: \"Fernleihe\",\r\n it: \"Prestito interbibliotecario\"\r\n },\r\n feedbackLink:{\r\n fr: \"Signaler un problème d'accès\",\r\n en: \"Report an access problem\",\r\n de: \"Zugriffsproblem melden\",\r\n it: \"Segnalare un problema di accesso\"\r\n },\r\n vpnMSG:{\r\n fr: \"Les ressources électroniques sont accessibles depuis tous les postes de l’EPFL, et à distance via le <a target=\\\"_blank\\\" href=\\\"https://www.epfl.ch/campus/services/ressources-informatiques/network-services-reseau/acces-intranet-a-distance/clients-vpn-disponibles/\\\">VPN</a> EPFL.\",\r\n en: \"Electronic resources are accessible from all EPFL workstations, and remotely via the EPFL <a target=\\\"_blank\\\" href=\\\"https://www.epfl.ch/campus/services/en/it-services/network-services/remote-intranet-access/vpn-clients-available/\\\">VPN</a>.\",\r\n de: \"Elektronische Informationsressourcen sind an allen EPFL-Arbeitsplätzen und per EPFL <a target=\\\"_blank\\\" href=\\\"https://www.epfl.ch/campus/services/en/it-services/network-services/remote-intranet-access/vpn-clients-available/\\\">VPN</a> abrufbar.\",\r\n it: \"Le risorse elettroniche sono accessibili da tutte le postazioni di lavoro dell'EPFL e a distanza tramite <a target=\\\"_blank\\\" href=\\\"https://www.epfl.ch/campus/services/en/it-services/network-services/remote-intranet-access/vpn-clients-available/\\\">VPN</a> EPFL.\"\r\n },\r\n // vpnLink:{\r\n // fr: \"https://www.epfl.ch/campus/services/ressources-informatiques/network-services-reseau/acces-intranet-a-distance/clients-vpn-disponibles/\",\r\n // en: \"https://www.epfl.ch/campus/services/en/it-services/network-services/remote-intranet-access/vpn-clients-available/\",\r\n // de: \"https://www.epfl.ch/campus/services/en/it-services/network-services/remote-intranet-access/vpn-clients-available/\",\r\n // it: \"https://www.epfl.ch/campus/services/en/it-services/network-services/remote-intranet-access/vpn-clients-available/\"\r\n // },\r\n feedbackLinkMSG:{\r\n fr: \"I have a problem accessing the electronic resource below. Please let me know when the access will be restored.\",\r\n en: \"I have a problem accessing the electronic resource below. Please let me know when the access will be restored.\",\r\n de: \"I have a problem accessing the electronic resource below. Please let me know when the access will be restored.\",\r\n it: \"I have a problem accessing the electronic resource below. Please let me know when the access will be restored.\"\r\n },\r\n pdfAccess:{\r\n fr: \"Accès direct au pdf\",\r\n en: \"Direct access to the pdf\",\r\n de: \"Direct access to the pdf\",\r\n it: \"Direct access to the pdf\"\r\n }\r\n };\r\n if (['en', 'fr', 'it', 'de'].includes($translate.use())) {\r\n return trad[txt][$translate.use()]\r\n } else {\r\n return trad[txt].fr\r\n }\r\n };\r\n }]);\r\n\r\n}) ()\r\n","\"use strict\";\r\n\r\n/***********************/\r\n/* FILTRE : traduction */\r\n/***********************/\r\n\r\n/*\r\n OBJECTIF: Permettre des balises html dans les champs.\r\n UTILISATION: S'utilise dans une balise comme un filtre.\r\n EXEMPLE: {{ variable | trustHtml }}\r\n*/\r\n(function () {\r\nangular.module('trustHtmlFilter', [])\r\n .filter('trustHtml', ['$sce', function($sce){\r\n return function(txt){\r\n return $sce.trustAsHtml(txt);\r\n };\r\n}]);\r\n}) ()\r\n","\"use strict\";\r\n\r\n/*\r\n OBJECTIF: Ajouter un lien pour rapporter les problèmes d'accès aux\r\n ressources électroniques. Un message d'avertissement s'affiche quand la\r\n la personne n'est pas sur le réseau EPFL\r\n*/\r\n\r\nmodule.exports = {\r\n bindings: {parentCtrl: '<'},\r\n controllerAs: 'ctrl',\r\n controller: ['$filter', 'userService', function($filter, userService) {\r\n var vm = this;\r\n\r\n vm.get_txt = function() {\r\n return $filter('customTranslate')('vpnMSG');\r\n }\r\n\r\n vm.feedbackLink = '';\r\n vm.is_epfl_IP = false;\r\n vm.no_report_link = false;\r\n\r\n // not for open access\r\n if (vm.parentCtrl.item.pnx.addata.openaccess && vm.parentCtrl.item.pnx.addata.openaccess[0] === 'true') {\r\n vm.no_report_link = true;\r\n }\r\n // not for cdi open access\r\n if (vm.parentCtrl.item.pnx.addata.oa && vm.parentCtrl.item.pnx.addata.oa[0] === 'free_for_read') {\r\n vm.no_report_link = true;\r\n }\r\n if (!vm.no_report_link){\r\n\r\n /* Obtient l'adresse ip depuis un service se trouvant dans le\r\n module \\js\\slsp\\epfl_custom_slsp.js */\r\n var userIP = userService.getIP();\r\n // console.log(userIP);\r\n // Vérification du range EPFL\r\n if (userIP) {\r\n const regex = /128\\.17([89])\\.(\\d{1,3})\\./;\r\n const found = userIP.match(regex);\r\n if (found && (found[1] == '8' || parseInt(found[2])>=128)) {\r\n vm.is_epfl_IP = true;\r\n }\r\n }\r\n\r\n // Récupération des métadonnées de la ressource\r\n var mmsId = vm.parentCtrl.item.pnx.control.recordid[0];\r\n var title = '';\r\n if (vm.parentCtrl.item.pnx.display.title && vm.parentCtrl.item.pnx.display.title.length > 0) {\r\n title = vm.parentCtrl.item.pnx.display.title[0];\r\n }\r\n var creationdate = '';\r\n if (vm.parentCtrl.item.pnx.display.creationdate && vm.parentCtrl.item.pnx.display.creationdate.length > 0) {\r\n creationdate = vm.parentCtrl.item.pnx.display.creationdate[0];\r\n }\r\n var creator = '';\r\n if (vm.parentCtrl.item.pnx.display.creator && vm.parentCtrl.item.pnx.display.creator.length > 0) {\r\n creator = vm.parentCtrl.item.pnx.display.creator.join(', ');\r\n }\r\n var type = '';\r\n if (vm.parentCtrl.item.pnx.display.type && vm.parentCtrl.item.pnx.display.type.length > 0) {\r\n type = vm.parentCtrl.item.pnx.display.type[0];\r\n }\r\n var identifier = '';\r\n if (vm.parentCtrl.item.pnx.display.identifier && vm.parentCtrl.item.pnx.display.identifier.length > 0) {\r\n var ident = vm.parentCtrl.item.pnx.display.identifier[0];\r\n if (ident.indexOf('<b>ISBN') > -1) {\r\n identifier = vm.parentCtrl.item.pnx.display.identifier.join(', ').replace(/<\\/b>/g, '').replace(/<b>/g, '');\r\n } else if (ident.indexOf('<b>ISSN') > -1) {\r\n identifier = vm.parentCtrl.item.pnx.display.identifier.join(', ').replace(/<\\/b>/g, '').replace(/<b>/g, '');\r\n } else if (ident.indexOf('ISBN') > -1) {\r\n identifier = 'ISBN: ' + ident.substring(ident.indexOf('$$V') + 3);\r\n } else if (ident.indexOf('ISSN') > -1) {\r\n identifier = 'ISSN: ' + ident.substring(ident.indexOf('$$V') + 3);\r\n }\r\n }\r\n var userAgent = navigator.userAgent;\r\n\r\n // Création de l'objet du message\r\n var subject = 'Access problem ' + mmsId + ' - \"' + title + '\"';\r\n\r\n // Création du corps du message\r\n var body = $filter('customTranslate')('feedbackLinkMSG') + '\\n\\n' + '****\\nTitle: ' + title + '\\nAuthor: ' + creator + '\\nYear: ' + creationdate + '\\nType: ' + type + '\\nDocId: ' + mmsId + '\\nIdentifier: ' + identifier + '\\nUser_agent: ' + userAgent + '\\nUserIP: ' + userIP + '\\nRange EPFL: ' + vm.is_epfl_IP + '\\n****';\r\n\r\n vm.feedbackLink = 'mailto:eresources@epfl.ch' + '?subject=' + encodeURIComponent(subject) + '&body=' + encodeURIComponent(body) + '&Content-Type=text/html';\r\n }\r\n\r\n }],\r\n template: `<div class=\"bar alert-bar\" ng-if=\"ctrl.no_report_link==false && ctrl.is_epfl_IP==false\">\r\n <div ng-bind-html=\"ctrl.get_txt()\"></div><md-icon ng-if=\"::($ctrl.iconDefinition &amp;&amp; !$ctrl.isCustom &amp;&amp; !$ctrl.isEmailMode())\" md-svg-icon=\"primo-ui:open-in-new\" role=\"presentation\" class=\"md-primoExplore-theme\"></md-icon\r\n <div class=\"feedbacklink\"> <a href=\"{{ ::ctrl.feedbackLink }}\"><md-icon md-svg-icon=\"primo-ui:envelope-outline\" role=\"presentation\" class=\"md-primoExplore-theme\"></md-icon> {{ 'feedbackLink' | customTranslate }}</a></div>\r\n </div>\r\n <div class=\"feedbacklink\" ng-if=\"ctrl.no_report_link==false && ctrl.is_epfl_IP==true\"> <a href=\"{{ ::ctrl.feedbackLink }}\"><md-icon md-svg-icon=\"primo-ui:envelope-outline\" role=\"presentation\" class=\"md-primoExplore-theme\"></md-icon> {{ 'feedbackLink' | customTranslate }}</a></div>`}\r\n","(function () {\r\n var fullview_module = angular.module('fullviewModule', ['angularLoad']);\r\n fullview_module.component('prmAlmaViewitAfter', require('./almaviewit.component.js'));\r\n})()\r\n","module.exports = {active: true,\r\n txt:\r\n {fr: `<div class=\"info-symbol\" style=\\\"text-align:left\\\">\r\n <div><p>Le réseau NEBIS a pris fin le 7 décembre 2020 pour être remplacé par un nouveau réseau plus vaste : <a class=\"md-primoExplore-theme\" href=\"https://slsp.ch/fr\">swisscovery</a></p></div>\r\n </div>`,\r\n en: `<div class=\"info-symbol\" style=\\\"text-align:left\\\">\r\n <div><p>The NEBIS network ended on December 7, 2020. It has been replaced by <a class=\"md-primoExplore-theme\" href=\"https://slsp.ch/it\">swisscovery</a>: a new and wider network.</p></div>\r\n </div>`,\r\n de: `<div class=\"info-symbol\" style=\\\"text-align:left\\\">\r\n <div><p>Das NEBIS-Netzwerk wurde am 07.12.2020 abgeschaltet und durch ein neues, grösseres Netzwerk ersetzt: <a class=\"md-primoExplore-theme\" href=\"https://slsp.ch/de\">swisscovery</a></p></div>\r\n </div>`,\r\n it: `<div class=\"info-symbol\" style=\\\"text-align:left\\\">\r\n <div><p>La rete NEBIS è stata sciolta il 7 dicembre 2020 per essere sostituita da una rete piú ampia di biblioteche: <a class=\"md-primoExplore-theme\" href=\"https://slsp.ch/it\">swisscovery</a></p></div>\r\n </div>`},\r\n begin:\"2020-01-04T00:00:00Z\",\r\n end:\"2021-03-31T12:00:00Z\"}\r\n","(function () {\r\n var homepage_module = angular.module('homepageModule', ['angularLoad']);\r\n homepage_module.component('prmSearchBarAfter', require('./searchbar.component.js'));\r\n homepage_module.component('prmMainMenuAfter', require('./mainmenu.component.js'));\r\n homepage_module.component('prmTopbarAfter', require('./topbar.component.js'));\r\n})()\r\n","\"use strict\";\r\n\r\n/*\r\n OBJECTIF: corriger le lien du menu principal vers les bases de données.\r\n*/\r\n\r\nmodule.exports = {\r\n bindings: {parentCtrl: '<'},\r\n controllerAs: 'ctrl',\r\n controller: ['$location', '$translate', '$element', function($location, $translate, $element) {\r\n var vm = this;\r\n this.$doCheck = function() {\r\n if (document.readyState === 'complete' /*&& !vm.modified*/){\r\n try{var elem = document.querySelector(\"[translate='mainmenu.label.db']\").parentElement;}\r\n catch(e){\r\n vm.modified = false;\r\n }\r\n if (elem){\r\n elem.removeAttribute('target');\r\n elem.setAttribute('aria-label', 'Databases');\r\n vm.modified = true;\r\n }\r\n }\r\n };\r\n // console.log(vm.url);\r\n }]\r\n};\r\n","\"use strict\";\r\n\r\n/*\r\n OBJECTIFS:\r\n - Toujours afficher l'onglet pour modifier le scope\r\n - Afficher une alerte si les dates correspondent\r\n UTILISATION:\r\n Pour paramétrer l'alerte, il faut modifier le fichier alert.json (dans ce dossier)\r\n*/\r\nmodule.exports = {\r\n bindings: {parentCtrl: '<'},\r\n template: '<div class=\"epfl-alert-message\" ng-if=\"ctrl.active\" ng-bind-html=\"ctrl.get_txt() \"></div>',\r\n controllerAs: 'ctrl',\r\n controller: ['$translate', function($translate){\r\n\r\n var vm = this;\r\n\r\n /********************/\r\n /* MESSAGE D'ALERTE */\r\n /********************/\r\n\r\n // récupère le fichier json avec les paramètres de l'alerte\r\n vm.alert = require(\"./alert.js\");\r\n\r\n // par défaut, l'alerte n'est pas considérée comme active\r\n vm.active = false;\r\n\r\n // Vérifie dans le fichier json si une alerte est prévue\r\n if (vm.alert.active === true){\r\n\r\n // Teste si les dates correspondent pour l'affichage de l'alerte\r\n var d_now = Date.now();\r\n if ((new Date(vm.alert.begin) < d_now) && (d_now < new Date(vm.alert.end))) {\r\n // déclenche l'affichage de l'alerte\r\n vm.active = true;\r\n }\r\n }\r\n\r\n // getteur qui retourne le texte en fonction de la langue\r\n vm.get_txt = function(){\r\n var lang = ['en', 'fr', 'it', 'de'].includes($translate.use()) ? $translate.use():'en';\r\n return vm.active ? vm.alert.txt[lang] : \"\";\r\n }\r\n\r\n /*******************/\r\n /* SCOPE PERMANENT */\r\n /*******************/\r\n\r\n // Rendre permanent l'affichage des onglets permettant de sélectionnet le scope\r\n vm.parentCtrl.showTabsAndScopes = true;\r\n\r\n // console.log(vm.alert);\r\n }\r\n ]};\r\n","\"use strict\";\r\n\r\n/*\r\n OBJECTIF: afficher l'entête de la page.\r\n REMARQUES: contient le titre BEAST, le teaser, le fil d'ariance. Le controlleur vérifie\r\n si on se trouve dans le compte de lecteur afin de paramétrer le fil d'ariane.\r\n*/\r\n\r\nmodule.exports = {\r\n bindings: {parentCtrl: '<'},\r\n controllerAs: 'ctrl',\r\n controller: ['$location', '$translate', '$element', function($location, $translate, $element) {\r\n var vm = this;\r\n vm.url = window.location.href.split('?')[0] + '?vid=' + vm.parentCtrl.configurationUtil.vid + '&lang=' + $translate.use();\r\n // console.log(vm.url);\r\n }],\r\n template: `<div class=\"main-title\"><h1><a href=\"{{ ::ctrl.url }}\">{{ 'mainTitle' | customTranslate }}</a></h1><h2>{{ 'subTitle' | customTranslate }}</h2></div>`\r\n //templateUrl: './custom/41SLSP_EPF-prod/js/homepage/templates/topbar.html'\r\n};\r\n","/************************/\r\n/* List of used modules */\r\n/************************/\r\n\r\n// Import central SLSP package ;\r\n// import { centralCustom } from './slsp/custom_slsp.js';\r\nimport { centralCustom } from './slsp/epfl_custom_slsp.js';\r\nimport { homepageModule } from './homepage/index.js';\r\nimport { customTranslateFilter } from './filters/custom_translate.filter.js';\r\nimport { trustHtmlFilter } from './filters/trust_html.filter.js';\r\nimport { accountModule } from './account/index.js';\r\nimport { fullviewModule } from './fullview/index.js';\r\nimport { briefviewModule } from './briefview/index.js';\r\nimport { databasesModule } from './databases/index.js';\r\n\r\nvar app = angular.module('viewCustom', ['angularLoad',\r\n 'centralCustom',\r\n 'homepageModule',\r\n 'customTranslateFilter',\r\n 'trustHtmlFilter',\r\n 'accountModule',\r\n 'fullviewModule',\r\n 'briefviewModule',\r\n 'databasesModule']);\r\n","(function () {\r\n\r\n\r\n var app = angular.module('centralCustom', ['angularLoad']);\r\n\r\n\r\n /*\r\n ## VERSION SLSP DU CONTROLLEUR ##\r\n # Ajoute le lien vers les amendes\r\n\r\n app.controller('CourierInfoController', [function () {\r\n var vm = this;\r\n vm.linkBase = \"https:\\/\\/slsp.ch\\/fees\";\r\n\r\n }]);\r\n */\r\n\r\n /* ## VERSION EPFL DU CONTROLLEUR ## */\r\n\r\n app.controller('CourierInfoController', ['$filter', '$element', function ($filter, $element, $compile, $scope, $rootScope) {\r\n var vm = this;\r\n\r\n //shortcut for convenience\r\n this.form = $element[0].parentElement;\r\n\r\n //function for inserting block\r\n this.$doCheck = function() {\r\n let form = false;\r\n let formLength = 2;\r\n // console.log(this.form);\r\n if (this.form.children[0].children[1] !== undefined && (this.form.children[0].children[1].children[0] !== undefined || vm.typeFeeAlert()=='costWarningPEB')) {\r\n form = this.form.children[0].children[1].children[0];\r\n if (vm.typeFeeAlert()=='costWarningPEB'){\r\n formLength = 3;\r\n }\r\n }\r\n else if (this.form.children[0].children[0] !== undefined && this.form.children[0].children[0].children[0] !== undefined) {\r\n form = this.form.children[0].children[0].children[0];\r\n formLength = 3;\r\n }\r\n // console.log(vm.typeFeeAlert());\r\n\r\n //create and insert info block if not present\r\n // if (form){\r\n // // console.log('---' + String(formLength) + ' - ' + String(form.children.length));}\r\n if (form && form.children.length == formLength && form.children.length > 1 || vm.hasOwnProperty('currentTypeFeeAlert') &&\r\n vm.currentTypeFeeAlert != vm.typeFeeAlert()) {\r\n // console.log('cccc---' + String(formLength) + ' - ' + String(form.children.length));\r\n vm.currentTypeFeeAlert = vm.typeFeeAlert();\r\n var htmlwarning = `<div class=\"courier-info bar alert-bar\"><p>${vm.getFeeAlert()}</p>`;\r\n if (vm.typeFeeAlert()=='costWarningScan') {\r\n var txt = $filter('customTranslate')('illButton');\r\n if (vm.get_peb_button()){\r\n var fn = `javascript:(function() {\r\n for (var elem of document.getElementsByTagName('span')) {\r\n if (elem.getAttribute('translate') === 'AlmaResourceSharing' &&\r\n elem.parentNode.className.indexOf('greenbutton') === -1)\r\n {\r\n elem.click();\r\n break;\r\n }\r\n };})()`;}\r\n else {\r\n var fn = `javascript:(function() {window.location.href = window.location.origin + '/discovery/blankIll?vid=${vm.parentCtrl.vid}'})()`;\r\n }\r\n\r\n\r\n htmlwarning += `<p><span class=\"button-confirm md-button md-primoExplore-theme md-ink-ripple\" onclick=\"${fn}\" \">${txt}</span></p>`;\r\n\r\n }\r\n htmlwarning += `<p><a href=\"${this.parentCtrl.$translate.instant('customize.fullview.feesUrl')}\" target=\"_blank\">${this.parentCtrl.$translate.instant('customize.fullview.feesLinkText')}</a></p></div>`;\r\n var htmlcompiled = angular.element(htmlwarning)[0];\r\n\r\n // console.log('---' + String(formLength) + ' - ' + String(form.children.length));\r\n if (form.children.length == formLength) {\r\n // console.log('---' + String(formLength) + ' - ' + String(form.children.length));\r\n form.insertBefore(htmlcompiled, form.children[formLength - 1]);\r\n } else {\r\n // console.log(String(formLength) + ' - ' + String(form.children.length));\r\n form.children[form.children.length - 2].replaceWith(htmlcompiled);\r\n }\r\n }\r\n }\r\n\r\n\r\n\r\n\r\n // Remonte l'EPFL dans la liste des bibliothèques\r\n Object.defineProperty(vm.parentCtrl, \"form\", {\r\n configurable: !0,\r\n get: function(){\r\n // Mettre l'EPFL en première position\r\n var form = this.getFilteredForm(['label', 'multiLabel'], false);\r\n if (!vm.hasOwnProperty('pickupLocationsListOrdered')){\r\n for (var i = 0; i < form.length; i++){\r\n if (form[i].key == 'pickupInstitution'){\r\n function compare( a, b ){\r\n var onTopInstitutions = ['41SLSP_EPF', '41SLSP_EPFL'];\r\n a = onTopInstitutions.indexOf(a.value);\r\n b = onTopInstitutions.indexOf(b.value);\r\n if (a == b) {return 0};\r\n return a < b ? 1 : -1;\r\n }\r\n form[i].options.sort(compare);\r\n vm['pickupLocationsListOrdered'] = true;\r\n }\r\n }\r\n }\r\n return form;\r\n }\r\n }\r\n );\r\n\r\n // Vérifie si l'EPFL est la provenance de l'exemplaire sélectionné\r\n vm.isEPFL = function() {\r\n return vm.parentCtrl.requestService && vm.parentCtrl.requestService._service['link-to-service'].indexOf('institution=41SLSP_EPF') > 0 ? true : false;\r\n }\r\n\r\n vm.linkBase = \"https:\\/\\/slsp.ch\\/fees\";\r\n\r\n // Personnalisation du message des frais\r\n vm.typeFeeAlert = function() {\r\n // console.log(vm.parentCtrl.requestHeader);\r\n if (['almaRequest.header', 'almaRequestOther.header', 'almaItemRequest.header'].includes(vm.parentCtrl.requestHeader)) {\r\n return 'costWarningNetworkLoan'; // $filter('customTranslate')(costWarningNetworkLoan');\r\n } else if (['almaDigitization.header',\r\n 'almaDigitizationOther.header',\r\n 'almaItemDigitization.header']\r\n .includes(vm.parentCtrl.requestHeader)) {\r\n return vm.isEPFL() ? 'costWarningScanEPFL' : 'costWarningScan';\r\n } else if (vm.parentCtrl.requestHeader === 'almaResourceSharing.header') {\r\n return 'costWarningPEB';\r\n } else {\r\n return 'costWarningGeneral';\r\n }\r\n }\r\n vm.getFeeAlert = function() {\r\n // console.log(vm.typeFeeAlert());\r\n return $filter('customTranslate')(vm.typeFeeAlert());\r\n }\r\n\r\n // Récupère le bouton PEB de la page afin de simuler un clic dessus\r\n vm.get_peb_button = function(){\r\n var allElements = document.getElementsByTagName('span');\r\n for (var i = 0, n = allElements.length; i < n; i++) {\r\n if (allElements[i].getAttribute('translate') === 'AlmaResourceSharing' &&\r\n allElements[i].parentNode.className.indexOf('greenbutton') === -1)\r\n {\r\n return allElements[i];\r\n }\r\n }\r\n\r\n }\r\n // vm.get_request_button = function(){\r\n // var allElements = document.getElementsByTagName('prm-opac');\r\n // if (allElements.length === 0) { return null; }\r\n // var opac = allElements[0];\r\n // if (opac.closest('prm-alma-other-members')) { return null; }\r\n //\r\n // var buttons = opac.getElementsByTagName('span');\r\n // for (var i = 0, n = buttons.length; i < n; i++) {\r\n // if (buttons[i].getAttribute('translate') == 'AlmaRequest')\r\n // {\r\n // return buttons[i];\r\n // }\r\n // }\r\n // }\r\n\r\n // Fonction simulant un clic sur le bouton PEB quand on clique sur les\r\n // frais.\r\n vm.click_peb = function(){\r\n var button = vm.get_peb_button();\r\n if (button) {\r\n button.click();\r\n } else {\r\n window.location.href = window.location.origin + '/discovery/blankIll?vid=' + vm.parentCtrl.vid;\r\n }\r\n }\r\n // vm.click_request = function(){\r\n // vm.get_request_button().click();\r\n // }\r\n\r\n // console.log(vm);\r\n\r\n }]);\r\n\r\n app.component('prmRequestAfter', {\r\n bindings: { parentCtrl: '<' },\r\n controller: 'CourierInfoController',\r\n // template:\r\n // `<div layout=\"row\" class=\"courier-info feemsg alert-bar layout-align-center-center\" layout-align=\"center center\">\r\n // <img width=\"35px\" ng-src=\"/discovery/custom/41SLSP_EPF-prod/img/information.png\" />\r\n // <div>\r\n // <div ng-if=\"$ctrl.typeFeeAlert()!='costWarningScanEPFL'\">\r\n // <span class=\"md-subhead\">\r\n // <a href=\"{{ $ctrl.linkBase }}\" target=\"_blank\">\r\n // <span translate=\"customized.fulldisplay.fees\"></span>\r\n // </a>\r\n // </span>\r\n // </div>\r\n // <div>\r\n // <span ng-if=\"$ctrl.typeFeeAlert()!='costWarningGeneral'\" ng-bind-html=\"$ctrl.getFeeAlert() \"></span>\r\n // <span ng-if=\"$ctrl.typeFeeAlert()=='costWarningScan'\"><button class=\"greenbutton button-as-link md-button md-primoExplore-theme md-ink-ripple\" ng-click=\"$ctrl.click_peb()\"><span>{{ 'illButton' | customTranslate }}</span></button></span>\r\n // </div>\r\n //\r\n // </div>\r\n // </div>`\r\n });\r\n\r\n\r\n\r\n\r\n\r\n\r\n app.controller('LibInfoController', [function () {\r\n var vm = this;\r\n vm.biblinkText = \"Library\";\r\n vm.biblinkBase = \"https:\\/\\/slsp.ch\\/libraries\";\r\n\r\n vm.getLibraryUrl = function() {\r\n if (vm.parentCtrl.loc && vm.parentCtrl.loc.location.libraryCode==='E02') {\r\n return \"https://go.epfl.ch/library\";\r\n } else {\r\n return vm.biblinkBase;\r\n }\r\n }\r\n vm.view = vm.parentCtrl.configurationUtil.vid.replace(':', '-');\r\n vm.getLibrary = function() {\r\n // return vm.parentCtrl.currLoc.location.librarycodeTranslation;\r\n return vm.parentCtrl.currLoc ? vm.parentCtrl.currLoc.location.librarycodeTranslation : '';\r\n }\r\n console.log(vm);\r\n\r\n }]);\r\n\r\n app.component('prmLocationItemsAfter', {\r\n bindings: { parentCtrl: '<' },\r\n controller: 'LibInfoController',\r\n controllerAs: 'ctrl',\r\n template: `<div layout=\"row\" class=\"LibInfo\" layout-align=\"start center\"><span class=\"md-subhead\"><a ng-href=\"{{ ctrl.getLibraryUrl() }}\" target=\"_blank\"><img width=\"20px\" ng-src=\"/discovery/custom/{{ ctrl.view }}/img/information.png\" />{{ ctrl.getLibrary() }}</a></span></div>`\r\n });\r\n\r\n\r\n\r\n //--------ILL Signin Order - if logged out ---------------------------------------\r\n app.service('userService', ['jwtHelper', function (jwtHelper) {\r\n this.isGuest = function () {\r\n var jwt = sessionStorage.getItem('primoExploreJwt');\r\n if (!jwt) {\r\n return true;\r\n }\r\n var decodedToken = jwtHelper.decodeToken(jwt);\r\n let userName = decodedToken.userGroup !== 'GUEST' ? decodedToken.userName : '';\r\n if (userName) {\r\n return false\r\n }\r\n else {\r\n return true;\r\n }\r\n }\r\n /* ----------------------------------- */\r\n /* - Ajout pour obtenir l'adresse IP - */\r\n this.getIP = function () {\r\n var jwt = sessionStorage.getItem('primoExploreJwt');\r\n if (!jwt) {\r\n return;\r\n }\r\n return jwtHelper.decodeToken(jwt).userIp;\r\n }\r\n\r\n\r\n /* --------- Fin de l'ajout --------- */\r\n /* ---------------------------------- */\r\n\r\n }])\r\n\r\n\r\n app.controller('IllBoxController', ['$scope', 'userService', function ($scope, userService) {\r\n\r\n $scope.usrNme = userService.isGuest();\r\n\r\n if ($scope.usrNme == true) {\r\n var myEl = angular.element(document.querySelector('primo-explore'));\r\n return myEl.addClass('logged-out')\r\n }\r\n\r\n else {\r\n var myEl = angular.element(document.querySelector('primo-explore'));\r\n return myEl.removeClass('logged-out');\r\n }\r\n\r\n\r\n }]);\r\n\r\n app.component('prmUserAreaExpandableAfter', {\r\n bindings: { parentCtrl: '<' },\r\n controller: 'IllBoxController',\r\n template: ''\r\n });\r\n\r\n // app.component('prmTopbarAfter', {\r\n // bindings: { parentCtrl: '<' },\r\n // // controller: 'IllBoxController',\r\n // template: `<div class=\"main-title\"><h1><a href=\"{{ starturl }}\">{{ 'mainTitle' | customTranslate }}</a></h1><h2>{{ 'subTitle' | customTranslate }}</h2></div>`\r\n // });\r\n\r\n //----------------------------------------------------------------------------------------------\r\n\r\n\r\n app.controller('AlertMsgController', ['$scope', function ($scope) {\r\n var vm = this;\r\n vm.getAlert = getAlert\r\n\r\n function getAlert() {\r\n var ga = vm.parentCtrl.almaHowToGetitService.reqAlert._htmlMsg;\r\n var myEl2 = angular.element(document.querySelector('primo-explore'));\r\n\r\n if (ga.length > 0) {\r\n return myEl2.addClass('alert');\r\n\r\n }\r\n else {\r\n\r\n return myEl2.removeClass('alert');\r\n\r\n }\r\n }\r\n\r\n }]);\r\n\r\n app.component('almaHowovpAfter', {\r\n bindings: { parentCtrl: '<' },\r\n controller: 'AlertMsgController',\r\n template: '<div style=\"display:none\">{{$ctrl.getAlert()}}</div>'\r\n });\r\n\r\n\r\n\r\n})();\r\n"],"sourceRoot":"/source/"}
\ No newline at end of file
diff --git a/primo-explore/custom/41SLSP_EPF-prod/js/databases/index.js b/primo-explore/custom/src/js/databases/index.js
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/js/databases/index.js
rename to primo-explore/custom/src/js/databases/index.js
diff --git a/primo-explore/custom/41SLSP_EPF-prod/js/databases/treenav.component.js b/primo-explore/custom/src/js/databases/treenav.component.js
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/js/databases/treenav.component.js
rename to primo-explore/custom/src/js/databases/treenav.component.js
diff --git a/primo-explore/custom/41SLSP_EPF-prod/js/filters/custom_translate.filter.js b/primo-explore/custom/src/js/filters/custom_translate.filter.js
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/js/filters/custom_translate.filter.js
rename to primo-explore/custom/src/js/filters/custom_translate.filter.js
diff --git a/primo-explore/custom/41SLSP_EPF-prod/js/filters/trust_html.filter.js b/primo-explore/custom/src/js/filters/trust_html.filter.js
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/js/filters/trust_html.filter.js
rename to primo-explore/custom/src/js/filters/trust_html.filter.js
diff --git a/primo-explore/custom/41SLSP_EPF-prod/js/fullview/almaviewit.component.js b/primo-explore/custom/src/js/fullview/almaviewit.component.js
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/js/fullview/almaviewit.component.js
rename to primo-explore/custom/src/js/fullview/almaviewit.component.js
diff --git a/primo-explore/custom/41SLSP_EPF-prod/js/fullview/index.js b/primo-explore/custom/src/js/fullview/index.js
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/js/fullview/index.js
rename to primo-explore/custom/src/js/fullview/index.js
diff --git a/primo-explore/custom/41SLSP_EPF-prod/js/homepage/alert.js b/primo-explore/custom/src/js/homepage/alert.js
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/js/homepage/alert.js
rename to primo-explore/custom/src/js/homepage/alert.js
diff --git a/primo-explore/custom/41SLSP_EPF-prod/js/homepage/index.js b/primo-explore/custom/src/js/homepage/index.js
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/js/homepage/index.js
rename to primo-explore/custom/src/js/homepage/index.js
diff --git a/primo-explore/custom/41SLSP_EPF-prod/js/homepage/mainmenu.component.js b/primo-explore/custom/src/js/homepage/mainmenu.component.js
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/js/homepage/mainmenu.component.js
rename to primo-explore/custom/src/js/homepage/mainmenu.component.js
diff --git a/primo-explore/custom/41SLSP_EPF-prod/js/homepage/searchbar.component.js b/primo-explore/custom/src/js/homepage/searchbar.component.js
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/js/homepage/searchbar.component.js
rename to primo-explore/custom/src/js/homepage/searchbar.component.js
diff --git a/primo-explore/custom/41SLSP_EPF-prod/js/homepage/topbar.component.js b/primo-explore/custom/src/js/homepage/topbar.component.js
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/js/homepage/topbar.component.js
rename to primo-explore/custom/src/js/homepage/topbar.component.js
diff --git a/primo-explore/custom/41SLSP_EPF-prod/js/main.js b/primo-explore/custom/src/js/main.js
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/js/main.js
rename to primo-explore/custom/src/js/main.js
diff --git a/primo-explore/custom/41SLSP_EPF-prod/js/slsp/README.md b/primo-explore/custom/src/js/slsp/README.md
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/js/slsp/README.md
rename to primo-explore/custom/src/js/slsp/README.md
diff --git a/primo-explore/custom/41SLSP_EPF-prod/js/slsp/custom_slsp.js b/primo-explore/custom/src/js/slsp/custom_slsp.js
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/js/slsp/custom_slsp.js
rename to primo-explore/custom/src/js/slsp/custom_slsp.js
diff --git a/primo-explore/custom/41SLSP_EPF-prod/js/slsp/custom_slsp_new.js b/primo-explore/custom/src/js/slsp/custom_slsp_new.js
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/js/slsp/custom_slsp_new.js
rename to primo-explore/custom/src/js/slsp/custom_slsp_new.js
diff --git a/primo-explore/custom/41SLSP_EPF-prod/js/slsp/epfl_custom_slsp.js b/primo-explore/custom/src/js/slsp/epfl_custom_slsp.js
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/js/slsp/epfl_custom_slsp.js
rename to primo-explore/custom/src/js/slsp/epfl_custom_slsp.js
diff --git a/primo-explore/custom/41SLSP_EPF-prod/showDirectives.txt b/primo-explore/custom/src/showDirectives.txt
similarity index 100%
rename from primo-explore/custom/41SLSP_EPF-prod/showDirectives.txt
rename to primo-explore/custom/src/showDirectives.txt

Event Timeline