Details

    • Type: Task Task
    • Status: Closed Closed
    • Priority: Major Major
    • Resolution: Fixed
    • Affects Version/s: TAG 2018/19 Sprint 1
    • Fix Version/s: None
    • Component/s: OIOIOI
    • Labels:

      Issue Links

        Activity

        Transition Time In Source Status Execution Times Last Executer Last Execution Date
        New New Resolved Resolved
        35d 4h 34m 1 Marek Żochowski 2019-04-9 22:49
        Resolved Resolved Closed Closed
        328d 18h 19m 1 Szymon Acedański 2020-03-3 16:08
        Szymon Acedański made changes -
        Status Resolved [ 5 ] Closed [ 6 ]
        Marek Żochowski made changes -
        Status New [ 10000 ] Resolved [ 5 ]
        Assignee Szymon Acedański [ accek ]
        Resolution Fixed [ 1 ]
        Hide
        Gerrit Gerrit added a comment -
        Change oioioi~master~Ib3eb9aee66930be76dd884f4bcd7c7e238a26602, patchset 18
        https://gerrit.sio2project.mimuw.edu.pl/3163

        (SIO-2154) Django 1.10

        This change consists of multiple sub-changes targeting issues that
        cannot be easily and cleanly patched in a backwards compatible manner:

        (SIO-2164) This change increments Django version to 1.10 and updates
        all relevant dependencies.

        (SIO-2176) Find alternative for Field.get_prep_lookup() and
        Field.get_db_prep_lookup() methods

        The work done in get_prep_lookup is done in get_prep_value in our case,
        so there is no need to change anything except the deletion of
        get_prep_lookup.

        (SIO-2179) Remove choices argument from Select/SelectMultiple widgets'
        render() and render_options() methods

        (no-ticket) Django1.10 compatible urls.reverse patching

        Current urlresolver was deprecated in Django 1.10. Changes made by
        Django project require patching in "reverse" in two modules now.

        (SIO-2226) Fix tests for new logout behaviour

        The behaviour has changed in Django 1.10 so that now the redirect is
        done immediately on HTTP level. This patch modifies our tests to adapt
        to this change.

        (SIO-2227) Fix argument parsing in management commands

        In an earlier patch, a switch was made from optparse to argparse for
        management commands. However, it was not visible in the passed test
        that all positional arguments have to be declared explicitly in parser.

        (SIO-2228) Fix tests for new username field constraints

        As of Django 1.10, the maximum length of a username is 150, and
        username field is also required. Tests were adapted to accomodate
        changes in generated HTML.

        (SIO-2229) Fix tests for new string-to-boolean conversion

        As of Django 1.10, 'y' is no longer recognized as a boolean-convertible
        value. Tests were adapted to use 't' instead.

        Co-authored-by: Michal Sidor <ms394731@students.mimuw.edu.pl>
        Co-authored-by: Artur Puzio <ap395026@students.mimuw.edu.pl>

        Change-Id: Ib3eb9aee66930be76dd884f4bcd7c7e238a26602
        Show
        Gerrit Gerrit added a comment - Change oioioi~master~Ib3eb9aee66930be76dd884f4bcd7c7e238a26602, patchset 18 https://gerrit.sio2project.mimuw.edu.pl/3163 ( SIO-2154 ) Django 1.10 This change consists of multiple sub-changes targeting issues that cannot be easily and cleanly patched in a backwards compatible manner: ( SIO-2164 ) This change increments Django version to 1.10 and updates all relevant dependencies. ( SIO-2176 ) Find alternative for Field.get_prep_lookup() and Field.get_db_prep_lookup() methods The work done in get_prep_lookup is done in get_prep_value in our case, so there is no need to change anything except the deletion of get_prep_lookup. ( SIO-2179 ) Remove choices argument from Select/SelectMultiple widgets' render() and render_options() methods (no-ticket) Django1.10 compatible urls.reverse patching Current urlresolver was deprecated in Django 1.10. Changes made by Django project require patching in "reverse" in two modules now. ( SIO-2226 ) Fix tests for new logout behaviour The behaviour has changed in Django 1.10 so that now the redirect is done immediately on HTTP level. This patch modifies our tests to adapt to this change. ( SIO-2227 ) Fix argument parsing in management commands In an earlier patch, a switch was made from optparse to argparse for management commands. However, it was not visible in the passed test that all positional arguments have to be declared explicitly in parser. ( SIO-2228 ) Fix tests for new username field constraints As of Django 1.10, the maximum length of a username is 150, and username field is also required. Tests were adapted to accomodate changes in generated HTML. ( SIO-2229 ) Fix tests for new string-to-boolean conversion As of Django 1.10, 'y' is no longer recognized as a boolean-convertible value. Tests were adapted to use 't' instead. Co-authored-by: Michal Sidor < ms394731@students.mimuw.edu.pl > Co-authored-by: Artur Puzio < ap395026@students.mimuw.edu.pl > Change-Id: Ib3eb9aee66930be76dd884f4bcd7c7e238a26602
        Hide
        Gerrit Gerrit added a comment -
        Change oioioi~master~Ib3eb9aee66930be76dd884f4bcd7c7e238a26602, patchset 17
        https://gerrit.sio2project.mimuw.edu.pl/3163

        (SIO-2154) Django 1.10

        This change consists of multiple sub-changes targeting issues that
        cannot be easily and cleanly patched in a backwards compatible manner:

        (SIO-2164) This change increments Django version to 1.10 and updates
        all relevant dependencies.

        (SIO-2176) Find alternative for Field.get_prep_lookup() and
        Field.get_db_prep_lookup() methods

        The work done in get_prep_lookup is done in get_prep_value in our case,
        so there is no need to change anything except the deletion of
        get_prep_lookup.

        (SIO-2179) Remove choices argument from Select/SelectMultiple widgets'
        render() and render_options() methods

        (no-ticket) Django1.10 compatible urls.reverse patching

        Current urlresolver was deprecated in Django 1.10. Changes made by
        Django project require patching in "reverse" in two modules now.

        (SIO-2226) Fix tests for new logout behaviour

        The behaviour has changed in Django 1.10 so that now the redirect is
        done immediately on HTTP level. This patch modifies our tests to adapt
        to this change.

        (SIO-2227) Fix argument parsing in management commands

        In an earlier patch, a switch was made from optparse to argparse for
        management commands. However, it was not visible in the passed test
        that all positional arguments have to be declared explicitly in parser.

        (SIO-2228) Fix tests for new username field constraints

        As of Django 1.10, the maximum length of a username is 150, and
        username field is also required. Tests were adapted to accomodate
        changes in generated HTML.

        (SIO-2229) Fix tests for new string-to-boolean conversion

        As of Django 1.10, 'y' is no longer recognized as a boolean-convertible
        value. Tests were adapted to use 't' instead.

        Co-authored-by: Michal Sidor <ms394731@students.mimuw.edu.pl>
        Co-authored-by: Artur Puzio <ap395026@students.mimuw.edu.pl>

        Change-Id: Ib3eb9aee66930be76dd884f4bcd7c7e238a26602
        Show
        Gerrit Gerrit added a comment - Change oioioi~master~Ib3eb9aee66930be76dd884f4bcd7c7e238a26602, patchset 17 https://gerrit.sio2project.mimuw.edu.pl/3163 ( SIO-2154 ) Django 1.10 This change consists of multiple sub-changes targeting issues that cannot be easily and cleanly patched in a backwards compatible manner: ( SIO-2164 ) This change increments Django version to 1.10 and updates all relevant dependencies. ( SIO-2176 ) Find alternative for Field.get_prep_lookup() and Field.get_db_prep_lookup() methods The work done in get_prep_lookup is done in get_prep_value in our case, so there is no need to change anything except the deletion of get_prep_lookup. ( SIO-2179 ) Remove choices argument from Select/SelectMultiple widgets' render() and render_options() methods (no-ticket) Django1.10 compatible urls.reverse patching Current urlresolver was deprecated in Django 1.10. Changes made by Django project require patching in "reverse" in two modules now. ( SIO-2226 ) Fix tests for new logout behaviour The behaviour has changed in Django 1.10 so that now the redirect is done immediately on HTTP level. This patch modifies our tests to adapt to this change. ( SIO-2227 ) Fix argument parsing in management commands In an earlier patch, a switch was made from optparse to argparse for management commands. However, it was not visible in the passed test that all positional arguments have to be declared explicitly in parser. ( SIO-2228 ) Fix tests for new username field constraints As of Django 1.10, the maximum length of a username is 150, and username field is also required. Tests were adapted to accomodate changes in generated HTML. ( SIO-2229 ) Fix tests for new string-to-boolean conversion As of Django 1.10, 'y' is no longer recognized as a boolean-convertible value. Tests were adapted to use 't' instead. Co-authored-by: Michal Sidor < ms394731@students.mimuw.edu.pl > Co-authored-by: Artur Puzio < ap395026@students.mimuw.edu.pl > Change-Id: Ib3eb9aee66930be76dd884f4bcd7c7e238a26602
        Hide
        Gerrit Gerrit added a comment -
        Change oioioi~master~Ib3eb9aee66930be76dd884f4bcd7c7e238a26602, patchset 16
        https://gerrit.sio2project.mimuw.edu.pl/3163

        (SIO-2154) Django 1.10

        This change consists of multiple sub-changes targeting issues that
        cannot be easily and cleanly patched in a backwards compatible manner:

        (SIO-2164) This change increments Django version to 1.10 and updates
        all relevant dependencies.

        (SIO-2176) Find alternative for Field.get_prep_lookup() and
        Field.get_db_prep_lookup() methods

        The work done in get_prep_lookup is done in get_prep_value in our case,
        so there is no need to change anything except the deletion of
        get_prep_lookup.

        (SIO-2179) Remove choices argument from Select/SelectMultiple widgets'
        render() and render_options() methods

        (no-ticket) Django1.10 compatible urls.reverse patching

        Current urlresolver was deprecated in Django 1.10. Changes made by
        Django project require patching in "reverse" in two modules now.

        (SIO-2226) Fix tests for new logout behaviour

        The behaviour has changed in Django 1.10 so that now the redirect is
        done immediately on HTTP level. This patch modifies our tests to adapt
        to this change.

        (SIO-2227) Fix argument parsing in management commands

        In an earlier patch, a switch was made from optparse to argparse for
        management commands. However, it was not visible in the passed test
        that all positional arguments have to be declared explicitly in parser.

        (SIO-2228) Fix tests for new username field constraints

        As of Django 1.10, the maximum length of a username is 150, and
        username field is also required. Tests were adapted to accomodate
        changes in generated HTML.

        (SIO-2229) Fix tests for new string-to-boolean conversion

        As of Django 1.10, 'y' is no longer recognized as a boolean-convertible
        value. Tests were adapted to use 't' instead.

        Co-authored-by: Michal Sidor <ms394731@students.mimuw.edu.pl>
        Co-authored-by: Artur Puzio <ap395026@students.mimuw.edu.pl>

        Change-Id: Ib3eb9aee66930be76dd884f4bcd7c7e238a26602
        Show
        Gerrit Gerrit added a comment - Change oioioi~master~Ib3eb9aee66930be76dd884f4bcd7c7e238a26602, patchset 16 https://gerrit.sio2project.mimuw.edu.pl/3163 ( SIO-2154 ) Django 1.10 This change consists of multiple sub-changes targeting issues that cannot be easily and cleanly patched in a backwards compatible manner: ( SIO-2164 ) This change increments Django version to 1.10 and updates all relevant dependencies. ( SIO-2176 ) Find alternative for Field.get_prep_lookup() and Field.get_db_prep_lookup() methods The work done in get_prep_lookup is done in get_prep_value in our case, so there is no need to change anything except the deletion of get_prep_lookup. ( SIO-2179 ) Remove choices argument from Select/SelectMultiple widgets' render() and render_options() methods (no-ticket) Django1.10 compatible urls.reverse patching Current urlresolver was deprecated in Django 1.10. Changes made by Django project require patching in "reverse" in two modules now. ( SIO-2226 ) Fix tests for new logout behaviour The behaviour has changed in Django 1.10 so that now the redirect is done immediately on HTTP level. This patch modifies our tests to adapt to this change. ( SIO-2227 ) Fix argument parsing in management commands In an earlier patch, a switch was made from optparse to argparse for management commands. However, it was not visible in the passed test that all positional arguments have to be declared explicitly in parser. ( SIO-2228 ) Fix tests for new username field constraints As of Django 1.10, the maximum length of a username is 150, and username field is also required. Tests were adapted to accomodate changes in generated HTML. ( SIO-2229 ) Fix tests for new string-to-boolean conversion As of Django 1.10, 'y' is no longer recognized as a boolean-convertible value. Tests were adapted to use 't' instead. Co-authored-by: Michal Sidor < ms394731@students.mimuw.edu.pl > Co-authored-by: Artur Puzio < ap395026@students.mimuw.edu.pl > Change-Id: Ib3eb9aee66930be76dd884f4bcd7c7e238a26602
        Hide
        Gerrit Gerrit added a comment -
        Change oioioi~master~Ib3eb9aee66930be76dd884f4bcd7c7e238a26602, patchset 15
        https://gerrit.sio2project.mimuw.edu.pl/3163

        (SIO-2154) Django 1.10

        This change consists of multiple sub-changes targeting issues that
        cannot be easily and cleanly patched in a backwards compatible manner:

        (SIO-2164) This change increments Django version to 1.10 and updates
        all relevant dependencies.

        (SIO-2176) Find alternative for Field.get_prep_lookup() and
        Field.get_db_prep_lookup() methods

        The work done in get_prep_lookup is done in get_prep_value in our case,
        so there is no need to change anything except the deletion of
        get_prep_lookup.

        (SIO-2179) Remove choices argument from Select/SelectMultiple widgets'
        render() and render_options() methods

        (no-ticket) Django1.10 compatible urls.reverse patching

        Current urlresolver was deprecated in Django 1.10. Changes made by
        Django project require patching in "reverse" in two modules now.

        (SIO-2226) Fix tests for new logout behaviour

        The behaviour has changed in Django 1.10 so that now the redirect is
        done immediately on HTTP level. This patch modifies our tests to adapt
        to this change.

        (SIO-2227) Fix argument parsing in management commands

        In an earlier patch, a switch was made from optparse to argparse for
        management commands. However, it was not visible in the passed test
        that all positional arguments have to be declared explicitly in parser.

        (SIO-2228) Fix tests for new username field constraints

        As of Django 1.10, the maximum length of a username is 150, and
        username field is also required. Tests were adapted to accomodate
        changes in generated HTML.

        (SIO-2229) Fix tests for new string-to-boolean conversion

        As of Django 1.10, 'y' is no longer recognized as a boolean-convertible
        value. Tests were adapted to use 't' instead.

        Co-authored-by: Michal Sidor <ms394731@students.mimuw.edu.pl>
        Co-authored-by: Artur Puzio <ap395026@students.mimuw.edu.pl>

        Change-Id: Ib3eb9aee66930be76dd884f4bcd7c7e238a26602
        Show
        Gerrit Gerrit added a comment - Change oioioi~master~Ib3eb9aee66930be76dd884f4bcd7c7e238a26602, patchset 15 https://gerrit.sio2project.mimuw.edu.pl/3163 ( SIO-2154 ) Django 1.10 This change consists of multiple sub-changes targeting issues that cannot be easily and cleanly patched in a backwards compatible manner: ( SIO-2164 ) This change increments Django version to 1.10 and updates all relevant dependencies. ( SIO-2176 ) Find alternative for Field.get_prep_lookup() and Field.get_db_prep_lookup() methods The work done in get_prep_lookup is done in get_prep_value in our case, so there is no need to change anything except the deletion of get_prep_lookup. ( SIO-2179 ) Remove choices argument from Select/SelectMultiple widgets' render() and render_options() methods (no-ticket) Django1.10 compatible urls.reverse patching Current urlresolver was deprecated in Django 1.10. Changes made by Django project require patching in "reverse" in two modules now. ( SIO-2226 ) Fix tests for new logout behaviour The behaviour has changed in Django 1.10 so that now the redirect is done immediately on HTTP level. This patch modifies our tests to adapt to this change. ( SIO-2227 ) Fix argument parsing in management commands In an earlier patch, a switch was made from optparse to argparse for management commands. However, it was not visible in the passed test that all positional arguments have to be declared explicitly in parser. ( SIO-2228 ) Fix tests for new username field constraints As of Django 1.10, the maximum length of a username is 150, and username field is also required. Tests were adapted to accomodate changes in generated HTML. ( SIO-2229 ) Fix tests for new string-to-boolean conversion As of Django 1.10, 'y' is no longer recognized as a boolean-convertible value. Tests were adapted to use 't' instead. Co-authored-by: Michal Sidor < ms394731@students.mimuw.edu.pl > Co-authored-by: Artur Puzio < ap395026@students.mimuw.edu.pl > Change-Id: Ib3eb9aee66930be76dd884f4bcd7c7e238a26602
        Hide
        Gerrit Gerrit added a comment -
        Change oioioi~master~Ib3eb9aee66930be76dd884f4bcd7c7e238a26602, patchset 14
        https://gerrit.sio2project.mimuw.edu.pl/3163

        (SIO-2154) Django 1.10

        This change consists of multiple sub-changes targeting issues that
        cannot be easily and cleanly patched in a backwards compatible manner:

        (SIO-2164) This change increments Django version to 1.10 and updates
        all relevant dependencies.

        (SIO-2176) Find alternative for Field.get_prep_lookup() and
        Field.get_db_prep_lookup() methods

        The work done in get_prep_lookup is done in get_prep_value in our case,
        so there is no need to change anything except the deletion of
        get_prep_lookup.

        (SIO-2179) Remove choices argument from Select/SelectMultiple widgets'
        render() and render_options() methods

        (no-ticket) Django1.10 compatible urls.reverse patching

        Current urlresolver was deprecated in Django 1.10. Changes made by
        Django project require patching in "reverse" in two modules now.

        (SIO-2226) Fix tests for new logout behaviour

        The behaviour has changed in Django 1.10 so that now the redirect is
        done immediately on HTTP level. This patch modifies our tests to adapt
        to this change.

        (SIO-2227) Fix argument parsing in management commands

        In an earlier patch, a switch was made from optparse to argparse for
        management commands. However, it was not visible in the passed test
        that all positional arguments have to be declared explicitly in parser.

        (SIO-2228) Fix tests for new username field constraints

        As of Django 1.10, the maximum length of a username is 150, and
        username field is also required. Tests were adapted to accomodate
        changes in generated HTML.

        (SIO-2229) Fix tests for new string-to-boolean conversion

        As of Django 1.10, 'y' is no longer recognized as a boolean-convertible
        value. Tests were adapted to use 't' instead.

        Co-authored-by: Michal Sidor <ms394731@students.mimuw.edu.pl>
        Co-authored-by: Artur Puzio <ap395026@students.mimuw.edu.pl>

        Change-Id: Ib3eb9aee66930be76dd884f4bcd7c7e238a26602
        Show
        Gerrit Gerrit added a comment - Change oioioi~master~Ib3eb9aee66930be76dd884f4bcd7c7e238a26602, patchset 14 https://gerrit.sio2project.mimuw.edu.pl/3163 ( SIO-2154 ) Django 1.10 This change consists of multiple sub-changes targeting issues that cannot be easily and cleanly patched in a backwards compatible manner: ( SIO-2164 ) This change increments Django version to 1.10 and updates all relevant dependencies. ( SIO-2176 ) Find alternative for Field.get_prep_lookup() and Field.get_db_prep_lookup() methods The work done in get_prep_lookup is done in get_prep_value in our case, so there is no need to change anything except the deletion of get_prep_lookup. ( SIO-2179 ) Remove choices argument from Select/SelectMultiple widgets' render() and render_options() methods (no-ticket) Django1.10 compatible urls.reverse patching Current urlresolver was deprecated in Django 1.10. Changes made by Django project require patching in "reverse" in two modules now. ( SIO-2226 ) Fix tests for new logout behaviour The behaviour has changed in Django 1.10 so that now the redirect is done immediately on HTTP level. This patch modifies our tests to adapt to this change. ( SIO-2227 ) Fix argument parsing in management commands In an earlier patch, a switch was made from optparse to argparse for management commands. However, it was not visible in the passed test that all positional arguments have to be declared explicitly in parser. ( SIO-2228 ) Fix tests for new username field constraints As of Django 1.10, the maximum length of a username is 150, and username field is also required. Tests were adapted to accomodate changes in generated HTML. ( SIO-2229 ) Fix tests for new string-to-boolean conversion As of Django 1.10, 'y' is no longer recognized as a boolean-convertible value. Tests were adapted to use 't' instead. Co-authored-by: Michal Sidor < ms394731@students.mimuw.edu.pl > Co-authored-by: Artur Puzio < ap395026@students.mimuw.edu.pl > Change-Id: Ib3eb9aee66930be76dd884f4bcd7c7e238a26602
        Hide
        Gerrit Gerrit added a comment -
        Change oioioi~master~Ib3eb9aee66930be76dd884f4bcd7c7e238a26602, patchset 13
        https://gerrit.sio2project.mimuw.edu.pl/3163

        (SIO-2154) Django 1.10

        This change consists of multiple sub-changes targeting issues that
        cannot be easily and cleanly patched in a backwards compatible manner:

        (SIO-2164) This change increments Django version to 1.10 and updates
        all relevant dependencies.

        (SIO-2176) Find alternative for Field.get_prep_lookup() and
        Field.get_db_prep_lookup() methods

        The work done in get_prep_lookup is done in get_prep_value in our case,
        so there is no need to change anything except the deletion of
        get_prep_lookup.

        (SIO-2179) Remove choices argument from Select/SelectMultiple widgets'
        render() and render_options() methods

        (no-ticket) Django1.10 compatible urls.reverse patching

        Current urlresolver was deprecated in Django 1.10. Changes made by
        Django project require patching in "reverse" in two modules now.

        (SIO-2226) Fix tests for new logout behaviour

        The behaviour has changed in Django 1.10 so that now the redirect is
        done immediately on HTTP level. This patch modifies our tests to adapt
        to this change.

        (SIO-2227) Fix argument parsing in management commands

        In an earlier patch, a switch was made from optparse to argparse for
        management commands. However, it was not visible in the passed test
        that all positional arguments have to be declared explicitly in parser.

        (SIO-2228) Fix tests for new username field constraints

        As of Django 1.10, the maximum length of a username is 150, and
        username field is also required. Tests were adapted to accomodate
        changes in generated HTML.

        (SIO-2229) Fix tests for new string-to-boolean conversion

        As of Django 1.10, 'y' is no longer recognized as a boolean-convertible
        value. Tests were adapted to use 't' instead.

        Co-authored-by: Michal Sidor <ms394731@students.mimuw.edu.pl>
        Co-authored-by: Artur Puzio <ap395026@students.mimuw.edu.pl>

        Change-Id: Ib3eb9aee66930be76dd884f4bcd7c7e238a26602
        Show
        Gerrit Gerrit added a comment - Change oioioi~master~Ib3eb9aee66930be76dd884f4bcd7c7e238a26602, patchset 13 https://gerrit.sio2project.mimuw.edu.pl/3163 ( SIO-2154 ) Django 1.10 This change consists of multiple sub-changes targeting issues that cannot be easily and cleanly patched in a backwards compatible manner: ( SIO-2164 ) This change increments Django version to 1.10 and updates all relevant dependencies. ( SIO-2176 ) Find alternative for Field.get_prep_lookup() and Field.get_db_prep_lookup() methods The work done in get_prep_lookup is done in get_prep_value in our case, so there is no need to change anything except the deletion of get_prep_lookup. ( SIO-2179 ) Remove choices argument from Select/SelectMultiple widgets' render() and render_options() methods (no-ticket) Django1.10 compatible urls.reverse patching Current urlresolver was deprecated in Django 1.10. Changes made by Django project require patching in "reverse" in two modules now. ( SIO-2226 ) Fix tests for new logout behaviour The behaviour has changed in Django 1.10 so that now the redirect is done immediately on HTTP level. This patch modifies our tests to adapt to this change. ( SIO-2227 ) Fix argument parsing in management commands In an earlier patch, a switch was made from optparse to argparse for management commands. However, it was not visible in the passed test that all positional arguments have to be declared explicitly in parser. ( SIO-2228 ) Fix tests for new username field constraints As of Django 1.10, the maximum length of a username is 150, and username field is also required. Tests were adapted to accomodate changes in generated HTML. ( SIO-2229 ) Fix tests for new string-to-boolean conversion As of Django 1.10, 'y' is no longer recognized as a boolean-convertible value. Tests were adapted to use 't' instead. Co-authored-by: Michal Sidor < ms394731@students.mimuw.edu.pl > Co-authored-by: Artur Puzio < ap395026@students.mimuw.edu.pl > Change-Id: Ib3eb9aee66930be76dd884f4bcd7c7e238a26602
        Hide
        Gerrit Gerrit added a comment -
        Change oioioi~master~Ib3eb9aee66930be76dd884f4bcd7c7e238a26602, patchset 12
        https://gerrit.sio2project.mimuw.edu.pl/3163

        (SIO-2154) Django 1.10

        This change consists of multiple sub-changes targeting issues that
        cannot be easily and cleanly patched in a backwards compatible manner:

        (SIO-2164) This change increments Django version to 1.10 and updates
        all relevant dependencies.

        (SIO-2176) Find alternative for Field.get_prep_lookup() and
        Field.get_db_prep_lookup() methods

        The work done in get_prep_lookup is done in get_prep_value in our case,
        so there is no need to change anything except the deletion of
        get_prep_lookup.

        (SIO-2179) Remove choices argument from Select/SelectMultiple widgets'
        render() and render_options() methods

        (no-ticket) Django1.10 compatible urls.reverse patching

        Current urlresolver was deprecated in Django 1.10. Changes made by
        Django project require patching in "reverse" in two modules now.

        (SIO-2226) Fix tests for new logout behaviour

        The behaviour has changed in Django 1.10 so that now the redirect is
        done immediately on HTTP level. This patch modifies our tests to adapt
        to this change.

        (SIO-2227) Fix argument parsing in management commands

        In an earlier patch, a switch was made from optparse to argparse for
        management commands. However, it was not visible in the passed test
        that all positional arguments have to be declared explicitly in parser.

        (SIO-2228) Fix tests for new username field constraints

        As of Django 1.10, the maximum length of a username is 150, and
        username field is also required. Tests were adapted to accomodate
        changes in generated HTML.

        (SIO-2229) Fix tests for new string-to-boolean conversion

        As of Django 1.10, 'y' is no longer recognized as a boolean-convertible
        value. Tests were adapted to use 't' instead.

        Co-authored-by: Michal Sidor <ms394731@students.mimuw.edu.pl>
        Co-authored-by: Artur Puzio <ap395026@students.mimuw.edu.pl>

        Change-Id: Ib3eb9aee66930be76dd884f4bcd7c7e238a26602
        Show
        Gerrit Gerrit added a comment - Change oioioi~master~Ib3eb9aee66930be76dd884f4bcd7c7e238a26602, patchset 12 https://gerrit.sio2project.mimuw.edu.pl/3163 ( SIO-2154 ) Django 1.10 This change consists of multiple sub-changes targeting issues that cannot be easily and cleanly patched in a backwards compatible manner: ( SIO-2164 ) This change increments Django version to 1.10 and updates all relevant dependencies. ( SIO-2176 ) Find alternative for Field.get_prep_lookup() and Field.get_db_prep_lookup() methods The work done in get_prep_lookup is done in get_prep_value in our case, so there is no need to change anything except the deletion of get_prep_lookup. ( SIO-2179 ) Remove choices argument from Select/SelectMultiple widgets' render() and render_options() methods (no-ticket) Django1.10 compatible urls.reverse patching Current urlresolver was deprecated in Django 1.10. Changes made by Django project require patching in "reverse" in two modules now. ( SIO-2226 ) Fix tests for new logout behaviour The behaviour has changed in Django 1.10 so that now the redirect is done immediately on HTTP level. This patch modifies our tests to adapt to this change. ( SIO-2227 ) Fix argument parsing in management commands In an earlier patch, a switch was made from optparse to argparse for management commands. However, it was not visible in the passed test that all positional arguments have to be declared explicitly in parser. ( SIO-2228 ) Fix tests for new username field constraints As of Django 1.10, the maximum length of a username is 150, and username field is also required. Tests were adapted to accomodate changes in generated HTML. ( SIO-2229 ) Fix tests for new string-to-boolean conversion As of Django 1.10, 'y' is no longer recognized as a boolean-convertible value. Tests were adapted to use 't' instead. Co-authored-by: Michal Sidor < ms394731@students.mimuw.edu.pl > Co-authored-by: Artur Puzio < ap395026@students.mimuw.edu.pl > Change-Id: Ib3eb9aee66930be76dd884f4bcd7c7e238a26602
        Hide
        Gerrit Gerrit added a comment -
        Change oioioi~master~Ib3eb9aee66930be76dd884f4bcd7c7e238a26602, patchset 11
        https://gerrit.sio2project.mimuw.edu.pl/3163

        (SIO-2154) Django 1.10

        This change consists of multiple sub-changes targeting issues that
        cannot be easily and cleanly patched in a backwards compatible manner:

        (SIO-2164) This change increments Django version to 1.10 and updates
        all relevant dependencies.

        (SIO-2176) Find alternative for Field.get_prep_lookup() and
        Field.get_db_prep_lookup() methods

        The work done in get_prep_lookup is done in get_prep_value in our case,
        so there is no need to change anything except the deletion of
        get_prep_lookup.

        (SIO-2179) Remove choices argument from Select/SelectMultiple widgets'
        render() and render_options() methods

        (no-ticket) Django1.10 compatible urls.reverse patching

        Current urlresolver was deprecated in Django 1.10. Changes made by
        Django project require patching in "reverse" in two modules now.

        (SIO-2226) Fix tests for new logout behaviour

        The behaviour has changed in Django 1.10 so that now the redirect is
        done immediately on HTTP level. This patch modifies our tests to adapt
        to this change.

        (SIO-2227) Fix argument parsing in management commands

        In an earlier patch, a switch was made from optparse to argparse for
        management commands. However, it was not visible in the passed test
        that all positional arguments have to be declared explicitly in parser.

        Co-authored-by: Michal Sidor <ms394731@students.mimuw.edu.pl>
        Co-authored-by: Artur Puzio <ap395026@students.mimuw.edu.pl>

        Change-Id: Ib3eb9aee66930be76dd884f4bcd7c7e238a26602
        Show
        Gerrit Gerrit added a comment - Change oioioi~master~Ib3eb9aee66930be76dd884f4bcd7c7e238a26602, patchset 11 https://gerrit.sio2project.mimuw.edu.pl/3163 ( SIO-2154 ) Django 1.10 This change consists of multiple sub-changes targeting issues that cannot be easily and cleanly patched in a backwards compatible manner: ( SIO-2164 ) This change increments Django version to 1.10 and updates all relevant dependencies. ( SIO-2176 ) Find alternative for Field.get_prep_lookup() and Field.get_db_prep_lookup() methods The work done in get_prep_lookup is done in get_prep_value in our case, so there is no need to change anything except the deletion of get_prep_lookup. ( SIO-2179 ) Remove choices argument from Select/SelectMultiple widgets' render() and render_options() methods (no-ticket) Django1.10 compatible urls.reverse patching Current urlresolver was deprecated in Django 1.10. Changes made by Django project require patching in "reverse" in two modules now. ( SIO-2226 ) Fix tests for new logout behaviour The behaviour has changed in Django 1.10 so that now the redirect is done immediately on HTTP level. This patch modifies our tests to adapt to this change. ( SIO-2227 ) Fix argument parsing in management commands In an earlier patch, a switch was made from optparse to argparse for management commands. However, it was not visible in the passed test that all positional arguments have to be declared explicitly in parser. Co-authored-by: Michal Sidor < ms394731@students.mimuw.edu.pl > Co-authored-by: Artur Puzio < ap395026@students.mimuw.edu.pl > Change-Id: Ib3eb9aee66930be76dd884f4bcd7c7e238a26602
        Hide
        Gerrit Gerrit added a comment -
        Change oioioi~master~Ib3eb9aee66930be76dd884f4bcd7c7e238a26602, patchset 10
        https://gerrit.sio2project.mimuw.edu.pl/3163

        (SIO-2154) Django 1.10

        This change consists of 4 sub-changes:

        (SIO-2164) This change incremenets Django version to 1.10 and updates
        all relevant dependencies.

        (SIO-2176) Find alternative for Field.get_prep_lookup() and
        Field.get_db_prep_lookup() methods

        The work done in get_prep_lookup is done in get_prep_value in our case,
        so there is no need to change anything except the deletion of
        get_prep_lookup.

        (SIO-2179) Remove choices argument from Select/SelectMultiple widgets'
        render() and render_options() methods

        (no-ticket) Django1.10 compatible urls.reverse patching

        Current urlresolver was deprecetaed in Django 1.10. Changes made by
        Django project require patching in "reverse" in two modules now.

        Co-authored-by: Artur Puzio <ap395026@students.mimuw.edu.pl>

        Change-Id: Ib3eb9aee66930be76dd884f4bcd7c7e238a26602
        Show
        Gerrit Gerrit added a comment - Change oioioi~master~Ib3eb9aee66930be76dd884f4bcd7c7e238a26602, patchset 10 https://gerrit.sio2project.mimuw.edu.pl/3163 ( SIO-2154 ) Django 1.10 This change consists of 4 sub-changes: ( SIO-2164 ) This change incremenets Django version to 1.10 and updates all relevant dependencies. ( SIO-2176 ) Find alternative for Field.get_prep_lookup() and Field.get_db_prep_lookup() methods The work done in get_prep_lookup is done in get_prep_value in our case, so there is no need to change anything except the deletion of get_prep_lookup. ( SIO-2179 ) Remove choices argument from Select/SelectMultiple widgets' render() and render_options() methods (no-ticket) Django1.10 compatible urls.reverse patching Current urlresolver was deprecetaed in Django 1.10. Changes made by Django project require patching in "reverse" in two modules now. Co-authored-by: Artur Puzio < ap395026@students.mimuw.edu.pl > Change-Id: Ib3eb9aee66930be76dd884f4bcd7c7e238a26602
        Hide
        Gerrit Gerrit added a comment -
        Change oioioi~master~Ib3eb9aee66930be76dd884f4bcd7c7e238a26602, patchset 9
        https://gerrit.sio2project.mimuw.edu.pl/3163

        (SIO-2154) Django 1.10

        This change consists of 4 sub-changes:

        (SIO-2164) This change incremenets Django version to 1.10 and updates
        all relevant dependencies.

        (SIO-2176) Find alternative for Field.get_prep_lookup() and
        Field.get_db_prep_lookup() methods

        The work done in get_prep_lookup is done in get_prep_value in our case,
        so there is no need to change anything except the deletion of
        get_prep_lookup.

        (SIO-2179) Remove choices argument from Select/SelectMultiple widgets'
        render() and render_options() methods

        (no-ticket) Django1.10 compatible urls.reverse patching

        Current urlresolver was deprecetaed in Django 1.10. Changes made by
        Django project require patching in "reverse" in two modules now.

        Co-authored-by: Artur Puzio <ap395026@students.mimuw.edu.pl>

        Change-Id: Ib3eb9aee66930be76dd884f4bcd7c7e238a26602
        Show
        Gerrit Gerrit added a comment - Change oioioi~master~Ib3eb9aee66930be76dd884f4bcd7c7e238a26602, patchset 9 https://gerrit.sio2project.mimuw.edu.pl/3163 ( SIO-2154 ) Django 1.10 This change consists of 4 sub-changes: ( SIO-2164 ) This change incremenets Django version to 1.10 and updates all relevant dependencies. ( SIO-2176 ) Find alternative for Field.get_prep_lookup() and Field.get_db_prep_lookup() methods The work done in get_prep_lookup is done in get_prep_value in our case, so there is no need to change anything except the deletion of get_prep_lookup. ( SIO-2179 ) Remove choices argument from Select/SelectMultiple widgets' render() and render_options() methods (no-ticket) Django1.10 compatible urls.reverse patching Current urlresolver was deprecetaed in Django 1.10. Changes made by Django project require patching in "reverse" in two modules now. Co-authored-by: Artur Puzio < ap395026@students.mimuw.edu.pl > Change-Id: Ib3eb9aee66930be76dd884f4bcd7c7e238a26602
        Hide
        Gerrit Gerrit added a comment -
        Change oioioi~master~Ib3eb9aee66930be76dd884f4bcd7c7e238a26602, patchset 6
        https://gerrit.sio2project.mimuw.edu.pl/3163

        (SIO-2154) Django 1.10

        This change consists of 3 sub-changes:

        (SIO-2164) This change incremenets Django version to 1.10 and updates all relevant
        dependencies.

        (SIO-2176) Find alternative for Field.get_prep_lookup() and Field.get_db_prep_lookup() methods

        The work done in get_prep_lookup is done in get_prep_value in our case,
        so there is no need to change anything except the deletion of get_prep_lookup.

        (SIO-2179) Remove choices argument from Select/SelectMultiple widgets' render() and render_options() methods

        Co-authored-by: Artur Puzio <ap395026@students.mimuw.edu.pl>

        Change-Id: Ib3eb9aee66930be76dd884f4bcd7c7e238a26602
        Show
        Gerrit Gerrit added a comment - Change oioioi~master~Ib3eb9aee66930be76dd884f4bcd7c7e238a26602, patchset 6 https://gerrit.sio2project.mimuw.edu.pl/3163 ( SIO-2154 ) Django 1.10 This change consists of 3 sub-changes: ( SIO-2164 ) This change incremenets Django version to 1.10 and updates all relevant dependencies. ( SIO-2176 ) Find alternative for Field.get_prep_lookup() and Field.get_db_prep_lookup() methods The work done in get_prep_lookup is done in get_prep_value in our case, so there is no need to change anything except the deletion of get_prep_lookup. ( SIO-2179 ) Remove choices argument from Select/SelectMultiple widgets' render() and render_options() methods Co-authored-by: Artur Puzio < ap395026@students.mimuw.edu.pl > Change-Id: Ib3eb9aee66930be76dd884f4bcd7c7e238a26602
        Hide
        Gerrit Gerrit added a comment -
        Change oioioi~master~Ib3eb9aee66930be76dd884f4bcd7c7e238a26602, patchset 5
        https://gerrit.sio2project.mimuw.edu.pl/3163

        (SIO-2154) Django 1.10

        This change incremenets Django version to 1.10 and updates all relevant
        dependencies.

        Change-Id: Ib3eb9aee66930be76dd884f4bcd7c7e238a26602
        Show
        Gerrit Gerrit added a comment - Change oioioi~master~Ib3eb9aee66930be76dd884f4bcd7c7e238a26602, patchset 5 https://gerrit.sio2project.mimuw.edu.pl/3163 ( SIO-2154 ) Django 1.10 This change incremenets Django version to 1.10 and updates all relevant dependencies. Change-Id: Ib3eb9aee66930be76dd884f4bcd7c7e238a26602
        Hide
        Gerrit Gerrit added a comment -
        Change oioioi~master~Ib3eb9aee66930be76dd884f4bcd7c7e238a26602, patchset 4
        https://gerrit.sio2project.mimuw.edu.pl/3163

        (SIO-2154) Django 1.10

        This change incremenets Django version to 1.10 and updates all relevant
        dependencies.

        Change-Id: Ib3eb9aee66930be76dd884f4bcd7c7e238a26602
        Show
        Gerrit Gerrit added a comment - Change oioioi~master~Ib3eb9aee66930be76dd884f4bcd7c7e238a26602, patchset 4 https://gerrit.sio2project.mimuw.edu.pl/3163 ( SIO-2154 ) Django 1.10 This change incremenets Django version to 1.10 and updates all relevant dependencies. Change-Id: Ib3eb9aee66930be76dd884f4bcd7c7e238a26602
        Hide
        Gerrit Gerrit added a comment -
        Change oioioi~master~Ib3eb9aee66930be76dd884f4bcd7c7e238a26602, patchset 3
        https://gerrit.sio2project.mimuw.edu.pl/3163

        (SIO-2154) Django 1.10

        This change incremenets Django version to 1.10 and updates all relevant
        dependencies.

        Change-Id: Ib3eb9aee66930be76dd884f4bcd7c7e238a26602
        Show
        Gerrit Gerrit added a comment - Change oioioi~master~Ib3eb9aee66930be76dd884f4bcd7c7e238a26602, patchset 3 https://gerrit.sio2project.mimuw.edu.pl/3163 ( SIO-2154 ) Django 1.10 This change incremenets Django version to 1.10 and updates all relevant dependencies. Change-Id: Ib3eb9aee66930be76dd884f4bcd7c7e238a26602
        Hide
        Gerrit Gerrit added a comment -
        Change oioioi~master~I360c4b4f50c09ca49088484630f7a5b34213185c, patchset 1
        https://gerrit.sio2project.mimuw.edu.pl/3166

        (SIO-2154) Django 1.10

        This change incremenets Django version to 1.10 and updates all relevant
        dependencies.

        Change-Id: I360c4b4f50c09ca49088484630f7a5b34213185c
        Show
        Gerrit Gerrit added a comment - Change oioioi~master~I360c4b4f50c09ca49088484630f7a5b34213185c, patchset 1 https://gerrit.sio2project.mimuw.edu.pl/3166 ( SIO-2154 ) Django 1.10 This change incremenets Django version to 1.10 and updates all relevant dependencies. Change-Id: I360c4b4f50c09ca49088484630f7a5b34213185c
        Hide
        Gerrit Gerrit added a comment -
        Change oioioi~master~Ib3eb9aee66930be76dd884f4bcd7c7e238a26602, patchset 2
        https://gerrit.sio2project.mimuw.edu.pl/3163

        (SIO-2154) Django 1.10

        This change incremenets Django version to 1.10 and updates all relevant
        dependencies.

        Change-Id: Ib3eb9aee66930be76dd884f4bcd7c7e238a26602
        Show
        Gerrit Gerrit added a comment - Change oioioi~master~Ib3eb9aee66930be76dd884f4bcd7c7e238a26602, patchset 2 https://gerrit.sio2project.mimuw.edu.pl/3163 ( SIO-2154 ) Django 1.10 This change incremenets Django version to 1.10 and updates all relevant dependencies. Change-Id: Ib3eb9aee66930be76dd884f4bcd7c7e238a26602
        Hide
        Gerrit Gerrit added a comment -
        Change oioioi~master~Ib3eb9aee66930be76dd884f4bcd7c7e238a26602, patchset 1
        https://gerrit.sio2project.mimuw.edu.pl/3163

        (SIO-2154) Django 1.10

        This change incremenets Django version to 1.10 and updates all relevant
        dependencies.

        Change-Id: Ib3eb9aee66930be76dd884f4bcd7c7e238a26602
        Show
        Gerrit Gerrit added a comment - Change oioioi~master~Ib3eb9aee66930be76dd884f4bcd7c7e238a26602, patchset 1 https://gerrit.sio2project.mimuw.edu.pl/3163 ( SIO-2154 ) Django 1.10 This change incremenets Django version to 1.10 and updates all relevant dependencies. Change-Id: Ib3eb9aee66930be76dd884f4bcd7c7e238a26602
        Michał Sidor made changes -
        Link This issue blocks SIO-2181 [ SIO-2181 ]
        Michał Sidor made changes -
        Link This issue is blocked by SIO-2169 [ SIO-2169 ]
        Marek Żochowski made changes -
        Link This issue is blocked by SIO-2192 [ SIO-2192 ]
        Marek Żochowski made changes -
        Link This issue is blocked by SIO-2190 [ SIO-2190 ]
        Marek Żochowski made changes -
        Link This issue is blocked by SIO-2153 [ SIO-2153 ]
        Marek Żochowski made changes -
        Link This issue blocks SIO-2189 [ SIO-2189 ]
        Marek Żochowski made changes -
        Link This issue is blocked by SIO-2172 [ SIO-2172 ]
        Marek Żochowski made changes -
        Link This issue is blocked by SIO-2177 [ SIO-2177 ]
        Marek Żochowski made changes -
        Link This issue is blocked by SIO-2172 [ SIO-2172 ]
        Marek Żochowski made changes -
        Link This issue is duplicated by SIO-1835 [ SIO-1835 ]
        Michał Sidor made changes -
        Link This issue blocks SIO-2155 [ SIO-2155 ]
        Marek Żochowski made changes -
        Labels migration
        Artur Puzio made changes -
        Field Original Value New Value
        Summary Increment Django version and fix errors and warnings Increment Django version to 1.10

          People

          • Assignee:
            Szymon Acedański
            Reporter:
            Michał Sidor
          • Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

            • Created:
              Updated:
              Resolved: