summaryrefslogtreecommitdiff
path: root/UI/menu_expand.html
diff options
context:
space:
mode:
authoreinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2007-06-27 01:28:23 +0000
committereinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2007-06-27 01:28:23 +0000
commit80d758a1abf3d2b696fd14521726806236a2c2b6 (patch)
tree5a36c2e4368553fc87cd760cd30875d78e49e113 /UI/menu_expand.html
parentca4e59a9c2e455bcb05d155e81cc10520d643341 (diff)
Committing first-run of broken infrastructure
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@1333 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'UI/menu_expand.html')
-rw-r--r--UI/menu_expand.html71
1 files changed, 71 insertions, 0 deletions
diff --git a/UI/menu_expand.html b/UI/menu_expand.html
new file mode 100644
index 00000000..7a78e24c
--- /dev/null
+++ b/UI/menu_expand.html
@@ -0,0 +1,71 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+ <title>Accounting Menu - LedgerSMB Version 1.2.7 - Chris Travers - metatron_ledger</title>
+ <meta http-equiv="Pragma" content="no-cache" />
+ <meta http-equiv="Expires" content="-1" />
+ <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
+ <link rel="stylesheet" href="css/<?lsmb stylesheet ?>" type="text/css" title="LedgerSMB stylesheet" />
+
+ <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
+
+ <meta name="robots" content="noindex,nofollow" />
+
+ <script type="text/javascript">
+
+ function SwitchMenu(obj) {
+ if (document.getElementById) {
+ var el = document.getElementById(obj);
+
+ if (el.style.display == "none") {
+ el.style.display = "block"; //display the block of info
+ } else {
+ el.style.display = "none";
+ }
+ }
+ }
+
+
+ document.onselectstart = new Function("return false");
+ </script>
+</head>
+
+
+ <body class="menu">
+ <img class="cornderlogo" src="images/ledgersmb_small.png" width="100" height="50" border="1" alt="ledger-smb" />
+ <div id="div_0" class="container">
+ <?lsmb MACRO menu(section) BLOCK ?>
+ <?lsmb IF item.id ?>
+ <div id="menu<?lsmb section.id ?>" class="menuOut"
+ onclick="SwitchMenu('sub_<?lsmb section.id ?>')">
+ <?lsmb text(section.label) ?></div>
+ <div class="submenu" id="sub<?lsmb item.id ?>">
+ <div id="div_<?lsmb item.id ?>">
+ <?lsmb END ?>
+ <?lsmb IF section.subs.size > 0 ?>
+ <?lsmb FOREACH key = section.subs.keys.sort ?>
+ <?lsmb item = section.subs.$key ?>
+ <?lsmb IF item.subs ?>
+ <?lsmb subs = items.subs ?>
+ <?lsmb FOREACH subkey = subs.keys.sort ?>
+ <?lsmb sub = item.sub.$key ?>
+ <?lsmb menu(item) ?>
+ <?lsmb END ?>
+ <?lsmb ELSE ?>
+ <div class="submenu">
+ <a class="submenu"
+ href="<?lsmb item.module ?>?login=<?lsmb login ?><?lsmb FOREACH key = item.keys ?>&<?lsmb key ?>=<?lsmb item.$key ?><?lsmb END ?>"
+ target="main_window"><?lsmb text(item.label)?></a>
+ </div>
+ <?lsmb END ?>
+ <?lsmb END ?>
+ <?lsmb END ?>
+ </div>
+ </div>
+ <?lsmb END ?>
+ <?lsmb menu(menu_items) ?>
+ </div>
+</body>
+
+</html>