Skip to content

Commit

Permalink
feat: Improve related publications
Browse files Browse the repository at this point in the history
  • Loading branch information
drorganvidez committed Oct 15, 2024
1 parent 55c876b commit af44e9b
Show file tree
Hide file tree
Showing 3 changed files with 99 additions and 20 deletions.
41 changes: 34 additions & 7 deletions app/modules/dataset/templates/dataset/view_dataset.html
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ <h1><b>{{ dataset.ds_meta_data.title }}</b></h1>

<div class="card-body">

<h3> uvlhub related publication </h3>
<h2>Related publications </h3>

David Romero-Organvidez, José A. Galindo, Chico Sundermann, Jose-Miguel Horcas, David Benavides,
<i>UVLHub: A feature model data repository using UVL and open science principles</i>,
Expand All @@ -224,30 +224,57 @@ <h3> uvlhub related publication </h3>
ISSN 0164-1212,
<a href="https://doi.org/10.1016/j.jss.2024.112150" target="_blank">https://doi.org/10.1016/j.jss.2024.112150</a>

</div>
<br>

<button onclick="copyText('bibtex_cite_uvlhub')" class="btn btn-light btn-sm" style="border-radius: 5px;">
<i data-feather="clipboard" class="center-button-icon"></i>
Copy in BibTex
</button>

<button onclick="copyText('ris_cite_uvlhub')" class="btn btn-light btn-sm" style="border-radius: 5px;">
<i data-feather="clipboard" class="center-button-icon"></i>
Copy in RIS
</button>

<button onclick="copyText('apa_cite_uvlhub')" class="btn btn-light btn-sm" style="border-radius: 5px;">
<i data-feather="clipboard" class="center-button-icon"></i>
Copy in APA
</button>

<button onclick="copyText('text_cite_uvlhub')" class="btn btn-light btn-sm" style="border-radius: 5px;">
<i data-feather="clipboard" class="center-button-icon"></i>
Copy in text
</button>

<br><br>

<div class="card-body mt-0 pt-0">
David Benavides, Chico Sundermann, Kevin Feichtinger, José A. Galindo, Rick Rabiser and Thomas Thüm,
<i>Uvl: Feature Modelling with the Universal Variability Language.</i>
<a href="http://dx.doi.org/10.2139/ssrn.4764657" target="_blank">http://dx.doi.org/10.2139/ssrn.4764657</a>

<button onclick="copyText('bibtex_cite')" class="btn btn-light btn-sm" style="border-radius: 5px;">
<br>

<button onclick="copyText('bibtex_cite_uvl')" class="btn btn-light btn-sm" style="border-radius: 5px;">
<i data-feather="clipboard" class="center-button-icon"></i>
Copy in BibTex
</button>

<button onclick="copyText('ris_cite')" class="btn btn-light btn-sm" style="border-radius: 5px;">
<button onclick="copyText('ris_cite_uvl')" class="btn btn-light btn-sm" style="border-radius: 5px;">
<i data-feather="clipboard" class="center-button-icon"></i>
Copy in RIS
</button>

<button onclick="copyText('apa_cite')" class="btn btn-light btn-sm" style="border-radius: 5px;">
<button onclick="copyText('apa_cite_uvl')" class="btn btn-light btn-sm" style="border-radius: 5px;">
<i data-feather="clipboard" class="center-button-icon"></i>
Copy in APA
</button>

<button onclick="copyText('text_cite')" class="btn btn-light btn-sm" style="border-radius: 5px;">
<button onclick="copyText('text_cite_uvl')" class="btn btn-light btn-sm" style="border-radius: 5px;">
<i data-feather="clipboard" class="center-button-icon"></i>
Copy in text
</button>


</div>

</div>
Expand Down
33 changes: 24 additions & 9 deletions app/modules/public/templates/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -162,9 +162,7 @@ <h4 class="h4" class="stats-color">

<div class="card-body">



<h2> <b>uvlhub related publication</b> </h2>
<h2> <b>Related publications</b> </h2>

David Romero-Organvidez, José A. Galindo, Chico Sundermann, Jose-Miguel Horcas, David Benavides.
<i>UVLHub: A feature model data repository using UVL and open science principles</i>,
Expand All @@ -173,20 +171,37 @@ <h2> <b>uvlhub related publication</b> </h2>
112150,
ISSN 0164-1212,
<a href="https://doi.org/10.1016/j.jss.2024.112150" target="_blank">https://doi.org/10.1016/j.jss.2024.112150</a>

<br>

<button onclick="copyText('bibtex_cite_uvlhub')" class="btn btn-light" style="border-radius: 5px; margin-right: 10px">
<i data-feather="clipboard" class="center-button-icon"></i>
Copy in BibTex
</button>

</div>

<div class="card-body mt-0 pt-0">

