You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by bd...@apache.org on 2009/08/13 11:56:37 UTC

svn commit: r803824 - in /sling/trunk/contrib/explorers/gwt: README.txt pom.xml

Author: bdelacretaz
Date: Thu Aug 13 09:56:37 2009
New Revision: 803824

URL: http://svn.apache.org/viewvc?rev=803824&view=rev
Log:
SLING-990 - fix package imports/exports as suggested by Juanjo, thanks!

Modified:
    sling/trunk/contrib/explorers/gwt/README.txt
    sling/trunk/contrib/explorers/gwt/pom.xml

Modified: sling/trunk/contrib/explorers/gwt/README.txt
URL: http://svn.apache.org/viewvc/sling/trunk/contrib/explorers/gwt/README.txt?rev=803824&r1=803823&r2=803824&view=diff
==============================================================================
--- sling/trunk/contrib/explorers/gwt/README.txt (original)
+++ sling/trunk/contrib/explorers/gwt/README.txt Thu Aug 13 09:56:37 2009
@@ -60,3 +60,8 @@
 
 See the Subversion documentation for other source control features.
 
+Running the Explorer
+====================
+After installing the Explorer, http://localhost:8080/apps/explorer/index.html should display
+its home page, which says "Sling Explorer" at the top and displays a tree with a Resources
+root.

Modified: sling/trunk/contrib/explorers/gwt/pom.xml
URL: http://svn.apache.org/viewvc/sling/trunk/contrib/explorers/gwt/pom.xml?rev=803824&r1=803823&r2=803824&view=diff
==============================================================================
--- sling/trunk/contrib/explorers/gwt/pom.xml (original)
+++ sling/trunk/contrib/explorers/gwt/pom.xml Thu Aug 13 09:56:37 2009
@@ -66,9 +66,11 @@
                 <extensions>true</extensions>
                 <configuration>
                     <instructions>
+                        <Export-Package>!*</Export-Package>
+                        <Private-Package>!*</Private-Package>
                         <Sling-Initial-Content>
-							SLING-INF/content/apps/explorer;overwrite:=true;uninstall=true;path:=/apps/explorer,
-							SLING-INF/content/apps/sling/servlet/default/explorer;overwrite:=true;uninstall=true;path:=/apps/sling/servlet/default/explorer
+			    SLING-INF/content/apps/explorer;overwrite:=true;uninstall=true;path:=/apps/explorer,
+			    SLING-INF/content/apps/sling/servlet/default/explorer;overwrite:=true;uninstall=true;path:=/apps/sling/servlet/default/explorer
                         </Sling-Initial-Content>
                     </instructions>
                 </configuration>