I've removed the growth queries from the stats.
1) These are Usage statistics, the growth information should not reside in
statstransformer
2) It was poorly constructed with direct SQL in the UI layer.
On Tim's suggestion, I'm removing license headers from robots.txt
They don't have proper comment format (#) and they're already
excluded from license:check
Several of our *.LICENSE files (used for CSS / JS / XSLT frameworks) had
unclear or even incorrectly specified licenses. I've cleaned up most of
these files to specify the name of the OS License and add a link back to
the URL where that license is available.
Also added minor note in LICENSES_THIRD_PARTY file which describes how
to find all these *.LICENSE files.
[DS-1231] Indexing both stored and display-value from input-forms for search
Squashed commit of the following:
commit 426db183fc
Merge: b05c6a38334fce
Author: kstamatis <kstamatis@ekt.gr>
Date: Sat Sep 15 08:52:12 2012 -0700
Merge pull request #2 from abollini/DS-1231
Ds 1231
commit 8334fceed0
Author: Andrea Bollini <bollini@cilea.it>
Date: Sat Sep 15 17:31:08 2012 +0200
Use the default input set if the item is not yet archived
commit c6be362592
Author: Andrea Bollini <bollini@cilea.it>
Date: Sat Sep 15 17:23:48 2012 +0200
Minor changes
Code formatted using the dspace style eclipse formatter
No store values in the index as the lucene projection is not currently used
use generics to avoid raw type warning
commit 6e6933d174
Merge: 3b1cc06b05c6a3
Author: Andrea Bollini <bollini@cilea.it>
Date: Sat Sep 15 16:19:20 2012 +0200
Merge remote-tracking branch 'EKT/DS-1231' into DS-1231
commit b05c6a3288
Author: Rania Stathopoulou <iostath@ekt.gr>
Date: Fri Sep 14 19:49:27 2012 +0300
Search indexing all values (now getControlledVocabulariesDisplayValueLocalized returns a list of all the values and the DSIndexer manages these values)
A return statement is added if the item has no collection
commit 33da186e6c
Author: Rania Stathopoulou <iostath@ekt.gr>
Date: Thu Sep 13 11:19:56 2012 +0300
Code Indentation
commit c31651bdd8
Author: Rania Stathopoulou <iostath@ekt.gr>
Date: Tue Sep 11 11:54:43 2012 +0300
Code changed in order to index both stored and display-value for all localized input-forms if the user specifies 'inputform' in Search Index Configuration of dspace.cfg, e.g: search.index.12 = language:dc.language:inputform
commit d278958c22
Author: Rania Stathopoulou <iostath@ekt.gr>
Date: Fri Sep 7 12:19:25 2012 +0300
Package name 'gr.ekt.repositories.dspace.utils' removed.
All functions in gr.ekt.repositories.dspace.utils.Utilities.java were transfered in org.dspace.app.util.Util.java
Documentation added for the above functions
commit 8135fd4eb7
Author: EKT <iostath@ekt.gr>
Date: Wed Aug 8 18:40:40 2012 +0300
Unthrown exceptions added
commit fa8796bfeb
Author: EKT <iostath@ekt.gr>
Date: Wed Aug 8 17:06:20 2012 +0300
Indexing both stored and display-value from input-forms for search
Hierarchical LDAP originally assumed that when search.user is not
set, anonymous search is performed. We now assume that if it's
not set, simple LDAP authentication is performed. That retains
configuration backward comaptibility for the two most common cases.
The special case of anonymous search now requires search.anonymous
to be set to true, which means old installations using this setup
will have to add this config property.
Thanks to the previously merged DS-1180, the LDAPHierarchicalAuthentication
method gaind the capabilities of LDAPAuthentication. This commit renames
LDAPHierarchicalAuthentication to LDAPAuthentication and removes the
original LDAPAuthentication.
This displays the bitstream READ rights information at the item page
in Mirage, but doesn't indicate whether the currently logged in user
has READ access.
Stumbled upon strange code, that has a note in DS-421.
Which says metadata storage in usage-event stats engine was inadvertent,
so ES has no need to include this. Note: I haven't touched SolrLogger
If two slf4j versions (1.6 and 1.5) get into the project, it causes
version mismatches, and you get a dreaded error like:
java.lang.NoSuchMethodError: org.slf4j.spi.LocationAwareLogger.log
Somehow the version bumps I've added to lucene, or other dependencies I've
added have caused slf4j to import jcl-over-slf4j (version 1.6). This fixes
that.
Copied in Implementation of Elastic Search, and wired it into DSpace.
I changed the ES Node to be a nodeClient, and also one that runs locally
within tomcat's JVM. For OSU, we had used either transport-client, or
node-client, and both of which required that the server also be running a
seperate elastic search instance. By bundling this into DSpace, it should
make this a bit more turn-key to get started using Elastic Search.
By default, Elastic Search is ON with this commit.