SciPost Code Repository

Skip to content
Snippets Groups Projects
Commit d0604b36 authored by Jean-Sébastien Caux's avatar Jean-Sébastien Caux
Browse files

Merge branch 'dev_JSC' into development

parents 95a54e2e 92b67a1d
No related branches found
No related tags found
No related merge requests found
...@@ -4,13 +4,17 @@ from .constants import STATUS_VETTED ...@@ -4,13 +4,17 @@ from .constants import STATUS_VETTED
from .models import Comment from .models import Comment
def comment_opening(comment):
return comment.comment_text[:30] + '...'
def comment_is_vetted(comment): def comment_is_vetted(comment):
'''Check if comment is vetted.''' '''Check if comment is vetted.'''
return comment.status is STATUS_VETTED return comment.status is STATUS_VETTED
class CommentAdmin(admin.ModelAdmin): class CommentAdmin(admin.ModelAdmin):
list_display = ('comment_text', 'author', 'date_submitted', comment_is_vetted) list_display = (comment_opening, 'author', 'date_submitted', comment_is_vetted)
date_hierarchy = 'date_submitted' date_hierarchy = 'date_submitted'
list_filter = ('status',) list_filter = ('status',)
comment_is_vetted.boolean = True comment_is_vetted.boolean = True
......
...@@ -37,7 +37,7 @@ Source retrieval and folder preparation ...@@ -37,7 +37,7 @@ Source retrieval and folder preparation
#. Copy the paper’s sources one level down (so from ``####.#####v#`` to #. Copy the paper’s sources one level down (so from ``####.#####v#`` to
the current directory). BE CAREFUL: if the authors have included any of the current directory). BE CAREFUL: if the authors have included any of
the SciPost style files (``SciPost.cls``, ``SciPost_bibstyle.bst``), DO NOT the SciPost style files (``SciPost.cls``, ``SciPost_bibstyle.bst``), DO NOT
copy those down. You can skip this step if the previous step immediately led copy those down. You can skip this step if the previous step immediately led
to a ``.tex`` file. to a ``.tex`` file.
#. Copy the files in #. Copy the files in
``[Journal full name]/v##_production/FILES_TO_COPY_IN_PAPER_DIR`` ``[Journal full name]/v##_production/FILES_TO_COPY_IN_PAPER_DIR``
...@@ -216,7 +216,7 @@ Step-by-step procedure ...@@ -216,7 +216,7 @@ Step-by-step procedure
If a single horizontal line is pushed to the next page, correct by If a single horizontal line is pushed to the next page, correct by
playing with negatime ``\vspace``. playing with negatime ``\vspace``.
#. TODO: COPYRIGHT #. TODO: COPYRIGHT
...@@ -400,8 +400,8 @@ References formatting ...@@ -400,8 +400,8 @@ References formatting
If not, use the format ``\href{https://arxiv.org/abs/####.#####}{arXiv:####.#####}``, If not, use the format ``\href{https://arxiv.org/abs/####.#####}{arXiv:####.#####}``,
and remove any ``(YEAR)``. and remove any ``(YEAR)``.
\J. Stat. Mech. is annoying (volume number is year). Manually remove volume nr for \J. Stat. Mech. and JHEP are annoying (because the volume number is the year).
these, so the format becomes ``A. Bee, \emp{Bee's nice paper}, J. Stat. Mech.: Th. Exp. [P,L]##### (20##), \doi{10...}.`` Manually remove volume nr for these, so the format becomes ``A. Bee, \emp{Bee's nice paper}, J. Stat. Mech.: Th. Exp. [P,L]##### (20##), \doi{10...}.``
\J. Phys. A is also annoying. Up to and including volume 39 (2006), it's \J. Phys. A is also annoying. Up to and including volume 39 (2006), it's
\J. Phys. A: Math. Gen. Afterwards, volume 40 (2007) onwards, it's \J. Phys. A: Math. Gen. Afterwards, volume 40 (2007) onwards, it's
...@@ -413,7 +413,7 @@ References formatting ...@@ -413,7 +413,7 @@ References formatting
Check that all DOIs work. Remove the ``\meta`` at the end of the bibitem Check that all DOIs work. Remove the ``\meta`` at the end of the bibitem
if it is present. if it is present.
Layout verification Layout verification
~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment