-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
78 lines (75 loc) · 4.13 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>IKS related search</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js"></script>
<script type="text/javascript" src="resources/underscore.min.js"></script>
<script type="text/javascript" src="resources/backbone.min.js"></script>
<script type="text/javascript" src="resources/jquery.rdfquery.min.js"></script>
<script type="text/javascript" src="resources/vie-2.1.0.debug.js"></script>
<script type="text/javascript" src="resources/jquery-ui-1.8.17.custom.min.js"></script>
<link type="text/css" href="resources/redmond/jquery-ui-1.8.17.custom.css" rel="stylesheet" />
<!-- Include the image search widget -->
<script type="text/javascript" src="resources/vie.widget.image_search.js"></script>
<!-- Include vie-related widget -->
<script type="text/javascript" src="resources/vie.widget.related.js"></script>
<link type="text/css" href="resources/style.css" rel="stylesheet" />
<!-- Include TinyMCE and initialize the search button -->
<script type="text/javascript" src="tiny_mce/tiny_mce.js"></script>
<script type="text/javascript">
tinyMCE
.init({
// General options
mode : "exact",
elements : "content",
theme : "advanced",
theme_advanced_buttons1 : "imageSearchButton,|,|,bold,italic,underline,|,justifyleft,justifycenter,justifyright,fontselect,fontsizeselect,formatselect",
theme_advanced_buttons2 : "cut,copy,paste,|,bullist,numlist,|,outdent,indent,|,undo,redo,|,link,unlink,anchor,image,|,code,preview,|,forecolor,backcolor",
theme_advanced_buttons3 : "",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_statusbar_location : "bottom",
setup : function(ed) {
// Add a custom button
ed.addButton('imageSearchButton', {
title : 'Search images',
onclick : function() {
ed.focus();
enhance(ed.getContent(), ed.getElement());
}
});
}
});
</script>
<!-- /TinyMCE -->
</head>
<body role="application">
<div id="wrapper" class="wrapper">
<div id="content" class="tinymce">
<p>Steven Paul Jobs was an American businessman and inventor
widely recognized as a charismatic pioneer of the personal computer
revolution. He was co-founder, chairman, and chief executive officer
of Apple Inc. Jobs was co-founder and previously served as chief
executive of Pixar Animation Studios; he became a member of the
board of directors of The Walt Disney Company in 2006, following the
acquisition of Pixar by Disney.</p>
<p>WASHINGTON, D.C. The House has passed a short-term spending
bill that keeps the government running for six weeks and buys time
for future budget negotiations. The 352-66 vote sends the measure to
President Barack Obama in time to avert a government shutdown at
midnight. The legislation gives Congress and the White House more
time to iron out their differences on a pile of unfinished budget
work totaling more than $1 trillion. It also ends a fight over
whether some aid for victims of Hurricane Irene and other natural
disasters should have been offset by cuts elsewhere.</p>
<p>CUPERTINO, California It's the first time in years that Apple
has unveiled a major new product without Steve Jobs presiding over
the announcement. The company's new CEO, Tim Cook, was the one
introducing the company's new iPhone today -- faster and more
powerful than the previous version. Cook took over as CEO after
Jobs, who has been battling health problems, resigned in August.</p>
<p>Pulp Fiction is a great movie.</p>
</div>
</div>
</body>
</html>