solr_makr 0.0.4 → 0.5.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (86) hide show
  1. checksums.yaml +4 -4
  2. data/.agignore +1 -0
  3. data/README.md +24 -2
  4. data/Rakefile +1 -1
  5. data/bin/console +13 -0
  6. data/exe/solr-makr +9 -0
  7. data/lib/solr_makr.rb +76 -23
  8. data/lib/solr_makr/application.rb +24 -44
  9. data/lib/solr_makr/application_action.rb +182 -0
  10. data/lib/solr_makr/application_dispatch.rb +85 -0
  11. data/lib/solr_makr/collection.rb +17 -0
  12. data/lib/solr_makr/commands.rb +14 -0
  13. data/lib/solr_makr/commands/abstract_command.rb +60 -0
  14. data/lib/solr_makr/commands/buffer.rb +98 -0
  15. data/lib/solr_makr/commands/create_collection.rb +57 -0
  16. data/lib/solr_makr/commands/delete_collection.rb +13 -0
  17. data/lib/solr_makr/commands/execute.rb +67 -0
  18. data/lib/solr_makr/commands/fetch_collection_list.rb +17 -0
  19. data/lib/solr_makr/commands/push_config.rb +36 -0
  20. data/lib/solr_makr/commands/reload_collection.rb +13 -0
  21. data/lib/solr_makr/commands/set_up_local_configuration.rb +27 -0
  22. data/lib/solr_makr/commands/write_yaml.rb +28 -19
  23. data/lib/solr_makr/configsets.rb +15 -0
  24. data/lib/solr_makr/configsets/directory.rb +32 -0
  25. data/lib/solr_makr/configsets/get_nodes.rb +33 -0
  26. data/lib/solr_makr/configsets/install_default.rb +17 -0
  27. data/lib/solr_makr/configsets/lookup_dependent_collections.rb +20 -0
  28. data/lib/solr_makr/configsets/node.rb +56 -0
  29. data/lib/solr_makr/configsets/push_to_zookeeper.rb +19 -0
  30. data/lib/solr_makr/configsets/remote.rb +30 -0
  31. data/lib/solr_makr/configuration.rb +45 -0
  32. data/lib/solr_makr/errors/halt_execution.rb +4 -0
  33. data/lib/solr_makr/files/default-configset/README.md +1 -0
  34. data/lib/solr_makr/files/default-configset/conf/_rest_managed.json +1 -0
  35. data/lib/solr_makr/files/default-configset/conf/admin-extra.html +31 -0
  36. data/lib/solr_makr/files/default-configset/conf/currency.xml +67 -0
  37. data/lib/solr_makr/files/default-configset/conf/elevate.xml +1672 -0
  38. data/lib/solr_makr/files/default-configset/conf/lang/stopwords_en.txt +54 -0
  39. data/lib/solr_makr/files/default-configset/conf/mapping-ISOLatin1Accent.txt +2586 -0
  40. data/lib/solr_makr/files/default-configset/conf/protwords.txt +1613 -0
  41. data/lib/{files → solr_makr/files/default-configset/conf}/schema.xml +132 -40
  42. data/lib/solr_makr/files/default-configset/conf/scripts.conf +1623 -0
  43. data/lib/{files → solr_makr/files/default-configset/conf}/solrconfig.xml +294 -328
  44. data/lib/solr_makr/files/default-configset/conf/spellings.txt +1534 -0
  45. data/lib/solr_makr/files/default-configset/conf/synonyms.txt +1646 -0
  46. data/lib/solr_makr/local_configuration.rb +42 -0
  47. data/lib/solr_makr/local_configuration/cache.rb +21 -0
  48. data/lib/solr_makr/local_configuration/config_directory.rb +17 -0
  49. data/lib/solr_makr/local_configuration/directory.rb +17 -0
  50. data/lib/solr_makr/local_configuration/helper.rb +19 -0
  51. data/lib/solr_makr/local_configuration/save_settings.rb +9 -0
  52. data/lib/solr_makr/local_configuration/settings.rb +50 -0
  53. data/lib/solr_makr/meta/abstract_runner.rb +36 -0
  54. data/lib/solr_makr/meta/application_logger.rb +13 -0
  55. data/lib/solr_makr/meta/buffer_interaction.rb +41 -0
  56. data/lib/solr_makr/meta/disable_paging.rb +6 -0
  57. data/lib/solr_makr/meta/has_solr_attributes.rb +13 -0
  58. data/lib/solr_makr/meta/indifferent_options.rb +13 -0
  59. data/lib/solr_makr/meta/option_definition.rb +105 -0
  60. data/lib/solr_makr/meta/option_mapping.rb +38 -0
  61. data/lib/solr_makr/meta/pathlike.rb +9 -0
  62. data/lib/solr_makr/meta/set_global_options.rb +23 -0
  63. data/lib/solr_makr/meta/utility.rb +99 -0
  64. data/lib/solr_makr/meta/wraps_directory.rb +27 -0
  65. data/lib/solr_makr/meta/wraps_path.rb +18 -0
  66. data/lib/solr_makr/solr_api.rb +12 -0
  67. data/lib/solr_makr/solr_api/client.rb +32 -0
  68. data/lib/solr_makr/solr_api/client_macros.rb +61 -0
  69. data/lib/solr_makr/solr_api/cluster_response.rb +21 -0
  70. data/lib/solr_makr/solr_api/endpoint.rb +15 -0
  71. data/lib/solr_makr/solr_api/list_response.rb +19 -0
  72. data/lib/solr_makr/solr_api/request_params.rb +50 -0
  73. data/lib/solr_makr/solr_api/response.rb +69 -0
  74. data/lib/solr_makr/sunspot_configuration.rb +49 -0
  75. data/lib/solr_makr/version.rb +1 -1
  76. data/solr_makr.gemspec +17 -9
  77. metadata +171 -31
  78. data/bin/solr-makr +0 -7
  79. data/lib/solr_makr/commands/create_core.rb +0 -21
  80. data/lib/solr_makr/commands/destroy_core.rb +0 -17
  81. data/lib/solr_makr/commands/list_cores.rb +0 -17
  82. data/lib/solr_makr/commands/shared.rb +0 -84
  83. data/lib/solr_makr/core.rb +0 -94
  84. data/lib/solr_makr/core_status.rb +0 -56
  85. data/lib/solr_makr/solr_configuration.rb +0 -84
  86. data/lib/solr_makr/solr_request.rb +0 -23
@@ -15,10 +15,10 @@
15
15
  See the License for the specific language governing permissions and
16
16
  limitations under the License.
17
17
  -->
18
- <!--
18
+ <!--
19
19
  This is the Solr schema file. This file should be named "schema.xml" and
20
20
  should be in the conf directory under the solr home
21
- (i.e. ./solr/conf/schema.xml by default)
21
+ (i.e. ./solr/conf/schema.xml by default)
22
22
  or located where the classloader for the Solr webapp can find it.
23
23
 
24
24
  This example schema is the recommended starting point for users.
@@ -70,24 +70,96 @@
70
70
  <!-- *** This fieldType is used by Sunspot! *** -->
71
71
  <fieldType name="boolean" class="solr.BoolField" omitNorms="true"/>
72
72
  <!-- *** This fieldType is used by Sunspot! *** -->
73
- <fieldType name="date" class="solr.DateField" omitNorms="true"/>
74
- <!-- *** This fieldType is used by Sunspot! *** -->
75
- <fieldType name="sdouble" class="solr.SortableDoubleField" omitNorms="true"/>
76
- <!-- *** This fieldType is used by Sunspot! *** -->
77
- <fieldType name="sfloat" class="solr.SortableFloatField" omitNorms="true"/>
78
- <!-- *** This fieldType is used by Sunspot! *** -->
79
- <fieldType name="sint" class="solr.SortableIntField" omitNorms="true"/>
80
- <!-- *** This fieldType is used by Sunspot! *** -->
81
- <fieldType name="slong" class="solr.SortableLongField" omitNorms="true"/>
82
- <!-- *** This fieldType is used by Sunspot! *** -->
83
73
  <fieldType name="tint" class="solr.TrieIntField" omitNorms="true"/>
84
74
  <!-- *** This fieldType is used by Sunspot! *** -->
75
+ <fieldType name="tlong" class="solr.TrieLongField" omitNorms="true"/>
76
+ <!-- *** This fieldType is used by Sunspot! *** -->
85
77
  <fieldType name="tfloat" class="solr.TrieFloatField" omitNorms="true"/>
86
78
  <!-- *** This fieldType is used by Sunspot! *** -->
87
- <fieldType name="tdate" class="solr.TrieDateField" omitNorms="true"/>
79
+ <fieldType name="tdate" class="solr.TrieDateField"
80
+ omitNorms="true"/>
81
+
82
+ <fieldType name="daterange" class="solr.DateRangeField" omitNorms="true" />
88
83
 
84
+ <!-- Special field type for spell correction. Be careful about
85
+ adding filters here, as they apply *before* your values go in
86
+ the spellcheck. For example, the lowercase filter here means
87
+ all spelling suggestions will be lower case (without it,
88
+ though, you'd have duplicate suggestions for lower and proper
89
+ cased words). -->
90
+ <fieldType name="textSpell" class="solr.TextField" positionIncrementGap="100" omitNorms="true">
91
+ <analyzer>
92
+ <tokenizer class="solr.StandardTokenizerFactory"/>
93
+ <filter class="solr.StandardFilterFactory"/>
94
+ <filter class="solr.LowerCaseFilterFactory"/>
95
+ </analyzer>
96
+ </fieldType>
89
97
  <!-- A specialized field for geospatial search. If indexed, this fieldType must not be multivalued. -->
90
98
  <fieldType name="location" class="solr.LatLonType" subFieldSuffix="_coordinate"/>
99
+
100
+ <!-- group Fulltext substring matches -->
101
+ <fieldType name="user_text_with_substrings" class="solr.TextField" omitNorms="false" positionIncrementGap="100">
102
+ <analyzer type="index">
103
+ <tokenizer class="solr.WhitespaceTokenizerFactory"/>
104
+ <filter class="solr.WordDelimiterFilterFactory"
105
+ catenateWords="1"
106
+ catenateNumbers="1"
107
+ catenateAll="1"
108
+ preserveOriginal="1"
109
+ stemEnglishPossessive="0"
110
+ />
111
+ <filter class="solr.EdgeNGramFilterFactory" minGramSize="1" maxGramSize="25"/>
112
+ <filter class="solr.LowerCaseFilterFactory"/>
113
+ <filter class="solr.TrimFilterFactory"/>
114
+ </analyzer>
115
+ <analyzer type="query">
116
+ <tokenizer class="solr.WhitespaceTokenizerFactory"/>
117
+ <filter class="solr.WordDelimiterFilterFactory"
118
+ catenateWords="1"
119
+ catenateNumbers="1"
120
+ catenateAll="1"
121
+ preserveOriginal="1"
122
+ stemEnglishPossessive="0"
123
+ />
124
+ <filter class="solr.TrimFilterFactory" />
125
+ <filter class="solr.LowerCaseFilterFactory"/>
126
+ </analyzer>
127
+ </fieldType>
128
+
129
+ <fieldType name="text_with_substrings" class="solr.TextField" omitNorms="false" positionIncrementGap="100">
130
+ <analyzer type="index">
131
+ <tokenizer class="solr.WhitespaceTokenizerFactory"/>
132
+ <filter class="solr.WordDelimiterFilterFactory"
133
+ catenateWords="1"
134
+ catenateNumbers="1"
135
+ catenateAll="1"
136
+ preserveOriginal="1"
137
+ stemEnglishPossessive="0"
138
+ />
139
+ <filter class="solr.EdgeNGramFilterFactory" minGramSize="2" maxGramSize="25"/>
140
+ <filter class="solr.StopFilterFactory" ignoreCase="true"/>
141
+ <filter class="solr.LowerCaseFilterFactory"/>
142
+ <filter class="solr.TrimFilterFactory"/>
143
+ <filter class="solr.SnowballPorterFilterFactory" language="English"/>
144
+ <filter class="solr.RemoveDuplicatesTokenFilterFactory"/>
145
+ </analyzer>
146
+ <analyzer type="query">
147
+ <tokenizer class="solr.StandardTokenizerFactory"/>
148
+ <filter class="solr.WordDelimiterFilterFactory"
149
+ catenateWords="1"
150
+ catenateNumbers="1"
151
+ catenateAll="1"
152
+ preserveOriginal="1"
153
+ stemEnglishPossessive="0"
154
+ />
155
+ <filter class="solr.StopFilterFactory" ignoreCase="true"/>
156
+ <filter class="solr.LowerCaseFilterFactory"/>
157
+ <filter class="solr.TrimFilterFactory" />
158
+ <filter class="solr.SnowballPorterFilterFactory" language="English"/>
159
+ </analyzer>
160
+ </fieldType>
161
+ <!-- endgroup -->
162
+
91
163
  </types>
92
164
  <fields>
93
165
  <!-- Valid attributes for fields:
@@ -108,9 +180,9 @@
108
180
  given field.
109
181
  When using MoreLikeThis, fields used for similarity should be
110
182
  stored for best performance.
111
- termPositions: Store position information with the term vector.
183
+ termPositions: Store position information with the term vector.
112
184
  This will increase storage costs.
113
- termOffsets: Store offset information with the term vector. This
185
+ termOffsets: Store offset information with the term vector. This
114
186
  will increase storage costs.
115
187
  default: a value that should be used if no value is specified
116
188
  when adding a document.
@@ -144,45 +216,45 @@
144
216
  <!-- *** This dynamicField is used by Sunspot! *** -->
145
217
  <dynamicField name="*_bms" stored="true" type="boolean" multiValued="true" indexed="true"/>
146
218
  <!-- *** This dynamicField is used by Sunspot! *** -->
147
- <dynamicField name="*_d" stored="false" type="date" multiValued="false" indexed="true"/>
219
+ <dynamicField name="*_d" stored="false" type="tdate" multiValued="false" indexed="true"/>
148
220
  <!-- *** This dynamicField is used by Sunspot! *** -->
149
- <dynamicField name="*_dm" stored="false" type="date" multiValued="true" indexed="true"/>
221
+ <dynamicField name="*_dm" stored="false" type="tdate" multiValued="true" indexed="true"/>
150
222
  <!-- *** This dynamicField is used by Sunspot! *** -->
151
- <dynamicField name="*_ds" stored="true" type="date" multiValued="false" indexed="true"/>
223
+ <dynamicField name="*_ds" stored="true" type="tdate" multiValued="false" indexed="true"/>
152
224
  <!-- *** This dynamicField is used by Sunspot! *** -->
