├── .gitignore
├── README.rst
├── deploy
├── apache2
│ └── demo.conf
├── nginx
│ └── demo.conf
├── solr
│ ├── admin-extra.html
│ ├── admin-extra.menu-bottom.html
│ ├── admin-extra.menu-top.html
│ ├── currency.xml
│ ├── elevate.xml
│ ├── lang
│ │ ├── contractions_ca.txt
│ │ ├── contractions_fr.txt
│ │ ├── contractions_ga.txt
│ │ ├── contractions_it.txt
│ │ ├── hyphenations_ga.txt
│ │ ├── stemdict_nl.txt
│ │ ├── stoptags_ja.txt
│ │ ├── stopwords_ar.txt
│ │ ├── stopwords_bg.txt
│ │ ├── stopwords_ca.txt
│ │ ├── stopwords_cz.txt
│ │ ├── stopwords_da.txt
│ │ ├── stopwords_de.txt
│ │ ├── stopwords_el.txt
│ │ ├── stopwords_en.txt
│ │ ├── stopwords_es.txt
│ │ ├── stopwords_eu.txt
│ │ ├── stopwords_fa.txt
│ │ ├── stopwords_fi.txt
│ │ ├── stopwords_fr.txt
│ │ ├── stopwords_ga.txt
│ │ ├── stopwords_gl.txt
│ │ ├── stopwords_hi.txt
│ │ ├── stopwords_hu.txt
│ │ ├── stopwords_hy.txt
│ │ ├── stopwords_id.txt
│ │ ├── stopwords_it.txt
│ │ ├── stopwords_ja.txt
│ │ ├── stopwords_lv.txt
│ │ ├── stopwords_nl.txt
│ │ ├── stopwords_no.txt
│ │ ├── stopwords_pt.txt
│ │ ├── stopwords_ro.txt
│ │ ├── stopwords_ru.txt
│ │ ├── stopwords_sv.txt
│ │ ├── stopwords_th.txt
│ │ ├── stopwords_tr.txt
│ │ └── userdict_ja.txt
│ ├── mapping-FoldToASCII.txt
│ ├── mapping-ISOLatin1Accent.txt
│ ├── protwords.txt
│ ├── schema.xml
│ ├── scripts.conf
│ ├── solrconfig.xml
│ ├── spellings.txt
│ ├── stopwords.txt
│ ├── synonyms.txt
│ ├── update-script.js
│ ├── velocity
│ │ ├── VM_global_library.vm
│ │ ├── browse.vm
│ │ ├── cluster.vm
│ │ ├── clusterResults.vm
│ │ ├── debug.vm
│ │ ├── facet_fields.vm
│ │ ├── facet_pivot.vm
│ │ ├── facet_queries.vm
│ │ ├── facet_ranges.vm
│ │ ├── facets.vm
│ │ ├── footer.vm
│ │ ├── head.vm
│ │ ├── header.vm
│ │ ├── hit.vm
│ │ ├── hitGrouped.vm
│ │ ├── join-doc.vm
│ │ ├── jquery.autocomplete.css
│ │ ├── jquery.autocomplete.js
│ │ ├── layout.vm
│ │ ├── main.css
│ │ ├── product-doc.vm
│ │ ├── query.vm
│ │ ├── queryGroup.vm
│ │ ├── querySpatial.vm
│ │ ├── richtext-doc.vm
│ │ ├── suggest.vm
│ │ └── tabs.vm
│ └── xslt
│ │ ├── example.xsl
│ │ ├── example_atom.xsl
│ │ ├── example_rss.xsl
│ │ ├── luke.xsl
│ │ └── updateXml.xsl
├── supervisord
│ └── demo.conf
└── wsgi
│ └── demo.wsgi
├── fixtures
├── books.csv
├── clothing.csv
├── downloads.csv
├── images.tar.gz
├── offers.json
├── product-attributes.json
├── product-classes.json
└── shipping-event-types.json
├── manage.py
├── requirements.txt
├── runtests.sh
├── setup.py
├── src
└── oscar_demo
│ ├── __init__.py
│ ├── apps
│ ├── __init__.py
│ ├── app.py
│ ├── checkout
│ │ ├── __init__.py
│ │ ├── app.py
│ │ ├── forms.py
│ │ └── views.py
│ ├── offers.py
│ ├── order
│ │ ├── __init__.py
│ │ ├── admin.py
│ │ ├── config.py
│ │ ├── migrations
│ │ │ ├── 0001_initial.py
│ │ │ └── __init__.py
│ │ ├── models.py
│ │ └── processing.py
│ ├── shipping
│ │ ├── __init__.py
│ │ ├── admin.py
│ │ ├── config.py
│ │ ├── methods.py
│ │ ├── migrations
│ │ │ ├── 0001_initial.py
│ │ │ └── __init__.py
│ │ ├── models.py
│ │ └── repository.py
│ └── user
│ │ ├── __init__.py
│ │ ├── migrations
│ │ ├── 0001_initial.py
│ │ └── __init__.py
│ │ └── models.py
│ ├── geoip
│ └── .gitignore
│ ├── settings.py
│ ├── settings_docker.py
│ ├── settings_local.sample.py
│ ├── settings_test.py
│ ├── static
│ ├── demo
│ │ ├── README.rst
│ │ ├── css
│ │ │ ├── README.rst
│ │ │ ├── bootstrap.min.css
│ │ │ ├── responsive.css
│ │ │ ├── responsive.css.map
│ │ │ ├── styles.css
│ │ │ └── styles.css.map
│ │ ├── favicon.ico
│ │ ├── fonts
│ │ │ ├── OpenSans-Bold.ttf
│ │ │ ├── OpenSans-Regular.ttf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.svg
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ ├── fontawesome-webfont.woff
│ │ │ ├── icomoon.dev.svg
│ │ │ ├── icomoon.eot
│ │ │ ├── icomoon.svg
│ │ │ ├── icomoon.ttf
│ │ │ ├── icomoon.woff
│ │ │ └── lte-ie7.js
│ │ ├── img
│ │ │ ├── carousel
│ │ │ │ ├── banner-01.jpg
│ │ │ │ ├── banner-02.jpg
│ │ │ │ ├── banner-03.jpg
│ │ │ │ ├── homepage-banners-01.jpg
│ │ │ │ └── homepage-banners-02.jpg
│ │ │ ├── glyphicons-halflings-white.png
│ │ │ ├── glyphicons-halflings.png
│ │ │ ├── image_not_found.jpg
│ │ │ ├── svg
│ │ │ │ ├── logo.png
│ │ │ │ └── logo.svg
│ │ │ └── ui
│ │ │ │ ├── ajax-loader.gif
│ │ │ │ ├── bg-category-title.png
│ │ │ │ ├── bg-stars-small.png
│ │ │ │ ├── bg-stars.png
│ │ │ │ ├── black.png
│ │ │ │ ├── dashboard
│ │ │ │ ├── bg_subtle_dots.png
│ │ │ │ └── logo_oscar.png
│ │ │ │ ├── icon_arrow_down.png
│ │ │ │ ├── icon_arrow_left.png
│ │ │ │ ├── icon_minus.png
│ │ │ │ ├── icon_plus.png
│ │ │ │ ├── icon_slider_left.png
│ │ │ │ ├── icon_slider_right.png
│ │ │ │ ├── nav_sprite.png
│ │ │ │ ├── sprite.png
│ │ │ │ ├── unavailable.png
│ │ │ │ └── wavecut-blue.png
│ │ ├── js
│ │ │ ├── bootstrap-wysihtml5
│ │ │ │ ├── bootstrap-wysihtml5-0.0.2.css
│ │ │ │ ├── bootstrap-wysihtml5-0.0.2.js
│ │ │ │ ├── bootstrap-wysihtml5-0.0.2.min.js
│ │ │ │ ├── wysihtml5-0.3.0.js
│ │ │ │ └── wysihtml5-0.3.0.min.js
│ │ │ ├── bootstrap
│ │ │ │ ├── bootstrap.js
│ │ │ │ └── bootstrap.min.js
│ │ │ ├── flexslider
│ │ │ │ ├── bg_direction_nav.png
│ │ │ │ ├── flexslider.js
│ │ │ │ ├── homepage-nav.png
│ │ │ │ └── product-nav.png
│ │ │ ├── jquery
│ │ │ │ ├── bootstrap-datepicker.css
│ │ │ │ ├── jquery-1.9.1.min.js
│ │ │ │ └── jquery-ui-1.10.1.custom.min.js
│ │ │ ├── modernizr
│ │ │ │ └── modernizr.js
│ │ │ ├── mousewheel
│ │ │ │ └── jquery.mousewheel.min.js
│ │ │ ├── select2
│ │ │ │ ├── select2-spinner.gif
│ │ │ │ ├── select2.css
│ │ │ │ ├── select2.js
│ │ │ │ ├── select2.png
│ │ │ │ └── select2x2.png
│ │ │ ├── site.js
│ │ │ ├── site
│ │ │ │ ├── responsive.js
│ │ │ │ └── ui.js
│ │ │ └── timepicker
│ │ │ │ └── jquery-ui-timepicker-addon.js
│ │ └── less
│ │ │ ├── README.rst
│ │ │ ├── bootstrap
│ │ │ ├── accordion.less
│ │ │ ├── alerts.less
│ │ │ ├── bootstrap.less
│ │ │ ├── breadcrumbs.less
│ │ │ ├── button-groups.less
│ │ │ ├── buttons.less
│ │ │ ├── carousel.less
│ │ │ ├── close.less
│ │ │ ├── code.less
│ │ │ ├── component-animations.less
│ │ │ ├── dropdowns.less
│ │ │ ├── forms.less
│ │ │ ├── grid.less
│ │ │ ├── hero-unit.less
│ │ │ ├── labels-badges.less
│ │ │ ├── layouts.less
│ │ │ ├── media.less
│ │ │ ├── mixins.less
│ │ │ ├── modals.less
│ │ │ ├── navbar.less
│ │ │ ├── navs.less
│ │ │ ├── pager.less
│ │ │ ├── pagination.less
│ │ │ ├── popovers.less
│ │ │ ├── progress-bars.less
│ │ │ ├── reset.less
│ │ │ ├── responsive-1200px-min.less
│ │ │ ├── responsive-767px-max.less
│ │ │ ├── responsive-768px-979px.less
│ │ │ ├── responsive-navbar.less
│ │ │ ├── responsive-utilities.less
│ │ │ ├── scaffolding.less
│ │ │ ├── sprites.less
│ │ │ ├── tables.less
│ │ │ ├── thumbnails.less
│ │ │ ├── tooltip.less
│ │ │ ├── type.less
│ │ │ ├── utilities.less
│ │ │ ├── variables.less
│ │ │ └── wells.less
│ │ │ ├── dashboard
│ │ │ ├── mixins.less
│ │ │ └── variables.less
│ │ │ ├── font-awesome
│ │ │ ├── font-awesome-ie7.less
│ │ │ └── font-awesome.less
│ │ │ ├── page
│ │ │ ├── account.less
│ │ │ ├── checkout.less
│ │ │ ├── flexslider.less
│ │ │ ├── head_foot.less
│ │ │ ├── icomoon.less
│ │ │ ├── plugins.less
│ │ │ ├── product_lists.less
│ │ │ ├── product_page.less
│ │ │ ├── promotions.less
│ │ │ └── theme.less
│ │ │ ├── responsive.less
│ │ │ └── styles.less
│ └── robots.txt
│ ├── templates
│ ├── base.html
│ ├── basket
│ │ ├── basket.html
│ │ └── partials
│ │ │ ├── basket_content.html
│ │ │ └── basket_totals.html
│ ├── catalogue
│ │ ├── browse.html
│ │ ├── detail.html
│ │ ├── partials
│ │ │ ├── add_to_wishlist.html
│ │ │ ├── alerts_form.html
│ │ │ ├── child_stock_record.html
│ │ │ ├── gallery.html
│ │ │ ├── product.html
│ │ │ ├── review.html
│ │ │ ├── review_totals.html
│ │ │ └── stock_record.html
│ │ └── reviews
│ │ │ ├── review_detail.html
│ │ │ ├── review_form.html
│ │ │ └── review_list.html
│ ├── checkout
│ │ ├── checkout.html
│ │ ├── gateway.html
│ │ ├── layout.html
│ │ ├── nav.html
│ │ ├── payment_details.html
│ │ ├── preview.html
│ │ ├── shipping_address.html
│ │ ├── shipping_methods.html
│ │ ├── user_address_delete.html
│ │ └── user_address_form.html
│ ├── customer
│ │ ├── baseaccountpage.html
│ │ ├── history
│ │ │ └── recently_viewed_products.html
│ │ ├── login_registration.html
│ │ └── partials
│ │ │ └── nav_account.html
│ ├── dashboard
│ │ └── orders
│ │ │ └── order_detail.html
│ ├── layout.html
│ ├── offer
│ │ ├── detail.html
│ │ └── list.html
│ ├── partials
│ │ ├── brand.html
│ │ ├── extrascripts.html
│ │ ├── footer.html
│ │ ├── mini_basket.html
│ │ ├── nav_accounts.html
│ │ └── nav_primary.html
│ ├── promotions
│ │ ├── automaticproductlist.html
│ │ ├── baseproductlist.html
│ │ ├── featureproductlist.html
│ │ ├── handpickedproductlist.html
│ │ ├── home.html
│ │ ├── image.html
│ │ ├── partials
│ │ │ └── productsingle.html
│ │ └── singleproduct.html
│ └── shipping
│ │ ├── express.html
│ │ └── standard.html
│ └── urls.py
├── tests
├── test_checkout_forms.py
└── test_shipping_methods.py
└── update_demo.sh
/.gitignore:
--------------------------------------------------------------------------------
1 | # Packaging
2 | *.pyc
3 | *.egg-info
4 | /dist/
5 | /build/
6 |
7 | # Vagrant
8 | .vagrant
9 |
10 | # Temporary/OS files
11 | *.swp
12 | *.swo
13 | *.*~
14 | .~lock.*
15 | *.DS_Store
16 | .python-version
17 |
18 | # IDE files
19 | .project
20 | .pydevproject
21 | .settings
22 | .idea
23 |
24 | # Docs
25 | /docs/build/*
26 | *.pdf
27 | TODO
28 |
29 | # Test files
30 | .coverage
31 | .noseids
32 | coverage.xml
33 | violations.txt
34 | nosetests.xml
35 | /.cache/
36 | /htmlcov/*
37 | /.tox/*
38 |
39 | # Example sites
40 | settings_local.py
41 | /*.sqlite
42 | /assets/
43 | /public/
44 | /whoosh_index/
45 | /logs/
46 |
--------------------------------------------------------------------------------
/README.rst:
--------------------------------------------------------------------------------
1 | Django-Oscar Demo
2 | ------------------
3 |
4 | **NOTE**: This is a copy of the old demo site from the Django Oscar repository. See https://github.com/django-oscar/django-oscar/pull/1911 or more information.
5 |
6 |
7 | This is intended to show off some of Oscar's features, such as:
8 |
9 | * Customising core models
10 | * Overriding templates and CSS: changing the site appearance
11 | * Integrating with some of Oscar's extensions
12 |
13 | Most of this is still a work-in-progress.
14 |
--------------------------------------------------------------------------------
/deploy/apache2/demo.conf:
--------------------------------------------------------------------------------
1 |
2 | ServerName demo.oscarcommerce.com
3 | DocumentRoot /var/www/nginx-default
4 | CustomLog /var/log/apache2/access.demo.oscar.log combined
5 | ErrorLog /var/log/apache2/error.demo.oscar.log
6 | AllowEncodedSlashes On
7 |
8 | WSGIDaemonProcess oscar-demo processes=2 threads=5 display-name=oscar maximum-requests=10000
9 | WSGIProcessGroup oscar-demo
10 | WSGIApplicationGroup %{GLOBAL}
11 | WSGIScriptAlias / /var/www/oscar/builds/demo/sites/demo/deploy/wsgi/demo.wsgi
12 | WSGIPassAuthorization On
13 |
14 |
15 | Order deny,allow
16 | Allow from all
17 |
18 |
19 |
20 |
--------------------------------------------------------------------------------
/deploy/nginx/demo.conf:
--------------------------------------------------------------------------------
1 | server {
2 | listen 80;
3 | server_name demo.oscarcommerce.com;
4 |
5 | set_real_ip_from 192.168.125.252;
6 | real_ip_header X-Forwarded-For;
7 |
8 | # Ensure only one domain
9 | if ($host != 'demo.oscarcommerce.com') {
10 | rewrite / $scheme://demo.oscarcommerce.com$request_uri permanent;
11 | }
12 |
13 | access_log /var/www/oscar/logs/demo/nginx_access.log;
14 | error_log /var/www/oscar/logs/demo/nginx_error.log;
15 |
16 | gzip on;
17 | gzip_proxied any;
18 | gzip_static on;
19 | gzip_types text/plain application/xml application/x-javascript text/javascript text/css application/x-json application/json;
20 |
21 | client_max_body_size 3M;
22 | keepalive_timeout 5;
23 |
24 | location =/robots.txt {
25 | root /var/www/oscar/builds/demo/sites/demo/public/static/;
26 | expires max;
27 | }
28 | location =/favicon.ico {
29 | root /var/www/oscar/builds/demo/sites/demo/public/static/oscar/;
30 | expires max;
31 | }
32 | location /media/ {
33 | alias /var/www/oscar/media/demo/;
34 | expires max;
35 | }
36 | location /static/ {
37 | root /var/www/oscar/builds/demo/sites/demo/public;
38 | expires max;
39 | }
40 | location / {
41 | uwsgi_pass unix:/var/www/oscar/run/demo/uwsgi.sock;
42 | uwsgi_send_timeout 5;
43 | include uwsgi_params;
44 | }
45 | }
46 |
--------------------------------------------------------------------------------
/deploy/solr/admin-extra.html:
--------------------------------------------------------------------------------
1 |
17 |
18 |
32 |
--------------------------------------------------------------------------------
/deploy/solr/admin-extra.menu-bottom.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/deploy/solr/admin-extra.menu-top.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/deploy/solr/elevate.xml:
--------------------------------------------------------------------------------
1 |
2 |
18 |
19 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
--------------------------------------------------------------------------------
/deploy/solr/lang/contractions_ca.txt:
--------------------------------------------------------------------------------
1 | # Set of Catalan contractions for ElisionFilter
2 | # TODO: load this as a resource from the analyzer and sync it in build.xml
3 | d
4 | l
5 | m
6 | n
7 | s
8 | t
9 |
--------------------------------------------------------------------------------
/deploy/solr/lang/contractions_fr.txt:
--------------------------------------------------------------------------------
1 | # Set of French contractions for ElisionFilter
2 | # TODO: load this as a resource from the analyzer and sync it in build.xml
3 | l
4 | m
5 | t
6 | qu
7 | n
8 | s
9 | j
10 | d
11 | c
12 | jusqu
13 | quoiqu
14 | lorsqu
15 | puisqu
16 |
--------------------------------------------------------------------------------
/deploy/solr/lang/contractions_ga.txt:
--------------------------------------------------------------------------------
1 | # Set of Irish contractions for ElisionFilter
2 | # TODO: load this as a resource from the analyzer and sync it in build.xml
3 | d
4 | m
5 | b
6 |
--------------------------------------------------------------------------------
/deploy/solr/lang/contractions_it.txt:
--------------------------------------------------------------------------------
1 | # Set of Italian contractions for ElisionFilter
2 | # TODO: load this as a resource from the analyzer and sync it in build.xml
3 | c
4 | l
5 | all
6 | dall
7 | dell
8 | nell
9 | sull
10 | coll
11 | pell
12 | gl
13 | agl
14 | dagl
15 | degl
16 | negl
17 | sugl
18 | un
19 | m
20 | t
21 | s
22 | v
23 | d
24 |
--------------------------------------------------------------------------------
/deploy/solr/lang/hyphenations_ga.txt:
--------------------------------------------------------------------------------
1 | # Set of Irish hyphenations for StopFilter
2 | # TODO: load this as a resource from the analyzer and sync it in build.xml
3 | h
4 | n
5 | t
6 |
--------------------------------------------------------------------------------
/deploy/solr/lang/stemdict_nl.txt:
--------------------------------------------------------------------------------
1 | # Set of overrides for the dutch stemmer
2 | # TODO: load this as a resource from the analyzer and sync it in build.xml
3 | fiets fiets
4 | bromfiets bromfiets
5 | ei eier
6 | kind kinder
7 |
--------------------------------------------------------------------------------
/deploy/solr/lang/stopwords_ar.txt:
--------------------------------------------------------------------------------
1 | # This file was created by Jacques Savoy and is distributed under the BSD license.
2 | # See http://members.unine.ch/jacques.savoy/clef/index.html.
3 | # Also see http://www.opensource.org/licenses/bsd-license.html
4 | # Cleaned on October 11, 2009 (not normalized, so use before normalization)
5 | # This means that when modifying this list, you might need to add some
6 | # redundant entries, for example containing forms with both أ and ا
7 | من
8 | ومن
9 | منها
10 | منه
11 | في
12 | وفي
13 | فيها
14 | فيه
15 | و
16 | ف
17 | ثم
18 | او
19 | أو
20 | ب
21 | بها
22 | به
23 | ا
24 | أ
25 | اى
26 | اي
27 | أي
28 | أى
29 | لا
30 | ولا
31 | الا
32 | ألا
33 | إلا
34 | لكن
35 | ما
36 | وما
37 | كما
38 | فما
39 | عن
40 | مع
41 | اذا
42 | إذا
43 | ان
44 | أن
45 | إن
46 | انها
47 | أنها
48 | إنها
49 | انه
50 | أنه
51 | إنه
52 | بان
53 | بأن
54 | فان
55 | فأن
56 | وان
57 | وأن
58 | وإن
59 | التى
60 | التي
61 | الذى
62 | الذي
63 | الذين
64 | الى
65 | الي
66 | إلى
67 | إلي
68 | على
69 | عليها
70 | عليه
71 | اما
72 | أما
73 | إما
74 | ايضا
75 | أيضا
76 | كل
77 | وكل
78 | لم
79 | ولم
80 | لن
81 | ولن
82 | هى
83 | هي
84 | هو
85 | وهى
86 | وهي
87 | وهو
88 | فهى
89 | فهي
90 | فهو
91 | انت
92 | أنت
93 | لك
94 | لها
95 | له
96 | هذه
97 | هذا
98 | تلك
99 | ذلك
100 | هناك
101 | كانت
102 | كان
103 | يكون
104 | تكون
105 | وكانت
106 | وكان
107 | غير
108 | بعض
109 | قد
110 | نحو
111 | بين
112 | بينما
113 | منذ
114 | ضمن
115 | حيث
116 | الان
117 | الآن
118 | خلال
119 | بعد
120 | قبل
121 | حتى
122 | عند
123 | عندما
124 | لدى
125 | جميع
126 |
--------------------------------------------------------------------------------
/deploy/solr/lang/stopwords_bg.txt:
--------------------------------------------------------------------------------
1 | # This file was created by Jacques Savoy and is distributed under the BSD license.
2 | # See http://members.unine.ch/jacques.savoy/clef/index.html.
3 | # Also see http://www.opensource.org/licenses/bsd-license.html
4 | а
5 | аз
6 | ако
7 | ала
8 | бе
9 | без
10 | беше
11 | би
12 | бил
13 | била
14 | били
15 | било
16 | близо
17 | бъдат
18 | бъде
19 | бяха
20 | в
21 | вас
22 | ваш
23 | ваша
24 | вероятно
25 | вече
26 | взема
27 | ви
28 | вие
29 | винаги
30 | все
31 | всеки
32 | всички
33 | всичко
34 | всяка
35 | във
36 | въпреки
37 | върху
38 | г
39 | ги
40 | главно
41 | го
42 | д
43 | да
44 | дали
45 | до
46 | докато
47 | докога
48 | дори
49 | досега
50 | доста
51 | е
52 | едва
53 | един
54 | ето
55 | за
56 | зад
57 | заедно
58 | заради
59 | засега
60 | затова
61 | защо
62 | защото
63 | и
64 | из
65 | или
66 | им
67 | има
68 | имат
69 | иска
70 | й
71 | каза
72 | как
73 | каква
74 | какво
75 | както
76 | какъв
77 | като
78 | кога
79 | когато
80 | което
81 | които
82 | кой
83 | който
84 | колко
85 | която
86 | къде
87 | където
88 | към
89 | ли
90 | м
91 | ме
92 | между
93 | мен
94 | ми
95 | мнозина
96 | мога
97 | могат
98 | може
99 | моля
100 | момента
101 | му
102 | н
103 | на
104 | над
105 | назад
106 | най
107 | направи
108 | напред
109 | например
110 | нас
111 | не
112 | него
113 | нея
114 | ни
115 | ние
116 | никой
117 | нито
118 | но
119 | някои
120 | някой
121 | няма
122 | обаче
123 | около
124 | освен
125 | особено
126 | от
127 | отгоре
128 | отново
129 | още
130 | пак
131 | по
132 | повече
133 | повечето
134 | под
135 | поне
136 | поради
137 | после
138 | почти
139 | прави
140 | пред
141 | преди
142 | през
143 | при
144 | пък
145 | първо
146 | с
147 | са
148 | само
149 | се
150 | сега
151 | си
152 | скоро
153 | след
154 | сме
155 | според
156 | сред
157 | срещу
158 | сте
159 | съм
160 | със
161 | също
162 | т
163 | тази
164 | така
165 | такива
166 | такъв
167 | там
168 | твой
169 | те
170 | тези
171 | ти
172 | тн
173 | то
174 | това
175 | тогава
176 | този
177 | той
178 | толкова
179 | точно
180 | трябва
181 | тук
182 | тъй
183 | тя
184 | тях
185 | у
186 | харесва
187 | ч
188 | че
189 | често
190 | чрез
191 | ще
192 | щом
193 | я
194 |
--------------------------------------------------------------------------------
/deploy/solr/lang/stopwords_ca.txt:
--------------------------------------------------------------------------------
1 | # Catalan stopwords from http://github.com/vcl/cue.language (Apache 2 Licensed)
2 | a
3 | abans
4 | ací
5 | ah
6 | així
7 | això
8 | al
9 | als
10 | aleshores
11 | algun
12 | alguna
13 | algunes
14 | alguns
15 | alhora
16 | allà
17 | allí
18 | allò
19 | altra
20 | altre
21 | altres
22 | amb
23 | ambdós
24 | ambdues
25 | apa
26 | aquell
27 | aquella
28 | aquelles
29 | aquells
30 | aquest
31 | aquesta
32 | aquestes
33 | aquests
34 | aquí
35 | baix
36 | cada
37 | cadascú
38 | cadascuna
39 | cadascunes
40 | cadascuns
41 | com
42 | contra
43 | d'un
44 | d'una
45 | d'unes
46 | d'uns
47 | dalt
48 | de
49 | del
50 | dels
51 | des
52 | després
53 | dins
54 | dintre
55 | donat
56 | doncs
57 | durant
58 | e
59 | eh
60 | el
61 | els
62 | em
63 | en
64 | encara
65 | ens
66 | entre
67 | érem
68 | eren
69 | éreu
70 | es
71 | és
72 | esta
73 | està
74 | estàvem
75 | estaven
76 | estàveu
77 | esteu
78 | et
79 | etc
80 | ets
81 | fins
82 | fora
83 | gairebé
84 | ha
85 | han
86 | has
87 | havia
88 | he
89 | hem
90 | heu
91 | hi
92 | ho
93 | i
94 | igual
95 | iguals
96 | ja
97 | l'hi
98 | la
99 | les
100 | li
101 | li'n
102 | llavors
103 | m'he
104 | ma
105 | mal
106 | malgrat
107 | mateix
108 | mateixa
109 | mateixes
110 | mateixos
111 | me
112 | mentre
113 | més
114 | meu
115 | meus
116 | meva
117 | meves
118 | molt
119 | molta
120 | moltes
121 | molts
122 | mon
123 | mons
124 | n'he
125 | n'hi
126 | ne
127 | ni
128 | no
129 | nogensmenys
130 | només
131 | nosaltres
132 | nostra
133 | nostre
134 | nostres
135 | o
136 | oh
137 | oi
138 | on
139 | pas
140 | pel
141 | pels
142 | per
143 | però
144 | perquè
145 | poc
146 | poca
147 | pocs
148 | poques
149 | potser
150 | propi
151 | qual
152 | quals
153 | quan
154 | quant
155 | que
156 | què
157 | quelcom
158 | qui
159 | quin
160 | quina
161 | quines
162 | quins
163 | s'ha
164 | s'han
165 | sa
166 | semblant
167 | semblants
168 | ses
169 | seu
170 | seus
171 | seva
172 | seva
173 | seves
174 | si
175 | sobre
176 | sobretot
177 | sóc
178 | solament
179 | sols
180 | son
181 | són
182 | sons
183 | sota
184 | sou
185 | t'ha
186 | t'han
187 | t'he
188 | ta
189 | tal
190 | també
191 | tampoc
192 | tan
193 | tant
194 | tanta
195 | tantes
196 | teu
197 | teus
198 | teva
199 | teves
200 | ton
201 | tons
202 | tot
203 | tota
204 | totes
205 | tots
206 | un
207 | una
208 | unes
209 | uns
210 | us
211 | va
212 | vaig
213 | vam
214 | van
215 | vas
216 | veu
217 | vosaltres
218 | vostra
219 | vostre
220 | vostres
221 |
--------------------------------------------------------------------------------
/deploy/solr/lang/stopwords_cz.txt:
--------------------------------------------------------------------------------
1 | a
2 | s
3 | k
4 | o
5 | i
6 | u
7 | v
8 | z
9 | dnes
10 | cz
11 | tímto
12 | budeš
13 | budem
14 | byli
15 | jseš
16 | můj
17 | svým
18 | ta
19 | tomto
20 | tohle
21 | tuto
22 | tyto
23 | jej
24 | zda
25 | proč
26 | máte
27 | tato
28 | kam
29 | tohoto
30 | kdo
31 | kteří
32 | mi
33 | nám
34 | tom
35 | tomuto
36 | mít
37 | nic
38 | proto
39 | kterou
40 | byla
41 | toho
42 | protože
43 | asi
44 | ho
45 | naši
46 | napište
47 | re
48 | což
49 | tím
50 | takže
51 | svých
52 | její
53 | svými
54 | jste
55 | aj
56 | tu
57 | tedy
58 | teto
59 | bylo
60 | kde
61 | ke
62 | pravé
63 | ji
64 | nad
65 | nejsou
66 | či
67 | pod
68 | téma
69 | mezi
70 | přes
71 | ty
72 | pak
73 | vám
74 | ani
75 | když
76 | však
77 | neg
78 | jsem
79 | tento
80 | článku
81 | články
82 | aby
83 | jsme
84 | před
85 | pta
86 | jejich
87 | byl
88 | ještě
89 | až
90 | bez
91 | také
92 | pouze
93 | první
94 | vaše
95 | která
96 | nás
97 | nový
98 | tipy
99 | pokud
100 | může
101 | strana
102 | jeho
103 | své
104 | jiné
105 | zprávy
106 | nové
107 | není
108 | vás
109 | jen
110 | podle
111 | zde
112 | už
113 | být
114 | více
115 | bude
116 | již
117 | než
118 | který
119 | by
120 | které
121 | co
122 | nebo
123 | ten
124 | tak
125 | má
126 | při
127 | od
128 | po
129 | jsou
130 | jak
131 | další
132 | ale
133 | si
134 | se
135 | ve
136 | to
137 | jako
138 | za
139 | zpět
140 | ze
141 | do
142 | pro
143 | je
144 | na
145 | atd
146 | atp
147 | jakmile
148 | přičemž
149 | já
150 | on
151 | ona
152 | ono
153 | oni
154 | ony
155 | my
156 | vy
157 | jí
158 | ji
159 | mě
160 | mne
161 | jemu
162 | tomu
163 | těm
164 | těmu
165 | němu
166 | němuž
167 | jehož
168 | jíž
169 | jelikož
170 | jež
171 | jakož
172 | načež
173 |
--------------------------------------------------------------------------------
/deploy/solr/lang/stopwords_el.txt:
--------------------------------------------------------------------------------
1 | # Lucene Greek Stopwords list
2 | # Note: by default this file is used after GreekLowerCaseFilter,
3 | # so when modifying this file use 'σ' instead of 'ς'
4 | ο
5 | η
6 | το
7 | οι
8 | τα
9 | του
10 | τησ
11 | των
12 | τον
13 | την
14 | και
15 | κι
16 | κ
17 | ειμαι
18 | εισαι
19 | ειναι
20 | ειμαστε
21 | ειστε
22 | στο
23 | στον
24 | στη
25 | στην
26 | μα
27 | αλλα
28 | απο
29 | για
30 | προσ
31 | με
32 | σε
33 | ωσ
34 | παρα
35 | αντι
36 | κατα
37 | μετα
38 | θα
39 | να
40 | δε
41 | δεν
42 | μη
43 | μην
44 | επι
45 | ενω
46 | εαν
47 | αν
48 | τοτε
49 | που
50 | πωσ
51 | ποιοσ
52 | ποια
53 | ποιο
54 | ποιοι
55 | ποιεσ
56 | ποιων
57 | ποιουσ
58 | αυτοσ
59 | αυτη
60 | αυτο
61 | αυτοι
62 | αυτων
63 | αυτουσ
64 | αυτεσ
65 | αυτα
66 | εκεινοσ
67 | εκεινη
68 | εκεινο
69 | εκεινοι
70 | εκεινεσ
71 | εκεινα
72 | εκεινων
73 | εκεινουσ
74 | οπωσ
75 | ομωσ
76 | ισωσ
77 | οσο
78 | οτι
79 |
--------------------------------------------------------------------------------
/deploy/solr/lang/stopwords_en.txt:
--------------------------------------------------------------------------------
1 | # Licensed to the Apache Software Foundation (ASF) under one or more
2 | # contributor license agreements. See the NOTICE file distributed with
3 | # this work for additional information regarding copyright ownership.
4 | # The ASF licenses this file to You under the Apache License, Version 2.0
5 | # (the "License"); you may not use this file except in compliance with
6 | # the License. You may obtain a copy of the License at
7 | #
8 | # http://www.apache.org/licenses/LICENSE-2.0
9 | #
10 | # Unless required by applicable law or agreed to in writing, software
11 | # distributed under the License is distributed on an "AS IS" BASIS,
12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | # See the License for the specific language governing permissions and
14 | # limitations under the License.
15 |
16 | # a couple of test stopwords to test that the words are really being
17 | # configured from this file:
18 | stopworda
19 | stopwordb
20 |
21 | # Standard english stop words taken from Lucene's StopAnalyzer
22 | a
23 | an
24 | and
25 | are
26 | as
27 | at
28 | be
29 | but
30 | by
31 | for
32 | if
33 | in
34 | into
35 | is
36 | it
37 | no
38 | not
39 | of
40 | on
41 | or
42 | such
43 | that
44 | the
45 | their
46 | then
47 | there
48 | these
49 | they
50 | this
51 | to
52 | was
53 | will
54 | with
55 |
--------------------------------------------------------------------------------
/deploy/solr/lang/stopwords_eu.txt:
--------------------------------------------------------------------------------
1 | # example set of basque stopwords
2 | al
3 | anitz
4 | arabera
5 | asko
6 | baina
7 | bat
8 | batean
9 | batek
10 | bati
11 | batzuei
12 | batzuek
13 | batzuetan
14 | batzuk
15 | bera
16 | beraiek
17 | berau
18 | berauek
19 | bere
20 | berori
21 | beroriek
22 | beste
23 | bezala
24 | da
25 | dago
26 | dira
27 | ditu
28 | du
29 | dute
30 | edo
31 | egin
32 | ere
33 | eta
34 | eurak
35 | ez
36 | gainera
37 | gu
38 | gutxi
39 | guzti
40 | haiei
41 | haiek
42 | haietan
43 | hainbeste
44 | hala
45 | han
46 | handik
47 | hango
48 | hara
49 | hari
50 | hark
51 | hartan
52 | hau
53 | hauei
54 | hauek
55 | hauetan
56 | hemen
57 | hemendik
58 | hemengo
59 | hi
60 | hona
61 | honek
62 | honela
63 | honetan
64 | honi
65 | hor
66 | hori
67 | horiei
68 | horiek
69 | horietan
70 | horko
71 | horra
72 | horrek
73 | horrela
74 | horretan
75 | horri
76 | hortik
77 | hura
78 | izan
79 | ni
80 | noiz
81 | nola
82 | non
83 | nondik
84 | nongo
85 | nor
86 | nora
87 | ze
88 | zein
89 | zen
90 | zenbait
91 | zenbat
92 | zer
93 | zergatik
94 | ziren
95 | zituen
96 | zu
97 | zuek
98 | zuen
99 | zuten
100 |
--------------------------------------------------------------------------------
/deploy/solr/lang/stopwords_ga.txt:
--------------------------------------------------------------------------------
1 |
2 | a
3 | ach
4 | ag
5 | agus
6 | an
7 | aon
8 | ar
9 | arna
10 | as
11 | b'
12 | ba
13 | beirt
14 | bhúr
15 | caoga
16 | ceathair
17 | ceathrar
18 | chomh
19 | chtó
20 | chuig
21 | chun
22 | cois
23 | céad
24 | cúig
25 | cúigear
26 | d'
27 | daichead
28 | dar
29 | de
30 | deich
31 | deichniúr
32 | den
33 | dhá
34 | do
35 | don
36 | dtí
37 | dá
38 | dár
39 | dó
40 | faoi
41 | faoin
42 | faoina
43 | faoinár
44 | fara
45 | fiche
46 | gach
47 | gan
48 | go
49 | gur
50 | haon
51 | hocht
52 | i
53 | iad
54 | idir
55 | in
56 | ina
57 | ins
58 | inár
59 | is
60 | le
61 | leis
62 | lena
63 | lenár
64 | m'
65 | mar
66 | mo
67 | mé
68 | na
69 | nach
70 | naoi
71 | naonúr
72 | ná
73 | ní
74 | níor
75 | nó
76 | nócha
77 | ocht
78 | ochtar
79 | os
80 | roimh
81 | sa
82 | seacht
83 | seachtar
84 | seachtó
85 | seasca
86 | seisear
87 | siad
88 | sibh
89 | sinn
90 | sna
91 | sé
92 | sí
93 | tar
94 | thar
95 | thú
96 | triúr
97 | trí
98 | trína
99 | trínár
100 | tríocha
101 | tú
102 | um
103 | ár
104 | é
105 | éis
106 | í
107 | ó
108 | ón
109 | óna
110 | ónár
111 |
--------------------------------------------------------------------------------
/deploy/solr/lang/stopwords_gl.txt:
--------------------------------------------------------------------------------
1 | # galican stopwords
2 | a
3 | aínda
4 | alí
5 | aquel
6 | aquela
7 | aquelas
8 | aqueles
9 | aquilo
10 | aquí
11 | ao
12 | aos
13 | as
14 | así
15 | á
16 | ben
17 | cando
18 | che
19 | co
20 | coa
21 | comigo
22 | con
23 | connosco
24 | contigo
25 | convosco
26 | coas
27 | cos
28 | cun
29 | cuns
30 | cunha
31 | cunhas
32 | da
33 | dalgunha
34 | dalgunhas
35 | dalgún
36 | dalgúns
37 | das
38 | de
39 | del
40 | dela
41 | delas
42 | deles
43 | desde
44 | deste
45 | do
46 | dos
47 | dun
48 | duns
49 | dunha
50 | dunhas
51 | e
52 | el
53 | ela
54 | elas
55 | eles
56 | en
57 | era
58 | eran
59 | esa
60 | esas
61 | ese
62 | eses
63 | esta
64 | estar
65 | estaba
66 | está
67 | están
68 | este
69 | estes
70 | estiven
71 | estou
72 | eu
73 | é
74 | facer
75 | foi
76 | foron
77 | fun
78 | había
79 | hai
80 | iso
81 | isto
82 | la
83 | las
84 | lle
85 | lles
86 | lo
87 | los
88 | mais
89 | me
90 | meu
91 | meus
92 | min
93 | miña
94 | miñas
95 | moi
96 | na
97 | nas
98 | neste
99 | nin
100 | no
101 | non
102 | nos
103 | nosa
104 | nosas
105 | noso
106 | nosos
107 | nós
108 | nun
109 | nunha
110 | nuns
111 | nunhas
112 | o
113 | os
114 | ou
115 | ó
116 | ós
117 | para
118 | pero
119 | pode
120 | pois
121 | pola
122 | polas
123 | polo
124 | polos
125 | por
126 | que
127 | se
128 | senón
129 | ser
130 | seu
131 | seus
132 | sexa
133 | sido
134 | sobre
135 | súa
136 | súas
137 | tamén
138 | tan
139 | te
140 | ten
141 | teñen
142 | teño
143 | ter
144 | teu
145 | teus
146 | ti
147 | tido
148 | tiña
149 | tiven
150 | túa
151 | túas
152 | un
153 | unha
154 | unhas
155 | uns
156 | vos
157 | vosa
158 | vosas
159 | voso
160 | vosos
161 | vós
162 |
--------------------------------------------------------------------------------
/deploy/solr/lang/stopwords_hi.txt:
--------------------------------------------------------------------------------
1 | # Also see http://www.opensource.org/licenses/bsd-license.html
2 | # See http://members.unine.ch/jacques.savoy/clef/index.html.
3 | # This file was created by Jacques Savoy and is distributed under the BSD license.
4 | # Note: by default this file also contains forms normalized by HindiNormalizer
5 | # for spelling variation (see section below), such that it can be used whether or
6 | # not you enable that feature. When adding additional entries to this list,
7 | # please add the normalized form as well.
8 | अंदर
9 | अत
10 | अपना
11 | अपनी
12 | अपने
13 | अभी
14 | आदि
15 | आप
16 | इत्यादि
17 | इन
18 | इनका
19 | इन्हीं
20 | इन्हें
21 | इन्हों
22 | इस
23 | इसका
24 | इसकी
25 | इसके
26 | इसमें
27 | इसी
28 | इसे
29 | उन
30 | उनका
31 | उनकी
32 | उनके
33 | उनको
34 | उन्हीं
35 | उन्हें
36 | उन्हों
37 | उस
38 | उसके
39 | उसी
40 | उसे
41 | एक
42 | एवं
43 | एस
44 | ऐसे
45 | और
46 | कई
47 | कर
48 | करता
49 | करते
50 | करना
51 | करने
52 | करें
53 | कहते
54 | कहा
55 | का
56 | काफ़ी
57 | कि
58 | कितना
59 | किन्हें
60 | किन्हों
61 | किया
62 | किर
63 | किस
64 | किसी
65 | किसे
66 | की
67 | कुछ
68 | कुल
69 | के
70 | को
71 | कोई
72 | कौन
73 | कौनसा
74 | गया
75 | घर
76 | जब
77 | जहाँ
78 | जा
79 | जितना
80 | जिन
81 | जिन्हें
82 | जिन्हों
83 | जिस
84 | जिसे
85 | जीधर
86 | जैसा
87 | जैसे
88 | जो
89 | तक
90 | तब
91 | तरह
92 | तिन
93 | तिन्हें
94 | तिन्हों
95 | तिस
96 | तिसे
97 | तो
98 | था
99 | थी
100 | थे
101 | दबारा
102 | दिया
103 | दुसरा
104 | दूसरे
105 | दो
106 | द्वारा
107 | न
108 | नहीं
109 | ना
110 | निहायत
111 | नीचे
112 | ने
113 | पर
114 | पर
115 | पहले
116 | पूरा
117 | पे
118 | फिर
119 | बनी
120 | बही
121 | बहुत
122 | बाद
123 | बाला
124 | बिलकुल
125 | भी
126 | भीतर
127 | मगर
128 | मानो
129 | मे
130 | में
131 | यदि
132 | यह
133 | यहाँ
134 | यही
135 | या
136 | यिह
137 | ये
138 | रखें
139 | रहा
140 | रहे
141 | ऱ्वासा
142 | लिए
143 | लिये
144 | लेकिन
145 | व
146 | वर्ग
147 | वह
148 | वह
149 | वहाँ
150 | वहीं
151 | वाले
152 | वुह
153 | वे
154 | वग़ैरह
155 | संग
156 | सकता
157 | सकते
158 | सबसे
159 | सभी
160 | साथ
161 | साबुत
162 | साभ
163 | सारा
164 | से
165 | सो
166 | ही
167 | हुआ
168 | हुई
169 | हुए
170 | है
171 | हैं
172 | हो
173 | होता
174 | होती
175 | होते
176 | होना
177 | होने
178 | # additional normalized forms of the above
179 | अपनि
180 | जेसे
181 | होति
182 | सभि
183 | तिंहों
184 | इंहों
185 | दवारा
186 | इसि
187 | किंहें
188 | थि
189 | उंहों
190 | ओर
191 | जिंहें
192 | वहिं
193 | अभि
194 | बनि
195 | हि
196 | उंहिं
197 | उंहें
198 | हें
199 | वगेरह
200 | एसे
201 | रवासा
202 | कोन
203 | निचे
204 | काफि
205 | उसि
206 | पुरा
207 | भितर
208 | हे
209 | बहि
210 | वहां
211 | कोइ
212 | यहां
213 | जिंहों
214 | तिंहें
215 | किसि
216 | कइ
217 | यहि
218 | इंहिं
219 | जिधर
220 | इंहें
221 | अदि
222 | इतयादि
223 | हुइ
224 | कोनसा
225 | इसकि
226 | दुसरे
227 | जहां
228 | अप
229 | किंहों
230 | उनकि
231 | भि
232 | वरग
233 | हुअ
234 | जेसा
235 | नहिं
236 |
--------------------------------------------------------------------------------
/deploy/solr/lang/stopwords_hu.txt:
--------------------------------------------------------------------------------
1 | | From svn.tartarus.org/snowball/trunk/website/algorithms/hungarian/stop.txt
2 | | This file is distributed under the BSD License.
3 | | See http://snowball.tartarus.org/license.php
4 | | Also see http://www.opensource.org/licenses/bsd-license.html
5 | | - Encoding was converted to UTF-8.
6 | | - This notice was added.
7 |
8 | | Hungarian stop word list
9 | | prepared by Anna Tordai
10 |
11 | a
12 | ahogy
13 | ahol
14 | aki
15 | akik
16 | akkor
17 | alatt
18 | által
19 | általában
20 | amely
21 | amelyek
22 | amelyekben
23 | amelyeket
24 | amelyet
25 | amelynek
26 | ami
27 | amit
28 | amolyan
29 | amíg
30 | amikor
31 | át
32 | abban
33 | ahhoz
34 | annak
35 | arra
36 | arról
37 | az
38 | azok
39 | azon
40 | azt
41 | azzal
42 | azért
43 | aztán
44 | azután
45 | azonban
46 | bár
47 | be
48 | belül
49 | benne
50 | cikk
51 | cikkek
52 | cikkeket
53 | csak
54 | de
55 | e
56 | eddig
57 | egész
58 | egy
59 | egyes
60 | egyetlen
61 | egyéb
62 | egyik
63 | egyre
64 | ekkor
65 | el
66 | elég
67 | ellen
68 | elő
69 | először
70 | előtt
71 | első
72 | én
73 | éppen
74 | ebben
75 | ehhez
76 | emilyen
77 | ennek
78 | erre
79 | ez
80 | ezt
81 | ezek
82 | ezen
83 | ezzel
84 | ezért
85 | és
86 | fel
87 | felé
88 | hanem
89 | hiszen
90 | hogy
91 | hogyan
92 | igen
93 | így
94 | illetve
95 | ill.
96 | ill
97 | ilyen
98 | ilyenkor
99 | ison
100 | ismét
101 | itt
102 | jó
103 | jól
104 | jobban
105 | kell
106 | kellett
107 | keresztül
108 | keressünk
109 | ki
110 | kívül
111 | között
112 | közül
113 | legalább
114 | lehet
115 | lehetett
116 | legyen
117 | lenne
118 | lenni
119 | lesz
120 | lett
121 | maga
122 | magát
123 | majd
124 | majd
125 | már
126 | más
127 | másik
128 | meg
129 | még
130 | mellett
131 | mert
132 | mely
133 | melyek
134 | mi
135 | mit
136 | míg
137 | miért
138 | milyen
139 | mikor
140 | minden
141 | mindent
142 | mindenki
143 | mindig
144 | mint
145 | mintha
146 | mivel
147 | most
148 | nagy
149 | nagyobb
150 | nagyon
151 | ne
152 | néha
153 | nekem
154 | neki
155 | nem
156 | néhány
157 | nélkül
158 | nincs
159 | olyan
160 | ott
161 | össze
162 | ő
163 | ők
164 | őket
165 | pedig
166 | persze
167 | rá
168 | s
169 | saját
170 | sem
171 | semmi
172 | sok
173 | sokat
174 | sokkal
175 | számára
176 | szemben
177 | szerint
178 | szinte
179 | talán
180 | tehát
181 | teljes
182 | tovább
183 | továbbá
184 | több
185 | úgy
186 | ugyanis
187 | új
188 | újabb
189 | újra
190 | után
191 | utána
192 | utolsó
193 | vagy
194 | vagyis
195 | valaki
196 | valami
197 | valamint
198 | való
199 | vagyok
200 | van
201 | vannak
202 | volt
203 | voltam
204 | voltak
205 | voltunk
206 | vissza
207 | vele
208 | viszont
209 | volna
210 |
--------------------------------------------------------------------------------
/deploy/solr/lang/stopwords_hy.txt:
--------------------------------------------------------------------------------
1 | # example set of Armenian stopwords.
2 | այդ
3 | այլ
4 | այն
5 | այս
6 | դու
7 | դուք
8 | եմ
9 | են
10 | ենք
11 | ես
12 | եք
13 | է
14 | էի
15 | էին
16 | էինք
17 | էիր
18 | էիք
19 | էր
20 | ըստ
21 | թ
22 | ի
23 | ին
24 | իսկ
25 | իր
26 | կամ
27 | համար
28 | հետ
29 | հետո
30 | մենք
31 | մեջ
32 | մի
33 | ն
34 | նա
35 | նաև
36 | նրա
37 | նրանք
38 | որ
39 | որը
40 | որոնք
41 | որպես
42 | ու
43 | ում
44 | պիտի
45 | վրա
46 | և
47 |
--------------------------------------------------------------------------------
/deploy/solr/lang/stopwords_ja.txt:
--------------------------------------------------------------------------------
1 | #
2 | # This file defines a stopword set for Japanese.
3 | #
4 | # This set is made up of hand-picked frequent terms from segmented Japanese Wikipedia.
5 | # Punctuation characters and frequent kanji have mostly been left out. See LUCENE-3745
6 | # for frequency lists, etc. that can be useful for making your own set (if desired)
7 | #
8 | # Note that there is an overlap between these stopwords and the terms stopped when used
9 | # in combination with the JapanesePartOfSpeechStopFilter. When editing this file, note
10 | # that comments are not allowed on the same line as stopwords.
11 | #
12 | # Also note that stopping is done in a case-insensitive manner. Change your StopFilter
13 | # configuration if you need case-sensitive stopping. Lastly, note that stopping is done
14 | # using the same character width as the entries in this file. Since this StopFilter is
15 | # normally done after a CJKWidthFilter in your chain, you would usually want your romaji
16 | # entries to be in half-width and your kana entries to be in full-width.
17 | #
18 | の
19 | に
20 | は
21 | を
22 | た
23 | が
24 | で
25 | て
26 | と
27 | し
28 | れ
29 | さ
30 | ある
31 | いる
32 | も
33 | する
34 | から
35 | な
36 | こと
37 | として
38 | い
39 | や
40 | れる
41 | など
42 | なっ
43 | ない
44 | この
45 | ため
46 | その
47 | あっ
48 | よう
49 | また
50 | もの
51 | という
52 | あり
53 | まで
54 | られ
55 | なる
56 | へ
57 | か
58 | だ
59 | これ
60 | によって
61 | により
62 | おり
63 | より
64 | による
65 | ず
66 | なり
67 | られる
68 | において
69 | ば
70 | なかっ
71 | なく
72 | しかし
73 | について
74 | せ
75 | だっ
76 | その後
77 | できる
78 | それ
79 | う
80 | ので
81 | なお
82 | のみ
83 | でき
84 | き
85 | つ
86 | における
87 | および
88 | いう
89 | さらに
90 | でも
91 | ら
92 | たり
93 | その他
94 | に関する
95 | たち
96 | ます
97 | ん
98 | なら
99 | に対して
100 | 特に
101 | せる
102 | 及び
103 | これら
104 | とき
105 | では
106 | にて
107 | ほか
108 | ながら
109 | うち
110 | そして
111 | とともに
112 | ただし
113 | かつて
114 | それぞれ
115 | または
116 | お
117 | ほど
118 | ものの
119 | に対する
120 | ほとんど
121 | と共に
122 | といった
123 | です
124 | とも
125 | ところ
126 | ここ
127 | ##### End of file
128 |
--------------------------------------------------------------------------------
/deploy/solr/lang/stopwords_lv.txt:
--------------------------------------------------------------------------------
1 | # Set of Latvian stopwords from A Stemming Algorithm for Latvian, Karlis Kreslins
2 | # the original list of over 800 forms was refined:
3 | # pronouns, adverbs, interjections were removed
4 | #
5 | # prepositions
6 | aiz
7 | ap
8 | ar
9 | apakš
10 | ārpus
11 | augšpus
12 | bez
13 | caur
14 | dēļ
15 | gar
16 | iekš
17 | iz
18 | kopš
19 | labad
20 | lejpus
21 | līdz
22 | no
23 | otrpus
24 | pa
25 | par
26 | pār
27 | pēc
28 | pie
29 | pirms
30 | pret
31 | priekš
32 | starp
33 | šaipus
34 | uz
35 | viņpus
36 | virs
37 | virspus
38 | zem
39 | apakšpus
40 | # Conjunctions
41 | un
42 | bet
43 | jo
44 | ja
45 | ka
46 | lai
47 | tomēr
48 | tikko
49 | turpretī
50 | arī
51 | kaut
52 | gan
53 | tādēļ
54 | tā
55 | ne
56 | tikvien
57 | vien
58 | kā
59 | ir
60 | te
61 | vai
62 | kamēr
63 | # Particles
64 | ar
65 | diezin
66 | droši
67 | diemžēl
68 | nebūt
69 | ik
70 | it
71 | taču
72 | nu
73 | pat
74 | tiklab
75 | iekšpus
76 | nedz
77 | tik
78 | nevis
79 | turpretim
80 | jeb
81 | iekam
82 | iekām
83 | iekāms
84 | kolīdz
85 | līdzko
86 | tiklīdz
87 | jebšu
88 | tālab
89 | tāpēc
90 | nekā
91 | itin
92 | jā
93 | jau
94 | jel
95 | nē
96 | nezin
97 | tad
98 | tikai
99 | vis
100 | tak
101 | iekams
102 | vien
103 | # modal verbs
104 | būt
105 | biju
106 | biji
107 | bija
108 | bijām
109 | bijāt
110 | esmu
111 | esi
112 | esam
113 | esat
114 | būšu
115 | būsi
116 | būs
117 | būsim
118 | būsiet
119 | tikt
120 | tiku
121 | tiki
122 | tika
123 | tikām
124 | tikāt
125 | tieku
126 | tiec
127 | tiek
128 | tiekam
129 | tiekat
130 | tikšu
131 | tiks
132 | tiksim
133 | tiksiet
134 | tapt
135 | tapi
136 | tapāt
137 | topat
138 | tapšu
139 | tapsi
140 | taps
141 | tapsim
142 | tapsiet
143 | kļūt
144 | kļuvu
145 | kļuvi
146 | kļuva
147 | kļuvām
148 | kļuvāt
149 | kļūstu
150 | kļūsti
151 | kļūst
152 | kļūstam
153 | kļūstat
154 | kļūšu
155 | kļūsi
156 | kļūs
157 | kļūsim
158 | kļūsiet
159 | # verbs
160 | varēt
161 | varēju
162 | varējām
163 | varēšu
164 | varēsim
165 | var
166 | varēji
167 | varējāt
168 | varēsi
169 | varēsiet
170 | varat
171 | varēja
172 | varēs
173 |
--------------------------------------------------------------------------------
/deploy/solr/lang/stopwords_ro.txt:
--------------------------------------------------------------------------------
1 | # This file was created by Jacques Savoy and is distributed under the BSD license.
2 | # See http://members.unine.ch/jacques.savoy/clef/index.html.
3 | # Also see http://www.opensource.org/licenses/bsd-license.html
4 | acea
5 | aceasta
6 | această
7 | aceea
8 | acei
9 | aceia
10 | acel
11 | acela
12 | acele
13 | acelea
14 | acest
15 | acesta
16 | aceste
17 | acestea
18 | aceşti
19 | aceştia
20 | acolo
21 | acum
22 | ai
23 | aia
24 | aibă
25 | aici
26 | al
27 | ăla
28 | ale
29 | alea
30 | ălea
31 | altceva
32 | altcineva
33 | am
34 | ar
35 | are
36 | aş
37 | aşadar
38 | asemenea
39 | asta
40 | ăsta
41 | astăzi
42 | astea
43 | ăstea
44 | ăştia
45 | asupra
46 | aţi
47 | au
48 | avea
49 | avem
50 | aveţi
51 | azi
52 | bine
53 | bucur
54 | bună
55 | ca
56 | că
57 | căci
58 | când
59 | care
60 | cărei
61 | căror
62 | cărui
63 | cât
64 | câte
65 | câţi
66 | către
67 | câtva
68 | ce
69 | cel
70 | ceva
71 | chiar
72 | cînd
73 | cine
74 | cineva
75 | cît
76 | cîte
77 | cîţi
78 | cîtva
79 | contra
80 | cu
81 | cum
82 | cumva
83 | curând
84 | curînd
85 | da
86 | dă
87 | dacă
88 | dar
89 | datorită
90 | de
91 | deci
92 | deja
93 | deoarece
94 | departe
95 | deşi
96 | din
97 | dinaintea
98 | dintr
99 | dintre
100 | drept
101 | după
102 | ea
103 | ei
104 | el
105 | ele
106 | eram
107 | este
108 | eşti
109 | eu
110 | face
111 | fără
112 | fi
113 | fie
114 | fiecare
115 | fii
116 | fim
117 | fiţi
118 | iar
119 | ieri
120 | îi
121 | îl
122 | îmi
123 | împotriva
124 | în
125 | înainte
126 | înaintea
127 | încât
128 | încît
129 | încotro
130 | între
131 | întrucât
132 | întrucît
133 | îţi
134 | la
135 | lângă
136 | le
137 | li
138 | lîngă
139 | lor
140 | lui
141 | mă
142 | mâine
143 | mea
144 | mei
145 | mele
146 | mereu
147 | meu
148 | mi
149 | mine
150 | mult
151 | multă
152 | mulţi
153 | ne
154 | nicăieri
155 | nici
156 | nimeni
157 | nişte
158 | noastră
159 | noastre
160 | noi
161 | noştri
162 | nostru
163 | nu
164 | ori
165 | oricând
166 | oricare
167 | oricât
168 | orice
169 | oricînd
170 | oricine
171 | oricît
172 | oricum
173 | oriunde
174 | până
175 | pe
176 | pentru
177 | peste
178 | pînă
179 | poate
180 | pot
181 | prea
182 | prima
183 | primul
184 | prin
185 | printr
186 | sa
187 | să
188 | săi
189 | sale
190 | sau
191 | său
192 | se
193 | şi
194 | sînt
195 | sîntem
196 | sînteţi
197 | spre
198 | sub
199 | sunt
200 | suntem
201 | sunteţi
202 | ta
203 | tăi
204 | tale
205 | tău
206 | te
207 | ţi
208 | ţie
209 | tine
210 | toată
211 | toate
212 | tot
213 | toţi
214 | totuşi
215 | tu
216 | un
217 | una
218 | unde
219 | undeva
220 | unei
221 | unele
222 | uneori
223 | unor
224 | vă
225 | vi
226 | voastră
227 | voastre
228 | voi
229 | voştri
230 | vostru
231 | vouă
232 | vreo
233 | vreun
234 |
--------------------------------------------------------------------------------
/deploy/solr/lang/stopwords_th.txt:
--------------------------------------------------------------------------------
1 | # Thai stopwords from:
2 | # "Opinion Detection in Thai Political News Columns
3 | # Based on Subjectivity Analysis"
4 | # Khampol Sukhum, Supot Nitsuwat, and Choochart Haruechaiyasak
5 | ไว้
6 | ไม่
7 | ไป
8 | ได้
9 | ให้
10 | ใน
11 | โดย
12 | แห่ง
13 | แล้ว
14 | และ
15 | แรก
16 | แบบ
17 | แต่
18 | เอง
19 | เห็น
20 | เลย
21 | เริ่ม
22 | เรา
23 | เมื่อ
24 | เพื่อ
25 | เพราะ
26 | เป็นการ
27 | เป็น
28 | เปิดเผย
29 | เปิด
30 | เนื่องจาก
31 | เดียวกัน
32 | เดียว
33 | เช่น
34 | เฉพาะ
35 | เคย
36 | เข้า
37 | เขา
38 | อีก
39 | อาจ
40 | อะไร
41 | ออก
42 | อย่าง
43 | อยู่
44 | อยาก
45 | หาก
46 | หลาย
47 | หลังจาก
48 | หลัง
49 | หรือ
50 | หนึ่ง
51 | ส่วน
52 | ส่ง
53 | สุด
54 | สําหรับ
55 | ว่า
56 | วัน
57 | ลง
58 | ร่วม
59 | ราย
60 | รับ
61 | ระหว่าง
62 | รวม
63 | ยัง
64 | มี
65 | มาก
66 | มา
67 | พร้อม
68 | พบ
69 | ผ่าน
70 | ผล
71 | บาง
72 | น่า
73 | นี้
74 | นํา
75 | นั้น
76 | นัก
77 | นอกจาก
78 | ทุก
79 | ที่สุด
80 | ที่
81 | ทําให้
82 | ทํา
83 | ทาง
84 | ทั้งนี้
85 | ทั้ง
86 | ถ้า
87 | ถูก
88 | ถึง
89 | ต้อง
90 | ต่างๆ
91 | ต่าง
92 | ต่อ
93 | ตาม
94 | ตั้งแต่
95 | ตั้ง
96 | ด้าน
97 | ด้วย
98 | ดัง
99 | ซึ่ง
100 | ช่วง
101 | จึง
102 | จาก
103 | จัด
104 | จะ
105 | คือ
106 | ความ
107 | ครั้ง
108 | คง
109 | ขึ้น
110 | ของ
111 | ขอ
112 | ขณะ
113 | ก่อน
114 | ก็
115 | การ
116 | กับ
117 | กัน
118 | กว่า
119 | กล่าว
120 |
--------------------------------------------------------------------------------
/deploy/solr/lang/stopwords_tr.txt:
--------------------------------------------------------------------------------
1 | # Turkish stopwords from LUCENE-559
2 | # merged with the list from "Information Retrieval on Turkish Texts"
3 | # (http://www.users.muohio.edu/canf/papers/JASIST2008offPrint.pdf)
4 | acaba
5 | altmış
6 | altı
7 | ama
8 | ancak
9 | arada
10 | aslında
11 | ayrıca
12 | bana
13 | bazı
14 | belki
15 | ben
16 | benden
17 | beni
18 | benim
19 | beri
20 | beş
21 | bile
22 | bin
23 | bir
24 | birçok
25 | biri
26 | birkaç
27 | birkez
28 | birşey
29 | birşeyi
30 | biz
31 | bize
32 | bizden
33 | bizi
34 | bizim
35 | böyle
36 | böylece
37 | bu
38 | buna
39 | bunda
40 | bundan
41 | bunlar
42 | bunları
43 | bunların
44 | bunu
45 | bunun
46 | burada
47 | çok
48 | çünkü
49 | da
50 | daha
51 | dahi
52 | de
53 | defa
54 | değil
55 | diğer
56 | diye
57 | doksan
58 | dokuz
59 | dolayı
60 | dolayısıyla
61 | dört
62 | edecek
63 | eden
64 | ederek
65 | edilecek
66 | ediliyor
67 | edilmesi
68 | ediyor
69 | eğer
70 | elli
71 | en
72 | etmesi
73 | etti
74 | ettiği
75 | ettiğini
76 | gibi
77 | göre
78 | halen
79 | hangi
80 | hatta
81 | hem
82 | henüz
83 | hep
84 | hepsi
85 | her
86 | herhangi
87 | herkesin
88 | hiç
89 | hiçbir
90 | için
91 | iki
92 | ile
93 | ilgili
94 | ise
95 | işte
96 | itibaren
97 | itibariyle
98 | kadar
99 | karşın
100 | katrilyon
101 | kendi
102 | kendilerine
103 | kendini
104 | kendisi
105 | kendisine
106 | kendisini
107 | kez
108 | ki
109 | kim
110 | kimden
111 | kime
112 | kimi
113 | kimse
114 | kırk
115 | milyar
116 | milyon
117 | mu
118 | mü
119 | mı
120 | nasıl
121 | ne
122 | neden
123 | nedenle
124 | nerde
125 | nerede
126 | nereye
127 | niye
128 | niçin
129 | o
130 | olan
131 | olarak
132 | oldu
133 | olduğu
134 | olduğunu
135 | olduklarını
136 | olmadı
137 | olmadığı
138 | olmak
139 | olması
140 | olmayan
141 | olmaz
142 | olsa
143 | olsun
144 | olup
145 | olur
146 | olursa
147 | oluyor
148 | on
149 | ona
150 | ondan
151 | onlar
152 | onlardan
153 | onları
154 | onların
155 | onu
156 | onun
157 | otuz
158 | oysa
159 | öyle
160 | pek
161 | rağmen
162 | sadece
163 | sanki
164 | sekiz
165 | seksen
166 | sen
167 | senden
168 | seni
169 | senin
170 | siz
171 | sizden
172 | sizi
173 | sizin
174 | şey
175 | şeyden
176 | şeyi
177 | şeyler
178 | şöyle
179 | şu
180 | şuna
181 | şunda
182 | şundan
183 | şunları
184 | şunu
185 | tarafından
186 | trilyon
187 | tüm
188 | üç
189 | üzere
190 | var
191 | vardı
192 | ve
193 | veya
194 | ya
195 | yani
196 | yapacak
197 | yapılan
198 | yapılması
199 | yapıyor
200 | yapmak
201 | yaptı
202 | yaptığı
203 | yaptığını
204 | yaptıkları
205 | yedi
206 | yerine
207 | yetmiş
208 | yine
209 | yirmi
210 | yoksa
211 | yüz
212 | zaten
213 |
--------------------------------------------------------------------------------
/deploy/solr/lang/userdict_ja.txt:
--------------------------------------------------------------------------------
1 | #
2 | # This is a sample user dictionary for Kuromoji (JapaneseTokenizer)
3 | #
4 | # Add entries to this file in order to override the statistical model in terms
5 | # of segmentation, readings and part-of-speech tags. Notice that entries do
6 | # not have weights since they are always used when found. This is by-design
7 | # in order to maximize ease-of-use.
8 | #
9 | # Entries are defined using the following CSV format:
10 | # , ... , ... ,
11 | #
12 | # Notice that a single half-width space separates tokens and readings, and
13 | # that the number tokens and readings must match exactly.
14 | #
15 | # Also notice that multiple entries with the same is undefined.
16 | #
17 | # Whitespace only lines are ignored. Comments are not allowed on entry lines.
18 | #
19 |
20 | # Custom segmentation for kanji compounds
21 | 日本経済新聞,日本 経済 新聞,ニホン ケイザイ シンブン,カスタム名詞
22 | 関西国際空港,関西 国際 空港,カンサイ コクサイ クウコウ,カスタム名詞
23 |
24 | # Custom segmentation for compound katakana
25 | トートバッグ,トート バッグ,トート バッグ,かずカナ名詞
26 | ショルダーバッグ,ショルダー バッグ,ショルダー バッグ,かずカナ名詞
27 |
28 | # Custom reading for former sumo wrestler
29 | 朝青龍,朝青龍,アサショウリュウ,カスタム人名
30 |
--------------------------------------------------------------------------------
/deploy/solr/protwords.txt:
--------------------------------------------------------------------------------
1 | # The ASF licenses this file to You under the Apache License, Version 2.0
2 | # (the "License"); you may not use this file except in compliance with
3 | # the License. You may obtain a copy of the License at
4 | #
5 | # http://www.apache.org/licenses/LICENSE-2.0
6 | #
7 | # Unless required by applicable law or agreed to in writing, software
8 | # distributed under the License is distributed on an "AS IS" BASIS,
9 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10 | # See the License for the specific language governing permissions and
11 | # limitations under the License.
12 |
13 | #-----------------------------------------------------------------------
14 | # Use a protected word file to protect against the stemmer reducing two
15 | # unrelated words to the same base word.
16 |
17 | # Some non-words that normally won't be encountered,
18 | # just to test that they won't be stemmed.
19 | dontstems
20 | zwhacky
21 |
--------------------------------------------------------------------------------
/deploy/solr/scripts.conf:
--------------------------------------------------------------------------------
1 | # Licensed to the Apache Software Foundation (ASF) under one or more
2 | # contributor license agreements. See the NOTICE file distributed with
3 | # this work for additional information regarding copyright ownership.
4 | # The ASF licenses this file to You under the Apache License, Version 2.0
5 | # (the "License"); you may not use this file except in compliance with
6 | # the License. You may obtain a copy of the License at
7 | #
8 | # http://www.apache.org/licenses/LICENSE-2.0
9 | #
10 | # Unless required by applicable law or agreed to in writing, software
11 | # distributed under the License is distributed on an "AS IS" BASIS,
12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | # See the License for the specific language governing permissions and
14 | # limitations under the License.
15 |
16 | user=
17 | solr_hostname=localhost
18 | solr_port=8983
19 | rsyncd_port=18983
20 | data_dir=
21 | webapp_name=solr
22 | master_host=
23 | master_data_dir=
24 | master_status_dir=
25 |
--------------------------------------------------------------------------------
/deploy/solr/spellings.txt:
--------------------------------------------------------------------------------
1 | pizza
2 | history
--------------------------------------------------------------------------------
/deploy/solr/stopwords.txt:
--------------------------------------------------------------------------------
1 | # Licensed to the Apache Software Foundation (ASF) under one or more
2 | # contributor license agreements. See the NOTICE file distributed with
3 | # this work for additional information regarding copyright ownership.
4 | # The ASF licenses this file to You under the Apache License, Version 2.0
5 | # (the "License"); you may not use this file except in compliance with
6 | # the License. You may obtain a copy of the License at
7 | #
8 | # http://www.apache.org/licenses/LICENSE-2.0
9 | #
10 | # Unless required by applicable law or agreed to in writing, software
11 | # distributed under the License is distributed on an "AS IS" BASIS,
12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 | # See the License for the specific language governing permissions and
14 | # limitations under the License.
15 |
--------------------------------------------------------------------------------
/deploy/solr/synonyms.txt:
--------------------------------------------------------------------------------
1 | # The ASF licenses this file to You under the Apache License, Version 2.0
2 | # (the "License"); you may not use this file except in compliance with
3 | # the License. You may obtain a copy of the License at
4 | #
5 | # http://www.apache.org/licenses/LICENSE-2.0
6 | #
7 | # Unless required by applicable law or agreed to in writing, software
8 | # distributed under the License is distributed on an "AS IS" BASIS,
9 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10 | # See the License for the specific language governing permissions and
11 | # limitations under the License.
12 |
13 | #-----------------------------------------------------------------------
14 | #some test synonym mappings unlikely to appear in real input text
15 | aaafoo => aaabar
16 | bbbfoo => bbbfoo bbbbar
17 | cccfoo => cccbar cccbaz
18 | fooaaa,baraaa,bazaaa
19 |
20 | # Some synonym groups specific to this example
21 | GB,gib,gigabyte,gigabytes
22 | MB,mib,megabyte,megabytes
23 | Television, Televisions, TV, TVs
24 | #notice we use "gib" instead of "GiB" so any WordDelimiterFilter coming
25 | #after us won't split it into two words.
26 |
27 | # Synonym mappings can be used for spelling correction too
28 | pixima => pixma
29 |
--------------------------------------------------------------------------------
/deploy/solr/update-script.js:
--------------------------------------------------------------------------------
1 | /*
2 | This is a basic skeleton JavaScript update processor.
3 |
4 | In order for this to be executed, it must be properly wired into solrconfig.xml; by default it is commented out in
5 | the example solrconfig.xml and must be uncommented to be enabled.
6 |
7 | See http://wiki.apache.org/solr/ScriptUpdateProcessor for more details.
8 | */
9 |
10 | function processAdd(cmd) {
11 |
12 | doc = cmd.solrDoc; // org.apache.solr.common.SolrInputDocument
13 | id = doc.getFieldValue("id");
14 | logger.info("update-script#processAdd: id=" + id);
15 |
16 | // Set a field value:
17 | // doc.setField("foo_s", "whatever");
18 |
19 | // Get a configuration parameter:
20 | // config_param = params.get('config_param'); // "params" only exists if processor configured with
21 |
22 | // Get a request parameter:
23 | // some_param = req.getParams().get("some_param")
24 |
25 | // Add a field of field names that match a pattern:
26 | // - Potentially useful to determine the fields/attributes represented in a result set, via faceting on field_name_ss
27 | // field_names = doc.getFieldNames().toArray();
28 | // for(i=0; i < field_names.length; i++) {
29 | // field_name = field_names[i];
30 | // if (/attr_.*/.test(field_name)) { doc.addField("attribute_ss", field_names[i]); }
31 | // }
32 |
33 | }
34 |
35 | function processDelete(cmd) {
36 | // no-op
37 | }
38 |
39 | function processMergeIndexes(cmd) {
40 | // no-op
41 | }
42 |
43 | function processCommit(cmd) {
44 | // no-op
45 | }
46 |
47 | function processRollback(cmd) {
48 | // no-op
49 | }
50 |
51 | function finish() {
52 | // no-op
53 | }
54 |
--------------------------------------------------------------------------------
/deploy/solr/velocity/browse.vm:
--------------------------------------------------------------------------------
1 | #set($searcher=$request.searcher)
2 | #set($params=$request.params)
3 | #set($clusters = $response.response.clusters)
4 | #set($mltResults = $response.response.get("moreLikeThis"))
5 | #set($annotate = $params.get("annotateBrowse"))
6 | #parse('query.vm')
7 | #if($response.response.spellcheck.suggestions and $response.response.spellcheck.suggestions.size() > 0)
8 | Did you mean $response.response.spellcheck.suggestions.collation?
9 | #end
10 |
11 |
12 | #parse("facets.vm")
13 |
14 |
15 |
16 | #if($response.response.get('grouped'))
17 | $response.response.get('grouped').size() group(s) found in ${response.responseHeader.QTime} ms
18 | #else$page.results_found results found in ${response.responseHeader.QTime} ms
19 | Page $page.current_page_number of $page.page_count#end
21 |
Disclaimer: The locations displayed in this demonstration are purely fictional. It is more than likely that no store with the items listed actually exists at that location!
--------------------------------------------------------------------------------
/deploy/solr/velocity/head.vm:
--------------------------------------------------------------------------------
1 |
2 | ## An example of using an arbitrary request parameter
3 | #param('title')
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/deploy/solr/velocity/header.vm:
--------------------------------------------------------------------------------
1 |
5 | {% with all_images=product.images.all %}
6 | {# use length rather then count as the images get queried anyways #}
7 |
8 | {% if all_images|length > 1 %}
9 |
10 |
11 |
12 | {% for image in all_images %}
13 |
14 | {% thumbnail image.original "600x600" upscale=False as thumb %}
15 |
16 | {% endthumbnail %}
17 |
18 | {% endfor %}
19 |
20 |
21 |
22 | {% else %}
23 | {# Only one image to show #}
24 |
25 | {% with image=product.primary_image %}
26 | {% thumbnail image.original "600x600" upscale=False as thumb %}
27 | {% if not image.is_missing %}
28 |
29 | {% else %}
30 |
31 | {% endif %}
32 | {% endthumbnail %}
33 | {% endwith %}
34 |