Return-Path: Delivered-To: apmail-hbase-commits-archive@www.apache.org Received: (qmail 51682 invoked from network); 10 Jun 2010 23:22:30 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 10 Jun 2010 23:22:30 -0000 Received: (qmail 67108 invoked by uid 500); 10 Jun 2010 23:22:30 -0000 Delivered-To: apmail-hbase-commits-archive@hbase.apache.org Received: (qmail 67068 invoked by uid 500); 10 Jun 2010 23:22:29 -0000 Mailing-List: contact commits-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hbase.apache.org Delivered-To: mailing list commits@hbase.apache.org Received: (qmail 67048 invoked by uid 99); 10 Jun 2010 23:22:29 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 10 Jun 2010 23:22:29 +0000 X-ASF-Spam-Status: No, hits=-1767.0 required=10.0 tests=ALL_TRUSTED,AWL X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 10 Jun 2010 23:22:28 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 62AEC2388999; Thu, 10 Jun 2010 23:21:46 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r953495 - in /hbase/trunk: CHANGES.txt bin/hbase pom.xml src/assembly/bin.xml src/main/resources/hbase-webapps/static/hbase_logo_med.gif Date: Thu, 10 Jun 2010 23:21:46 -0000 To: commits@hbase.apache.org From: stack@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100610232146.62AEC2388999@eris.apache.org> Author: stack Date: Thu Jun 10 23:21:45 2010 New Revision: 953495 URL: http://svn.apache.org/viewvc?rev=953495&view=rev Log: HBASE-2703 ui not working in distributed context Added: hbase/trunk/src/main/resources/hbase-webapps/static/hbase_logo_med.gif (with props) Modified: hbase/trunk/CHANGES.txt hbase/trunk/bin/hbase hbase/trunk/pom.xml hbase/trunk/src/assembly/bin.xml Modified: hbase/trunk/CHANGES.txt URL: http://svn.apache.org/viewvc/hbase/trunk/CHANGES.txt?rev=953495&r1=953494&r2=953495&view=diff ============================================================================== --- hbase/trunk/CHANGES.txt (original) +++ hbase/trunk/CHANGES.txt Thu Jun 10 23:21:45 2010 @@ -380,6 +380,7 @@ Release 0.21.0 - Unreleased HBASE-2616 TestHRegion.testWritesWhileGetting flaky on trunk HBASE-2684 TestMasterWrongRS flaky in trunk HBASE-2691 LeaseStillHeldException totally ignored by RS, wrongly named + HBASE-2703 ui not working in distributed context IMPROVEMENTS HBASE-1760 Cleanup TODOs in HTable Modified: hbase/trunk/bin/hbase URL: http://svn.apache.org/viewvc/hbase/trunk/bin/hbase?rev=953495&r1=953494&r2=953495&view=diff ============================================================================== --- hbase/trunk/bin/hbase (original) +++ hbase/trunk/bin/hbase Thu Jun 10 23:21:45 2010 @@ -136,19 +136,6 @@ add_maven_test_classes_to_classpath() { fi } -add_maven_target_dir_to_classpath() { - # I never seem to *have* such a dir. -tlipcon - HBASE_VER=`grep '' $HBASE_HOME/pom.xml | head -1 | sed 's/.*\(.*\)<\/version>/\1/'` - MAVEN_TARGET_DIR=$HBASE_HOME/target/hbase-$HBASE_VER-bin/hbase-$HBASE_VER - if [ -d "$MAVEN_TARGET_DIR" ]; then - for f in $MAVEN_TARGET_DIR/*.jar $MAVEN_TARGET_DIR/lib/*.jar; do - if [ -f $f ]; then - CLASSPATH=${CLASSPATH}:$f; - fi - done - fi -} - # Add maven target directory if $in_sources_dir; then add_maven_deps_to_classpath @@ -158,11 +145,18 @@ fi # For releases, add hbase & webapps to CLASSPATH # Webapps must come first else it messes up Jetty -if [ -d "$HBASE_HOME/webapps" ]; then +if [ -d "$HBASE_HOME/hbase-webapps" ]; then CLASSPATH=${CLASSPATH}:$HBASE_HOME fi +if [ -d "$HBASE_HOME/target/hbase-webapps" ]; then + CLASSPATH="${CLASSPATH}:${HBASE_HOME}/target" +fi for f in $HBASE_HOME/hbase*.jar; do - if [ -f $f ]; then + if [[ $f = *sources.jar ]] + then + : # Skip sources.jar + elif [ -f $f ] + then CLASSPATH=${CLASSPATH}:$f; fi done Modified: hbase/trunk/pom.xml URL: http://svn.apache.org/viewvc/hbase/trunk/pom.xml?rev=953495&r1=953494&r2=953495&view=diff ============================================================================== --- hbase/trunk/pom.xml (original) +++ hbase/trunk/pom.xml Thu Jun 10 23:21:45 2010 @@ -7,13 +7,11 @@ jar 0.21.0-SNAPSHOT HBase - HBase is the &lt;a href="http://hadoop.apache.org"&rt;Hadoop</a&rt; database. Use it when you need random, realtime read/write access to your Big Data. This project's goal is the hosting of very large tables -- billions of rows X millions of columns -- atop clusters of commodity hardware. - http://hbase.apache.org @@ -286,15 +284,15 @@ - src/main/resources + src/main/resources/ + + hbase-default.xml + - src/main/hbase-webapps + ${project.build.directory} - */.gif - */.css - */.html - */.xml + hbase-webapps/** @@ -375,32 +373,43 @@ maven-antrun-plugin - JSPC + generate generate-sources + + + + + + + + + + + + + + - - - - - - run - - - - package-info - generate-sources - - + + + + + + + - + Modified: hbase/trunk/src/assembly/bin.xml URL: http://svn.apache.org/viewvc/hbase/trunk/src/assembly/bin.xml?rev=953495&r1=953494&r2=953495&view=diff ============================================================================== --- hbase/trunk/src/assembly/bin.xml (original) +++ hbase/trunk/src/assembly/bin.xml Thu Jun 10 23:21:45 2010 @@ -34,11 +34,8 @@ - target/classes/hbase-webapps + target/hbase-webapps hbase-webapps - - **/*.jsp - target/site Added: hbase/trunk/src/main/resources/hbase-webapps/static/hbase_logo_med.gif URL: http://svn.apache.org/viewvc/hbase/trunk/src/main/resources/hbase-webapps/static/hbase_logo_med.gif?rev=953495&view=auto ============================================================================== Binary file - no diff available. Propchange: hbase/trunk/src/main/resources/hbase-webapps/static/hbase_logo_med.gif ------------------------------------------------------------------------------ svn:mime-type = application/octet-stream