Skip to content

Commit cb837c3

Browse files
authored
Updating doc's after repro rename (microsoft#160)
* Updating files after repro rename. * Fixing flake8 issues.
1 parent a1755b7 commit cb837c3

File tree

10 files changed

+17
-20
lines changed

10 files changed

+17
-20
lines changed

README.rst

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
.. image:: https://travis-ci.org/Microsoft/sql-xplat-cli.svg?branch=dev
2-
:target: https://travis-ci.org/Microsoft/sql-xplat-cli
1+
.. image:: https://travis-ci.org/Microsoft/mssql-scripter.svg?branch=dev
2+
:target: https://travis-ci.org/Microsoft/mssql-scripter
33

44
.. image:: https://ci.appveyor.com/api/projects/status/vpm8p71265ijytqs/branch/dev?svg=true
5-
:target: https://ci.appveyor.com/project/MrMeemus/sql-xplat-cli
5+
:target: https://ci.appveyor.com/project/MrMeemus/mssql-scripter
66

7-
.. image:: https://codecov.io/gh/Microsoft/sql-xplat-cli/branch/dev/graph/badge.svg?token=M96uWrHOIu
8-
  :target: https://codecov.io/gh/Microsoft/sql-xplat-cli/branch/dev
7+
.. image:: https://codecov.io/gh/Microsoft/mssql-scripter/branch/dev/graph/badge.svg?token=M96uWrHOIu
8+
  :target: https://codecov.io/gh/Microsoft/mssql-scripter/branch/dev
99

1010
.. image:: https://badge.fury.io/py/mssql-scripter.svg
1111
:target: https://pypi.python.org/pypi/mssql-scripter
1212

1313
.. image:: https://img.shields.io/pypi/pyversions/mssql-scripter.svg
14-
:target: https://travis-ci.org/Microsoft/sql-xplat-cli
14+
:target: https://travis-ci.org/Microsoft/mssql-scripter
1515

1616
mssql-scripter
1717
===============
@@ -68,7 +68,7 @@ mssql-scritper is licensed under the `MIT license`_.
6868
.. _installation guide: doc/installation_guide.md
6969
.. _development guide: doc/development_guide.md
7070
.. _usage guide: doc/usage_guide.md
71-
.. _Issues: https://github.com/Microsoft/sql-xplat-cli/issues
71+
.. _Issues: https://github.com/Microsoft/mssql-scripter/issues
7272
.. _Microsoft Open Source Code of Conduct: https://opensource.microsoft.com/codeofconduct/
7373
.. _Code of Conduct FAQ: https://opensource.microsoft.com/codeofconduct/faq/
74-
.. _MIT license: https://github.com/Microsoft/sql-xplat-cli/blob/dev/LI
74+
.. _MIT license: https://github.com/Microsoft/mssql-scripter/blob/dev/LI

doc/development_guide.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,18 @@ Development Guide
1111

1212
See the [Architecture Guide](architecture_guide.md) for details on how mssql-scripter is designed and implemented.
1313

