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

change repo url from git to https #161

Closed
wants to merge 1 commit into from
Closed

Conversation

hackerkid
Copy link

Using git instead of https for git clone creates problem in systems which are using a proxy server for server for accessing the Internet.

mr.developer:
mr.developer:
mr.developer: Cloned 'five.intid' with git.
mr.developer: git cloning of 'five.intid' failed.
mr.developer: fatal: unable to connect to github.com:
mr.developer: github.com[0: 192.30.252.131]: errno=Connection refused
mr.developer:
mr.developer:
mr.developer: Cloned 'mockup' with git.
mr.developer: git cloning of 'mockup' failed.
mr.developer: fatal: unable to connect to github.com:
mr.developer: github.com[0: 192.30.252.129]: errno=Connection refused
mr.developer:
mr.developer:
mr.developer: Cloned 'Products.PortalTransforms' with git.
mr.developer: git cloning of 'Products.PortalTransforms' failed.
mr.developer: fatal: unable to connect to github.com:
mr.developer: github.com[0: 192.30.252.129]: errno=Connection refused
mr.developer:
mr.developer:
mr.developer: Cloned 'archetypes.referencebrowserwidget' with git.
mr.developer: git cloning of 'archetypes.referencebrowserwidget' failed.
mr.developer: fatal: unable to connect to github.com:
mr.developer: github.com[0: 192.30.252.131]: errno=Connection refused
mr.developer:
mr.developer:
mr.developer: There have been errors, see messages above.

The error is fixed by changing the git to https in the repo urls. Other fix is to force git to use https instead of git

git config --global url.https://github.com/.insteadOf git://github.com/

Using git instead of https for git clone creates problem in systems which are using a proxy for server for accessing the Internet.
@jensens
Copy link
Sponsor Member

jensens commented Jan 23, 2016

+1, but I would like to ask for more opinions from @plone/framework-team and @plone/release-team

@mauritsvanrees
Copy link
Sponsor Member

-1. Technically I don't mind, but when we change this, every core developer must throw away his src directory (or do a git command for each repo to switch the url). If I just change it in sources.cfg, I get errors like this:

mr.developer: Can't update package 'archetypes.referencebrowserwidget' 
because its URL doesn't match.

Or are there technical reasons why https is better?

@hackerkid I would say the git config --global that you mention yourself is best here. One command and you are done.

Alternatively, you can create a local.cfg in the coredev buildout and use bin/buildout -c local.cfg. Contents can be like this:

[buildout]
extends = buildout.cfg

[remotes]
plone = https://github.com/plone
collective = https://github.com/collective
zope = https://github.com/zopefoundation

@jensens
Copy link
Sponsor Member

jensens commented Jan 23, 2016

@mauritsvanrees I agree its annoying to change each repositories .git/config file - but even Github recommends usage of https these days. I personally like the ssh way more, but for the vast majority and those working behind proxys the https way is much more convinient.

see also https://help.github.com/articles/which-remote-url-should-i-use/

