Common subdirectories: vocabindex.orig/images and vocabindex/images
Common subdirectories: vocabindex.orig/theme and vocabindex/theme
Common subdirectories: vocabindex.orig/translations and vocabindex/translations
diff -uN vocabindex.orig/vocabindex.admin.inc vocabindex/vocabindex.admin.inc
--- vocabindex.orig/vocabindex.admin.inc	2008-12-19 20:03:38.000000000 +0000
+++ vocabindex/vocabindex.admin.inc	2009-09-15 14:39:38.000000000 +0100
@@ -211,10 +211,12 @@
     $default_value = !is_null($vi->view) ? $vi->view : VOCABINDEX_VIEW_TREE;
     $options = array(VOCABINDEX_VIEW_TREE => t('Tree'));
     if ($vi->type == VOCABINDEX_VI_PAGE) {
+      $options[VOCABINDEX_VIEW_STATICTREE] = t('Static Tree');
       $options[VOCABINDEX_VIEW_FLAT] = t('Browsable');
       $options[VOCABINDEX_VIEW_ALPHABETICAL] = t('Alphabetical');
     }
     else {
+      $options[VOCABINDEX_VIEW_STATICTREE] = t('Static Tree');
       $options[VOCABINDEX_VIEW_FLAT] = t('Flat');
     }
     $form[$id . 'view'] = array(
diff -uN vocabindex.orig/vocabindex.module vocabindex/vocabindex.module
--- vocabindex.orig/vocabindex.module	2008-12-21 01:34:39.000000000 +0000
+++ vocabindex/vocabindex.module	2009-09-15 11:47:07.000000000 +0100
@@ -38,6 +38,10 @@
  */
 define('VOCABINDEX_VIEW_ALPHABETICAL', 3);
 /**
+ * Static Tree view.
+ */
+define('VOCABINDEX_VIEW_STATICTREE', 4);
+/**
  * A VI block.
  */
 define('VOCABINDEX_VI_BLOCK', 1);
diff -uN vocabindex.orig/vocabindex.view.inc vocabindex/vocabindex.view.inc
--- vocabindex.orig/vocabindex.view.inc	2009-01-14 14:41:14.000000000 +0000
+++ vocabindex/vocabindex.view.inc	2009-09-15 14:19:09.000000000 +0100
@@ -116,6 +116,7 @@
 function vocabindex_convert_view($view) {
   $strings[VOCABINDEX_VIEW_FLAT] = 'flat';
   $strings[VOCABINDEX_VIEW_TREE] = 'tree';
+  $strings[VOCABINDEX_VIEW_STATICTREE] = 'statictree';
   $strings[VOCABINDEX_VIEW_ALPHABETICAL] = 'alphabetical';
 
   return $strings[$view];
@@ -401,6 +402,23 @@
 }
 
 /**
+ * Render a static tree
+ *
+ * @param $tree
+ *   Type: array; A taxonomy tree.
+ * @param $children
+ *   Type: array; The vocabindex_get_children() output for this particular tree.
+ * @param $vi
+ *   Type: object; The VI this list belongs to.
+ *
+ * @return
+ *   Type: string; The fully rendered list.
+ */
+function vocabindex_list_render_statictree($tree, $children, $vi) {
+  return vocabindex_list_render_tree($tree, $children, $vi);
+}
+
+/**
  * Helper function for vocabindex_list_render_tree()
  *
  * Walks through the tree and renders each term.
