<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Web Development Blog</title>
	<atom:link href="http://www.austincc.edu/webdev/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.austincc.edu/webdev</link>
	<description>ACC's Web Developement Blog</description>
	<lastBuildDate>Fri, 05 Jun 2009 16:55:57 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Fooling Contribute CS3 With PHP Include Based Templates</title>
		<link>http://www.austincc.edu/webdev/index.php/2009/06/05/fooling-contribute-cs3-with-php-include-based-templates/</link>
		<comments>http://www.austincc.edu/webdev/index.php/2009/06/05/fooling-contribute-cs3-with-php-include-based-templates/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 16:17:07 +0000</pubDate>
		<dc:creator>eterry</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.austincc.edu/webdev/?p=52</guid>
		<description><![CDATA[The distribution of web templates across a higher education website seems to be quite an issue. In my search for the perfect way to do this i have found many examples of what i call &#8220;stabbings&#8221; or folks just trying to work within their systems to try and maintain some semblance of control outside of [...]]]></description>
			<content:encoded><![CDATA[<p>The distribution of web templates across a higher education website seems to be quite an issue. In my search for the perfect way to do this i have found many examples of what i call &#8220;stabbings&#8221; or folks just trying to work within their systems to try and maintain some semblance of control outside of a totally locked down CMS.</p>
<p>I have seen templates distributed with the full CSS files, includes, images and so on. But I thought  &#8220;What&#8217;s the point of doing that if you can&#8217;t utilize the power of CSS from the root down?&#8221; I have seen include based templates that are program specific. Such as Get the Dreamweaver Template, Get the Contribute template,  and so on. I think this is fine but I would like to see a template that is independent of a specific program that works in all environments.</p>
<p>One of my favorite attempts to distribute a template but still offer options and control form the top down is over as Oregon State. Their template builder is fantastic, but in my opinion needs to be even simpler in order to really maintain a choke hold on the template itself. Check it out here:</p>
<p><a href="http://oregonstate.edu/template/">Oregon State University Template Builder</a></p>
<p>ACC&#8217;s Include Based Template: (Beta)</p>
<p>Here is the markup for the include based template. As you can see its as simple as it gets with 4 editable areas: Title, SiteName, PageName, and the content area itself. I split the body tag out so that developers could use onLoad statements and other tags that may need to go here.</p>
<p>&lt;?php include(&#8221;http://www.austincc.edu/modules/template/external/1.php&#8221;); ?&gt;<br />
&lt;title&gt;Include Page edited with Contribute&lt;/title&gt;<br />
&lt;!&#8211; Attach Scripts and extra CSS below &#8211;&gt;<br />
&lt;?php include(&#8221;http://www.austincc.edu/modules/template/external/2.php&#8221;); ?&gt;<br />
&lt;body&gt;<br />
&lt;?php include(&#8221;http://www.austincc.edu/modules/template/external/3.php&#8221;); ?&gt;<br />
&lt;!&#8211; Title of webite &#8211;&gt;<br />
SiteName<br />
&lt;?php include(&#8221;http://www.austincc.edu/modules/template/external/4.php&#8221;); ?&gt;<br />
&lt;!&#8211; Relative link to local menu &#8211;&gt;<br />
&lt;?php include(&#8221;menu.php&#8221;); ?&gt;<br />
&lt;?php include(&#8221;http://www.austincc.edu/modules/template/external/5.php&#8221;); ?&gt;<br />
&lt;!&#8211; Title of page &#8211;&gt;<br />
PageName<br />
&lt;?php include(&#8221;http://www.austincc.edu/modules/template/external/6.php&#8221;); ?&gt;<br />
Your Content Goes here.<br />
&lt;?php include(&#8221;http://www.austincc.edu/modules/template/external/7.php&#8221;); ?&gt;<br />
&lt;? echo &#8220;Last modified: &#8220;.date( &#8220;F d Y \@ \ g:i a&#8221;, filemtime($_SERVER['SCRIPT_FILENAME']) ); ?&gt;<br />
&lt;?php include(&#8221;http://www.austincc.edu/modules/template/external/8.php&#8221;); ?&gt;</p>
<p>Adobe Contribute at ACC</p>
<p>Adobe&#8217;s contribute software has been very helpful for content managers around the college. It helps them do simple edits and so forth while allowing web admins and developers worry about the installation and maintenance of template code. Doing this in conjunction with an include-based template that I control from the root has been difficult though. Contribute looks for Dreamweaver specific comment tags in the code and then allows users to edit only those areas. I figured that if the included files were not actually in the website that the user was editing that it would simply edit the content area and everything would be fine.</p>
<p>I was wrong, Contribute wanted to insert code above the include statements and so on , breaking the template. So then as a simple fix i tried actually including the editable region Dreamweaver statements in the includes themselves.</p>
<p>6.php (reference the above template code):</p>
<div style="code">
<p>&lt;!&#8211; TemplateEndEditable &#8211;&gt;<br />
&lt;/div&gt;<br />
&lt;div id=&#8221;contentarea&#8221;&gt;<br />
&lt;!&#8211; TemplateBeginEditable name=&#8221;SiteContent&#8221; &#8211;&gt;</p>
</div>
<p>7.php (reference the above template code):</p>
<div style="code">
<p>&lt;!&#8211; TemplateEndEditable &#8211;&gt;<br />
&lt;/div&gt;<br />
&lt;/div&gt;<br />
&lt;/div&gt;&#8230;</p>
</div>
<p>When Contribute went to edit the page, the editable regions were highlighted and everything worked as it should. The interesting thing is that Contribute did not look for for the main template hook up statement in the head of the document which is often in this format:</p>
<div style="code">
<p>&lt;!&#8211; InstanceBegin template=&#8221;/Templates/template.dwt.php&#8221; codeOutsideHTMLIsLocked=&#8221;false&#8221; &#8211;&gt;</p>
</div>
<p>Simple editing has been fine, I will continue to test other functions of Adobe Contribute using these templates. I think that folks editing an include-based template with software like Adobe&#8217;s Contribute is an almost ideal situation. The only way I think I could take this further is to somehow have a Contribute be web-based app so that a local client would not be necessary.</p>
<p>Include Based Template in the Adobe Contribute Environment</p>
<p><img class="alignnone" src="http://www.austincc.edu/webdev/wp-content/uploads2/contribute_enviro.jpg" alt="" /></p>
<p>Include Based Template Updated Without Destruction of Template Code</p>
<p><img class="alignnone" src="http://www.austincc.edu/webdev/wp-content/uploads2/browser-enviro.jpg" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.austincc.edu/webdev/index.php/2009/06/05/fooling-contribute-cs3-with-php-include-based-templates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ACC Homepage Update Preview</title>
		<link>http://www.austincc.edu/webdev/index.php/2009/02/17/acc-homepage-update-preview/</link>
		<comments>http://www.austincc.edu/webdev/index.php/2009/02/17/acc-homepage-update-preview/#comments</comments>
		<pubDate>Tue, 17 Feb 2009 22:52:43 +0000</pubDate>
		<dc:creator>eterry</dc:creator>
				<category><![CDATA[New sites]]></category>

		<guid isPermaLink="false">http://www.austincc.edu/webdev/?p=48</guid>
		<description><![CDATA[Welcome!
Welcome to the ACC Homepage Preview Area!
Here you can check out some of the new features the ACC Homepage has to offer and voice your opinion on what you like and don&#8217;t like, all right here!
New Features!
Spotlight Story

An eye-pleasing &#8220;Spotlight&#8221; that draws readers in to learn about ACC and showcase events and stories that make [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Welcome!</strong></p>
<p>Welcome to the ACC Homepage Preview Area!<br />
Here you can check out some of the new features the ACC Homepage has to offer and voice your opinion on what you like and don&#8217;t like, all right here!</p>
<p><strong>New Features!</strong></p>
<p><strong>Spotlight Story</strong></p>
<p><img class="alignnone" src="http://www.austincc.edu/webdev/wp-content/uploads2/spotlightstory.jpg" alt="Spotlight Story" /></p>
<p>An eye-pleasing &#8220;Spotlight&#8221; that draws readers in to learn about ACC and showcase events and stories that make ACC so special.</p>
<p><strong>Menu Drop Downs</strong></p>
<p><img class="alignnone" src="http://www.austincc.edu/webdev/wp-content/uploads2/dropdowns.jpg" alt="Menu Drop Downs" /></p>
<p>Main audience links drop down to show commonly used areas of the ACC website. Don&#8217;t see what you need? Hit the &#8220;more&#8230;&#8221; link to go our standard audience pages with all the links that you need. These menus snap open and shut at your command. When you come back to the ACC homepage, they will remember your preference!</p>
<p><strong>News and Announcements</strong></p>
<p><img class="alignnone" src="http://www.austincc.edu/webdev/wp-content/uploads2/newsandannouncements.jpg" alt="News and Announcements" /></p>
<p>Stories and notifications about important news items appear right here in an easy to read format. Our Newsroom stories let you view, comment, and share with others, right from the story itself.</p>
<p><strong>Subscriptions and Social Networking</strong></p>
<p><img class="alignnone" src="http://www.austincc.edu/webdev/wp-content/uploads2/subscribe.jpg" alt="Subscribe and Social Network" /></p>
<p>Have ACC Newsroom content delivered right to your email inbox and connect with ACC via our social networking pages.</p>
<p><strong>What&#8217;s Happening at ACC</strong></p>
<p><img class="alignnone" src="http://www.austincc.edu/webdev/wp-content/uploads2/calendar.jpg" alt="Calendar Listings" /></p>
<p>Check out &#8220;What&#8217;s Happening at ACC&#8221; with our updated calendar listings. Images and reformatted information make reading our calendar easier than ever.</p>
<p>Calendar Quickjump Menu</p>
<p><img class="alignnone" src="http://www.austincc.edu/webdev/wp-content/uploads2/calendar_dropdown.jpg" alt="Calendar Quickjump Menu" /><br />
Just want to see the Academic Calendar or want to find out whats happening at <em>your</em> campus? Use the Calendar Quickjump Menu to pull up the calendar that fits the bill right from the ACC Homepage.</p>
<p><strong>eServices</strong></p>
<p><img src="http://www.austincc.edu/webdev/wp-content/uploads2/eservices2.jpg" alt="" width="170" height="144" /></p>
<p>Common eServices are presented with tooltip descriptions where you can quickly access the service that <em>you</em> need <em>now</em>.</p>
<p><strong>Let me see it already!</strong></p>
<p><a title="ACC Homepage Preview" href="http://www.austincc.edu/eterry/index2.php" target="_blank"><img src="http://www.austincc.edu/webdev/wp-content/uploads2/homepage.jpg" alt="" width="208" height="236" /></a></p>
<p><a title="ACc Homepage Preview" href="http://www.austincc.edu/eterry/index2.php" target="_blank">View the ACC Homepage Preview</a> (new window) and don&#8217;t forget to leave us a comment right here about what you like, don&#8217;t like, and what you&#8217;d want to see on the ACC Homepage!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.austincc.edu/webdev/index.php/2009/02/17/acc-homepage-update-preview/feed/</wfw:commentRss>
		<slash:comments>28</slash:comments>
		</item>
		<item>
		<title>ACC Homepage Update</title>
		<link>http://www.austincc.edu/webdev/index.php/2008/12/19/acc-homepage-update/</link>
		<comments>http://www.austincc.edu/webdev/index.php/2008/12/19/acc-homepage-update/#comments</comments>
		<pubDate>Fri, 19 Dec 2008 17:41:48 +0000</pubDate>
		<dc:creator>eterry</dc:creator>
				<category><![CDATA[New sites]]></category>

		<guid isPermaLink="false">http://www.austincc.edu/webdev/?p=46</guid>
		<description><![CDATA[Currently we are in the process of &#8220;updating&#8221; the ACC home page. A preview of the proposed page can be found here.
One of the added features are drop down menus that contain links to common informational areas. This information was derived from the following statistics that were generated from our Google Analytics account to highlight [...]]]></description>
			<content:encoded><![CDATA[<p>Currently we are in the process of &#8220;updating&#8221; the ACC home page. A preview of the proposed page can be found <a href="http://www.austincc.edu/eterry/index2.php">here</a>.</p>
<p>One of the added features are drop down menus that contain links to common informational areas. This information was derived from the following statistics that were generated from our Google Analytics account to highlight some of the most accessed content from our top level.</p>
<p><a href="http://www.austincc.edu/eterry/documents/Analytics_www.austincc.edu_TopContentReport.pdf">Analytics_www.austincc.edu_TopContentReport.pdf</a></p>
<p>The following is a table of current and proposed drop down menus.</p>
<table border="1" cellspacing="0" cellpadding="0" width="500">
<tbody>
<tr>
<td>Current</td>
<td>Proposed</td>
</tr>
<tr>
<td>
<ul>
<li>Future Students
<ul>
<li>Why ACC Is The Smart Choice</li>
<li>Begin Taking Credit Classes</li>
<li>Continue Your Education</li>
<li>Talk To Somebody</li>
<li>About ACC</li>
<li>more&#8230;</li>
</ul>
</li>
<li>Current Students
<ul>
<li>Course Schedule</li>
<li>College Catalog</li>
<li>Student Support</li>
<li>Scholarships</li>
<li>Student Life</li>
<li>more&#8230;</li>
</ul>
</li>
<li>Parents and Visitors
<ul>
<li>About ACC</li>
<li>Giving to ACC</li>
<li>Early College Start</li>
<li>College Connection</li>
<li>GED Testing</li>
<li>more&#8230;</li>
</ul>
</li>
<li>Community and Business
<ul>
<li>Continuing Education</li>
<li>Joining the ACC District</li>
<li>Doing Business with ACC</li>
<li>Open Records Requests</li>
<li>Testing Center</li>
<li>more&#8230;</li>
</ul>
</li>
<li>Faculty and Staff
<ul>
<li>Administrative Departments</li>
<li>Helpdesk</li>
<li>Board Policies</li>
<li>Organizational Reference</li>
<li>Forms</li>
<li>more&#8230;</li>
</ul>
</li>
</ul>
</td>
<td>
<ul>
<li>Future Students
<ul>
<li>Why ACC</li>
<li>Apply</li>
<li>Courses and Programs</li>
<li>Paying for College</li>
<li>Student Life</li>
<li>more&#8230;</li>
</ul>
</li>
<li>Current Students
<ul>
<li>Student Support</li>
<li>Course Schedule</li>
<li>Student Support</li>
<li>Scholarships</li>
<li>Student Life</li>
<li>more&#8230;</li>
</ul>
</li>
<li>Parents and Visitors
<ul>
<li>About ACC</li>
<li>Giving to ACC</li>
<li>Early College Start</li>
<li>College Connection</li>
<li>Continuing Education</li>
<li>more&#8230;</li>
</ul>
</li>
<li>Community and Business
<ul>
<li>About ACC</li>
<li>Giving to ACC</li>
<li>ISD Relations</li>
<li>Continuing Education</li>
<li>Joining the ACC District</li>
<li>more&#8230;</li>
</ul>
</li>
<li>Faculty and Staff
<ul>
<li>Administrative Departments</li>
<li>Helpdesk</li>
<li>Human Resources</li>
<li>Board Policies</li>
<li>Instructional Resources</li>
<li>more&#8230;</li>
</ul>
</li>
</ul>
</td>
</tr>
</tbody>
</table>
<p>Please review the document, the current links, and the proposed links and leave a comment below or <a href="mailto:eterry@austincc.edu">email me</a> your suggestions. Thank you.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.austincc.edu/webdev/index.php/2008/12/19/acc-homepage-update/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
