Skip to content

Move references from posativ.org/isso/ to isso-comments.de #897

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

Merged
merged 3 commits into from
May 29, 2022
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 .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!-- The following items are listed to help you get your issue resolved quickly -->
## Checklist
- [ ] I am running the latest version. Installing Isso from GitHub from the `master` branch does not fix my issue
- [ ] I have checked the [troubleshooting guide](https://posativ.org/isso/docs/troubleshooting/)
- [ ] I have checked the [troubleshooting guide](https://isso-comments.de/docs/guides/troubleshooting/)
- [ ] I have searched the [open issues](https://github.com/posativ/isso/issues), but my issue has not already been reported

## What is not working?
Expand Down
1 change: 0 additions & 1 deletion CONTRIBUTING.rst

This file was deleted.

1 change: 1 addition & 0 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
See `Docs: Contribute <https://isso-comments.de/docs/contributing/>`_.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ Python and JavaScript. It aims to be a drop-in replacement for
- **Configurable JS client**
Embed a single JS file, 65kB (20kB gzipped) and you are done.

See **[posativ.org/isso](http://posativ.org/isso/)** for a **live demo**, more
details and [documentation](https://posativ.org/isso/docs/).
See **[isso-comments.de](https://isso-comments.de/)** for a **live demo**, more
details and [documentation](https://isso-comments.de/docs/).

## Screenshot

Expand All @@ -36,22 +36,22 @@ Install Isso from [PyPi](https://pypi.python.org/pypi/isso/):
pip install isso
```

Then, follow the [Quickstart](https://posativ.org/isso/docs/quickstart/) guide.
Then, follow the [Quickstart](https://isso-comments.de/docs/guides/quickstart/) guide.

If you're stuck, follow the [Install guide](https://posativ.org/isso/docs/install/),
see [Troubleshooting](https://posativ.org/isso/docs/troubleshooting/) and browse
the [the full documentation](https://posativ.org/isso/docs/).
If you're stuck, follow the [Install guide](https://isso-comments.de/docs/reference/installation/),
see [Troubleshooting](https://isso-comments.de/docs/guides/troubleshooting/) and browse
the [the full documentation](https://isso-comments.de/docs/).

## Contributing
- Pull requests are very much welcome! These might be
[good first issues](https://github.com/posativ/isso/labels/good-first-issue)
- See [Ways to Contribute](https://posativ.org/isso/contribute/)
- [Translate](https://posativ.org/isso/contribute/#translations)
- See [Ways to Contribute](https://isso-comments.de/docs/contributing/)
- [Translate](https://isso-comments.de/docs/contributing/#translations)

### Development
<!-- TODO also mention "Development & Testing" section once new docs uploaded -->
Refer to the docs for
[Installing from Source](https://posativ.org/isso/docs/install/#install-from-source).
[Installing from Source](https://isso-comments.de/docs/reference/installation/#install-from-source).

### Help
- Join `#isso` via [Matrix](https://matrix.to/#/#isso:libera.chat) or via IRC on
Expand Down
2 changes: 1 addition & 1 deletion apidoc/header.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ These API docs are automatically generated by [apiDoc][apidoc] from
You can select previous versions from a dropdown on the upper right of the
page.

For more information about Isso, visit **[posativ.org/isso](https://posativ.org/isso)**
For more information about Isso, visit **[isso-comments.de](https://isso-comments.de)**
or check out the source at **[GitHub](https://github.com/posativ/isso)**.

[apiDoc]: https://apidocjs.com/
Expand Down
4 changes: 2 additions & 2 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{%- extends "layout.html" %}
{% set title = "Isso – a commenting server similar to Disqus" %}
{% block extrahead %}
<script data-isso="//posativ.org/isso/api/"
src="//posativ.org/isso/api/js/embed.min.js"></script>
<script data-isso="//comments.isso-comments.de/"
src="//comments.isso-comments.de/js/embed.min.js"></script>
{% endblock %}
{% block header %}
<div class="index">
Expand Down
2 changes: 1 addition & 1 deletion isso/utils/http.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class curl(object):
"""

headers = {
"User-Agent": "Isso/{0} (+https://posativ.org/isso)".format(dist.version)
"User-Agent": "Isso/{0} (+https://isso-comments.de)".format(dist.version)
}

def __init__(self, method, host, path, timeout=3):
Expand Down
6 changes: 3 additions & 3 deletions isso/views/comments.py
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ def create_cookie(self, **kwargs):
@apiName view
@apiVersion 0.12.6
@apiDescription
View an existing comment, for the purpose of editing. Editing a comment is only possible for a short period of time (15min by default) after it was created and only if the requestor has a valid cookie for it. See the [Isso server documentation](https://posativ.org/isso/docs/configuration/server) for details.
View an existing comment, for the purpose of editing. Editing a comment is only possible for a short period of time (15min by default) after it was created and only if the requestor has a valid cookie for it. See the [Isso server documentation](https://isso-comments.de/docs/reference/server-config/) for details.

@apiParam {Number} id
The id of the comment to view.
Expand Down Expand Up @@ -435,7 +435,7 @@ def view(self, environ, request, id):
@apiName edit
@apiVersion 0.12.6
@apiDescription
Edit an existing comment. Editing a comment is only possible for a short period of time (15min by default) after it was created and only if the requestor has a valid cookie for it. See the [Isso server documentation](https://posativ.org/isso/docs/configuration/server) for details. Editing a comment will set a new edit cookie in the response.
Edit an existing comment. Editing a comment is only possible for a short period of time (15min by default) after it was created and only if the requestor has a valid cookie for it. See the [Isso server documentation](https://isso-comments.de/docs/reference/server-config/) for details. Editing a comment will set a new edit cookie in the response.
@apiUse csrf

@apiParam {Number} id
Expand Down Expand Up @@ -517,7 +517,7 @@ def edit(self, environ, request, id):
@apiName delete
@apiVersion 0.12.6
@apiDescription
Delete an existing comment. Deleting a comment is only possible for a short period of time (15min by default) after it was created and only if the requestor has a valid cookie for it. See the [Isso server documentation](https://posativ.org/isso/docs/configuration/server) for details.
Delete an existing comment. Deleting a comment is only possible for a short period of time (15min by default) after it was created and only if the requestor has a valid cookie for it. See the [Isso server documentation](https://isso-comments.de/docs/reference/server-config/) for details.
Returns either `null` or a comment with an empty text value when the comment is still referenced by other comments.
@apiUse csrf

Expand Down