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

Replace http:// with https:// where relevant and fix a doc link #162

Merged
merged 2 commits into from
Jul 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -132,4 +132,4 @@ Thanks to:
0.0.1 (2012-09-27)
------------------

* Initial version from the next `snippet <http://djangosnippets.org/snippets/1200/>`_
* Initial version from the next `snippet <https://djangosnippets.org/snippets/1200/>`_
2 changes: 1 addition & 1 deletion COPYING.LGPLv3
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
GNU LESSER GENERAL PUBLIC LICENSE
Version 3, 29 June 2007

Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ django-multiselectfield

A new model field and form field. With this you can get a multiple select from a choices. Stores to the database as a CharField of comma-separated values.

This egg is inspired by this `snippet <http://djangosnippets.org/snippets/1200/>`_.
This egg is inspired by this `snippet <https://djangosnippets.org/snippets/1200/>`_.

Supported Python versions: 2.7, 3.4+

Expand Down
2 changes: 1 addition & 1 deletion example/app/admin.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this software. If not, see <http://www.gnu.org/licenses/>.
# along with this software. If not, see <https://www.gnu.org/licenses/>.

from django.contrib import admin

Expand Down
2 changes: 1 addition & 1 deletion example/app/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this software. If not, see <http://www.gnu.org/licenses/>.
# along with this software. If not, see <https://www.gnu.org/licenses/>.

from django.db import models
from django.utils.translation import gettext as _
Expand Down
2 changes: 1 addition & 1 deletion example/app/test_msf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this software. If not, see <http://www.gnu.org/licenses/>.
# along with this software. If not, see <https://www.gnu.org/licenses/>.

from django.core.exceptions import ValidationError
from django.forms.models import modelform_factory
Expand Down
2 changes: 1 addition & 1 deletion example/app/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this software. If not, see <http://www.gnu.org/licenses/>.
# along with this software. If not, see <https://www.gnu.org/licenses/>.

from django.urls import path

Expand Down
2 changes: 1 addition & 1 deletion example/app/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this software. If not, see <http://www.gnu.org/licenses/>.
# along with this software. If not, see <https://www.gnu.org/licenses/>.

from django import VERSION
from django.conf import settings
Expand Down
12 changes: 6 additions & 6 deletions example/example/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this programe. If not, see <http://www.gnu.org/licenses/>.
# along with this programe. If not, see <https://www.gnu.org/licenses/>.

# Django settings for example project.
import os
Expand Down Expand Up @@ -43,11 +43,11 @@
DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField'

# Hosts/domain names that are valid for this site; required if DEBUG is False
# See https://docs.djangoproject.com/en/1.5/ref/settings/#allowed-hosts
# See https://docs.djangoproject.com/en/5.0/ref/settings/#allowed-hosts
ALLOWED_HOSTS = ['localhost']

# Local time zone for this installation. Choices can be found here:
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
# https://en.wikipedia.org/wiki/List_of_tz_zones_by_name
# although not all choices may be available on all operating systems.
# In a Windows environment this must be set to your system time zone.
TIME_ZONE = 'America/Chicago'
Expand Down Expand Up @@ -75,7 +75,7 @@

# URL that handles the media served from MEDIA_ROOT. Make sure to use a
# trailing slash.
# Examples: "http://example.com/media/", "http://media.example.com/"
# Examples: "https://example.com/media/", "https://media.example.com/"
MEDIA_URL = '/media/'

# Absolute path to the directory static files should be collected to.
Expand All @@ -85,7 +85,7 @@
STATIC_ROOT = path.join(BASE_DIR, 'static')

# URL prefix for static files.
# Example: "http://example.com/static/", "http://static.example.com/"
# Example: "https://example.com/static/", "https://static.example.com/"
STATIC_URL = '/static/'

# Additional locations of static files
Expand Down Expand Up @@ -180,7 +180,7 @@
# A sample logging configuration. The only tangible logging
# performed by this configuration is to send an email to
# the site admins on every HTTP 500 error when DEBUG=False.
# See http://docs.djangoproject.com/en/dev/topics/logging for
# See https://docs.djangoproject.com/en/dev/topics/logging for
# more details on how to customize your logging configuration.
LOGGING = {
'version': 1,
Expand Down
2 changes: 1 addition & 1 deletion example/example/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this software. If not, see <http://www.gnu.org/licenses/>.
# along with this software. If not, see <https://www.gnu.org/licenses/>.

from django import VERSION
from django.conf import settings
Expand Down
2 changes: 1 addition & 1 deletion example/run_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this programe. If not, see <http://www.gnu.org/licenses/>.
# along with this programe. If not, see <https://www.gnu.org/licenses/>.

import os
import sys
Expand Down
2 changes: 1 addition & 1 deletion multiselectfield/db/fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this programe. If not, see <http://www.gnu.org/licenses/>.
# along with this programe. If not, see <https://www.gnu.org/licenses/>.

from django import VERSION
from django.db import models
Expand Down
2 changes: 1 addition & 1 deletion multiselectfield/forms/fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this programe. If not, see <http://www.gnu.org/licenses/>.
# along with this programe. If not, see <https://www.gnu.org/licenses/>.

from django import forms

Expand Down
2 changes: 1 addition & 1 deletion multiselectfield/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this programe. If not, see <http://www.gnu.org/licenses/>.
# along with this programe. If not, see <https://www.gnu.org/licenses/>.

from __future__ import annotations

Expand Down
2 changes: 1 addition & 1 deletion multiselectfield/validators.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this programe. If not, see <http://www.gnu.org/licenses/>.
# along with this programe. If not, see <https://www.gnu.org/licenses/>.


from django.core import validators
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this programe. If not, see <http://www.gnu.org/licenses/>.
# along with this programe. If not, see <https://www.gnu.org/licenses/>.

# Initial code got from http://djangosnippets.org/users/danielroseman/
# Initial code inspired by https://djangosnippets.org/users/danielroseman/

import codecs
import os
Expand Down
Loading