From: Christopher Kings-L. <ch...@us...> - 2002-04-10 04:19:57
|
Update of /cvsroot/phppgadmin/webdb/public_html/explorer In directory usw-pr-cvs1:/tmp/cvs-serv18477 Added Files: About.html index.html main.html Log Message: code for left nav explorer --- NEW FILE: About.html --- <Html> <Body bgcolor='#ffffff' text='#000000' link='000066' vlink='#000066'> <Table border=0 width=100%> <Tr> <Td colspan=2 bgcolor="#0000ff" background="../../../pictures/topbkr3.jpg" valign=top> <Font face="Arial,geneva,helvetica" size=+1 color="#ffffff"> <B> About explorerMenu<Br> </B> </Font> </Td> </Tr> <Tr> <Td valign=top align=justify> explorerMenu is a javaScript program written by RedHog (Egil Möller) and is copyrighted (C) 1997-1998 by Söderköpings Tekniska Datorsupport ek. för. explorerMenu may freely be distributed, used, modyfied and copyed, as long as the copyright notice at the to of the script file remains unchanged. There are no warranties, neither explicit nor implicite. explorerMenu creates an interactive menu which is graphically and functionally similar to the directory tree in Windows Explorer (TM). </Td> <Td valign=top align=right width=60%> <Table border=0 width=90%> <Tr> <Td bgcolor="#0000ff" background="../../../pictures/bottombkr.jpg" valign=top align=right> <Font face="Arial,geneva,helvetica" size=+0 color="#ffffff"> <B> New features in version 1.08<Br> </B> </Font> </Td> </Tr> <Tr> <Td valign=top align=justify> There are mainly three updates between version 1.05 and 1.08:<Br> <Ul> <Li> Click on document icons opens document<Br> When you click on a document icon, or on the document title, the corresponding document is opened. </Li> <Li> Totaly expanded, not collapsable, list is provided by a special function.<Br> It is now possible to get a totaly expanded 'listing' on all sub-items to s specific item. </Li> <Li> Easier customization thought separate configuretion file.<Br> You don't has to edit the main script file any more to be able to customize explorerMenu, all the settings are in a separate file. </Li> </Ul> </Td> </Tr> </Table> </Td> </Tr> </Table> <Table border=0 width=100%> <Tr> <Td bgcolor="#0000ff" background="../../../pictures/topbkr2.jpg" valign=top> <Font face="Arial,geneva,helvetica" size=+1 color="#ffffff"> <B> How to install<Br> </B> </Font> </Td> </Tr> <Tr> <Td valign=top align=justify> To be able to use explorerMenu on your site, your site must be a framed site, i.e. it must use frames, and one frame must be reserved for the menu.<Br> To install explorerMenu on your site, first download the explorereMenu <A href="explorerMenu.tar.gz">package</A>, which contains the script file, an example configuration file and and example menu file. After downloading the file, gunzip and untar it (Or use WinZIP on a windosze-platform) in the web site root directory. Then edit your index.html to conform to the style of example.html. Edit scripts/config.js to customize the look of the menu, and scripts/menu.js to customize its contents.<Br> If you start using getIt! on your site, please e-mail me and tell me about it (Please write the site's name, its purpose, genre/content type, author etc.) at <A Href="mailto:re...@al...">re...@al...</a>. </Td> </Tr> </Table> </Body> </Html> --- NEW FILE: index.html --- <Html> <Head> <Title> explorerMenu example site </Title> <!These just has to be here> <Script src="scripts/main.js"></Script> <Script src="scripts/config.js"></Script> <Script src="scripts/explorerMenu.js"></Script> <!This is where the menu is being defined> <Script src="scripts/menus.js"></Script> <Frameset cols=220,* border=2 frameborder=2 bordercolor="#ffffff" sizable=yes> <!This is the frame where the menu resides. top.menu is the menu name consisting of top. and a unique menu name as> <!defined in menu.js> <Frame name='linksFrame' src='javaScript:top.getMenu(top.menu, "top.menu");' scrolling=auto> <!This is where the documents are to be displayed. The name of this frame is 'main'> <Frame name='main' src='main.html' scrolling=auto> </Frameset> </Head> </Html> --- NEW FILE: main.html --- <Html> <Body bgcolor='#ffffff' text='#000000' link='000066' vlink='#000066'> <Table border=0 width=100%> <Tr> <Td bgcolor="#0000ff" background="../../../pictures/topbkr3.jpg" valign=top> <Font face="Arial,geneva,helvetica" size=+1 color="#ffffff"> <B> Congratulations!<Br> </B> </Font> </Td> </Tr> <Tr> <Td valign=top align=justify> Congratulations! You have now successfully downloaded and installed explorerMenu. The next step is to create your own site using this program.<Br> The menu is defined in scripts/menus.js and the menu look and feel is configured in scripts/config.js. The files are explained in mor detail inside them selves (In comments). </Td> </Tr> </Table> </Body> </Html> |