Skip to content

Commit 9d9db03

Browse files
authored
Merge pull request #6873 from roed314/alpha
Initial alpha site
2 parents 225e5dc + 1430771 commit 9d9db03

131 files changed

Lines changed: 15125 additions & 1487 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ config.ini
99
*.o
1010
*.c
1111
*.swp
12+
*.aux
13+
*.log
14+
*.dvi
1215
*~
1316

1417

@@ -34,3 +37,10 @@ LMFDBinventory.log
3437
LMFDBtransactions_inv.log
3538

3639
scripts/groups/Make-images/images/*.png
40+
scripts/groups/Make-images/images/eqguts.tex
41+
scripts/groups/Make-images/prettyindex
42+
scripts/groups/Make-images/imagereloader
43+
44+
smf_lmfdb
45+
__pycache__
46+
create_input_data.py

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "smf_lmfdb"]
2+
path = smf_lmfdb
3+
url = https://github.com/assaferan/smf_lmfdb.git

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"git.ignoreLimitWarning": true
3+
}

CONTRIBUTORS.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ name: Jennifer Balakrishnan
3434
url: https://math.bu.edu/people/jbala/
3535
affil: Boston University
3636
---
37+
name: Barinder S. Banwait
38+
url: https://barinderbanwait.github.io/
39+
affil: Boston University
40+
---
3741
name: Alex Bartel
3842
url: https://www.gla.ac.uk/schools/mathematicsstatistics/staff/alexbartel/
3943
affil: University of Glasgow
@@ -210,6 +214,10 @@ name: John Jones
210214
url: https://hobbes.la.asu.edu/
211215
affil: Arizona State University
212216
---
217+
name: Eray Karabiyik
218+
url: https://math.cornell.edu/emir-eray-karabiyik
219+
affil: Cornell University
220+
---
213221
name: Jon Keating
214222
affil: University of Bristol
215223
url: https://www.maths.bris.ac.uk/people/profile/majpk

Postgres_FAQ.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ Database Interface
160160

161161
```python
162162
sage: from psycodict import db, SQL
163-
sage: cur = db._execute(SQL("SELECT label, dim, cm_discs, rm_discs from mf_newforms WHERE projective_image = %s AND cm_discs @> %s LIMIT 2"), ['D2', [-19]])
163+
sage: cur = db._execute(SQL("SELECT label, dim, cm_discs, rm_discs from mf_newforms_eis WHERE projective_image = %s AND cm_discs @> %s LIMIT 2"), ['D2', [-19]])
164164
sage: cur.rowcount
165165
2
166166
sage: list(cur)
@@ -759,7 +759,7 @@ Data Validation
759759
version of the database with verification enabled (it is not
760760
enabled by default since the verification checks are vulnerable to
761761
SQL injection and should not be available when the website is
762-
running). Then use, for example, `db.mf_newforms.verify()`.
762+
running). Then use, for example, `db.mf_newforms_eis.verify()`.
763763

764764
You can specify a particular speedtype to run
765765
(e.g. `speedtype="slow"` or `speedtype="overall"`), a specific

lmfdb/abvar/fq/__pycache__/download.cpython-310.pyc.139950799420368

Whitespace-only changes.

0 commit comments

Comments
 (0)