Add support for nested type of query parameter
[smart-dao.git] / gh-pages / changes / index.html
blob850d20172cc51b3c1532347615b2bd3a52b7b3d6
1 <!--
2 *
3 * This is a common dao with basic CRUD operations and is not limited to any
4 * persistent layer implementation
5 *
6 * Copyright (C) 2008 Imran M Yousuf (imyousuf@smartitengineering.com)
7 *
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 3 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 -->
21 <!--
22 Document : index
23 Created on : Apr 4, 2009, 5:22:51 PM
24 Author : imyousuf
25 -->
26 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
27 <html>
28 <head>
29 <title>Changes</title>
30 <link href="./css/changes.css" rel="stylesheet" type="text/css" />
31 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
32 <script type="text/javascript">
33 function hideshowHelp(which, frame)
35 if (which.style.display == "none")
37 which.style.display = "block";
38 var height = frame.contentWindow.document.body.scrollHeight;
39 frame.style.height = height +"px";
40 frame.contentWindow.document.getElementById('header').style.display = 'none';
42 else
44 frame.style.height = "50px";
45 which.style.display = "none";
48 </script>
50 </head>
51 <body id="container">
52 <a id ="currentChangesLink" href="./changes-${project.version}.html" onclick="hideshowHelp(document.getElementById('currentChanges'), document.getElementById('currentChangesFrame')); return false;">Current Changes</a>
53 <div id="currentChanges" style="display:none;">
54 <iframe id ="currentChangesFrame" src="./changes-${project.version}.html" style="height: 50px;"></iframe>
55 </div>
56 </body>
57 </html>