153
- <dynamicField name="*_dms" stored="true" type="date" multiValued="true" indexed="true"/>
225
+ <dynamicField name="*_dms" stored="true" type="tdate" multiValued="true" indexed="true"/>
154
226
  <!-- *** This dynamicField is used by Sunspot! *** -->
155
- <dynamicField name="*_e" stored="false" type="sdouble" multiValued="false" indexed="true"/>
227
+ <dynamicField name="*_e" stored="false" type="tdouble" multiValued="false" indexed="true"/>
156
228
  <!-- *** This dynamicField is used by Sunspot! *** -->
157
- <dynamicField name="*_em" stored="false" type="sdouble" multiValued="true" indexed="true"/>
229
+ <dynamicField name="*_em" stored="false" type="tdouble" multiValued="true" indexed="true"/>
158
230
  <!-- *** This dynamicField is used by Sunspot! *** -->
159
- <dynamicField name="*_es" stored="true" type="sdouble" multiValued="false" indexed="true"/>
231
+ <dynamicField name="*_es" stored="true" type="tdouble" multiValued="false" indexed="true"/>
160
232
  <!-- *** This dynamicField is used by Sunspot! *** -->
161
- <dynamicField name="*_ems" stored="true" type="sdouble" multiValued="true" indexed="true"/>
233
+ <dynamicField name="*_ems" stored="true" type="tdouble" multiValued="true" indexed="true"/>
162
234
  <!-- *** This dynamicField is used by Sunspot! *** -->
163
- <dynamicField name="*_f" stored="false" type="sfloat" multiValued="false" indexed="true"/>
235
+ <dynamicField name="*_f" stored="false" type="tfloat" multiValued="false" indexed="true"/>
164
236
  <!-- *** This dynamicField is used by Sunspot! *** -->
165
- <dynamicField name="*_fm" stored="false" type="sfloat" multiValued="true" indexed="true"/>
237
+ <dynamicField name="*_fm" stored="false" type="tfloat" multiValued="true" indexed="true"/>
166
238
  <!-- *** This dynamicField is used by Sunspot! *** -->
167
- <dynamicField name="*_fs" stored="true" type="sfloat" multiValued="false" indexed="true"/>
239
+ <dynamicField name="*_fs" stored="true" type="tfloat" multiValued="false" indexed="true"/>
168
240
  <!-- *** This dynamicField is used by Sunspot! *** -->
169
- <dynamicField name="*_fms" stored="true" type="sfloat" multiValued="true" indexed="true"/>
241
+ <dynamicField name="*_fms" stored="true" type="tfloat" multiValued="true" indexed="true"/>
170
242
  <!-- *** This dynamicField is used by Sunspot! *** -->
171
- <dynamicField name="*_i" stored="false" type="sint" multiValued="false" indexed="true"/>
243
+ <dynamicField name="*_i" stored="false" type="tint" multiValued="false" indexed="true"/>
172
244
  <!-- *** This dynamicField is used by Sunspot! *** -->
173
- <dynamicField name="*_im" stored="false" type="sint" multiValued="true" indexed="true"/>
245
+ <dynamicField name="*_im" stored="false" type="tint" multiValued="true" indexed="true"/>
174
246
  <!-- *** This dynamicField is used by Sunspot! *** -->
175
- <dynamicField name="*_is" stored="true" type="sint" multiValued="false" indexed="true"/>
247
+ <dynamicField name="*_is" stored="true" type="tint" multiValued="false" indexed="true"/>
176
248
  <!-- *** This dynamicField is used by Sunspot! *** -->
177
- <dynamicField name="*_ims" stored="true" type="sint" multiValued="true" indexed="true"/>
249
+ <dynamicField name="*_ims" stored="true" type="tint" multiValued="true" indexed="true"/>
178
250
  <!-- *** This dynamicField is used by Sunspot! *** -->
179
- <dynamicField name="*_l" stored="false" type="slong" multiValued="false" indexed="true"/>
251
+ <dynamicField name="*_l" stored="false" type="tlong" multiValued="false" indexed="true"/>
180
252
  <!-- *** This dynamicField is used by Sunspot! *** -->
181
- <dynamicField name="*_lm" stored="false" type="slong" multiValued="true" indexed="true"/>
253
+ <dynamicField name="*_lm" stored="false" type="tlong" multiValued="true" indexed="true"/>
182
254
  <!-- *** This dynamicField is used by Sunspot! *** -->
183
- <dynamicField name="*_ls" stored="true" type="slong" multiValued="false" indexed="true"/>
255
+ <dynamicField name="*_ls" stored="true" type="tlong" multiValued="false" indexed="true"/>
184
256
  <!-- *** This dynamicField is used by Sunspot! *** -->
185
- <dynamicField name="*_lms" stored="true" type="slong" multiValued="true" indexed="true"/>
257
+ <dynamicField name="*_lms" stored="true" type="tlong" multiValued="true" indexed="true"/>
186
258
  <!-- *** This dynamicField is used by Sunspot! *** -->
187
259
  <dynamicField name="*_s" stored="false" type="string" multiValued="false" indexed="true"/>
188
260
  <!-- *** This dynamicField is used by Sunspot! *** -->
@@ -227,6 +299,14 @@
227
299
  <dynamicField name="*_ets" stored="true" termVectors="true" type="tdouble" multiValued="false" indexed="true"/>
228
300
  <!-- *** This dynamicField is used by Sunspot! *** -->
229
301
  <dynamicField name="*_etms" stored="true" termVectors="true" type="tdouble" multiValued="true" indexed="true"/>
302
+ <!-- *** This dynamicField is used by Sunspot! *** -->
303
+ <dynamicField name="*_dr" stored="false" type="daterange" multiValued="false" indexed="true" />
304
+ <!-- *** This dynamicField is used by Sunspot! *** -->
305
+ <dynamicField name="*_drm" stored="false" type="daterange" multiValued="true" indexed="true" />
306
+ <!-- *** This dynamicField is used by Sunspot! *** -->
307
+ <dynamicField name="*_drs" stored="true" type="daterange" multiValued="false" indexed="true" />
308
+ <!-- *** This dynamicField is used by Sunspot! *** -->
309
+ <dynamicField name="*_drms" stored="true" type="daterange" multiValued="true" indexed="true" />
230
310
 
231
311
  <!-- Type used to index the lat and lon components for the "location" FieldType -->
232
312
  <dynamicField name="*_coordinate" type="tdouble" indexed="true" stored="false" multiValued="false"/>
@@ -236,11 +316,16 @@
236
316
  <dynamicField name="*_llm" stored="false" type="location" multiValued="true" indexed="true"/>
237
317
  <dynamicField name="*_lls" stored="true" type="location" multiValued="false" indexed="true"/>
238
318
  <dynamicField name="*_llms" stored="true" type="location" multiValued="true" indexed="true"/>
239
-
240
- <!-- required by Solr 4 -->
241
- <field name="_version_" type="string" indexed="true" stored="true" multiValued="false" />
319
+ <field name="textSpell" stored="false" type="textSpell" multiValued="true" indexed="true"/>
320
+
321
+ <!-- required by Solr 5 -->
322
+ <field name="_version_" type="tlong" indexed="true" stored="true" multiValued="false" />
323
+
324
+ <!-- Fulltext substring matches -->
325
+ <dynamicField name="*_textsubstr" stored="false" type="text_with_substrings" multiValued="true" indexed="true"/>
326
+ <dynamicField name="*_usertextsubstr" stored="false" type="user_text_with_substrings" multiValued="true" indexed="true"/>
242
327
  </fields>
243
-
328
+
244
329
  <!-- Field to use to determine and enforce document uniqueness.
245
330
  Unless this field is marked with required="false", it will be a required field
246
331
  -->
@@ -251,5 +336,12 @@
251
336
  <solrQueryParser defaultOperator="AND"/>
252
337
  <!-- copyField commands copy one field to another at the time a document
253
338
  is added to the index. It's used either to index the same field differently,
254
- or to add multiple fields to the same field for easier/faster searching. -->
339
+ or to add multiple fields to the same field for easier/faster
340
+ searching. -->
341
+
342
+ <!-- Use copyField to copy the fields you want to run spell checking
343
+ on into one field. For example: -->
344
+ <copyField source="*_text" dest="textSpell" />
345
+ <copyField source="*_s" dest="textSpell" />
255
346
  </schema>
