1 |
8405
|
antonis.le
|
<%@ taglib prefix="s" uri="/struts-tags"%>
|
2 |
|
|
<%@ page contentType="text/html; charset=UTF-8"%>
|
3 |
|
|
<%@ taglib prefix="sx" uri="/struts-dojo-tags"%>
|
4 |
|
|
|
5 |
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
6 |
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
7 |
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
8 |
|
|
|
9 |
|
|
<head>
|
10 |
|
|
<sx:head cache="true" />
|
11 |
|
|
|
12 |
|
|
<title>Enhanced Publications</title>
|
13 |
13398
|
katerina.i
|
<link href='<s:property value="#application[@gr.uoa.di.driver.web.listeners.DriverContextListener@APACHE_URL]"/>/static-content/assets/<s:property value="#application['webInterfaceLayoutManager'].cssFileName" />' rel="stylesheet" type="text/css" />
|
14 |
|
|
<link rel="shortcut icon" href="<s:property value="#application[@gr.uoa.di.driver.web.listeners.DriverContextListener@APACHE_URL]"/>/static-content/images/favicon.ico"/>
|
15 |
|
|
<link href="<s:property value="#application[@gr.uoa.di.driver.web.listeners.DriverContextListener@APACHE_URL]"/>/static-content/js/Roar/Roar.css" rel="stylesheet" type="text/css" />
|
16 |
|
|
<link href="<s:property value="#application[@gr.uoa.di.driver.web.listeners.DriverContextListener@APACHE_URL]"/>/static-content/js/SqueezeBox/assets/SqueezeBox.css" rel="stylesheet" type="text/css" />
|
17 |
8405
|
antonis.le
|
|
18 |
10510
|
thanos.pap
|
|
19 |
13398
|
katerina.i
|
<script type="text/javascript" src="<s:property value="#application[@gr.uoa.di.driver.web.listeners.DriverContextListener@APACHE_URL]"/>/static-content/js/mootools-1.2.3-core.js"></script>
|
20 |
|
|
<script type="text/javascript" src="<s:property value="#application[@gr.uoa.di.driver.web.listeners.DriverContextListener@APACHE_URL]"/>/static-content/js/mootools-1.2.3.1-more.js"></script>
|
21 |
|
|
<script type="text/javascript" src="<s:property value="#application[@gr.uoa.di.driver.web.listeners.DriverContextListener@APACHE_URL]"/>/static-content/js/SqueezeBox/SqueezeBox.js" ></script>
|
22 |
|
|
<script type="text/javascript" src="<s:property value="#application[@gr.uoa.di.driver.web.listeners.DriverContextListener@APACHE_URL]"/>/static-content/js/smarthoverbox.js" ></script>
|
23 |
|
|
<script type="text/javascript" src="<s:property value="#application[@gr.uoa.di.driver.web.listeners.DriverContextListener@APACHE_URL]"/>/static-content/js/Roar/Roar.js"></script>
|
24 |
|
|
<script type="text/javascript" src="<s:property value="#application[@gr.uoa.di.driver.web.listeners.DriverContextListener@APACHE_URL]"/>/static-content/js/addthis/addthis.js"></script>
|
25 |
|
|
<script type="text/javascript" src="<s:property value="#application[@gr.uoa.di.driver.web.listeners.DriverContextListener@APACHE_URL]"/>/static-content/js/dropbox.js"></script>
|
26 |
|
|
<script type="text/javascript" src="<s:property value="#application[@gr.uoa.di.driver.web.listeners.DriverContextListener@APACHE_URL]"/>/static-content/js/EnhancedPublications.js"></script>
|
27 |
10510
|
thanos.pap
|
|
28 |
|
|
<script type="text/javascript">
|
29 |
|
|
window.addEvent('domready', function() {
|
30 |
|
|
render('thanosGraph', '<s:property value="#request[@gr.uoa.di.driver.web.DocumentDetailsPage@DOCUMENT].id"/>');
|
31 |
|
|
|
32 |
|
|
|
33 |
|
|
// SqueezeBox.initialize();
|
34 |
|
|
//
|
35 |
|
|
//
|
36 |
|
|
//
|
37 |
|
|
// /**
|
38 |
|
|
// * That CSS selector will find all <a> elements with the
|
39 |
|
|
// * attribute rel="popup" and href starting with a #.
|
40 |
|
|
// */
|
41 |
|
|
// SqueezeBox.assign($$('a[rel=popup][href^=#]'), {
|
42 |
|
|
// handler: 'adopt',
|
43 |
|
|
// overlayOpacity: 0.4,
|
44 |
|
|
// minSize: {x: 870, y: 570},
|
45 |
|
|
// maxSize: {x: 1050, y:750},
|
46 |
|
|
// automaticResize: true,
|
47 |
|
|
// onOpen: function() {
|
48 |
|
|
// smartBox.closeBox();
|
49 |
|
|
// this.content.getChildren().setStyle('display','block');
|
50 |
|
|
// this.showContent();
|
51 |
|
|
// }, // unhide the divs
|
52 |
|
|
// onClose: function() {
|
53 |
|
|
// var parent_id = $(this.url.match(/#([\w-]+)$/)[1]).get('id') + "_container"; // get the original parent id
|
54 |
|
|
// this.content.getChildren().inject($(parent_id)).setStyle('display', 'none'); // inject back to parent and hide
|
55 |
|
|
// }
|
56 |
|
|
// });
|
57 |
|
|
// /**
|
58 |
|
|
// * Now hide corresponding divs
|
59 |
|
|
// */
|
60 |
|
|
// $$('a[rel=popup][href^=#]').each(function(el) {
|
61 |
|
|
// $(el.get('href').match(/#([\w-]+)$/)[1]).setStyle('display', 'none');
|
62 |
|
|
// });
|
63 |
|
|
});
|
64 |
|
|
</script>
|
65 |
|
|
|
66 |
8405
|
antonis.le
|
</head>
|
67 |
|
|
|
68 |
|
|
<body>
|
69 |
|
|
<div id="center">
|
70 |
|
|
<div id="wrapper" class="wrapper_shadowleft wrapper_shadowright">
|
71 |
|
|
<div id="container">
|
72 |
10510
|
thanos.pap
|
<jsp:include page="/pages/banner.jsp" />
|
73 |
8405
|
antonis.le
|
<jsp:include page="/pages/menu.jsp" />
|
74 |
|
|
|
75 |
|
|
<div id="leftcolumn">
|
76 |
|
|
<b class="curved_top">
|
77 |
|
|
<b class="curved_t1"></b>
|
78 |
|
|
<b class="curved_t2"></b>
|
79 |
|
|
<b class="curved_t3"></b>
|
80 |
|
|
<b class="curved_t4"></b>
|
81 |
|
|
</b>
|
82 |
|
|
<div class="curved_container clearfix">
|
83 |
|
|
<div class="equalize2">
|
84 |
|
|
<div class="featured_top leftcolumn_top">Enhanced Publications</div>
|
85 |
|
|
</div>
|
86 |
8764
|
natalia.ma
|
<div class="tipHdr">tip</div>
|
87 |
|
|
<div class="tipSection">
|
88 |
|
|
<p>Enhanced publications are <b><i>compound digital objects</i></b> which can combine various heterogeneous but related resources.</p>
|
89 |
|
|
<p> The basis of this compound object is the traditional academic publication labeled as <strong>ePrint</strong>, i.e., a textual resource with original work which is intended to be read by human beings, and which puts forward certain academic claims.
|
90 |
|
|
</p>
|
91 |
10510
|
thanos.pap
|
|
92 |
8764
|
natalia.ma
|
</div>
|
93 |
10510
|
thanos.pap
|
|
94 |
8405
|
antonis.le
|
</div>
|
95 |
|
|
<b class="curved_bottom">
|
96 |
|
|
<b class="curved_b4"></b>
|
97 |
|
|
<b class="curved_b3"></b>
|
98 |
|
|
<b class="curved_b2"></b>
|
99 |
|
|
<b class="curved_b1"></b>
|
100 |
|
|
</b>
|
101 |
|
|
</div>
|
102 |
|
|
|
103 |
|
|
<div id="maincolumn2">
|
104 |
|
|
<b class="curved_top">
|
105 |
|
|
<b class="curved_t1"></b>
|
106 |
|
|
<b class="curved_t2"></b>
|
107 |
|
|
<b class="curved_t3"></b>
|
108 |
|
|
<b class="curved_t4"></b>
|
109 |
|
|
</b>
|
110 |
10510
|
thanos.pap
|
|
111 |
8405
|
antonis.le
|
<div id="wrapper_shadowleft">
|
112 |
|
|
<div id="wrapper_shadowright">
|
113 |
|
|
<div class="curved_container clearfix">
|
114 |
|
|
<div class="featured_top maincolumn2_top">
|
115 |
|
|
Enhanced Publication Details
|
116 |
|
|
</div>
|
117 |
10510
|
thanos.pap
|
|
118 |
8405
|
antonis.le
|
<div class="searchresultsitem">
|
119 |
|
|
<s:set var="version" value="#request['fullVersion']" scope="request" />
|
120 |
10506
|
katerina.i
|
<s:include value="/pages/search/results/html/document.jsp" />
|
121 |
8405
|
antonis.le
|
<div class="document_info">
|
122 |
|
|
<div class="right">
|
123 |
|
|
<ul>
|
124 |
|
|
<li class="libutton">
|
125 |
10413
|
katerina.i
|
<a class="ovalbutton" href="javascript:addDocumentToDropbox('<s:property value="#request[@gr.uoa.di.driver.web.DocumentDetailsPage@DOCUMENT].id"/>')">
|
126 |
8405
|
antonis.le
|
<span>Add to dropbox</span>
|
127 |
10510
|
thanos.pap
|
</a>
|
128 |
8405
|
antonis.le
|
</li>
|
129 |
10510
|
thanos.pap
|
<li class="libutton">
|
130 |
8405
|
antonis.le
|
<s:url id="driverLink" action="ShowDocument" forceAddSchemeHostAndPort="true">
|
131 |
10413
|
katerina.i
|
<s:param name="id" value="#request[@gr.uoa.di.driver.web.DocumentDetailsPage@DOCUMENT].id"/>
|
132 |
8405
|
antonis.le
|
</s:url>
|
133 |
10510
|
thanos.pap
|
<a href="http://www.addthis.com/bookmark.php?v=250&pub=xa-4a6b55273785de8e"
|
134 |
|
|
onmouseover="return addthis_open(this, '',
|
135 |
|
|
'<s:property value="%{driverLink}" />',
|
136 |
|
|
'<s:property value="#request[@vs@DOCUMENT].title" />')"
|
137 |
|
|
onmouseout="addthis_close()"
|
138 |
8405
|
antonis.le
|
onclick="return addthis_sendto()" >
|
139 |
13398
|
katerina.i
|
<img src="<s:property value="#application[@gr.uoa.di.driver.web.listeners.DriverContextListener@APACHE_URL]"/>/static-content/images/icons/share.png" width="125" height="16" alt="Bookmark & Share" />
|
140 |
8405
|
antonis.le
|
</a>
|
141 |
|
|
</li>
|
142 |
|
|
</ul>
|
143 |
|
|
</div>
|
144 |
|
|
</div>
|
145 |
|
|
</div>
|
146 |
8764
|
natalia.ma
|
<div class="epResources">
|
147 |
|
|
<div class="epHdr">
|
148 |
10794
|
katerina.i
|
<span class="right graphButton">
|
149 |
|
|
<a href="#" onclick="document.getElementById('thanosContainer').style.display = 'block';">Graph view</a>
|
150 |
10510
|
thanos.pap
|
<!-- a href="#graph" id="graphLink" rel="popup">Graph view</a -->
|
151 |
8764
|
natalia.ma
|
</span>
|
152 |
10510
|
thanos.pap
|
|
153 |
8405
|
antonis.le
|
<s:set var="version" value="#request['summaryVersion']" scope="request" />
|
154 |
8764
|
natalia.ma
|
Resource(s)
|
155 |
|
|
</div>
|
156 |
8720
|
antonis.le
|
|
157 |
8405
|
antonis.le
|
<s:iterator value="#request[@vs@RESOURCES]" id="resource" status="iterStatus">
|
158 |
|
|
<s:set var="document" value="#resource.object" scope="request" />
|
159 |
10794
|
katerina.i
|
<div class="searchresultsitem">
|
160 |
8720
|
antonis.le
|
<div class="content">
|
161 |
|
|
<s:set var="relationDivId" value="#iterStatus.index" scope="request"/>
|
162 |
|
|
<s:set var="displayExpand" value="true" scope="request"/>
|
163 |
10510
|
thanos.pap
|
|
164 |
10509
|
katerina.i
|
<s:include value="/pages/search/results/html/document.jsp" />
|
165 |
10510
|
thanos.pap
|
|
166 |
8720
|
antonis.le
|
<div id='relations-<s:property value="#iterStatus.index" />' style="display:none" ></div>
|
167 |
8405
|
antonis.le
|
</div>
|
168 |
|
|
</div>
|
169 |
|
|
</s:iterator>
|
170 |
8764
|
natalia.ma
|
</div>
|
171 |
|
|
<div class="epResources">
|
172 |
|
|
<div class="epHdr">
|
173 |
|
|
Referenced by
|
174 |
|
|
</div>
|
175 |
|
|
<s:iterator value="#request[@vs@REFERERS]" id="resource">
|
176 |
|
|
<s:set var="document" value="#resource.object" scope="request" />
|
177 |
10794
|
katerina.i
|
<div class="searchresultsitem">
|
178 |
8764
|
natalia.ma
|
<div class="content">
|
179 |
|
|
<s:set var="relationDivId" value="#iterStatus.index" scope="request"/>
|
180 |
|
|
<s:set var="displayExpand" value="false" scope="request"/>
|
181 |
10510
|
thanos.pap
|
|
182 |
10509
|
katerina.i
|
<s:include value="/pages/search/results/html/document.jsp" />
|
183 |
8764
|
natalia.ma
|
</div>
|
184 |
10794
|
katerina.i
|
</div>
|
185 |
8764
|
natalia.ma
|
</s:iterator>
|
186 |
|
|
</div>
|
187 |
|
|
<p> </p>
|
188 |
10510
|
thanos.pap
|
|
189 |
|
|
<div id="thanosContainer" style="display: none;">
|
190 |
|
|
<div id="thanosGraph" style="width: 850px; height: 550px; display: block; border: 1px solid #7f7f7f;">
|
191 |
|
|
</div>
|
192 |
|
|
<p>
|
193 |
|
|
<a href="#" onclick="document.getElementById('thanosContainer').style.display = 'none';">Close</a>
|
194 |
|
|
</p>
|
195 |
|
|
</div>
|
196 |
|
|
|
197 |
|
|
|
198 |
8405
|
antonis.le
|
</div>
|
199 |
|
|
</div>
|
200 |
|
|
<b class="curved_bottom">
|
201 |
|
|
<b class="curved_b4"></b>
|
202 |
|
|
<b class="curved_b3"></b>
|
203 |
|
|
<b class="curved_b2"></b>
|
204 |
|
|
<b class="curved_b1"></b>
|
205 |
|
|
</b>
|
206 |
|
|
</div>
|
207 |
|
|
</div>
|
208 |
|
|
<div id="footer">
|
209 |
12995
|
katerina.i
|
<s:action name="FooterPage" executeResult="true"/>
|
210 |
8405
|
antonis.le
|
</div>
|
211 |
10510
|
thanos.pap
|
|
212 |
8405
|
antonis.le
|
<div id="testDiv" />
|
213 |
|
|
</div>
|
214 |
|
|
</div>
|
215 |
|
|
</div>
|
216 |
10510
|
thanos.pap
|
<!--div id="graph_container" class="optiontable_container">
|
217 |
8720
|
antonis.le
|
<div id="graph" class="optiontable_content">
|
218 |
|
|
<div class="optiontable_content2">
|
219 |
|
|
<div id="loading">
|
220 |
|
|
<p style="text-align: center">
|
221 |
13398
|
katerina.i
|
<img src="struts/images/driver-loader1.gif" alt="loading..." /><br/>
|
222 |
8720
|
antonis.le
|
Loading graph...
|
223 |
|
|
</p>
|
224 |
|
|
</div>
|
225 |
8861
|
thanos.pap
|
<div id="graphDiv" style="width: 850px; height: 550px; border: 1px solid #7f7f7f; display:none;"></div>
|
226 |
8720
|
antonis.le
|
</div>
|
227 |
|
|
</div>
|
228 |
10510
|
thanos.pap
|
</div -->
|
229 |
8405
|
antonis.le
|
</body>
|
230 |
|
|
</html>
|