Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

merge master in data-dev #229

Merged
merged 5 commits into from
Jun 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{% extends "page.html" %}

{% block subtitle %}{{ _('Citation Guide') }}{% endblock %}

{% block breadcrumb_content %}
<li class="active"><a href="{{ url_for('auscope_theme.citation_guide') }}" target="_blank">{{ _('Citation Guide') }}</a></li>
{% endblock %}

{% block primary %}
<article class="module" role="main">
<div class="module-content">
{% block about %}
<h1 class="page-heading">{{ _('Referencing and Citing the AuScope Data Repository and Its Datasets') }}</h1>
<p>Please use the following format to acknowledge both the AuScope Data Repository and each individual dataset in any academic literature reports etc.</p>

<h3>Citing Repository</h3>
<ul>
<li><strong>References:</strong> Devaraju A., Woodman S., Taherifar N., Motevalli Soumehsaraei B., Fazio V., Bradley S., Wyborn L., Klump J., Farrington R. (2024). AuScope Data Repository. <a href="https://www.re3data.org/repository/r3d100014363" target="_blank">https://www.re3data.org/repository/r3d100014363</a></li>
<li><strong>In-text citation:</strong> “XX data from the AuScope Data Repository (Devaraju et al. 2024)…”</li>
<li><strong>Acknowledgements:</strong> Data was obtained from the AuScope Data Repository (<a href="https://repository.data.auscope.org.au/" target="_blank">https://repository.data.auscope.org.au/</a>) funded by AuScope and supported by the Australian Government through the National Collaborative Research Infrastructure Strategy (NCRIS).</li>
</ul>

<h3>Citing Dataset</h3>
<p>The repository will automatically generate citations for each dataset it publishes using the Datacite Citation format. The citation is located on the metadata page of each dataset.</p>
<ul>
<li><strong>References:</strong> Graeme Beardsmore, Joe Hamad (2024): Gippsland and Murray Basin Fiber Optic Distributed Temperature Sensing Data. AuScope. (Dataset). <a href="https://doi.org/10.82669/meq3cwju" target="_blank">https://doi.org/10.82669/meq3cwju</a></li>
<li><strong>In-text citation:</strong> “The data showed the temperature range (Beardsmore et al. 2024)…”</li>
<li><strong>Data Availability Statement:</strong> Datasets used in this study are available via the AuScope Data Repository (<a href="https://repository.data.auscope.org.au/" target="_blank">https://repository.data.auscope.org.au/</a>). The datasets used are (Beardsmore et al. 2024); (Smith and Jones 2020); …</li>
</ul>

<p class="citation-guide-note"><em>*Note: The DOI (10.82669/meq3cwju) above is shown for demo only; therefore it is not actionable.</em></p>
{% endblock %}
</div>
</article>
{% endblock %}

{% block secondary %}{% endblock %}
3 changes: 3 additions & 0 deletions ckan/src/ckanext-auscope-theme/ckanext/auscope_theme/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ def fetch_epsg():
def declaration():
return render_template('declaration/declaration.html')

@auscope_theme.route('/citation-guide', methods=['GET'])
def citation_guide():
return render_template('citation-guide/citation-guide.html')

def get_blueprints():
return [auscope_theme]
5 changes: 5 additions & 0 deletions ckan/src/shared/public/shared_style.css
Original file line number Diff line number Diff line change
Expand Up @@ -818,3 +818,8 @@ body {
word-wrap: break-word;
}

.citation-guide-note em {
font-size: 0.85rem !important;
line-height: 1.4 !important;
color: #7e7caa !important;
}
4 changes: 2 additions & 2 deletions ckan/src/shared/templates/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ <h5 class="modal-title" id="aafLoginModalLabel">Request Account</h5>
</a>
<ul class="dropdown-menu">
<li><a href="http://hdl.handle.net/102.100.100/635402?index=1" target="_blank">{{ _('User Manual') }}</a></li>
<li><a href="/declaration" target="_blank">{{ _('Data Deposit Guidelines') }}</a></li>
<li><a href="https://csiroau.sharepoint.com/:w:/r/sites/AuScopePortalRefresh/Shared%20Documents/General/auscope_data_repository/publications/Referencing_Citing_AuScopeRepository.docx?d=we2d6e4a099c74351b93e3a3a18ae001b&csf=1&web=1&e=m9DoGb" target="_blank">{{ _('Citation Guide') }}</a></li>
<li><a href="https://doi.org/10.25919/0m8k-rq54" target="_blank">{{ _('Data Deposit Guidelines') }}</a></li>
<li><a href="/citation-guide" target="_blank">{{ _('Citation Guide') }}</a></li>
</ul>
</li>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ <h4 class="mb-0">
</button>
</h4>
</div>
<div id="collapse{{ loop.index }}" class="collapse {{ 'show' if loop.first else '' }}"
<div id="collapse{{ loop.index }}" class="collapse {{ 'show' if loop.index<=2 else '' }}"
aria-labelledby="heading{{ loop.index }}">
<div class="card-body">
{%- for field in group_fields %}
Expand Down
Loading