<button onclick="copyText('bibtex_cite')" class="btn btn-light" style="border-radius: 5px; margin-right: 10px">
<button onclick="copyText('ris_cite_uvlhub')" class="btn btn-light" style="border-radius: 5px;">
<i data-feather="clipboard" class="center-button-icon"></i>
Copy in RIS
</button>

<br><br>

David Benavides, Chico Sundermann, Kevin Feichtinger, José A. Galindo, Rick Rabiser and Thomas Thüm,
<i>Uvl: Feature Modelling with the Universal Variability Language.</i>
<a href="http://dx.doi.org/10.2139/ssrn.4764657" target="_blank">http://dx.doi.org/10.2139/ssrn.4764657</a>

<br>

<button onclick="copyText('bibtex_cite_uvl')" class="btn btn-light" style="border-radius: 5px; margin-right: 10px">
<i data-feather="clipboard" class="center-button-icon"></i>
Copy in BibTex
</button>

<button onclick="copyText('ris_cite')" class="btn btn-light" style="border-radius: 5px;">
<button onclick="copyText('ris_cite_uvl')" class="btn btn-light" style="border-radius: 5px;">
<i data-feather="clipboard" class="center-button-icon"></i>
Copy in RIS
</button>


</div>

Expand Down
45 changes: 41 additions & 4 deletions app/templates/base_template.html
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@
</div>
</div>

<pre id="bibtex_cite" style="display: none">
<pre id="bibtex_cite_uvlhub" style="display: none">
@article{romero2024_uvlhub_open_science,
title = {UVLHub: A feature model data repository using UVL and open science principles},
journal = {Journal of Systems and Software},
Expand All @@ -246,7 +246,7 @@
}
</pre>

<pre id="ris_cite" style="display: none">
<pre id="ris_cite_uvlhub" style="display: none">
TY - JOUR
T1 - UVLHub: A feature model data repository using UVL and open science principles
AU - Romero-Organvidez, David
Expand All @@ -270,7 +270,7 @@
ER -
</pre>

<pre id="text_cite" style="display: none;">
<pre id="text_cite_uvlhub" style="display: none;">
David Romero-Organvidez, José A. Galindo, Chico Sundermann, Jose-Miguel Horcas, David Benavides,
UVLHub: A feature model data repository using UVL and open science principles,
Journal of Systems and Software,
Expand All @@ -283,10 +283,47 @@
Keywords: Feature models; Software product line; Variability; Dataset; Uvl
</pre>

<pre id="apa_cite" style="display: none;">
<pre id="apa_cite_uvlhub" style="display: none;">
Romero-Organvidez, D., Galindo, J. A., Sundermann, C., Horcas, J.-M., & Benavides, D. (2024). UVLHub: A feature model data repository using UVL and open science principles. Journal of Systems and Software, 2024, 112150. https://doi.org/10.1016/j.jss.2024.112150
</pre>

<pre id="bibtex_cite_uvl" style="display: none">
@article{benavides2024uvl,
author = {David Benavides and Chico Sundermann and Kevin Feichtinger and José A. Galindo and Rick Rabiser and Thomas Thüm},
title = {UVL: Feature Modelling with the Universal Variability Language},
year = {2024},
url = {http://dx.doi.org/10.2139/ssrn.4764657},
note = {SSRN Electronic Journal},
doi = {10.2139/ssrn.4764657}
}
</pre>

<pre id="ris_cite_uvl" style="display: none">
TY - JOUR
AU - Benavides, David
AU - Sundermann, Chico
AU - Feichtinger, Kevin
AU - Galindo, José A.
AU - Rabiser, Rick
AU - Thüm, Thomas
TI - UVL: Feature Modelling with the Universal Variability Language
PY - 2024
UR - http://dx.doi.org/10.2139/ssrn.4764657
DO - 10.2139/ssrn.4764657
JO - SSRN Electronic Journal
ER -
</pre>

<pre id="text_cite_uvl" style="display: none;">
David Benavides, Chico Sundermann, Kevin Feichtinger, José A. Galindo, Rick Rabiser and Thomas Thüm,
Uvl: Feature Modelling with the Universal Variability Language.
http://dx.doi.org/10.2139/ssrn.4764657
</pre>

<pre id="apa_cite_uvl" style="display: none;">
Benavides, D., Sundermann, C., Feichtinger, K., Galindo, J. A., Rabiser, R., & Thüm, T. (2024). UVL: Feature Modelling with the Universal Variability Language. SSRN Electronic Journal. http://dx.doi.org/10.2139/ssrn.4764657
</pre>

<script src="{{ url_for("static", filename="js/app.js") }}"></script>

<script src="{{ url_for('downloadqueue.scripts') }}"></script>
Expand Down

0 comments on commit af44e9b

Please sign in to comment.