![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
This Misago app provides redirects for forums that were migrated from Misago 0.5 to Misago 0.6 and onwards.
This Misago app provides redirects for forums that were migrated from Misago 0.5 to Misago 0.6 and onwards.
This application exists because Misago 0.7 deprecates and removes the misago.datamover
module that originally handled the redirects from old urls to new ones as part of larger package of migrating data from Misago 0.5.
To install package, run following command when you are in virtualenv that you've used to install Misago:
pip install misago-05-redirects
This will install the redirects app in your envinroment and let you enable it in your site configuration. To do this, edit your settings.py
, find INSTALLED_APPS
in it, and append following line to it:
'misago05redirects',
Next, open your urls.py
and find line below:
url(r'^', include('misago.urls', namespace='misago')),
Now, prepend new line before it so it looks like this:
url(r'^', include('misago05redirects.urls')),
url(r'^', include('misago.urls', namespace='misago')),
It's important for new line to come before Misago's one, or Misago's url's handler will intercept and fail on calls to some urls like user lists.
This is it.
Rafał Pitoń
Copyright © 2017 Rafał Pitoń <http://github.com/ralfp>
_
This program comes with ABSOLUTELY NO WARRANTY.
This is free software and you are welcome to modify and redistribute it under the conditions described in the license. For the complete license, refer to LICENSE.rst
FAQs
This Misago app provides redirects for forums that were migrated from Misago 0.5 to Misago 0.6 and onwards.
We found that misago-05-redirects demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.