Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump plone.namedfile #128

Closed
wants to merge 1 commit into from
Closed

Bump plone.namedfile #128

wants to merge 1 commit into from

Conversation

gforcada
Copy link
Sponsor Member

@gforcada gforcada commented Oct 9, 2015

Newer version has fixes for CSRF.

Newer version has fixes for CSRF.
@gforcada
Copy link
Sponsor Member Author

gforcada commented Oct 9, 2015

@gforcada
Copy link
Sponsor Member Author

Depends on #131 being merged first.

@gforcada
Copy link
Sponsor Member Author

See #132

@gforcada gforcada closed this Oct 23, 2015
@gforcada gforcada deleted the gforcada-patch-2 branch October 23, 2015 14:29
vangheem added a commit that referenced this pull request Jan 8, 2016
Branch: refs/heads/1.3.x
Date: 2016-01-08T12:15:07-02:00
Author: hvelarde (hvelarde) <hector.velarde@gmail.com>
Commit: plone/Products.TinyMCE@5f84f21

Change default search method and results order used when searching for content on internal links

Now we search by Title (as it is faster than SearchableText) and return results sorted by relevance instead of sortable_title.

Files changed:
M HISTORY.rst
M Products/TinyMCE/adapters/JSONSearch.py
Repository: Products.TinyMCE
Branch: refs/heads/1.3.x
Date: 2016-01-08T12:15:07-02:00
Author: hvelarde (hvelarde) <hector.velarde@gmail.com>
Commit: plone/Products.TinyMCE@495683f

Clean up code (this branch will never run under Plone 3)

Files changed:
M Products/TinyMCE/adapters/JSONSearch.py
Repository: Products.TinyMCE
Branch: refs/heads/1.3.x
Date: 2016-01-08T08:32:54-06:00
Author: Nathan Van Gheem (vangheem) <vangheem@gmail.com>
Commit: plone/Products.TinyMCE@d622a09

Merge pull request #128 from plone/issue_127_plone_43

Change default search method and results order used when searching for content on internal links

Files changed:
M HISTORY.rst
M Products/TinyMCE/adapters/JSONSearch.py
mister-roboto pushed a commit that referenced this pull request Jul 4, 2017
Branch: refs/heads/master
Date: 2017-07-03T17:59:00+03:00
Author: Peter Holzer (agitator) <peter.holzer@agitator.com>
Commit: plone/plone.app.layout@99628a7

move condition up to not show an empty div

Files changed:
M plone/app/layout/viewlets/anontools.pt
Repository: plone.app.layout
Branch: refs/heads/master
Date: 2017-07-03T18:05:32+03:00
Author: Peter Holzer (agitator) <peter.holzer@agitator.com>
Commit: plone/plone.app.layout@19fa14c

Added membertools viewlet

Files changed:
A plone/app/layout/viewlets/membertools.pt
M CHANGES.rst
M plone/app/layout/viewlets/configure.zcml
Repository: plone.app.layout
Branch: refs/heads/master
Date: 2017-07-04T11:19:20+03:00
Author: Eric Steele (esteele) <eric@esteele.net>
Commit: plone/plone.app.layout@2f7d4cf

Merge pull request #128 from plone/personal-bar

Member bar

Files changed:
A plone/app/layout/viewlets/membertools.pt
M CHANGES.rst
M plone/app/layout/viewlets/anontools.pt
M plone/app/layout/viewlets/configure.zcml
mister-roboto pushed a commit that referenced this pull request Jul 19, 2017
Branch: refs/heads/master
Date: 2017-07-19T15:03:30+02:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/plone.app.upgrade@9f99dae

fixes #84 - bug while migration, aq_base function works

Files changed:
M CHANGES.rst
M plone/app/upgrade/v50/final.py
Repository: plone.app.upgrade
Branch: refs/heads/master
Date: 2017-07-19T18:44:25+02:00
Author: agitator (agitator) <agitator@users.noreply.github.com>
Commit: plone/plone.app.upgrade@bdd0f95

Merge pull request #128 from plone/fix-84

fixes #84 - bug while migration, aq_base function works

Files changed:
M CHANGES.rst
M plone/app/upgrade/v50/final.py
mister-roboto pushed a commit that referenced this pull request Jul 19, 2017
Branch: refs/heads/master
Date: 2017-07-19T15:03:30+02:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/plone.app.upgrade@9f99dae

fixes #84 - bug while migration, aq_base function works

Files changed:
M CHANGES.rst
M plone/app/upgrade/v50/final.py
Repository: plone.app.upgrade
Branch: refs/heads/master
Date: 2017-07-19T18:44:25+02:00
Author: agitator (agitator) <agitator@users.noreply.github.com>
Commit: plone/plone.app.upgrade@bdd0f95

