Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
0f86972
Information functions support
mmatera Jun 6, 2019
65df9d2
fixing Information
mmatera Jan 4, 2017
c13fabf
Merge branch 'information'
mmatera Jun 6, 2019
0680f1f
Merge branch 'master' of https://github.com/mathics/Mathics
mmatera Aug 26, 2020
23a8fa3
Merge branch 'master' into master
mmatera Sep 4, 2020
a3e0a76
merging upstream master
mmatera Sep 8, 2020
51e3f43
merging upstream master
mmatera Sep 8, 2020
0d014b1
Merge branch 'master' of https://github.com/mathics/Mathics
mmatera Sep 12, 2020
5ac1881
Merge branch 'patch-4' of https://github.com/mmatera/Mathics
mmatera Sep 12, 2020
1e95737
Merge branch 'master' of https://github.com/mathics/Mathics
mmatera Sep 17, 2020
102bd1a
Merge branch 'master' of https://github.com/mathics/Mathics
mmatera Sep 17, 2020
2bd1564
fixing migration to 2.2
mmatera Sep 29, 2020
8557b3f
backward compatibility in the error_404_view handler
mmatera Sep 29, 2020
9064635
Merge https://github.com/mmatera/Mathics into fixdiango2.2
GarkGarcia Sep 29, 2020
e66162a
Merge branch 'fixdiango2.2' of https://github.com/mmatera/Mathics int…
GarkGarcia Sep 29, 2020
6d396d9
Replaced MIDDLEWARE_CLASSES with MIDDLEWARE
GarkGarcia Sep 30, 2020
f995b16
adding basic tests for django
mmatera Oct 1, 2020
45b0198
adding test django to travis
mmatera Oct 1, 2020
0a644d1
fix travis
mmatera Oct 1, 2020
6a004b6
fix
mmatera Oct 1, 2020
b515071
rocky fixes
mmatera Oct 1, 2020
67da6d3
Merge branch 'master' of https://github.com/mathics/Mathics
mmatera Oct 1, 2020
d6e7313
Merge branch 'qtime' of https://github.com/mathics/Mathics
mmatera Oct 1, 2020
9b2ed88
merge fixdjango2.2
mmatera Oct 1, 2020
3e43836
merge upstream
mmatera Dec 24, 2020
e27f5d7
merge
mmatera Jan 2, 2021
219769c
Merge branch 'master' of https://github.com/mathics/Mathics
mmatera Jan 8, 2021
91dc09c
Merge branch 'master' of https://github.com/mathics/Mathics
mmatera Jan 9, 2021
d7de22f
including fixes from celltotexfix
mmatera Jan 9, 2021
d2906c0
fix
mmatera Jan 9, 2021
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
Prev Previous commit
Next Next commit
fixing migration to 2.2
  • Loading branch information
mmatera committed Sep 29, 2020
commit 2bd1564b893d2eaa3a016ec1c2e1bcc9749ed541
2 changes: 1 addition & 1 deletion mathics/doc/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import unicodedata

from django.template.defaultfilters import register, stringfilter
from django.utils.functional import allow_lazy
from django.utils.functional import keep_lazy as allow_lazy
from django.utils.safestring import mark_safe


Expand Down
2 changes: 1 addition & 1 deletion mathics/web/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class Query(models.Model):
class Worksheet(models.Model):
user = models.ForeignKey(User,
related_name='worksheets',
null=True)
null=True, on_delete=models.CASCADE)

name = models.CharField(max_length=30)
content = models.TextField()
Expand Down
2 changes: 1 addition & 1 deletion mathics/web/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def main_view(request):
return render(request, 'main.html', context)


def error_404_view(request):
def error_404_view(request, exception):
t = loader.get_template('404.html')
return HttpResponseNotFound(t.render(RequestContext(request, {
'title': 'Page not found',
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
# General Requirements
INSTALL_REQUIRES += [
"sympy>=1.6, < 1.7",
"django >= 1.8, < 1.12",
"django >= 1.8",
"mpmath>=1.1.0",
"numpy",
"palettable", # For bar charts, and portable, no-proprietary color palletes
Expand Down