diff --git a/solr/CHANGES.txt b/solr/CHANGES.txt index 3e72788b93e..27e4606b26e 100644 --- a/solr/CHANGES.txt +++ b/solr/CHANGES.txt @@ -116,6 +116,8 @@ New Features false to an update processor's configuration in solrconfig.xml. (Steve Rowe, hossman) +* SOLR-4921: Admin UI now supports adding documents to Solr (gsingers, steffkes) + Bug Fixes ---------------------- diff --git a/solr/webapp/web/admin.html b/solr/webapp/web/admin.html index c99f7f9e0f0..2db54e958a3 100644 --- a/solr/webapp/web/admin.html +++ b/solr/webapp/web/admin.html @@ -35,6 +35,7 @@ limitations under the License. + diff --git a/solr/webapp/web/css/styles/documents.css b/solr/webapp/web/css/styles/documents.css new file mode 100644 index 00000000000..ac7e5162212 --- /dev/null +++ b/solr/webapp/web/css/styles/documents.css @@ -0,0 +1,178 @@ +#content #documents +{ + background-image: url( ../../img/div.gif ); + background-position: 45% 0; + background-repeat: repeat-y; +} + +#content #documents #form +{ + float: left; + /*width: 21%;*/ +} + +#content #documents #form label +{ + cursor: pointer; + display: block; + margin-top: 5px; +} + +#content #documents #form input, +#content #documents #form select, +#content #documents #form textarea +{ + margin-bottom: 2px; + /*width: 100%;*/ +} + +#content #documents #form input, +#content #documents #form textarea +{ + margin-bottom: 2px; + /*width: 98%;*/ +} + +#content #documents #form #start +{ + float: left; + /*width: 45%;*/ +} + +#content #documents #form #rows +{ + float: right; + /* width: 45%;*/ +} + +#content #documents #form .checkbox input +{ + margin-bottom: 0; + width: auto; +} + +#content #documents #form fieldset, +#content #documents #form .optional.expanded +{ + border: 1px solid #fff; + border-top: 1px solid #c0c0c0; + margin-bottom: 5px; +} + +#content #documents #form fieldset.common +{ + margin-top: 10px; +} + +#content #documents #form fieldset legend, +#content #documents #form .optional.expanded legend +{ + display: block; + margin-left: 10px; + padding: 0px 5px; +} + +#content #documents #form fieldset legend label +{ + margin-top: 0; +} + +#content #documents #form fieldset .fieldset +{ + border-bottom: 1px solid #f0f0f0; + margin-bottom: 5px; + padding-bottom: 10px; +} + +#content #documents #form .optional +{ + border: 0; +} + +#content #documents #form .optional .fieldset +{ + display: none; +} + +#content #documents #form .optional legend +{ + margin-left: 0; + padding-left: 0; +} + +#content #documents #form .optional.expanded .fieldset +{ + display: block; +} + +#content #documents #file-upload{ + display: none; +} + +#content #documents #result +{ + display: none; + float: right; + width: 54%; +} + +#content #documents #result #url +{ + margin-bottom: 10px; + background-image: url( ../../img/ico/ui-address-bar.png ); + background-position: 5px 50%; + border: 1px solid #f0f0f0; + box-shadow: 1px 1px 0 #f0f0f0; + -moz-box-shadow: 1px 1px 0 #f0f0f0; + -webkit-box-shadow: 1px 1px 0 #f0f0f0; + color: #c0c0c0; + display: block; + overflow: hidden; + padding: 5px; + padding-left: 26px; + white-space: nowrap; +} + +#content #documents #result #url:focus, +#content #documents #result #url:hover +{ + border-color: #c0c0c0; + box-shadow: 1px 1px 0 #d8d8d8; + -moz-box-shadow: 1px 1px 0 #d8d8d8; + -webkit-box-shadow: 1px 1px 0 #d8d8d8; + color: #333; +} + +#content #documents #result #response +{ +} + +#content #documents #result #response pre +{ + padding-left: 20px; +} + +.description{ + font-weight: bold; +} + +#upload-only{ + display: none; +} + +#document-type{ + padding-bottom: 5px; +} + +#wizard{ + display: none; +} + +#wizard-fields div{ + padding-top: 5px; + padding-bottom: 5px; +} + +#wiz-field-data, #wiz-field-data span{ + vertical-align: top; +} \ No newline at end of file diff --git a/solr/webapp/web/css/styles/menu.css b/solr/webapp/web/css/styles/menu.css index dfa54b296fe..c99cd815cf5 100644 --- a/solr/webapp/web/css/styles/menu.css +++ b/solr/webapp/web/css/styles/menu.css @@ -239,6 +239,7 @@ #core-menu .schema a { background-image: url( ../../img/ico/table.png ); } #core-menu .config a { background-image: url( ../../img/ico/gear.png ); } #core-menu .analysis a { background-image: url( ../../img/ico/funnel.png ); } +#core-menu .documents a { background-image: url( ../../img/ico/documents-stack.png ); } #core-menu .schema-browser a { background-image: url( ../../img/ico/book-open-text.png ); } #core-menu .replication a { background-image: url( ../../img/ico/node.png ); } #core-menu .distribution a { background-image: url( ../../img/ico/node-select.png ); } diff --git a/solr/webapp/web/img/ico/documents-stack.png b/solr/webapp/web/img/ico/documents-stack.png new file mode 100644 index 00000000000..a397f60aaa4 Binary files /dev/null and b/solr/webapp/web/img/ico/documents-stack.png differ diff --git a/solr/webapp/web/js/lib/jquery.ajaxfileupload.js b/solr/webapp/web/js/lib/jquery.ajaxfileupload.js new file mode 100644 index 00000000000..eb538534fe2 --- /dev/null +++ b/solr/webapp/web/js/lib/jquery.ajaxfileupload.js @@ -0,0 +1,182 @@ +/* +* Copyright (c) 2011 Jordan Feldstein + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ + +// Original code from: https://github.com/jfeldstein/jQuery.AjaxFileUpload.js https://github.com/jfeldstein/jQuery.AjaxFileUpload.js/commit/9dd56b4161cbed138287d3ae29a476bb59eb5fc4 +// All modifications are BSD licensed +// GSI: Modifications made to support immediate upload +/* + // + // - Ajaxifies an individual + // - Files are sandboxed. Doesn't matter how many, or where they are, on the page. + // - Allows for extra parameters to be included with the file + // - onStart callback can cancel the upload by returning false + */ + + +(function ($) { + $.fn.ajaxfileupload = function (options) { + var settings = { + params: {}, + action: '', + onStart: function () { + console.log('starting upload'); + console.log(this); + }, + onComplete: function (response) { + console.log('got response: '); + console.log(response); + console.log(this); + }, + onCancel: function () { + console.log('cancelling: '); + console.log(this); + }, + validate_extensions: true, + valid_extensions: ['gif', 'png', 'jpg', 'jpeg'], + submit_button: null, + upload_now: false + }; + + var uploading_file = false; + + if (options) { + $.extend(settings, options); + } + + + // 'this' is a jQuery collection of one or more (hopefully) + // file elements, but doesn't check for this yet + return this.each(function () { + var $element = $(this); + /* + // Internal handler that tries to parse the response + // and clean up after ourselves. + */ + var handleResponse = function (loadedFrame, element) { + var response, responseStr = loadedFrame.contentWindow.document.body.innerHTML; + try { + //response = $.parseJSON($.trim(responseStr)); + response = JSON.parse(responseStr); + } catch (e) { + response = responseStr; + } + + // Tear-down the wrapper form + element.siblings().remove(); + element.unwrap(); + + uploading_file = false; + + // Pass back to the user + settings.onComplete.apply(element, [response, settings.params]); + }; + /* + // Wraps element in a
tag, and inserts hidden inputs for each + // key:value pair in settings.params so they can be sent along with + // the upload. Then, creates an iframe that the whole thing is + // uploaded through. + */ + var wrapElement = function (element) { + // Create an iframe to submit through, using a semi-unique ID + var frame_id = 'ajaxUploader-iframe-' + Math.round(new Date().getTime() / 1000) + $('body').after('--> + + + + \ No newline at end of file