Skip to content

Commit bd11268

Browse files
committed
2023
1 parent 195e6e6 commit bd11268

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+48
-53
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License
22

3-
Copyright (c) 2009-2022 Martin Wendt, (Original PyFileServer (c) 2005 Ho Chun Wei)
3+
Copyright (c) 2009-2023 Martin Wendt, (Original PyFileServer (c) 2005 Ho Chun Wei)
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
# -- Project information -----------------------------------------------------
2525

2626
project = "WsgiDAV"
27-
copyright = "2009-2022 Martin Wendt, 2005 Ho Chun Wei"
27+
copyright = "2009-2023 Martin Wendt, 2005 Ho Chun Wei"
2828
author = "Martin Wendt"
2929

3030
# The full version, including alpha/beta/rc tags

setup_bdist_msi.py

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,6 @@
2121

2222
org_version = __version__
2323

24-
# 'setup.py upload' fails on Vista, because .pypirc is searched on 'HOME' path
25-
# if "HOME" not in os.environ and "HOMEPATH" in os.environ:
26-
# os.environ.setdefault("HOME", os.environ.get("HOMEPATH", ""))
27-
# print("Initializing HOME environment variable to {!r}".format(os.environ["HOME"]))
28-
2924
# Since we included pywin32 extensions, cx_Freeze tries to create a
3025
# version resource. This only supports the 'a.b.c[.d]' format.
3126
# Our version has either the for '1.2.3' or '1.2.3-a1'
@@ -91,7 +86,7 @@
9186
target_name="wsgidav.exe",
9287
icon="docs/source/logo.ico",
9388
shortcut_name="WsgiDAV",
94-
copyright="(c) 2009-2022 Martin Wendt",
89+
copyright="(c) 2009-2023 Martin Wendt",
9590
# trademarks="...",
9691
)
9792
]
@@ -110,7 +105,7 @@
110105
"excludes": [
111106
"tkinter",
112107
],
113-
"constants": "BUILD_COPYRIGHT='(c) 2009-2022 Martin Wendt'",
108+
"constants": "BUILD_COPYRIGHT='(c) 2009-2023 Martin Wendt'",
114109
# "init_script": "Console",
115110
"include_msvcr": True,
116111
}

tests/benchmarks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# (c) 2009-2022 Martin Wendt and contributors; see WsgiDAV https://github.com/mar10/wsgidav
2+
# (c) 2009-2023 Martin Wendt and contributors; see WsgiDAV https://github.com/mar10/wsgidav
33
# Licensed under the MIT license:
44
# http://www.opensource.org/licenses/mit-license.php
55
"""

tests/test_http.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# (c) 2009-2022 Martin Wendt and contributors; see WsgiDAV https://github.com/mar10/wsgidav
2+
# (c) 2009-2023 Martin Wendt and contributors; see WsgiDAV https://github.com/mar10/wsgidav
33
# Licensed under the MIT license:
44
# http://www.opensource.org/licenses/mit-license.php
55
"""

tests/test_litmus.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# (c) 2009-2022 Martin Wendt and contributors; see WsgiDAV https://github.com/mar10/wsgidav
2+
# (c) 2009-2023 Martin Wendt and contributors; see WsgiDAV https://github.com/mar10/wsgidav
33
# Licensed under the MIT license:
44
# http://www.opensource.org/licenses/mit-license.php
55
"""

tests/test_lock_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# (c) 2009-2022 Martin Wendt and contributors; see WsgiDAV https://github.com/mar10/wsgidav
2+
# (c) 2009-2023 Martin Wendt and contributors; see WsgiDAV https://github.com/mar10/wsgidav
33
# Licensed under the MIT license:
44
# http://www.opensource.org/licenses/mit-license.php
55
"""Unit test for lock_manager.py"""

tests/test_property_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# (c) 2009-2022 Martin Wendt and contributors; see WsgiDAV https://github.com/mar10/wsgidav
2+
# (c) 2009-2023 Martin Wendt and contributors; see WsgiDAV https://github.com/mar10/wsgidav
33
# Licensed under the MIT license:
44
# http://www.opensource.org/licenses/mit-license.php
55
"""Unit test for property_manager.py"""

tests/test_scripted.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# (c) 2009-2022 Martin Wendt and contributors; see WsgiDAV https://github.com/mar10/wsgidav
2+
# (c) 2009-2023 Martin Wendt and contributors; see WsgiDAV https://github.com/mar10/wsgidav
33
# Licensed under the MIT license:
44
# http://www.opensource.org/licenses/mit-license.php
55
"""

tests/test_streaming.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# (c) 2009-2022 Martin Wendt and contributors; see WsgiDAV https://github.com/mar10/wsgidav
2+
# (c) 2009-2023 Martin Wendt and contributors; see WsgiDAV https://github.com/mar10/wsgidav
33
# Licensed under the MIT license:
44
# http://www.opensource.org/licenses/mit-license.php
55

0 commit comments

Comments
 (0)