<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>lib/CMSAdminContentController.php</filename>
    </added>
    <added>
      <filename>migrate/ContentTableMigrate.php</filename>
    </added>
    <added>
      <filename>resources/app/controller/admin/AdminContentController.php</filename>
    </added>
    <added>
      <filename>view/CMSAdminContentController/_form.html</filename>
    </added>
    <added>
      <filename>view/CMSAdminContentController/_list.html</filename>
    </added>
    <added>
      <filename>view/CMSAdminContentController/_section_filter.html</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -10,9 +10,6 @@ echo &quot;Be careful what you agree to!&quot;.&quot;\n&quot;;
 echo &quot;------------------------------------------------------------------------&quot;.&quot;\n&quot;;
 system('mkdir -p '.CONTROLLER_DIR.'admin/');
 system(&quot;cp -iR &quot;.PLUGIN_DIR.&quot;cms/resources/app/controller/admin/Admin* &quot;.CONTROLLER_DIR.&quot;admin/&quot;);
-//system(&quot;cp -R &quot;.PLUGIN_DIR.&quot;cms/resources/public/images/cms &quot;.PUBLIC_DIR.&quot;images/&quot;);
-//system(&quot;cp &quot;.PLUGIN_DIR.&quot;cms/resources/public/stylesheets/*.css &quot;.PUBLIC_DIR.&quot;stylesheets/&quot;);
-//system(&quot;cp -R &quot;.PLUGIN_DIR.&quot;cms/resources/public/javascripts/* &quot;.PUBLIC_DIR.&quot;javascripts/&quot;);
 
 system(&quot;chmod -Rf 0777 &quot;.PUBLIC_DIR);
 echo &quot;All of the files have now been installed. To complete the installation:&quot;.&quot;\n&quot;;</diff>
      <filename>installer</filename>
    </modified>
    <modified>
      <diff>@@ -5,8 +5,8 @@ class SectionTableMigrate extends WXMigrate {
   public function up() {
     $this-&gt;create_column(&quot;title&quot;, &quot;string&quot;);
     $this-&gt;create_column(&quot;parent_id&quot;, &quot;integer&quot;);
+    $this-&gt;create_column(&quot;cms_section&quot;, &quot;introduction&quot;, &quot;text&quot;);
     $this-&gt;create_column(&quot;order&quot;, &quot;integer&quot;, &quot;2&quot;, false, &quot;0&quot;);
-    $this-&gt;create_column(&quot;section_type&quot;, &quot;integer&quot;, &quot;2&quot;, false, &quot;0&quot;);		
     $this-&gt;create_column(&quot;url&quot;, &quot;string&quot;);
     $this-&gt;create_table(&quot;cms_section&quot;);
   }</diff>
      <filename>migrate/SectionTableMigrate.php</filename>
    </modified>
    <modified>
      <diff>@@ -7,7 +7,6 @@ define(&quot;CMS_VERSION&quot;, &quot;0.1.5&quot;);
 CMSApplication::register_module(&quot;home&quot;, array(&quot;display_name&quot;=&gt;&quot;Admin Home&quot;, &quot;link&quot;=&gt;&quot;/admin/home/&quot;));
 CMSApplication::register_module(&quot;sections&quot;, array(&quot;display_name&quot;=&gt;&quot;Site Sections&quot;, &quot;link&quot;=&gt;&quot;/admin/sections/&quot;));
 CMSApplication::register_module(&quot;categories&quot;, array(&quot;display_name&quot;=&gt;&quot;Categories&quot;, &quot;link&quot;=&gt;&quot;/admin/categories/&quot;));
-CMSApplication::register_module(&quot;pages&quot;, array(&quot;display_name&quot;=&gt;&quot;Site Pages&quot;, &quot;link&quot;=&gt;&quot;/admin/pages/&quot;));
-CMSApplication::register_module(&quot;articles&quot;, array(&quot;display_name&quot;=&gt;&quot;Articles&quot;, &quot;link&quot;=&gt;&quot;/admin/articles/&quot;));
+CMSApplication::register_module(&quot;content&quot;, array(&quot;display_name&quot;=&gt;&quot;Content&quot;, &quot;link&quot;=&gt;&quot;/admin/content/&quot;));
 CMSApplication::register_module(&quot;files&quot;, array(&quot;display_name&quot;=&gt;&quot;Files&quot;, &quot;link&quot;=&gt;&quot;/admin/files/&quot;));
 ?&gt;
\ No newline at end of file</diff>
      <filename>setup.php</filename>
    </modified>
    <modified>
      <diff>@@ -1,7 +1,7 @@
 &lt;?php
 class TestCMSAdminController extends WebTestCase
 {
-  public $base = &quot;http://bluebookr.intranet.webxpress/&quot;;
+  public $base =false;
   
   public function setUp() {    
     $this-&gt;user = new CmsUser;</diff>
      <filename>tests/TestCMSAdminController.php</filename>
    </modified>
    <modified>
      <diff>@@ -1,7 +1,7 @@
 &lt;?php
 class TestCMSAdminFileController extends WebTestCase
 {
-  public $base = &quot;http://bluebookr.intranet.webxpress/&quot;;
+  public $base = false;
   public $test_image; 
   
   public function setUp() {</diff>
      <filename>tests/TestCMSAdminFileController.php</filename>
    </modified>
    <modified>
      <diff>@@ -2,7 +2,6 @@
 	&lt;?=form_heading(&quot;Setting up a site section&quot;)?&gt;
   &lt;?=medium(text_field($model, &quot;title&quot;))?&gt;
   &lt;?=small(select($model, &quot;parent_id&quot;, $tree_collection, array(), &quot;Parent Category&quot;))?&gt;
-  &lt;?=small(select($model, &quot;section_type&quot;, $model-&gt;type_options))?&gt;
 	&lt;?=form_divider()?&gt;
 	&lt;?=medium(text_area($model, &quot;introduction&quot;))?&gt;
 	&lt;?=form_divider()?&gt;</diff>
      <filename>view/CMSAdminSectionController/_form.html</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>lib/CMSAdminArticleController.php</filename>
    </removed>
    <removed>
      <filename>lib/CMSAdminPageController.php</filename>
    </removed>
    <removed>
      <filename>migrate/ArticleTableMigrate.php</filename>
    </removed>
    <removed>
      <filename>migrate/PageTableMigrate.php</filename>
    </removed>
    <removed>
      <filename>migrate/SectionTableAlteration.php</filename>
    </removed>
    <removed>
      <filename>resources/app/controller/admin/AdminArticlesController.php</filename>
    </removed>
    <removed>
      <filename>resources/app/controller/admin/AdminPagesController.php</filename>
    </removed>
    <removed>
      <filename>resources/public/images/cms/1-README</filename>
    </removed>
    <removed>
      <filename>resources/public/images/cms/button_delete.gif</filename>
    </removed>
    <removed>
      <filename>resources/public/images/cms/button_edit.gif</filename>
    </removed>
    <removed>
      <filename>resources/public/images/cms/button_view.gif</filename>
    </removed>
    <removed>
      <filename>resources/public/images/cms/cms-content-bg.jpg</filename>
    </removed>
    <removed>
      <filename>resources/public/images/cms/cms-footer-bg.gif</filename>
    </removed>
    <removed>
      <filename>resources/public/images/cms/cms-generic-icon.png</filename>
    </removed>
    <removed>
      <filename>resources/public/images/cms/cms-heading-bg.jpg</filename>
    </removed>
    <removed>
      <filename>resources/public/images/cms/cms-heading-gradient.jpg</filename>
    </removed>
    <removed>
      <filename>resources/public/images/cms/cms-icon-new.gif</filename>
    </removed>
    <removed>
      <filename>resources/public/images/cms/cms-logo-white.gif</filename>
    </removed>
    <removed>
      <filename>resources/public/images/cms/cms-navigation-left-tab.gif</filename>
    </removed>
    <removed>
      <filename>resources/public/images/cms/cms-navigation-right-tab.gif</filename>
    </removed>
    <removed>
      <filename>resources/public/images/cms/cms-stat-graph.gif</filename>
    </removed>
    <removed>
      <filename>resources/public/images/cms/cms-sub-bg.jpg</filename>
    </removed>
    <removed>
      <filename>resources/public/images/cms/cms_header-bg.gif</filename>
    </removed>
    <removed>
      <filename>resources/public/images/cms/cms_header-icon-home.gif</filename>
    </removed>
    <removed>
      <filename>resources/public/images/cms/cms_header-icon-logout.gif</filename>
    </removed>
    <removed>
      <filename>resources/public/images/cms/cms_header-icon-site.gif</filename>
    </removed>
    <removed>
      <filename>resources/public/images/cms/cms_header-icon-support.gif</filename>
    </removed>
    <removed>
      <filename>resources/public/images/cms/cms_header-submenu-bg.gif</filename>
    </removed>
    <removed>
      <filename>resources/public/images/cms/cms_webxpress-logo.gif</filename>
    </removed>
    <removed>
      <filename>resources/public/images/cms/icon_page.gif</filename>
    </removed>
    <removed>
      <filename>resources/public/images/cms/image-browse-bg.gif</filename>
    </removed>
    <removed>
      <filename>resources/public/images/cms/image-browse-tab.gif</filename>
    </removed>
    <removed>
      <filename>resources/public/images/cms/image-drop-zone.gif</filename>
    </removed>
    <removed>
      <filename>resources/public/images/cms/indicator.gif</filename>
    </removed>
    <removed>
      <filename>resources/public/images/cms/trash.gif</filename>
    </removed>
    <removed>
      <filename>resources/public/images/cms/widgeditor_button_bold.gif</filename>
    </removed>
    <removed>
      <filename>resources/public/images/cms/widgeditor_button_cat.gif</filename>
    </removed>
    <removed>
      <filename>resources/public/images/cms/widgeditor_button_empty.gif</filename>
    </removed>
    <removed>
      <filename>resources/public/images/cms/widgeditor_button_html.gif</filename>
    </removed>
    <removed>
      <filename>resources/public/images/cms/widgeditor_button_image.gif</filename>
    </removed>
    <removed>
      <filename>resources/public/images/cms/widgeditor_button_italic.gif</filename>
    </removed>
    <removed>
      <filename>resources/public/images/cms/widgeditor_button_link.gif</filename>
    </removed>
    <removed>
      <filename>resources/public/images/cms/widgeditor_button_ordered.gif</filename>
    </removed>
    <removed>
      <filename>resources/public/images/cms/widgeditor_button_shadow.gif</filename>
    </removed>
    <removed>
      <filename>resources/public/images/cms/widgeditor_button_unordered.gif</filename>
    </removed>
    <removed>
      <filename>resources/public/images/cms/widgeditor_toolbar_bg.gif</filename>
    </removed>
    <removed>
      <filename>resources/public/images/cms/window_close.gif</filename>
    </removed>
    <removed>
      <filename>resources/public/javascripts/editors/simple/css/widget-content.css</filename>
    </removed>
    <removed>
      <filename>resources/public/javascripts/editors/simple/images/widgeditor_button_bold.gif</filename>
    </removed>
    <removed>
      <filename>resources/public/javascripts/editors/simple/images/widgeditor_button_empty.gif</filename>
    </removed>
    <removed>
      <filename>resources/public/javascripts/editors/simple/images/widgeditor_button_html.gif</filename>
    </removed>
    <removed>
      <filename>resources/public/javascripts/editors/simple/images/widgeditor_button_image.gif</filename>
    </removed>
    <removed>
      <filename>resources/public/javascripts/editors/simple/images/widgeditor_button_italic.gif</filename>
    </removed>
    <removed>
      <filename>resources/public/javascripts/editors/simple/images/widgeditor_button_link.gif</filename>
    </removed>
    <removed>
      <filename>resources/public/javascripts/editors/simple/images/widgeditor_button_ordered.gif</filename>
    </removed>
    <removed>
      <filename>resources/public/javascripts/editors/simple/images/widgeditor_button_shadow.gif</filename>
    </removed>
    <removed>
      <filename>resources/public/javascripts/editors/simple/images/widgeditor_button_unordered.gif</filename>
    </removed>
    <removed>
      <filename>resources/public/javascripts/editors/simple/images/widgeditor_toolbar_bg.gif</filename>
    </removed>
    <removed>
      <filename>resources/public/javascripts/editors/simple/widgEditor.js</filename>
    </removed>
    <removed>
      <filename>resources/public/javascripts/reflection.js</filename>
    </removed>
    <removed>
      <filename>resources/public/stylesheets/cms-stylesheet.css</filename>
    </removed>
    <removed>
      <filename>resources/public/stylesheets/cms-wysiwyg-styles.css</filename>
    </removed>
    <removed>
      <filename>resources/public/stylesheets/form-layout.css</filename>
    </removed>
    <removed>
      <filename>resources/public/tests.php</filename>
    </removed>
    <removed>
      <filename>view/CMSAdminArticleController/_form.html</filename>
    </removed>
    <removed>
      <filename>view/CMSAdminArticleController/_list.html</filename>
    </removed>
    <removed>
      <filename>view/CMSAdminArticleController/_section_filter.html</filename>
    </removed>
    <removed>
      <filename>view/CMSAdminPageController/_form.html</filename>
    </removed>
    <removed>
      <filename>view/CMSAdminPageController/_list.html</filename>
    </removed>
    <removed>
      <filename>view/CMSAdminPageController/_section_filter.html</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>f74bbc059f06451b0f713865c467d94954c96883</id>
    </parent>
  </parents>
  <author>
    <name>ross</name>
    <email>ross@0e7ba554-dfdc-446b-ac9a-b820edd20ad7</email>
  </author>
  <url>http://github.com/phpwax/wildfire/commit/18a4a06a8bb166cd320a2121556df9ee58e086c6</url>
  <id>18a4a06a8bb166cd320a2121556df9ee58e086c6</id>
  <committed-date>2007-04-12T03:38:28-07:00</committed-date>
  <authored-date>2007-04-12T03:38:28-07:00</authored-date>
  <message>merged articles and pages into single content controller

git-svn-id: svn://php-wax.com/svn/plugins/cms/trunk@2712 0e7ba554-dfdc-446b-ac9a-b820edd20ad7</message>
  <tree>bc6cee2f00420d7ec65c264dc4aa3f65bf2e1cb2</tree>
  <committer>
    <name>ross</name>
    <email>ross@0e7ba554-dfdc-446b-ac9a-b820edd20ad7</email>
  </committer>
</commit>