We could provide a shell script iterating over all src/*/.git/config files changing the [remote "origin"] url= entry.

@davisagli
Copy link
Sponsor Member

In addition to @mauritsvanrees' comment, my objection is that https it makes it harder to push changes, since you have to enter your password instead of using an ssh key. However, this problem can be worked around with the following in ~/.gitconfig to make it automatically switch to ssh for pushing:

[url "git@github.com:"]
    pushInsteadOf = https://github.com/
    pushInsteadOf = git://github.com/

@mauritsvanrees
Copy link
Sponsor Member

Well, this pull request is only about changing the fetch urls. The push urls remain as they were.

I am a bit worried about this remark in the document @jensens points to:
"When you git clone, git fetch, git pull, or git push to a remote repository using HTTPS URLs on the command line, you'll be asked for your GitHub username and password."
This seems to imply that mr.developer would ask us dozens of times for a username and password. I don't see this though. A git clone https://github.com/plone/plone.openid.git works fine and gives me no prompt. When I try to push, I do get a prompt, but we will push elsewhere in coredev.
It could be that the prompt while fetching or pulling is only when a repository is private, which is not relevant for us.

When github itself recommends https, it may be the better choice.

@jensens
Copy link
Sponsor Member

jensens commented Jan 23, 2016

Yes, this PR is not enough.
But we need to discuss how we can better support people behind firewalls and proxys. I know from customers this is a problem.
Btw.: There are different credential managers for git, so you do not need to enter the password all the time.

@jensens
Copy link
Sponsor Member

jensens commented Jan 23, 2016

further reading
git-credential-cache - Helper to temporarily store passwords in memory
https://git-scm.com/docs/git-credential-cache

Works fine here (I have a customers with gitlab and https only).

@hackerkid
Copy link
Author

@mauritsvanrees

When you git clone, git fetch, git pull, or git push to a remote repository using HTTPS URLs on the command line, you'll be asked for your GitHub username and password

Github ask for credentials while cloning only if two-factor authentication is enabled.

I am looking forward do GSOC with Plone. I would be happy to spend my time on migrating all the urls from git to https. Should I close this pull request and send another one (covering push urls)?

@mauritsvanrees
Copy link
Sponsor Member

I do have two-factor authentication enabled. I also have this in my ~/.gitconfig:

[credential]
    helper = osxkeychain

Commenting it out yesterday I did not have to enter a password, but maybe git had remembered it from before. Or indeed because these are all public repositories.

I have the impression we do not want to change the push urls at all.

I wonder what Jenkins thinks of the current request, let's see:
http://jenkins.plone.org/job/pull-request-5.0/742/

@jensens
Copy link
Sponsor Member

jensens commented Jan 24, 2016

ok, agreed, andwe have indeed other more important problems to solve.

what about instead an additional cfg "httpscheckouts.cfg" in coredev, one behind firewalls can easily use with "bin/buildout - c httpscheckouts.cfg"?

@jensens jensens closed this Jan 31, 2016
mister-roboto pushed a commit that referenced this pull request Sep 6, 2018
Branch: refs/heads/master
Date: 2018-09-04T16:32:11+02:00
Author: Mikel Larreategi (erral) <mlarreategi@codesyntax.com>
Commit: plone/plone.app.layout@1164829

Failing tests showing that the byline is hidden for logged-in users

Files changed:
M plone/app/layout/viewlets/tests/test_content.py
Repository: plone.app.layout

Branch: refs/heads/master
Date: 2018-09-04T16:32:11+02:00
Author: Mikel Larreategi (erral) <mlarreategi@codesyntax.com>
Commit: plone/plone.app.layout@b3bb2bf

show byline for logged in users

test

Files changed:
M plone/app/layout/viewlets/content.py
M plone/app/layout/viewlets/tests/test_content.py
Repository: plone.app.layout

Branch: refs/heads/master
Date: 2018-09-04T16:33:20+02:00
Author: Mikel Larreategi (erral) <mlarreategi@codesyntax.com>
Commit: plone/plone.app.layout@60f3180

changelog

Files changed:
M CHANGES.rst
Repository: plone.app.layout

Branch: refs/heads/master
Date: 2018-09-06T10:00:00+02:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/plone.app.layout@18b0c8e

Merge pull request #161 from plone/erral-issue-160-document-byline

Fix document byline for logged-in users

Files changed:
M CHANGES.rst
M plone/app/layout/viewlets/content.py
M plone/app/layout/viewlets/tests/test_content.py
mister-roboto pushed a commit that referenced this pull request Sep 6, 2018
Branch: refs/heads/master
Date: 2018-09-04T16:32:11+02:00
Author: Mikel Larreategi (erral) <mlarreategi@codesyntax.com>
Commit: plone/plone.app.layout@1164829

Failing tests showing that the byline is hidden for logged-in users

Files changed:
M plone/app/layout/viewlets/tests/test_content.py
Repository: plone.app.layout

Branch: refs/heads/master
Date: 2018-09-04T16:32:11+02:00
Author: Mikel Larreategi (erral) <mlarreategi@codesyntax.com>
Commit: plone/plone.app.layout@b3bb2bf

show byline for logged in users

test

Files changed:
M plone/app/layout/viewlets/content.py
M plone/app/layout/viewlets/tests/test_content.py
Repository: plone.app.layout

Branch: refs/heads/master
Date: 2018-09-04T16:33:20+02:00
Author: Mikel Larreategi (erral) <mlarreategi@codesyntax.com>
Commit: plone/plone.app.layout@60f3180

changelog

Files changed:
M CHANGES.rst
Repository: plone.app.layout

Branch: refs/heads/master
Date: 2018-09-06T10:00:00+02:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/plone.app.layout@18b0c8e

Merge pull request #161 from plone/erral-issue-160-document-byline

Fix document byline for logged-in users

Files changed:
M CHANGES.rst
M plone/app/layout/viewlets/content.py
M plone/app/layout/viewlets/tests/test_content.py
mister-roboto pushed a commit that referenced this pull request Oct 11, 2018
Branch: refs/heads/master
Date: 2018-10-02T10:41:41+02:00
Author: Thomas Massmann (tmassman) <thomas.massmann@it-spir.it>
Commit: plone/plonetheme.barceloneta@def1d26

Restructure footer area to allow doormat like footer with additional footer portlets.

Files changed:
M plonetheme/barceloneta/theme/index.html
M plonetheme/barceloneta/theme/rules.xml
Repository: plonetheme.barceloneta

Branch: refs/heads/master
Date: 2018-10-02T12:23:55+02:00
Author: Thomas Massmann (tmassman) <thomas.massmann@it-spir.it>
Commit: plone/plonetheme.barceloneta@62da726

Adjust footer CSS for new structure.

Files changed:
M plonetheme/barceloneta/theme/less/footer.plone.less
Repository: plonetheme.barceloneta

Branch: refs/heads/master
Date: 2018-10-02T12:25:42+02:00
Author: Thomas Massmann (tmassman) <thomas.massmann@it-spir.it>
Commit: plone/plonetheme.barceloneta@b456272

Add footer content like script tags from site settings.

Files changed:
M plonetheme/barceloneta/theme/rules.xml
Repository: plonetheme.barceloneta

Branch: refs/heads/master
Date: 2018-10-02T13:42:17+02:00
Author: Thomas Massmann (tmassman) <thomas.massmann@it-spir.it>
Commit: plone/plonetheme.barceloneta@3eb9b70

Add grunt compile task.

Files changed:
M Gruntfile.js
Repository: plonetheme.barceloneta

Branch: refs/heads/master
Date: 2018-10-02T13:44:00+02:00
Author: Thomas Massmann (tmassman) <thomas.massmann@it-spir.it>
Commit: plone/plonetheme.barceloneta@7d896e1

Compile less.

Files changed:
M plonetheme/barceloneta/theme/less/barceloneta-compiled.css
M plonetheme/barceloneta/theme/less/barceloneta-compiled.css.map
Repository: plonetheme.barceloneta

Branch: refs/heads/master
Date: 2018-10-02T13:48:31+02:00
Author: Thomas Massmann (tmassman) <thomas.massmann@it-spir.it>
Commit: plone/plonetheme.barceloneta@738d0af

Add changelog entry.

Files changed:
M CHANGES.rst
Repository: plonetheme.barceloneta

Branch: refs/heads/master
Date: 2018-10-02T13:49:40+02:00
Author: Thomas Massmann (tmassman) <thomas.massmann@it-spir.it>
Commit: plone/plonetheme.barceloneta@921c656

Merge pull request #161 from plone/doormat-footer

Add doormat like footer

Files changed:
M CHANGES.rst
M Gruntfile.js
M plonetheme/barceloneta/theme/index.html
M plonetheme/barceloneta/theme/less/barceloneta-compiled.css
M plonetheme/barceloneta/theme/less/barceloneta-compiled.css.map
M plonetheme/barceloneta/theme/less/footer.plone.less
M plonetheme/barceloneta/theme/rules.xml
Repository: plonetheme.barceloneta

Branch: refs/heads/master
Date: 2018-10-02T14:20:48+02:00
Author: Thomas Massmann (tmassman) <thomas.massmann@it-spir.it>
Commit: plone/plonetheme.barceloneta@d0b7f09

Change order of content columns.

Have content container before column1 before column2.

Files changed:
M plonetheme/barceloneta/theme/index.html
Repository: plonetheme.barceloneta

Branch: refs/heads/master
Date: 2018-10-02T14:26:10+02:00
Author: Thomas Massmann (tmassman) <thomas.massmann@it-spir.it>
Commit: plone/plonetheme.barceloneta@9a2d0f8

Adjust CSS classes for portal columns.

Files changed:
M plonetheme/barceloneta/theme/rules.xml
Repository: plonetheme.barceloneta

Branch: refs/heads/master
Date: 2018-10-02T14:28:03+02:00
Author: Thomas Massmann (tmassman) <thomas.massmann@it-spir.it>
Commit: plone/plonetheme.barceloneta@c56734d

Update changelog.

Files changed:
M CHANGES.rst
Repository: plonetheme.barceloneta

Branch: refs/heads/master
Date: 2018-10-02T14:29:53+02:00
Author: Thomas Massmann (tmassman) <thomas.massmann@it-spir.it>
Commit: plone/plonetheme.barceloneta@ccc8a15

Merge pull request #162 from plone/content-columns

Adjust content columns

Files changed:
M CHANGES.rst
M plonetheme/barceloneta/theme/index.html
M plonetheme/barceloneta/theme/rules.xml
Repository: plonetheme.barceloneta

Branch: refs/heads/master
Date: 2018-10-11T13:00:32+02:00
Author: Philip Bauer (pbauer) <bauer@starzel.de>
Commit: plone/plonetheme.barceloneta@d75853a

Merge pull request #163 from plone/structural-fixes

Structural fixes

Files changed:
M CHANGES.rst
M Gruntfile.js
M plonetheme/barceloneta/theme/index.html
M plonetheme/barceloneta/theme/less/barceloneta-compiled.css
M plonetheme/barceloneta/theme/less/barceloneta-compiled.css.map
M plonetheme/barceloneta/theme/less/footer.plone.less
M plonetheme/barceloneta/theme/rules.xml
mister-roboto pushed a commit that referenced this pull request Oct 11, 2018
Branch: refs/heads/master
Date: 2018-10-02T10:41:41+02:00
Author: Thomas Massmann (tmassman) <thomas.massmann@it-spir.it>
Commit: plone/plonetheme.barceloneta@def1d26

Restructure footer area to allow doormat like footer with additional footer portlets.

Files changed:
M plonetheme/barceloneta/theme/index.html
M plonetheme/barceloneta/theme/rules.xml
Repository: plonetheme.barceloneta

Branch: refs/heads/master
Date: 2018-10-02T12:23:55+02:00
Author: Thomas Massmann (tmassman) <thomas.massmann@it-spir.it>
Commit: plone/plonetheme.barceloneta@62da726

Adjust footer CSS for new structure.

Files changed:
M plonetheme/barceloneta/theme/less/footer.plone.less
Repository: plonetheme.barceloneta

Branch: refs/heads/master
Date: 2018-10-02T12:25:42+02:00
Author: Thomas Massmann (tmassman) <thomas.massmann@it-spir.it>
Commit: plone/plonetheme.barceloneta@b456272

Add footer content like script tags from site settings.

Files changed:
M plonetheme/barceloneta/theme/rules.xml
Repository: plonetheme.barceloneta

Branch: refs/heads/master
Date: 2018-10-02T13:42:17+02:00
Author: Thomas Massmann (tmassman) <thomas.massmann@it-spir.it>
Commit: plone/plonetheme.barceloneta@3eb9b70

Add grunt compile task.

Files changed:
M Gruntfile.js
Repository: plonetheme.barceloneta

Branch: refs/heads/master
Date: 2018-10-02T13:44:00+02:00
Author: Thomas Massmann (tmassman) <thomas.massmann@it-spir.it>
Commit: plone/plonetheme.barceloneta@7d896e1

Compile less.

Files changed:
M plonetheme/barceloneta/theme/less/barceloneta-compiled.css
M plonetheme/barceloneta/theme/less/barceloneta-compiled.css.map
Repository: plonetheme.barceloneta

Branch: refs/heads/master
Date: 2018-10-02T13:48:31+02:00
Author: Thomas Massmann (tmassman) <thomas.massmann@it-spir.it>
Commit: plone/plonetheme.barceloneta@738d0af

Add changelog entry.

Files changed:
M CHANGES.rst
Repository: plonetheme.barceloneta

Branch: refs/heads/master
Date: 2018-10-02T13:49:40+02:00
Author: Thomas Massmann (tmassman) <thomas.massmann@it-spir.it>
Commit: plone/plonetheme.barceloneta@921c656

Merge pull request #161 from plone/doormat-footer

Add doormat like footer

Files changed:
M CHANGES.rst
M Gruntfile.js
M plonetheme/barceloneta/theme/index.html
M plonetheme/barceloneta/theme/less/barceloneta-compiled.css
M plonetheme/barceloneta/theme/less/barceloneta-compiled.css.map
M plonetheme/barceloneta/theme/less/footer.plone.less
M plonetheme/barceloneta/theme/rules.xml
Repository: plonetheme.barceloneta

Branch: refs/heads/master
Date: 2018-10-02T14:20:48+02:00
Author: Thomas Massmann (tmassman) <thomas.massmann@it-spir.it>
Commit: plone/plonetheme.barceloneta@d0b7f09

Change order of content columns.

Have content container before column1 before column2.

Files changed:
M plonetheme/barceloneta/theme/index.html
Repository: plonetheme.barceloneta

Branch: refs/heads/master
Date: 2018-10-02T14:26:10+02:00
Author: Thomas Massmann (tmassman) <thomas.massmann@it-spir.it>
Commit: plone/plonetheme.barceloneta@9a2d0f8

Adjust CSS classes for portal columns.

Files changed:
M plonetheme/barceloneta/theme/rules.xml
Repository: plonetheme.barceloneta

Branch: refs/heads/master
Date: 2018-10-02T14:28:03+02:00
Author: Thomas Massmann (tmassman) <thomas.massmann@it-spir.it>
Commit: plone/plonetheme.barceloneta@c56734d

Update changelog.

Files changed:
M CHANGES.rst
Repository: plonetheme.barceloneta

Branch: refs/heads/master
Date: 2018-10-02T14:29:53+02:00
Author: Thomas Massmann (tmassman) <thomas.massmann@it-spir.it>
Commit: plone/plonetheme.barceloneta@ccc8a15

Merge pull request #162 from plone/content-columns

Adjust content columns

Files changed:
M CHANGES.rst
M plonetheme/barceloneta/theme/index.html
M plonetheme/barceloneta/theme/rules.xml
Repository: plonetheme.barceloneta

Branch: refs/heads/master
Date: 2018-10-11T13:00:32+02:00
Author: Philip Bauer (pbauer) <bauer@starzel.de>
Commit: plone/plonetheme.barceloneta@d75853a

Merge pull request #163 from plone/structural-fixes

Structural fixes

Files changed:
M CHANGES.rst
M Gruntfile.js
M plonetheme/barceloneta/theme/index.html
M plonetheme/barceloneta/theme/less/barceloneta-compiled.css
M plonetheme/barceloneta/theme/less/barceloneta-compiled.css.map
M plonetheme/barceloneta/theme/less/footer.plone.less
M plonetheme/barceloneta/theme/rules.xml
mister-roboto pushed a commit that referenced this pull request Sep 30, 2019
Branch: refs/heads/master
Date: 2019-09-28T13:01:11+02:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.app.discussion@d09794d

Load zcml of plone.resource.

This is for our use of the `plone:static` directive.
See plone/Products.CMFPlone#2952

Files changed:
A news/2952.bugfix
M plone/app/discussion/configure.zcml
Repository: plone.app.discussion

Branch: refs/heads/master
Date: 2019-09-30T09:17:41+02:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/plone.app.discussion@5d32fee

Merge pull request #161 from plone/maurits/dependencies-issue-2952

Load zcml of plone.resource.

Files changed:
A news/2952.bugfix
M plone/app/discussion/configure.zcml
mister-roboto pushed a commit that referenced this pull request Feb 17, 2021
Branch: refs/heads/master
Date: 2021-02-16T23:21:11+01:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/plone.recipe.zope2instance@273a1fb

fix windows cluster f.. config

Files changed:
A news/161.bugfix
M src/plone/recipe/zope2instance/recipe.py
Repository: plone.recipe.zope2instance

Branch: refs/heads/master
Date: 2021-02-17T10:10:33+01:00
Author: Maurits van Rees (mauritsvanrees) <m.van.rees@zestsoftware.nl>
Commit: plone/plone.recipe.zope2instance@eb89fd8

Merge pull request #161 from plone/fix-windows-cluster

fix windows cluster f.. config

Files changed:
A news/161.bugfix
M src/plone/recipe/zope2instance/recipe.py
mister-roboto pushed a commit that referenced this pull request Dec 21, 2021
Branch: refs/heads/master
Date: 2021-12-20T12:42:18+01:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.dexterity@d1e0495

Plone 6: Always use a lines property for behaviors, no longer the deprecated ulines.

Part of plone/Products.CMFPlone#3305.
Note: I have switched coredev 5.2 to use `plone.dexterity` branch 2.x.

Files changed:
A news/3305.bugfix
M plone/dexterity/fti.py
Repository: plone.dexterity

Branch: refs/heads/master
Date: 2021-12-21T17:26:23+01:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/plone.dexterity@e43f08b

Merge pull request #161 from plone/no-ulines

Plone 6: Always use lines property for behaviors, no longer ulines

Files changed:
A news/3305.bugfix
M plone/dexterity/fti.py
mister-roboto pushed a commit that referenced this pull request Dec 21, 2021
Branch: refs/heads/master
Date: 2021-12-20T12:42:18+01:00
Author: Maurits van Rees (mauritsvanrees) <maurits@vanrees.org>
Commit: plone/plone.dexterity@d1e0495

Plone 6: Always use a lines property for behaviors, no longer the deprecated ulines.

Part of plone/Products.CMFPlone#3305.
Note: I have switched coredev 5.2 to use `plone.dexterity` branch 2.x.

Files changed:
A news/3305.bugfix
M plone/dexterity/fti.py
Repository: plone.dexterity

Branch: refs/heads/master
Date: 2021-12-21T17:26:23+01:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/plone.dexterity@e43f08b

Merge pull request #161 from plone/no-ulines

Plone 6: Always use lines property for behaviors, no longer ulines

Files changed:
A news/3305.bugfix
M plone/dexterity/fti.py
mister-roboto pushed a commit that referenced this pull request Mar 21, 2022
Branch: refs/heads/master
Date: 2022-03-18T09:44:01+01:00
Author: Peter Mathis (petschki) <peter.mathis@kombinat.at>
Commit: plone/plone.app.portlets@cea2519

Compatibility with latest z3c.form

Files changed:
M plone/app/portlets/tests/test_formextender.py
Repository: plone.app.portlets

Branch: refs/heads/master
Date: 2022-03-18T09:44:45+01:00
Author: Peter Mathis (petschki) <peter.mathis@kombinat.at>
Commit: plone/plone.app.portlets@7aab690

add changelog

Files changed:
A news/161.feature
Repository: plone.app.portlets

Branch: refs/heads/master
Date: 2022-03-21T09:13:57+01:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/plone.app.portlets@16194ef

Merge pull request #161 from plone/z3c-form-latest

Compatibility with latest z3c.form

Files changed:
A news/161.feature
M plone/app/portlets/tests/test_formextender.py
mister-roboto pushed a commit that referenced this pull request Mar 16, 2023
Branch: refs/heads/master
Date: 2023-03-15T09:40:11+01:00
Author: Laurent Lasudry (laulaz) <lasudry@gmail.com>
Commit: plone/plone.app.z3cform@0bfaeae

Fix relative URLs validation in link widget

This refs #160

Files changed:
A news/160.bugfix
M plone/app/z3cform/templates/link_input.pt
Repository: plone.app.z3cform

Branch: refs/heads/master
Date: 2023-03-16T23:49:37+01:00
Author: Jens W. Klein (jensens) <jk@kleinundpartner.at>
Commit: plone/plone.app.z3cform@49f098b

Merge pull request #161 from plone/fix-relative-urls-validation

Fix relative URLs validation in link widget

Files changed:
A news/160.bugfix
M plone/app/z3cform/templates/link_input.pt
mister-roboto pushed a commit that referenced this pull request Oct 1, 2023
Branch: refs/heads/main
Date: 2023-10-01T20:04:11+02:00
Author: Timo Stollenwerk (tisto) <tisto@users.noreply.github.com>
Commit: plone/plone.rest@79f1d19

Pre commit tisto (#161)

* Run pre-commit.ci, fix three typos

* Use same black version as pre-commit.ci

* Set black version to pre-commit.ci one

* black

* Add isort/black config to pyproject.toml

Files changed:
M CHANGES.rst
M Makefile
M README.rst
M plone-5.2.x.cfg
M plone-6.0.x.cfg
M pyproject.toml
M setup.py
M src/plone/rest/__init__.py
M src/plone/rest/cors.py
M src/plone/rest/demo.py
M src/plone/rest/errors.py
M src/plone/rest/events.py
M src/plone/rest/interfaces.py
M src/plone/rest/negotiation.py
M src/plone/rest/patches.py
M src/plone/rest/service.py
M src/plone/rest/testing.py
M src/plone/rest/tests/__init__.py
M src/plone/rest/tests/test_cors.py
M src/plone/rest/tests/test_dexterity.py
M src/plone/rest/tests/test_dispatching.py
M src/plone/rest/tests/test_error_handling.py
M src/plone/rest/tests/test_named_services.py
M src/plone/rest/tests/test_negotiation.py
M src/plone/rest/tests/test_permissions.py
M src/plone/rest/tests/test_redirects.py
M src/plone/rest/tests/test_siteroot.py
M src/plone/rest/tests/test_traversal.py
M src/plone/rest/traverse.py
M src/plone/rest/zcml.py
M versions.cfg
mister-roboto pushed a commit that referenced this pull request Oct 1, 2023
Branch: refs/heads/main
Date: 2023-10-01T20:04:11+02:00
Author: Timo Stollenwerk (tisto) <tisto@users.noreply.github.com>
Commit: plone/plone.rest@79f1d19

Pre commit tisto (#161)

* Run pre-commit.ci, fix three typos

* Use same black version as pre-commit.ci

* Set black version to pre-commit.ci one

* black

* Add isort/black config to pyproject.toml

Files changed:
M CHANGES.rst
M Makefile
M README.rst
M plone-5.2.x.cfg
M plone-6.0.x.cfg
M pyproject.toml
M setup.py
M src/plone/rest/__init__.py
M src/plone/rest/cors.py
M src/plone/rest/demo.py
M src/plone/rest/errors.py
M src/plone/rest/events.py
M src/plone/rest/interfaces.py
M src/plone/rest/negotiation.py
M src/plone/rest/patches.py
M src/plone/rest/service.py
M src/plone/rest/testing.py
M src/plone/rest/tests/__init__.py
M src/plone/rest/tests/test_cors.py
M src/plone/rest/tests/test_dexterity.py
M src/plone/rest/tests/test_dispatching.py
M src/plone/rest/tests/test_error_handling.py
M src/plone/rest/tests/test_named_services.py
M src/plone/rest/tests/test_negotiation.py
M src/plone/rest/tests/test_permissions.py
M src/plone/rest/tests/test_redirects.py
M src/plone/rest/tests/test_siteroot.py
M src/plone/rest/tests/test_traversal.py
M src/plone/rest/traverse.py
M src/plone/rest/zcml.py
M versions.cfg
mister-roboto pushed a commit that referenced this pull request Jul 26, 2024
Branch: refs/heads/master
Date: 2024-07-23T13:43:39+03:00
Author: dobri1408 (dobri1408) <50819975+dobri1408@users.noreply.github.com>
Commit: plone/plone.namedfile@26b108b

Update svg_utils.py to look for viewbox also

Files changed:
M plone/namedfile/utils/svg_utils.py
Repository: plone.namedfile

Branch: refs/heads/master
Date: 2024-07-23T13:49:33+03:00
Author: dobri1408 (dobri1408) <50819975+dobri1408@users.noreply.github.com>
Commit: plone/plone.namedfile@0ed951f

Update svg_utils.py

Files changed:
M plone/namedfile/utils/svg_utils.py
Repository: plone.namedfile

Branch: refs/heads/master
Date: 2024-07-23T13:50:20+03:00
Author: dobri1408 (dobri1408) <50819975+dobri1408@users.noreply.github.com>
Commit: plone/plone.namedfile@8b90cc6

Update svg_utils.py

Files changed:
M plone/namedfile/utils/svg_utils.py
Repository: plone.namedfile

Branch: refs/heads/master
Date: 2024-07-23T13:50:33+03:00
Author: dobri1408 (dobri1408) <50819975+dobri1408@users.noreply.github.com>
Commit: plone/plone.namedfile@f8c49be

Update svg_utils.py

Files changed:
M plone/namedfile/utils/svg_utils.py
Repository: plone.namedfile

Branch: refs/heads/master
Date: 2024-07-23T13:52:54+03:00
Author: dobri1408 (dobri1408) <50819975+dobri1408@users.noreply.github.com>
Commit: plone/plone.namedfile@9e056c5

Create 161.bugfix

Files changed:
A news/161.bugfix
Repository: plone.namedfile

Branch: refs/heads/master
Date: 2024-07-23T14:06:53+03:00
Author: dobri1408 (dobri1408) <50819975+dobri1408@users.noreply.github.com>
Commit: plone/plone.namedfile@e94e42f

Update svg_utils.py

Files changed:
M plone/namedfile/utils/svg_utils.py
Repository: plone.namedfile

Branch: refs/heads/master
Date: 2024-07-26T23:57:58+02:00
Author: Maurits van Rees (mauritsvanrees) <maurits@py76.be>
Commit: plone/plone.namedfile@2db172f

Merge pull request #161 from plone/scale-svg

Fix: Upload a svg without width and height set

Files changed:
A news/161.bugfix
M plone/namedfile/utils/svg_utils.py
mister-roboto pushed a commit that referenced this pull request Jul 26, 2024
Branch: refs/heads/master
Date: 2024-07-23T13:43:39+03:00
Author: dobri1408 (dobri1408) <50819975+dobri1408@users.noreply.github.com>
Commit: plone/plone.namedfile@26b108b

Update svg_utils.py to look for viewbox also

Files changed:
M plone/namedfile/utils/svg_utils.py
Repository: plone.namedfile

Branch: refs/heads/master
Date: 2024-07-23T13:49:33+03:00
Author: dobri1408 (dobri1408) <50819975+dobri1408@users.noreply.github.com>
Commit: plone/plone.namedfile@0ed951f

Update svg_utils.py

Files changed:
M plone/namedfile/utils/svg_utils.py
Repository: plone.namedfile

Branch: refs/heads/master
Date: 2024-07-23T13:50:20+03:00
Author: dobri1408 (dobri1408) <50819975+dobri1408@users.noreply.github.com>
Commit: plone/plone.namedfile@8b90cc6

Update svg_utils.py

Files changed:
M plone/namedfile/utils/svg_utils.py
Repository: plone.namedfile

Branch: refs/heads/master
Date: 2024-07-23T13:50:33+03:00
Author: dobri1408 (dobri1408) <50819975+dobri1408@users.noreply.github.com>
Commit: plone/plone.namedfile@f8c49be

Update svg_utils.py

Files changed:
M plone/namedfile/utils/svg_utils.py
Repository: plone.namedfile

Branch: refs/heads/master
Date: 2024-07-23T13:52:54+03:00
Author: dobri1408 (dobri1408) <50819975+dobri1408@users.noreply.github.com>
Commit: plone/plone.namedfile@9e056c5

Create 161.bugfix

Files changed:
A news/161.bugfix
Repository: plone.namedfile

Branch: refs/heads/master
Date: 2024-07-23T14:06:53+03:00
Author: dobri1408 (dobri1408) <50819975+dobri1408@users.noreply.github.com>
Commit: plone/plone.namedfile@e94e42f

Update svg_utils.py

Files changed:
M plone/namedfile/utils/svg_utils.py
Repository: plone.namedfile

Branch: refs/heads/master
Date: 2024-07-26T23:57:58+02:00
Author: Maurits van Rees (mauritsvanrees) <maurits@py76.be>
Commit: plone/plone.namedfile@2db172f

Merge pull request #161 from plone/scale-svg

Fix: Upload a svg without width and height set

Files changed:
A news/161.bugfix
M plone/namedfile/utils/svg_utils.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.

4 participants