Commit 9fa13b2816272a517e5e42b21096fd9adc7c9570
1 parent
814cda19
Licensing changes.
Showing
72 changed files
with
36 additions
and
1566 deletions
INSTALL
... | ... | @@ -44,14 +44,14 @@ Stwórz folder "Walenty" w folderze "data": |
44 | 44 | |
45 | 45 | Dodaj w głównym folderze projektu plik konfiguracyjny settings.py (plik umieszczony jest w archiwum INSTALL_PACK.zip): |
46 | 46 | Zmień w nim zmienną STATIC_ROOT, tak by wskazywała na położenie plików statycznych strony, np.: |
47 | - STATIC_ROOT = "/home/zil/static/Slowal" | |
47 | + STATIC_ROOT = "/.../static/Slowal" | |
48 | 48 | |
49 | 49 | Dodaj w głównym folderze projektu plik konfiguracyjny database_data.py oraz zdefiniuj w nim połączenie z bazą danych, np.: |
50 | 50 | DATABASES = { |
51 | 51 | 'default': { |
52 | 52 | 'ENGINE': 'django.db.backends.postgresql_psycopg2', |
53 | - 'NAME': 'slowal', | |
54 | - 'USER': 'zil', | |
53 | + 'NAME': 'db_name', | |
54 | + 'USER': 'user_name', | |
55 | 55 | 'PASSWORD': '', |
56 | 56 | 'HOST': '', |
57 | 57 | 'PORT': '5432', |
... | ... | @@ -88,27 +88,27 @@ application = django.core.handlers.wsgi.WSGIHandler() |
88 | 88 | Skonfiguruj apacha dodając plik konfiguracyjny (np. o nazwie slowal.conf) do folderu sites-available apacha (domyślnie /etc/apache2/sites-available/), ścieżka WSGIScriptAlias musi wskazywać na plik slowal.wsgi. Przykładowy plik konfiguracyjny poniżej: |
89 | 89 | -------------------------------------------- |
90 | 90 | <VirtualHost *:80> |
91 | - ServerAdmin bartek.niton@gmail.com | |
91 | + ServerAdmin name@gmail.com | |
92 | 92 | ServerName slowal.nlp.ipipan.waw.pl |
93 | 93 | |
94 | 94 | ServerAlias walenty.ipipan.waw.pl |
95 | 95 | |
96 | - DocumentRoot /home/zil/Slowal/templates/ | |
96 | + DocumentRoot /.../Slowal/templates/ | |
97 | 97 | <Directory /> |
98 | 98 | Options FollowSymLinks |
99 | 99 | AllowOverride None |
100 | 100 | Require all granted |
101 | 101 | </Directory> |
102 | - WSGIScriptAlias / /home/zil/scripts/slowal.wsgi | |
102 | + WSGIScriptAlias / /.../scripts/slowal.wsgi | |
103 | 103 | WSGIDaemonProcess Slowal user=zil group=zil processes=2 threads=15 |
104 | 104 | WSGIProcessGroup Slowal |
105 | - Alias /static/ /home/zil/static/Slowal/ | |
106 | - <Directory "/home/zil/static/Slowal"> | |
105 | + Alias /static/ /.../static/Slowal/ | |
106 | + <Directory "/.../static/Slowal"> | |
107 | 107 | Require all granted |
108 | 108 | </Directory> |
109 | 109 | |
110 | - ErrorLog /home/zil/logs/Slowal/error.log | |
111 | - CustomLog /home/zil/logs/Slowal/access.log combined | |
110 | + ErrorLog /.../logs/Slowal/error.log | |
111 | + CustomLog /.../logs/Slowal/access.log combined | |
112 | 112 | </VirtualHost> |
113 | 113 | -------------------------------------------- |
114 | 114 | |
... | ... | @@ -119,5 +119,5 @@ Zrestartuj apacha: |
119 | 119 | >> sudo service apache2 restart |
120 | 120 | |
121 | 121 | Ustaw w crontabie cykliczne uruchamianie komend create_walenty i count_positions_occurrences: |
122 | -1 0 * * 5 python /home/zil/Slowal/manage.py create_walenty | |
123 | -0 1 * * * python /home/zil/Slowal/manage.py count_positions_occurrences | |
122 | +1 0 * * 5 python /.../Slowal/manage.py create_walenty | |
123 | +0 1 * * * python /.../Slowal/manage.py count_positions_occurrences | |
... | ... |
LICENSE
accounts/admin.py
1 | 1 | #-*- coding:utf-8 -*- |
2 | 2 | |
3 | -#Copyright (c) 2012, Bartłomiej Nitoń | |
4 | -#All rights reserved. | |
5 | - | |
6 | -#Redistribution and use in source and binary forms, with or without modification, are permitted provided | |
7 | -#that the following conditions are met: | |
8 | - | |
9 | -# Redistributions of source code must retain the above copyright notice, this list of conditions and | |
10 | -# the following disclaimer. | |
11 | -# Redistributions in binary form must reproduce the above copyright notice, this list of conditions | |
12 | -# and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
13 | - | |
14 | -#THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED | |
15 | -#WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | |
16 | -#PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR | |
17 | -#ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | |
18 | -#TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
19 | -#HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
20 | -#NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
21 | -#POSSIBILITY OF SUCH DAMAGE. | |
22 | - | |
23 | 3 | from django.contrib import admin |
24 | 4 | from django.contrib.sessions.models import Session |
25 | 5 | |
... | ... |
accounts/forms.py
1 | 1 | #-*- coding:utf-8 -*- |
2 | 2 | |
3 | -#Copyright (c) 2012, Bartłomiej Nitoń | |
4 | -#All rights reserved. | |
5 | - | |
6 | -#Redistribution and use in source and binary forms, with or without modification, are permitted provided | |
7 | -#that the following conditions are met: | |
8 | - | |
9 | -# Redistributions of source code must retain the above copyright notice, this list of conditions and | |
10 | -# the following disclaimer. | |
11 | -# Redistributions in binary form must reproduce the above copyright notice, this list of conditions | |
12 | -# and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
13 | - | |
14 | -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED | |
15 | -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | |
16 | -# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR | |
17 | -# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | |
18 | -# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
19 | -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
20 | -# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
21 | -# POSSIBILITY OF SUCH DAMAGE. | |
22 | - | |
23 | 3 | from django.forms import ModelForm |
24 | 4 | from accounts.models import UserSettings |
25 | 5 | |
... | ... |
accounts/models.py
1 | 1 | #-*- coding:utf-8 -*- |
2 | 2 | |
3 | -#Copyright (c) 2012, Bartłomiej Nitoń | |
4 | -#All rights reserved. | |
5 | - | |
6 | -#Redistribution and use in source and binary forms, with or without modification, are permitted provided | |
7 | -#that the following conditions are met: | |
8 | - | |
9 | -# Redistributions of source code must retain the above copyright notice, this list of conditions and | |
10 | -# the following disclaimer. | |
11 | -# Redistributions in binary form must reproduce the above copyright notice, this list of conditions | |
12 | -# and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
13 | - | |
14 | -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED | |
15 | -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | |
16 | -# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR | |
17 | -# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | |
18 | -# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
19 | -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
20 | -# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
21 | -# POSSIBILITY OF SUCH DAMAGE. | |
22 | - | |
23 | 3 | from django.db.models import * |
24 | 4 | from django.contrib.auth.models import User, Group |
25 | 5 | from django.core.validators import MinValueValidator, MaxValueValidator |
... | ... |
accounts/templates/settings.html
1 | -<!-- | |
2 | -Copyright (c) 2012, Bartłomiej Nitoń | |
3 | -All rights reserved. | |
4 | - | |
5 | -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | |
6 | - | |
7 | - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. | |
8 | - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
9 | - | |
10 | -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
11 | ---> | |
12 | - | |
13 | 1 | {% extends "base.html" %} |
14 | 2 | {% load url from future %} |
15 | 3 | |
... | ... |
accounts/views.py
1 | 1 | #-*- coding:utf-8 -*- |
2 | 2 | |
3 | -#Copyright (c) 2012, Bartłomiej Nitoń | |
4 | -#All rights reserved. | |
5 | - | |
6 | -#Redistribution and use in source and binary forms, with or without modification, are permitted provided | |
7 | -#that the following conditions are met: | |
8 | - | |
9 | -# Redistributions of source code must retain the above copyright notice, this list of conditions and | |
10 | -# the following disclaimer. | |
11 | -# Redistributions in binary form must reproduce the above copyright notice, this list of conditions | |
12 | -# and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
13 | - | |
14 | -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED | |
15 | -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | |
16 | -# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR | |
17 | -# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | |
18 | -# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
19 | -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
20 | -# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
21 | -# POSSIBILITY OF SUCH DAMAGE. | |
22 | - | |
23 | 3 | from django.http import HttpResponseRedirect |
24 | 4 | from django.contrib.auth.decorators import login_required |
25 | 5 | from common.decorators import render |
... | ... | @@ -38,4 +18,3 @@ def settings(request): |
38 | 18 | else: |
39 | 19 | form = SettingsForm(instance=user_settings) |
40 | 20 | return {'form': form, 'next': request.META.get('HTTP_REFERER', '')} |
41 | - | |
... | ... |
common/js_to_obj.py
1 | 1 | # -*- coding: utf-8 -*- |
2 | 2 | |
3 | -#Copyright (c) 2014, Bartłomiej Nitoń | |
4 | -#All rights reserved. | |
5 | - | |
6 | -#Redistribution and use in source and binary forms, with or without modification, are permitted provided | |
7 | -#that the following conditions are met: | |
8 | - | |
9 | -# Redistributions of source code must retain the above copyright notice, this list of conditions and | |
10 | -# the following disclaimer. | |
11 | -# Redistributions in binary form must reproduce the above copyright notice, this list of conditions | |
12 | -# and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
13 | - | |
14 | -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED | |
15 | -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | |
16 | -# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR | |
17 | -# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | |
18 | -# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
19 | -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
20 | -# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
21 | -# POSSIBILITY OF SUCH DAMAGE. | |
22 | - | |
23 | 3 | from dictionary.common_func import sortArguments, sortPositions |
24 | 4 | from dictionary.models import Argument, Frame, Frame_Char_Model, \ |
25 | 5 | Frame_Characteristic, Position, PositionCategory, \ |
... | ... |
common/templatetags/get.py
1 | 1 | # -*- coding: utf-8 -*- |
2 | 2 | |
3 | -#Copyright (c) 2012, Bartłomiej Nitoń | |
4 | -#All rights reserved. | |
5 | - | |
6 | -#Redistribution and use in source and binary forms, with or without modification, are permitted provided | |
7 | -#that the following conditions are met: | |
8 | - | |
9 | -# Redistributions of source code must retain the above copyright notice, this list of conditions and | |
10 | -# the following disclaimer. | |
11 | -# Redistributions in binary form must reproduce the above copyright notice, this list of conditions | |
12 | -# and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
13 | - | |
14 | -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED | |
15 | -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | |
16 | -# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR | |
17 | -# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | |
18 | -# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
19 | -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
20 | -# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
21 | -# POSSIBILITY OF SUCH DAMAGE. | |
22 | - | |
23 | 3 | from django.template import Library |
24 | 4 | |
25 | 5 | register = Library() |
26 | 6 | |
27 | 7 | @register.filter |
28 | 8 | def get(dict, arg): |
29 | - return dict[arg] | |
30 | 9 | \ No newline at end of file |
10 | + return dict[arg] | |
... | ... |
common/templatetags/ingroup.py
1 | 1 | # -*- coding: utf-8 -*- |
2 | 2 | |
3 | -#Copyright (c) 2012, Bartłomiej Nitoń | |
4 | -#All rights reserved. | |
5 | - | |
6 | -#Redistribution and use in source and binary forms, with or without modification, are permitted provided | |
7 | -#that the following conditions are met: | |
8 | - | |
9 | -# Redistributions of source code must retain the above copyright notice, this list of conditions and | |
10 | -# the following disclaimer. | |
11 | -# Redistributions in binary form must reproduce the above copyright notice, this list of conditions | |
12 | -# and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
13 | - | |
14 | -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED | |
15 | -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | |
16 | -# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR | |
17 | -# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | |
18 | -# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
19 | -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
20 | -# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
21 | -# POSSIBILITY OF SUCH DAMAGE. | |
22 | - | |
23 | 3 | from django.template import Library |
24 | 4 | |
25 | 5 | register = Library() |
... | ... |
dictionary/admin.py
1 | 1 | #-*- coding:utf-8 -*- |
2 | 2 | |
3 | -#Copyright (c) 2012, Bartłomiej Nitoń | |
4 | -#All rights reserved. | |
5 | - | |
6 | -#Redistribution and use in source and binary forms, with or without modification, are permitted provided | |
7 | -#that the following conditions are met: | |
8 | - | |
9 | -# Redistributions of source code must retain the above copyright notice, this list of conditions and | |
10 | -# the following disclaimer. | |
11 | -# Redistributions in binary form must reproduce the above copyright notice, this list of conditions | |
12 | -# and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
13 | - | |
14 | -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED | |
15 | -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | |
16 | -# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR | |
17 | -# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | |
18 | -# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
19 | -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
20 | -# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
21 | -# POSSIBILITY OF SUCH DAMAGE. | |
22 | - | |
23 | 3 | from django.contrib import admin |
24 | 4 | from models import * |
25 | 5 | |
... | ... |
dictionary/ajax_argument_form.py
1 | 1 | # -*- coding: utf-8 -*- |
2 | 2 | |
3 | -#Copyright (c) 2014, Bartłomiej Nitoń | |
4 | -#All rights reserved. | |
5 | - | |
6 | -#Redistribution and use in source and binary forms, with or without modification, are permitted provided | |
7 | -#that the following conditions are met: | |
8 | - | |
9 | -# Redistributions of source code must retain the above copyright notice, this list of conditions and | |
10 | -# the following disclaimer. | |
11 | -# Redistributions in binary form must reproduce the above copyright notice, this list of conditions | |
12 | -# and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
13 | - | |
14 | -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED | |
15 | -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | |
16 | -# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR | |
17 | -# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | |
18 | -# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
19 | -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
20 | -# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
21 | -# POSSIBILITY OF SUCH DAMAGE. | |
22 | - | |
23 | 3 | from operator import itemgetter, or_ |
24 | 4 | |
25 | 5 | from django.db.models import Count, Q, Sum |
... | ... |
dictionary/ajax_argument_realizations.py
1 | 1 | # -*- coding: utf-8 -*- |
2 | 2 | |
3 | -#Copyright (c) 2014, Bartłomiej Nitoń | |
4 | -#All rights reserved. | |
5 | - | |
6 | -#Redistribution and use in source and binary forms, with or without modification, are permitted provided | |
7 | -#that the following conditions are met: | |
8 | - | |
9 | -# Redistributions of source code must retain the above copyright notice, this list of conditions and | |
10 | -# the following disclaimer. | |
11 | -# Redistributions in binary form must reproduce the above copyright notice, this list of conditions | |
12 | -# and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
13 | - | |
14 | -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED | |
15 | -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | |
16 | -# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR | |
17 | -# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | |
18 | -# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
19 | -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
20 | -# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
21 | -# POSSIBILITY OF SUCH DAMAGE. | |
22 | - | |
23 | 3 | import codecs |
24 | 4 | import datetime |
25 | 5 | import os |
... | ... |
dictionary/ajax_argument_stats.py
1 | 1 | # -*- coding: utf-8 -*- |
2 | 2 | |
3 | -#Copyright (c) 2012, Bartłomiej Nitoń | |
4 | -#All rights reserved. | |
5 | - | |
6 | -#Redistribution and use in source and binary forms, with or without modification, are permitted provided | |
7 | -#that the following conditions are met: | |
8 | - | |
9 | -# Redistributions of source code must retain the above copyright notice, this list of conditions and | |
10 | -# the following disclaimer. | |
11 | -# Redistributions in binary form must reproduce the above copyright notice, this list of conditions | |
12 | -# and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
13 | - | |
14 | -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED | |
15 | -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | |
16 | -# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR | |
17 | -# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | |
18 | -# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
19 | -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
20 | -# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
21 | -# POSSIBILITY OF SUCH DAMAGE. | |
22 | - | |
23 | 3 | """ |
24 | 4 | This module is responsible for server side handling of argument statistics |
25 | 5 | interface. |
... | ... |
dictionary/ajax_user_notes.py
1 | 1 | # -*- coding: utf-8 -*- |
2 | 2 | |
3 | -#Copyright (c) 2012, Bartłomiej Nitoń | |
4 | -#All rights reserved. | |
5 | - | |
6 | -#Redistribution and use in source and binary forms, with or without modification, are permitted provided | |
7 | -#that the following conditions are met: | |
8 | - | |
9 | -# Redistributions of source code must retain the above copyright notice, this list of conditions and | |
10 | -# the following disclaimer. | |
11 | -# Redistributions in binary form must reproduce the above copyright notice, this list of conditions | |
12 | -# and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
13 | - | |
14 | -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED | |
15 | -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | |
16 | -# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR | |
17 | -# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | |
18 | -# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
19 | -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
20 | -# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
21 | -# POSSIBILITY OF SUCH DAMAGE. | |
22 | - | |
23 | 3 | from common.decorators import render, ajax, AjaxError |
24 | 4 | from dictionary.models import Message |
25 | 5 | |
... | ... |
dictionary/ajax_user_stats.py
1 | 1 | # -*- coding: utf-8 -*- |
2 | 2 | |
3 | -#Copyright (c) 2012, Bartłomiej Nitoń | |
4 | -#All rights reserved. | |
5 | - | |
6 | -#Redistribution and use in source and binary forms, with or without modification, are permitted provided | |
7 | -#that the following conditions are met: | |
8 | - | |
9 | -# Redistributions of source code must retain the above copyright notice, this list of conditions and | |
10 | -# the following disclaimer. | |
11 | -# Redistributions in binary form must reproduce the above copyright notice, this list of conditions | |
12 | -# and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
13 | - | |
14 | -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED | |
15 | -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | |
16 | -# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR | |
17 | -# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | |
18 | -# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
19 | -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
20 | -# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
21 | -# POSSIBILITY OF SUCH DAMAGE. | |
22 | - | |
23 | 3 | """Module covering functions used in user statistics views""" |
24 | 4 | |
25 | 5 | import operator |
... | ... |
dictionary/ajax_vocabulary_management.py
1 | 1 | # -*- coding: utf-8 -*- |
2 | 2 | |
3 | -#Copyright (c) 2015, Bartłomiej Nitoń | |
4 | -#All rights reserved. | |
5 | - | |
6 | -#Redistribution and use in source and binary forms, with or without modification, are permitted provided | |
7 | -#that the following conditions are met: | |
8 | - | |
9 | -# Redistributions of source code must retain the above copyright notice, this list of conditions and | |
10 | -# the following disclaimer. | |
11 | -# Redistributions in binary form must reproduce the above copyright notice, this list of conditions | |
12 | -# and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
13 | - | |
14 | -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED | |
15 | -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | |
16 | -# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR | |
17 | -# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | |
18 | -# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
19 | -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
20 | -# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
21 | -# POSSIBILITY OF SUCH DAMAGE. | |
22 | - | |
23 | 3 | import codecs |
24 | 4 | import datetime |
25 | 5 | import HTMLParser |
... | ... |
dictionary/convert_frames.py
1 | 1 | #-*- coding:utf-8 -*- |
2 | 2 | |
3 | -#Copyright (c) 2014, Bartłomiej Nitoń | |
4 | -#All rights reserved. | |
5 | - | |
6 | -#Redistribution and use in source and binary forms, with or without | |
7 | -#modification, are permitted provided that the following conditions are met: | |
8 | - | |
9 | -# Redistributions of source code must retain the above copyright notice, | |
10 | -# this list of conditions and the following disclaimer. | |
11 | -# Redistributions in binary form must reproduce the above copyright notice, this list of conditions | |
12 | -# and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
13 | - | |
14 | -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED | |
15 | -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | |
16 | -# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR | |
17 | -# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | |
18 | -# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
19 | -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
20 | -# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
21 | -# POSSIBILITY OF SUCH DAMAGE. | |
22 | - | |
23 | 3 | """ |
24 | 4 | Module for converting frames between different part of speeches. |
25 | 5 | """ |
... | ... |
dictionary/management/commands/add_msg_recipients.py deleted
1 | -#-*- coding:utf-8 -*- | |
2 | - | |
3 | -#Copyright (c) 2013, Bartłomiej Nitoń | |
4 | -#All rights reserved. | |
5 | - | |
6 | -#Redistribution and use in source and binary forms, with or without modification, are permitted provided | |
7 | -#that the following conditions are met: | |
8 | - | |
9 | -# Redistributions of source code must retain the above copyright notice, this list of conditions and | |
10 | -# the following disclaimer. | |
11 | -# Redistributions in binary form must reproduce the above copyright notice, this list of conditions | |
12 | -# and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
13 | - | |
14 | -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED | |
15 | -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | |
16 | -# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR | |
17 | -# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | |
18 | -# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
19 | -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
20 | -# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
21 | -# POSSIBILITY OF SUCH DAMAGE. | |
22 | - | |
23 | -from django.core.management.base import BaseCommand | |
24 | - | |
25 | -from dictionary.models import Message | |
26 | - | |
27 | -class Command(BaseCommand): | |
28 | - args = 'none' | |
29 | - help = """ | |
30 | - Add recipients to messages basing on lemma.owner | |
31 | - field value. | |
32 | - """ | |
33 | - | |
34 | - def handle(self, **options): | |
35 | - add_msg_recipients() | |
36 | - | |
37 | -def add_msg_recipients(): | |
38 | - for msg in Message.objects.all(): | |
39 | - print msg | |
40 | - msg.recipient = msg.lemma.owner | |
41 | - msg.save() |
dictionary/management/commands/add_skl_arg_realizations.py
1 | 1 | #-*- coding:utf-8 -*- |
2 | 2 | |
3 | -#Copyright (c) 2013, Bartłomiej Nitoń | |
4 | -#All rights reserved. | |
5 | - | |
6 | -#Redistribution and use in source and binary forms, with or without modification, are permitted provided | |
7 | -#that the following conditions are met: | |
8 | - | |
9 | -# Redistributions of source code must retain the above copyright notice, this list of conditions and | |
10 | -# the following disclaimer. | |
11 | -# Redistributions in binary form must reproduce the above copyright notice, this list of conditions | |
12 | -# and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
13 | - | |
14 | -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED | |
15 | -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | |
16 | -# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR | |
17 | -# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | |
18 | -# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
19 | -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
20 | -# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
21 | -# POSSIBILITY OF SUCH DAMAGE. | |
22 | - | |
23 | 3 | import codecs |
24 | 4 | import re |
25 | 5 | |
... | ... |
dictionary/management/commands/add_statuses_to_real_lemmas.py deleted
1 | -#-*- coding:utf-8 -*- | |
2 | - | |
3 | -#Copyright (c) 2013, Bartłomiej Nitoń | |
4 | -#All rights reserved. | |
5 | - | |
6 | -#Redistribution and use in source and binary forms, with or without modification, are permitted provided | |
7 | -#that the following conditions are met: | |
8 | - | |
9 | -# Redistributions of source code must retain the above copyright notice, this list of conditions and | |
10 | -# the following disclaimer. | |
11 | -# Redistributions in binary form must reproduce the above copyright notice, this list of conditions | |
12 | -# and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
13 | - | |
14 | -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED | |
15 | -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | |
16 | -# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR | |
17 | -# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | |
18 | -# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
19 | -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
20 | -# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
21 | -# POSSIBILITY OF SUCH DAMAGE. | |
22 | -''' | |
23 | -Sript for adding proper statuses to reaalized lemmas. | |
24 | -@author: bniton | |
25 | -''' | |
26 | - | |
27 | -import codecs | |
28 | -import operator | |
29 | - | |
30 | -from django.core.management.base import BaseCommand | |
31 | -from django.db.models import Q | |
32 | - | |
33 | -from accounts.models import RealizedLemma | |
34 | -from dictionary.models import Lemma_Status, Lemma | |
35 | - | |
36 | -class Command(BaseCommand): | |
37 | - args = 'none' | |
38 | - help = """ | |
39 | - Add proper statuses to realized lemmas. | |
40 | - """ | |
41 | - | |
42 | - def handle(self, **options): | |
43 | - add_statuses() | |
44 | - | |
45 | -def add_statuses(): | |
46 | - """ | |
47 | - Add proper statuses to realized lemmas. | |
48 | - """ | |
49 | - for real_lemma in RealizedLemma.objects.all(): | |
50 | - real_lemma.counted = True | |
51 | - if real_lemma.corr_frames > 0 or real_lemma.ncorr_frames > 0: | |
52 | - real_lemma.status = Lemma_Status.objects.get(status=u'sprawdzone') | |
53 | - real_lemma.bonus = False | |
54 | - elif real_lemma.made_frames > 0: | |
55 | - real_lemma.status = Lemma_Status.objects.get(status=u'gotowe') | |
56 | - real_lemma.bonus = False | |
57 | - elif real_lemma.prop_frames > 0 or real_lemma.wrong_frames > 0: | |
58 | - real_lemma.status = Lemma_Status.objects.get(status=u'sprawdzone') | |
59 | - real_lemma.bonus = True | |
60 | - else: | |
61 | - real_lemma.status = Lemma_Status.objects.get(status=u'gotowe') | |
62 | - real_lemma.bonus = False | |
63 | - real_lemma.save() | |
64 | - for lemma in Lemma.objects.filter(old=False, status__status=u'sprawdzone'): | |
65 | - checked_real_lemmas = RealizedLemma.objects.filter(status__status='sprawdzone', | |
66 | - lemma__entry=lemma.entry) | |
67 | - if not checked_real_lemmas.exists(): | |
68 | - print lemma | |
69 | - RealizedLemma(lemma=lemma, paid=True, counted=True, | |
70 | - status=Lemma_Status.objects.get(status=u'sprawdzone')).save() | |
71 | - | |
72 | - | |
73 | 0 | \ No newline at end of file |
dictionary/management/commands/add_verbs.py
1 | 1 | #-*- coding:utf-8 -*- |
2 | 2 | |
3 | -#Copyright (c) 2012, Bartłomiej Nitoń | |
4 | -#All rights reserved. | |
5 | - | |
6 | -#Redistribution and use in source and binary forms, with or without modification, are permitted provided | |
7 | -#that the following conditions are met: | |
8 | - | |
9 | -# Redistributions of source code must retain the above copyright notice, this list of conditions and | |
10 | -# the following disclaimer. | |
11 | -# Redistributions in binary form must reproduce the above copyright notice, this list of conditions | |
12 | -# and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
13 | - | |
14 | -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED | |
15 | -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | |
16 | -# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR | |
17 | -# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | |
18 | -# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
19 | -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
20 | -# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
21 | -# POSSIBILITY OF SUCH DAMAGE. | |
22 | - | |
23 | 3 | import codecs |
24 | 4 | import re |
25 | 5 | |
... | ... |
dictionary/management/commands/cash_for_ready.py deleted
1 | -#-*- coding:utf-8 -*- | |
2 | - | |
3 | -#Copyright (c) 2012, Bartłomiej Nitoń | |
4 | -#All rights reserved. | |
5 | - | |
6 | -#Redistribution and use in source and binary forms, with or without modification, are permitted provided | |
7 | -#that the following conditions are met: | |
8 | - | |
9 | -# Redistributions of source code must retain the above copyright notice, this list of conditions and | |
10 | -# the following disclaimer. | |
11 | -# Redistributions in binary form must reproduce the above copyright notice, this list of conditions | |
12 | -# and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
13 | - | |
14 | -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED | |
15 | -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | |
16 | -# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR | |
17 | -# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | |
18 | -# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
19 | -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
20 | -# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
21 | -# POSSIBILITY OF SUCH DAMAGE. | |
22 | - | |
23 | -import operator | |
24 | - | |
25 | -from django.core.management.base import BaseCommand | |
26 | -from django.db.models import Q | |
27 | -from django.utils.encoding import smart_str | |
28 | - | |
29 | -from dictionary.models import Lemma, Lemma_Status | |
30 | -from accounts.models import RealizedLemma | |
31 | -from dictionary.ajax_lemma_view import update_lemma_stats_ready | |
32 | - | |
33 | -class Command(BaseCommand): | |
34 | - args = 'none' | |
35 | - help = """ | |
36 | - Complete RealizedLemmas objects about information | |
37 | - how many frames where done (ready also are counted), and gives users money | |
38 | - for ready flat frames. | |
39 | - """ | |
40 | - | |
41 | - def handle(self, **options): | |
42 | - count_done_frames() | |
43 | - update_cash() | |
44 | - | |
45 | -def count_done_frames(): | |
46 | - real_lemmas = RealizedLemma.objects.filter(made_frames=0, paid=False) | |
47 | - for rl in real_lemmas: | |
48 | - rl.made_frames = rl.prop_frames + rl.wrong_frames | |
49 | - rl.save() | |
50 | - | |
51 | -def update_cash(): | |
52 | - q_status_list = [] | |
53 | - q_status_list.append(Q(status__status=u'gotowe')) | |
54 | - lemmas = Lemma.objects.filter(old=False).filter(reduce(operator.or_, q_status_list)) | |
55 | - for lemma in lemmas.all(): | |
56 | - statuses = Lemma_Status.objects.order_by('priority').all() | |
57 | - conf_status = statuses[len(statuses)-1] | |
58 | - to_conf_changes = lemma.status_history.filter(status=conf_status) | |
59 | - # czy program zarejestrowal zmiane statusu na sprawdzone i czy haslo nie zosatlo oznaczone jako | |
60 | - # gotowe w pierwszym etapie prac, jesli nie | |
61 | - # znaczy, ze trzeba dodac pieniązki za jeszcze nie sprawdzone hasla (bez bonusow za poprawnosc) | |
62 | - already_paid = RealizedLemma.objects.filter(lemma__entry=lemma.entry, | |
63 | - lemma__vocabulary=lemma.vocabulary, | |
64 | - paid=True) | |
65 | - if to_conf_changes.count() == 0 and already_paid.count() == 0: | |
66 | - print smart_str(lemma.entry) | |
67 | - update_lemma_stats_ready(lemma, lemma.owner, True) | |
68 | - |
dictionary/management/commands/change_naming.py deleted
1 | -#-*- coding:utf-8 -*- | |
2 | - | |
3 | -#Copyright (c) 2012, Bartłomiej Nitoń | |
4 | -#All rights reserved. | |
5 | - | |
6 | -#Redistribution and use in source and binary forms, with or without modification, are permitted provided | |
7 | -#that the following conditions are met: | |
8 | - | |
9 | -# Redistributions of source code must retain the above copyright notice, this list of conditions and | |
10 | -# the following disclaimer. | |
11 | -# Redistributions in binary form must reproduce the above copyright notice, this list of conditions | |
12 | -# and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
13 | - | |
14 | -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED | |
15 | -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | |
16 | -# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR | |
17 | -# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | |
18 | -# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
19 | -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
20 | -# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
21 | -# POSSIBILITY OF SUCH DAMAGE. | |
22 | - | |
23 | -''' | |
24 | -Script for changing aspect names in text representations and | |
25 | -control attributes names. | |
26 | -Created on 26-06-2013 | |
27 | -@author: bartomiej | |
28 | -''' | |
29 | - | |
30 | -from django.core.management.base import BaseCommand | |
31 | - | |
32 | -from dictionary.models import Frame, Position, Argument | |
33 | - | |
34 | -class Command(BaseCommand): | |
35 | - args = 'none' | |
36 | - help = """ | |
37 | - Rename attribute names: ndk --> imperf | |
38 | - dk --> perf | |
39 | - controlee --> controllee | |
40 | - """ | |
41 | - def handle(self, **options): | |
42 | - rename() | |
43 | - | |
44 | -def rename(): | |
45 | - """ | |
46 | - Rename attribute names: ndk --> imperf | |
47 | - dk --> perf | |
48 | - controlee --> controllee | |
49 | - """ | |
50 | - print 'Frames' | |
51 | - for frame in Frame.objects.all(): | |
52 | - text_rep = frame.text_rep | |
53 | - print text_rep | |
54 | - text_rep = text_rep.replace('(ndk)', '(imperf)') | |
55 | - text_rep = text_rep.replace('(dk)', '(perf)') | |
56 | - frame.text_rep = text_rep.replace('controlee', 'controllee') | |
57 | - frame.save() | |
58 | - print 'Positions' | |
59 | - for pos in Position.objects.all(): | |
60 | - text_rep = pos.text_rep | |
61 | - print text_rep | |
62 | - text_rep = text_rep.replace('(ndk)', '(imperf)') | |
63 | - text_rep = text_rep.replace('(dk)', '(perf)') | |
64 | - pos.text_rep = text_rep.replace('controlee', 'controllee') | |
65 | - pos.save() | |
66 | - print 'Arguments' | |
67 | - for arg in Argument.objects.all(): | |
68 | - text_rep = arg.text_rep | |
69 | - print text_rep | |
70 | - text_rep = text_rep.replace('(ndk)', '(imperf)') | |
71 | - arg.text_rep = text_rep.replace('(dk)', '(perf)') | |
72 | - arg.save() | |
73 | - | |
74 | - |
dictionary/management/commands/checked_history.py deleted
1 | -#-*- coding:utf-8 -*- | |
2 | - | |
3 | -#Copyright (c) 2012, Bartłomiej Nitoń | |
4 | -#All rights reserved. | |
5 | - | |
6 | -#Redistribution and use in source and binary forms, with or without modification, are permitted provided | |
7 | -#that the following conditions are met: | |
8 | - | |
9 | -# Redistributions of source code must retain the above copyright notice, this list of conditions and | |
10 | -# the following disclaimer. | |
11 | -# Redistributions in binary form must reproduce the above copyright notice, this list of conditions | |
12 | -# and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
13 | - | |
14 | -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED | |
15 | -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | |
16 | -# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR | |
17 | -# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | |
18 | -# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
19 | -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
20 | -# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
21 | -# POSSIBILITY OF SUCH DAMAGE. | |
22 | - | |
23 | -import operator | |
24 | - | |
25 | -from django.core.management.base import BaseCommand | |
26 | -from django.db.models import Q | |
27 | -from django.utils.encoding import smart_str | |
28 | - | |
29 | -from dictionary.models import Lemma, Lemma_Status, StatusChange | |
30 | -from accounts.models import RealizedLemma | |
31 | - | |
32 | -class Command(BaseCommand): | |
33 | - args = 'none' | |
34 | - help = """Adds to lemma status history, change to ready and checked status | |
35 | - based on actual lemma form. Also adds to lemma owner lemma realizations | |
36 | - information about that the money for this lemma was already paid.""" | |
37 | - | |
38 | - def handle(self, **options): | |
39 | - checked_history() | |
40 | - | |
41 | -CESAR_VOCABS = ['czas_czasu', 'czas_emotywne', 'czas_komunikacji', | |
42 | - 'czas_mentalne', 'czas_misc1', 'czas_misc2', | |
43 | - 'czas_misc3', 'czas_mowienia', 'czas_operacji', | |
44 | - 'czas_percepcji', 'czas_percepcji2', 'czas_przemieszczenia', | |
45 | - 'frek1', 'frek2'] | |
46 | - | |
47 | -def checked_history(): | |
48 | - q_status_list = [] | |
49 | - q_status_list.append(Q(status__status=u'sprawdzone')) | |
50 | - q_vocabs_list = [] | |
51 | - for vocab in CESAR_VOCABS: | |
52 | - q_vocabs_list.append(Q(vocabulary__name=vocab)) | |
53 | - | |
54 | - lemmas = Lemma.objects.filter(old=False).filter(reduce(operator.or_, | |
55 | - q_status_list)).filter(reduce(operator.or_, | |
56 | - q_vocabs_list)) | |
57 | - for lemma in lemmas.all(): | |
58 | - checked_stat_changes = lemma.status_history.filter(status__status=u'sprawdzone') | |
59 | - if checked_stat_changes.count() > 0: | |
60 | - continue | |
61 | - else: | |
62 | - print smart_str(lemma.vocabulary.name) + ': ' + smart_str(lemma.entry) | |
63 | - ready_status = Lemma_Status.objects.get(status=u'gotowe') | |
64 | - stat_change = StatusChange(act_owner=lemma.owner, changer=lemma.owner, | |
65 | - lemma=lemma, status=ready_status) | |
66 | - stat_change.save() | |
67 | - lemma.status_history.add(stat_change) | |
68 | - checked_status = Lemma_Status.objects.get(status=u'sprawdzone') | |
69 | - stat_change = StatusChange(act_owner=lemma.owner, changer=lemma.owner, | |
70 | - lemma=lemma, status=checked_status) | |
71 | - stat_change.save() | |
72 | - lemma.status_history.add(stat_change) | |
73 | - # add paiment history to realized lemmas | |
74 | - real_lemma = RealizedLemma(lemma=lemma, | |
75 | - paid=True) | |
76 | - real_lemma.save() | |
77 | - lemma.owner.user_stats.lemma_real_history.add(real_lemma) |
dictionary/management/commands/count_positions_occurrences.py
1 | 1 | #-*- coding:utf-8 -*- |
2 | -# author: B.Niton | |
3 | - | |
4 | -#Copyright (c) 2014, Bartłomiej Nitoń | |
5 | -#All rights reserved. | |
6 | - | |
7 | -#Redistribution and use in source and binary forms, with or without modification, are permitted provided | |
8 | -#that the following conditions are met: | |
9 | - | |
10 | -# Redistributions of source code must retain the above copyright notice, this list of conditions and | |
11 | -# the following disclaimer. | |
12 | -# Redistributions in binary form must reproduce the above copyright notice, this list of conditions | |
13 | -# and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
14 | - | |
15 | -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED | |
16 | -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | |
17 | -# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR | |
18 | -# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | |
19 | -# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
20 | -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
21 | -# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
22 | -# POSSIBILITY OF SUCH DAMAGE. | |
23 | 2 | |
24 | 3 | from django.core.management.base import BaseCommand |
25 | 4 | from django.db import transaction |
... | ... |
dictionary/management/commands/create_groups.py
1 | 1 | #-*- coding:utf-8 -*- |
2 | 2 | |
3 | -#Copyright (c) 2012, Bartłomiej Nitoń | |
4 | -#All rights reserved. | |
5 | - | |
6 | -#Redistribution and use in source and binary forms, with or without modification, are permitted provided | |
7 | -#that the following conditions are met: | |
8 | - | |
9 | -# Redistributions of source code must retain the above copyright notice, this list of conditions and | |
10 | -# the following disclaimer. | |
11 | -# Redistributions in binary form must reproduce the above copyright notice, this list of conditions | |
12 | -# and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
13 | - | |
14 | -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED | |
15 | -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | |
16 | -# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR | |
17 | -# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | |
18 | -# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
19 | -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
20 | -# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
21 | -# POSSIBILITY OF SUCH DAMAGE. | |
22 | - | |
23 | 3 | from django.contrib.auth.models import Permission, Group |
24 | 4 | from django.core.management.base import BaseCommand |
25 | 5 | |
... | ... |
dictionary/management/commands/frames_count.py
1 | 1 | #-*- coding:utf-8 -*- |
2 | 2 | |
3 | -#Copyright (c) 2012, Bartłomiej Nitoń | |
4 | -#All rights reserved. | |
5 | - | |
6 | -#Redistribution and use in source and binary forms, with or without modification, are permitted provided | |
7 | -#that the following conditions are met: | |
8 | - | |
9 | -# Redistributions of source code must retain the above copyright notice, this list of conditions and | |
10 | -# the following disclaimer. | |
11 | -# Redistributions in binary form must reproduce the above copyright notice, this list of conditions | |
12 | -# and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
13 | - | |
14 | -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED | |
15 | -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | |
16 | -# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR | |
17 | -# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | |
18 | -# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
19 | -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
20 | -# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
21 | -# POSSIBILITY OF SUCH DAMAGE. | |
22 | - | |
23 | 3 | import operator |
24 | 4 | |
25 | 5 | from django.core.management.base import BaseCommand |
... | ... |
dictionary/management/commands/get_cesar_done.py deleted
1 | -#-*- coding:utf-8 -*- | |
2 | - | |
3 | -#Copyright (c) 2012, Bartłomiej Nitoń | |
4 | -#All rights reserved. | |
5 | - | |
6 | -#Redistribution and use in source and binary forms, with or without modification, are permitted provided | |
7 | -#that the following conditions are met: | |
8 | - | |
9 | -# Redistributions of source code must retain the above copyright notice, this list of conditions and | |
10 | -# the following disclaimer. | |
11 | -# Redistributions in binary form must reproduce the above copyright notice, this list of conditions | |
12 | -# and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
13 | - | |
14 | -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED | |
15 | -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | |
16 | -# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR | |
17 | -# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | |
18 | -# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
19 | -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
20 | -# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
21 | -# POSSIBILITY OF SUCH DAMAGE. | |
22 | - | |
23 | -import operator | |
24 | - | |
25 | -from django.core.management.base import BaseCommand | |
26 | -from django.db.models import Q | |
27 | -from django.utils.encoding import smart_str | |
28 | - | |
29 | -from dictionary.models import Lemma | |
30 | -from accounts.models import RealizedLemma | |
31 | - | |
32 | -class Command(BaseCommand): | |
33 | - args = 'none' | |
34 | - help = """Adds to lemma status history, change to ready and checked status | |
35 | - based on actual lemma form. Also adds to lemma owner lemma realizations | |
36 | - information about that the money for this lemma was already paid.""" | |
37 | - | |
38 | - def handle(self, **options): | |
39 | - get_cesar_done() | |
40 | - | |
41 | -CESAR_VOCABS = ['czas_czasu', 'czas_emotywne', 'czas_komunikacji', | |
42 | - 'czas_mentalne', 'czas_misc1', 'czas_misc2', | |
43 | - 'czas_misc3', 'czas_mowienia', 'czas_operacji', | |
44 | - 'czas_percepcji', 'czas_percepcji2', 'czas_przemieszczenia', | |
45 | - 'frek1', 'frek2'] | |
46 | - | |
47 | -def get_cesar_done(): | |
48 | - q_status_list = [] | |
49 | - q_status_list.append(Q(status__status=u'sprawdzone')) | |
50 | - q_vocabs_list = [] | |
51 | - for vocab in CESAR_VOCABS: | |
52 | - q_vocabs_list.append(Q(vocabulary__name=vocab)) | |
53 | - lemmas = Lemma.objects.filter(old=False).filter(reduce(operator.or_, | |
54 | - q_status_list)).filter(reduce(operator.or_, | |
55 | - q_vocabs_list)) | |
56 | - for lemma in lemmas.all(): | |
57 | - checked_stat_changes = lemma.status_history.filter(status__status=u'sprawdzone') | |
58 | - ready_stat_changes = lemma.status_history.filter(status__status=u'gotowe') | |
59 | - if (checked_stat_changes.count() > 0 and ready_stat_changes.count() > 0 | |
60 | - and RealizedLemma.objects.filter(lemma__entry=lemma.entry, | |
61 | - lemma__vocabulary=lemma.vocabulary, | |
62 | - paid=True).count() == 0): | |
63 | - print smart_str(lemma.vocabulary.name) + ': ' + smart_str(lemma.entry) | |
64 | - |
dictionary/management/commands/get_frames_without_ex.py
1 | 1 | #-*- coding:utf-8 -*- |
2 | 2 | |
3 | -#Copyright (c) 2013, Bartłomiej Nitoń | |
4 | -#All rights reserved. | |
5 | - | |
6 | -#Redistribution and use in source and binary forms, with or without modification, are permitted provided | |
7 | -#that the following conditions are met: | |
8 | - | |
9 | -# Redistributions of source code must retain the above copyright notice, this list of conditions and | |
10 | -# the following disclaimer. | |
11 | -# Redistributions in binary form must reproduce the above copyright notice, this list of conditions | |
12 | -# and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
13 | - | |
14 | -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED | |
15 | -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | |
16 | -# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR | |
17 | -# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | |
18 | -# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
19 | -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
20 | -# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
21 | -# POSSIBILITY OF SUCH DAMAGE. | |
22 | - | |
23 | 3 | import codecs |
24 | 4 | |
25 | 5 | from django.core.management.base import BaseCommand |
... | ... |
dictionary/management/commands/get_realizations.py
1 | 1 | #-*- coding:utf-8 -*- |
2 | 2 | |
3 | -#Copyright (c) 2013, Bartłomiej Nitoń | |
4 | -#All rights reserved. | |
5 | - | |
6 | -#Redistribution and use in source and binary forms, with or without modification, are permitted provided | |
7 | -#that the following conditions are met: | |
8 | - | |
9 | -# Redistributions of source code must retain the above copyright notice, this list of conditions and | |
10 | -# the following disclaimer. | |
11 | -# Redistributions in binary form must reproduce the above copyright notice, this list of conditions | |
12 | -# and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
13 | - | |
14 | -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED | |
15 | -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | |
16 | -# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR | |
17 | -# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | |
18 | -# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
19 | -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
20 | -# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
21 | -# POSSIBILITY OF SUCH DAMAGE. | |
22 | -''' | |
23 | -Sript for getting argument realizations. | |
24 | -@author: bartomiej | |
25 | -''' | |
26 | - | |
27 | 3 | import codecs |
28 | 4 | |
29 | 5 | from django.core.management.base import BaseCommand |
... | ... |
dictionary/management/commands/import_models.py
1 | 1 | #-*- coding:utf-8 -*- |
2 | 2 | |
3 | -#Copyright (c) 2012, Bartłomiej Nitoń | |
4 | -#All rights reserved. | |
5 | - | |
6 | -#Redistribution and use in source and binary forms, with or without modification, are permitted provided | |
7 | -#that the following conditions are met: | |
8 | - | |
9 | -# Redistributions of source code must retain the above copyright notice, this list of conditions and | |
10 | -# the following disclaimer. | |
11 | -# Redistributions in binary form must reproduce the above copyright notice, this list of conditions | |
12 | -# and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
13 | - | |
14 | -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED | |
15 | -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | |
16 | -# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR | |
17 | -# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | |
18 | -# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
19 | -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
20 | -# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
21 | -# POSSIBILITY OF SUCH DAMAGE. | |
22 | - | |
23 | 3 | from django.core.management.base import NoArgsCommand |
24 | 4 | |
25 | 5 | from dictionary.models import * |
... | ... |
dictionary/management/commands/prep_freq_list.py
1 | 1 | #-*- coding:utf-8 -*- |
2 | 2 | |
3 | -#Copyright (c) 2012, Bartłomiej Nitoń | |
4 | -#All rights reserved. | |
5 | - | |
6 | -#Redistribution and use in source and binary forms, with or without modification, are permitted provided | |
7 | -#that the following conditions are met: | |
8 | - | |
9 | -# Redistributions of source code must retain the above copyright notice, this list of conditions and | |
10 | -# the following disclaimer. | |
11 | -# Redistributions in binary form must reproduce the above copyright notice, this list of conditions | |
12 | -# and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
13 | - | |
14 | -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED | |
15 | -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | |
16 | -# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR | |
17 | -# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | |
18 | -# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
19 | -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
20 | -# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
21 | -# POSSIBILITY OF SUCH DAMAGE. | |
22 | - | |
23 | 3 | """Script for getting prepositions usage frequency list.""" |
24 | 4 | |
25 | 5 | from django.core.management.base import BaseCommand |
... | ... | @@ -52,6 +32,4 @@ def prep_freq_ls(): |
52 | 32 | prep_ls.reverse() |
53 | 33 | for prep in prep_ls: |
54 | 34 | print smart_str(prep['prep']) + ': ' + str(prep['count']) |
55 | - | |
56 | - | |
57 | - | |
58 | 35 | \ No newline at end of file |
36 | + | |
59 | 37 | \ No newline at end of file |
... | ... |
dictionary/management/commands/ready_history.py deleted
1 | -#-*- coding:utf-8 -*- | |
2 | - | |
3 | -#Copyright (c) 2012, Bartłomiej Nitoń | |
4 | -#All rights reserved. | |
5 | - | |
6 | -#Redistribution and use in source and binary forms, with or without modification, are permitted provided | |
7 | -#that the following conditions are met: | |
8 | - | |
9 | -# Redistributions of source code must retain the above copyright notice, this list of conditions and | |
10 | -# the following disclaimer. | |
11 | -# Redistributions in binary form must reproduce the above copyright notice, this list of conditions | |
12 | -# and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
13 | - | |
14 | -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED | |
15 | -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | |
16 | -# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR | |
17 | -# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | |
18 | -# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
19 | -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
20 | -# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
21 | -# POSSIBILITY OF SUCH DAMAGE. | |
22 | - | |
23 | -import operator | |
24 | - | |
25 | -from django.core.management.base import BaseCommand | |
26 | -from django.db.models import Q | |
27 | -from django.utils.encoding import smart_str | |
28 | - | |
29 | -from dictionary.models import Lemma, Lemma_Status, StatusChange | |
30 | -from accounts.models import RealizedLemma | |
31 | - | |
32 | -class Command(BaseCommand): | |
33 | - args = 'none' | |
34 | - help = """Adds to lemma status history, change to ready status | |
35 | - based on actual lemma form. Also adds to lemma owner lemma realizations | |
36 | - information about that money for this lemma was already paid.""" | |
37 | - | |
38 | - def handle(self, **options): | |
39 | - ready_history() | |
40 | - | |
41 | -def ready_history(): | |
42 | - q_status_list = [] | |
43 | - q_status_list.append(Q(status__status=u'gotowe')) | |
44 | - lemmas = Lemma.objects.filter(old=False).filter(reduce(operator.or_, q_status_list)) | |
45 | - for lemma in lemmas.all(): | |
46 | - ready_stat_changes = lemma.status_history.filter(status__status=u'gotowe') | |
47 | - if ready_stat_changes.count() > 0: | |
48 | - continue | |
49 | - else: | |
50 | - print smart_str(lemma.entry) | |
51 | - ready_status = Lemma_Status.objects.get(status=u'gotowe') | |
52 | - stat_change = StatusChange(act_owner=lemma.owner, changer=lemma.owner, | |
53 | - lemma=lemma, status=ready_status) | |
54 | - stat_change.save() | |
55 | - lemma.status_history.add(stat_change) | |
56 | - # add paiment history to realized lemmas | |
57 | - real_lemma = RealizedLemma(lemma=lemma, | |
58 | - paid=True) | |
59 | - real_lemma.save() | |
60 | - lemma.owner.user_stats.lemma_real_history.add(real_lemma) |
dictionary/management/commands/realize_payments.py deleted
1 | -#-*- coding:utf-8 -*- | |
2 | - | |
3 | -#Copyright (c) 2012, Bartłomiej Nitoń | |
4 | -#All rights reserved. | |
5 | - | |
6 | -#Redistribution and use in source and binary forms, with or without modification, are permitted provided | |
7 | -#that the following conditions are met: | |
8 | - | |
9 | -# Redistributions of source code must retain the above copyright notice, this list of conditions and | |
10 | -# the following disclaimer. | |
11 | -# Redistributions in binary form must reproduce the above copyright notice, this list of conditions | |
12 | -# and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
13 | - | |
14 | -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED | |
15 | -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | |
16 | -# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR | |
17 | -# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | |
18 | -# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
19 | -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
20 | -# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
21 | -# POSSIBILITY OF SUCH DAMAGE. | |
22 | - | |
23 | -import codecs | |
24 | - | |
25 | -from django.core.management.base import BaseCommand | |
26 | -from django.contrib.auth.models import User | |
27 | - | |
28 | -from accounts.models import RealizedLemma | |
29 | -from django.db.models import Sum | |
30 | - | |
31 | -class Command(BaseCommand): | |
32 | - args = 'none' | |
33 | - help = """ | |
34 | - Mark realized lemmas as paid and add paid value to | |
35 | - paid_cash field in UserStats model. | |
36 | - """ | |
37 | - | |
38 | - def handle(self, **options): | |
39 | - realize_payments() | |
40 | - | |
41 | -def realize_payments(): | |
42 | - payments_path = 'data/real_payments.csv' | |
43 | - payments_file = codecs.open(payments_path, 'wt', 'utf-8') | |
44 | - users = User.objects.all() | |
45 | - for user in users: | |
46 | - realized_lemmas = RealizedLemma.objects.filter(user_stats__user=user, | |
47 | - paid=False, | |
48 | - date__range=["2010-01-01", | |
49 | - "2013-05-01"]) | |
50 | - cash_to_pay = realized_lemmas.aggregate(Sum('cash'))['cash__sum'] | |
51 | - if cash_to_pay: | |
52 | - payments_file.write(u'Użytkownik' + ';' + user.username + ';' + | |
53 | - u'Wynagrodzenie' + ';' + str(round(cash_to_pay, 2)) + '\n') | |
54 | - user.user_stats.paid_cash += cash_to_pay | |
55 | - user.user_stats.save() | |
56 | - for real_lemma in realized_lemmas: | |
57 | - real_lemma.paid = True | |
58 | - real_lemma.save() | |
59 | - payments_file.close() | |
60 | - | |
61 | - |
dictionary/management/commands/remove_notes.py
1 | 1 | #-*- coding:utf-8 -*- |
2 | 2 | |
3 | -#Copyright (c) 2012, Bartłomiej Nitoń | |
4 | -#All rights reserved. | |
5 | - | |
6 | -#Redistribution and use in source and binary forms, with or without modification, are permitted provided | |
7 | -#that the following conditions are met: | |
8 | - | |
9 | -# Redistributions of source code must retain the above copyright notice, this list of conditions and | |
10 | -# the following disclaimer. | |
11 | -# Redistributions in binary form must reproduce the above copyright notice, this list of conditions | |
12 | -# and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
13 | - | |
14 | -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED | |
15 | -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | |
16 | -# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR | |
17 | -# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | |
18 | -# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
19 | -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
20 | -# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
21 | -# POSSIBILITY OF SUCH DAMAGE. | |
22 | - | |
23 | 3 | """Script for removing notes with specified text string.""" |
24 | 4 | |
25 | 5 | from django.core.management.base import BaseCommand |
... | ... | @@ -27,7 +7,7 @@ from django.core.management.base import BaseCommand |
27 | 7 | from dictionary.models import * |
28 | 8 | |
29 | 9 | class Command(BaseCommand): |
30 | - 'SloVal command for removing messages with specified text string.' | |
10 | + 'Slowal command for removing messages with specified text string.' | |
31 | 11 | help = 'Remove messages with specified text string.' |
32 | 12 | |
33 | 13 | def handle(self, **options): |
... | ... |
dictionary/management/commands/same_superlex.py
1 | 1 | #-*- coding:utf-8 -*- |
2 | 2 | |
3 | -#Copyright (c) 2012, Bartłomiej Nitoń | |
4 | -#All rights reserved. | |
5 | - | |
6 | -#Redistribution and use in source and binary forms, with or without modification, are permitted provided | |
7 | -#that the following conditions are met: | |
8 | - | |
9 | -# Redistributions of source code must retain the above copyright notice, this list of conditions and | |
10 | -# the following disclaimer. | |
11 | -# Redistributions in binary form must reproduce the above copyright notice, this list of conditions | |
12 | -# and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
13 | - | |
14 | -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED | |
15 | -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | |
16 | -# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR | |
17 | -# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | |
18 | -# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
19 | -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
20 | -# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
21 | -# POSSIBILITY OF SUCH DAMAGE. | |
22 | - | |
23 | 3 | import operator |
24 | 4 | |
25 | 5 | from django.core.management.base import BaseCommand |
... | ... |
dictionary/management/commands/update_neg_frame_char.py deleted
1 | -#-*- coding:utf-8 -*- | |
2 | - | |
3 | -#Copyright (c) 2013, Bartłomiej Nitoń | |
4 | -#All rights reserved. | |
5 | - | |
6 | -#Redistribution and use in source and binary forms, with or without modification, are permitted provided | |
7 | -#that the following conditions are met: | |
8 | - | |
9 | -# Redistributions of source code must retain the above copyright notice, this list of conditions and | |
10 | -# the following disclaimer. | |
11 | -# Redistributions in binary form must reproduce the above copyright notice, this list of conditions | |
12 | -# and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
13 | - | |
14 | -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED | |
15 | -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | |
16 | -# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR | |
17 | -# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | |
18 | -# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
19 | -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
20 | -# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
21 | -# POSSIBILITY OF SUCH DAMAGE. | |
22 | - | |
23 | -from django.core.management.base import BaseCommand | |
24 | -from django.utils.encoding import smart_str | |
25 | - | |
26 | -from dictionary.common_func import sortFrameChars | |
27 | -from dictionary.models import Frame, Frame_Characteristic | |
28 | - | |
29 | - | |
30 | -class Command(BaseCommand): | |
31 | - args = 'none' | |
32 | - help = 'Update frame negation characteristics parameters.' | |
33 | - | |
34 | - def handle(self, **options): | |
35 | - update_neg_frame_char() | |
36 | - | |
37 | -def update_neg_frame_char(): | |
38 | - for frame in Frame.objects.all(): | |
39 | - try: | |
40 | - frame.characteristics.get(type=u'NEGATYWNOŚĆ', value__value=u'_') | |
41 | - except Frame_Characteristic.DoesNotExist: | |
42 | - frame.characteristics.add(Frame_Characteristic.objects.get(type=u'NEGATYWNOŚĆ', | |
43 | - value__value=u'_')) | |
44 | - text_rep_str_tab = list([frame_char.value.value | |
45 | - for frame_char in sortFrameChars(frame.characteristics.all())]) | |
46 | - print text_rep_str_tab | |
47 | - text_rep_str_tab.append(frame.text_rep.split(':')[-1]) | |
48 | - print smart_str(':'.join(text_rep_str_tab)) | |
49 | - frame.text_rep = smart_str(':'.join(text_rep_str_tab)) | |
50 | - frame.save() | |
51 | - | |
52 | 0 | \ No newline at end of file |
dictionary/parser.py
1 | 1 | # -*- coding: utf-8 -*- |
2 | 2 | |
3 | -#Copyright (c) 2014, Bartłomiej Nitoń | |
4 | -#All rights reserved. | |
5 | - | |
6 | -#Redistribution and use in source and binary forms, with or without modification, are permitted provided | |
7 | -#that the following conditions are met: | |
8 | - | |
9 | -# Redistributions of source code must retain the above copyright notice, this list of conditions and | |
10 | -# the following disclaimer. | |
11 | -# Redistributions in binary form must reproduce the above copyright notice, this list of conditions | |
12 | -# and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
13 | - | |
14 | -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED | |
15 | -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | |
16 | -# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR | |
17 | -# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | |
18 | -# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
19 | -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
20 | -# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
21 | -# POSSIBILITY OF SUCH DAMAGE. | |
22 | - | |
23 | 3 | from dictionary.ajax_argument_form import get_or_create_text_attr_value, \ |
24 | 4 | is_empty_lemma, correct_empty_lemma_value, \ |
25 | 5 | prepare_text_attr_value, get_or_create_argument, \ |
... | ... |
dictionary/static/css/all_notes_table.css
1 | -/* | |
2 | -Copyright (c) 2012, Bartłomiej Nitoń | |
3 | -All rights reserved. | |
4 | - | |
5 | -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | |
6 | - | |
7 | - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. | |
8 | - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
9 | - | |
10 | -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
11 | -*/ | |
12 | - | |
13 | 1 | .inflection-table-container { |
14 | 2 | display: inline-block; |
15 | 3 | vertical-align: top; |
... | ... | @@ -18,6 +6,3 @@ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
18 | 6 | table.AllNotesTable td.TextRow { |
19 | 7 | white-space: pre-wrap; |
20 | 8 | } |
21 | - | |
22 | - | |
23 | - | |
... | ... |
dictionary/static/css/arg_realization_table.css
1 | -/* | |
2 | -Copyright (c) 2012, Bartłomiej Nitoń | |
3 | -All rights reserved. | |
4 | - | |
5 | -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | |
6 | - | |
7 | - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. | |
8 | - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
9 | - | |
10 | -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
11 | -*/ | |
12 | - | |
13 | 1 | .change-ctrl-container { |
14 | 2 | display: inline-block; |
15 | 3 | vertical-align: top; |
... | ... |
dictionary/static/css/arg_realization_viewtab.css
1 | -/* | |
2 | -Copyright (c) 2012, Bartłomiej Nitoń | |
3 | -All rights reserved. | |
4 | - | |
5 | -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | |
6 | - | |
7 | - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. | |
8 | - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
9 | - | |
10 | -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
11 | -*/ | |
12 | - | |
13 | 1 | .change-ctrl-container { |
14 | 2 | display: inline-block; |
15 | 3 | vertical-align: top; |
... | ... |
dictionary/static/css/aspect_relations_table.css
1 | -/* | |
2 | -Copyright (c) 2013, Bartłomiej Nitoń | |
3 | -All rights reserved. | |
4 | - | |
5 | -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | |
6 | - | |
7 | - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. | |
8 | - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
9 | - | |
10 | -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
11 | -*/ | |
12 | - | |
13 | 1 | table.AspectRelationsTable { |
14 | 2 | border-width: 0; |
15 | 3 | /*border-style: solid; |
... | ... |
dictionary/static/css/change_ctrl_table.css
1 | -/* | |
2 | -Copyright (c) 2012, Bartłomiej Nitoń | |
3 | -All rights reserved. | |
4 | - | |
5 | -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | |
6 | - | |
7 | - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. | |
8 | - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
9 | - | |
10 | -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
11 | -*/ | |
12 | - | |
13 | 1 | .change-ctrl-container { |
14 | 2 | display: inline-block; |
15 | 3 | vertical-align: top; |
... | ... |
dictionary/static/css/examples_table.css
1 | -/* | |
2 | -Copyright (c) 2015, Bartłomiej Nitoń | |
3 | -All rights reserved. | |
4 | - | |
5 | -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | |
6 | - | |
7 | - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. | |
8 | - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
9 | - | |
10 | -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
11 | -*/ | |
12 | - | |
13 | - | |
14 | 1 | table.ExamplesTable { |
15 | 2 | border-width: 0; |
16 | 3 | /*border-style: solid; |
... | ... |
dictionary/static/css/filter_frames_menu.css
1 | -/* | |
2 | -Copyright (c) 2013, Bartłomiej Nitoń | |
3 | -All rights reserved. | |
4 | - | |
5 | -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | |
6 | - | |
7 | - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. | |
8 | - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
9 | - | |
10 | -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
11 | -*/ | |
12 | - | |
13 | -/* menu do filtrowania ramek */ | |
14 | - | |
15 | - | |
16 | - | |
17 | 1 | ul#filter_frames_menu li a { |
18 | 2 | height: 100%; |
19 | 3 | color: #777; |
... | ... |
dictionary/static/css/frame_table.css
1 | -/* | |
2 | -Copyright (c) 2014, Bartłomiej Nitoń | |
3 | -All rights reserved. | |
4 | - | |
5 | -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | |
6 | - | |
7 | - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. | |
8 | - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
9 | - | |
10 | -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
11 | -*/ | |
12 | - | |
13 | 1 | .inflection-table-container { |
14 | 2 | display: inline-block; |
15 | 3 | vertical-align: top; |
... | ... |
dictionary/static/css/jqgrid.css
1 | -/* | |
2 | -Copyright (c) 2012, Bartłomiej Nitoń | |
3 | -All rights reserved. | |
4 | - | |
5 | -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | |
6 | - | |
7 | - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. | |
8 | - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
9 | - | |
10 | -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
11 | -*/ | |
12 | - | |
13 | 1 | p { |
14 | 2 | font-size: 1em; |
15 | 3 | margin: 1ex 0; |
... | ... |
dictionary/static/css/lemma_view.css
1 | -/* | |
2 | -Copyright (c) 2012, Bartłomiej Nitoń | |
3 | -All rights reserved. | |
4 | - | |
5 | -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | |
6 | - | |
7 | - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. | |
8 | - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
9 | - | |
10 | -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
11 | -*/ | |
12 | - | |
13 | 1 | /* splittbar */ |
14 | 2 | .hsplitbar { |
15 | 3 | height: 7px; |
... | ... |
dictionary/static/css/payments_table.css
1 | -/* | |
2 | -Copyright (c) 2012, Bartłomiej Nitoń | |
3 | -All rights reserved. | |
4 | - | |
5 | -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | |
6 | - | |
7 | - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. | |
8 | - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
9 | - | |
10 | -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
11 | -*/ | |
12 | - | |
13 | 1 | .inflection-table-container { |
14 | 2 | display: inline-block; |
15 | 3 | vertical-align: top; |
... | ... |
dictionary/static/css/status_table.css
1 | -/* | |
2 | -Copyright (c) 2012, Bartłomiej Nitoń | |
3 | -All rights reserved. | |
4 | - | |
5 | -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | |
6 | - | |
7 | - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. | |
8 | - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
9 | - | |
10 | -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
11 | -*/ | |
12 | - | |
13 | 1 | table.StatusTable { |
14 | 2 | border-width: 0; |
15 | 3 | /*border-style: solid; |
... | ... |
dictionary/static/css/user_stats.css
1 | -/* | |
2 | -Copyright (c) 2014, Bartłomiej Nitoń | |
3 | -All rights reserved. | |
4 | - | |
5 | -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | |
6 | - | |
7 | - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. | |
8 | - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
9 | - | |
10 | -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
11 | -*/ | |
12 | - | |
13 | 1 | table.UserStatsMainTable { |
14 | 2 | border-width: 0; |
15 | 3 | border-collapse: collapse; |
... | ... |
dictionary/static/css/vocabulary_stats.css
1 | -/* | |
2 | -Copyright (c) 2014, Bartłomiej Nitoń | |
3 | -All rights reserved. | |
4 | - | |
5 | -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | |
6 | - | |
7 | - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. | |
8 | - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
9 | - | |
10 | -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
11 | -*/ | |
12 | - | |
13 | 1 | table.VocabTable { |
14 | 2 | border-width: 0; |
15 | 3 | border-collapse: collapse; |
... | ... |
dictionary/static/js/all_statistics.js
1 | -/* | |
2 | -Copyright (c) 2012, Bartłomiej Nitoń | |
3 | -All rights reserved. | |
4 | - | |
5 | -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | |
6 | - | |
7 | - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. | |
8 | - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
9 | - | |
10 | -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
11 | -*/ | |
12 | - | |
13 | 1 | $(function() { |
14 | 2 | |
15 | 3 | $('#user-select').live('change', show_user_info); |
... | ... |
dictionary/static/js/arg_realizations.js
1 | -/* | |
2 | -Copyright (c) 2015, Bartłomiej Nitoń | |
3 | -All rights reserved. | |
4 | - | |
5 | -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | |
6 | - | |
7 | - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. | |
8 | - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
9 | - | |
10 | -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
11 | -*/ | |
12 | - | |
13 | -$(function() { | |
1 | +$(function() { | |
14 | 2 | window.selected_real_row_id = -1; |
15 | 3 | |
16 | 4 | $('#realization-type #realization-type-select').live('change', function (event) { |
... | ... |
dictionary/static/js/arg_stats.js
1 | -/* | |
2 | -Copyright (c) 2013, Bartłomiej Nitoń | |
3 | -All rights reserved. | |
4 | - | |
5 | -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | |
6 | - | |
7 | - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. | |
8 | - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
9 | - | |
10 | -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
11 | -*/ | |
12 | - | |
13 | 1 | $(function() { |
14 | 2 | $('.arg-stats-form #arg-stats-gen-list').live('click', gen_list); |
15 | 3 | $('form.arg-stats-form').live('submit', prepare_graph); |
... | ... |
dictionary/static/js/argument_form_utils.js
1 | -/* | |
2 | -Copyright (c) 2014, Bartłomiej Nitoń | |
3 | -All rights reserved. | |
4 | - | |
5 | -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | |
6 | - | |
7 | - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. | |
8 | - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
9 | - | |
10 | -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
11 | -*/ | |
12 | - | |
13 | - // argument class | |
14 | 1 | function argument(id, text_rep, type, connections) |
15 | 2 | { |
16 | 3 | this.id = id |
... | ... |
dictionary/static/js/lemma-view.js
1 | -/* | |
2 | -Copyright (c) 2012, Bartłomiej Nitoń | |
3 | -All rights reserved. | |
4 | - | |
5 | -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | |
6 | - | |
7 | - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. | |
8 | - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
9 | - | |
10 | -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
11 | -*/ | |
12 | - | |
13 | 1 | var main_field = ax_main_field, |
14 | 2 | |
15 | 3 | initialColModel = ax_initialColModel; |
... | ... |
dictionary/static/js/lemma_grid.js
1 | -/* | |
2 | -Copyright (c) 2012, Bartłomiej Nitoń | |
3 | -All rights reserved. | |
4 | - | |
5 | -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | |
6 | - | |
7 | - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. | |
8 | - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
9 | - | |
10 | -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
11 | -*/ | |
12 | - | |
13 | 1 | var colModel = window.colModel; |
14 | 2 | var colNames = window.colNames; |
15 | 3 | var lastSelectedId = 0; |
... | ... |
dictionary/static/js/manage-vocabularies.js
1 | -/* | |
2 | -Copyright (c) 2012, Bartłomiej Nitoń | |
3 | -All rights reserved. | |
4 | - | |
5 | -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | |
6 | - | |
7 | - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. | |
8 | - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
9 | - | |
10 | -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
11 | -*/ | |
12 | - | |
13 | -$(function() { | |
1 | +$(function() { | |
14 | 2 | $('form.voc-download-form').live('submit', download_form_submit); |
15 | 3 | $('#vocabulary-select').live('change', show_vocabulary_info); |
16 | 4 | $('form.vocab-perm-manage-form').live('submit', vocab_perm_manage_form_submit); |
... | ... |
dictionary/static/js/manage_users.js
1 | -/* | |
2 | -Copyright (c) 2012, Bartłomiej Nitoń | |
3 | -All rights reserved. | |
4 | - | |
5 | -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | |
6 | - | |
7 | - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. | |
8 | - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
9 | - | |
10 | -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
11 | -*/ | |
12 | - | |
13 | 1 | $(function() { |
14 | 2 | $('form.new-account-form').live('submit', new_account_form_submit); |
15 | 3 | $('#change-user-function').load(ajax_change_user_fun_form, 'user_id=', function(){ |
... | ... | @@ -19,8 +7,6 @@ $(function() { |
19 | 7 | $('form.user-function-form').live('submit', user_function_form_submit); |
20 | 8 | }); |
21 | 9 | |
22 | - | |
23 | - | |
24 | 10 | function user_changed() |
25 | 11 | { |
26 | 12 | user_id = $('#change-user-function #id_user').val(); |
... | ... |
dictionary/static/js/user-notes.js
1 | -/* | |
2 | -Copyright (c) 2012, Bartłomiej Nitoń | |
3 | -All rights reserved. | |
4 | - | |
5 | -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | |
6 | - | |
7 | - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. | |
8 | - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
9 | - | |
10 | -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
11 | -*/ | |
12 | - | |
13 | 1 | $(function() { |
14 | 2 | |
15 | 3 | $("button#delete_user_note").click(delete_user_note); |
... | ... |
dictionary/static/js/user_statistics.js
1 | -/* | |
2 | -Copyright (c) 2012, Bartłomiej Nitoń | |
3 | -All rights reserved. | |
4 | - | |
5 | -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | |
6 | - | |
7 | - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. | |
8 | - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
9 | - | |
10 | -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
11 | -*/ | |
12 | - | |
13 | 1 | $(window).load(function() { |
14 | 2 | ShowProgressAnimation(); |
15 | 3 | $('#logged-user-stats').empty(); |
... | ... |
dictionary/templates/tex/lemma.tex
1 | -{% comment %} | |
2 | -% Copyright (c) 2012, Bartłomiej Nitoń | |
3 | -% All rights reserved. | |
4 | -% | |
5 | -% Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | |
6 | -% | |
7 | -% Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. | |
8 | -% Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
9 | -% | |
10 | -% THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
11 | -{% endcomment %} | |
12 | - | |
13 | 1 | {% load tex_tags %} |
14 | 2 | |
15 | 3 | {\sf |
... | ... |
dictionary/templatetags/tex_tags.py
1 | 1 | # -*- coding: utf-8 -*- |
2 | 2 | |
3 | -#Copyright (c) 2012, Bartłomiej Nitoń | |
4 | -#All rights reserved. | |
5 | - | |
6 | -#Redistribution and use in source and binary forms, with or without modification, are permitted provided | |
7 | -#that the following conditions are met: | |
8 | - | |
9 | -# Redistributions of source code must retain the above copyright notice, this list of conditions and | |
10 | -# the following disclaimer. | |
11 | -# Redistributions in binary form must reproduce the above copyright notice, this list of conditions | |
12 | -# and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
13 | - | |
14 | -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED | |
15 | -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | |
16 | -# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR | |
17 | -# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | |
18 | -# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
19 | -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
20 | -# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
21 | -# POSSIBILITY OF SUCH DAMAGE. | |
22 | - | |
23 | 3 | import operator |
24 | 4 | import string |
25 | 5 | |
... | ... |
dictionary/validation.py
1 | 1 | #-*- coding:utf-8 -*- |
2 | 2 | |
3 | -#Copyright (c) 2014, Bartłomiej Nitoń | |
4 | -#All rights reserved. | |
5 | - | |
6 | -#Redistribution and use in source and binary forms, with or without modification, are permitted provided | |
7 | -#that the following conditions are met: | |
8 | - | |
9 | -# Redistributions of source code must retain the above copyright notice, this list of conditions and | |
10 | -# the following disclaimer. | |
11 | -# Redistributions in binary form must reproduce the above copyright notice, this list of conditions | |
12 | -# and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
13 | - | |
14 | -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED | |
15 | -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | |
16 | -# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR | |
17 | -# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | |
18 | -# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
19 | -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
20 | -# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
21 | -# POSSIBILITY OF SUCH DAMAGE. | |
22 | - | |
23 | 3 | import copy |
24 | 4 | import itertools |
25 | 5 | import operator |
... | ... |
static/css/general.css
1 | -/* | |
2 | -Copyright (c) 2012, Bartłomiej Nitoń | |
3 | -All rights reserved. | |
4 | - | |
5 | -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | |
6 | - | |
7 | - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. | |
8 | - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
9 | - | |
10 | -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
11 | -*/ | |
12 | - | |
13 | 1 | /* główne menu */ |
14 | 2 | |
15 | 3 | ul#main_menu { |
... | ... |
static/js/base-layout.js
1 | -/* | |
2 | -Copyright (c) 2012, Bartłomiej Nitoń | |
3 | -All rights reserved. | |
4 | - | |
5 | -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | |
6 | - | |
7 | - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. | |
8 | - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
9 | - | |
10 | -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
11 | -*/ | |
12 | - | |
13 | 1 | var myLayout; |
14 | 2 | var change = false; |
15 | 3 | var notesNotSaved = false; |
... | ... |
static/js/lib/jquery.json-2.2.min.js
1 | - | |
1 | +/** | |
2 | + * jQuery JSON Plugin | |
3 | + * version: 2.2 | |
4 | + * | |
5 | + * This document is licensed as free software under the terms of the | |
6 | + * MIT License: http://www.opensource.org/licenses/mit-license.php | |
7 | + * | |
8 | + * Brantley Harris wrote this plugin. It is based somewhat on the JSON.org | |
9 | + * website's http://www.json.org/json2.js, which proclaims: | |
10 | + * "NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK.", a sentiment that | |
11 | + * I uphold. | |
12 | + * | |
13 | + * It is also influenced heavily by MochiKit's serializeJSON, which is | |
14 | + * copyrighted 2005 by Bob Ippolito. | |
15 | + */ | |
2 | 16 | (function($){$.toJSON=function(o) |
3 | 17 | {if(typeof(JSON)=='object'&&JSON.stringify) |
4 | 18 | return JSON.stringify(o);var type=typeof(o);if(o===null) |
... | ... | @@ -28,4 +42,4 @@ throw new SyntaxError("Error parsing JSON, source is not valid.");};$.quoteStrin |
28 | 42 | {if(string.match(_escapeable)) |
29 | 43 | {return'"'+string.replace(_escapeable,function(a) |
30 | 44 | {var c=_meta[a];if(typeof c==='string')return c;c=a.charCodeAt();return'\\u00'+Math.floor(c/16).toString(16)+(c%16).toString(16);})+'"';} |
31 | -return'"'+string+'"';};var _escapeable=/["\\\x00-\x1f\x7f-\x9f]/g;var _meta={'\b':'\\b','\t':'\\t','\n':'\\n','\f':'\\f','\r':'\\r','"':'\\"','\\':'\\\\'};})(jQuery); | |
32 | 45 | \ No newline at end of file |
46 | +return'"'+string+'"';};var _escapeable=/["\\\x00-\x1f\x7f-\x9f]/g;var _meta={'\b':'\\b','\t':'\\t','\n':'\\n','\f':'\\f','\r':'\\r','"':'\\"','\\':'\\\\'};})(jQuery); | |
... | ... |
static/js/script.js
1 | -/* | |
2 | -Copyright (c) 2012, Bartłomiej Nitoń | |
3 | -All rights reserved. | |
4 | - | |
5 | -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | |
6 | - | |
7 | - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. | |
8 | - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
9 | - | |
10 | -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
11 | -*/ | |
12 | - | |
13 | 1 | var activeLemmaPanel = 'new_frames'; |
14 | 2 | var selectedColor = 'rgb(176, 196, 222)'; // css backgroud color of selected table elements |
15 | 3 | |
... | ... |
templates/main_menu.html
1 | -<!-- | |
2 | -Copyright (c) 2016, Bartłomiej Nitoń | |
3 | -All rights reserved. | |
4 | - | |
5 | -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: | |
6 | - | |
7 | - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. | |
8 | - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
9 | - | |
10 | -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
11 | ---> | |
12 | - | |
13 | 1 | {% load url from future %} |
14 | 2 | |
15 | 3 | <ul id="main_menu"> |
... | ... |
urls.py
1 | 1 | #-*- coding:utf-8 -*- |
2 | 2 | |
3 | -#Copyright (c) 2012, Bartłomiej Nitoń | |
4 | -#All rights reserved. | |
5 | - | |
6 | -#Redistribution and use in source and binary forms, with or without modification, are permitted provided | |
7 | -#that the following conditions are met: | |
8 | - | |
9 | -# Redistributions of source code must retain the above copyright notice, this list of conditions and | |
10 | -# the following disclaimer. | |
11 | -# Redistributions in binary form must reproduce the above copyright notice, this list of conditions | |
12 | -# and the following disclaimer in the documentation and/or other materials provided with the distribution. | |
13 | - | |
14 | -# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED | |
15 | -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A | |
16 | -# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR | |
17 | -# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED | |
18 | -# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) | |
19 | -# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING | |
20 | -# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
21 | -# POSSIBILITY OF SUCH DAMAGE. | |
22 | - | |
23 | 3 | from django.conf import settings |
24 | 4 | from django.conf.urls.defaults import * |
25 | 5 | from django.views.generic.simple import direct_to_template |
... | ... |