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

Copy citation file content, in APA and BibTex format, on repo home page #19999

Merged
merged 55 commits into from
Nov 11, 2022
Merged
Show file tree
Hide file tree
Changes from 35 commits
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
003f608
add: add function to read and stock citation file content into PageData
sarrooo Jun 17, 2022
5dbffa0
add: add template to handle citation file on repo home page (same loo…
sarrooo Jun 17, 2022
711fcaa
fix: fix lint errors
sarrooo Jun 17, 2022
c0c02a9
fix: forgot to check if the repo is empty, cause test crash
sarrooo Jun 17, 2022
bdb76c1
Merge branch 'main' into feature/citation-file
sarrooo Jun 17, 2022
344c926
fix: fix test crash when server render file (add check if we are at /…
sarrooo Jun 18, 2022
6284a7c
Merge branch 'feature/citation-file' of github.com:Nolann71/gitea int…
sarrooo Jun 18, 2022
8c69928
Update routers/web/repo/view.go
sarrooo Jun 27, 2022
287c687
fix: gusted suggested fixes
sarrooo Jun 29, 2022
982f389
fix: roll back error handling that cause tests crash
sarrooo Jul 5, 2022
d07052e
Update templates/repo/citation_buttons.tmpl
sarrooo Jul 14, 2022
10c9949
Update templates/repo/home.tmpl
sarrooo Jul 14, 2022
c0cf481
Merge branch 'main' into feature/citation-file
sarrooo Jul 14, 2022
abcde25
fix: fix package-lock json
sarrooo Jul 14, 2022
586f9b5
add: change previous button, add button in download dropdown to open …
sarrooo Jul 18, 2022
04f1acd
Merge branch 'main' into feature/citation-file
sarrooo Jul 18, 2022
15618d5
fix: fix frontend lint
sarrooo Jul 18, 2022
ce5a37a
fix: fix package-lock.json
sarrooo Jul 18, 2022
e62420f
fix: fix backend lint
sarrooo Jul 18, 2022
24841e7
fix: move citation functions from repo-common.js to citation.js, add …
sarrooo Jul 19, 2022
b57fb0e
fix: remove citation-js and add @citation-js/core and @citation-js/csl
sarrooo Jul 19, 2022
600b057
fix: fix lazy-load
sarrooo Jul 19, 2022
38dd4a6
Merge branch 'main' into feature/citation-file
sarrooo Jul 19, 2022
134cdad
fix: remove string into locale-fr-FR to use https://crowdin.com/proje…
sarrooo Jul 19, 2022
af4b319
fix: fix package-lock.json
sarrooo Jul 19, 2022
be912ed
fix: revert empty line (local fr)
sarrooo Jul 21, 2022
7e84d1f
fix: remove no-transition class (useless), rename download-btn to too…
sarrooo Jul 21, 2022
b50ad8a
merge: merge main
sarrooo Jul 21, 2022
6583f38
revert: revert package-lock.json
sarrooo Jul 21, 2022
ef0b8da
npm install --package-lock-only
sarrooo Jul 21, 2022
ae70a3f
fix: change tooltip-btn to more-btn
sarrooo Jul 21, 2022
d407e5c
fix: move checkCitationFile to renderCode to avoid two calls to function
sarrooo Jul 21, 2022
1592af9
fix: check empty repo before call func
sarrooo Jul 21, 2022
3180c00
fix: remove inline script
sarrooo Jul 21, 2022
4050352
fix: css and add newline where I forgot
sarrooo Jul 23, 2022
9baf3ca
fix: style and add a check js side
sarrooo Nov 3, 2022
14c99d4
merge: master to feature/citation-file
sarrooo Nov 4, 2022
4df0438
feat: add bibtex input handling
sarrooo Nov 4, 2022
7498f94
fix: npm install --package-lock-only
sarrooo Nov 4, 2022
04d2bef
fix: fix lint-fronted
sarrooo Nov 4, 2022
ea6360e
Merge branch 'main' into feature/citation-file
sarrooo Nov 4, 2022
1047d5f
Merge branch 'main' into feature/citation-file
sarrooo Nov 5, 2022
d71f0dd
Merge branch 'main' into feature/citation-file
6543 Nov 8, 2022
d6e1db0
Merge branch 'main' into feature/citation-file
6543 Nov 8, 2022
f2f0bfe
feat: replace download button by a more button (home page)
sarrooo Nov 9, 2022
d14c968
Merge branch 'main' into feature/citation-file
sarrooo Nov 9, 2022
649b745
Merge branch 'main' into feature/citation-file
6543 Nov 9, 2022
e4f0287
Merge branch 'main' into feature/citation-file
6543 Nov 10, 2022
6be7ba5
Merge branch 'main' into feature/citation-file
6543 Nov 10, 2022
05cd7c6
Merge branch 'main' into feature/citation-file
6543 Nov 10, 2022
99136ac
Merge branch 'main' into feature/citation-file
6543 Nov 10, 2022
75e7324
fix: fix typo, move cite file template into own folder
sarrooo Nov 11, 2022
a62b1d8
fix: change space to tab
sarrooo Nov 11, 2022
7f2cf5e
Merge branch 'main' into feature/citation-file
sarrooo Nov 11, 2022
9991e9a
Merge branch 'main' into feature/citation-file
6543 Nov 11, 2022
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
2 changes: 2 additions & 0 deletions options/locale/locale_en-US.ini
Original file line number Diff line number Diff line change
Expand Up @@ -993,10 +993,12 @@ unstar = Unstar
star = Star
fork = Fork
download_archive = Download Repository
more_actions = More Actions

no_desc = No Description
quick_guide = Quick Guide
clone_this_repo = Clone this repository
cite_this_repo = Cite this repository
create_new_repo_command = Creating a new repository on the command line
push_exist_repo = Pushing an existing repository from the command line
empty_message = This repository does not contain any content.
Expand Down
Loading