14-
mssql-scripter sources are located on GitHub (https://github.com/Microsoft/sql-xplat-cli). In order to contribute to the project, you are expected to:
14+
mssql-scripter sources are located on GitHub (https://github.com/Microsoft/mssql-scripter). In order to contribute to the project, you are expected to:
1515
- Have a GitHub account. For Microsoft contributors, follow the guidelines on https://opensourcehub.microsoft.com/ to create, configure and link your account
16-
- Fork the https://github.com/Microsoft/sql-xplat-clirepository into your private GitHub account
17-
- Create pull requests against the https://github.com/Microsoft/sql-xplat-cli repository to get your code changes merged into the project repository.
16+
- Fork the https://github.com/Microsoft/mssql-scripterrepository into your private GitHub account
17+
- Create pull requests against the https://github.com/Microsoft/mssql-scripter repository to get your code changes merged into the project repository.
1818

1919
## <a name="Preparing_Machine"></a>1. Preparing your machine
2020
1. Install latest Python from http://python.org. Please note that the version of Python that comes preinstalled on OSX is 2.7. It is recommended to install both Python 2.7 and Python3.6 to ensure backwards compatibility for testing.
2121
#### Windows
2222
- The latest Python installation package can be downloaded from [here](https://www.python.org/downloads/).
2323
- During installation, select the 'Add Python to PATH' option. Python must be in the PATH environment variable.
2424

25-
2. Clone the repo from [https://github.com/Microsoft/sql-xplat-cli](https://github.com/Microsoft/sql-xplat-cli)
25+
2. Clone the repo from [https://github.com/Microsoft/mssql-scripter](https://github.com/Microsoft/mssql-scripter)
2626

2727
## <a name="Environment_Setup"></a>2. Environment Setup
2828
When developing on a Python project, it is recommended to do so in a virtual environment. A virtual environment is a sandbox that maintains a copy of all libraries necessary to run python in a isolated environment without interfering with the system or global python. For more information on virtual environments, go to [Virtual Environment Info](docs/virtual_environment_info.md).
@@ -78,7 +78,7 @@ General development steps that apply to both a virtual environment or a global e
7878
## <a name="Configure_IDE"></a>3. Configuring your IDE
7979
#### Visual Studio (Windows only)
8080
1. Install [Python Tools for Visual Studio](https://github.com/Microsoft/PTVS)
81-
2. Open the `<clone_root>\sql-xplat-cli.pyproj` project in Visual Studio
81+
2. Open the `<clone_root>\mssql-scripter.pyproj` project in Visual Studio
8282
8383
8484
#### Visual Studio Code (Any platform)

doc/installation_guide.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ C:\> pip install mssql-scripter
9090

9191
# Troubleshooting
9292

93-
If you're having installation issues, please check the below known issues and workarounds. If you're having a different issue, please check the [issues](https://github.com/Microsoft/sql-xplat-cli/issues) page to see if the issue has already been reported. If you don't see your issue there, filing a new issue would be appreciated.
93+
If you're having installation issues, please check the below known issues and workarounds. If you're having a different issue, please check the [issues](https://github.com/Microsoft/mssql-scripter/issues) page to see if the issue has already been reported. If you don't see your issue there, filing a new issue would be appreciated.
9494

9595
## Error: No module named mssqlscripter
9696
If the installation was successful and this error message is encountered, this may be caused by different versions of python in the environment.
File renamed without changes.

sql-xplat-cli.sln mssql-scripter.sln

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 15
44
VisualStudioVersion = 15.0.26730.0
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{888888A0-9F3D-457C-B088-3A5042F75D52}") = "sql-xplat-cli", "sql-xplat-cli.pyproj", "{F4BB6290-43F3-4F35-B26E-067C5EF8E64B}"
6+
Project("{888888A0-9F3D-457C-B088-3A5042F75D52}") = "mssql-scripter", "mssql-scripter.pyproj", "{F4BB6290-43F3-4F35-B26E-067C5EF8E64B}"
77
EndProject
88
Global
99
GlobalSection(SolutionConfigurationPlatforms) = preSolution

mssqlscripter/__init__.py

-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,3 @@
55

66

77
__version__ = '1.0.0a21'
8-

mssqltoolsservice/README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ Support is not provided to this package alone.
1414
`mssql-scripter GitHub repository`_
1515

1616
.. _Microsoft SQL Tools Service GitHub repository: https://github.com/Microsoft/sqltoolsservice
17-
.. _mssql-scripter GitHub repository: https://github.com/Microsoft/sql-xplat-cli
17+
.. _mssql-scripter GitHub repository: https://github.com/Microsoft/mssql-scripter

mssqltoolsservice/buildwheels.py

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
from urllib.request import urlopen
1818

1919

20-
2120
DOWNLOAD_URL_BASE = 'https://mssqlscripter.blob.core.windows.net/sqltoolsservice-10-12-2017/'
2221

2322
# Supported platform key's must match those in mssqlscript's setup.py.

mssqltoolsservice/mssqltoolsservice/__init__.py

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
__version__ = '1.0.0a21'
1414

1515

16-
1716
def get_executable_path():
1817
"""
1918
Find mssqltoolsservice executable relative to this package.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ def get_mssqltoolsservice_package_name(run_time_id=_get_runtime_id()):
140140
license='MIT',
141141
author='Microsoft Corporation',
142142
author_email='[email protected]',
143-
url='https://github.com/Microsoft/sql-xplat-cli/',
143+
url='https://github.com/Microsoft/mssql-scripter/',
144144
zip_safe=True,
145145
long_description=open('README.rst').read(),
146146
classifiers=CLASSIFIERS,

0 commit comments

Comments
 (0)