|
From: <ta...@us...> - 2008-07-15 12:21:59
|
Revision: 4608
http://giews.svn.sourceforge.net/giews/?rev=4608&view=rev
Author: tanzila
Date: 2008-07-15 05:22:05 -0700 (Tue, 15 Jul 2008)
Log Message:
-----------
Fixes for Windows
Added Paths:
-----------
trunk/fenix-gwt-dev/windowsRC1/
trunk/fenix-gwt-dev/windowsRC1/applicationCreator.cmd
trunk/fenix-gwt-dev/windowsRC1/benchmarkViewer.cmd
trunk/fenix-gwt-dev/windowsRC1/gwt-benchmark-viewer.jar
trunk/fenix-gwt-dev/windowsRC1/gwt-dev-windows.jar
trunk/fenix-gwt-dev/windowsRC1/gwt-ll.dll
trunk/fenix-gwt-dev/windowsRC1/gwt-module.dtd
trunk/fenix-gwt-dev/windowsRC1/gwt-servlet.jar
trunk/fenix-gwt-dev/windowsRC1/gwt-user.jar
trunk/fenix-gwt-dev/windowsRC1/i18nCreator.cmd
trunk/fenix-gwt-dev/windowsRC1/junitCreator.cmd
trunk/fenix-gwt-dev/windowsRC1/projectCreator.cmd
trunk/fenix-gwt-dev/windowsRC1/swt-win32-3235.dll
Removed Paths:
-------------
trunk/fenix-gwt-dev/windows/gwt-user-RC1.jar
Deleted: trunk/fenix-gwt-dev/windows/gwt-user-RC1.jar
===================================================================
(Binary files differ)
Added: trunk/fenix-gwt-dev/windowsRC1/applicationCreator.cmd
===================================================================
--- trunk/fenix-gwt-dev/windowsRC1/applicationCreator.cmd (rev 0)
+++ trunk/fenix-gwt-dev/windowsRC1/applicationCreator.cmd 2008-07-15 12:22:05 UTC (rev 4608)
@@ -0,0 +1 @@
+@java -cp "%~dp0\gwt-user.jar;%~dp0\gwt-dev-windows.jar" com.google.gwt.user.tools.ApplicationCreator %*
Added: trunk/fenix-gwt-dev/windowsRC1/benchmarkViewer.cmd
===================================================================
--- trunk/fenix-gwt-dev/windowsRC1/benchmarkViewer.cmd (rev 0)
+++ trunk/fenix-gwt-dev/windowsRC1/benchmarkViewer.cmd 2008-07-15 12:22:05 UTC (rev 4608)
@@ -0,0 +1 @@
+@java -Dcom.google.gwt.junit.reportPath="%1" -cp "%~dp0/gwt-user.jar;%~dp0/gwt-dev-windows.jar;%~dp0/gwt-benchmark-viewer.jar" com.google.gwt.dev.GWTShell -port auto com.google.gwt.benchmarks.viewer.ReportViewer/ReportViewer.html?gwt.hybrid;
Added: trunk/fenix-gwt-dev/windowsRC1/gwt-benchmark-viewer.jar
===================================================================
(Binary files differ)
Property changes on: trunk/fenix-gwt-dev/windowsRC1/gwt-benchmark-viewer.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/fenix-gwt-dev/windowsRC1/gwt-dev-windows.jar
===================================================================
(Binary files differ)
Property changes on: trunk/fenix-gwt-dev/windowsRC1/gwt-dev-windows.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/fenix-gwt-dev/windowsRC1/gwt-ll.dll
===================================================================
(Binary files differ)
Property changes on: trunk/fenix-gwt-dev/windowsRC1/gwt-ll.dll
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/fenix-gwt-dev/windowsRC1/gwt-module.dtd
===================================================================
--- trunk/fenix-gwt-dev/windowsRC1/gwt-module.dtd (rev 0)
+++ trunk/fenix-gwt-dev/windowsRC1/gwt-module.dtd 2008-07-15 12:22:05 UTC (rev 4608)
@@ -0,0 +1,161 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- -->
+<!-- Copyright 2007 Google Inc. -->
+<!-- Licensed under the Apache License, Version 2.0 (the "License"); you -->
+<!-- may not use this file except in compliance with the License. You may -->
+<!-- may obtain a copy of the License at -->
+<!-- -->
+<!-- http://www.apache.org/licenses/LICENSE-2.0 -->
+<!-- -->
+<!-- Unless required by applicable law or agreed to in writing, software -->
+<!-- distributed under the License is distributed on an "AS IS" BASIS, -->
+<!-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or -->
+<!-- implied. License for the specific language governing permissions and -->
+<!-- limitations under the License. -->
+
+<!-- The module root element -->
+<!ELEMENT module (inherits | source | public | super-source | entry-point |
+ stylesheet | script | servlet | replace-with | generate-with |
+ define-property | extend-property | set-property | property-provider |
+ define-linker | add-linker)*>
+<!ATTLIST module
+ rename-to CDATA #IMPLIED
+>
+<!-- Inherit the contents of another module -->
+<!ELEMENT inherits EMPTY>
+<!ATTLIST inherits
+ name CDATA #REQUIRED
+>
+<!-- Specify the source path, relative to the classpath location of the module descriptor -->
+<!ELEMENT source (include | exclude)*>
+<!ATTLIST source
+ path CDATA #REQUIRED
+ includes CDATA #IMPLIED
+ excludes CDATA #IMPLIED
+ defaultexclude (yes | no) "yes"
+ casesensitive (true | false) "true"
+>
+<!-- Specify the public resource path, relative to the classpath location of the module descriptor -->
+<!ELEMENT public (include | exclude)*>
+<!ATTLIST public
+ path CDATA #REQUIRED
+ includes CDATA #IMPLIED
+ excludes CDATA #IMPLIED
+ defaultexclude (yes | no) "yes"
+ casesensitive (true | false) "true"
+>
+<!-- Specify a source path that rebases subpackages into the root namespace -->
+<!ELEMENT super-source (include | exclude)*>
+<!ATTLIST super-source
+ path CDATA #REQUIRED
+ includes CDATA #IMPLIED
+ excludes CDATA #IMPLIED
+ defaultexclude (yes | no) "yes"
+ casesensitive (true | false) "true"
+>
+<!ELEMENT include EMPTY>
+<!ATTLIST include
+ name CDATA #REQUIRED
+>
+<!ELEMENT exclude EMPTY>
+<!ATTLIST exclude
+ name CDATA #REQUIRED
+>
+
+<!-- Define a module entry point -->
+<!ELEMENT entry-point EMPTY>
+<!ATTLIST entry-point
+ class CDATA #REQUIRED
+>
+
+<!-- Preload a stylesheet before executing the GWT application -->
+<!ELEMENT stylesheet EMPTY>
+<!ATTLIST stylesheet
+ src CDATA #REQUIRED
+>
+<!-- Preload an external JavaScript file before executing the GWT application -->
+<!ELEMENT script (#PCDATA)>
+<!ATTLIST script
+ src CDATA #REQUIRED
+>
+<!-- Map a named servlet class to a module-relative path in hosted mode -->
+<!ELEMENT servlet EMPTY>
+<!ATTLIST servlet
+ path CDATA #REQUIRED
+ class CDATA #REQUIRED
+>
+
+<!-- Adds a Linker to the compilation process -->
+<!ELEMENT add-linker EMPTY>
+<!-- A comma-separated list of linker names -->
+<!ATTLIST add-linker
+ name CDATA #REQUIRED
+>
+
+<!-- Defines a Linker type to package compiler output -->
+<!ELEMENT define-linker EMPTY>
+<!ATTLIST define-linker
+ class CDATA #REQUIRED
+ name CDATA #REQUIRED
+>
+
+<!-- ^^^ Commonly-used elements ^^^ -->
+<!-- VVV Deferred binding elements VVV -->
+
+<!-- Define a property and allowable values (comma-separated identifiers) -->
+<!ELEMENT define-property EMPTY>
+<!ATTLIST define-property
+ name CDATA #REQUIRED
+ values CDATA #REQUIRED
+>
+<!-- Set the value of a previously-defined property -->
+<!ELEMENT set-property EMPTY>
+<!ATTLIST set-property
+ name CDATA #REQUIRED
+ value CDATA #REQUIRED
+>
+<!-- Add additional allowable values to a property -->
+<!ELEMENT extend-property EMPTY>
+<!ATTLIST extend-property
+ name CDATA #REQUIRED
+ values CDATA #REQUIRED
+>
+<!-- Define a JavaScript fragment that will return the value for the named property at runtime -->
+<!ELEMENT property-provider (#PCDATA)>
+<!ATTLIST property-provider
+ name CDATA #REQUIRED
+>
+<!-- All possible predicates -->
+<!ENTITY % predicates "when-property-is | when-type-assignable | when-type-is | all | any | none">
+<!-- Deferred binding assignment to substitute a named class -->
+<!ELEMENT replace-with (%predicates;)*>
+<!ATTLIST replace-with
+ class CDATA #REQUIRED
+>
+<!-- Deferred binding assignment to substitute a generated class -->
+<!ELEMENT generate-with (%predicates;)*>
+<!ATTLIST generate-with
+ class CDATA #REQUIRED
+>
+<!-- Deferred binding predicate that is true when a named property has a given value-->
+<!ELEMENT when-property-is EMPTY>
+<!ATTLIST when-property-is
+ name CDATA #REQUIRED
+ value CDATA #REQUIRED
+>
+<!-- Deferred binding predicate that is true for types in the type system that are assignable to the specified type -->
+<!ELEMENT when-type-assignable EMPTY>
+<!ATTLIST when-type-assignable
+ class CDATA #REQUIRED
+>
+<!-- Deferred binding predicate that is true for exactly one type in the type system -->
+<!ELEMENT when-type-is EMPTY>
+<!ATTLIST when-type-is
+ class CDATA #REQUIRED
+>
+<!-- Predicate that ANDs all child conditions -->
+<!ELEMENT all (%predicates;)*>
+<!-- Predicate that ORs all child conditions -->
+<!ELEMENT any (%predicates;)*>
+<!-- Predicate that NANDs all child conditions -->
+<!ELEMENT none (%predicates;)*>
Property changes on: trunk/fenix-gwt-dev/windowsRC1/gwt-module.dtd
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Added: trunk/fenix-gwt-dev/windowsRC1/gwt-servlet.jar
===================================================================
(Binary files differ)
Property changes on: trunk/fenix-gwt-dev/windowsRC1/gwt-servlet.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/fenix-gwt-dev/windowsRC1/gwt-user.jar
===================================================================
(Binary files differ)
Property changes on: trunk/fenix-gwt-dev/windowsRC1/gwt-user.jar
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: trunk/fenix-gwt-dev/windowsRC1/i18nCreator.cmd
===================================================================
--- trunk/fenix-gwt-dev/windowsRC1/i18nCreator.cmd (rev 0)
+++ trunk/fenix-gwt-dev/windowsRC1/i18nCreator.cmd 2008-07-15 12:22:05 UTC (rev 4608)
@@ -0,0 +1 @@
+@java -cp "%~dp0\gwt-user.jar;%~dp0\gwt-dev-windows.jar" com.google.gwt.i18n.tools.I18NCreator %*
Added: trunk/fenix-gwt-dev/windowsRC1/junitCreator.cmd
===================================================================
--- trunk/fenix-gwt-dev/windowsRC1/junitCreator.cmd (rev 0)
+++ trunk/fenix-gwt-dev/windowsRC1/junitCreator.cmd 2008-07-15 12:22:05 UTC (rev 4608)
@@ -0,0 +1 @@
+@java -cp "%~dp0\gwt-user.jar;%~dp0\gwt-dev-windows.jar" com.google.gwt.junit.tools.JUnitCreator %*
Added: trunk/fenix-gwt-dev/windowsRC1/projectCreator.cmd
===================================================================
--- trunk/fenix-gwt-dev/windowsRC1/projectCreator.cmd (rev 0)
+++ trunk/fenix-gwt-dev/windowsRC1/projectCreator.cmd 2008-07-15 12:22:05 UTC (rev 4608)
@@ -0,0 +1 @@
+@java -cp "%~dp0\gwt-user.jar;%~dp0\gwt-dev-windows.jar" com.google.gwt.user.tools.ProjectCreator %*
Added: trunk/fenix-gwt-dev/windowsRC1/swt-win32-3235.dll
===================================================================
(Binary files differ)
Property changes on: trunk/fenix-gwt-dev/windowsRC1/swt-win32-3235.dll
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|