Skip to content

Commit

Permalink
Merge pull request #228 from lsst/tickets/DM-41781
Browse files Browse the repository at this point in the history
DM-41781: Update author metadata in technotes
  • Loading branch information
jonathansick authored Nov 28, 2023
2 parents 763d8a6 + de58f50 commit 3ca291e
Show file tree
Hide file tree
Showing 10 changed files with 96 additions and 36 deletions.
11 changes: 10 additions & 1 deletion project_templates/technote_md_early_adopter/SConscript
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,14 @@ env = Environment(BUILDERS={"Cookiecutter": cookiecutter_project_builder})
env.Cookiecutter(
AlwaysBuild(Dir("TESTN-000")),
"cookiecutter.json",
cookiecutter_context={"series": "TESTN"},
cookiecutter_context={
"series": "TESTN",
"first_author_given": "First",
"first_author_family": "Author",
"first_author_orcid": "https://orcid.org/0000-0003-3001-676X",
"first_author_author_id": "test",
"first_author_affil_name": "Rubin Observatory",
"first_author_affil_internal_id": "RubinObs",
"first_author_affil_address": ("950 N. Cherry Ave., Tucson, AZ 85719, USA",),
},
)
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"first_author": "First Last",
"author_id": "ID from lsst-texmf/etc/authordb.yaml",
"series": [
"DMTN",
"ITTN",
Expand Down Expand Up @@ -40,6 +40,12 @@
"University of Illinois Board of Trustees",
"University of Washington"
],
"first_author_given": "",
"first_author_family": "",
"first_author_orcid": "",
"first_author_affil_name": "",
"first_author_affil_internal_id": "",
"first_author_affil_address": "",
"_copy_without_render": [
"*.bib"
],
Expand Down
5 changes: 5 additions & 0 deletions project_templates/technote_md_early_adopter/templatekit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ dialog_fields:
hint: "You can use Markdown here."
component: "textarea"
placeholder: ""
- key: "author_id"
label: "First author's ID"
hint: "ID is a key from lsst-texmf's authordb.yaml (http://ls.st/uyr)"
component: "text"
placeholder: ""
- label: "Series"
component: "select"
preset_options:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,19 @@ series_id = "TESTN"
canonical_url = "https://testn-000.lsst.io"
github_url = "https://github.com/lsst/testn-000"
github_default_branch = "main"
date_created = "2023-11-03T14:04:53Z"

[[technote.authors]]
name = { name = "First Last" }
# orcid = "https://orcid.org/..."
# affiliations = [
# { name = "Rubin Observatory", ror = "https://ror.org/048g3cy84" }
# ]
date_created = 2023-11-28T18:49:47Z
organization.name = "Vera C. Rubin Observatory"
organization.ror = "https://ror.org/048g3cy84"

[technote.status]
state = "draft"

[[technote.authors]]
name.given "First"
name.family "Author"
orcid = "https://orcid.org/0000-0003-3001-676X"
internal_id = "ID from lsst-texmf/etc/authordb.yaml"
[[technote.authors.affiliations]]
name = "Rubin Observatory"
internal_id = "RubinObs"
address = "('950 N. Cherry Ave., Tucson, AZ 85719, USA',)"
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,19 @@ series_id = "{{ cookiecutter.series | escape_yaml_doublequoted }}"
canonical_url = "{{ cookiecutter.url | escape_yaml_doublequoted }}"
github_url = "https://github.com/{{ cookiecutter.github_namespace | escape_yaml_doublequoted }}"
github_default_branch = "main"
date_created = "{% now 'utc', '%Y-%m-%dT%H:%M:%SZ' %}"

[[technote.authors]]
name = { name = "{{ cookiecutter.first_author }}" }
# orcid = "https://orcid.org/..."
# affiliations = [
# { name = "Rubin Observatory", ror = "https://ror.org/048g3cy84" }
# ]
date_created = {% now 'utc', '%Y-%m-%dT%H:%M:%SZ' %}
organization.name = "Vera C. Rubin Observatory"
organization.ror = "https://ror.org/048g3cy84"

[technote.status]
state = "draft"

