You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by st...@apache.org on 2013/01/05 15:38:39 UTC

svn commit: r1429293 - in /lucene/dev/branches/branch_4x: ./ solr/ solr/CHANGES.txt solr/webapp/ solr/webapp/web/css/styles/menu.css solr/webapp/web/js/scripts/app.js

Author: steffkes
Date: Sat Jan  5 14:38:39 2013
New Revision: 1429293

URL: http://svn.apache.org/viewvc?rev=1429293&view=rev
Log:
SOLR-4079: Long core names break web gui appearance and functionality (merge r1429292)

Modified:
    lucene/dev/branches/branch_4x/   (props changed)
    lucene/dev/branches/branch_4x/solr/   (props changed)
    lucene/dev/branches/branch_4x/solr/CHANGES.txt   (contents, props changed)
    lucene/dev/branches/branch_4x/solr/webapp/   (props changed)
    lucene/dev/branches/branch_4x/solr/webapp/web/css/styles/menu.css
    lucene/dev/branches/branch_4x/solr/webapp/web/js/scripts/app.js

Modified: lucene/dev/branches/branch_4x/solr/CHANGES.txt
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_4x/solr/CHANGES.txt?rev=1429293&r1=1429292&r2=1429293&view=diff
==============================================================================
--- lucene/dev/branches/branch_4x/solr/CHANGES.txt (original)
+++ lucene/dev/branches/branch_4x/solr/CHANGES.txt Sat Jan  5 14:38:39 2013
@@ -433,7 +433,9 @@ Bug Fixes
 
 * SOLR-4176: analysis ui: javascript not properly handling URL decoding
   of input (steffkes)
-  
+
+* SOLR-4079: Long core names break web gui appearance and functionality
+  (steffkes) 
 
 Other Changes
 ----------------------

Modified: lucene/dev/branches/branch_4x/solr/webapp/web/css/styles/menu.css
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_4x/solr/webapp/web/css/styles/menu.css?rev=1429293&r1=1429292&r2=1429293&view=diff
==============================================================================
--- lucene/dev/branches/branch_4x/solr/webapp/web/css/styles/menu.css (original)
+++ lucene/dev/branches/branch_4x/solr/webapp/web/css/styles/menu.css Sat Jan  5 14:38:39 2013
@@ -14,6 +14,8 @@
 {
   display: block;
   padding: 4px 2px;
+  overflow: hidden;
+  text-overflow: ellipsis;
 }
 
 #menu-wrapper .active p

Modified: lucene/dev/branches/branch_4x/solr/webapp/web/js/scripts/app.js
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_4x/solr/webapp/web/js/scripts/app.js?rev=1429293&r1=1429292&r2=1429293&view=diff
==============================================================================
--- lucene/dev/branches/branch_4x/solr/webapp/web/js/scripts/app.js (original)
+++ lucene/dev/branches/branch_4x/solr/webapp/web/js/scripts/app.js Sat Jan  5 14:38:39 2013
@@ -224,7 +224,7 @@ var solr_admin = function( app_config )
                    + '    schema="' + cores.status[core_name]['schema'] + '"'
                    + '    config="' + cores.status[core_name]['config'] + '"'
                    + '>' + "\n"
-                   + '  <p><a href="#/' + core_name + '">' + core_name + '</a></p>' + "\n"
+                   + '  <p><a href="#/' + core_name + '" title="' + core_name + '">' + core_name + '</a></p>' + "\n"
                    + '  <ul>' + "\n"
 
                    + '    <li class="ping"><a rel="' + core_path + '/admin/ping"><span>Ping</span></a></li>' + "\n"