aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/java/org/apache/poi/poifs/filesystem/POIFSMiniStore.java26
1 files changed, 11 insertions, 15 deletions
diff --git a/src/java/org/apache/poi/poifs/filesystem/POIFSMiniStore.java b/src/java/org/apache/poi/poifs/filesystem/POIFSMiniStore.java
index 623bd99467..9df110ed2d 100644
--- a/src/java/org/apache/poi/poifs/filesystem/POIFSMiniStore.java
+++ b/src/java/org/apache/poi/poifs/filesystem/POIFSMiniStore.java
@@ -54,32 +54,28 @@ public class POIFSMiniStore extends BlockStore {
/**
* Load the block at the given offset.
*/
- protected ByteBuffer getBlockAt(final int offset) {
+ protected ByteBuffer getBlockAt(final int offset) throws IOException {
// Which big block is this?
int byteOffset = offset * POIFSConstants.SMALL_BLOCK_SIZE;
int bigBlockNumber = byteOffset / _filesystem.getBigBlockSize();
int bigBlockOffset = byteOffset % _filesystem.getBigBlockSize();
// Now locate the data block for it
- Iterator<Integer> it = _mini_stream.getBlockOffsetIterator();
+ Iterator<ByteBuffer> it = _mini_stream.getBlockIterator();
for (int i = 0; i < bigBlockNumber; i++) {
it.next();
}
- try {
- ByteBuffer dataBlock = _filesystem.getBlockAt(it.next());
- assert(dataBlock != null);
+ ByteBuffer dataBlock = it.next();
+ assert(dataBlock != null);
- // Position ourselves, and take a slice
- dataBlock.position(
- dataBlock.position() + bigBlockOffset
- );
- ByteBuffer miniBuffer = dataBlock.slice();
- miniBuffer.limit(POIFSConstants.SMALL_BLOCK_SIZE);
- return miniBuffer;
- } catch (IOException e) {
- throw new RuntimeException(e);
- }
+ // Position ourselves, and take a slice
+ dataBlock.position(
+ dataBlock.position() + bigBlockOffset
+ );
+ ByteBuffer miniBuffer = dataBlock.slice();
+ miniBuffer.limit(POIFSConstants.SMALL_BLOCK_SIZE);
+ return miniBuffer;
}
/**
405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Vaadin 6</title>
<link rel="stylesheet" type="text/css" href="demo/css/styles.css" />
<!--[if IE]>
		<link rel="stylesheet" type="text/css" href="demo/css/ie.css" />
		<![endif]-->
</head>
<body>

		<div id="header">
			<h1>Vaadin &ndash; thinking of U and I</h1>
			<div id="version">
				<a href="javascript:history.go(-1);" title="Back to index page">Back</a>
			</div>
		</div> <!-- /header -->

<div id="content">

<p>Version @version@ built on @builddate@.</p>

<h2><a name="overview">Release Notes for Vaadin @version@</a></h2>

<ul>
  <li><a href="#overview">Overview</a></li>
  <li><a href="#upgrading">General Upgrade Notes</a></li>
  <li><a href="#upgrading-tk5">Instructions for Upgrading from IT Mill Toolkit 5</a></li>
  <li><a href="#oophm">Package for the experimental GWT Out-of-Process Hosted Mode</a></li>
  <li><a href="#known-problems">Important known problems in Vaadin @version@</a></li>
  <li><a href="#changelog">Change Log</a></li>
  <li><a href="#requirements">Requirements</a></li>
</ul>

<p>Vaadin @version@ is an update release for Vaadin 6. In addition to various fixes, it
contains a number of significant enhancements.</p>

<ul>
    <li>Widget set definition and component-to-widget mapping has been redesigned</li>
    <ul>
        <li>Reuse of widgets is now much easier, as it is easier to package and use widget
        set JARs and otherwise combine widget sets.</li>

        <li>A widget set definition class is no longer used. Java code needed for widget
        instantiation and client-server mapping is automatically generated by GWT
        compiler. For a common Vaadin user, Widgetset is now only a GWT module definition
        file (.gwt.xml).</li>
  
        <li>Server-side component is mapped to a client-side widget with an annotation:
            <pre>@ClientWidget(com.vaadin.demo.colorpicker.gwt.client.ui.VColorPicker.class)
public class ColorPicker extends AbstractField {</pre>
        </li>

        <li>The <tt>getTag()</tt> method is no longer needed</tt></li>

        <li>The Vaadin Plugin for Eclipse can create new widget stubs, define the mapping,
        and create widget set definition files (<tt>.gwt.xml</tt>).</li>

        <li>See <tt>WebContent/docs/example-source/build-widgetset.xml</tt> for an example
        on how you can compile widget sets and widget set JARs with Ant.</li>

        <li>A widget set builder allows automatic generation and maintenance of widget
        configurations, making use of widget set JARs easier.</li>

        <li>See <a href="#widgetupgrade">notes below</a> for upgrading widget set
        definitions and widget mappings from earlier version of Vaadin 6.</li>
    </ul>
    <li>Other enhancements to development of new components</li>
    <ul>
	    <li>On the server-side:</li>
	    <ul>
	        <li>Listeners for custom client side events are now easier to implement with
	        <tt>ReflectTools.findMethod()</tt> and <tt>addListener(String eventIdentifier,
	        Class&lt;?&gt; eventType, Object target, Method method)</tt> methods. The latter
		    automatically informs the client-side that a listener is registered on server side)</li>
		</ul>
        <li>On the client-side:</li>
        <ul>
            <li>Ability to check if a listener is registered on the server-side</li>
            <li>Typed arrays and maps can now be sent to server with <tt>updateVariable()</tt>
				<ul>
				<li><b>Note!</b> This change affects existing custom components that send object arrays to the server. 
				Previously Object[] sent from client to server were converted into String[] on server side. 
				This invalid behavior is now fixed and an Object[] sent from client side is an
				Object[] on server side.</li>
				</ul>
            </li>
        </ul>
    </ul>
    <li>Portlet 2.0 (JSR 268) support</li>
    <ul>
    	<li>A separate servlet for each portlet is no longer needed. 
    	 (no separate servlet, no session problems, portlet-to-portlet communication, etc)</li>
    </ul> 
    <li>OSGi support</li>
    <ul>
    	<li>Vaadin now works as a OSGi bundle.</li>
    </ul>
    <li>Enhanced sorting of <b>IndexedContainer</b> and <b>BeanItemContainer</b></li>
    <ul>
	       <li>Custom sort methods can now be used to sort container contents.</li>
	</ul>
    <li>Improved event support</li>
    <ul>
    	<li>A generic method for sending client side events to the server only when a listener has been registered for the event</li>
    	<li>All included layouts (<b>AbsoluteLayout</b>,<b>CssLayout</b>,<b>HorizontalLayout</b>,<b>GridLayout</b>,<b>VerticalLayout</b>) support click listeners.</li>
    	<li>Click events for <b>Panel</b> and <b>Embedded</b>.</li>
        <li>Focus and blur events for <b>DateField</b>, <b>TextField</b>, and <b>Select</b></li>
    </ul>
    <li>JavaScript execution with <tt>Window.excecuteJavaScript()</tt></li>
    <ul>
	    <li>Using excecuteJavaScript() you can execute javascript directly from the server side. This can be used e.g. for integration with other systems or implementing print functionality (window.print()). </li>
    </ul>
    <li>Additional Maven archetypes</li>
    <ul>
        <li><b>vaadin-archetype-clean</b> with a dependency to Vaadin and a minimal application skeleton, no client side widgets</li>
        <li><b>vaadin-archetype-widget</b> for creation of Vaadin 6.2 widget packages</li>
        <li><b>vaadin-archetype-sample</b> has been updated for Vaadin 6.2 - use version 1.0.x for earlier Vaadin versions</li>
    </ul>
    <li>Maven Vaadin plugin</li>
    <ul>
        <li><b>vaadin-maven-plugin</b> can automatically update Vaadin 6.2 widgetsets based on Maven dependencies using the goal <tt>update-widgetset</tt></li>
    </ul>
    <li><b>HttpServletRequestListener</b></li>
    <ul>
    	<li>Similar to <b>TransactionListener</b> but only related to a single Application. Called before and after every servlet request and provides access to <b>HttpServletRequest</b> and <b>HttpServletResponse</b>.</li>
    </ul>
    <li><b>PortletRequestListener</b>
    <ul>
    	<li>Similar to <b>HttpServletRequestListener</b> but for portlets. Called before and after every portlet request and provides access to <b>PortletRequest</b> and <b>PortletResponse</b>.</li>
    </ul>
    <li>Enhancements to various components:</li>
    <ul>
	  <li><b>Window</b>: Additional control over a sub window: close and drag prevention.</li>
      <li><b>Tree</b>: Item style generator enabling styling of inidividual tree items. Rendering optimizations.</li> 
      <li><b>Tabsheet</b>: Tabs can be marked as closable. The new <b>CloseHandler</b> can be used to ask for confirmation, prevent closing etc.</li>
      <li><b>SplitPanel</b>: Double clicking the splitter sends an event which can be handled on server-side.</li>
      <li><b>MenuBar</b>: Many enhancements: Individual items can be styled, support for separators, disabling of items, visibility of items.</li>
      <li><b>DateField</b>: Support for lenient/non-lenient mode. A <b>DateField</b> is now by default in non-lenient mode (only accepts valid dates). </li>
    </ul>
    <li>Automatic integration tests</li>
    <ul>
    	<li>All Vaadin builds are now automatically tested on all supported servers.</li>
    </ul>
    <li>Dozens of other small enhancements and bug fixes</li> 
</ul>

<p>Problem fixes and enhancements planned for upcoming releases can be found from the <a
href="http://dev.vaadin.com/roadmap">Vaadin Roadmap</a> in Vaadin Trac.</p>

<p>As always, when upgrading from an earlier version, you should recompile any custom
widget sets and refresh your project in Eclipse. If you are upgrading from earlier than
6.2.0, notice that Vaadin 6.2 uses GWT 1.7.0 (included in the installation package). See
<a href="#upgrading">General Upgrade Notes</a> for more details on upgrading.</p>

<h2><a name="widgetupgrade">Upgrading from an Earlier Vaadin 6 version</a></h2>

<p>
The widgetsets have been renewed and simplified in Vaadin 6.2 as described above. Existing projects 
where custom widgets (a custom widgetset) are used must be migrated when upgrading to Vaadin 6.2. 
Projects where the default widgetset is used do not need migration. For most
projects this should be a quite painless upgrade.
</p>
<p>
For applications where custom widgets are used (also applicable to widget projects):
<ul>
<li>Remove the <i>getTag()</i> method from all components and replace it with a @ClientWidget(VClientSideWidget.class) annotation. Tag names are no longer used to map the server-side and client-side part of the component. This is done automatically using the @ClientWidget annotation.</li>
<li>Remove the <tt>WidgetSet.java</tt> file. This file is no longer needed as the mapping between server and client side is done automatically using @ClientWidget.</li>
</ul>
</p>
<p>
If you are using widgets from another project (typically in a separate JAR file):
<ul>
<li>Acquire a new JAR which is compatible with Vaadin 6.2 and add it to WEB-INF/lib. The widgetset compiler will automatically include the jar in your widgetset.gwt.xml during compilation if using Eclipse. For Ant/Maven you need to specify the location of the widgetset jars that you want to include in the application widgetset.</li>
</ul>
</p>
<p>
If you package a widget set as a JAR for use in other projects:
<ul>
	<li>Replace getTag() with @ClientWidget and remove the <tt>WidgetSet.java</tt> as described above.</li>
    <li>Add a &quot;Vaadin-Widgetsets: &lt;fully qualified name of widgetset&gt;&quot; (e.g. &quot;Vaadin-Widgetsets: com.example.widgetset.mywidgetset&quot;) row to META-INF/MANIFEST.MF in the jar file. This enables the widgetset compiler to automatically detect and include the widgetset in other projects.</li>
</ul>
</p>

<h2><a name="upgrading">General Upgrade Notes</a></h2>

<p>When upgrading from an earlier version of the Vaadin library, you should always do the following:</p>

<ol>
  <li>Install the new Vaadin JAR to your project</li>
  <ul>
    <li>If using the Vaadin Plugin in Eclipse, download and select the new version in project preferences.</li>
  </ul>
  <li>Install new GWT JARs if the GWT version has changed</li>
  <ul>
    <li>The Eclipse plugin will automatically download the new GWT and update launch configurations and the project build path when you update the Vaadin version.</li>
  </ul>  
  <li>If you have custom widget sets, recompile them with the new Vaadin library using the included GWT compiler</li>
  <li>If using the Eclipse IDE:
  <ol type="a">
    <li>Refresh the Eclipse project by selecting the project folder and pressing <strong>F5</strong></li>
    <li>Restart the application server</li>
  </ol>
</ol>

<p>Using the Vaadin project facet in the Eclipse IDE does the steps 1 and 2 automatically.</p>

<h2><a name="upgrading-tk5">Instructions for Upgrading from IT Mill Toolkit 5</a></h2>

<p>While the Vaadin 6 API is otherwise mostly backward-compatible with IT Mill Toolkit 5.4, the
change of the product name has made it necessary to reflect it in the Java package names,
some name prefixes, and some other details.</p>

<h3>Server-side Upgrade Instructions</h3>

<ul>
  <li>Java Package names have changed:</li>
  <ul>
    <li>In all Java files using IT Mill Toolkit, rename package prefix <tt>com.itmill.toolkit</tt> &#x2192; <tt>com.vaadin</tt></li>
    <li>You also need to update the <tt>web.xml</tt> deployment descriptor:</li>
    <ul>
      <li>The servlet class is now <strong>com.vaadin.terminal.gwt.server.ApplicationServlet</strong>.</li>
    </ul>
  </ul>

  <li>Changes in themes:
  <ul>
    <li>Rename <tt>WebContent/ITMILL</tt> &#x2192; <tt>WebContent/VAADIN</tt></li>
    <ul>
      <li>If you have extracted the built-in themes and widgetsets in IT Mill Toolkit JAR to the folder to have them served statically by the server, remove the old content and re-extract from Vaadin JAR.</li>
      <li>This may require changes to build scripts for custom widgetsets, as well as to any code that relies on the old naming (it is discouraged but possible).</li>
    </ul>
    <li>The new "<tt>reindeer</tt>" theme is the default theme in Vaadin; the old
    "<tt>default</tt>" theme in IT Mill Toolkit 5 has been renamed as "<tt>runo</tt>"</li>
    <ul>
      <li>There is no longer a theme with name "<tt>default</tt>"</li>
      <li>In your custom theme, replace:
         <table><tr><td></td><td><tt>@import "../default/styles.css";</tt></td></tr>
         <tr><td align="right">&#x2192;</td><td><tt>@import "../reindeer/styles.css";</tt></td><td>if you wish to use the new default theme,</td></tr>
         <tr><td align="right">or &#x2192;</td><td><tt>@import "../runo/styles.css";</tt></td><td>if you wish to use the old default theme.</td></tr></table></li>
      <li>Use the new default theme with <tt>setTheme("reindeer")</tt> and the old one with <tt>setTheme("runo")</tt>.</li>
    </ul>
    <li>CSS class names now start with "<tt>v-</tt>" prefix instead of "<tt>i-</tt>"</li>
    <ul>
      <li>Search and replace "<tt>.i-</tt>" &#x2192; "<tt>.v-</tt>" in custom themes </li>
    </ul>
  </ul>

  <li>Embedding Vaadin applications in web pages:</li>
  <ul>
    <li>The name of the JavaScript variable used for launching applications has changed from "<tt>itmill.toolkitConfigurations</tt>" &#x2192; "<tt>vaadin.vaadinConfigurations</tt>"</li>
  </ul>

  <li>Other changes in naming:</li>
  <ul>
    <li>Rename references to <tt>translateToolkitUri()</tt> &#x2192; <tt>translateVaadinUri()</tt> method in <strong>ApplicationConnection</strong> class.
  </ul>

</ul>

<h3>Client-side Upgrade Instructions</h3>

<p>The following changes are relevant only if you have developed or integrated custom
client-side widgets with Google Web Toolkit (GWT).</p>

<ul>
  <li>GWT 1.7 is required for compiling custom widgets (optional)</li>
  <ul>
    <li>You need to upgrade GWT</li>
    <li>The GWT Compiler class name has changed:</li>
    <ul>
      <li>Replace <tt>com.google.gwt.dev.GWTCompiler</tt> &#x2192; <tt>com.google.gwt.dev.Compiler</tt> in your widget set build script (Ant) or launch configuration (Eclipse).</li>
      <li>Replace the output directory argument for the compiler with the new WAR output argument: <tt>-out</tt> &#x2192; <tt>-war</tt>. The directory parameter for the argument remains unchanged.</li>
    </ul>
  </ul>

  <li>The "<strong>I</strong>" (IT Mill) prefix in client-side widget classes has been changed to "<strong>V</strong>" (Vaadin), for example: <strong>IButton</strong> &#x2192; <strong>VButton</strong>.</li>
  <li>Rename <strong>IToolkitOverlay</strong> &#x2192; <strong>VOverlay</strong>
</ul>

<h2><a name="gae">Notes and Limitations for Google App Engine</a></h2>

<p>The following instructions and limitations apply when you run a Vaadin application
under the Google App Engine.</p>

<ul>
  <li><p>Applications must use <b>GAEApplicationServlet</b> instead of
  <b>ApplicationServlet</b> in <tt>web.xml</tt>.</p></li>

  <li><p>Session support must be enabled in <tt>appengine-web.xml</tt>:</p>

      <pre>    &lt;sessions-enabled&gt;true&lt;/sessions-enabled&gt;</pre>
  </li>

  <li><p>Avoid using the session for storage, usual App Engine limitations apply (no
  synchronization, i.e, unreliable).</p></li>

  <li><p>Vaadin uses memcache for mutex, the key is of the form
  <tt>_vmutex&lt;sessionid&gt;</tt>.</p></li>
  
  <li><p>The Vaadin <b>WebApplicationContext</b> class is serialized separately into memcache
  and datastore; the memcache key is <tt>_vac&lt;sessionid&gt;</tt> and the datastore
  entity kind is <tt>_vac</tt> with identifiers of the type <tt>_vac&lt;sessionid&gt;</tt>.</p></li>
  
  <li><p>DO NOT update application state when serving an <b>ApplicationResource</b> (e.g <b>ClassResource</b>.<i>getStream()</i>).</p></li>

  <li><p>AVOID (or be very careful when) updating application state in a
  <b>TransactionListener</b> or a <b>HttpServletRequestListener</b> - they are called even when the
  application is not locked and won't be serialized (e.g <b>ApplicationResource</b>), and
  changes can thus go missing (it should be safe to update things that can be safely discarded
  later - i.e valid only for the current request)</p></li>

  <li><p>The application remains locked during uploads - a progress bar is not possible</p></li>
</ul>

<h2><a name="oophm">Package for the experimental GWT Out-of-Process Hosted Mode</a></h2>

<p>We provide a separate (platform independent) installation package
(<tt>vaadin-oophm-@version@.tar.gz</tt>) for the
experimental Out of Process Hosted Mode (OOPHM) of GWT, which allows
debugging client-side code in GWT Hosted Mode with a regular web
browser. Using the OOPHM requires installing a browser plugin (available
for Mozilla Firefox, IE, and WebKit). See the manual section on OOPHM
for more details.</p>

<p>The Linux version of GWT Hosted Mode Browser is no longer compatible with Vaadin (<a
href="http://dev.vaadin.com/ticket/2299">#2299</a>), so the OOPHM is the only option for
debugging in hosted mode in Linux.</p>

<p>The GWT 1.7.0 version included in the OOPHM package is a custom
build from GWT trunk and is not 100% compatible with the official GWT
1.7.0 release (<a href="http://dev.vaadin.com/ticket/3270">#3270</a>).</p>

<p>As the OOPHM package is experimental and because there are
differences between the version packaged with Vaadin and the official
version of GWT, you should use it only for debugging purposes during
development. For production use, and generally when you absolutely do
not need to debug using OOPHM, you should compile your custom widget
sets with the regular Vaadin package for your platform.</p>

<h2><a name="known-problems">Important known problems in Vaadin @version@</a></h2>

<ul>
	<li><p><a href="http://dev.vaadin.com/ticket/1155">#1155</a>:
	Uncompressing the installation package fails in Windows if using the
	default Zip uncompression. Uncompression gives (in Windows Vista) an
	error message about too long filenames, and a more obscure message in
	other versions of Windows. Workaround: use <a
		href="http://www.7-zip.org/">7-Zip</a> or some other good unzip
	program for Windows.</p></li>

	<li><p><a href="http://dev.vaadin.com/ticket/2299">#2299</a>: The
	Hosted Mode Browser does not work in Linux for debugging client-side
	GWT code. You need to install the experimental OOPHM package instead
	(see above) for development. For production, you should use the regular
	package for Linux.</p></li>
	
	<li>
	<p><a href="http://dev.vaadin.com/ticket/3716">#3716</a>: OOPHM
	Hosted Mode browser does not work in Firefox 3.0 with <tt>vaadin-oophm-6.x.x/gwt/plugins/firefox3/oophm-xpcom-ff3.xpi</tt>.
	As a workaround, the old <tt>oophm.xpi</tt> plugin provided in the IT
	Mill Toolkit 5.3.0 package works just fine with Vaadin OOPHM 6.1.4 and
	later.</p>
	</li>
</ul>

<p>For other known problems, see open tickets at developer site <a
	href="http://dev.vaadin.com/">dev.vaadin.com</a>.</p>

<h2><a name="changelog">Change Log</a></h2>

<p>The following closed issues have been included in this release:</p>
	
<ul>
  <li><a href="http://dev.vaadin.com/ticket/2118">#2118</a>: Sample: ProgressIndicator</li>
  <li><a href="http://dev.vaadin.com/ticket/2715">#2715</a>: Sample: Slider</li>
  <li><a href="http://dev.vaadin.com/ticket/2854">#2854</a>: Paintable should be an appropriate variable type</li>
  <li><a href="http://dev.vaadin.com/ticket/2918">#2918</a>: Same application is loaded in different portlet instances</li>
  <li><a href="http://dev.vaadin.com/ticket/3070">#3070</a>: Tree's Items should be easily styled</li>
  <li><a href="http://dev.vaadin.com/ticket/3088">#3088</a>: ComboBox, If only one item is listed, pressing Enter should choose it, not discard</li>
  <li><a href="http://dev.vaadin.com/ticket/3117">#3117</a>: Portlet 2.0 (JSR-286) support</li>
  <li><a href="http://dev.vaadin.com/ticket/3120">#3120</a>: Window.setClosable(boolean)</li>
  <li><a href="http://dev.vaadin.com/ticket/3133">#3133</a>: Window draggability disabling feature</li>
  <li><a href="http://dev.vaadin.com/ticket/3234">#3234</a>: Component Event Listener Framework for all widgets/components</li>
  <li><a href="http://dev.vaadin.com/ticket/3259">#3259</a>: Removing all action handlers</li>
  <li><a href="http://dev.vaadin.com/ticket/3277">#3277</a>: MenuBar.MenuItem could have setVisible() method</li>
  <li><a href="http://dev.vaadin.com/ticket/3338">#3338</a>: Create a Maven archetype for creating a widget project</li>
  <li><a href="http://dev.vaadin.com/ticket/3367">#3367</a>: It should be possible to specify parameters for embedded flash</li>
  <li><a href="http://dev.vaadin.com/ticket/3386">#3386</a>: Add JUnit tests for ensuring compatibility with all supported application servers and portals</li>
  <li><a href="http://dev.vaadin.com/ticket/3416">#3416</a>: Theme should contain Vaadin version</li>
  <li><a href="http://dev.vaadin.com/ticket/3433">#3433</a>: BeanItemContainer's sort is not overridable</li>
  <li><a href="http://dev.vaadin.com/ticket/3434">#3434</a>: IndexedContainer's compare is not overridable</li>
  <li><a href="http://dev.vaadin.com/ticket/3479">#3479</a>: Embedded applications should not change the page title</li>
  <li><a href="http://dev.vaadin.com/ticket/3483">#3483</a>: PopupView rendering style inside a layout is unspecified</li>
  <li><a href="http://dev.vaadin.com/ticket/3484">#3484</a>: Sample: OptionGroup</li>
  <li><a href="http://dev.vaadin.com/ticket/3498">#3498</a>: Window doesn't get focus correctly</li>
  <li><a href="http://dev.vaadin.com/ticket/3499">#3499</a>: PopupView CSS style is broken</li>
  <li><a href="http://dev.vaadin.com/ticket/3515">#3515</a>: Sample: NativeButton</li>
  <li><a href="http://dev.vaadin.com/ticket/3518">#3518</a>: Sample: Menubar</li>
  <li><a href="http://dev.vaadin.com/ticket/3526">#3526</a>: SplitPanel collapse and expand with doubleclick</li>
  <li><a href="http://dev.vaadin.com/ticket/3541">#3541</a>: VerticalLayout//HorizontalLayout/GridLayout/AbsoluteLayout/CSSLayout should support click events</li>
  <li><a href="http://dev.vaadin.com/ticket/3544">#3544</a>: Implement support for focus/blur events in TextField</li>
  <li><a href="http://dev.vaadin.com/ticket/3553">#3553</a>: Change nightly and develpoment version numbering</li>
  <li><a href="http://dev.vaadin.com/ticket/3605">#3605</a>: Patch to avoid concurrent modification exceptions in EventRouter</li>
  <li><a href="http://dev.vaadin.com/ticket/3631">#3631</a>: LoginForm login button is too wide in IE6/IE7</li>
  <li><a href="http://dev.vaadin.com/ticket/3640">#3640</a>: Update build-widgetsets.xml and verify it works</li>
  <li><a href="http://dev.vaadin.com/ticket/3641">#3641</a>: Document the way widgets and widgetsets are created and used in Vaadin 6.2</li>
  <li><a href="http://dev.vaadin.com/ticket/3654">#3654</a>: Decide on final PaintTarget.paintReference(Paintable, String) API</li>
  <li><a href="http://dev.vaadin.com/ticket/3655">#3655</a>: ApplicationRunner logs unnecessary java.lang.ClassNotFoundExceptions</li>
  <li><a href="http://dev.vaadin.com/ticket/3683">#3683</a>: TextField.setRows() API needs reworking</li>
  <li><a href="http://dev.vaadin.com/ticket/3688">#3688</a>: ContainerHierarchicalWrapper should stay ordered by the wrapped container</li>
  <li><a href="http://dev.vaadin.com/ticket/3715">#3715</a>: Sub windows are shown as VView in debug console</li>
  <li><a href="http://dev.vaadin.com/ticket/3717">#3717</a>: Parameterize BeanItem and ComponentContainer.getComponentIterator</li>
  <li><a href="http://dev.vaadin.com/ticket/3731">#3731</a>: Implement a simpler alternative to ApplicationContext.TransactionListener</li>
  <li><a href="http://dev.vaadin.com/ticket/3740">#3740</a>: Tabsheet no longer fully serializable, doesn't work in GAE</li>
  <li><a href="http://dev.vaadin.com/ticket/3754">#3754</a>: Add data.util.TextFileProperty</li>
  <li><a href="http://dev.vaadin.com/ticket/3755">#3755</a>: Select throws IllegalArgumentException when browsing pages quickly</li>
  <li><a href="http://dev.vaadin.com/ticket/3756">#3756</a>: Add support for passing a typed Object[] from client to server</li>
  <li><a href="http://dev.vaadin.com/ticket/3757">#3757</a>: Add support for passing a typed map from client to server</li>
  <li><a href="http://dev.vaadin.com/ticket/3759">#3759</a>: Cannot scroll to the last tab in a Tabsheet</li>
  <li><a href="http://dev.vaadin.com/ticket/3760">#3760</a>: Scrollbars are missing in Safari/Chrome</li>
  <li><a href="http://dev.vaadin.com/ticket/3762">#3762</a>: Dependency to javax/portlet/PortletRequest, won't work with GAE</li>
  <li><a href="http://dev.vaadin.com/ticket/3772">#3772</a>: Add notifier interfaces for focus and blur events</li>
  <li><a href="http://dev.vaadin.com/ticket/3775">#3775</a>: Optimize Tree rendering</li>
  <li><a href="http://dev.vaadin.com/ticket/3776">#3776</a>: Server side junit test cases should be run automatically on each build</li>
  <li><a href="http://dev.vaadin.com/ticket/3782">#3782</a>: ClassCastException when adding Window via addComponent</li>
  <li><a href="http://dev.vaadin.com/ticket/3783">#3783</a>: ClickListener in Panel does not work</li>
  <li><a href="http://dev.vaadin.com/ticket/3784">#3784</a>: Panel.setScrollTop does not work with invalid values</li>
  <li><a href="http://dev.vaadin.com/ticket/3785">#3785</a>: Style names for MenuBar.MenuItem</li>
  <li><a href="http://dev.vaadin.com/ticket/3786">#3786</a>: Add focus and blur events to Select/VFilterSelect and DateField/VTextualDate</li>
  <li><a href="http://dev.vaadin.com/ticket/3787">#3787</a>: validator is not called when field is empty and not required</li>
  <li><a href="http://dev.vaadin.com/ticket/3788">#3788</a>: Typo in setWriteThrough's parameter name</li>
  <li><a href="http://dev.vaadin.com/ticket/3807">#3807</a>: LoginForm doesn't work when multiple windows are used for the same application</li>
  <li><a href="http://dev.vaadin.com/ticket/3809">#3809</a>: Sample: Immediate upload</li>
  <li><a href="http://dev.vaadin.com/ticket/3817">#3817</a>: Upload: Browsers send different filenames</li>
  <li><a href="http://dev.vaadin.com/ticket/3819">#3819</a>: Document that widgetset compiler loads classes</li>
  <li><a href="http://dev.vaadin.com/ticket/3820">#3820</a>: DefaultItemSorter is not serializable</li>
  <li><a href="http://dev.vaadin.com/ticket/3824">#3824</a>: Make sure build generates theme version</li>
  <li><a href="http://dev.vaadin.com/ticket/3825">#3825</a>: AbstractComponentThrows NPE when both visible and enable is set to false</li>
  <li><a href="http://dev.vaadin.com/ticket/3828">#3828</a>: TextField inside a layout inside a Table is clipped</li>
  <li><a href="http://dev.vaadin.com/ticket/3830">#3830</a>: Group widgetset builder output</li>
  <li><a href="http://dev.vaadin.com/ticket/3831">#3831</a>: Show better information about what widget is missing</li>
  <li><a href="http://dev.vaadin.com/ticket/3835">#3835</a>: "Portlet 2.0 does not support the ""style"" parameter"</li>
  <li><a href="http://dev.vaadin.com/ticket/3842">#3842</a>: Make widgetset generation console output parameterized</li>
  <li><a href="http://dev.vaadin.com/ticket/3843">#3843</a>: Form caption is blue in IE</li>
  <li><a href="http://dev.vaadin.com/ticket/3845">#3845</a>: Twincol select buttons are missing right border in IE6</li>
  <li><a href="http://dev.vaadin.com/ticket/3848">#3848</a>: Rich text sample is cut in IE</li>
  <li><a href="http://dev.vaadin.com/ticket/3849">#3849</a>: Undefined wide menubar is 100% wide in IE6</li>
  <li><a href="http://dev.vaadin.com/ticket/3850">#3850</a>: Submenu icon is placed outside the menu in IE7</li>
  <li><a href="http://dev.vaadin.com/ticket/3853">#3853</a>: Sampler fragments should be backwards compatible</li>
  <li><a href="http://dev.vaadin.com/ticket/3856">#3856</a>: Add javadoc to UIDL class</li>
  <li><a href="http://dev.vaadin.com/ticket/3859">#3859</a>: Application contains mysterious deprecated methods</li>
  <li><a href="http://dev.vaadin.com/ticket/3862">#3862</a>: JSApi sample uses threads</li>
  <li><a href="http://dev.vaadin.com/ticket/3872">#3872</a>: Remove reservr from demo page</li>
  <li><a href="http://dev.vaadin.com/ticket/3874">#3874</a>: Two click events is sent for a middle click in a layout</li>
  <li><a href="http://dev.vaadin.com/ticket/3879">#3879</a>: Removing portlet leaks memory</li>
</ul>	

<h2><a name="requirements">Requirements</a></h2>

<p>Vaadin is available for the following operating systems:</p>

<ul>
	<li>Windows (see the Zip installation notice above)</li>

	<li>Linux</li>

	<li>Mac OS X Tiger (mac) or Leopard (leopard)</li>

	<li>Other UNIX operating systems, such as Sun Solaris, using the installation package
	for Linux.</li>
</ul>

<p>Vaadin supports Java Servlet API 2.3 and later versions and should work with
any Java application server that conforms to the standard. It supports the following
application servers:</p>

<ul>
    <li>Apache Tomcat, version 4.1 or later</li>
    <li>BEA WebLogic&reg; Server, version 9.2 or later</li>
    <li>IBM WebSphere&reg; Application Server, version 6.1 or later</li>
    <li>JBoss Application Server, version 3.2.8 or later</li>
    <li>Jetty, version 5 or later</li>
    <li>Glassfish, version 2 or later</li>
</ul>

<p>Vaadin supports the following browsers for using the applications made with
it:</p>

<ul>
	<li>Mozilla Firefox 3</li>
	<li>Internet Explorer releases 6, 7, and 8</li>
	<li>Safari 3 and 4</li>
	<li>Opera 10</li>
</ul>

<p>The support for browsers follows the support by GWT. The browsers are supported on both
Windows and Mac, if available. Firefox is supported also on Linux (Opera 10a1 works also
on Linux). There may be differences between the
exact versions of the supported browsers that may cause incompatibility with applications
made with Vaadin.</p>

<p>The following browsers are not supported but have been found to
work to a large degree:</p>

<ul>
	<li>Safari 2, and 4 beta</li>
	<li>Firefox 2</li>
    <li>Google Chrome 1.0.x (available only for Windows)</li>
	<li>iPhone (firmware 2.2)</li>
    <li>Midori (0.1.2)</li>
	<li>Epiphany (2.22.3), Galeon, and other Gecko-based browsers. Also WebKit-based Epiphany (2.22.3) works.</li>
    <li>Konqueror 4.2 (3.5.x does not work)</li>
    <li>Nokia Internet Tablet N800 and N810 (ITOS 2008, Opera-based browser).</li>
</ul>

<p>The reported versions are those that have been tested, though other versions may work
as well.</p>

<p>Nokia E-series phones, such as E90, have been known to work with older versions, but
not with Vaadin 6. Links, Lynx, and other text-based browsers do not
work.</p>

</div> <!-- /content-->


<div id="footer">
	<span class="slogan">Vaadin &ndash; thinking of U and I<span>
</div> <!-- /footer -->

</body>
</html>