Here is how the "folder" or directory/file structure is organized:
(uses the "tree" command) Abridged version:
Materials
|
|---dindex.html
|
|-- Steel-|
| |-- SAE1045
| |-- sae1045.html
| |-- SAE1045_203BHN_OL.png
| |-- overload_disc.html
| |-- sae1045_187BHN.html
| |-- sae1045_203BHN.html
| |-- sae1045_203BHN_CA_Bonnen-Chern.html
| |-- sae1045_203BHN_OL_Bonnen.html
| |-- sae1045_277BHN.html
|
|-- Alumcast
| |-- A356
| | |-- a356-T6_sae_sp760.html
| | `-- a356.html
| `-- alumcast.html
|
|
|-- PM
| |-- f488
| `-- pm.html
| |-- f488.html
| |-- lqq1-1.html
| |-- lqq1-2.html
| |-- lqq1-3.html
| |-- lqq2-3.html
| |-- lqq2-4.html
| |-- lqq2-5.html
| |-- lqq3-3.html
| |-- lqq3-3_1_1000.gif
| |-- lqq3-4.html
| |-- pmqq500x.gif
| |-- pmqq500xb.gif
| |-- pmqqsample.gif
| `-- std488life.html
|
|-- SSteel
|-- AISI_304_stainless
| |-- aisi304.html
| |-- aisi304ss_hard.html
| |-- aisi304ss_soft.html
|
|-- AISI_310_stainless
| |-- aisi310.html
| |-- aisi310ss_soft.html
...etc.
In each folder above, such as "PM" or "Steel" there is
at least one viewable html file that points to the other folders or
files below it in the tree structure.
If you wish to make a copy of all the files in your own database, to get a start, the Linux program "wget" is very helpful. with the -r option you can get recursively the complete directory tree. At this point you can then expand the html files to insert your own. There are many options to the wget command. Check the "man wget" pages on a Linux machine. The typical wget variation you will probably use is:
wget -rv --random-wait -p -np -nH https://fde.uwaterloo.ca # where # -rv recursive(down all directories) v= verbose # -p load all files that make a given page displayable # -np no parent directories. While following the tree # limbs do not ascend into the parent directory # -nH no host name in the directoriesNote: The "end-of-line" character(s) are different in a Windows and a Linux/Unix system. This can cause problems if you are running the software on your own machine. The files on this site are in Linux/Unix format. You may wish to learn a bit about the dos2unix and unix2dos commands, or use a text editor that is less sensitive about the line terminators, like "vim" or "gvim" available for both Linux and MSWindows.