Skip to content

Commit 9d12268

Browse files
authored
Merge pull request #94 from marton-balazs-kovacs/main
trying fresh checkout of main from github
2 parents 4bb1602 + 642ec1f commit 9d12268

16 files changed

+73
-39
lines changed

R/app_server.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ if (show_popup) {
2323
# Show a non-aggressive pop-up notification using shinyjs
2424
shinyjs::runjs("
2525
const div = document.createElement('div');
26-
div.innerHTML = 'Please support tenzing &#x1F60A; <br>Donate <a href=\"https://opencollective.com/tenzing\" target=\"_blank\">here</a>!';
26+
div.innerHTML = 'Please support tenzing &#x1F60A; by <br>donating <a href=\"https://opencollective.com/tenzing\" target=\"_blank\">here</a>.';
2727
div.style.position = 'fixed';
2828
div.style.top = '75%';
2929
div.style.left = '16%';

R/app_ui.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ app_ui <- function() {
7777
class = "main-steps-title-container",
7878
h1("3.",
7979
class = "main-steps-title-number"),
80-
h3("Download the output",
80+
h3("Generate an output",
8181
class = "main-steps-title"),
8282
div(
8383
class = "help-icon-container",
@@ -104,7 +104,7 @@ app_ui <- function() {
104104
),
105105
# Privacy notice
106106
HTML("<p><b>Privacy:</b><BR>
107-
To get a sense of how many users we have, we log a masked version of IP addresses. You are not identifiable by the logged information.</p>")
107+
To get a sense of how many use tenzing, we log a masked version of IP addresses. You are not identifiable by the logged information.</p>")
108108
),
109109
column(2)
110110
),

R/mod_conflict_statement.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ mod_conflict_statement_ui <- function(id){
1313
div(class = "out-btn",
1414
actionButton(
1515
NS(id, "show_report"),
16-
label = "Show conflict of interest statement",
16+
label = "Conflict of interest statement",
1717
class = "btn btn-primary btn-validate")
1818
) %>%
1919
tagAppendAttributes(

R/mod_create_table.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ mod_create_table_ui <- function(id) {
1818
p("Duplicate and edit the ",
1919
style = "display: inline; margin-bottom: 0;"),
2020
a(
21-
href = "https://docs.google.com/spreadsheets/d/1Gl0cwqN_nTsdFH9yhSvi9NypBfDCEhViGq4A3MnBrG8/edit?usp=sharing",
21+
href = "https://docs.google.com/spreadsheets/d/1ay8pS-ftvfzWTrKCZr6Fa0cTLg3n8KxAOOleZmuE7Hs/edit?usp=sharing",
2222
"contributors table template",
2323
target = "_blank",
2424
style = "display: inline; color: #ffdf57; text-decoration: underline;",

R/mod_credit_roles.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ mod_credit_roles_ui <- function(id){
1919
div(class = "out-btn",
2020
actionButton(
2121
NS(id, "show_report"),
22-
label = "Show contributor contributions text",
22+
label = "Contributions text",
2323
class = "btn btn-primary btn-validate")
2424
) %>%
2525
tagAppendAttributes(

R/mod_funding_information.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ mod_funding_information_ui <- function(id){
1313
div(class = "out-btn",
1414
actionButton(
1515
NS(id, "show_report"),
16-
label = "Show funding information",
16+
label = "Funding information",
1717
class = "btn btn-primary btn-validate")
1818
) %>%
1919
tagAppendAttributes(

R/mod_show_yaml.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ mod_show_yaml_ui <- function(id) {
2020
div(class = "out-btn",
2121
actionButton(
2222
inputId = NS(id, "show_yaml"),
23-
label = HTML("Show <i>papaja</i> YAML"),
23+
label = HTML("<i>papaja</i> YAML"),
2424
class = "btn btn-primary btn-validate")
2525
) %>%
2626
tagAppendAttributes(

R/mod_title_page.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ mod_title_page_ui <- function(id){
1919
div(class = "out-btn",
2020
actionButton(
2121
NS(id, "show_report"),
22-
label = "Show contributor list with affiliations",
22+
label = "Contributor list with affiliations",
2323
class = "btn btn-primary btn-validate")
2424
) %>%
2525
tagAppendAttributes(

R/mod_xml_report.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ mod_xml_report_ui <- function(id){
1818
tagList(
1919
div(class = "out-btn",
2020
actionButton(NS(id, "show_report"),
21-
label = "Show XML file (for publisher use)",
21+
label = "JATS-XML (for publisher use)",
2222
class = "btn btn-primary btn-validate")
2323
) %>%
2424
tagAppendAttributes(

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ Running the app.
6363
``` r
6464
tenzing::run_app()
6565
```
66-
If working in RStudio, after opening the .Rproj file and then "app.R", click on "Run app" in the top right of the app window.
6766

6867
You can read more on how to use the `tenzing` app in
6968
`vignette("app_use")`.

inst/app/www/about.Rmd

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,30 +5,30 @@ output: html_document
55

66
<i>tenzing</i> is a project of the <a href="https://contributorshipcollaboration.github.io/" class="link" target='_blank'>Contributorship Collaboration</a>.
77

8-
_tenzing_ is named after the Nepali-Indian Sherpa Tenzing Norgay, who was one of the first two people to reach the summit of Mount Everest. Despite his essential contribution, the achievement is often credited less to him than to his partner, the New Zealand mountaineer Edmund Hillary.
8+
_tenzing_ is named after the Nepali-Indian Sherpa Tenzing Norgay, whose achievement in climbing Everest is often credited less to him than to his partner, the New Zealand mountaineer Edmund Hillary.
99

1010
### About CRediT
1111

1212
<a href="http://credit.niso.org/" class="link" target='_blank'>CRediT</a> (Contributor Roles Taxonomy) is a high-level taxonomy of 14 roles that indicate some of the roles played by contributors to scientific scholarly output. The roles describe each contributor’s specific contribution to the scholarly output.
1313

14-
### Contributors
14+
### Some who have recommended <i>tenzing</i>
1515

16-
Marton Kovacs, Alex Holcombe, Balazs Aczel, Frederik Aust, Julien Colomb.
16+
<a href="https://sfdora.org/resource-library/?_resource_type=tools" class="link" target='_blank'>DORA</a>
17+
<br>
18+
<a href="https://www.collabra.org/" class="link" target='_blank'>Collabra: Psychology</a>
19+
<br>
20+
<a href="https://ukrn.org" class="link" target='_blank'>UKRN</a>
1721

1822
### Related papers
1923

2024
Holcombe, A. O., Kovacs, M., Aust, F., & Aczel, B. (2020). <a href="https://doi.org/10.1371/journal.pone.0244611" class="link" target='_blank'>Documenting contributions to scholarly articles using CRediT and tenzing</a>. *Plos one, 15*(12), e0244611. DOI:10.1371/journal.pone.0244611
2125

2226
Kovacs, M., Holcombe, A., Aust, F., & Aczel, B. (2021). <a href="https://doi.org/10.3233/ISU-210109" class="link" target='_blank'>Tenzing and the importance of tool development for research efficiency</a>. *Information Services & Use, 41*, 123–130. DOI:10.3233/ISU-210109
2327

24-
### Groups that recommend <i>tenzing</i>
28+
### Contributors
2529

26-
<a href="https://www.collabra.org/" class="link" target='_blank'>Collabra: Psychology</a>
27-
<br>
28-
<a href="https://sfdora.org/resource-library/?_resource_type=tools" class="link" target='_blank'>DORA</a>
29-
<br>
30-
<a href="https://ukrn.org" class="link" target='_blank'>UKRN</a>
30+
Marton Kovacs, Alex O. Holcombe, [et al.](https://github.com/marton-balazs-kovacs/tenzing/graphs/contributors)
3131

3232
### Contact
3333

34-
If you have any questions or comments, please add to the <a href="https://github.com/marton-balazs-kovacs/tenzing" class="link" target='_blank'>issues on Github</a>, email Marton: marton.balazs.kovacs at gmail.com, or message us <a href="https://neuromatch.social/@tenzingContrib" class="link" target="_blank">on Mastodon</a>.
34+
If you have any questions or comments, please add an <a href="https://github.com/marton-balazs-kovacs/tenzing" class="link" target='_blank'>issue on Github</a>, email Marton: marton.balazs.kovacs at gmail.com, or message us <a href="https://neuromatch.social/@tenzingContrib" class="link" target="_blank">on Mastodon</a>.

inst/app/www/introduction.Rmd

Lines changed: 16 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,22 @@ title: ""
33
output: html_document
44
---
55

6-
#### 1. Create your contributors table
7-
* Copy the contributors table template in your Google Drive _File -> Make a copy_
8-
* Fill out your copy of the contributors table
9-
+ You can share it with your collaborators to make the process faster
6+
### 1. Create your contributors table
7+
* Duplicate the contributors table template into your Google Drive: _File -> Make a copy_. Alternatively, you can download it.
8+
* Fill out your copy of the contributors table (consider sharing it with your collaborators to do so).
109

11-
#### 2. Upload your contributors table
12-
* Use the share URL of your contributors table and click "Upload from URL" OR
13-
- The share links should be made viewable
14-
* Upload your contributors table in a .csv, .tsv or .xlsx format
15-
- Download your filled out contributors table to your computer (if you use .xlsx format the contributorship information should be on the first sheet)
16-
- Click the “Browse” button, locate your contributors table on your computer, and click "Upload from local file"
17-
* To verify that your contributors table was imported correctly click “Review contributors table”
10+
### 2. A) Upload your contributors table file, or B) Paste its URL
11+
A. Upload your contributors table in a .csv, .tsv or .xlsx format.
12+
- Click "Local file", then “Browse”, and locate your contributors table on your computer.
13+
14+
B. Share the URL via Google Drive, and click "Upload from URL".
15+
- To ensure the URL is public so tenzing can access it, in your copy go to _File->Share with others_. Set _General access_ to _Anyone with the link_.
1816

19-
#### 3. Download the output
17+
### 3. Generate an output
2018
* Select the associated button to choose one of the available outputs, which are:
21-
- "author Contributions text": A human-readable report of the contributions with the
22-
- "author list with affiliations": The author names and affiliation information
23-
- "XML file": JATS XML, the machine-readable version of the contributions
24-
- `papaja` compatible YAML code of the contributor roles
25-
- "funding information" for pasting into a manuscript
26-
- "conflict of interest statement"
19+
- "contributions text": A list of the contributions
20+
- "contributor list with affiliations": The contributor names and affiliations (useful for your manuscript's title page)
21+
- "JATS-XML": JATS XML, the machine-readable version of the contributions
22+
- [papaja](https://github.com/crsh/papaja)-compatible YAML code of the contributor roles
23+
- "funding information", useful for pasting into a manuscript
24+
- "conflict of interest statement", useful for pasting into a manuscript
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: tenzing-master
2+
title: tenzing-master
3+
username: alexholcombe
4+
account: alexholcombe
5+
server: shinyapps.io
6+
hostUrl: https://api.shinyapps.io/v1
7+
appId: 8701446
8+
bundleId: 9691969
9+
url: https://alexholcombe.shinyapps.io/tenzing-master/
10+
version: 1
11+
asMultiple: FALSE
12+
asStatic: FALSE
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: tenzing-master
2+
title: tenzing-master
3+
username: rollercoaster
4+
account: rollercoaster
5+
server: shinyapps.io
6+
hostUrl: https://api.shinyapps.io/v1
7+
appId: 8633777
8+
bundleId: 9700340
9+
url: https://rollercoaster.shinyapps.io/tenzing-master/
10+
version: 1
11+
asMultiple: FALSE
12+
asStatic: FALSE
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: tenzing
2+
title: tenzing
3+
username: rollercoaster
4+
account: rollercoaster
5+
server: shinyapps.io
6+
hostUrl: https://api.shinyapps.io/v1
7+
appId: 4527698
8+
bundleId: 9700369
9+
url: https://rollercoaster.shinyapps.io/tenzing/
10+
version: 1
11+
asMultiple: FALSE
12+
asStatic: FALSE

tenzing.Rproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
Version: 1.0
2+
ProjectId: 82b54835-4604-46a7-a546-35d967112cb1
23

34
RestoreWorkspace: Default
45
SaveWorkspace: Default

0 commit comments

Comments
 (0)