diff --git a/AUTHORS b/AUTHORS index e52638fa..a3afd8b2 100644 --- a/AUTHORS +++ b/AUTHORS @@ -23,4 +23,4 @@ The following people have contributed to django-sql-explorer: - Moe Elias -A full list of contributors can be found on Github; https://github.com/groveco/django-sql-explorer/graphs/contributors \ No newline at end of file +A full list of contributors can be found on Github; https://github.com/chrisclark/django-sql-explorer/graphs/contributors diff --git a/HISTORY.rst b/HISTORY.rst index d6f912a6..1a1bfd96 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,7 +2,7 @@ Change Log ========== -This document records all notable changes to `django-sql-explorer `_. +This document records all notable changes to `django-sql-explorer `_. This project adheres to `Semantic Versioning `_. `unreleased`_ changes diff --git a/README.rst b/README.rst index c675aabe..affee377 100644 --- a/README.rst +++ b/README.rst @@ -17,6 +17,8 @@ SQL Explorer ============ +`Documentation `_ + SQL Explorer aims to make the flow of data between people fast, simple, and confusion-free. It is a Django-based application that you can add to an existing Django site, or use as a standalone business @@ -36,14 +38,7 @@ SQL Explorer values simplicity, intuitive use, unobtrusiveness, stability, and the principle of least surprise. SQL Explorer is inspired by any number of great query and -reporting tools out there. - -The original idea came from Stack Exchange's `Data Explorer -`_, but also owes -credit to similar projects like `Redash `_ and -`Blazer `_. - -You can read the full documentation `here `_ +reporting tools out there. See inspirations and others, below. Sql Explorer is MIT licensed, and pull requests are welcome. @@ -64,11 +59,9 @@ Sql Explorer is MIT licensed, and pull requests are welcome. .. image:: https://s3-us-west-1.amazonaws.com/django-sql-explorer/2019_snapshots.png -Alternatives +Inspirations & Similar Projects ------------ -* `django-sql-dashboard`_: provides an authenticated interface for executing read-only SQL queries directly against your PostgreSQL database, bringing a useful subset of `Datasette`_ to Django. - - -.. _django-sql-dashboard: https://github.com/simonw/django-sql-dashboard -.. _Datasette : https://datasette.io/ +* `django-sql-dashboard `_ +* Stack Exchange's `Data Explorer `_ +* `Blazer `_ diff --git a/docs/conf.py b/docs/conf.py index 723920d3..fd01f049 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -24,7 +24,7 @@ current_year = datetime.datetime.now().year project = 'Django SQL Explorer' copyright = f'2016-{current_year}, Chris Clark' -author = 'Grove Co' +author = 'Chris Clark' version = explorer.get_version(True) # The full version, including alpha/beta/rc tags. diff --git a/explorer/templates/explorer/base.html b/explorer/templates/explorer/base.html index 7e292527..40e7ea55 100644 --- a/explorer/templates/explorer/base.html +++ b/explorer/templates/explorer/base.html @@ -73,8 +73,7 @@

- Powered by django-sql-explorer from - Grove Collaborative. Rendered at {% now "SHORT_DATETIME_FORMAT" %} + Powered by django-sql-explorer. Rendered at {% now "SHORT_DATETIME_FORMAT" %}

diff --git a/setup.py b/setup.py index 58998b70..c1aad6b5 100644 --- a/setup.py +++ b/setup.py @@ -56,11 +56,11 @@ def read(fname): " view, and export the results."), license="MIT", keywords="django sql explorer reports reporting csv database query", - url="https://github.com/groveco/django-sql-explorer", + url="https://github.com/chrisclark/django-sql-explorer", project_urls={ 'Changes': 'https://django-sql-explorer.readthedocs.io/en/latest/history.html', 'Documentation': 'https://django-sql-explorer.readthedocs.io/en/latest/', - 'Issues': 'https://github.com/groveco/django-sql-explorer/issues' + 'Issues': 'https://github.com/chrisclark/django-sql-explorer/issues' }, packages=['explorer'], long_description=long_description,