<?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: javascript</title>
<link>http://omeka.org/forums/</link>
<description>Forums Tag: javascript</description>
<language>en</language>
<pubDate>Sun, 12 Oct 2008 05:34:17 +0000</pubDate>

<item>
<title>KrisKelly on "javascript errors in IE"</title>
<link>http://omeka.org/forums/topic/javascript-errors-in-ie#post-337</link>
<pubDate>Fri, 11 Apr 2008 17:42:17 +0000</pubDate>
<dc:creator>KrisKelly</dc:creator>
<guid isPermaLink="false">337@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Yes, it's true that IE does not like javascript:void(0).  I'll put up a ticket for this to be fixed.  In the meantime, you can try searching and replacing all instances of javascript:void() or void(0) with a #.  That seems to be the consensus approach to the problem.  The problem is that then the click handlers need to &#60;code&#62;return false;&#60;/code&#62; at the end so that clicking the link doesn't send you to the top of the page.  &#60;/p&#62;
&#60;p&#62;I'm not so sure about the other problem, but I'll look into it.  From your other post, it seems like you're familiar with SVN.  We're probably not going to do another release for a couple of months, but this particular problem should be fixed way before then.  After we fix this, then I'd recommend checking out or exporting a copy of Omeka that can be used on your public library computers.  Hope that helps.
&#60;/p&#62;</description>
</item>
<item>
<title>kkay on "javascript errors in IE"</title>
<link>http://omeka.org/forums/topic/javascript-errors-in-ie#post-333</link>
<pubDate>Thu, 10 Apr 2008 23:35:55 +0000</pubDate>
<dc:creator>kkay</dc:creator>
<guid isPermaLink="false">333@http://omeka.org/forums/</guid>
<description>&#60;p&#62;I'm having some javascript errors when using the admin panel in IE7 (and tested in IE6 for the heck of it). It all works great on FF at home.&#60;/p&#62;
&#60;p&#62;In the Add Exhibit area, IE6 balks at the javascript:void() on the Add a Section button. I was reading somewhere that IE hates javascript:void() in href. IE7 loads the Add Exhibit page as &#34;Done with errors&#34; in the status area but sometimes reloading the page gets the Add a Section to work.&#60;/p&#62;
&#60;p&#62;In IE7 once I've added a page and want to select a layout, clicking on a layout image produces no results. IE7 again loads the page as Done with Errors and the details message says &#34;Line 85, Char 5, Error- Object doesn't support this property.&#34;&#60;/p&#62;
&#60;p&#62;We have updated our install to 9.1. I guess the ideal answer would be to get my public library to install FF on our machines (I wish.)&#60;/p&#62;
&#60;p&#62;PS I love Zotero!
&#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>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>

</channel>
</rss>
