enju_event 0.1.17.pre23 → 0.1.17.pre24
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.rdoc +8 -1
- data/app/controllers/event_categories_controller.rb +7 -2
- data/app/controllers/event_export_files_controller.rb +7 -2
- data/app/controllers/event_import_files_controller.rb +12 -4
- data/app/controllers/event_import_results_controller.rb +7 -0
- data/app/controllers/events_controller.rb +9 -3
- data/app/controllers/participates_controller.rb +7 -2
- data/app/models/event.rb +0 -3
- data/app/models/event_category.rb +0 -1
- data/app/models/event_export_file.rb +13 -3
- data/app/models/event_export_file_transition.rb +1 -1
- data/app/models/event_import_file.rb +8 -6
- data/app/models/event_import_file_transition.rb +1 -1
- data/app/models/event_import_result.rb +0 -1
- data/app/models/participate.rb +0 -1
- data/app/views/event_export_files/index.html.erb +2 -2
- data/app/views/event_export_files/show.html.erb +1 -1
- data/app/views/event_import_files/index.html.erb +1 -1
- data/app/views/event_import_files/show.html.erb +1 -1
- data/db/migrate/20140523171309_create_event_import_file_transitions.rb +5 -1
- data/db/migrate/20140812153137_create_event_export_file_transitions.rb +5 -1
- data/lib/enju_event/engine.rb +0 -2
- data/lib/enju_event/version.rb +1 -1
- data/spec/controllers/event_export_files_controller_spec.rb +5 -5
- data/spec/controllers/event_import_files_controller_spec.rb +1 -1
- data/spec/dummy/app/models/user.rb +0 -1
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/bin/setup +29 -0
- data/spec/dummy/config/database.yml +23 -18
- data/spec/dummy/config/environments/test.rb +1 -1
- data/spec/dummy/db/migrate/035_create_reserves.rb +0 -1
- data/spec/dummy/db/migrate/133_create_agent_merges.rb +15 -0
- data/spec/dummy/db/migrate/134_create_agent_merge_lists.rb +13 -0
- data/spec/dummy/db/migrate/20140518050147_create_reserve_transitions.rb +18 -0
- data/spec/dummy/db/migrate/20140518111006_create_message_transitions.rb +5 -1
- data/spec/dummy/db/migrate/20140518135713_create_message_request_transitions.rb +5 -1
- data/spec/dummy/db/migrate/20140519170214_create_resource_import_file_transitions.rb +5 -1
- data/spec/dummy/db/migrate/20140519171220_create_import_request_transitions.rb +5 -1
- data/spec/dummy/db/migrate/20140524020735_create_agent_import_file_transitions.rb +5 -1
- data/spec/dummy/db/migrate/20140524074813_create_user_import_file_transitions.rb +5 -1
- data/spec/dummy/db/migrate/20140528045518_create_user_checkout_stat_transitions.rb +5 -1
- data/spec/dummy/db/migrate/20140528045539_create_user_reserve_stat_transitions.rb +5 -1
- data/spec/dummy/db/migrate/20140528045600_create_manifestation_checkout_stat_transitions.rb +5 -1
- data/spec/dummy/db/migrate/20140528045617_create_manifestation_reserve_stat_transitions.rb +5 -1
- data/spec/dummy/db/migrate/20140614141500_create_resource_export_file_transitions.rb +5 -1
- data/spec/dummy/db/migrate/20140709113905_create_user_export_file_transitions.rb +5 -1
- data/spec/dummy/db/migrate/{20140810061942_add_user_id_to_stat.rb → 20140810061942_add_user_id_to_user_checkout_stat.rb} +1 -1
- data/spec/dummy/db/migrate/20141003181336_add_full_name_transcription_to_profile.rb +5 -0
- data/spec/dummy/db/migrate/20141003182825_add_date_of_birth_to_profile.rb +5 -0
- data/spec/dummy/db/migrate/20141014065831_add_shelf_id_to_checkout.rb +6 -0
- data/spec/dummy/db/schema.rb +645 -615
- data/spec/fixtures/events.yml +20 -45
- data/spec/fixtures/users.yml +1 -1
- data/spec/spec_helper.rb +2 -0
- metadata +57 -212
- data/app/controllers/calendar_controller.rb +0 -35
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/migrate/20130303104849_add_state_index_to_reserve.rb +0 -5
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/private/system/event_import_files/event_imports/000/000/004/original/event_destroy_file.tsv +0 -4
- data/spec/dummy/private/system/event_import_files/event_imports/000/000/004/original/event_import51.txt +0 -3
- data/spec/dummy/private/system/event_import_files/event_imports/000/000/004/original/event_import_file_sample1.tsv +0 -7
- data/spec/dummy/private/system/event_import_files/event_imports/000/000/004/original/event_import_file_sample2.tsv +0 -7
- data/spec/dummy/private/system/event_import_files/event_imports/000/000/004/original/event_update_file.tsv +0 -4
- data/spec/dummy/private/system/event_import_files/event_imports/000/000/004/original/invalid_file.tsv +0 -3
- data/spec/dummy/public/system/event_export_files/event_exports/000/000/004/original/event_export_file_20140818-66894-1um2gwb.txt +0 -9
- data/spec/dummy/public/system/event_export_files/event_exports/000/000/004/original/event_export_file_20140818-67059-j0f46.txt +0 -9
- data/spec/dummy/public/system/event_export_files/event_exports/000/000/004/original/event_export_file_20140915-67461-178vmkf.txt +0 -9
- data/spec/dummy/public/system/event_export_files/event_exports/000/000/004/original/event_export_file_20140916-27270-1dm2llo.txt +0 -9
- data/spec/dummy/public/system/event_export_files/event_exports/000/000/004/original/event_export_file_20140921-56213-1l5hypx.txt +0 -9
- data/spec/dummy/public/system/event_export_files/event_exports/000/000/004/original/event_export_file_20140921-58265-o3c737.txt +0 -9
- data/spec/dummy/public/system/event_export_files/event_exports/000/000/004/original/event_export_file_20140921-58363-1tipiu.txt +0 -9
- data/spec/dummy/public/system/event_export_files/event_exports/000/000/004/original/event_export_file_20140921-58460-38jub0.txt +0 -9
- data/spec/dummy/public/system/event_export_files/event_exports/000/000/004/original/event_export_file_20140921-58528-ca3k3q.txt +0 -9
- data/spec/dummy/public/system/event_export_files/event_exports/000/000/004/original/event_export_file_20140921-58630-1m4isxz.txt +0 -9
- data/spec/dummy/public/system/event_export_files/event_exports/000/000/004/original/event_export_file_20140921-58934-19ikk0v.txt +0 -9
- data/spec/dummy/public/system/event_export_files/event_exports/000/000/004/original/event_export_file_20140921-59012-10in1j8.txt +0 -9
- data/spec/dummy/public/system/event_export_files/event_exports/000/000/004/original/event_export_file_20140921-59315-15pzw3y.txt +0 -9
- data/spec/dummy/public/system/event_export_files/event_exports/000/000/004/original/event_export_file_20140922-86319-oo60ty.txt +0 -9
- data/spec/dummy/public/system/event_export_files/event_exports/000/000/004/original/event_export_file_20140927-1698-10wfq6m.txt +0 -9
- data/spec/dummy/public/system/event_export_files/event_exports/000/000/004/original/event_export_file_20141003-88157-4ti9t5.txt +0 -9
- data/spec/dummy/script/rails +0 -6
- data/spec/dummy/solr/conf/admin-extra.html +0 -31
- data/spec/dummy/solr/conf/elevate.xml +0 -36
- data/spec/dummy/solr/conf/mapping-ISOLatin1Accent.txt +0 -246
- data/spec/dummy/solr/conf/protwords.txt +0 -21
- data/spec/dummy/solr/conf/schema.xml +0 -255
- data/spec/dummy/solr/conf/scripts.conf +0 -24
- data/spec/dummy/solr/conf/solrconfig.xml +0 -667
- data/spec/dummy/solr/conf/spellings.txt +0 -2
- data/spec/dummy/solr/conf/stopwords.txt +0 -58
- data/spec/dummy/solr/conf/synonyms.txt +0 -31
- data/spec/dummy/solr/default/data/index/_1pd.fdt +0 -0
- data/spec/dummy/solr/default/data/index/_1pd.fdx +0 -0
- data/spec/dummy/solr/default/data/index/_1pd.fnm +0 -0
- data/spec/dummy/solr/default/data/index/_1pd.nvd +0 -0
- data/spec/dummy/solr/default/data/index/_1pd.nvm +0 -0
- data/spec/dummy/solr/default/data/index/_1pd.si +0 -0
- data/spec/dummy/solr/default/data/index/_1pd_Lucene41_0.doc +0 -0
- data/spec/dummy/solr/default/data/index/_1pd_Lucene41_0.pos +0 -0
- data/spec/dummy/solr/default/data/index/_1pd_Lucene41_0.tim +0 -0
- data/spec/dummy/solr/default/data/index/_1pd_Lucene41_0.tip +0 -0
- data/spec/dummy/solr/default/data/index/_1pe.fdt +0 -0
- data/spec/dummy/solr/default/data/index/_1pe.fdx +0 -0
- data/spec/dummy/solr/default/data/index/_1pe.fnm +0 -0
- data/spec/dummy/solr/default/data/index/_1pe.nvd +0 -0
- data/spec/dummy/solr/default/data/index/_1pe.nvm +0 -0
- data/spec/dummy/solr/default/data/index/_1pe.si +0 -0
- data/spec/dummy/solr/default/data/index/_1pe_Lucene41_0.doc +0 -0
- data/spec/dummy/solr/default/data/index/_1pe_Lucene41_0.pos +0 -0
- data/spec/dummy/solr/default/data/index/_1pe_Lucene41_0.tim +0 -0
- data/spec/dummy/solr/default/data/index/_1pe_Lucene41_0.tip +0 -0
- data/spec/dummy/solr/default/data/index/segments.gen +0 -0
- data/spec/dummy/solr/default/data/index/segments_2g6 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000003163 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000003164 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000003165 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000003166 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000003167 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000003168 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000003169 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000003170 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000003171 +0 -0
- data/spec/dummy/solr/default/data/tlog/tlog.0000000000000003172 +0 -0
- data/spec/dummy/solr/development/data/index/segments.gen +0 -0
- data/spec/dummy/solr/development/data/index/segments_1 +0 -0
- data/spec/dummy/solr/solr.xml +0 -8
- data/spec/dummy/solr/test/data/index/_a.fdt +0 -0
- data/spec/dummy/solr/test/data/index/_a.fdx +0 -0
- data/spec/dummy/solr/test/data/index/_a.fnm +0 -0
- data/spec/dummy/solr/test/data/index/_a.nvd +0 -0
- data/spec/dummy/solr/test/data/index/_a.nvm +0 -0
- data/spec/dummy/solr/test/data/index/_a.si +0 -0
- data/spec/dummy/solr/test/data/index/_a_Lucene41_0.doc +0 -0
- data/spec/dummy/solr/test/data/index/_a_Lucene41_0.pos +0 -0
- data/spec/dummy/solr/test/data/index/_a_Lucene41_0.tim +0 -0
- data/spec/dummy/solr/test/data/index/_a_Lucene41_0.tip +0 -0
- data/spec/dummy/solr/test/data/index/segments.gen +0 -0
- data/spec/dummy/solr/test/data/index/segments_n +0 -0
- data/spec/dummy/solr/test/data/tlog/tlog.0000000000000000013 +0 -0
- data/spec/dummy/solr/test/data/tlog/tlog.0000000000000000014 +0 -0
- data/spec/dummy/solr/test/data/tlog/tlog.0000000000000000015 +0 -0
- data/spec/dummy/solr/test/data/tlog/tlog.0000000000000000016 +0 -0
- data/spec/dummy/solr/test/data/tlog/tlog.0000000000000000017 +0 -0
- data/spec/dummy/solr/test/data/tlog/tlog.0000000000000000018 +0 -0
- data/spec/dummy/solr/test/data/tlog/tlog.0000000000000000019 +0 -0
- data/spec/dummy/solr/test/data/tlog/tlog.0000000000000000020 +0 -0
- data/spec/dummy/solr/test/data/tlog/tlog.0000000000000000021 +0 -0
- data/spec/dummy/tmp/cache/stdout +0 -479
- data/spec/dummy/tmp/pids/redis-test.pid +0 -1
@@ -1,58 +0,0 @@
|
|
1
|
-
# Licensed to the Apache Software Foundation (ASF) under one or more
|
2
|
-
# contributor license agreements. See the NOTICE file distributed with
|
3
|
-
# this work for additional information regarding copyright ownership.
|
4
|
-
# The ASF licenses this file to You under the Apache License, Version 2.0
|
5
|
-
# (the "License"); you may not use this file except in compliance with
|
6
|
-
# the License. You may obtain a copy of the License at
|
7
|
-
#
|
8
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
9
|
-
#
|
10
|
-
# Unless required by applicable law or agreed to in writing, software
|
11
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
-
# See the License for the specific language governing permissions and
|
14
|
-
# limitations under the License.
|
15
|
-
|
16
|
-
#-----------------------------------------------------------------------
|
17
|
-
# a couple of test stopwords to test that the words are really being
|
18
|
-
# configured from this file:
|
19
|
-
stopworda
|
20
|
-
stopwordb
|
21
|
-
|
22
|
-
#Standard english stop words taken from Lucene's StopAnalyzer
|
23
|
-
a
|
24
|
-
an
|
25
|
-
and
|
26
|
-
are
|
27
|
-
as
|
28
|
-
at
|
29
|
-
be
|
30
|
-
but
|
31
|
-
by
|
32
|
-
for
|
33
|
-
if
|
34
|
-
in
|
35
|
-
into
|
36
|
-
is
|
37
|
-
it
|
38
|
-
no
|
39
|
-
not
|
40
|
-
of
|
41
|
-
on
|
42
|
-
or
|
43
|
-
s
|
44
|
-
such
|
45
|
-
t
|
46
|
-
that
|
47
|
-
the
|
48
|
-
their
|
49
|
-
then
|
50
|
-
there
|
51
|
-
these
|
52
|
-
they
|
53
|
-
this
|
54
|
-
to
|
55
|
-
was
|
56
|
-
will
|
57
|
-
with
|
58
|
-
|
@@ -1,31 +0,0 @@
|
|
1
|
-
# The ASF licenses this file to You under the Apache License, Version 2.0
|
2
|
-
# (the "License"); you may not use this file except in compliance with
|
3
|
-
# the License. You may obtain a copy of the License at
|
4
|
-
#
|
5
|
-
# http://www.apache.org/licenses/LICENSE-2.0
|
6
|
-
#
|
7
|
-
# Unless required by applicable law or agreed to in writing, software
|
8
|
-
# distributed under the License is distributed on an "AS IS" BASIS,
|
9
|
-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
10
|
-
# See the License for the specific language governing permissions and
|
11
|
-
# limitations under the License.
|
12
|
-
|
13
|
-
#-----------------------------------------------------------------------
|
14
|
-
#some test synonym mappings unlikely to appear in real input text
|
15
|
-
aaa => aaaa
|
16
|
-
bbb => bbbb1 bbbb2
|
17
|
-
ccc => cccc1,cccc2
|
18
|
-
a\=>a => b\=>b
|
19
|
-
a\,a => b\,b
|
20
|
-
fooaaa,baraaa,bazaaa
|
21
|
-
|
22
|
-
# Some synonym groups specific to this example
|
23
|
-
GB,gib,gigabyte,gigabytes
|
24
|
-
MB,mib,megabyte,megabytes
|
25
|
-
Television, Televisions, TV, TVs
|
26
|
-
#notice we use "gib" instead of "GiB" so any WordDelimiterFilter coming
|
27
|
-
#after us won't split it into two words.
|
28
|
-
|
29
|
-
# Synonym mappings can be used for spelling correction too
|
30
|
-
pixima => pixma
|
31
|
-
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/spec/dummy/solr/solr.xml
DELETED
@@ -1,8 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" ?>
|
2
|
-
<solr persistent="false">
|
3
|
-
<cores adminPath="/admin/cores" host="${host:}" hostPort="${jetty.port:}">
|
4
|
-
<core name="default" instanceDir="." dataDir="default/data"/>
|
5
|
-
<core name="development" instanceDir="." dataDir="development/data"/>
|
6
|
-
<core name="test" instanceDir="." dataDir="test/data"/>
|
7
|
-
</cores>
|
8
|
-
</solr>
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|