diff --git a/src/helma/doc/DocPrototype.java b/src/helma/doc/DocPrototype.java index 336f83d9..45dc9e86 100644 --- a/src/helma/doc/DocPrototype.java +++ b/src/helma/doc/DocPrototype.java @@ -84,20 +84,25 @@ public class DocPrototype extends DocDirElement { File f = new File (location.getAbsolutePath (), arr[i]); if (f.isDirectory ()) continue; - if (arr[i].endsWith (".skin")) { - addChild (DocSkin.newInstance (f, this)); - } else if (arr[i].endsWith (".properties")) { - continue; - } else if (arr[i].endsWith (".hac")) { - addChild (DocFunction.newAction (f, this)); - } else if (arr[i].endsWith (".hsp")) { - addChild (DocFunction.newTemplate (f, this)); - } else if (arr[i].endsWith (".js")) { - DocElement[] elements = DocFunction.newFunctions (f, this); - for (int j=0; j