[[technote.authors]]
name.given "{{ cookiecutter.first_author_given }}"
name.family "{{ cookiecutter.first_author_family }}"
orcid = "{{ cookiecutter.first_author_orcid }}"
internal_id = "{{ cookiecutter.author_id }}"
[[technote.authors.affiliations]]
name = "{{ cookiecutter.first_author_affil_name }}"
internal_id = "{{ cookiecutter.first_author_affil_internal_id }}"
address = "{{ cookiecutter.first_author_affil_address }}"
11 changes: 10 additions & 1 deletion project_templates/technote_rst_early_adopter/SConscript
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,14 @@ env = Environment(BUILDERS={"Cookiecutter": cookiecutter_project_builder})
env.Cookiecutter(
AlwaysBuild(Dir("TESTN-000")),
"cookiecutter.json",
cookiecutter_context={"series": "TESTN"},
cookiecutter_context={
"series": "TESTN",
"first_author_given": "First",
"first_author_family": "Author",
"first_author_orcid": "https://orcid.org/0000-0003-3001-676X",
"first_author_author_id": "test",
"first_author_affil_name": "Rubin Observatory",
"first_author_affil_internal_id": "RubinObs",
"first_author_affil_address": ("950 N. Cherry Ave., Tucson, AZ 85719, USA",),
},
)
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"first_author": "First Last",
"author_id": "ID from lsst-texmf/etc/authordb.yaml",
"series": [
"DMTN",
"ITTN",
Expand Down Expand Up @@ -40,6 +40,12 @@
"University of Illinois Board of Trustees",
"University of Washington"
],
"first_author_given": "",
"first_author_family": "",
"first_author_orcid": "",
"first_author_affil_name": "",
"first_author_affil_internal_id": "",
"first_author_affil_address": "",
"_copy_without_render": [
"*.bib"
],
Expand Down
5 changes: 5 additions & 0 deletions project_templates/technote_rst_early_adopter/templatekit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ dialog_fields:
hint: "You can use reStructuredText here."
component: "textarea"
placeholder: ""
- key: "author_id"
label: "First author's ID"
hint: "ID is a key from lsst-texmf's authordb.yaml (http://ls.st/uyr)"
component: "text"
placeholder: ""
- label: "Series"
component: "select"
preset_options:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,19 @@ series_id = "TESTN"
canonical_url = "https://testn-000.lsst.io"
github_url = "https://github.com/lsst/testn-000"
github_default_branch = "main"
date_created = "2023-11-03T14:04:53Z"

[[technote.authors]]
name = { name = "First Last" }
# orcid = "https://orcid.org/..."
# affiliations = [
# { name = "Rubin Observatory", ror = "https://ror.org/048g3cy84" }
# ]
date_created = 2023-11-28T18:49:47Z
organization.name = "Vera C. Rubin Observatory"
organization.ror = "https://ror.org/048g3cy84"

[technote.status]
state = "draft"

[[technote.authors]]
name.given "First"
name.family "Author"
orcid = "https://orcid.org/0000-0003-3001-676X"
internal_id = "ID from lsst-texmf/etc/authordb.yaml"
[[technote.authors.affiliations]]
name = "Rubin Observatory"
internal_id = "RubinObs"
address = "('950 N. Cherry Ave., Tucson, AZ 85719, USA',)"
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,19 @@ series_id = "{{ cookiecutter.series | escape_yaml_doublequoted }}"
canonical_url = "{{ cookiecutter.url | escape_yaml_doublequoted }}"
github_url = "https://github.com/{{ cookiecutter.github_namespace | escape_yaml_doublequoted }}"
github_default_branch = "main"
date_created = "{% now 'utc', '%Y-%m-%dT%H:%M:%SZ' %}"

[[technote.authors]]
name = { name = "{{ cookiecutter.first_author }}" }
# orcid = "https://orcid.org/..."
# affiliations = [
# { name = "Rubin Observatory", ror = "https://ror.org/048g3cy84" }
# ]
date_created = {% now 'utc', '%Y-%m-%dT%H:%M:%SZ' %}
organization.name = "Vera C. Rubin Observatory"
organization.ror = "https://ror.org/048g3cy84"

[technote.status]
state = "draft"

[[technote.authors]]
name.given "{{ cookiecutter.first_author_given }}"
name.family "{{ cookiecutter.first_author_family }}"
orcid = "{{ cookiecutter.first_author_orcid }}"
internal_id = "{{ cookiecutter.author_id }}"
[[technote.authors.affiliations]]
name = "{{ cookiecutter.first_author_affil_name }}"
internal_id = "{{ cookiecutter.first_author_affil_internal_id }}"
address = "{{ cookiecutter.first_author_affil_address }}"

0 comments on commit 3ca291e

Please sign in to comment.