<?xml version="1.0"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>Forums Tag: themes</title>
<link>http://omeka.org/forums/</link>
<description>Forums Tag: themes</description>
<language>en</language>
<pubDate>Thu, 28 Aug 2008 23:39:43 +0000</pubDate>

<item>
<title>kalbers on "Available Themes"</title>
<link>http://omeka.org/forums/topic/available-themes#post-442</link>
<pubDate>Mon, 02 Jun 2008 17:00:18 +0000</pubDate>
<dc:creator>kalbers</dc:creator>
<guid isPermaLink="false">442@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Sorry about that. Something must have happened during the compression. It should be good to go now.
&#60;/p&#62;</description>
</item>
<item>
<title>mem on "Available Themes"</title>
<link>http://omeka.org/forums/topic/available-themes#post-440</link>
<pubDate>Fri, 30 May 2008 21:37:44 +0000</pubDate>
<dc:creator>mem</dc:creator>
<guid isPermaLink="false">440@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Is the newly available Dark theme intact? When I download it, I get an archive with no files in the subdirectories. Trying to install it yields an error message: can't find common/header.php. Are my download attempts all corrupt or are there really no php files there?&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
</item>
<item>
<title>SheilaBrennan on "Available Themes"</title>
<link>http://omeka.org/forums/topic/available-themes#post-359</link>
<pubDate>Wed, 16 Apr 2008 17:29:10 +0000</pubDate>
<dc:creator>SheilaBrennan</dc:creator>
<guid isPermaLink="false">359@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Hi, &#60;/p&#62;
&#60;p&#62;By the end of this week, we should have a few other themes available for downloading. There will be a blog post announcing the release of the themes once they are officially available. &#60;/p&#62;
&#60;p&#62;These should help make your site &#34;prettier.&#34;&#60;/p&#62;
&#60;p&#62;Sheila
&#60;/p&#62;</description>
</item>
<item>
<title>AJMillion on "Available Themes"</title>
<link>http://omeka.org/forums/topic/available-themes#post-352</link>
<pubDate>Tue, 15 Apr 2008 06:04:30 +0000</pubDate>
<dc:creator>AJMillion</dc:creator>
<guid isPermaLink="false">352@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Alright, I'm back. Myself and a coworker have been messing around and had a little success.  It's going to take me a little while to get comfortable, but I'll get there. The helper functions are nice too and I should be good to go. Of course, that won't be for a couple of months. No need yet.&#60;/p&#62;
&#60;p&#62;That said, I have one more question. I had mentioned on a previous thread that I am working on an early stage Digital Project for the University of Missouri Journalism School. Unfortunately, right now myself, another guy, and a Professor are the only ones working on it. We're strapped for everything but content; [I will flat out say that our content is awesome]. Hopefully, the want for other things will change at the end of the month, because we have a meeting with the department. Coincidentally, next year the school will be celebrating the opening of a brand new building and their 100th, 150th, er... some anniversary. A good opportunity to market the project, no? Our J-School is very well funded.&#60;/p&#62;
&#60;p&#62;Anyway, since we are strapped for time, cash, and experience I was wondering if anyone has advice regarding the quickest way to &#34;clean up&#34; on the display. The administrative side is great and we've got the necessary organization down. It would just be nice to have Omeka look &#34;prettier.&#34; Any suggestions? Does anyone have any developed (or partially developed) themes laying around out there? If everything goes to plan we hope to create our own and submit it, but that's will be later on. We have to get everything working first. Otherwise we may be stuck. Coming here seemed like a quick way to maximize our punch come the end of April, and I'm sure some of you have been here before.&#60;/p&#62;
&#60;p&#62;If you have any questions or suggestions, by all means, e-mail me.
&#60;/p&#62;</description>
</item>
<item>
<title>AJMillion on "Available Themes"</title>
<link>http://omeka.org/forums/topic/available-themes#post-278</link>
<pubDate>Wed, 26 Mar 2008 03:50:06 +0000</pubDate>
<dc:creator>AJMillion</dc:creator>
<guid isPermaLink="false">278@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Jeremy,&#60;/p&#62;
&#60;p&#62;Thanks! I'll keep you updated.
&#60;/p&#62;</description>
</item>
<item>
<title>JeremyBoggs on "Available Themes"</title>
<link>http://omeka.org/forums/topic/available-themes#post-246</link>
<pubDate>Mon, 17 Mar 2008 16:00:10 +0000</pubDate>
<dc:creator>JeremyBoggs</dc:creator>
<guid isPermaLink="false">246@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Hi AJ,&#60;/p&#62;
&#60;p&#62;There's quite a bit more PHP in our theme templating than with WordPress, mainly because 1) there are much more data available to pull into Omeka themes than WordPress themes, and 2) because its a young templating system, and we're still evolving ways to make more helper functions that users need.&#60;/p&#62;
&#60;p&#62;There are a couple of ways to get data into your themes. One involves using variables and their properties. Example:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;?php echo $item-&#38;gt;title; ?&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;This code would echo the title of the item. On some pages (like in the items directory) &#60;code&#62;$items&#60;/code&#62; and &#60;code&#62;$item&#60;/code&#62; are pre-defined, so you don't need to define them. On other pages, you'd have to define them, like &#60;code&#62;&#60;/code&#62;&#60;code&#62;&#38;lt;?php $item = item(10); ?&#38;gt;&#60;/code&#62;, which would define &#60;code&#62;$item&#60;/code&#62; as the item with the ID of '10'.&#60;/p&#62;
&#60;p&#62;Another way is to use help functions, as I mentioned earlier. We've listed all the helper functions in the Codex, but if you're interested in looking at the code for the helper functions, they're all located in &#60;code&#62;application/helpers&#60;/code&#62; directory of your Omeka install.&#60;/p&#62;
&#60;p&#62;I hope this helps!
&#60;/p&#62;</description>
</item>
<item>
<title>jsafley on "Integrating iPaper"</title>
<link>http://omeka.org/forums/topic/integrating-ipaper#post-233</link>
<pubDate>Wed, 12 Mar 2008 17:36:50 +0000</pubDate>
<dc:creator>jsafley</dc:creator>
<guid isPermaLink="false">233@http://omeka.org/forums/</guid>
<description>&#60;p&#62;The iPaper and PdfMeNot plugins are all ready for download. See &#60;a href=&#34;http://omeka.org/blog/2008/03/12/access-your-documents-in-omeka-with-ipaper-and-pdfmenot/&#34;&#62;this post&#60;/a&#62; for more details.
&#60;/p&#62;</description>
</item>
<item>
<title>jsafley on "Integrating iPaper"</title>
<link>http://omeka.org/forums/topic/integrating-ipaper#post-229</link>
<pubDate>Sun, 09 Mar 2008 14:54:32 +0000</pubDate>
<dc:creator>jsafley</dc:creator>
<guid isPermaLink="false">229@http://omeka.org/forums/</guid>
<description>&#60;p&#62;I agree that too many iPaper documents on one page would be oppressive (on the eyes and on the bandwidth). Some sort of pagination would be preferable. The first release of the iPaper and PdfMeNot plugins will be without this capability, but we'll look into it for subsequent releases.&#60;/p&#62;
&#60;p&#62;Would you (or anybody else) like to make this happen after we release these plugins? It'll be a good way to introduce yourself to Omeka's plugin architecture.
&#60;/p&#62;</description>
</item>
<item>
<title>kerim on "Integrating iPaper"</title>
<link>http://omeka.org/forums/topic/integrating-ipaper#post-228</link>
<pubDate>Sun, 09 Mar 2008 02:47:44 +0000</pubDate>
<dc:creator>kerim</dc:creator>
<guid isPermaLink="false">228@http://omeka.org/forums/</guid>
<description>&#60;p&#62;I'm not sure it would be nice to have 6 or seven embedded documents on a single page. A better way to do it (for the plugin) would be to display the first one and then have links to the other documents - or perhaps a menu, or just &#34;next&#34; and &#34;previous&#34; links.
&#60;/p&#62;</description>
</item>
<item>
<title>SharonLeon on "Available Themes"</title>
<link>http://omeka.org/forums/topic/available-themes#post-227</link>
<pubDate>Fri, 07 Mar 2008 23:15:09 +0000</pubDate>
<dc:creator>SharonLeon</dc:creator>
<guid isPermaLink="false">227@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Hi AJMillion,&#60;/p&#62;
&#60;p&#62;Thanks for your post.  There was a little typo in the theme links.  You should be able to download theme now.&#60;/p&#62;
&#60;p&#62;I'll leave the WordPress editing advice to those designers with more experience.
&#60;/p&#62;</description>
</item>
<item>
<title>AJMillion on "Available Themes"</title>
<link>http://omeka.org/forums/topic/available-themes#post-226</link>
<pubDate>Fri, 07 Mar 2008 20:47:34 +0000</pubDate>
<dc:creator>AJMillion</dc:creator>
<guid isPermaLink="false">226@http://omeka.org/forums/</guid>
<description>&#60;p&#62;I'm in the process of playing with Omeka but can't download the two basic themes from the website. The page is down. I could just go back to the server directory and pull them out but won't revive access for a few days. Is there a chance that anyone can tell me where I could get them in the meantime?&#60;/p&#62;
&#60;p&#62;Additionally, does anyone have any advice for someone familiar with Wordpress who is going to messing around with Omeka's themes?
&#60;/p&#62;</description>
</item>
<item>
<title>KrisKelly on "Integrating iPaper"</title>
<link>http://omeka.org/forums/topic/integrating-ipaper#post-217</link>
<pubDate>Thu, 06 Mar 2008 16:49:36 +0000</pubDate>
<dc:creator>KrisKelly</dc:creator>
<guid isPermaLink="false">217@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Actually, file_download_uri() is meant to be passed a file rather than an item, so the way it works is like this:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;?php echo file_download_uri($item-&#38;gt;Files[0]); ?&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;That will work if you only have one file per item.&#60;/p&#62;
&#60;p&#62;Otherwise, you should do something like this:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;?php foreach($item-&#38;gt;Files as $file): echo file_download_uri($file); endforeach; ?&#38;gt;&#60;/code&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>kerim on "Integrating iPaper"</title>
<link>http://omeka.org/forums/topic/integrating-ipaper#post-214</link>
<pubDate>Thu, 06 Mar 2008 02:29:25 +0000</pubDate>
<dc:creator>kerim</dc:creator>
<guid isPermaLink="false">214@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Thanks. The current site is just a proof-of-concept so its good to have a working link before the plugin is ready. I feel really confident about using Omeka for this project now!
&#60;/p&#62;</description>
</item>
<item>
<title>jsafley on "Integrating iPaper"</title>
<link>http://omeka.org/forums/topic/integrating-ipaper#post-213</link>
<pubDate>Thu, 06 Mar 2008 02:13:52 +0000</pubDate>
<dc:creator>jsafley</dc:creator>
<guid isPermaLink="false">213@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Instead of:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;?php echo file_download_uri($item); ?&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;Try:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;?php echo WEB_FILES . &#38;#39;/&#38;#39; . $item-&#38;gt;Files[0]-&#38;gt;archive_filename; ?&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;This results in a direct link to the first file assigned to the item. (Remember that you can assign more than one file per item.)&#60;/p&#62;
&#60;p&#62;This solution still has problems, so I recommend that you wait for the Omeka iPaper plugin I wrote. It's configurable and (relatively) stable, and it'll be ready for download in a couple of days. I'll update this forum topic when it's available.
&#60;/p&#62;</description>
</item>
<item>
<title>kerim on "Integrating iPaper"</title>
<link>http://omeka.org/forums/topic/integrating-ipaper#post-209</link>
<pubDate>Thu, 06 Mar 2008 01:57:14 +0000</pubDate>
<dc:creator>kerim</dc:creator>
<guid isPermaLink="false">209@http://omeka.org/forums/</guid>
<description>&#60;p&#62;I seem to be running into a new problem now. The code I was using worked fine as long as:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;?php echo file_download_uri($item); ?&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;$item was the same as the number of the file I was downloading. However, later I added some files and deleted some more ... so when I upload a new file the file number is 9, even though the item number is still 3. Now iPaper cannot find the correct link because there is no file at:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://kerim.joyeurs.com/omeka/files/download/4/fullsize&#34; rel=&#34;nofollow&#34;&#62;http://kerim.joyeurs.com/omeka/files/download/4/fullsize&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;The file should be at:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://kerim.joyeurs.com/omeka/files/download/9/fullsize&#34; rel=&#34;nofollow&#34;&#62;http://kerim.joyeurs.com/omeka/files/download/9/fullsize&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;How do I fix this?&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>jsafley on "Integrating iPaper"</title>
<link>http://omeka.org/forums/topic/integrating-ipaper#post-208</link>
<pubDate>Thu, 06 Mar 2008 00:30:03 +0000</pubDate>
<dc:creator>jsafley</dc:creator>
<guid isPermaLink="false">208@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Wow, it was you who got them to fix it. Great job!
&#60;/p&#62;</description>
</item>
<item>
<title>jsafley on "Integrating iPaper"</title>
<link>http://omeka.org/forums/topic/integrating-ipaper#post-207</link>
<pubDate>Thu, 06 Mar 2008 00:27:10 +0000</pubDate>
<dc:creator>jsafley</dc:creator>
<guid isPermaLink="false">207@http://omeka.org/forums/</guid>
<description>&#60;p&#62;kerim: OK, I finally got iPaper working in my Omeka installation. All that was needed was an empty div tag with an id of &#34;embedded_doc&#34; -- this is where the the iPaper is embedded. This div tag was not included in the QuickSwitch installation instructions for several days, but it's there now.&#60;/p&#62;
&#60;p&#62;If you wait a few days you can download the Omeka &#60;strong&#62;iPaper plugin&#60;/strong&#62; that I just wrote. It's fully configurable within the Omeka admin interface and displays iPapers on the admin item show page (with a simple function call you can add the same functionality to your public themes).&#60;/p&#62;
&#60;p&#62;Thanks for initiating this interesting and much needed plugin.
&#60;/p&#62;</description>
</item>
<item>
<title>kerim on "Integrating iPaper"</title>
<link>http://omeka.org/forums/topic/integrating-ipaper#post-206</link>
<pubDate>Thu, 06 Mar 2008 00:20:32 +0000</pubDate>
<dc:creator>kerim</dc:creator>
<guid isPermaLink="false">206@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Problem solved!!!&#60;/p&#62;
&#60;p&#62;From the &#60;a href=&#34;http://groups.google.com/group/scribd-platform-developers/browse_thread/thread/fff59d76bf689d1b&#34;&#62;iPaper Forums&#60;/a&#62;:&#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62;Hi Kerim,&#60;br /&#62;
  Oops!  You caught a bug on our side.  The QuickSwitch page was&#60;br /&#62;
showing an invalid embed code in that mode, missing a &#34;div&#34; tag.&#60;br /&#62;
  If you re-copy the code from the QuickSwitch page now, it should&#60;br /&#62;
work.  Very cool to see iPaper being used in Omeka!&#60;br /&#62;
Best,&#60;br /&#62;
  Jared &#60;/p&#62;&#60;/blockquote&#62;</description>
</item>
<item>
<title>kerim on "Integrating iPaper"</title>
<link>http://omeka.org/forums/topic/integrating-ipaper#post-196</link>
<pubDate>Tue, 04 Mar 2008 01:24:09 +0000</pubDate>
<dc:creator>kerim</dc:creator>
<guid isPermaLink="false">196@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Using the emed codes from both Scribd and PDFmenot I am able to hard-code PDFs into my site. So it seems it should be possible to get iPaper platform to work as well. iPaper is better because it offers search...
&#60;/p&#62;</description>
</item>
<item>
<title>kerim on "Integrating iPaper"</title>
<link>http://omeka.org/forums/topic/integrating-ipaper#post-195</link>
<pubDate>Tue, 04 Mar 2008 01:11:52 +0000</pubDate>
<dc:creator>kerim</dc:creator>
<guid isPermaLink="false">195@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Thanks for getting back to me. And glad to know you are looking into it.&#60;/p&#62;
&#60;p&#62;Do you know of any other ways to display documents inline on Omeka webpages? &#60;/p&#62;
&#60;p&#62;I'm trying to emulate this excellent web archive using Omeka (since my server doesn't support Java and I'm much more comfortable with PHP apps):&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.sudanarchive.net/&#34; rel=&#34;nofollow&#34;&#62;http://www.sudanarchive.net/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I had hoped that iPaper + Omeka would do the trick ... but maybe there is another way?&#60;/p&#62;
&#60;p&#62;So far the only thing I can find that is similar is &#60;a href=&#34;http://pdfmenot.com&#34; rel=&#34;nofollow&#34;&#62;http://pdfmenot.com&#60;/a&#62; however, that requires a link ending in &#34;.pdf&#34; and doesn't seem to work with Omeka's links which look like &#34;.../omeka/files/download/1/fullsize.&#34; Also, iPaper can do .doc files which pdfmenot cannot. And iPaper seems as if it will be around for a while, whereas pdfmenot may not. Still, I suppose it could be easy enough to switch from one solution to another using a plugin, and I could convert all our .doc files to PDFs if need be... but I still don't know how to deal with the need for &#34;.pdf&#34; links...
&#60;/p&#62;</description>
</item>
<item>
<title>jsafley on "Integrating iPaper"</title>
<link>http://omeka.org/forums/topic/integrating-ipaper#post-193</link>
<pubDate>Mon, 03 Mar 2008 18:56:30 +0000</pubDate>
<dc:creator>jsafley</dc:creator>
<guid isPermaLink="false">193@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Hello kerim. We want Omeka to work with as many APIs as possible, so this issue is important to our continuing development. Unfortunately I've not been able to make iPaper work in my Omeka installation either. I went as far as to write an Omeka plugin that dynamically includes the scripts in the item show page. I got the same result: valid source code but no output. I'll look further into it, but for now I have no solution.
&#60;/p&#62;</description>
</item>
<item>
<title>kerim on "Integrating iPaper"</title>
<link>http://omeka.org/forums/topic/integrating-ipaper#post-188</link>
<pubDate>Sun, 02 Mar 2008 17:19:55 +0000</pubDate>
<dc:creator>kerim</dc:creator>
<guid isPermaLink="false">188@http://omeka.org/forums/</guid>
<description>&#60;p&#62;I'm attempting to integrate the iPaper platform with my Omeka site to display pdf and word documents. However, I seem to have a problem. I've written the iPaper folks, but maybe someone at Omeka can help to.&#60;/p&#62;
&#60;p&#62;I've used the instructions on this page:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.scribd.com/platform/documentation/quickswitch&#34; rel=&#34;nofollow&#34;&#62;http://www.scribd.com/platform/documentation/quickswitch&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Choosing &#34;single link&#34; and &#34;Embedded iPaper directly on page.&#34;&#60;/p&#62;
&#60;p&#62;Where it says to insert the URL of the file, I've used the code:&#60;/p&#62;
&#60;p&#62;&#60;code&#62;&#38;lt;?php echo file_download_uri($item); ?&#38;gt;&#60;/code&#62;&#60;/p&#62;
&#60;p&#62;(this is on the show.php file in the minimalist template).&#60;/p&#62;
&#60;p&#62;You can see the page here:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://kerim.joyeurs.com/omeka/items/show/1&#34; rel=&#34;nofollow&#34;&#62;http://kerim.joyeurs.com/omeka/items/show/1&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Right now there is no link at all where this code appears - although everything looks good when I look at the source code of the resulting HTML page.&#60;/p&#62;
&#60;p&#62;Any help would be appreciated. They do say it might take some time to appear - but they also say a regular link to the document should appear until the iPaper is ready... So far I have neither.
&#60;/p&#62;</description>
</item>
<item>
<title>DaveLester on "Bug: Switching Themes"</title>
<link>http://omeka.org/forums/topic/bug-switching-themes#post-78</link>
<pubDate>Wed, 26 Dec 2007 04:11:00 +0000</pubDate>
<dc:creator>DaveLester</dc:creator>
<guid isPermaLink="false">78@http://omeka.org/forums/</guid>
<description>&#60;p&#62;I noticed this as well and put a ticket up on TRAC to fix the problem before the next release.  Thanks for catching this as well.
&#60;/p&#62;</description>
</item>
<item>
<title>kerim on "Bug: Switching Themes"</title>
<link>http://omeka.org/forums/topic/bug-switching-themes#post-75</link>
<pubDate>Mon, 24 Dec 2007 13:45:07 +0000</pubDate>
<dc:creator>kerim</dc:creator>
<guid isPermaLink="false">75@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Strange behavior when switching themes. I have to do it twice before the results &#34;stick.&#34;
&#60;/p&#62;</description>
</item>

</channel>
</rss>
