You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pivot.apache.org by tv...@apache.org on 2009/03/27 00:13:13 UTC

svn commit: r758916 - in /incubator/pivot/branches/1.1: NOTICE README RELEASE-NOTES web/src/pivot/web/Query.java

Author: tvolkert
Date: Thu Mar 26 23:13:13 2009
New Revision: 758916

URL: http://svn.apache.org/viewvc?rev=758916&view=rev
Log:
Cross-ported final 1.1 changes from trunk

Modified:
    incubator/pivot/branches/1.1/NOTICE
    incubator/pivot/branches/1.1/README
    incubator/pivot/branches/1.1/RELEASE-NOTES
    incubator/pivot/branches/1.1/web/src/pivot/web/Query.java

Modified: incubator/pivot/branches/1.1/NOTICE
URL: http://svn.apache.org/viewvc/incubator/pivot/branches/1.1/NOTICE?rev=758916&r1=758915&r2=758916&view=diff
==============================================================================
--- incubator/pivot/branches/1.1/NOTICE (original)
+++ incubator/pivot/branches/1.1/NOTICE Thu Mar 26 23:13:13 2009
@@ -0,0 +1,5 @@
+Apache Pivot is an effort undergoing incubation at The ASF, sponsored by the Apache Incubator Project Management Committee (PMC).
+
+Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects.
+
+While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has yet to be fully endorsed by the ASF.

Modified: incubator/pivot/branches/1.1/README
URL: http://svn.apache.org/viewvc/incubator/pivot/branches/1.1/README?rev=758916&r1=758915&r2=758916&view=diff
==============================================================================
--- incubator/pivot/branches/1.1/README (original)
+++ incubator/pivot/branches/1.1/README Thu Mar 26 23:13:13 2009
@@ -0,0 +1,17 @@
+Apache Pivot is a platform for building rich internet applications in Java. It combines the enhanced productivity and usability features of a modern RIA toolkit with the robustness of the industry-standard Java platform.
+
+Like most modern development platforms, Pivot provides a comprehensive set of foundation classes that together comprise a "framework". These classes form the building blocks upon which more complex and sophisticated applications can be built. Pivot classes are grouped into the following categories and distributed in their associated libraries:
+
+* Core (pivot-core.jar) - A set of common, non-UI classes.
+
+* WTK (pivot-wtk.jar, pivot-wtk.terra.jar) - Classes for user interface development, including windows, dialogs, buttons, lists, text input, layout, drag and drop, XML markup, etc. 
+
+* Web (pivot-web.jar, pivot-web.server.jar) - Classes to facilitate communicate with and implementation of remote data services.
+
+* Charting (pivot-charts.jar) - Classes for adding interactive charting capabilities to Pivot applications.
+
+* Tools (pivot-tools.jar) - Development tools and utility applications.
+
+To begin developing with Pivot, simply include the necessary libraries on your project classpath.
+
+Pivot requires Java 5 or greater. WTKX support in Java 5 requires StAX 1.2, available from http://stax.codehaus.org. Charting requires JFreeChart 1.0.9 and JCommon 1.0.12, available from http://www.jfree.org. Later releases may also work, but have not been tested.

Modified: incubator/pivot/branches/1.1/RELEASE-NOTES
URL: http://svn.apache.org/viewvc/incubator/pivot/branches/1.1/RELEASE-NOTES?rev=758916&r1=758915&r2=758916&view=diff
==============================================================================
--- incubator/pivot/branches/1.1/RELEASE-NOTES (original)
+++ incubator/pivot/branches/1.1/RELEASE-NOTES Thu Mar 26 23:13:13 2009
@@ -14,3 +14,9 @@
   See the License for the specific language governing permissions and
   limitations under the License.
 ================================================================================
+
+Release notes for Apache Pivot 1.1:
+
+- Though the TextArea component is included in this release, it is not completely functional. It works reliably in a read-only mode, but support for editing is incomplete.
+
+- Stub APIs for vector drawing are also included and are non-functional. Full support for vector graphics will come in a later release.

Modified: incubator/pivot/branches/1.1/web/src/pivot/web/Query.java
URL: http://svn.apache.org/viewvc/incubator/pivot/branches/1.1/web/src/pivot/web/Query.java?rev=758916&r1=758915&r2=758916&view=diff
==============================================================================
--- incubator/pivot/branches/1.1/web/src/pivot/web/Query.java (original)
+++ incubator/pivot/branches/1.1/web/src/pivot/web/Query.java Thu Mar 26 23:13:13 2009
@@ -418,7 +418,9 @@
             }
 
             // Set the request headers
-            connection.setRequestProperty("Content-Type", serializer.getMIMEType(value));
+            if (method == Method.POST || method == Method.PUT) {
+                connection.setRequestProperty("Content-Type", serializer.getMIMEType(value));
+            }
             for (String key : requestProperties) {
                 connection.setRequestProperty(key, requestProperties.get(key));
             }