Index: solr/CHANGES.txt
===================================================================
--- solr/CHANGES.txt (revision 1365831)
+++ solr/CHANGES.txt (working copy)
@@ -170,9 +170,12 @@
* SOLR-3600: Raise the default zkClientTimeout from 10 seconds to 15 seconds. (Mark Miller)
+* SOLR-3439: Make SolrCell easier to use out of the box. Also improves "/browse" to display
+ rich-text documents correctly, along with facets for author and content_type.
+ With the new "content" field, highlighting of body is supported (Jack Krupansky, janhoy)
+
* SOLR-3215: Clone SolrInputDocument when distrib indexing so that update processors after
the distrib update process do not process the document twice. (Mark Miller)
-
================== 4.0.0-ALPHA ==================
More information about this release, including any errata related to the
Index: solr/example/solr/collection1/conf/velocity/join-doc.vm
===================================================================
--- solr/example/solr/collection1/conf/velocity/join-doc.vm (revision 0)
+++ solr/example/solr/collection1/conf/velocity/join-doc.vm (revision 0)
@@ -0,0 +1,4 @@
+
#field('compName_s')
+Id: #field('id') (company-details document for
join)
+Address: #field('address_s')
+#parse('debug.vm')
\ No newline at end of file
Property changes on: solr/example/solr/collection1/conf/velocity/join-doc.vm
___________________________________________________________________
Added: svn:eol-style
+ native
Index: solr/example/solr/collection1/conf/velocity/doc.vm
===================================================================
--- solr/example/solr/collection1/conf/velocity/doc.vm (revision 1365831)
+++ solr/example/solr/collection1/conf/velocity/doc.vm (working copy)
@@ -1,42 +0,0 @@
-#field('name')#if($params.getBool('mlt', false) == false)More Like This#end
-##do we have a physical store for this product
-#set($store = $doc.getFieldValue('store'))
-#if($store)#end
-Price: #field('price_c')
-Features: #field('features')
-In Stock: #field('inStock')
-
- #set($mlt = $mltResults.get($docId))
- #set($mltOn = $params.getBool('mlt'))
- #if($mltOn == true)
Similar Items
#end
- #if ($mltOn && $mlt && $mlt.size() > 0)
-
- #elseif($mltOn && $mlt.size() == 0)
-
No Similar Items Found
- #end
-
-#if($params.getBool("debugQuery",false))
- toggle explain
- $response.getExplainMap().get($doc.getFirstValue('id'))
- toggle all fields
-
- #foreach($fieldname in $doc.fieldNames)
-
- $fieldname :
-
- #foreach($value in $doc.getFieldValues($fieldname))
- $value
- #end
-
- #end
-
-
-#end
\ No newline at end of file
Index: solr/example/solr/collection1/conf/velocity/facet_fields.vm
===================================================================
--- solr/example/solr/collection1/conf/velocity/facet_fields.vm (revision 1365831)
+++ solr/example/solr/collection1/conf/velocity/facet_fields.vm (working copy)
@@ -1,6 +1,8 @@
#if($response.facetFields)
Field Facets
#foreach($field in $response.facetFields)
+ ## Hide facets without value
+ #if($field.values.size() > 0)
$field.name
+ #end
#end
#end
\ No newline at end of file
Index: solr/example/solr/collection1/conf/velocity/facet_ranges.vm
===================================================================
--- solr/example/solr/collection1/conf/velocity/facet_ranges.vm (revision 1365831)
+++ solr/example/solr/collection1/conf/velocity/facet_ranges.vm (working copy)
@@ -1,5 +1,7 @@
Range Facets
#foreach ($field in $response.response.facet_counts.facet_ranges)
+ ## Hide facets without value
+ #if($field.value.counts.size() > 0)
#set($name = $field.key)
#set($display = $name)
#set($f = $field.value.counts)
@@ -9,4 +11,5 @@
#set($before = $field.value.before)
#set($after = $field.value.after)
#display_facet_range($f, $display, $name, $start, $end, $gap, $before, $after)
+ #end
#end
\ No newline at end of file
Index: solr/example/solr/collection1/conf/velocity/product-doc.vm
===================================================================
--- solr/example/solr/collection1/conf/velocity/product-doc.vm (revision 1364395)
+++ solr/example/solr/collection1/conf/velocity/product-doc.vm (working copy)
@@ -1,7 +1,8 @@
-#field('name')#if($params.getBool('mlt', false) == false)More Like This#end
+#field('name') #if($params.getBool('mlt', false) == false)More Like This#end
##do we have a physical store for this product
#set($store = $doc.getFieldValue('store'))
#if($store)#end
+Id: #field('id') (product document)
Price: #field('price_c')
Features: #field('features')
In Stock: #field('inStock')
@@ -23,20 +24,4 @@
No Similar Items Found
#end
-#if($params.getBool("debugQuery",false))
- toggle explain
- $response.getExplainMap().get($doc.getFirstValue('id'))
- toggle all fields
-
- #foreach($fieldname in $doc.fieldNames)
-
- $fieldname :
-
- #foreach($value in $doc.getFieldValues($fieldname))
- $value
- #end
-
- #end
-
-
-#end
\ No newline at end of file
+#parse('debug.vm')
\ No newline at end of file
Index: solr/example/solr/collection1/conf/velocity/hit.vm
===================================================================
--- solr/example/solr/collection1/conf/velocity/hit.vm (revision 1365831)
+++ solr/example/solr/collection1/conf/velocity/hit.vm (working copy)
@@ -1,5 +1,11 @@
#set($docId = $doc.getFieldValue('id'))
- #parse("doc.vm")
+#if($doc.getFieldValue('name'))
+ #parse("product-doc.vm")
+#elseif($doc.getFieldValue('compName_s'))
+ #parse("join-doc.vm")
+#else
+ #parse("richtext-doc.vm")
+#end
Index: solr/example/solr/collection1/conf/velocity/VM_global_library.vm
===================================================================
--- solr/example/solr/collection1/conf/velocity/VM_global_library.vm (revision 1365831)
+++ solr/example/solr/collection1/conf/velocity/VM_global_library.vm (working copy)
@@ -133,10 +133,14 @@
#macro(field $f)
#if($response.response.highlighting.get($docId).get($f).get(0))
- $!response.response.highlighting.get($docId).get($f).get(0)
+ #set($pad = "")
+ #foreach($v in $response.response.highlighting.get($docId).get($f))
+$pad$v##
+ #set($pad = " ... ")
+ #end
#else
#foreach($v in $doc.getFieldValues($f))
- $v
+$v##
#end
#end
#end
Index: solr/example/solr/collection1/conf/velocity/debug.vm
===================================================================
--- solr/example/solr/collection1/conf/velocity/debug.vm (revision 0)
+++ solr/example/solr/collection1/conf/velocity/debug.vm (revision 0)
@@ -0,0 +1,17 @@
+#if($params.getBool("debugQuery",false))
+ toggle explain
+ $response.getExplainMap().get($doc.getFirstValue('id'))
+ toggle all fields
+
+ #foreach($fieldname in $doc.fieldNames)
+
+ $fieldname :
+
+ #foreach($value in $doc.getFieldValues($fieldname))
+ $esc.html($value)
+ #end
+
+ #end
+
+
+#end
\ No newline at end of file
Property changes on: solr/example/solr/collection1/conf/velocity/debug.vm
___________________________________________________________________
Added: svn:eol-style
+ native
Index: solr/example/solr/collection1/conf/velocity/main.css
===================================================================
--- solr/example/solr/collection1/conf/velocity/main.css (revision 1365831)
+++ solr/example/solr/collection1/conf/velocity/main.css (working copy)
@@ -167,6 +167,10 @@
width:60%;
}
+.result-body{
+ background: #ddd;
+}
+
.mlt{
}
Index: solr/example/solr/collection1/conf/velocity/richtext-doc.vm
===================================================================
--- solr/example/solr/collection1/conf/velocity/richtext-doc.vm (revision 0)
+++ solr/example/solr/collection1/conf/velocity/richtext-doc.vm (revision 0)
@@ -0,0 +1,43 @@
+#if($doc.getFieldValue('title'))
+ #set($title = $esc.html($doc.getFirstValue('title')))
+#else
+ #set($title = "["+$doc.getFieldValue('id')+"]")
+#end
+#set($supportedtypes = "7z;ai;aiff;asc;audio;bin;bz2;c;cfc;cfm;chm;class;conf;cpp;cs;css;csv;deb;divx;doc;dot;eml;enc;file;gif;gz;hlp;htm;html;image;iso;jar;java;jpeg;jpg;js;lua;m;mm;mov;mp3;mpg;odc;odf;odg;odi;odp;ods;odt;ogg;pdf;pgp;php;pl;png;ppt;ps;py;ram;rar;rb;rm;rpm;rtf;sig;sql;swf;sxc;sxd;sxi;sxw;tar;tex;tgz;txt;vcf;video;vsd;wav;wma;wmv;xls;xml;xpi;xvid;zip")
+#set($ct = $doc.getFirstValue('content_type'))
+#set($filename = $doc.getFieldValue('resourcename'))
+#set($filetype = $mimeToExt.get($ct))
+#if(!$filetype)#set($filetype = $filename.substring($filename.lastIndexOf(".")).substring(1))#end
+#if(!$filetype)#set($filetype = "file")#end
+#if(!$supportedtypes.contains($filetype))#set($filetype = "file")#end
+
+## Small file type icons from http://www.splitbrain.org/projects/file_icons (public domain)
+