Merge pull request #128 from plone/fix-84

fixes #84 - bug while migration, aq_base function works

Files changed:
M CHANGES.rst
M plone/app/upgrade/v50/final.py
mister-roboto pushed a commit that referenced this pull request Apr 10, 2019
Branch: refs/heads/master
Date: 2019-04-09T10:42:41+02:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/Products.Archetypes@5acdaa5

Fixed slowness in unicodeTestIn script used by keyword template.

Fixes plone/Products.Archetypes#125

This contains performance tests, which are ignored by default, but can be activated by exporting a number:
$ export AT_UNICODETESTIN=3000
$ bin/test -s Products.Archetypes -m test_widgets -t test_unicodeTestIn
...
Testing unicodeTestIn with 3000 items, and 50 selected.
...

Timings before this fix:

First test part finished in 4.2931 seconds
Second test part finished in 12.6825 seconds

Timings after this fix:

First test part finished in 0.0373 seconds
Second test part finished in 0.2010 seconds

And with the fix and 30,000 items:

First test part finished in 0.0374 seconds
Second test part finished in 2.0301 seconds

Files changed:
A news/125.bugfix
M Products/Archetypes/skins/archetypes/unicodeTestIn.py
M Products/Archetypes/tests/test_widgets.py
Repository: Products.Archetypes

Branch: refs/heads/master
Date: 2019-04-10T11:10:07+02:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/Products.Archetypes@aa05381

Merge pull request #128 from plone/maurits-issue-125-unicode-test-in-master

Fixed slowness in unicodeTestIn script used by keyword template. [master]

Files changed:
A news/125.bugfix
M Products/Archetypes/skins/archetypes/unicodeTestIn.py
M Products/Archetypes/tests/test_widgets.py
mister-roboto pushed a commit that referenced this pull request Sep 9, 2019
Branch: refs/heads/master
Date: 2019-09-06T12:42:20+02:00
Author: Andreas Jung (zopyx) <info@zopyx.com>
Commit: plone/plone.recipe.zope2instance@b95286f

removed leading dash

Files changed:
M news/119-1.feature
M news/119-2.feature
M news/119-3.feature
Repository: plone.recipe.zope2instance

Branch: refs/heads/master
Date: 2019-09-09T10:28:29+02:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/plone.recipe.zope2instance@1d9ca20

Merge pull request #128 from plone/fix-119-news

fix news files

Files changed:
M news/119-1.feature
M news/119-2.feature
M news/119-3.feature
mister-roboto pushed a commit that referenced this pull request Nov 28, 2019
Branch: refs/heads/master
Date: 2019-11-28T01:35:58+01:00
Author: Érico Andrei (ericof) <ericof@gmail.com>
Commit: plone/plone.app.portlets@e0ff1d4

Remove role="navigation" from Navigation portlet. Closes #128

Files changed:
A news/128.bugfix
M plone/app/portlets/portlets/navigation.pt
Repository: plone.app.portlets

Branch: refs/heads/master
Date: 2019-11-28T13:15:05+01:00
Author: Érico Andrei (ericof) <ericof@gmail.com>
Commit: plone/plone.app.portlets@0c03dc7

Merge pull request #135 from plone/fix-128-w3c-validation

Remove role="navigation" from Navigation portlet.

Files changed:
A news/128.bugfix
M plone/app/portlets/portlets/navigation.pt
mister-roboto pushed a commit that referenced this pull request Mar 10, 2020
Branch: refs/heads/master
Date: 2020-03-10T11:37:59+01:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.dexterity@7ccb5a0

Fixed package install error with Python 3.6 without system locale.

See #642 (comment)

Files changed:
A news/642.bugfix
M setup.py
Repository: plone.dexterity

Branch: refs/heads/master
Date: 2020-03-10T15:12:23+01:00
Author: Maurits van Rees (mauritsvanrees) <m.van.rees@zestsoftware.nl>
Commit: plone/plone.dexterity@b61d09f

Merge pull request #128 from plone/maurits/fix-long-description-on-py36

Fixed package install error with Python 3.6 without system locale.

Files changed:
A news/642.bugfix
M setup.py
mister-roboto pushed a commit that referenced this pull request Dec 27, 2021
Branch: refs/heads/master
Date: 2021-12-27T08:10:40+01:00
Author: Ross Patterson (rpatterson) <me@rpatterson.net>
Commit: plone/plone.rest@70e1ec7

