<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to patches</title><link>https://sourceforge.net/p/multivalent/patches/</link><description>Recent changes to patches</description><atom:link href="https://sourceforge.net/p/multivalent/patches/feed.rss" rel="self"/><language>en</language><lastBuildDate>Sat, 26 Mar 2005 13:07:38 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/multivalent/patches/feed.rss" rel="self" type="application/rss+xml"/><item><title>Patches to enable embedding</title><link>https://sourceforge.net/p/multivalent/patches/5/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I still work on embedding Multivalent into my jEdit plugin.&lt;br /&gt;
However, jEdit has its own classloader and resource&lt;br /&gt;
handler, so the attached patches are needed for&lt;br /&gt;
Multivalent.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Bertalan Fodor</dc:creator><pubDate>Sat, 26 Mar 2005 13:07:38 -0000</pubDate><guid>https://sourceforge.net5bca10370c51be975cd5f7c0e08f3643eb1bee38</guid></item><item><title>icons, splash screen image/logo, etc.</title><link>https://sourceforge.net/p/multivalent/patches/4/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Here are the files that I use to give multivalent a&lt;br /&gt;
little more pizazz and reality in the Windows environment:&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Anonymous</dc:creator><pubDate>Fri, 16 Apr 2004 22:00:31 -0000</pubDate><guid>https://sourceforge.net6c7f37f4c678435bdfbed0b400dfefbc5420d65d</guid></item><item><title>URLs.toURI() patch for embedded spaces and absolute form</title><link>https://sourceforge.net/p/multivalent/patches/3/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;URLs.toURI() is getting passed URLs with embedded&lt;br /&gt;
encoded spaces and is producing URIs with &amp;amp;quot;%2520&amp;amp;quot; since&lt;br /&gt;
it is re-encoding the percent sign.&lt;/p&gt;
&lt;p&gt;URLs.toURI() is producing URIs without &amp;amp;quot;/&amp;amp;quot; as the first&lt;br /&gt;
character thus URL.checkPath() is rejecting it because&lt;br /&gt;
it things the URL is in relative form.&lt;/p&gt;
&lt;p&gt;Attached you'll find an updated URLs.java with the&lt;br /&gt;
appropriate changes to workaround these two issues.&lt;/p&gt;
&lt;p&gt;Tested in WebStart as an embedded component (where the&lt;br /&gt;
the problem initially exposed itself...multivalent jar&lt;br /&gt;
was in &amp;amp;quot;Documents and Settings&amp;amp;quot; directory and&lt;br /&gt;
Splash.html coulnd't be loaded) and standalone too.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">hemisfear</dc:creator><pubDate>Sun, 28 Dec 2003 14:23:30 -0000</pubDate><guid>https://sourceforge.net6f72f1564acf4897fcbbf02299769944e30b0260</guid></item><item><title>See how I launch multivalent in &amp;quot;embeded&amp;quot; mode</title><link>https://sourceforge.net/p/multivalent/patches/2/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;I created a -e switch that can be sent to multivalent&lt;br /&gt;
via the first part of an argument:&lt;/p&gt;
&lt;p&gt;multivalent.jar -e systemresource:/sys/Splash.html &lt;br /&gt;
will load the splash.html file from the archive  and&lt;br /&gt;
the -e tells multivalent to enable standalone_ mode&lt;br /&gt;
*after* the browser is initialized so that when a&lt;br /&gt;
quit/close/or exit is performed it doesn't shutdown the&lt;br /&gt;
program that called it.&lt;/p&gt;
&lt;p&gt;This way multivalent can be launched using a jarrunner&lt;br /&gt;
from inside another program.  For all intents&lt;br /&gt;
Multivalent loads looking and feeling like it would&lt;br /&gt;
normally.&lt;/p&gt;
&lt;p&gt;The if statement I used could be updated to a for loop&lt;br /&gt;
that looks through all tokens of all arguments for a&lt;br /&gt;
-e... and the same process could check for the -v&lt;br /&gt;
argument at the same time and act accordingly.    (this&lt;br /&gt;
would be a more robust way to allow commandline&lt;br /&gt;
parameters)   Do you have any interest in it if I make&lt;br /&gt;
the nested for loops required to check each string for&lt;br /&gt;
the -v and -e arguments?&lt;/p&gt;
&lt;p&gt;The attached code works like a champ for me.  When I&lt;br /&gt;
run multivalent by itself and exit the program java&lt;br /&gt;
exits like normal.   If I run it from inside another&lt;br /&gt;
program and pass it the -e it loads wonderfully, and&lt;br /&gt;
exits without closing my program.&lt;/p&gt;
&lt;p&gt;All places that I made changes or additions are&lt;br /&gt;
commented with tor2 as the beginning of the comment.&lt;br /&gt;
&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Tor Nichols</dc:creator><pubDate>Fri, 19 Dec 2003 19:46:21 -0000</pubDate><guid>https://sourceforge.net2a3f732ce1b6d15d02e74186e47a943a01a2b768</guid></item><item><title>Updated Graphics (Logo, Splash.html, icon file)</title><link>https://sourceforge.net/p/multivalent/patches/1/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Hi Tom and folks.&lt;/p&gt;
&lt;p&gt;In the jar archive the Splash.html file was causing&lt;br /&gt;
multivalent to load the homepage after the page&lt;br /&gt;
specified in a commandline argument because of the&lt;br /&gt;
meta-refresh tag.&lt;/p&gt;
&lt;p&gt;I updated the splash.html and put a little work into&lt;br /&gt;
making it an html based logo for you.  It's is somewhat&lt;br /&gt;
basic, but I think it looks nice.&lt;/p&gt;
&lt;p&gt;Would you consider using this splash.html file instead&lt;br /&gt;
please?  (or some variation)&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Tor Nichols</dc:creator><pubDate>Fri, 21 Nov 2003 21:48:45 -0000</pubDate><guid>https://sourceforge.netcf8e4ca88b433da6034a5a1b9694a8d080578fd2</guid></item></channel></rss>