Skip to content

Commit

Permalink
Browse v0.1 (#40)
Browse files Browse the repository at this point in the history
* Add ancillary file checks and display logic
* Support links to external references and citations
* Add sqlacodegen and mysqlclient to Pipfile
* Add DBLP database models
* Add DBLP test data
* Add DBLP author search function
* Add controller and display logic for DBLP section
* Add db override option to DBLP check
* Remove extra bookmarking section
* Adds clickthrough.py
* Adds simple clickthrough hash checking functions. (ARXIVNG-598)
* Adds click through controller and supporting code (ARXIVNG-598)
* Adds bookmarking clickthrough links to abs page (ARIXVNG-598)
* Create UI filter for show email hash
* Truncate long author list on abs pages.
* Fixing how author links are counted for truncation
* Changed templates to use url_for()
* Author search links with archives
* Adding flask app tests for canonical category
* adding minimum version requirement for arxiv-base
* Add DOI filter
* tightened up and optimized dataclass usage slightly
* Adding click through tracking for DOIs
* Adding ability to do different comparisons for abs pages.
* Skipping Digg in extra secton.
* set response headers (ARXIVNG-1040)
* add check for latest trackback ping date
* add logic for not modified (304) case
* some improvements for unicode->ascii handling for lev and improved error messages
* Ensure correct canonical / non-canonical category display ARXIVNG-605 (#27)
* Add tex_to_utf filter that wraps tex2utf; apply filter to title field
* Add generic 400 page for browse; use in cases where /ct hash is bad
* Adding function to get canonical URL of a paper
* Fixes URL of sciencewise link
* Handle case where submitter name is empty
* Change utf8 to latin-1 in example email address.
* Change default .abs file encoding to latin-1 on file open
* Add missing display logic for proxy
* un-html-escaping dblp author
* Inspire links for secondary_categories too.
* In urlize filter: Removing <a> for hostnames, adding for FTP
* Changing arxiv_urlize to not make <a> tags for hostnames www.example.org
* Changing arxiv_urlize to make <a> tags for FTP urls.
* Add support for arXiv Labs Bibliographic Explore project with config option.
* Use requested identifier in html title, breadcrumbs and download links
* Adding URLize to author links.
* Allow + character in URLized URLs
* Update URLize to supports ports, commas in URLs.
* Forbid comma and several other characters at end of URLs.
* Allow URL anchors to have / in urlize
* Add comma separators to file size
* Add feedback collector button
* Change "does not exist" language to "not found" in 404 responses
* Add decorator for handling operational database errors.
* Handle sqlalchemy OperationalError, DBAPI, NoResultFound exceptions
* Add BROWSE_DISABLE_DATABASE config to short-circuit queries
* Add BROWSE_PIWIK_ENABLED config.
  • Loading branch information
mhl10 committed Oct 22, 2018
1 parent 42e4e8b commit 7f7f7e1
Show file tree
Hide file tree
Showing 1,244 changed files with 83,653 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.db binary
124 changes: 124 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,124 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python

build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/

# Translations
*.mo
*.pot

# Django stuff:
*.log
.static_storage/
.media/

local_settings.py

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Jupyter Notebook
.ipynb_checkpoints

# pyenv
.python-version

# celery beat schedule file
celerybeat-schedule

# SageMath parsed files
*.sage.py


# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/


# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
mypy_test_errors.txt

# IDE/editor files
.idea
arxiv-browse.iml
.vscode
*~

# DB connection, etc
private_vars.sh

#misc
.fuse_hidden*
.pycheckers
.pyre
legacy_comparison.org
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "sqlalchemy-stubs"]
path = sqlalchemy-stubs
url = https://github.com/JelleZijlstra/sqlalchemy-stubs.git
Loading

1 comment on commit 7f7f7e1

@zailmz66
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Leave a comment 7f7f7e1

Please sign in to comment.