test(deprecation): Fix some warnings from our code (#128)

Resolve all the deprecation warnings that originate in this package's code that are
exposed by running the tests that do not stem from backwards compatibility we still
support.

IOW, warnings are still emitted that stem from code that needs to work with older
versions we still support and cannot be updated without breaking that backwards
compatibility.  It seems better to me to leave the warnings in place than litter our
code with BBB conditionals.

Files changed:
A news/128.bugfix
M src/plone/rest/tests/test_redirects.py
M src/plone/rest/tests/test_traversal.py
mister-roboto pushed a commit that referenced this pull request Feb 26, 2022
Branch: refs/heads/master
Date: 2022-02-26T16:17:12+01:00
Author: Victor Fernandez de Alba (sneridagh) <sneridagh@gmail.com>
Commit: plone/plone.app.robotframework@61ba0bd

Add VHM support in the PloneRobotFixture

Files changed:
A news/127.feature
M src/plone/app/robotframework/testing.py
Repository: plone.app.robotframework

Branch: refs/heads/master
Date: 2022-02-26T22:30:52+01:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.app.robotframework@32487bd

Merge pull request #128 from plone/install_vhm

Add VHM support in the PloneRobotFixture

Files changed:
A news/127.feature
M src/plone/app/robotframework/testing.py
mister-roboto pushed a commit that referenced this pull request May 4, 2023
Branch: refs/heads/master
Date: 2023-05-04T17:33:08+02:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.app.caching@2402a60

Changed hardcoded test date to June instead of May to temporarily fix a testing error.

See plone/plone.app.caching#127.
Needs a proper fix within a month.

Files changed:
A news/127.tests
M plone/app/caching/tests/test_utils.py
Repository: plone.app.caching

Branch: refs/heads/master
Date: 2023-05-04T17:42:28+02:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.app.caching@4dafd5d

Merge pull request #128 from plone/maurits-stable-now-moved-to-june-issue-127

Temporary fix: change test date to June instead of May

Files changed:
A news/127.tests
M plone/app/caching/tests/test_utils.py
mister-roboto pushed a commit that referenced this pull request Jun 7, 2024
Branch: refs/heads/master
Date: 2024-06-06T17:26:16+02:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.app.users@eb3f5d3

Configuring with plone/meta

Files changed:
M .github/workflows/meta.yml
M .meta.toml
M .pre-commit-config.yaml
M pyproject.toml
Repository: plone.app.users

Branch: refs/heads/master
Date: 2024-06-06T17:26:17+02:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.app.users@b22b364

Remove unused and broken member-registration control panel.

This still tried to use the ``portal_properties`` tool.
Since Plone 5.0 the ``member-fields`` control panel is used instead.

Files changed:
A news/127.bugfix
M plone/app/users/browser/configure.zcml
D plone/app/users/browser/registersettingspanel.py
Repository: plone.app.users

Branch: refs/heads/master
Date: 2024-06-07T10:07:04-04:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/plone.app.users@82bd3d3

Merge pull request #128 from plone/remove-portal-properties-tool

Remove unused and broken member-registration control panel

Files changed:
A news/127.bugfix
M .github/workflows/meta.yml
M .meta.toml
M .pre-commit-config.yaml
M plone/app/users/browser/configure.zcml
M pyproject.toml
D plone/app/users/browser/registersettingspanel.py
mister-roboto pushed a commit that referenced this pull request Jun 7, 2024
Branch: refs/heads/master
Date: 2024-06-06T17:26:16+02:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.app.users@eb3f5d3

Configuring with plone/meta

Files changed:
M .github/workflows/meta.yml
M .meta.toml
M .pre-commit-config.yaml
M pyproject.toml
Repository: plone.app.users

Branch: refs/heads/master
Date: 2024-06-06T17:26:17+02:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.app.users@b22b364

Remove unused and broken member-registration control panel.

This still tried to use the ``portal_properties`` tool.
Since Plone 5.0 the ``member-fields`` control panel is used instead.

Files changed:
A news/127.bugfix
M plone/app/users/browser/configure.zcml
D plone/app/users/browser/registersettingspanel.py
Repository: plone.app.users

Branch: refs/heads/master
Date: 2024-06-07T10:07:04-04:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/plone.app.users@82bd3d3

Merge pull request #128 from plone/remove-portal-properties-tool

Remove unused and broken member-registration control panel

Files changed:
A news/127.bugfix
M .github/workflows/meta.yml
M .meta.toml
M .pre-commit-config.yaml
M plone/app/users/browser/configure.zcml
M pyproject.toml
D plone/app/users/browser/registersettingspanel.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants