Skip to content

Commit b57a443

Browse files
authored
Merge pull request microsoft#4 from microsoft/dev
Update doc files and add copyright comments to all source python files
2 parents e278108 + d53925a commit b57a443

23 files changed

+79
-9
lines changed

CODE_OF_CONDUCT renamed to CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ Resources:
66

77
- [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/)
88
- [Microsoft Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/)
9-
- Contact [[email protected]](mailto:[email protected]) with questions or concerns
9+
- Contact [[email protected]](mailto:[email protected]) with questions or concerns

CONTRIBUTING.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Contributing
2+
3+
## How to contribute
4+
5+
This project welcomes contributions and suggestions. Most contributions require you to agree to a
6+
Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us
7+
the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.
8+
9+
When you submit a pull request, a CLA bot will automatically determine whether you need to provide
10+
a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions
11+
provided by the bot. You will only need to do this once across all repos using our CLA.
12+
13+
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
14+
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or
15+
contact [[email protected]](mailto:[email protected]) with any additional questions or comments.

LICENSE renamed to LICENSE.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
Project Name: mssql-django
2+
13
MIT License
24

35
Copyright (c) Microsoft Corporation.

README.rst renamed to README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
# Project
22

3-
.. image:: https://img.shields.io/pypi/v/django-mssql-backend.svg
4-
:target: https://pypi.python.org/pypi/django-mssql-backend
5-
63
Welcome to the MSSQL-Django 3rd party backend project!
74

8-
*django-mssql-backend* is a fork of
9-
`django-pyodbc-azure <https://pypi.org/project/django-pyodbc-azure/>`
5+
*mssql-django* is a fork of
6+
`django-mssql-backend <https://pypi.org/project/django-mssql-backend/>`
107

118
This project provides an enterprise database connectivity option for the Django Web Framework, with support for Microsoft SQL Server and Azure SQL Database.
129

@@ -245,6 +242,10 @@ This project has adopted the [Microsoft Open Source Code of Conduct](https://ope
245242
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or
246243
contact [[email protected]](mailto:[email protected]) with any additional questions or comments.
247244
245+
## Security Reporting Instructions
246+
247+
For security reporting instructions please refer to the SECURITY.md file in this repository.
248+
248249
## Trademarks
249250
250251
This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft

SECURITY.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
<!-- BEGIN MICROSOFT SECURITY.MD V0.0.5 BLOCK -->
2-
3-
## Security
1+
# Security
42

53
Microsoft takes the security of our software products and services seriously, which includes all source code repositories managed through our GitHub organizations, which include [Microsoft](https://github.com/Microsoft), [Azure](https://github.com/Azure), [DotNet](https://github.com/dotnet), [AspNet](https://github.com/aspnet), [Xamarin](https://github.com/xamarin), and [our GitHub organizations](https://opensource.microsoft.com/).
64

manage.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT license.
3+
14
#!/usr/bin/env python
25
import os
36
import sys

setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT license.
3+
14
from setuptools import find_packages, setup
25

36
CLASSIFIERS = [

sql_server/pyodbc/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT license.
3+
14
import sql_server.pyodbc.functions # noqa

sql_server/pyodbc/base.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT license.
3+
14
"""
25
MS SQL Server database backend for Django.
36
"""

sql_server/pyodbc/client.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT license.
3+
14
import re
25
import subprocess
36

0 commit comments

Comments
 (0)