-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgrille57.html
executable file
·106 lines (94 loc) · 3.72 KB
/
grille57.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>Grille</title>
<link rel="stylesheet" type="text/css" href="dialogues/jquery.alerts.css" />
<link rel="stylesheet" type="text/css" href="css/commun/apropos.css" />
<link rel="stylesheet" type="text/css" href="./JCE/css/base.css" />
</head>
<body>
<!--
here we have oygContext top DOM element to which the play area will be bound;
the HTML template has more binding sites for various visual parts of the puzzle:
oygHeader, oygHeaderMenu, oygState, oygPuzzle, oygPuzzleFooter, oygListH, oygListV, oygFooter;
all element names for binding are prefixed with "oyg"
-->
<div id="oygContext" align="center" style="width:100%;">
<table class="oyOuterFrame" border="0" cellpadding="0" cellspacing="0">
<tr><td align="center">
<table class="oyFrame" border="0" cellpadding="0" cellspacing="0">
<tr>
<td colspan="5">
<table class="oyFrame" border="0" cellpadding="0" cellspacing="0" width="100%">
<tr class="oyHeader">
<td class="oyHeader">
<div id="oygHeader"></div>
</td>
<td align="right">
<!-- Je rends invisible cette div pour éviter une sortie intempestive
en modifiant le style dans base.css -->
<div id="oygHeaderMenu"></div>
<!-- fin commentaire Patrick C. -->
</td>
</tr>
</table>
</td>
</tr>
<tr style="height: 4px;">
<td colspan="5"></td>
</tr>
<tr>
<td rowspan="3" class="oyPuzzleCell" align="center" valign="top">
<div id="oygState"></div>
<div class="oyPuzzle" id="oygPuzzle"></div>
<div class="oyPuzzleFooter" id="oygPuzzleFooter"></div>
</td>
<td class="oyListCellDot">.</td>
<td class="oyListCell" valign="top" id="oygListH"></td>
</tr>
<tr style="height: 4px;">
<td colspan="4"></td>
</tr>
<tr>
<td class="oyListCellDot">.</td>
<td class="oyListCell" valign="top" id="oygListV"></td>
</tr>
<tr style="height: 4px;">
<td colspan="5"></td>
</tr>
<tr>
<td colspan="5" class="oyFooter">
<div id="oygFooter"></div>
</td>
</tr>
</table>
</td></tr>
</table>
</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<!--
Le modèle de grille reçoit maintenant les données nécessaires...
-->
<script src="dialogues/jquery.alerts.js"></script>
<script src="js/commun/apropos.js"></script>
<!--
Respectez l'odre de chargement de ces scripts
-->
<script type="text/javascript" src="./JCE/js/oyPrologue.js"></script>
<script type="text/javascript" src="./JCE/js/oyJsrAjax.js"></script>
<script type="text/javascript" src="./JCE/js/oyClue.js"></script>
<script type="text/javascript" src="./JCE/js/oyMenu.js"></script>
<script type="text/javascript" src="./JCE/js/oyPuzzle.js"></script>
<script type="text/javascript" src="./JCE/js/oyServer.js"></script>
<script type="text/javascript" src="./JCE/js/oySign.js"></script>
<script type="text/javascript" src="./JCE/js/oyMisc.js"></script>
<!-- Données de la grille -->
<script type="text/javascript" src="./data/data57.js"></script>
<script type="text/javascript" src="./JCE/js/oyEpilogue.js"></script>
<!-- Pied de page -->
<footer>
<p>Grille créée au moyen de <a title="apropos" href="#">JCruX</a> -
© 2012 Copyright Patrick CARDONA - <a target="_blank" href="licence.html" rel="jslicense">Information de Licence</a> </p>
</footer>
</body>
</html>