+
$title #if($params.getBool('mlt', false) == false)More Like This#end
+Id: #field('id') (rich text document)
+
+#if($filename)Resource name: $filename #end
+#if($ct)Content-type: $ct#end
+
+#if($doc.getFieldValue('author'))Author: #field('author')
#end
+#if($doc.getFieldValue('last_modified'))Last-modified: #field('last_modified')
#end
+#field('content')
+
+ #set($mlt = $mltResults.get($docId))
+ #set($mltOn = $params.getBool('mlt'))
+ #if($mltOn == true)
Similar Items
#end
+ #if ($mltOn && $mlt && $mlt.size() > 0)
+
+ #elseif($mltOn && $mlt.size() == 0)
+
No Similar Items Found
+ #end
+
+#parse('debug.vm')
\ No newline at end of file
Property changes on: solr/example/solr/collection1/conf/velocity/richtext-doc.vm
___________________________________________________________________
Added: svn:eol-style
+ native
Index: solr/example/solr/collection1/conf/schema.xml
===================================================================
--- solr/example/solr/collection1/conf/schema.xml (revision 1365831)
+++ solr/example/solr/collection1/conf/schema.xml (working copy)
@@ -109,7 +109,10 @@
@@ -118,10 +121,17 @@
+
+
+
+
@@ -233,6 +243,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
on
cat
manu_exact
+ content_type
+ author_s
ipod
GB
1
@@ -887,9 +891,18 @@
on
- text features name
+ content features title name
+ html
+ <b>
+ </b>
+ 0
+ title
0
name
+ 3
+ 200
+ content
+ 750
on
@@ -950,9 +963,6 @@
startup="lazy"
class="solr.extraction.ExtractingRequestHandler" >
-
- text
true
ignored_
Index: solr/contrib/velocity/src/java/org/apache/solr/response/VelocityResponseWriter.java
===================================================================
--- solr/contrib/velocity/src/java/org/apache/solr/response/VelocityResponseWriter.java (revision 1365831)
+++ solr/contrib/velocity/src/java/org/apache/solr/response/VelocityResponseWriter.java (working copy)
@@ -29,6 +29,8 @@
import org.apache.velocity.tools.generic.*;
import java.io.*;
+import java.util.HashMap;
+import java.util.Map;
import java.util.Properties;
public class VelocityResponseWriter implements QueryResponseWriter {
@@ -80,6 +82,64 @@
context.put("engine", engine); // for $engine.resourceExists(...)
+ // Mimetype to extension map for detecting file type and show icon
+ // List of types match the icons in /solr/img/filetypes
+ Map mimeToExt = new HashMap() {{
+ put("application/x-7z-compressed", "7z");
+ put("application/postscript", "ai");
+ put("application/pgp-signature", "asc");
+ put("application/octet-stream", "bin");
+ put("application/x-bzip2", "bz2");
+ put("text/x-c", "c");
+ put("application/vnd.ms-htmlhelp", "chm");
+ put("application/java-vm", "class");
+ put("text/css", "css");
+ put("text/csv", "csv");
+ put("application/x-debian-package", "deb");
+ put("application/msword", "doc");
+ put("message/rfc822", "eml");
+ put("image/gif", "gif");
+ put("application/winhlp", "hlp");
+ put("text/html", "html");
+ put("application/java-archive", "jar");
+ put("text/x-java-source", "java");
+ put("image/jpeg", "jpeg");
+ put("application/javascript", "js");
+ put("application/vnd.oasis.opendocument.chart", "odc");
+ put("application/vnd.oasis.opendocument.formula", "odf");
+ put("application/vnd.oasis.opendocument.graphics", "odg");
+ put("application/vnd.oasis.opendocument.image", "odi");
+ put("application/vnd.oasis.opendocument.presentation", "odp");
+ put("application/vnd.oasis.opendocument.spreadsheet", "ods");
+ put("application/vnd.oasis.opendocument.text", "odt");
+ put("application/pdf", "pdf");
+ put("application/pgp-encrypted", "pgp");
+ put("image/png", "png");
+ put("application/vnd.ms-powerpoint", "ppt");
+ put("audio/x-pn-realaudio", "ram");
+ put("application/x-rar-compressed", "rar");
+ put("application/vnd.rn-realmedia", "rm");
+ put("application/rtf", "rtf");
+ put("application/x-shockwave-flash", "swf");
+ put("application/vnd.sun.xml.calc", "sxc");
+ put("application/vnd.sun.xml.draw", "sxd");
+ put("application/vnd.sun.xml.impress", "sxi");
+ put("application/vnd.sun.xml.writer", "sxw");
+ put("application/x-tar", "tar");
+ put("application/x-tex", "tex");
+ put("text/plain", "txt");
+ put("text/x-vcard", "vcf");
+ put("application/vnd.visio", "vsd");
+ put("audio/x-wav", "wav");
+ put("audio/x-ms-wma", "wma");
+ put("video/x-ms-wmv", "wmv");
+ put("application/vnd.ms-excel", "xls");
+ put("application/xml", "xml");
+ put("application/x-xpinstall", "xpi");
+ put("application/zip", "zip");
+ }};
+ context.put("mimeToExt", mimeToExt);
+
String layout_template = request.getParams().get("v.layout");
String json_wrapper = request.getParams().get("v.json");
boolean wrap_response = (layout_template != null) || (json_wrapper != null);
Index: solr/webapp/web/img/filetypes/sxc.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/sxc.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/sxd.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/sxd.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/7z.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/7z.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/audio.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/audio.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/rb.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/rb.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/sxi.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/sxi.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/gif.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/gif.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/doc.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/doc.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/video.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/video.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/js.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/js.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/eml.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/eml.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/vcf.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/vcf.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/rm.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/rm.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/file.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/file.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/sxw.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/sxw.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/sig.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/sig.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/wma.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/wma.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/dot.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/dot.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/pgp.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/pgp.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/cfc.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/cfc.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/vsd.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/vsd.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/wav.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/wav.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/sql.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/sql.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/tgz.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/tgz.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/class.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/class.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/cfm.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/cfm.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/cs.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/cs.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/enc.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/enc.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/wmv.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/wmv.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/pdf.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/pdf.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/divx.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/divx.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/jpg.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/jpg.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/gz.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/gz.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/hlp.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/hlp.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/conf.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/conf.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/php.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/php.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/htm.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/htm.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/deb.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/deb.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/rtf.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/rtf.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/bz2.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/bz2.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/rpm.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/rpm.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/mp3.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/mp3.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/xpi.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/xpi.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/ppt.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/ppt.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/html.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/html.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/asc.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/asc.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/xls.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/xls.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/bin.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/bin.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/xvid.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/xvid.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/pl.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/pl.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/jar.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/jar.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/ogg.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/ogg.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/ram.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/ram.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/txt.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/txt.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/java.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/java.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/lua.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/lua.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/ps.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/ps.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/c.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/c.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/rar.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/rar.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/tar.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/tar.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/py.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/py.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/css.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/css.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/ai.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/ai.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/iso.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/iso.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/csv.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/csv.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/m.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/m.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/swf.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/swf.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/tex.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/tex.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/xml.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/xml.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/mov.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/mov.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/zip.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/zip.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/aiff.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/aiff.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/odc.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/odc.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/chm.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/chm.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/odf.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/odf.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/mm.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/mm.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/odg.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/odg.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/README
===================================================================
--- solr/webapp/web/img/filetypes/README (revision 0)
+++ solr/webapp/web/img/filetypes/README (revision 0)
@@ -0,0 +1,27 @@
+http://www.splitbrain.org/projects/file_icons
+
+Released to the Public Domain
+Free to use. Provided as is. No warranties.
+
+Note: The big majority of icons where created by the creators listed
+ below. Only a few ones where found on the net. They were too
+ widespread to determine the original author and thus were
+ considered public domain.
+ If you are the author of one of those icons just send a short
+ mail to either be included in the list below or have the icon
+ removed from the package.
+
+Creators:
+
+ Andreas Gohr
+ Michael Klier
+ Andreas Barton
+ Hubert Chathi
+ Johan Koehne
+ Rudi von Staden
+ Daniel Darvish
+ Andy Pascall
+ Seth
+ David Carella
+ Tom N. Harris
+ Brandon Carmon Colvin
Property changes on: solr/webapp/web/img/filetypes/README
___________________________________________________________________
Added: svn:eol-style
+ native
Index: solr/webapp/web/img/filetypes/odi.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/odi.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/odp.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/odp.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/cpp.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/cpp.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/image.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/image.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/mpg.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/mpg.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/png.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/png.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/jpeg.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/jpeg.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/ods.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/ods.png
___________________________________________________________________
Added: svn:mime-type
+ image/png
Index: solr/webapp/web/img/filetypes/odt.png
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = image/png
Property changes on: solr/webapp/web/img/filetypes/odt.png
___________________________________________________________________
Added: svn:mime-type
+ image/png