347
+
@@ -0,0 +1,1623 @@
1
+
2
+
3
+
4
+
5
+ <!DOCTYPE html>
6
+ <html lang="en" class="">
7
+ <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# object: http://ogp.me/ns/object# article: http://ogp.me/ns/article# profile: http://ogp.me/ns/profile#">
8
+ <meta charset='utf-8'>
9
+
10
+ <link crossorigin="anonymous" href="https://assets-cdn.github.com/assets/frameworks-3c1694fab1568340f2e75b26efa1f55d97c5153364a7357e9e1104c718ff1a2f.css" media="all" rel="stylesheet" />
11
+ <link crossorigin="anonymous" href="https://assets-cdn.github.com/assets/github-3e95d73eb454e0099947df00d91ab0dbfc6b10be69dd5daf5de7aeb676580d20.css" media="all" rel="stylesheet" />
12
+
13
+
14
+ <link crossorigin="anonymous" href="https://assets-cdn.github.com/assets/site-c4b4365da282e51c06e107368db8502a2ecf82e64094d29d791b797372212de2.css" media="all" rel="stylesheet" />
15
+
16
+
17
+ <link as="script" href="https://assets-cdn.github.com/assets/frameworks-851de55546d87ad786f3efef3b5634f8f8a40d67fa6d44f854d9e99767e9c9a2.js" rel="preload" />
18
+
19
+ <link as="script" href="https://assets-cdn.github.com/assets/github-9a6de3c5d3dd93cd9d6638a6d1bcc27eb7cbf9afdd082771ea900f9996597a24.js" rel="preload" />
20
+
21
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
22
+ <meta http-equiv="Content-Language" content="en">
23
+ <meta name="viewport" content="width=1020">
24
+
25
+
26
+ <title>sunspot/scripts.conf at master · sunspot/sunspot · GitHub</title>
27
+ <link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="GitHub">
28
+ <link rel="fluid-icon" href="https://github.com/fluidicon.png" title="GitHub">
29
+ <link rel="apple-touch-icon" href="/apple-touch-icon.png">
30
+ <link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-57x57.png">
31
+ <link rel="apple-touch-icon" sizes="60x60" href="/apple-touch-icon-60x60.png">
32
+ <link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-72x72.png">
33
+ <link rel="apple-touch-icon" sizes="76x76" href="/apple-touch-icon-76x76.png">
34
+ <link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114x114.png">
35
+ <link rel="apple-touch-icon" sizes="120x120" href="/apple-touch-icon-120x120.png">
36
+ <link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-144x144.png">
37
+ <link rel="apple-touch-icon" sizes="152x152" href="/apple-touch-icon-152x152.png">
38
+ <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon-180x180.png">
39
+ <meta property="fb:app_id" content="1401488693436528">
40
+
41
+ <meta content="https://avatars0.githubusercontent.com/u/1027744?v=3&amp;s=400" name="twitter:image:src" /><meta content="@github" name="twitter:site" /><meta content="summary" name="twitter:card" /><meta content="sunspot/sunspot" name="twitter:title" /><meta content="sunspot - Solr-powered search for Ruby objects" name="twitter:description" />
42
+ <meta content="https://avatars0.githubusercontent.com/u/1027744?v=3&amp;s=400" property="og:image" /><meta content="GitHub" property="og:site_name" /><meta content="object" property="og:type" /><meta content="sunspot/sunspot" property="og:title" /><meta content="https://github.com/sunspot/sunspot" property="og:url" /><meta content="sunspot - Solr-powered search for Ruby objects" property="og:description" />
43
+ <meta name="browser-stats-url" content="https://api.github.com/_private/browser/stats">
44
+ <meta name="browser-errors-url" content="https://api.github.com/_private/browser/errors">
45
+ <link rel="assets" href="https://assets-cdn.github.com/">
46
+
47
+ <meta name="pjax-timeout" content="1000">
48
+
49
+
50
+ <meta name="msapplication-TileImage" content="/windows-tile.png">
51
+ <meta name="msapplication-TileColor" content="#ffffff">
52
+ <meta name="selected-link" value="repo_source" data-pjax-transient>
53
+
54
+ <meta name="google-site-verification" content="KT5gs8h0wvaagLKAVWq8bbeNwnZZK1r1XQysX3xurLU">
55
+ <meta name="google-site-verification" content="ZzhVyEFwb7w3e0-uOTltm8Jsck2F5StVihD0exw2fsA">
56
+ <meta name="google-analytics" content="UA-3769691-2">
57
+
58
+ <meta content="collector.githubapp.com" name="octolytics-host" /><meta content="github" name="octolytics-app-id" /><meta content="49257F0F:3A85:427DFDC:573748C1" name="octolytics-dimension-request_id" />
59
+ <meta content="/&lt;user-name&gt;/&lt;repo-name&gt;/blob/show" data-pjax-transient="true" name="analytics-location" />
60
+
61
+
62
+
63
+ <meta class="js-ga-set" name="dimension1" content="Logged Out">
64
+
65
+
66
+
67
+ <meta name="hostname" content="github.com">
68
+ <meta name="user-login" content="">
69
+
70
+ <meta name="expected-hostname" content="github.com">
71
+ <meta name="js-proxy-site-detection-payload" content="ZjU4NTExNmY2MzZhODRhZjM0NDMyYmRlMDNhODYxZWQzZDZlZTk2MmJmNmEyMDQ4YWNiNjE1MjVjM2Q4ODcyN3x7InJlbW90ZV9hZGRyZXNzIjoiNzMuMzcuMTI3LjE1IiwicmVxdWVzdF9pZCI6IjQ5MjU3RjBGOjNBODU6NDI3REZEQzo1NzM3NDhDMSIsInRpbWVzdGFtcCI6MTQ2MzI0MDg5N30=">
72
+
73
+
74
+ <link rel="mask-icon" href="https://assets-cdn.github.com/pinned-octocat.svg" color="#4078c0">
75
+ <link rel="icon" type="image/x-icon" href="https://assets-cdn.github.com/favicon.ico">
76
+
77
+ <meta content="6d64c53b581244feb048aa56aa7cf0096cdf4285" name="form-nonce" />
78
+
79
+ <meta http-equiv="x-pjax-version" content="a4cb11b734331d95088899b1377fb05e">
80
+
81
+
82
+
83
+ <meta name="description" content="sunspot - Solr-powered search for Ruby objects">
84
+ <meta name="go-import" content="github.com/sunspot/sunspot git https://github.com/sunspot/sunspot.git">
85
+
86
+ <meta content="1027744" name="octolytics-dimension-user_id" /><meta content="sunspot" name="octolytics-dimension-user_login" /><meta content="62509" name="octolytics-dimension-repository_id" /><meta content="sunspot/sunspot" name="octolytics-dimension-repository_nwo" /><meta content="true" name="octolytics-dimension-repository_public" /><meta content="false" name="octolytics-dimension-repository_is_fork" /><meta content="62509" name="octolytics-dimension-repository_network_root_id" /><meta content="sunspot/sunspot" name="octolytics-dimension-repository_network_root_nwo" />
87
+ <link href="https://github.com/sunspot/sunspot/commits/master.atom" rel="alternate" title="Recent Commits to sunspot:master" type="application/atom+xml">
88
+
89
+
90
+ <link rel="canonical" href="https://github.com/sunspot/sunspot/blob/master/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf" data-pjax-transient>
91
+ </head>
92
+
93
+
94
+ <body class="logged-out env-production linux vis-public page-blob">
95
+ <div id="js-pjax-loader-bar" class="pjax-loader-bar"></div>
96
+ <a href="#start-of-content" tabindex="1" class="accessibility-aid js-skip-to-content">Skip to content</a>
97
+
98
+
99
+
100
+ <div class="unsupported-browser">
101
+ <div class="container clearfix">
102
+ <!-- </textarea> --><!-- '"` --><form accept-charset="UTF-8" action="/site/dismiss_unsupported_browser" data-form-nonce="6d64c53b581244feb048aa56aa7cf0096cdf4285" method="post"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="&#x2713;" /><input name="authenticity_token" type="hidden" value="NXHN1WcFRXALWQI7yzu+psoepnCzuPzFztB8u2hhOUIY1GLSbscs0eaGi+AhcIGrodX3H++DKEFO7yo1XGSmXg==" /></div>
103
+ <button class="btn btn-danger">Ignore</button>
104
+ </form> <a href="https://help.github.com/articles/supported-browsers" class="btn">Learn more</a>
105
+
106
+ <h5>Please note that GitHub no longer supports old versions of Firefox.</h5>
107
+ <p>We recommend upgrading to the latest <a href="https://www.apple.com/safari/">Safari</a>, <a href="https://chrome.google.com">Google Chrome</a>, or <a href="https://mozilla.org/firefox/">Firefox</a>.</p>
108
+ </div>
109
+ </div>
110
+
111
+
112
+
113
+
114
+ <header class="site-header js-details-container" role="banner">
115
+ <div class="container-responsive">
116
+ <a class="header-logo-invertocat" href="https://github.com/" aria-label="Homepage" data-ga-click="(Logged out) Header, go to homepage, icon:logo-wordmark">
117
+ <svg aria-hidden="true" class="octicon octicon-mark-github" height="32" version="1.1" viewBox="0 0 16 16" width="32"><path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59 0.4 0.07 0.55-0.17 0.55-0.38 0-0.19-0.01-0.82-0.01-1.49-2.01 0.37-2.53-0.49-2.69-0.94-0.09-0.23-0.48-0.94-0.82-1.13-0.28-0.15-0.68-0.52-0.01-0.53 0.63-0.01 1.08 0.58 1.23 0.82 0.72 1.21 1.87 0.87 2.33 0.66 0.07-0.52 0.28-0.87 0.51-1.07-1.78-0.2-3.64-0.89-3.64-3.95 0-0.87 0.31-1.59 0.82-2.15-0.08-0.2-0.36-1.02 0.08-2.12 0 0 0.67-0.21 2.2 0.82 0.64-0.18 1.32-0.27 2-0.27 0.68 0 1.36 0.09 2 0.27 1.53-1.04 2.2-0.82 2.2-0.82 0.44 1.1 0.16 1.92 0.08 2.12 0.51 0.56 0.82 1.27 0.82 2.15 0 3.07-1.87 3.75-3.65 3.95 0.29 0.25 0.54 0.73 0.54 1.48 0 1.07-0.01 1.93-0.01 2.2 0 0.21 0.15 0.46 0.55 0.38C13.71 14.53 16 11.53 16 8 16 3.58 12.42 0 8 0z"></path></svg>
118
+ </a>
119
+
120
+ <button class="btn-link right site-header-toggle js-details-target" type="button" aria-label="Toggle navigation">
121
+ <svg aria-hidden="true" class="octicon octicon-three-bars" height="24" version="1.1" viewBox="0 0 12 16" width="18"><path d="M11.41 9H0.59c-0.59 0-0.59-0.41-0.59-1s0-1 0.59-1h10.81c0.59 0 0.59 0.41 0.59 1s0 1-0.59 1z m0-4H0.59c-0.59 0-0.59-0.41-0.59-1s0-1 0.59-1h10.81c0.59 0 0.59 0.41 0.59 1s0 1-0.59 1zM0.59 11h10.81c0.59 0 0.59 0.41 0.59 1s0 1-0.59 1H0.59c-0.59 0-0.59-0.41-0.59-1s0-1 0.59-1z"></path></svg>
122
+ </button>
123
+
124
+ <div class="site-header-menu">
125
+ <nav class="site-header-nav site-header-nav-main">
126
+ <a href="/personal" class="js-selected-navigation-item nav-item nav-item-personal" data-ga-click="Header, click, Nav menu - item:personal" data-selected-links="/personal /personal">
127
+ Personal
128
+ </a> <a href="/open-source" class="js-selected-navigation-item nav-item nav-item-opensource" data-ga-click="Header, click, Nav menu - item:opensource" data-selected-links="/open-source /open-source">
129
+ Open source
130
+ </a> <a href="/business" class="js-selected-navigation-item nav-item nav-item-business" data-ga-click="Header, click, Nav menu - item:business" data-selected-links="/business /business/features /business/customers /business">
131
+ Business
132
+ </a> <a href="/explore" class="js-selected-navigation-item nav-item nav-item-explore" data-ga-click="Header, click, Nav menu - item:explore" data-selected-links="/explore /trending /trending/developers /integrations /integrations/feature/code /integrations/feature/collaborate /integrations/feature/ship /explore">
133
+ Explore
134
+ </a> </nav>
135
+
136
+ <div class="site-header-actions">
137
+ <a class="btn btn-primary site-header-actions-btn" href="/join?source=header-repo" data-ga-click="(Logged out) Header, clicked Sign up, text:sign-up">Sign up</a>
138
+ <a class="btn site-header-actions-btn mr-2" href="/login?return_to=%2Fsunspot%2Fsunspot%2Fblob%2Fmaster%2Fsunspot_solr%2Fsolr%2Fsolr%2Fconfigsets%2Fsunspot%2Fconf%2Fscripts.conf" data-ga-click="(Logged out) Header, clicked Sign in, text:sign-in">Sign in</a>
139
+ </div>
140
+
141
+ <nav class="site-header-nav site-header-nav-secondary">
142
+ <a class="nav-item" href="/pricing">Pricing</a>
143
+ <a class="nav-item" href="/blog">Blog</a>
144
+ <a class="nav-item" href="https://help.github.com">Support</a>
145
+ <a class="nav-item header-search-link" href="https://github.com/search">Search GitHub</a>
146
+ <div class="header-search scoped-search site-scoped-search js-site-search" role="search">
147
+ <!-- </textarea> --><!-- '"` --><form accept-charset="UTF-8" action="/sunspot/sunspot/search" class="js-site-search-form" data-scoped-search-url="/sunspot/sunspot/search" data-unscoped-search-url="/search" method="get"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="&#x2713;" /></div>
148
+ <label class="form-control header-search-wrapper js-chromeless-input-container">
149
+ <div class="header-search-scope">This repository</div>
150
+ <input type="text"
151
+ class="form-control header-search-input js-site-search-focus js-site-search-field is-clearable"
152
+ data-hotkey="s"
153
+ name="q"
154
+ placeholder="Search"
155
+ aria-label="Search this repository"
156
+ data-unscoped-placeholder="Search GitHub"
157
+ data-scoped-placeholder="Search"
158
+ tabindex="1"
159
+ autocapitalize="off">
160
+ </label>
161
+ </form></div>
162
+
163
+ </nav>
164
+ </div>
165
+ </div>
166
+ </header>
167
+
168
+
169
+
170
+ <div id="start-of-content" class="accessibility-aid"></div>
171
+
172
+ <div id="js-flash-container">
173
+ </div>
174
+
175
+
176
+ <div role="main" class="main-content">
177
+ <div itemscope itemtype="http://schema.org/SoftwareSourceCode">
178
+ <div id="js-repo-pjax-container" data-pjax-container>
179
+
180
+ <div class="pagehead repohead instapaper_ignore readability-menu experiment-repo-nav">
181
+ <div class="container repohead-details-container">
182
+
183
+
184
+
185
+ <ul class="pagehead-actions">
186
+
187
+ <li>
188
+ <a href="/login?return_to=%2Fsunspot%2Fsunspot"
189
+ class="btn btn-sm btn-with-count tooltipped tooltipped-n"
190
+ aria-label="You must be signed in to watch a repository" rel="nofollow">
191
+ <svg aria-hidden="true" class="octicon octicon-eye" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path d="M8.06 2C3 2 0 8 0 8s3 6 8.06 6c4.94 0 7.94-6 7.94-6S13 2 8.06 2z m-0.06 10c-2.2 0-4-1.78-4-4 0-2.2 1.8-4 4-4 2.22 0 4 1.8 4 4 0 2.22-1.78 4-4 4z m2-4c0 1.11-0.89 2-2 2s-2-0.89-2-2 0.89-2 2-2 2 0.89 2 2z"></path></svg>
192
+ Watch
193
+ </a>
194
+ <a class="social-count" href="/sunspot/sunspot/watchers">
195
+ 28
196
+ </a>
197
+
198
+ </li>
199
+
200
+ <li>
201
+ <a href="/login?return_to=%2Fsunspot%2Fsunspot"
202
+ class="btn btn-sm btn-with-count tooltipped tooltipped-n"
203
+ aria-label="You must be signed in to star a repository" rel="nofollow">
204
+ <svg aria-hidden="true" class="octicon octicon-star" height="16" version="1.1" viewBox="0 0 14 16" width="14"><path d="M14 6l-4.9-0.64L7 1 4.9 5.36 0 6l3.6 3.26L2.67 14l4.33-2.33 4.33 2.33L10.4 9.26 14 6z"></path></svg>
205
+ Star
206
+ </a>
207
+
208
+ <a class="social-count js-social-count" href="/sunspot/sunspot/stargazers">
209
+ 2,541
210
+ </a>
211
+
212
+ </li>
213
+
214
+ <li>
215
+ <a href="/login?return_to=%2Fsunspot%2Fsunspot"
216
+ class="btn btn-sm btn-with-count tooltipped tooltipped-n"
217
+ aria-label="You must be signed in to fork a repository" rel="nofollow">
218
+ <svg aria-hidden="true" class="octicon octicon-repo-forked" height="16" version="1.1" viewBox="0 0 10 16" width="10"><path d="M8 1c-1.11 0-2 0.89-2 2 0 0.73 0.41 1.38 1 1.72v1.28L5 8 3 6v-1.28c0.59-0.34 1-0.98 1-1.72 0-1.11-0.89-2-2-2S0 1.89 0 3c0 0.73 0.41 1.38 1 1.72v1.78l3 3v1.78c-0.59 0.34-1 0.98-1 1.72 0 1.11 0.89 2 2 2s2-0.89 2-2c0-0.73-0.41-1.38-1-1.72V9.5l3-3V4.72c0.59-0.34 1-0.98 1-1.72 0-1.11-0.89-2-2-2zM2 4.2c-0.66 0-1.2-0.55-1.2-1.2s0.55-1.2 1.2-1.2 1.2 0.55 1.2 1.2-0.55 1.2-1.2 1.2z m3 10c-0.66 0-1.2-0.55-1.2-1.2s0.55-1.2 1.2-1.2 1.2 0.55 1.2 1.2-0.55 1.2-1.2 1.2z m3-10c-0.66 0-1.2-0.55-1.2-1.2s0.55-1.2 1.2-1.2 1.2 0.55 1.2 1.2-0.55 1.2-1.2 1.2z"></path></svg>
219
+ Fork
220
+ </a>
221
+
222
+ <a href="/sunspot/sunspot/network" class="social-count">
223
+ 807
224
+ </a>
225
+ </li>
226
+ </ul>
227
+
228
+ <h1 class="entry-title public ">
229
+ <svg aria-hidden="true" class="octicon octicon-repo" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M4 9h-1v-1h1v1z m0-3h-1v1h1v-1z m0-2h-1v1h1v-1z m0-2h-1v1h1v-1z m8-1v12c0 0.55-0.45 1-1 1H6v2l-1.5-1.5-1.5 1.5V14H1c-0.55 0-1-0.45-1-1V1C0 0.45 0.45 0 1 0h10c0.55 0 1 0.45 1 1z m-1 10H1v2h2v-1h3v1h5V11z m0-10H2v9h9V1z"></path></svg>
230
+ <span class="author" itemprop="author"><a href="/sunspot" class="url fn" rel="author">sunspot</a></span><!--
231
+ --><span class="path-divider">/</span><!--
232
+ --><strong itemprop="name"><a href="/sunspot/sunspot" data-pjax="#js-repo-pjax-container">sunspot</a></strong>
233
+
234
+ </h1>
235
+
236
+ </div>
237
+ <div class="container">
238
+
239
+ <nav class="reponav js-repo-nav js-sidenav-container-pjax"
240
+ itemscope
241
+ itemtype="http://schema.org/BreadcrumbList"
242
+ role="navigation"
243
+ data-pjax="#js-repo-pjax-container">
244
+
245
+ <span itemscope itemtype="http://schema.org/ListItem" itemprop="itemListElement">
246
+ <a href="/sunspot/sunspot" aria-selected="true" class="js-selected-navigation-item selected reponav-item" data-hotkey="g c" data-selected-links="repo_source repo_downloads repo_commits repo_releases repo_tags repo_branches /sunspot/sunspot" itemprop="url">
247
+ <svg aria-hidden="true" class="octicon octicon-code" height="16" version="1.1" viewBox="0 0 14 16" width="14"><path d="M9.5 3l-1.5 1.5 3.5 3.5L8 11.5l1.5 1.5 4.5-5L9.5 3zM4.5 3L0 8l4.5 5 1.5-1.5L2.5 8l3.5-3.5L4.5 3z"></path></svg>
248
+ <span itemprop="name">Code</span>
249
+ <meta itemprop="position" content="1">
250
+ </a> </span>
251
+
252
+ <span itemscope itemtype="http://schema.org/ListItem" itemprop="itemListElement">
253
+ <a href="/sunspot/sunspot/issues" class="js-selected-navigation-item reponav-item" data-hotkey="g i" data-selected-links="repo_issues repo_labels repo_milestones /sunspot/sunspot/issues" itemprop="url">
254
+ <svg aria-hidden="true" class="octicon octicon-issue-opened" height="16" version="1.1" viewBox="0 0 14 16" width="14"><path d="M7 2.3c3.14 0 5.7 2.56 5.7 5.7S10.14 13.7 7 13.7 1.3 11.14 1.3 8s2.56-5.7 5.7-5.7m0-1.3C3.14 1 0 4.14 0 8s3.14 7 7 7 7-3.14 7-7S10.86 1 7 1z m1 3H6v5h2V4z m0 6H6v2h2V10z"></path></svg>
255
+ <span itemprop="name">Issues</span>
256
+ <span class="counter">168</span>
257
+ <meta itemprop="position" content="2">
258
+ </a> </span>
259
+
260
+ <span itemscope itemtype="http://schema.org/ListItem" itemprop="itemListElement">
261
+ <a href="/sunspot/sunspot/pulls" class="js-selected-navigation-item reponav-item" data-hotkey="g p" data-selected-links="repo_pulls /sunspot/sunspot/pulls" itemprop="url">
262
+ <svg aria-hidden="true" class="octicon octicon-git-pull-request" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M11 11.28c0-1.73 0-6.28 0-6.28-0.03-0.78-0.34-1.47-0.94-2.06s-1.28-0.91-2.06-0.94c0 0-1.02 0-1 0V0L4 3l3 3V4h1c0.27 0.02 0.48 0.11 0.69 0.31s0.3 0.42 0.31 0.69v6.28c-0.59 0.34-1 0.98-1 1.72 0 1.11 0.89 2 2 2s2-0.89 2-2c0-0.73-0.41-1.38-1-1.72z m-1 2.92c-0.66 0-1.2-0.55-1.2-1.2s0.55-1.2 1.2-1.2 1.2 0.55 1.2 1.2-0.55 1.2-1.2 1.2zM4 3c0-1.11-0.89-2-2-2S0 1.89 0 3c0 0.73 0.41 1.38 1 1.72 0 1.55 0 5.56 0 6.56-0.59 0.34-1 0.98-1 1.72 0 1.11 0.89 2 2 2s2-0.89 2-2c0-0.73-0.41-1.38-1-1.72V4.72c0.59-0.34 1-0.98 1-1.72z m-0.8 10c0 0.66-0.55 1.2-1.2 1.2s-1.2-0.55-1.2-1.2 0.55-1.2 1.2-1.2 1.2 0.55 1.2 1.2z m-1.2-8.8c-0.66 0-1.2-0.55-1.2-1.2s0.55-1.2 1.2-1.2 1.2 0.55 1.2 1.2-0.55 1.2-1.2 1.2z"></path></svg>
263
+ <span itemprop="name">Pull requests</span>
264
+ <span class="counter">38</span>
265
+ <meta itemprop="position" content="3">
266
+ </a> </span>
267
+
268
+ <a href="/sunspot/sunspot/wiki" class="js-selected-navigation-item reponav-item" data-hotkey="g w" data-selected-links="repo_wiki /sunspot/sunspot/wiki">
269
+ <svg aria-hidden="true" class="octicon octicon-book" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path d="M2 5h4v1H2v-1z m0 3h4v-1H2v1z m0 2h4v-1H2v1z m11-5H9v1h4v-1z m0 2H9v1h4v-1z m0 2H9v1h4v-1z m2-6v9c0 0.55-0.45 1-1 1H8.5l-1 1-1-1H1c-0.55 0-1-0.45-1-1V3c0-0.55 0.45-1 1-1h5.5l1 1 1-1h5.5c0.55 0 1 0.45 1 1z m-8 0.5l-0.5-0.5H1v9h6V3.5z m7-0.5H8.5l-0.5 0.5v8.5h6V3z"></path></svg>
270
+ Wiki
271
+ </a>
272
+
273
+ <a href="/sunspot/sunspot/pulse" class="js-selected-navigation-item reponav-item" data-selected-links="pulse /sunspot/sunspot/pulse">
274
+ <svg aria-hidden="true" class="octicon octicon-pulse" height="16" version="1.1" viewBox="0 0 14 16" width="14"><path d="M11.5 8L8.8 5.4 6.6 8.5 5.5 1.6 2.38 8H0V10h3.6L4.5 8.2l0.9 5.4L9 8.5l1.6 1.5H14V8H11.5z"></path></svg>
275
+ Pulse
276
+ </a>
277
+ <a href="/sunspot/sunspot/graphs" class="js-selected-navigation-item reponav-item" data-selected-links="repo_graphs repo_contributors /sunspot/sunspot/graphs">
278
+ <svg aria-hidden="true" class="octicon octicon-graph" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path d="M16 14v1H0V0h1v14h15z m-11-1H3V8h2v5z m4 0H7V3h2v10z m4 0H11V6h2v7z"></path></svg>
279
+ Graphs
280
+ </a>
281
+
282
+ </nav>
283
+
284
+ </div>
285
+ </div>
286
+
287
+ <div class="container new-discussion-timeline experiment-repo-nav">
288
+ <div class="repository-content">
289
+
290
+
291
+
292
+ <a href="/sunspot/sunspot/blob/964ecd0ed0a0c949f399d93cba42021c92cf6062/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf" class="hidden js-permalink-shortcut" data-hotkey="y">Permalink</a>
293
+
294
+ <!-- blob contrib key: blob_contributors:v21:2723241096bd55ef68c779528b478ba3 -->
295
+
296
+ <div class="file-navigation js-zeroclipboard-container">
297
+
298
+ <div class="select-menu branch-select-menu js-menu-container js-select-menu left">
299
+ <button class="btn btn-sm select-menu-button js-menu-target css-truncate" data-hotkey="w"
300
+ title="master"
301
+ type="button" aria-label="Switch branches or tags" tabindex="0" aria-haspopup="true">
302
+ <i>Branch:</i>
303
+ <span class="js-select-button css-truncate-target">master</span>
304
+ </button>
305
+
306
+ <div class="select-menu-modal-holder js-menu-content js-navigation-container" data-pjax aria-hidden="true">
307
+
308
+ <div class="select-menu-modal">
309
+ <div class="select-menu-header">
310
+ <svg aria-label="Close" class="octicon octicon-x js-menu-close" height="16" role="img" version="1.1" viewBox="0 0 12 16" width="12"><path d="M7.48 8l3.75 3.75-1.48 1.48-3.75-3.75-3.75 3.75-1.48-1.48 3.75-3.75L0.77 4.25l1.48-1.48 3.75 3.75 3.75-3.75 1.48 1.48-3.75 3.75z"></path></svg>
311
+ <span class="select-menu-title">Switch branches/tags</span>
312
+ </div>
313
+
314
+ <div class="select-menu-filters">
315
+ <div class="select-menu-text-filter">
316
+ <input type="text" aria-label="Filter branches/tags" id="context-commitish-filter-field" class="form-control js-filterable-field js-navigation-enable" placeholder="Filter branches/tags">
317
+ </div>
318
+ <div class="select-menu-tabs">
319
+ <ul>
320
+ <li class="select-menu-tab">
321
+ <a href="#" data-tab-filter="branches" data-filter-placeholder="Filter branches/tags" class="js-select-menu-tab" role="tab">Branches</a>
322
+ </li>
323
+ <li class="select-menu-tab">
324
+ <a href="#" data-tab-filter="tags" data-filter-placeholder="Find a tag…" class="js-select-menu-tab" role="tab">Tags</a>
325
+ </li>
326
+ </ul>
327
+ </div>
328
+ </div>
329
+
330
+ <div class="select-menu-list select-menu-tab-bucket js-select-menu-tab-bucket" data-tab-filter="branches" role="menu">
331
+
332
+ <div data-filterable-for="context-commitish-filter-field" data-filterable-type="substring">
333
+
334
+
335
+ <a class="select-menu-item js-navigation-item js-navigation-open "
336
+ href="/sunspot/sunspot/blob/1-3-stable/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
337
+ data-name="1-3-stable"
338
+ data-skip-pjax="true"
339
+ rel="nofollow">
340
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
341
+ <span class="select-menu-item-text css-truncate-target js-select-menu-filter-text" title="1-3-stable">
342
+ 1-3-stable
343
+ </span>
344
+ </a>
345
+ <a class="select-menu-item js-navigation-item js-navigation-open "
346
+ href="/sunspot/sunspot/blob/2-0-stable/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
347
+ data-name="2-0-stable"
348
+ data-skip-pjax="true"
349
+ rel="nofollow">
350
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
351
+ <span class="select-menu-item-text css-truncate-target js-select-menu-filter-text" title="2-0-stable">
352
+ 2-0-stable
353
+ </span>
354
+ </a>
355
+ <a class="select-menu-item js-navigation-item js-navigation-open "
356
+ href="/sunspot/sunspot/blob/add_more_ruby/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
357
+ data-name="add_more_ruby"
358
+ data-skip-pjax="true"
359
+ rel="nofollow">
360
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
361
+ <span class="select-menu-item-text css-truncate-target js-select-menu-filter-text" title="add_more_ruby">
362
+ add_more_ruby
363
+ </span>
364
+ </a>
365
+ <a class="select-menu-item js-navigation-item js-navigation-open "
366
+ href="/sunspot/sunspot/blob/fix-travis/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
367
+ data-name="fix-travis"
368
+ data-skip-pjax="true"
369
+ rel="nofollow">
370
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
371
+ <span class="select-menu-item-text css-truncate-target js-select-menu-filter-text" title="fix-travis">
372
+ fix-travis
373
+ </span>
374
+ </a>
375
+ <a class="select-menu-item js-navigation-item js-navigation-open "
376
+ href="/sunspot/sunspot/blob/geohash-proximity/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
377
+ data-name="geohash-proximity"
378
+ data-skip-pjax="true"
379
+ rel="nofollow">
380
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
381
+ <span class="select-menu-item-text css-truncate-target js-select-menu-filter-text" title="geohash-proximity">
382
+ geohash-proximity
383
+ </span>
384
+ </a>
385
+ <a class="select-menu-item js-navigation-item js-navigation-open "
386
+ href="/sunspot/sunspot/blob/gh-pages/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
387
+ data-name="gh-pages"
388
+ data-skip-pjax="true"
389
+ rel="nofollow">
390
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
391
+ <span class="select-menu-item-text css-truncate-target js-select-menu-filter-text" title="gh-pages">
392
+ gh-pages
393
+ </span>
394
+ </a>
395
+ <a class="select-menu-item js-navigation-item js-navigation-open "
396
+ href="/sunspot/sunspot/blob/joneslee85-patch-1/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
397
+ data-name="joneslee85-patch-1"
398
+ data-skip-pjax="true"
399
+ rel="nofollow">
400
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
401
+ <span class="select-menu-item-text css-truncate-target js-select-menu-filter-text" title="joneslee85-patch-1">
402
+ joneslee85-patch-1
403
+ </span>
404
+ </a>
405
+ <a class="select-menu-item js-navigation-item js-navigation-open selected"
406
+ href="/sunspot/sunspot/blob/master/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
407
+ data-name="master"
408
+ data-skip-pjax="true"
409
+ rel="nofollow">
410
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
411
+ <span class="select-menu-item-text css-truncate-target js-select-menu-filter-text" title="master">
412
+ master
413
+ </span>
414
+ </a>
415
+ <a class="select-menu-item js-navigation-item js-navigation-open "
416
+ href="/sunspot/sunspot/blob/rails-2-3-support/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
417
+ data-name="rails-2-3-support"
418
+ data-skip-pjax="true"
419
+ rel="nofollow">
420
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
421
+ <span class="select-menu-item-text css-truncate-target js-select-menu-filter-text" title="rails-2-3-support">
422
+ rails-2-3-support
423
+ </span>
424
+ </a>
425
+ <a class="select-menu-item js-navigation-item js-navigation-open "
426
+ href="/sunspot/sunspot/blob/ref-type/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
427
+ data-name="ref-type"
428
+ data-skip-pjax="true"
429
+ rel="nofollow">
430
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
431
+ <span class="select-menu-item-text css-truncate-target js-select-menu-filter-text" title="ref-type">
432
+ ref-type
433
+ </span>
434
+ </a>
435
+ <a class="select-menu-item js-navigation-item js-navigation-open "
436
+ href="/sunspot/sunspot/blob/retry-fail-session-proxy/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
437
+ data-name="retry-fail-session-proxy"
438
+ data-skip-pjax="true"
439
+ rel="nofollow">
440
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
441
+ <span class="select-menu-item-text css-truncate-target js-select-menu-filter-text" title="retry-fail-session-proxy">
442
+ retry-fail-session-proxy
443
+ </span>
444
+ </a>
445
+ <a class="select-menu-item js-navigation-item js-navigation-open "
446
+ href="/sunspot/sunspot/blob/retry_5xx_session_proxy/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
447
+ data-name="retry_5xx_session_proxy"
448
+ data-skip-pjax="true"
449
+ rel="nofollow">
450
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
451
+ <span class="select-menu-item-text css-truncate-target js-select-menu-filter-text" title="retry_5xx_session_proxy">
452
+ retry_5xx_session_proxy
453
+ </span>
454
+ </a>
455
+ <a class="select-menu-item js-navigation-item js-navigation-open "
456
+ href="/sunspot/sunspot/blob/silence-progress-bar/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
457
+ data-name="silence-progress-bar"
458
+ data-skip-pjax="true"
459
+ rel="nofollow">
460
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
461
+ <span class="select-menu-item-text css-truncate-target js-select-menu-filter-text" title="silence-progress-bar">
462
+ silence-progress-bar
463
+ </span>
464
+ </a>
465
+ <a class="select-menu-item js-navigation-item js-navigation-open "
466
+ href="/sunspot/sunspot/blob/solr4/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
467
+ data-name="solr4"
468
+ data-skip-pjax="true"
469
+ rel="nofollow">
470
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
471
+ <span class="select-menu-item-text css-truncate-target js-select-menu-filter-text" title="solr4">
472
+ solr4
473
+ </span>
474
+ </a>
475
+ <a class="select-menu-item js-navigation-item js-navigation-open "
476
+ href="/sunspot/sunspot/blob/spatial/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
477
+ data-name="spatial"
478
+ data-skip-pjax="true"
479
+ rel="nofollow">
480
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
481
+ <span class="select-menu-item-text css-truncate-target js-select-menu-filter-text" title="spatial">
482
+ spatial
483
+ </span>
484
+ </a>
485
+ <a class="select-menu-item js-navigation-item js-navigation-open "
486
+ href="/sunspot/sunspot/blob/spellcheck/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
487
+ data-name="spellcheck"
488
+ data-skip-pjax="true"
489
+ rel="nofollow">
490
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
491
+ <span class="select-menu-item-text css-truncate-target js-select-menu-filter-text" title="spellcheck">
492
+ spellcheck
493
+ </span>
494
+ </a>
495
+ <a class="select-menu-item js-navigation-item js-navigation-open "
496
+ href="/sunspot/sunspot/blob/test-with-latest-rails/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
497
+ data-name="test-with-latest-rails"
498
+ data-skip-pjax="true"
499
+ rel="nofollow">
500
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
501
+ <span class="select-menu-item-text css-truncate-target js-select-menu-filter-text" title="test-with-latest-rails">
502
+ test-with-latest-rails
503
+ </span>
504
+ </a>
505
+ <a class="select-menu-item js-navigation-item js-navigation-open "
506
+ href="/sunspot/sunspot/blob/v1.1.1/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
507
+ data-name="v1.1.1"
508
+ data-skip-pjax="true"
509
+ rel="nofollow">
510
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
511
+ <span class="select-menu-item-text css-truncate-target js-select-menu-filter-text" title="v1.1.1">
512
+ v1.1.1
513
+ </span>
514
+ </a>
515
+ <a class="select-menu-item js-navigation-item js-navigation-open "
516
+ href="/sunspot/sunspot/blob/v1.2/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
517
+ data-name="v1.2"
518
+ data-skip-pjax="true"
519
+ rel="nofollow">
520
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
521
+ <span class="select-menu-item-text css-truncate-target js-select-menu-filter-text" title="v1.2">
522
+ v1.2
523
+ </span>
524
+ </a>
525
+ <a class="select-menu-item js-navigation-item js-navigation-open "
526
+ href="/sunspot/sunspot/blob/vanstee-switch_to_after_commit/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
527
+ data-name="vanstee-switch_to_after_commit"
528
+ data-skip-pjax="true"
529
+ rel="nofollow">
530
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
531
+ <span class="select-menu-item-text css-truncate-target js-select-menu-filter-text" title="vanstee-switch_to_after_commit">
532
+ vanstee-switch_to_after_commit
533
+ </span>
534
+ </a>
535
+ </div>
536
+
537
+ <div class="select-menu-no-results">Nothing to show</div>
538
+ </div>
539
+
540
+ <div class="select-menu-list select-menu-tab-bucket js-select-menu-tab-bucket" data-tab-filter="tags">
541
+ <div data-filterable-for="context-commitish-filter-field" data-filterable-type="substring">
542
+
543
+
544
+ <a class="select-menu-item js-navigation-item js-navigation-open "
545
+ href="/sunspot/sunspot/tree/v2.2.5/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
546
+ data-name="v2.2.5"
547
+ data-skip-pjax="true"
548
+ rel="nofollow">
549
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
550
+ <span class="select-menu-item-text css-truncate-target" title="v2.2.5">
551
+ v2.2.5
552
+ </span>
553
+ </a>
554
+ <a class="select-menu-item js-navigation-item js-navigation-open "
555
+ href="/sunspot/sunspot/tree/v2.2.4/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
556
+ data-name="v2.2.4"
557
+ data-skip-pjax="true"
558
+ rel="nofollow">
559
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
560
+ <span class="select-menu-item-text css-truncate-target" title="v2.2.4">
561
+ v2.2.4
562
+ </span>
563
+ </a>
564
+ <a class="select-menu-item js-navigation-item js-navigation-open "
565
+ href="/sunspot/sunspot/tree/v2.2.3/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
566
+ data-name="v2.2.3"
567
+ data-skip-pjax="true"
568
+ rel="nofollow">
569
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
570
+ <span class="select-menu-item-text css-truncate-target" title="v2.2.3">
571
+ v2.2.3
572
+ </span>
573
+ </a>
574
+ <a class="select-menu-item js-navigation-item js-navigation-open "
575
+ href="/sunspot/sunspot/tree/v2.2.2/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
576
+ data-name="v2.2.2"
577
+ data-skip-pjax="true"
578
+ rel="nofollow">
579
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
580
+ <span class="select-menu-item-text css-truncate-target" title="v2.2.2">
581
+ v2.2.2
582
+ </span>
583
+ </a>
584
+ <a class="select-menu-item js-navigation-item js-navigation-open "
585
+ href="/sunspot/sunspot/tree/v2.2.1/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
586
+ data-name="v2.2.1"
587
+ data-skip-pjax="true"
588
+ rel="nofollow">
589
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
590
+ <span class="select-menu-item-text css-truncate-target" title="v2.2.1">
591
+ v2.2.1
592
+ </span>
593
+ </a>
594
+ <a class="select-menu-item js-navigation-item js-navigation-open "
595
+ href="/sunspot/sunspot/tree/v2.2.0/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
596
+ data-name="v2.2.0"
597
+ data-skip-pjax="true"
598
+ rel="nofollow">
599
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
600
+ <span class="select-menu-item-text css-truncate-target" title="v2.2.0">
601
+ v2.2.0
602
+ </span>
603
+ </a>
604
+ <a class="select-menu-item js-navigation-item js-navigation-open "
605
+ href="/sunspot/sunspot/tree/v2.1.1/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
606
+ data-name="v2.1.1"
607
+ data-skip-pjax="true"
608
+ rel="nofollow">
609
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
610
+ <span class="select-menu-item-text css-truncate-target" title="v2.1.1">
611
+ v2.1.1
612
+ </span>
613
+ </a>
614
+ <a class="select-menu-item js-navigation-item js-navigation-open "
615
+ href="/sunspot/sunspot/tree/v2.1.0/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
616
+ data-name="v2.1.0"
617
+ data-skip-pjax="true"
618
+ rel="nofollow">
619
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
620
+ <span class="select-menu-item-text css-truncate-target" title="v2.1.0">
621
+ v2.1.0
622
+ </span>
623
+ </a>
624
+ <a class="select-menu-item js-navigation-item js-navigation-open "
625
+ href="/sunspot/sunspot/tree/v2.0.0/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
626
+ data-name="v2.0.0"
627
+ data-skip-pjax="true"
628
+ rel="nofollow">
629
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
630
+ <span class="select-menu-item-text css-truncate-target" title="v2.0.0">
631
+ v2.0.0
632
+ </span>
633
+ </a>
634
+ <a class="select-menu-item js-navigation-item js-navigation-open "
635
+ href="/sunspot/sunspot/tree/v2.0.0.pre.130115/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
636
+ data-name="v2.0.0.pre.130115"
637
+ data-skip-pjax="true"
638
+ rel="nofollow">
639
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
640
+ <span class="select-menu-item-text css-truncate-target" title="v2.0.0.pre.130115">
641
+ v2.0.0.pre.130115
642
+ </span>
643
+ </a>
644
+ <a class="select-menu-item js-navigation-item js-navigation-open "
645
+ href="/sunspot/sunspot/tree/v2.0.0.pre.120720/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
646
+ data-name="v2.0.0.pre.120720"
647
+ data-skip-pjax="true"
648
+ rel="nofollow">
649
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
650
+ <span class="select-menu-item-text css-truncate-target" title="v2.0.0.pre.120720">
651
+ v2.0.0.pre.120720
652
+ </span>
653
+ </a>
654
+ <a class="select-menu-item js-navigation-item js-navigation-open "
655
+ href="/sunspot/sunspot/tree/v2.0.0.pre.120417/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
656
+ data-name="v2.0.0.pre.120417"
657
+ data-skip-pjax="true"
658
+ rel="nofollow">
659
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
660
+ <span class="select-menu-item-text css-truncate-target" title="v2.0.0.pre.120417">
661
+ v2.0.0.pre.120417
662
+ </span>
663
+ </a>
664
+ <a class="select-menu-item js-navigation-item js-navigation-open "
665
+ href="/sunspot/sunspot/tree/v2.0.0.pre.120415/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
666
+ data-name="v2.0.0.pre.120415"
667
+ data-skip-pjax="true"
668
+ rel="nofollow">
669
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
670
+ <span class="select-menu-item-text css-truncate-target" title="v2.0.0.pre.120415">
671
+ v2.0.0.pre.120415
672
+ </span>
673
+ </a>
674
+ <a class="select-menu-item js-navigation-item js-navigation-open "
675
+ href="/sunspot/sunspot/tree/v2.0.0.pre.111215/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
676
+ data-name="v2.0.0.pre.111215"
677
+ data-skip-pjax="true"
678
+ rel="nofollow">
679
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
680
+ <span class="select-menu-item-text css-truncate-target" title="v2.0.0.pre.111215">
681
+ v2.0.0.pre.111215
682
+ </span>
683
+ </a>
684
+ <a class="select-menu-item js-navigation-item js-navigation-open "
685
+ href="/sunspot/sunspot/tree/v1.3.3/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
686
+ data-name="v1.3.3"
687
+ data-skip-pjax="true"
688
+ rel="nofollow">
689
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
690
+ <span class="select-menu-item-text css-truncate-target" title="v1.3.3">
691
+ v1.3.3
692
+ </span>
693
+ </a>
694
+ <a class="select-menu-item js-navigation-item js-navigation-open "
695
+ href="/sunspot/sunspot/tree/v1.3.2/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
696
+ data-name="v1.3.2"
697
+ data-skip-pjax="true"
698
+ rel="nofollow">
699
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
700
+ <span class="select-menu-item-text css-truncate-target" title="v1.3.2">
701
+ v1.3.2
702
+ </span>
703
+ </a>
704
+ <a class="select-menu-item js-navigation-item js-navigation-open "
705
+ href="/sunspot/sunspot/tree/v1.3.1/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
706
+ data-name="v1.3.1"
707
+ data-skip-pjax="true"
708
+ rel="nofollow">
709
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
710
+ <span class="select-menu-item-text css-truncate-target" title="v1.3.1">
711
+ v1.3.1
712
+ </span>
713
+ </a>
714
+ <a class="select-menu-item js-navigation-item js-navigation-open "
715
+ href="/sunspot/sunspot/tree/v1.3.0/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
716
+ data-name="v1.3.0"
717
+ data-skip-pjax="true"
718
+ rel="nofollow">
719
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
720
+ <span class="select-menu-item-text css-truncate-target" title="v1.3.0">
721
+ v1.3.0
722
+ </span>
723
+ </a>
724
+ <a class="select-menu-item js-navigation-item js-navigation-open "
725
+ href="/sunspot/sunspot/tree/v1.3.0.rc6/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
726
+ data-name="v1.3.0.rc6"
727
+ data-skip-pjax="true"
728
+ rel="nofollow">
729
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
730
+ <span class="select-menu-item-text css-truncate-target" title="v1.3.0.rc6">
731
+ v1.3.0.rc6
732
+ </span>
733
+ </a>
734
+ <a class="select-menu-item js-navigation-item js-navigation-open "
735
+ href="/sunspot/sunspot/tree/v1.3.0.rc5/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
736
+ data-name="v1.3.0.rc5"
737
+ data-skip-pjax="true"
738
+ rel="nofollow">
739
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
740
+ <span class="select-menu-item-text css-truncate-target" title="v1.3.0.rc5">
741
+ v1.3.0.rc5
742
+ </span>
743
+ </a>
744
+ <a class="select-menu-item js-navigation-item js-navigation-open "
745
+ href="/sunspot/sunspot/tree/v1.3.0.rc4/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
746
+ data-name="v1.3.0.rc4"
747
+ data-skip-pjax="true"
748
+ rel="nofollow">
749
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
750
+ <span class="select-menu-item-text css-truncate-target" title="v1.3.0.rc4">
751
+ v1.3.0.rc4
752
+ </span>
753
+ </a>
754
+ <a class="select-menu-item js-navigation-item js-navigation-open "
755
+ href="/sunspot/sunspot/tree/v1.3.0.rc3/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
756
+ data-name="v1.3.0.rc3"
757
+ data-skip-pjax="true"
758
+ rel="nofollow">
759
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
760
+ <span class="select-menu-item-text css-truncate-target" title="v1.3.0.rc3">
761
+ v1.3.0.rc3
762
+ </span>
763
+ </a>
764
+ <a class="select-menu-item js-navigation-item js-navigation-open "
765
+ href="/sunspot/sunspot/tree/v1.3.0.rc2/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
766
+ data-name="v1.3.0.rc2"
767
+ data-skip-pjax="true"
768
+ rel="nofollow">
769
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
770
+ <span class="select-menu-item-text css-truncate-target" title="v1.3.0.rc2">
771
+ v1.3.0.rc2
772
+ </span>
773
+ </a>
774
+ <a class="select-menu-item js-navigation-item js-navigation-open "
775
+ href="/sunspot/sunspot/tree/v1.3.0.rc1/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
776
+ data-name="v1.3.0.rc1"
777
+ data-skip-pjax="true"
778
+ rel="nofollow">
779
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
780
+ <span class="select-menu-item-text css-truncate-target" title="v1.3.0.rc1">
781
+ v1.3.0.rc1
782
+ </span>
783
+ </a>
784
+ <a class="select-menu-item js-navigation-item js-navigation-open "
785
+ href="/sunspot/sunspot/tree/v1.2.1/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
786
+ data-name="v1.2.1"
787
+ data-skip-pjax="true"
788
+ rel="nofollow">
789
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
790
+ <span class="select-menu-item-text css-truncate-target" title="v1.2.1">
791
+ v1.2.1
792
+ </span>
793
+ </a>
794
+ <a class="select-menu-item js-navigation-item js-navigation-open "
795
+ href="/sunspot/sunspot/tree/v1.2.0/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
796
+ data-name="v1.2.0"
797
+ data-skip-pjax="true"
798
+ rel="nofollow">
799
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
800
+ <span class="select-menu-item-text css-truncate-target" title="v1.2.0">
801
+ v1.2.0
802
+ </span>
803
+ </a>
804
+ <a class="select-menu-item js-navigation-item js-navigation-open "
805
+ href="/sunspot/sunspot/tree/v1.2.rc4/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
806
+ data-name="v1.2.rc4"
807
+ data-skip-pjax="true"
808
+ rel="nofollow">
809
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
810
+ <span class="select-menu-item-text css-truncate-target" title="v1.2.rc4">
811
+ v1.2.rc4
812
+ </span>
813
+ </a>
814
+ <a class="select-menu-item js-navigation-item js-navigation-open "
815
+ href="/sunspot/sunspot/tree/v1.2.rc3/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
816
+ data-name="v1.2.rc3"
817
+ data-skip-pjax="true"
818
+ rel="nofollow">
819
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
820
+ <span class="select-menu-item-text css-truncate-target" title="v1.2.rc3">
821
+ v1.2.rc3
822
+ </span>
823
+ </a>
824
+ <a class="select-menu-item js-navigation-item js-navigation-open "
825
+ href="/sunspot/sunspot/tree/v1.2rc2/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
826
+ data-name="v1.2rc2"
827
+ data-skip-pjax="true"
828
+ rel="nofollow">
829
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
830
+ <span class="select-menu-item-text css-truncate-target" title="v1.2rc2">
831
+ v1.2rc2
832
+ </span>
833
+ </a>
834
+ <a class="select-menu-item js-navigation-item js-navigation-open "
835
+ href="/sunspot/sunspot/tree/v1.1.0/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
836
+ data-name="v1.1.0"
837
+ data-skip-pjax="true"
838
+ rel="nofollow">
839
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
840
+ <span class="select-menu-item-text css-truncate-target" title="v1.1.0">
841
+ v1.1.0
842
+ </span>
843
+ </a>
844
+ <a class="select-menu-item js-navigation-item js-navigation-open "
845
+ href="/sunspot/sunspot/tree/v1.1rc3/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
846
+ data-name="v1.1rc3"
847
+ data-skip-pjax="true"
848
+ rel="nofollow">
849
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
850
+ <span class="select-menu-item-text css-truncate-target" title="v1.1rc3">
851
+ v1.1rc3
852
+ </span>
853
+ </a>
854
+ <a class="select-menu-item js-navigation-item js-navigation-open "
855
+ href="/sunspot/sunspot/tree/v1.1rc2/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
856
+ data-name="v1.1rc2"
857
+ data-skip-pjax="true"
858
+ rel="nofollow">
859
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
860
+ <span class="select-menu-item-text css-truncate-target" title="v1.1rc2">
861
+ v1.1rc2
862
+ </span>
863
+ </a>
864
+ <a class="select-menu-item js-navigation-item js-navigation-open "
865
+ href="/sunspot/sunspot/tree/v1.1rc1/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
866
+ data-name="v1.1rc1"
867
+ data-skip-pjax="true"
868
+ rel="nofollow">
869
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
870
+ <span class="select-menu-item-text css-truncate-target" title="v1.1rc1">
871
+ v1.1rc1
872
+ </span>
873
+ </a>
874
+ <a class="select-menu-item js-navigation-item js-navigation-open "
875
+ href="/sunspot/sunspot/tree/v1.0.5/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
876
+ data-name="v1.0.5"
877
+ data-skip-pjax="true"
878
+ rel="nofollow">
879
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
880
+ <span class="select-menu-item-text css-truncate-target" title="v1.0.5">
881
+ v1.0.5
882
+ </span>
883
+ </a>
884
+ <a class="select-menu-item js-navigation-item js-navigation-open "
885
+ href="/sunspot/sunspot/tree/v1.0.4/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
886
+ data-name="v1.0.4"
887
+ data-skip-pjax="true"
888
+ rel="nofollow">
889
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
890
+ <span class="select-menu-item-text css-truncate-target" title="v1.0.4">
891
+ v1.0.4
892
+ </span>
893
+ </a>
894
+ <a class="select-menu-item js-navigation-item js-navigation-open "
895
+ href="/sunspot/sunspot/tree/v1.0.3/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
896
+ data-name="v1.0.3"
897
+ data-skip-pjax="true"
898
+ rel="nofollow">
899
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
900
+ <span class="select-menu-item-text css-truncate-target" title="v1.0.3">
901
+ v1.0.3
902
+ </span>
903
+ </a>
904
+ <a class="select-menu-item js-navigation-item js-navigation-open "
905
+ href="/sunspot/sunspot/tree/v1.0.2/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
906
+ data-name="v1.0.2"
907
+ data-skip-pjax="true"
908
+ rel="nofollow">
909
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
910
+ <span class="select-menu-item-text css-truncate-target" title="v1.0.2">
911
+ v1.0.2
912
+ </span>
913
+ </a>
914
+ <a class="select-menu-item js-navigation-item js-navigation-open "
915
+ href="/sunspot/sunspot/tree/v1.0.1/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
916
+ data-name="v1.0.1"
917
+ data-skip-pjax="true"
918
+ rel="nofollow">
919
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
920
+ <span class="select-menu-item-text css-truncate-target" title="v1.0.1">
921
+ v1.0.1
922
+ </span>
923
+ </a>
924
+ <a class="select-menu-item js-navigation-item js-navigation-open "
925
+ href="/sunspot/sunspot/tree/v1.0.0/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
926
+ data-name="v1.0.0"
927
+ data-skip-pjax="true"
928
+ rel="nofollow">
929
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
930
+ <span class="select-menu-item-text css-truncate-target" title="v1.0.0">
931
+ v1.0.0
932
+ </span>
933
+ </a>
934
+ <a class="select-menu-item js-navigation-item js-navigation-open "
935
+ href="/sunspot/sunspot/tree/v1.0.0pre1/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
936
+ data-name="v1.0.0pre1"
937
+ data-skip-pjax="true"
938
+ rel="nofollow">
939
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
940
+ <span class="select-menu-item-text css-truncate-target" title="v1.0.0pre1">
941
+ v1.0.0pre1
942
+ </span>
943
+ </a>
944
+ <a class="select-menu-item js-navigation-item js-navigation-open "
945
+ href="/sunspot/sunspot/tree/v1.0rc3/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
946
+ data-name="v1.0rc3"
947
+ data-skip-pjax="true"
948
+ rel="nofollow">
949
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
950
+ <span class="select-menu-item-text css-truncate-target" title="v1.0rc3">
951
+ v1.0rc3
952
+ </span>
953
+ </a>
954
+ <a class="select-menu-item js-navigation-item js-navigation-open "
955
+ href="/sunspot/sunspot/tree/v1.0rc2/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
956
+ data-name="v1.0rc2"
957
+ data-skip-pjax="true"
958
+ rel="nofollow">
959
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
960
+ <span class="select-menu-item-text css-truncate-target" title="v1.0rc2">
961
+ v1.0rc2
962
+ </span>
963
+ </a>
964
+ <a class="select-menu-item js-navigation-item js-navigation-open "
965
+ href="/sunspot/sunspot/tree/v1.0rc1/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
966
+ data-name="v1.0rc1"
967
+ data-skip-pjax="true"
968
+ rel="nofollow">
969
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
970
+ <span class="select-menu-item-text css-truncate-target" title="v1.0rc1">
971
+ v1.0rc1
972
+ </span>
973
+ </a>
974
+ <a class="select-menu-item js-navigation-item js-navigation-open "
975
+ href="/sunspot/sunspot/tree/v0.10.9/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
976
+ data-name="v0.10.9"
977
+ data-skip-pjax="true"
978
+ rel="nofollow">
979
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
980
+ <span class="select-menu-item-text css-truncate-target" title="v0.10.9">
981
+ v0.10.9
982
+ </span>
983
+ </a>
984
+ <a class="select-menu-item js-navigation-item js-navigation-open "
985
+ href="/sunspot/sunspot/tree/v0.10.8/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
986
+ data-name="v0.10.8"
987
+ data-skip-pjax="true"
988
+ rel="nofollow">
989
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
990
+ <span class="select-menu-item-text css-truncate-target" title="v0.10.8">
991
+ v0.10.8
992
+ </span>
993
+ </a>
994
+ <a class="select-menu-item js-navigation-item js-navigation-open "
995
+ href="/sunspot/sunspot/tree/v0.10.7/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
996
+ data-name="v0.10.7"
997
+ data-skip-pjax="true"
998
+ rel="nofollow">
999
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
1000
+ <span class="select-menu-item-text css-truncate-target" title="v0.10.7">
1001
+ v0.10.7
1002
+ </span>
1003
+ </a>
1004
+ <a class="select-menu-item js-navigation-item js-navigation-open "
1005
+ href="/sunspot/sunspot/tree/v0.10.6/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
1006
+ data-name="v0.10.6"
1007
+ data-skip-pjax="true"
1008
+ rel="nofollow">
1009
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
1010
+ <span class="select-menu-item-text css-truncate-target" title="v0.10.6">
1011
+ v0.10.6
1012
+ </span>
1013
+ </a>
1014
+ <a class="select-menu-item js-navigation-item js-navigation-open "
1015
+ href="/sunspot/sunspot/tree/v0.10.5/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
1016
+ data-name="v0.10.5"
1017
+ data-skip-pjax="true"
1018
+ rel="nofollow">
1019
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
1020
+ <span class="select-menu-item-text css-truncate-target" title="v0.10.5">
1021
+ v0.10.5
1022
+ </span>
1023
+ </a>
1024
+ <a class="select-menu-item js-navigation-item js-navigation-open "
1025
+ href="/sunspot/sunspot/tree/v0.10.4/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
1026
+ data-name="v0.10.4"
1027
+ data-skip-pjax="true"
1028
+ rel="nofollow">
1029
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
1030
+ <span class="select-menu-item-text css-truncate-target" title="v0.10.4">
1031
+ v0.10.4
1032
+ </span>
1033
+ </a>
1034
+ <a class="select-menu-item js-navigation-item js-navigation-open "
1035
+ href="/sunspot/sunspot/tree/v0.10.3/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
1036
+ data-name="v0.10.3"
1037
+ data-skip-pjax="true"
1038
+ rel="nofollow">
1039
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
1040
+ <span class="select-menu-item-text css-truncate-target" title="v0.10.3">
1041
+ v0.10.3
1042
+ </span>
1043
+ </a>
1044
+ <a class="select-menu-item js-navigation-item js-navigation-open "
1045
+ href="/sunspot/sunspot/tree/v0.10.2/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
1046
+ data-name="v0.10.2"
1047
+ data-skip-pjax="true"
1048
+ rel="nofollow">
1049
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
1050
+ <span class="select-menu-item-text css-truncate-target" title="v0.10.2">
1051
+ v0.10.2
1052
+ </span>
1053
+ </a>
1054
+ <a class="select-menu-item js-navigation-item js-navigation-open "
1055
+ href="/sunspot/sunspot/tree/v0.10.1/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
1056
+ data-name="v0.10.1"
1057
+ data-skip-pjax="true"
1058
+ rel="nofollow">
1059
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
1060
+ <span class="select-menu-item-text css-truncate-target" title="v0.10.1">
1061
+ v0.10.1
1062
+ </span>
1063
+ </a>
1064
+ <a class="select-menu-item js-navigation-item js-navigation-open "
1065
+ href="/sunspot/sunspot/tree/v0.10.0/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
1066
+ data-name="v0.10.0"
1067
+ data-skip-pjax="true"
1068
+ rel="nofollow">
1069
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
1070
+ <span class="select-menu-item-text css-truncate-target" title="v0.10.0">
1071
+ v0.10.0
1072
+ </span>
1073
+ </a>
1074
+ <a class="select-menu-item js-navigation-item js-navigation-open "
1075
+ href="/sunspot/sunspot/tree/v0.9.8/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
1076
+ data-name="v0.9.8"
1077
+ data-skip-pjax="true"
1078
+ rel="nofollow">
1079
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
1080
+ <span class="select-menu-item-text css-truncate-target" title="v0.9.8">
1081
+ v0.9.8
1082
+ </span>
1083
+ </a>
1084
+ <a class="select-menu-item js-navigation-item js-navigation-open "
1085
+ href="/sunspot/sunspot/tree/v0.9.7/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
1086
+ data-name="v0.9.7"
1087
+ data-skip-pjax="true"
1088
+ rel="nofollow">
1089
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
1090
+ <span class="select-menu-item-text css-truncate-target" title="v0.9.7">
1091
+ v0.9.7
1092
+ </span>
1093
+ </a>
1094
+ <a class="select-menu-item js-navigation-item js-navigation-open "
1095
+ href="/sunspot/sunspot/tree/v0.9.6/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
1096
+ data-name="v0.9.6"
1097
+ data-skip-pjax="true"
1098
+ rel="nofollow">
1099
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
1100
+ <span class="select-menu-item-text css-truncate-target" title="v0.9.6">
1101
+ v0.9.6
1102
+ </span>
1103
+ </a>
1104
+ <a class="select-menu-item js-navigation-item js-navigation-open "
1105
+ href="/sunspot/sunspot/tree/v0.9.5/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
1106
+ data-name="v0.9.5"
1107
+ data-skip-pjax="true"
1108
+ rel="nofollow">
1109
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
1110
+ <span class="select-menu-item-text css-truncate-target" title="v0.9.5">
1111
+ v0.9.5
1112
+ </span>
1113
+ </a>
1114
+ <a class="select-menu-item js-navigation-item js-navigation-open "
1115
+ href="/sunspot/sunspot/tree/v0.9.4/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
1116
+ data-name="v0.9.4"
1117
+ data-skip-pjax="true"
1118
+ rel="nofollow">
1119
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
1120
+ <span class="select-menu-item-text css-truncate-target" title="v0.9.4">
1121
+ v0.9.4
1122
+ </span>
1123
+ </a>
1124
+ <a class="select-menu-item js-navigation-item js-navigation-open "
1125
+ href="/sunspot/sunspot/tree/v0.9.3/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
1126
+ data-name="v0.9.3"
1127
+ data-skip-pjax="true"
1128
+ rel="nofollow">
1129
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
1130
+ <span class="select-menu-item-text css-truncate-target" title="v0.9.3">
1131
+ v0.9.3
1132
+ </span>
1133
+ </a>
1134
+ <a class="select-menu-item js-navigation-item js-navigation-open "
1135
+ href="/sunspot/sunspot/tree/v0.9.2/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
1136
+ data-name="v0.9.2"
1137
+ data-skip-pjax="true"
1138
+ rel="nofollow">
1139
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
1140
+ <span class="select-menu-item-text css-truncate-target" title="v0.9.2">
1141
+ v0.9.2
1142
+ </span>
1143
+ </a>
1144
+ <a class="select-menu-item js-navigation-item js-navigation-open "
1145
+ href="/sunspot/sunspot/tree/v0.9.1/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
1146
+ data-name="v0.9.1"
1147
+ data-skip-pjax="true"
1148
+ rel="nofollow">
1149
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
1150
+ <span class="select-menu-item-text css-truncate-target" title="v0.9.1">
1151
+ v0.9.1
1152
+ </span>
1153
+ </a>
1154
+ <a class="select-menu-item js-navigation-item js-navigation-open "
1155
+ href="/sunspot/sunspot/tree/v0.9.0/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
1156
+ data-name="v0.9.0"
1157
+ data-skip-pjax="true"
1158
+ rel="nofollow">
1159
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
1160
+ <span class="select-menu-item-text css-truncate-target" title="v0.9.0">
1161
+ v0.9.0
1162
+ </span>
1163
+ </a>
1164
+ <a class="select-menu-item js-navigation-item js-navigation-open "
1165
+ href="/sunspot/sunspot/tree/v0.8.9/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
1166
+ data-name="v0.8.9"
1167
+ data-skip-pjax="true"
1168
+ rel="nofollow">
1169
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
1170
+ <span class="select-menu-item-text css-truncate-target" title="v0.8.9">
1171
+ v0.8.9
1172
+ </span>
1173
+ </a>
1174
+ <a class="select-menu-item js-navigation-item js-navigation-open "
1175
+ href="/sunspot/sunspot/tree/v0.8.8/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
1176
+ data-name="v0.8.8"
1177
+ data-skip-pjax="true"
1178
+ rel="nofollow">
1179
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
1180
+ <span class="select-menu-item-text css-truncate-target" title="v0.8.8">
1181
+ v0.8.8
1182
+ </span>
1183
+ </a>
1184
+ <a class="select-menu-item js-navigation-item js-navigation-open "
1185
+ href="/sunspot/sunspot/tree/v0.8.7/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
1186
+ data-name="v0.8.7"
1187
+ data-skip-pjax="true"
1188
+ rel="nofollow">
1189
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
1190
+ <span class="select-menu-item-text css-truncate-target" title="v0.8.7">
1191
+ v0.8.7
1192
+ </span>
1193
+ </a>
1194
+ <a class="select-menu-item js-navigation-item js-navigation-open "
1195
+ href="/sunspot/sunspot/tree/v0.8.6/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
1196
+ data-name="v0.8.6"
1197
+ data-skip-pjax="true"
1198
+ rel="nofollow">
1199
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
1200
+ <span class="select-menu-item-text css-truncate-target" title="v0.8.6">
1201
+ v0.8.6
1202
+ </span>
1203
+ </a>
1204
+ <a class="select-menu-item js-navigation-item js-navigation-open "
1205
+ href="/sunspot/sunspot/tree/v0.8.5/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
1206
+ data-name="v0.8.5"
1207
+ data-skip-pjax="true"
1208
+ rel="nofollow">
1209
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
1210
+ <span class="select-menu-item-text css-truncate-target" title="v0.8.5">
1211
+ v0.8.5
1212
+ </span>
1213
+ </a>
1214
+ <a class="select-menu-item js-navigation-item js-navigation-open "
1215
+ href="/sunspot/sunspot/tree/v0.8.4/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
1216
+ data-name="v0.8.4"
1217
+ data-skip-pjax="true"
1218
+ rel="nofollow">
1219
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
1220
+ <span class="select-menu-item-text css-truncate-target" title="v0.8.4">
1221
+ v0.8.4
1222
+ </span>
1223
+ </a>
1224
+ <a class="select-menu-item js-navigation-item js-navigation-open "
1225
+ href="/sunspot/sunspot/tree/v0.8.3/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
1226
+ data-name="v0.8.3"
1227
+ data-skip-pjax="true"
1228
+ rel="nofollow">
1229
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
1230
+ <span class="select-menu-item-text css-truncate-target" title="v0.8.3">
1231
+ v0.8.3
1232
+ </span>
1233
+ </a>
1234
+ <a class="select-menu-item js-navigation-item js-navigation-open "
1235
+ href="/sunspot/sunspot/tree/v0.8.2/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
1236
+ data-name="v0.8.2"
1237
+ data-skip-pjax="true"
1238
+ rel="nofollow">
1239
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
1240
+ <span class="select-menu-item-text css-truncate-target" title="v0.8.2">
1241
+ v0.8.2
1242
+ </span>
1243
+ </a>
1244
+ <a class="select-menu-item js-navigation-item js-navigation-open "
1245
+ href="/sunspot/sunspot/tree/v0.8.1/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
1246
+ data-name="v0.8.1"
1247
+ data-skip-pjax="true"
1248
+ rel="nofollow">
1249
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
1250
+ <span class="select-menu-item-text css-truncate-target" title="v0.8.1">
1251
+ v0.8.1
1252
+ </span>
1253
+ </a>
1254
+ <a class="select-menu-item js-navigation-item js-navigation-open "
1255
+ href="/sunspot/sunspot/tree/v0.8.0/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
1256
+ data-name="v0.8.0"
1257
+ data-skip-pjax="true"
1258
+ rel="nofollow">
1259
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
1260
+ <span class="select-menu-item-text css-truncate-target" title="v0.8.0">
1261
+ v0.8.0
1262
+ </span>
1263
+ </a>
1264
+ <a class="select-menu-item js-navigation-item js-navigation-open "
1265
+ href="/sunspot/sunspot/tree/v0.7.3/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
1266
+ data-name="v0.7.3"
1267
+ data-skip-pjax="true"
1268
+ rel="nofollow">
1269
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
1270
+ <span class="select-menu-item-text css-truncate-target" title="v0.7.3">
1271
+ v0.7.3
1272
+ </span>
1273
+ </a>
1274
+ <a class="select-menu-item js-navigation-item js-navigation-open "
1275
+ href="/sunspot/sunspot/tree/v0.7.2/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
1276
+ data-name="v0.7.2"
1277
+ data-skip-pjax="true"
1278
+ rel="nofollow">
1279
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
1280
+ <span class="select-menu-item-text css-truncate-target" title="v0.7.2">
1281
+ v0.7.2
1282
+ </span>
1283
+ </a>
1284
+ <a class="select-menu-item js-navigation-item js-navigation-open "
1285
+ href="/sunspot/sunspot/tree/v0.7.1/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
1286
+ data-name="v0.7.1"
1287
+ data-skip-pjax="true"
1288
+ rel="nofollow">
1289
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
1290
+ <span class="select-menu-item-text css-truncate-target" title="v0.7.1">
1291
+ v0.7.1
1292
+ </span>
1293
+ </a>
1294
+ <a class="select-menu-item js-navigation-item js-navigation-open "
1295
+ href="/sunspot/sunspot/tree/v0.7.0/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
1296
+ data-name="v0.7.0"
1297
+ data-skip-pjax="true"
1298
+ rel="nofollow">
1299
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
1300
+ <span class="select-menu-item-text css-truncate-target" title="v0.7.0">
1301
+ v0.7.0
1302
+ </span>
1303
+ </a>
1304
+ <a class="select-menu-item js-navigation-item js-navigation-open "
1305
+ href="/sunspot/sunspot/tree/v0.0.2/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf"
1306
+ data-name="v0.0.2"
1307
+ data-skip-pjax="true"
1308
+ rel="nofollow">
1309
+ <svg aria-hidden="true" class="octicon octicon-check select-menu-item-icon" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M12 5L4 13 0 9l1.5-1.5 2.5 2.5 6.5-6.5 1.5 1.5z"></path></svg>
1310
+ <span class="select-menu-item-text css-truncate-target" title="v0.0.2">
1311
+ v0.0.2
1312
+ </span>
1313
+ </a>
1314
+ </div>
1315
+
1316
+ <div class="select-menu-no-results">Nothing to show</div>
1317
+ </div>
1318
+
1319
+ </div>
1320
+ </div>
1321
+ </div>
1322
+
1323
+ <div class="btn-group right">
1324
+ <a href="/sunspot/sunspot/find/master"
1325
+ class="js-pjax-capture-input btn btn-sm"
1326
+ data-pjax
1327
+ data-hotkey="t">
1328
+ Find file
1329
+ </a>
1330
+ <button aria-label="Copy file path to clipboard" class="js-zeroclipboard btn btn-sm zeroclipboard-button tooltipped tooltipped-s" data-copied-hint="Copied!" type="button">Copy path</button>
1331
+ </div>
1332
+ <div class="breadcrumb js-zeroclipboard-target">
1333
+ <span class="repo-root js-repo-root"><span class="js-path-segment"><a href="/sunspot/sunspot"><span>sunspot</span></a></span></span><span class="separator">/</span><span class="js-path-segment"><a href="/sunspot/sunspot/tree/master/sunspot_solr"><span>sunspot_solr</span></a></span><span class="separator">/</span><span class="js-path-segment"><a href="/sunspot/sunspot/tree/master/sunspot_solr/solr"><span>solr</span></a></span><span class="separator">/</span><span class="js-path-segment"><a href="/sunspot/sunspot/tree/master/sunspot_solr/solr/solr"><span>solr</span></a></span><span class="separator">/</span><span class="js-path-segment"><a href="/sunspot/sunspot/tree/master/sunspot_solr/solr/solr/configsets"><span>configsets</span></a></span><span class="separator">/</span><span class="js-path-segment"><a href="/sunspot/sunspot/tree/master/sunspot_solr/solr/solr/configsets/sunspot"><span>sunspot</span></a></span><span class="separator">/</span><span class="js-path-segment"><a href="/sunspot/sunspot/tree/master/sunspot_solr/solr/solr/configsets/sunspot/conf"><span>conf</span></a></span><span class="separator">/</span><strong class="final-path">scripts.conf</strong>
1334
+ </div>
1335
+ </div>
1336
+
1337
+
1338
+ <div class="commit-tease">
1339
+ <span class="right">
1340
+ <a class="commit-tease-sha" href="/sunspot/sunspot/commit/4d997c604051569e7f5a1a46deae0f56c0a6456d" data-pjax>
1341
+ 4d997c6
1342
+ </a>
1343
+ <relative-time datetime="2015-03-25T12:36:30Z">Mar 25, 2015</relative-time>
1344
+ </span>
1345
+ <div>
1346
+ <img alt="@backus" class="avatar" height="20" src="https://avatars1.githubusercontent.com/u/2085622?v=3&amp;s=40" width="20" />
1347
+ <a href="/backus" class="user-mention" rel="contributor">backus</a>
1348
+ <a href="/sunspot/sunspot/commit/4d997c604051569e7f5a1a46deae0f56c0a6456d" class="message" data-pjax="true" title="Update sunspot_solr files to solr 5 build
1349
+
1350
+ * I&#39;ve included the out of the box configuration from solr 5.0.0. I removed the included
1351
+ examples and tried to preserve as much of sunspot&#39;s configuration as possible.
1352
+
1353
+ * Solr 5 handles cores differently and so the new solr.xml is the out of the box xml file.
1354
+ To match sunspot&#39;s core configuration I created the relevant directories + core.properties
1355
+ files so that `default`, `development`, and `test` are available cores.
1356
+
1357
+ * Instead of a single `conf` directory each core is able to have its own configuration or
1358
+ share a configset. I created a sunspot configset that each core uses:
1359
+
1360
+ sunspot_solr/solr/solr/configsets
1361
+ └── sunspot
1362
+ └── conf
1363
+ ├── _rest_managed.json
1364
+ ├── admin-extra.html
1365
+ ├── currency.xml
1366
+ ├── elevate.xml
1367
+ ├── lang
1368
+ │   └── stopwords_en.txt
1369
+ ├── mapping-ISOLatin1Accent.txt
1370
+ ├── protwords.txt
1371
+ ├── schema.xml
1372
+ ├── scripts.conf
1373
+ ├── solrconfig.xml
1374
+ ├── spellings.txt
1375
+ └── synonyms.txt
1376
+
1377
+ * The included jetty jars seem to have all received version bumps:
1378
+
1379
+ jetty-continuation: 8.1.8.v20121106 -&gt; 8.1.10.v20130312
1380
+ jetty-deploy: 8.1.8.v20121106 -&gt; 8.1.10.v20130312
1381
+ jetty-http: 8.1.8.v20121106 -&gt; 8.1.10.v20130312
1382
+ jetty-io: 8.1.8.v20121106 -&gt; 8.1.10.v20130312
1383
+ jetty-jmx: 8.1.8.v20121106 -&gt; 8.1.10.v20130312
1384
+ jetty-security: 8.1.8.v20121106 -&gt; 8.1.10.v20130312
1385
+ jetty-server: 8.1.8.v20121106 -&gt; 8.1.10.v20130312
1386
+ jetty-servlet: 8.1.8.v20121106 -&gt; 8.1.10.v20130312
1387
+ jetty-util: 8.1.8.v20121106 -&gt; 8.1.10.v20130312
1388
+ jetty-webapp: 8.1.8.v20121106 -&gt; 8.1.10.v20130312
1389
+ jetty-xml: 8.1.8.v20121106 -&gt; 8.1.10.v20130312
1390
+
1391
+ * The new admin interface seems to be much bigger than the previously included
1392
+ admin dependencies. I didn&#39;t remove much to avoid breaking things. The new
1393
+ files should live in `solr-webapp`">Update sunspot_solr files to solr 5 build</a>
1394
+ </div>
1395
+
1396
+ <div class="commit-tease-contributors">
1397
+ <button type="button" class="btn-link muted-link contributors-toggle" data-facebox="#blob_contributors_box">
1398
+ <strong>1</strong>
1399
+ contributor
1400
+ </button>
1401
+
1402
+ </div>
1403
+
1404
+ <div id="blob_contributors_box" style="display:none">
1405
+ <h2 class="facebox-header" data-facebox-id="facebox-header">Users who have contributed to this file</h2>
1406
+ <ul class="facebox-user-list" data-facebox-id="facebox-description">
1407
+ <li class="facebox-user-list-item">
1408
+ <img alt="@backus" height="24" src="https://avatars3.githubusercontent.com/u/2085622?v=3&amp;s=48" width="24" />
1409
+ <a href="/backus">backus</a>
1410
+ </li>
1411
+ </ul>
1412
+ </div>
1413
+ </div>
1414
+
1415
+ <div class="file">
1416
+ <div class="file-header">
1417
+ <div class="file-actions">
1418
+
1419
+ <div class="btn-group">
1420
+ <a href="/sunspot/sunspot/raw/master/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf" class="btn btn-sm " id="raw-url">Raw</a>
1421
+ <a href="/sunspot/sunspot/blame/master/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf" class="btn btn-sm js-update-url-with-hash">Blame</a>
1422
+ <a href="/sunspot/sunspot/commits/master/sunspot_solr/solr/solr/configsets/sunspot/conf/scripts.conf" class="btn btn-sm " rel="nofollow">History</a>
1423
+ </div>
1424
+
1425
+
1426
+ <button type="button" class="btn-octicon disabled tooltipped tooltipped-nw"
1427
+ aria-label="You must be signed in to make or propose changes">
1428
+ <svg aria-hidden="true" class="octicon octicon-pencil" height="16" version="1.1" viewBox="0 0 14 16" width="14"><path d="M0 12v3h3l8-8-3-3L0 12z m3 2H1V12h1v1h1v1z m10.3-9.3l-1.3 1.3-3-3 1.3-1.3c0.39-0.39 1.02-0.39 1.41 0l1.59 1.59c0.39 0.39 0.39 1.02 0 1.41z"></path></svg>
1429
+ </button>
1430
+ <button type="button" class="btn-octicon btn-octicon-danger disabled tooltipped tooltipped-nw"
1431
+ aria-label="You must be signed in to make or propose changes">
1432
+ <svg aria-hidden="true" class="octicon octicon-trashcan" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M10 2H8c0-0.55-0.45-1-1-1H4c-0.55 0-1 0.45-1 1H1c-0.55 0-1 0.45-1 1v1c0 0.55 0.45 1 1 1v9c0 0.55 0.45 1 1 1h7c0.55 0 1-0.45 1-1V5c0.55 0 1-0.45 1-1v-1c0-0.55-0.45-1-1-1z m-1 12H2V5h1v8h1V5h1v8h1V5h1v8h1V5h1v9z m1-10H1v-1h9v1z"></path></svg>
1433
+ </button>
1434
+ </div>
1435
+
1436
+ <div class="file-info">
1437
+ 25 lines (23 sloc)
1438
+ <span class="file-info-divider"></span>
1439
+ 921 Bytes
1440
+ </div>
1441
+ </div>
1442
+
1443
+
1444
+
1445
+ <div itemprop="text" class="blob-wrapper data type-text">
1446
+ <table class="highlight tab-size js-file-line-container" data-tab-size="8">
1447
+ <tr>
1448
+ <td id="L1" class="blob-num js-line-number" data-line-number="1"></td>
1449
+ <td id="LC1" class="blob-code blob-code-inner js-file-line"># Licensed to the Apache Software Foundation (ASF) under one or more</td>
1450
+ </tr>
1451
+ <tr>
1452
+ <td id="L2" class="blob-num js-line-number" data-line-number="2"></td>
1453
+ <td id="LC2" class="blob-code blob-code-inner js-file-line"># contributor license agreements. See the NOTICE file distributed with</td>
1454
+ </tr>
1455
+ <tr>
1456
+ <td id="L3" class="blob-num js-line-number" data-line-number="3"></td>
1457
+ <td id="LC3" class="blob-code blob-code-inner js-file-line"># this work for additional information regarding copyright ownership.</td>
1458
+ </tr>
1459
+ <tr>
1460
+ <td id="L4" class="blob-num js-line-number" data-line-number="4"></td>
1461
+ <td id="LC4" class="blob-code blob-code-inner js-file-line"># The ASF licenses this file to You under the Apache License, Version 2.0</td>
1462
+ </tr>
1463
+ <tr>
1464
+ <td id="L5" class="blob-num js-line-number" data-line-number="5"></td>
1465
+ <td id="LC5" class="blob-code blob-code-inner js-file-line"># (the &quot;License&quot;); you may not use this file except in compliance with</td>
1466
+ </tr>
1467
+ <tr>
1468
+ <td id="L6" class="blob-num js-line-number" data-line-number="6"></td>
1469
+ <td id="LC6" class="blob-code blob-code-inner js-file-line"># the License. You may obtain a copy of the License at</td>
1470
+ </tr>
1471
+ <tr>
1472
+ <td id="L7" class="blob-num js-line-number" data-line-number="7"></td>
1473
+ <td id="LC7" class="blob-code blob-code-inner js-file-line">#</td>
1474
+ </tr>
1475
+ <tr>
1476
+ <td id="L8" class="blob-num js-line-number" data-line-number="8"></td>
1477
+ <td id="LC8" class="blob-code blob-code-inner js-file-line"># http://www.apache.org/licenses/LICENSE-2.0</td>
1478
+ </tr>
1479
+ <tr>
1480
+ <td id="L9" class="blob-num js-line-number" data-line-number="9"></td>
1481
+ <td id="LC9" class="blob-code blob-code-inner js-file-line">#</td>
1482
+ </tr>
1483
+ <tr>
1484
+ <td id="L10" class="blob-num js-line-number" data-line-number="10"></td>
1485
+ <td id="LC10" class="blob-code blob-code-inner js-file-line"># Unless required by applicable law or agreed to in writing, software</td>
1486
+ </tr>
1487
+ <tr>
1488
+ <td id="L11" class="blob-num js-line-number" data-line-number="11"></td>
1489
+ <td id="LC11" class="blob-code blob-code-inner js-file-line"># distributed under the License is distributed on an &quot;AS IS&quot; BASIS,</td>
1490
+ </tr>
1491
+ <tr>
1492
+ <td id="L12" class="blob-num js-line-number" data-line-number="12"></td>
1493
+ <td id="LC12" class="blob-code blob-code-inner js-file-line"># WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</td>
1494
+ </tr>
1495
+ <tr>
1496
+ <td id="L13" class="blob-num js-line-number" data-line-number="13"></td>
1497
+ <td id="LC13" class="blob-code blob-code-inner js-file-line"># See the License for the specific language governing permissions and</td>
1498
+ </tr>
1499
+ <tr>
1500
+ <td id="L14" class="blob-num js-line-number" data-line-number="14"></td>
1501
+ <td id="LC14" class="blob-code blob-code-inner js-file-line"># limitations under the License.</td>
1502
+ </tr>
1503
+ <tr>
1504
+ <td id="L15" class="blob-num js-line-number" data-line-number="15"></td>
1505
+ <td id="LC15" class="blob-code blob-code-inner js-file-line">
1506
+ </td>
1507
+ </tr>
1508
+ <tr>
1509
+ <td id="L16" class="blob-num js-line-number" data-line-number="16"></td>
1510
+ <td id="LC16" class="blob-code blob-code-inner js-file-line">user=</td>
1511
+ </tr>
1512
+ <tr>
1513
+ <td id="L17" class="blob-num js-line-number" data-line-number="17"></td>
1514
+ <td id="LC17" class="blob-code blob-code-inner js-file-line">solr_hostname=localhost</td>
1515
+ </tr>
1516
+ <tr>
1517
+ <td id="L18" class="blob-num js-line-number" data-line-number="18"></td>
1518
+ <td id="LC18" class="blob-code blob-code-inner js-file-line">solr_port=8983</td>
1519
+ </tr>
1520
+ <tr>
1521
+ <td id="L19" class="blob-num js-line-number" data-line-number="19"></td>
1522
+ <td id="LC19" class="blob-code blob-code-inner js-file-line">rsyncd_port=18983</td>
1523
+ </tr>
1524
+ <tr>
1525
+ <td id="L20" class="blob-num js-line-number" data-line-number="20"></td>
1526
+ <td id="LC20" class="blob-code blob-code-inner js-file-line">data_dir=</td>
1527
+ </tr>
1528
+ <tr>
1529
+ <td id="L21" class="blob-num js-line-number" data-line-number="21"></td>
1530
+ <td id="LC21" class="blob-code blob-code-inner js-file-line">webapp_name=solr</td>
1531
+ </tr>
1532
+ <tr>
1533
+ <td id="L22" class="blob-num js-line-number" data-line-number="22"></td>
1534
+ <td id="LC22" class="blob-code blob-code-inner js-file-line">master_host=</td>
1535
+ </tr>
1536
+ <tr>
1537
+ <td id="L23" class="blob-num js-line-number" data-line-number="23"></td>
1538
+ <td id="LC23" class="blob-code blob-code-inner js-file-line">master_data_dir=</td>
1539
+ </tr>
1540
+ <tr>
1541
+ <td id="L24" class="blob-num js-line-number" data-line-number="24"></td>
1542
+ <td id="LC24" class="blob-code blob-code-inner js-file-line">master_status_dir=</td>
1543
+ </tr>
1544
+ </table>
1545
+
1546
+ </div>
1547
+
1548
+ </div>
1549
+
1550
+ <button type="button" data-facebox="#jump-to-line" data-facebox-class="linejump" data-hotkey="l" class="hidden">Jump to Line</button>
1551
+ <div id="jump-to-line" style="display:none">
1552
+ <!-- </textarea> --><!-- '"` --><form accept-charset="UTF-8" action="" class="js-jump-to-line-form" method="get"><div style="margin:0;padding:0;display:inline"><input name="utf8" type="hidden" value="&#x2713;" /></div>
1553
+ <input class="form-control linejump-input js-jump-to-line-field" type="text" placeholder="Jump to line&hellip;" aria-label="Jump to line" autofocus>
1554
+ <button type="submit" class="btn">Go</button>
1555
+ </form></div>
1556
+
1557
+ </div>
1558
+ <div class="modal-backdrop"></div>
1559
+ </div>
1560
+
1561
+
1562
+ </div>
1563
+ </div>
1564
+
1565
+ </div>
1566
+
1567
+ <div class="container site-footer-container">
1568
+ <div class="site-footer" role="contentinfo">
1569
+ <ul class="site-footer-links right">
1570
+ <li><a href="https://status.github.com/" data-ga-click="Footer, go to status, text:status">Status</a></li>
1571
+ <li><a href="https://developer.github.com" data-ga-click="Footer, go to api, text:api">API</a></li>
1572
+ <li><a href="https://training.github.com" data-ga-click="Footer, go to training, text:training">Training</a></li>
1573
+ <li><a href="https://shop.github.com" data-ga-click="Footer, go to shop, text:shop">Shop</a></li>
1574
+ <li><a href="https://github.com/blog" data-ga-click="Footer, go to blog, text:blog">Blog</a></li>
1575
+ <li><a href="https://github.com/about" data-ga-click="Footer, go to about, text:about">About</a></li>
1576
+
1577
+ </ul>
1578
+
1579
+ <a href="https://github.com" aria-label="Homepage" class="site-footer-mark" title="GitHub">
1580
+ <svg aria-hidden="true" class="octicon octicon-mark-github" height="24" version="1.1" viewBox="0 0 16 16" width="24"><path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59 0.4 0.07 0.55-0.17 0.55-0.38 0-0.19-0.01-0.82-0.01-1.49-2.01 0.37-2.53-0.49-2.69-0.94-0.09-0.23-0.48-0.94-0.82-1.13-0.28-0.15-0.68-0.52-0.01-0.53 0.63-0.01 1.08 0.58 1.23 0.82 0.72 1.21 1.87 0.87 2.33 0.66 0.07-0.52 0.28-0.87 0.51-1.07-1.78-0.2-3.64-0.89-3.64-3.95 0-0.87 0.31-1.59 0.82-2.15-0.08-0.2-0.36-1.02 0.08-2.12 0 0 0.67-0.21 2.2 0.82 0.64-0.18 1.32-0.27 2-0.27 0.68 0 1.36 0.09 2 0.27 1.53-1.04 2.2-0.82 2.2-0.82 0.44 1.1 0.16 1.92 0.08 2.12 0.51 0.56 0.82 1.27 0.82 2.15 0 3.07-1.87 3.75-3.65 3.95 0.29 0.25 0.54 0.73 0.54 1.48 0 1.07-0.01 1.93-0.01 2.2 0 0.21 0.15 0.46 0.55 0.38C13.71 14.53 16 11.53 16 8 16 3.58 12.42 0 8 0z"></path></svg>
1581
+ </a>
1582
+ <ul class="site-footer-links">
1583
+ <li>&copy; 2016 <span title="0.04917s from github-fe121-cp1-prd.iad.github.net">GitHub</span>, Inc.</li>
1584
+ <li><a href="https://github.com/site/terms" data-ga-click="Footer, go to terms, text:terms">Terms</a></li>
1585
+ <li><a href="https://github.com/site/privacy" data-ga-click="Footer, go to privacy, text:privacy">Privacy</a></li>
1586
+ <li><a href="https://github.com/security" data-ga-click="Footer, go to security, text:security">Security</a></li>
1587
+ <li><a href="https://github.com/contact" data-ga-click="Footer, go to contact, text:contact">Contact</a></li>
1588
+ <li><a href="https://help.github.com" data-ga-click="Footer, go to help, text:help">Help</a></li>
1589
+ </ul>
1590
+ </div>
1591
+ </div>
1592
+
1593
+
1594
+
1595
+
1596
+
1597
+ <div id="ajax-error-message" class="ajax-error-message flash flash-error">
1598
+ <svg aria-hidden="true" class="octicon octicon-alert" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path d="M15.72 12.5l-6.85-11.98C8.69 0.21 8.36 0.02 8 0.02s-0.69 0.19-0.87 0.5l-6.85 11.98c-0.18 0.31-0.18 0.69 0 1C0.47 13.81 0.8 14 1.15 14h13.7c0.36 0 0.69-0.19 0.86-0.5S15.89 12.81 15.72 12.5zM9 12H7V10h2V12zM9 9H7V5h2V9z"></path></svg>
1599
+ <button type="button" class="flash-close js-flash-close js-ajax-error-dismiss" aria-label="Dismiss error">
1600
+ <svg aria-hidden="true" class="octicon octicon-x" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M7.48 8l3.75 3.75-1.48 1.48-3.75-3.75-3.75 3.75-1.48-1.48 3.75-3.75L0.77 4.25l1.48-1.48 3.75 3.75 3.75-3.75 1.48 1.48-3.75 3.75z"></path></svg>
1601
+ </button>
1602
+ Something went wrong with that request. Please try again.
1603
+ </div>
1604
+
1605
+
1606
+ <div class="js-stale-session-flash stale-session-flash flash flash-warn flash-banner hidden">
1607
+ <svg aria-hidden="true" class="octicon octicon-alert" height="16" version="1.1" viewBox="0 0 16 16" width="16"><path d="M15.72 12.5l-6.85-11.98C8.69 0.21 8.36 0.02 8 0.02s-0.69 0.19-0.87 0.5l-6.85 11.98c-0.18 0.31-0.18 0.69 0 1C0.47 13.81 0.8 14 1.15 14h13.7c0.36 0 0.69-0.19 0.86-0.5S15.89 12.81 15.72 12.5zM9 12H7V10h2V12zM9 9H7V5h2V9z"></path></svg>
1608
+ <span class="signed-in-tab-flash">You signed in with another tab or window. <a href="">Reload</a> to refresh your session.</span>
1609
+ <span class="signed-out-tab-flash">You signed out in another tab or window. <a href="">Reload</a> to refresh your session.</span>
1610
+ </div>
1611
+ <div class="facebox" id="facebox" style="display:none;">
1612
+ <div class="facebox-popup">
1613
+ <div class="facebox-content" role="dialog" aria-labelledby="facebox-header" aria-describedby="facebox-description">
1614
+ </div>
1615
+ <button type="button" class="facebox-close js-facebox-close" aria-label="Close modal">
1616
+ <svg aria-hidden="true" class="octicon octicon-x" height="16" version="1.1" viewBox="0 0 12 16" width="12"><path d="M7.48 8l3.75 3.75-1.48 1.48-3.75-3.75-3.75 3.75-1.48-1.48 3.75-3.75L0.77 4.25l1.48-1.48 3.75 3.75 3.75-3.75 1.48 1.48-3.75 3.75z"></path></svg>
1617
+ </button>
1618
+ </div>
1619
+ </div>
1620
+
1621
+ </body>
1622
+ </html>
1623
+