You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2290 lines
121 KiB

Oauth2 consumer (#679) * initial stuff for oauth2 login, fails on: * login button on the signIn page to start the OAuth2 flow and a callback for each provider Only GitHub is implemented for now * show login button only when the OAuth2 consumer is configured (and activated) * create macaron group for oauth2 urls * prevent net/http in modules (other then oauth2) * use a new data sessions oauth2 folder for storing the oauth2 session data * add missing 2FA when this is enabled on the user * add password option for OAuth2 user , for use with git over http and login to the GUI * add tip for registering a GitHub OAuth application * at startup of Gitea register all configured providers and also on adding/deleting of new providers * custom handling of errors in oauth2 request init + show better tip * add ExternalLoginUser model and migration script to add it to database * link a external account to an existing account (still need to handle wrong login and signup) and remove if user is removed * remove the linked external account from the user his settings * if user is unknown we allow him to register a new account or link it to some existing account * sign up with button on signin page (als change OAuth2Provider structure so we can store basic stuff about providers) * from gorilla/sessions docs: "Important Note: If you aren't using gorilla/mux, you need to wrap your handlers with context.ClearHandler as or else you will leak memory!" (we're using gorilla/sessions for storing oauth2 sessions) * use updated goth lib that now supports getting the OAuth2 user if the AccessToken is still valid instead of re-authenticating (prevent flooding the OAuth2 provider)
7 years ago
8 years ago
Pull request review/approval and comment on code (#3748) * Initial ui components for pull request review * Add Review Add IssueComment types Signed-off-by: Jonas Franz <info@jonasfranz.software> (cherry picked from commit 2b4daab) Signed-off-by: Jonas Franz <info@jonasfranz.software> * Replace ReviewComment with Content Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add load functions Add ReviewID to findComments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add create review comment implementation Add migration for review Other small changes Signed-off-by: Jonas Franz <info@jonasfranz.software> * Simplified create and find functions for review Signed-off-by: Jonas Franz <info@jonasfranz.software> * Moved "Pending" to first position Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add GetCurrentReview to simplify fetching current review Signed-off-by: Jonas Franz <info@jonasfranz.software> * Preview for listing comments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Move new comment form to its own file Signed-off-by: Jonas Franz <info@jonasfranz.software> * Implement Review form Show Review comments on comment stream Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for single comments Showing buttons in context Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add pending tag to pending review comments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add unit tests for Review Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fetch all review ids at once Add unit tests Signed-off-by: Jonas Franz <info@jonasfranz.software> * gofmt Signed-off-by: Jonas Franz <info@jonasfranz.software> * Improved comment rendering in "Files" view by adding Comments to DiffLine Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for invalidating comments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Switched back to code.gitea.io/git Signed-off-by: Jonas Franz <info@jonasfranz.software> * Moved review migration from v64 to v65 Signed-off-by: Jonas Franz <info@jonasfranz.software> * Rebuild css Signed-off-by: Jonas Franz <info@jonasfranz.software> * gofmt Signed-off-by: Jonas Franz <info@jonasfranz.software> * Improve translations Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix unit tests by updating fixtures and updating outdated test Signed-off-by: Jonas Franz <info@jonasfranz.software> * Comments will be shown at the right place now Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for deleting CodeComments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix problems caused by files in subdirectories Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for showing code comments of reviews in conversation Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for "Show/Hide outdated" Signed-off-by: Jonas Franz <info@jonasfranz.software> * Update code.gitea.io/git Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for new webhooks Signed-off-by: Jonas Franz <info@jonasfranz.software> * Update comparison Signed-off-by: Jonas Franz <info@jonasfranz.software> * Resolve conflicts Signed-off-by: Jonas Franz <info@jonasfranz.software> * Minor UI improvements * update code.gitea.io/git * Fix ui bug reported by @lunny causing wrong position of add button Add functionality to "Cancel" button Add scale effects to add button Hide "Cancel" button for existing comments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Prepare solving conflicts Signed-off-by: Jonas Franz <info@jonasfranz.software> * Show add button only if no comments already exist for the line Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add missing vendor files Signed-off-by: Jonas Franz <info@jonasfranz.software> * Check if reviewer is nil Signed-off-by: Jonas Franz <info@jonasfranz.software> * Show forms only to users who are logged in Signed-off-by: Jonas Franz <info@jonasfranz.software> * Revert "Show forms only to users who are logged in" This reverts commit c083682 Signed-off-by: Jonas Franz <info@jonasfranz.software> * Save patch in comment Render patch for code comments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add link to comment in code Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add reply form to comment list Show forms only to signed in users Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add 'Reply' as translatable Add CODE_COMMENT_LINES setting Signed-off-by: Jonas Franz <info@jonasfranz.software> * gofmt Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix problems introduced by checking for singed in user Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add v70 Signed-off-by: Jonas Franz <info@jonasfranz.software> * Update generated stylesheet Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix preview Beginn with new review comment patch system Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add new algo to generate diff for line range Remove old algo used for cutting big diffs (it was very buggy) * Add documentation and example for CutDiffAroundLine * Fix example of CutDiffAroundLine * Fix some comment UI rendering bugs * Add code comment edit mode * Send notifications / actions to users until review gets published Fix diff generation bug Fix wrong hashtag * Fix vet errors * Send notifications also for single comments * Fix some notification bugs, fix link * Fix: add comment icon is only shown on code lines * Add lint comment * Add unit tests for git diff * Add more error messages * Regenerated css Signed-off-by: Jonas Franz <info@jonasfranz.software> * fmt Signed-off-by: Jonas Franz <info@jonasfranz.software> * Regenerated CSS with latest less version Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix test by updating comment type to new ID Signed-off-by: Jonas Franz <info@jonasfranz.software> * Introducing CodeComments as type for map[string]map[int64][]*Comment Other minor code improvements Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix data-tab issues Signed-off-by: Jonas Franz <info@jonasfranz.software> * Remove unnecessary change Signed-off-by: Jonas Franz <info@jonasfranz.software> * refactored checkForInvalidation Signed-off-by: Jonas Franz <info@jonasfranz.software> * Append comments instead of setting Signed-off-by: Jonas Franz <info@jonasfranz.software> * Use HeadRepo instead of BaseRepo Signed-off-by: Jonas Franz <info@jonasfranz.software> * Update migration Signed-off-by: Jonas Franz <info@jonasfranz.de> * Regenerated CSS Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add copyright Signed-off-by: Jonas Franz <info@jonasfranz.software> * Update index.css Signed-off-by: Jonas Franz <info@jonasfranz.software>
5 years ago
9 years ago
9 years ago
Add single sign-on support via SSPI on Windows (#8463) * Add single sign-on support via SSPI on Windows * Ensure plugins implement interface * Ensure plugins implement interface * Move functions used only by the SSPI auth method to sspi_windows.go * Field SSPISeparatorReplacement of AuthenticationForm should not be required via binding, as binding will insist the field is non-empty even if another login type is selected * Fix breaking of oauth authentication on download links. Do not create new session with SSPI authentication on download links. * Update documentation for the new 'SPNEGO with SSPI' login source * Mention in documentation that ROOT_URL should contain the FQDN of the server * Make sure that Contexter is not checking for active login sources when the ORM engine is not initialized (eg. when installing) * Always initialize and free SSO methods, even if they are not enabled, as a method can be activated while the app is running (from Authentication sources) * Add option in SSPIConfig for removing of domains from logon names * Update helper text for StripDomainNames option * Make sure handleSignIn() is called after a new user object is created by SSPI auth method * Remove default value from text of form field helper Co-Authored-By: Lauris BH <lauris@nix.lv> * Remove default value from text of form field helper Co-Authored-By: Lauris BH <lauris@nix.lv> * Remove default value from text of form field helper Co-Authored-By: Lauris BH <lauris@nix.lv> * Only make a query to the DB to check if SSPI is enabled on handlers that need that information for templates * Remove code duplication * Log errors in ActiveLoginSources Co-Authored-By: Lauris BH <lauris@nix.lv> * Revert suffix of randomly generated E-mails for Reverse proxy authentication Co-Authored-By: Lauris BH <lauris@nix.lv> * Revert unneeded white-space change in template Co-Authored-By: Lauris BH <lauris@nix.lv> * Add copyright comments at the top of new files * Use loopback name for randomly generated emails * Add locale tag for the SSPISeparatorReplacement field with proper casing * Revert casing of SSPISeparatorReplacement field in locale file, moving it up, next to other form fields * Update docs/content/doc/features/authentication.en-us.md Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * Remove Priority() method and define the order in which SSO auth methods should be executed in one place * Log authenticated username only if it's not empty * Rephrase helper text for automatic creation of users * Return error if more than one active SSPI auth source is found * Change newUser() function to return error, letting caller log/handle the error * Move isPublicResource, isPublicPage and handleSignIn functions outside SSPI auth method to allow other SSO methods to reuse them if needed * Refactor initialization of the list containing SSO auth methods * Validate SSPI settings on POST * Change SSPI to only perform authentication on its own login page, API paths and download links. Leave Toggle middleware to redirect non authenticated users to login page * Make 'Default language' in SSPI config empty, unless changed by admin * Show error if admin tries to add a second authentication source of type SSPI * Simplify declaration of global variable * Rebuild gitgraph.js on Linux * Make sure config values containing only whitespace are not accepted
4 years ago
Squashed commit of the following: commit 0afcb843d7ffd596991c4885cab768273a6eb42c Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Sun Jul 31 17:13:29 2016 -0600 Removed Upload stats as the upload table is just a temporary table commit 7ecd73ff5535612d79d471409173ee7f1fcfa157 Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Sun Jul 31 08:42:41 2016 -0600 Fix for CodeMirror mode commit c29b9ab531e2e7af0fb5db24dc17e51027dd1174 Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Sun Jul 31 08:03:33 2016 -0600 Made tabbing in editor use spaces commit 23af384c53206a8a40e11e45bf49d7a149c4adcd Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Sun Jul 31 07:56:46 2016 -0600 Fix for data-url commit cfb8a97591cb6fc0a92e49563b7b764c524db0e9 Merge: 7fc8a89 991ce42 Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Sun Jul 31 07:42:53 2016 -0600 Merge remote-tracking branch 'gogits/develop' into feature-create-and-edit-repo-file Conflicts: modules/bindata/bindata.go public/js/gogs.js commit 7fc8a89cb495478225b02d613e647f99a1489634 Merge: fd3d86c c03d040 Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Sun Jul 31 07:40:00 2016 -0600 Merge branch 'feature-create-and-edit-repo-file' of github.com:richmahn/gogs into feature-create-and-edit-repo-file commit fd3d86ca6bbc02cfda566a504ffd6b03db4f75ef Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Sun Jul 31 07:39:44 2016 -0600 Code cleanup commit c03d0401c1049eeeccc32ab1f9c3303c130be5ee Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Fri Jul 29 15:38:23 2016 -0600 Code cleanup commit 98e1206ccf9f9a4503c020e3a7830cf9f861dfae Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Thu Jul 28 18:36:01 2016 -0600 Code cleanup and fixes commit c2895dc742f25f8412879c9fa15e18f27f42f194 Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Thu Jul 28 18:24:04 2016 -0600 Fixes per Unknwon's requests commit 6aa7e46b21ad4c96e562daa2eac26a8fb408f8ef Merge: 889e9fa ad7ea88 Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Thu Jul 28 17:13:43 2016 -0600 Merge remote-tracking branch 'gogits/develop' into feature-create-and-edit-repo-file Conflicts: modules/bindata/bindata.go modules/setting/setting.go commit 889e9faf1bd8559a4979c8f46005d488c1a234d4 Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Fri Jul 22 14:09:18 2016 -0600 Fix in gogs.js commit 47603edf223f147b114be65f3bd27bc1e88827a5 Merge: bb57912 cf85e9e Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Fri Jul 22 14:07:36 2016 -0600 Merge remote-tracking branch 'gogits/develop' into feature-create-and-edit-repo-file Conflicts: modules/bindata/bindata.go public/js/gogs.js commit bb5791255867a71c11a77b639db050ad09c597a4 Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Fri Jul 22 14:02:18 2016 -0600 Update for using CodeMirror mode addon commit d10d128c51039be19e2af9c66c63db66a9f2ec6d Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Tue Jul 19 16:12:57 2016 -0600 Update for Edit commit 34a34982025144e3225e389f7849eb6273c1d576 Merge: fa1b752 1c7dcdd Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Tue Jul 19 11:52:02 2016 -0600 Merge remote-tracking branch 'gogits/develop' into feature-create-and-edit-repo-file Conflicts: modules/bindata/bindata.go commit fa1b752be29cd455c5184ddac2ffe80b3489763e Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Fri Jul 15 18:35:42 2016 -0600 Feature for editing, creating, uploading and deleting files
7 years ago
Add single sign-on support via SSPI on Windows (#8463) * Add single sign-on support via SSPI on Windows * Ensure plugins implement interface * Ensure plugins implement interface * Move functions used only by the SSPI auth method to sspi_windows.go * Field SSPISeparatorReplacement of AuthenticationForm should not be required via binding, as binding will insist the field is non-empty even if another login type is selected * Fix breaking of oauth authentication on download links. Do not create new session with SSPI authentication on download links. * Update documentation for the new 'SPNEGO with SSPI' login source * Mention in documentation that ROOT_URL should contain the FQDN of the server * Make sure that Contexter is not checking for active login sources when the ORM engine is not initialized (eg. when installing) * Always initialize and free SSO methods, even if they are not enabled, as a method can be activated while the app is running (from Authentication sources) * Add option in SSPIConfig for removing of domains from logon names * Update helper text for StripDomainNames option * Make sure handleSignIn() is called after a new user object is created by SSPI auth method * Remove default value from text of form field helper Co-Authored-By: Lauris BH <lauris@nix.lv> * Remove default value from text of form field helper Co-Authored-By: Lauris BH <lauris@nix.lv> * Remove default value from text of form field helper Co-Authored-By: Lauris BH <lauris@nix.lv> * Only make a query to the DB to check if SSPI is enabled on handlers that need that information for templates * Remove code duplication * Log errors in ActiveLoginSources Co-Authored-By: Lauris BH <lauris@nix.lv> * Revert suffix of randomly generated E-mails for Reverse proxy authentication Co-Authored-By: Lauris BH <lauris@nix.lv> * Revert unneeded white-space change in template Co-Authored-By: Lauris BH <lauris@nix.lv> * Add copyright comments at the top of new files * Use loopback name for randomly generated emails * Add locale tag for the SSPISeparatorReplacement field with proper casing * Revert casing of SSPISeparatorReplacement field in locale file, moving it up, next to other form fields * Update docs/content/doc/features/authentication.en-us.md Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * Remove Priority() method and define the order in which SSO auth methods should be executed in one place * Log authenticated username only if it's not empty * Rephrase helper text for automatic creation of users * Return error if more than one active SSPI auth source is found * Change newUser() function to return error, letting caller log/handle the error * Move isPublicResource, isPublicPage and handleSignIn functions outside SSPI auth method to allow other SSO methods to reuse them if needed * Refactor initialization of the list containing SSO auth methods * Validate SSPI settings on POST * Change SSPI to only perform authentication on its own login page, API paths and download links. Leave Toggle middleware to redirect non authenticated users to login page * Make 'Default language' in SSPI config empty, unless changed by admin * Show error if admin tries to add a second authentication source of type SSPI * Simplify declaration of global variable * Rebuild gitgraph.js on Linux * Make sure config values containing only whitespace are not accepted
4 years ago
Add single sign-on support via SSPI on Windows (#8463) * Add single sign-on support via SSPI on Windows * Ensure plugins implement interface * Ensure plugins implement interface * Move functions used only by the SSPI auth method to sspi_windows.go * Field SSPISeparatorReplacement of AuthenticationForm should not be required via binding, as binding will insist the field is non-empty even if another login type is selected * Fix breaking of oauth authentication on download links. Do not create new session with SSPI authentication on download links. * Update documentation for the new 'SPNEGO with SSPI' login source * Mention in documentation that ROOT_URL should contain the FQDN of the server * Make sure that Contexter is not checking for active login sources when the ORM engine is not initialized (eg. when installing) * Always initialize and free SSO methods, even if they are not enabled, as a method can be activated while the app is running (from Authentication sources) * Add option in SSPIConfig for removing of domains from logon names * Update helper text for StripDomainNames option * Make sure handleSignIn() is called after a new user object is created by SSPI auth method * Remove default value from text of form field helper Co-Authored-By: Lauris BH <lauris@nix.lv> * Remove default value from text of form field helper Co-Authored-By: Lauris BH <lauris@nix.lv> * Remove default value from text of form field helper Co-Authored-By: Lauris BH <lauris@nix.lv> * Only make a query to the DB to check if SSPI is enabled on handlers that need that information for templates * Remove code duplication * Log errors in ActiveLoginSources Co-Authored-By: Lauris BH <lauris@nix.lv> * Revert suffix of randomly generated E-mails for Reverse proxy authentication Co-Authored-By: Lauris BH <lauris@nix.lv> * Revert unneeded white-space change in template Co-Authored-By: Lauris BH <lauris@nix.lv> * Add copyright comments at the top of new files * Use loopback name for randomly generated emails * Add locale tag for the SSPISeparatorReplacement field with proper casing * Revert casing of SSPISeparatorReplacement field in locale file, moving it up, next to other form fields * Update docs/content/doc/features/authentication.en-us.md Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * Remove Priority() method and define the order in which SSO auth methods should be executed in one place * Log authenticated username only if it's not empty * Rephrase helper text for automatic creation of users * Return error if more than one active SSPI auth source is found * Change newUser() function to return error, letting caller log/handle the error * Move isPublicResource, isPublicPage and handleSignIn functions outside SSPI auth method to allow other SSO methods to reuse them if needed * Refactor initialization of the list containing SSO auth methods * Validate SSPI settings on POST * Change SSPI to only perform authentication on its own login page, API paths and download links. Leave Toggle middleware to redirect non authenticated users to login page * Make 'Default language' in SSPI config empty, unless changed by admin * Show error if admin tries to add a second authentication source of type SSPI * Simplify declaration of global variable * Rebuild gitgraph.js on Linux * Make sure config values containing only whitespace are not accepted
4 years ago
Add support for federated avatars (#3320) * Add support for federated avatars Fixes #3105 Removes avatar fetching duplication code Adds an "Enable Federated Avatar" checkbox in user settings (defaults to unchecked) Moves avatar settings all in the same form, making local and remote avatars mutually exclusive Renames UploadAvatarForm to AvatarForm as it's not anymore only for uploading * Run gofmt on all modified files * Move Avatar form in its own page * Add go-libravatar dependency to vendor/ dir Hopefully helps with accepting the contribution. See also #3214 * Revert "Add go-libravatar dependency to vendor/ dir" This reverts commit a8cb93ae640bbb90f7d25012fc257bda9fae9b82. * Make federated avatar setting a global configuration Removes the per-user setting * Move avatar handling back to base tool, disable federated avatar in offline mode * Format, handle error * Properly set fallback host * Use unsupported github.com mirror for importing go-libravatar * Remove comment showing life exists outside of github.com ... pity, but contribution would not be accepted otherwise * Use Combo for Get and Post methods over /avatar * FEDERATED_AVATAR -> ENABLE_FEDERATED_AVATAR * Fix persistance of federated avatar lookup checkbox at install time * Federated Avatars -> Enable Federated Avatars * Use len(string) == 0 instead of string == "" * Move import line where it belong See https://github.com/Unknwon/go-code-convention/blob/master/en-US/import_packages.md Pity the import url is still the unofficial one, but oh well... * Save a line (and waste much more expensive time) * Remove redundant parens * Remove an empty line * Remove empty lines * Reorder lines to make diff smaller * Remove another newline Unknwon review got me start a fight against newlines * Move DISABLE_GRAVATAR and ENABLE_FEDERATED_AVATAR after OFFLINE_MODE On re-reading the diff I figured what Unknwon meant here: https://github.com/gogits/gogs/pull/3320/files#r73741106 * Remove newlines that weren't there before my intervention
7 years ago
9 years ago
Add support for federated avatars (#3320) * Add support for federated avatars Fixes #3105 Removes avatar fetching duplication code Adds an "Enable Federated Avatar" checkbox in user settings (defaults to unchecked) Moves avatar settings all in the same form, making local and remote avatars mutually exclusive Renames UploadAvatarForm to AvatarForm as it's not anymore only for uploading * Run gofmt on all modified files * Move Avatar form in its own page * Add go-libravatar dependency to vendor/ dir Hopefully helps with accepting the contribution. See also #3214 * Revert "Add go-libravatar dependency to vendor/ dir" This reverts commit a8cb93ae640bbb90f7d25012fc257bda9fae9b82. * Make federated avatar setting a global configuration Removes the per-user setting * Move avatar handling back to base tool, disable federated avatar in offline mode * Format, handle error * Properly set fallback host * Use unsupported github.com mirror for importing go-libravatar * Remove comment showing life exists outside of github.com ... pity, but contribution would not be accepted otherwise * Use Combo for Get and Post methods over /avatar * FEDERATED_AVATAR -> ENABLE_FEDERATED_AVATAR * Fix persistance of federated avatar lookup checkbox at install time * Federated Avatars -> Enable Federated Avatars * Use len(string) == 0 instead of string == "" * Move import line where it belong See https://github.com/Unknwon/go-code-convention/blob/master/en-US/import_packages.md Pity the import url is still the unofficial one, but oh well... * Save a line (and waste much more expensive time) * Remove redundant parens * Remove an empty line * Remove empty lines * Reorder lines to make diff smaller * Remove another newline Unknwon review got me start a fight against newlines * Move DISABLE_GRAVATAR and ENABLE_FEDERATED_AVATAR after OFFLINE_MODE On re-reading the diff I figured what Unknwon meant here: https://github.com/gogits/gogs/pull/3320/files#r73741106 * Remove newlines that weren't there before my intervention
7 years ago
Repository avatars (#6986) * Repository avatars - first variant of code from old work for gogs - add migration 87 - add new option in app.ini - add en-US locale string - add new class in repository.less * Add changed index.css, remove unused template name * Update en-us doc about configuration options * Add comments to new functions, add new option to docker app.ini * Add comment for lint * Remove variable, not needed * Fix formatting * Update swagger api template * Check if avatar exists * Fix avatar link/path checks * Typo * TEXT column can't have a default value * Fixes: - remove old avatar file on upload - use ID in name of avatar file - users may upload same files - add simple tests * Fix fmt check * Generate PNG instead of "static" GIF * More informative comment * Fix error message * Update avatar upload checks: - add file size check - add new option - update config docs - add new string to en-us locale * Fixes: - use FileHEader field for check file size - add new test - upload big image * Fix formatting * Update comments * Update log message * Removed wrong style - not needed * Use Sync2 to migrate * Update repos list view - bigger avatar - fix html blocks alignment * A little adjust avatar size * Use small icons for explore/repo list * Use new cool avatar preparation func by @lafriks * Missing changes for new function * Remove unused import, move imports * Missed new option definition in app.ini Add file size check in user/profile avatar upload * Use smaller field length for Avatar * Use session to update repo DB data, update DeleteAvatar - use session too * Fix err variable definition * As suggested @lafriks - return as soon as possible, code readability
5 years ago
Oauth2 consumer (#679) * initial stuff for oauth2 login, fails on: * login button on the signIn page to start the OAuth2 flow and a callback for each provider Only GitHub is implemented for now * show login button only when the OAuth2 consumer is configured (and activated) * create macaron group for oauth2 urls * prevent net/http in modules (other then oauth2) * use a new data sessions oauth2 folder for storing the oauth2 session data * add missing 2FA when this is enabled on the user * add password option for OAuth2 user , for use with git over http and login to the GUI * add tip for registering a GitHub OAuth application * at startup of Gitea register all configured providers and also on adding/deleting of new providers * custom handling of errors in oauth2 request init + show better tip * add ExternalLoginUser model and migration script to add it to database * link a external account to an existing account (still need to handle wrong login and signup) and remove if user is removed * remove the linked external account from the user his settings * if user is unknown we allow him to register a new account or link it to some existing account * sign up with button on signin page (als change OAuth2Provider structure so we can store basic stuff about providers) * from gorilla/sessions docs: "Important Note: If you aren't using gorilla/mux, you need to wrap your handlers with context.ClearHandler as or else you will leak memory!" (we're using gorilla/sessions for storing oauth2 sessions) * use updated goth lib that now supports getting the OAuth2 user if the AccessToken is still valid instead of re-authenticating (prevent flooding the OAuth2 provider)
7 years ago
Template Repositories (#8768) * Start work on templates Signed-off-by: jolheiser <john.olheiser@gmail.com> * Continue work Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix IsTemplate vs IsGenerated Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix tabs vs spaces * Tabs vs Spaces * Add templates to API & start adding tests Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix integration tests Signed-off-by: jolheiser <john.olheiser@gmail.com> * Remove unused User Signed-off-by: jolheiser <john.olheiser@gmail.com> * Move template tests to existing repos Signed-off-by: jolheiser <john.olheiser@gmail.com> * Minor re-check updates and cleanup Signed-off-by: jolheiser <john.olheiser@gmail.com> * make fmt Signed-off-by: jolheiser <john.olheiser@gmail.com> * Test cleanup Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix optionalbool Signed-off-by: jolheiser <john.olheiser@gmail.com> * make fmt Signed-off-by: jolheiser <john.olheiser@gmail.com> * Test fixes and icon change Signed-off-by: jolheiser <john.olheiser@gmail.com> * Add new user and repo for tests Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix tests (finally) Signed-off-by: jolheiser <john.olheiser@gmail.com> * Update meta repo with env variables Signed-off-by: jolheiser <john.olheiser@gmail.com> * Move generation to create page Combine with repo create template Modify API search to prioritize owner for repo Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix tests and coverage Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix swagger and JS lint Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix API searching for own private repos Signed-off-by: jolheiser <john.olheiser@gmail.com> * Change wording Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix repo search test. User had a private repo that didn't show up Signed-off-by: jolheiser <john.olheiser@gmail.com> * Another search test fix Signed-off-by: jolheiser <john.olheiser@gmail.com> * Clarify git content Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * Feedback updates Signed-off-by: jolheiser <john.olheiser@gmail.com> * Add topics WIP Signed-off-by: jolheiser <john.olheiser@gmail.com> * Finish adding topics Signed-off-by: jolheiser <john.olheiser@gmail.com> * Update locale Signed-off-by: jolheiser <john.olheiser@gmail.com>
4 years ago
Template Repositories (#8768) * Start work on templates Signed-off-by: jolheiser <john.olheiser@gmail.com> * Continue work Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix IsTemplate vs IsGenerated Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix tabs vs spaces * Tabs vs Spaces * Add templates to API & start adding tests Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix integration tests Signed-off-by: jolheiser <john.olheiser@gmail.com> * Remove unused User Signed-off-by: jolheiser <john.olheiser@gmail.com> * Move template tests to existing repos Signed-off-by: jolheiser <john.olheiser@gmail.com> * Minor re-check updates and cleanup Signed-off-by: jolheiser <john.olheiser@gmail.com> * make fmt Signed-off-by: jolheiser <john.olheiser@gmail.com> * Test cleanup Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix optionalbool Signed-off-by: jolheiser <john.olheiser@gmail.com> * make fmt Signed-off-by: jolheiser <john.olheiser@gmail.com> * Test fixes and icon change Signed-off-by: jolheiser <john.olheiser@gmail.com> * Add new user and repo for tests Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix tests (finally) Signed-off-by: jolheiser <john.olheiser@gmail.com> * Update meta repo with env variables Signed-off-by: jolheiser <john.olheiser@gmail.com> * Move generation to create page Combine with repo create template Modify API search to prioritize owner for repo Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix tests and coverage Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix swagger and JS lint Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix API searching for own private repos Signed-off-by: jolheiser <john.olheiser@gmail.com> * Change wording Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix repo search test. User had a private repo that didn't show up Signed-off-by: jolheiser <john.olheiser@gmail.com> * Another search test fix Signed-off-by: jolheiser <john.olheiser@gmail.com> * Clarify git content Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * Feedback updates Signed-off-by: jolheiser <john.olheiser@gmail.com> * Add topics WIP Signed-off-by: jolheiser <john.olheiser@gmail.com> * Finish adding topics Signed-off-by: jolheiser <john.olheiser@gmail.com> * Update locale Signed-off-by: jolheiser <john.olheiser@gmail.com>
4 years ago
Template Repositories (#8768) * Start work on templates Signed-off-by: jolheiser <john.olheiser@gmail.com> * Continue work Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix IsTemplate vs IsGenerated Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix tabs vs spaces * Tabs vs Spaces * Add templates to API & start adding tests Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix integration tests Signed-off-by: jolheiser <john.olheiser@gmail.com> * Remove unused User Signed-off-by: jolheiser <john.olheiser@gmail.com> * Move template tests to existing repos Signed-off-by: jolheiser <john.olheiser@gmail.com> * Minor re-check updates and cleanup Signed-off-by: jolheiser <john.olheiser@gmail.com> * make fmt Signed-off-by: jolheiser <john.olheiser@gmail.com> * Test cleanup Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix optionalbool Signed-off-by: jolheiser <john.olheiser@gmail.com> * make fmt Signed-off-by: jolheiser <john.olheiser@gmail.com> * Test fixes and icon change Signed-off-by: jolheiser <john.olheiser@gmail.com> * Add new user and repo for tests Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix tests (finally) Signed-off-by: jolheiser <john.olheiser@gmail.com> * Update meta repo with env variables Signed-off-by: jolheiser <john.olheiser@gmail.com> * Move generation to create page Combine with repo create template Modify API search to prioritize owner for repo Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix tests and coverage Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix swagger and JS lint Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix API searching for own private repos Signed-off-by: jolheiser <john.olheiser@gmail.com> * Change wording Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix repo search test. User had a private repo that didn't show up Signed-off-by: jolheiser <john.olheiser@gmail.com> * Another search test fix Signed-off-by: jolheiser <john.olheiser@gmail.com> * Clarify git content Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * Feedback updates Signed-off-by: jolheiser <john.olheiser@gmail.com> * Add topics WIP Signed-off-by: jolheiser <john.olheiser@gmail.com> * Finish adding topics Signed-off-by: jolheiser <john.olheiser@gmail.com> * Update locale Signed-off-by: jolheiser <john.olheiser@gmail.com>
4 years ago
Template Repositories (#8768) * Start work on templates Signed-off-by: jolheiser <john.olheiser@gmail.com> * Continue work Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix IsTemplate vs IsGenerated Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix tabs vs spaces * Tabs vs Spaces * Add templates to API & start adding tests Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix integration tests Signed-off-by: jolheiser <john.olheiser@gmail.com> * Remove unused User Signed-off-by: jolheiser <john.olheiser@gmail.com> * Move template tests to existing repos Signed-off-by: jolheiser <john.olheiser@gmail.com> * Minor re-check updates and cleanup Signed-off-by: jolheiser <john.olheiser@gmail.com> * make fmt Signed-off-by: jolheiser <john.olheiser@gmail.com> * Test cleanup Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix optionalbool Signed-off-by: jolheiser <john.olheiser@gmail.com> * make fmt Signed-off-by: jolheiser <john.olheiser@gmail.com> * Test fixes and icon change Signed-off-by: jolheiser <john.olheiser@gmail.com> * Add new user and repo for tests Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix tests (finally) Signed-off-by: jolheiser <john.olheiser@gmail.com> * Update meta repo with env variables Signed-off-by: jolheiser <john.olheiser@gmail.com> * Move generation to create page Combine with repo create template Modify API search to prioritize owner for repo Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix tests and coverage Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix swagger and JS lint Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix API searching for own private repos Signed-off-by: jolheiser <john.olheiser@gmail.com> * Change wording Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix repo search test. User had a private repo that didn't show up Signed-off-by: jolheiser <john.olheiser@gmail.com> * Another search test fix Signed-off-by: jolheiser <john.olheiser@gmail.com> * Clarify git content Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * Feedback updates Signed-off-by: jolheiser <john.olheiser@gmail.com> * Add topics WIP Signed-off-by: jolheiser <john.olheiser@gmail.com> * Finish adding topics Signed-off-by: jolheiser <john.olheiser@gmail.com> * Update locale Signed-off-by: jolheiser <john.olheiser@gmail.com>
4 years ago
Template Repositories (#8768) * Start work on templates Signed-off-by: jolheiser <john.olheiser@gmail.com> * Continue work Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix IsTemplate vs IsGenerated Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix tabs vs spaces * Tabs vs Spaces * Add templates to API & start adding tests Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix integration tests Signed-off-by: jolheiser <john.olheiser@gmail.com> * Remove unused User Signed-off-by: jolheiser <john.olheiser@gmail.com> * Move template tests to existing repos Signed-off-by: jolheiser <john.olheiser@gmail.com> * Minor re-check updates and cleanup Signed-off-by: jolheiser <john.olheiser@gmail.com> * make fmt Signed-off-by: jolheiser <john.olheiser@gmail.com> * Test cleanup Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix optionalbool Signed-off-by: jolheiser <john.olheiser@gmail.com> * make fmt Signed-off-by: jolheiser <john.olheiser@gmail.com> * Test fixes and icon change Signed-off-by: jolheiser <john.olheiser@gmail.com> * Add new user and repo for tests Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix tests (finally) Signed-off-by: jolheiser <john.olheiser@gmail.com> * Update meta repo with env variables Signed-off-by: jolheiser <john.olheiser@gmail.com> * Move generation to create page Combine with repo create template Modify API search to prioritize owner for repo Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix tests and coverage Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix swagger and JS lint Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix API searching for own private repos Signed-off-by: jolheiser <john.olheiser@gmail.com> * Change wording Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix repo search test. User had a private repo that didn't show up Signed-off-by: jolheiser <john.olheiser@gmail.com> * Another search test fix Signed-off-by: jolheiser <john.olheiser@gmail.com> * Clarify git content Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * Feedback updates Signed-off-by: jolheiser <john.olheiser@gmail.com> * Add topics WIP Signed-off-by: jolheiser <john.olheiser@gmail.com> * Finish adding topics Signed-off-by: jolheiser <john.olheiser@gmail.com> * Update locale Signed-off-by: jolheiser <john.olheiser@gmail.com>
4 years ago
Template Repositories (#8768) * Start work on templates Signed-off-by: jolheiser <john.olheiser@gmail.com> * Continue work Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix IsTemplate vs IsGenerated Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix tabs vs spaces * Tabs vs Spaces * Add templates to API & start adding tests Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix integration tests Signed-off-by: jolheiser <john.olheiser@gmail.com> * Remove unused User Signed-off-by: jolheiser <john.olheiser@gmail.com> * Move template tests to existing repos Signed-off-by: jolheiser <john.olheiser@gmail.com> * Minor re-check updates and cleanup Signed-off-by: jolheiser <john.olheiser@gmail.com> * make fmt Signed-off-by: jolheiser <john.olheiser@gmail.com> * Test cleanup Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix optionalbool Signed-off-by: jolheiser <john.olheiser@gmail.com> * make fmt Signed-off-by: jolheiser <john.olheiser@gmail.com> * Test fixes and icon change Signed-off-by: jolheiser <john.olheiser@gmail.com> * Add new user and repo for tests Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix tests (finally) Signed-off-by: jolheiser <john.olheiser@gmail.com> * Update meta repo with env variables Signed-off-by: jolheiser <john.olheiser@gmail.com> * Move generation to create page Combine with repo create template Modify API search to prioritize owner for repo Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix tests and coverage Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix swagger and JS lint Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix API searching for own private repos Signed-off-by: jolheiser <john.olheiser@gmail.com> * Change wording Signed-off-by: jolheiser <john.olheiser@gmail.com> * Fix repo search test. User had a private repo that didn't show up Signed-off-by: jolheiser <john.olheiser@gmail.com> * Another search test fix Signed-off-by: jolheiser <john.olheiser@gmail.com> * Clarify git content Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * Feedback updates Signed-off-by: jolheiser <john.olheiser@gmail.com> * Add topics WIP Signed-off-by: jolheiser <john.olheiser@gmail.com> * Finish adding topics Signed-off-by: jolheiser <john.olheiser@gmail.com> * Update locale Signed-off-by: jolheiser <john.olheiser@gmail.com>
4 years ago
Add Organization Wide Labels (#10814) * Add organization wide labels Implement organization wide labels similar to organization wide webhooks. This lets you create individual labels for organizations that can be used for all repos under that organization (so being able to reuse the same label across multiple repos). This makes it possible for small organizations with many repos to use labels effectively. Fixes #7406 * Add migration * remove comments * fix tests * Update options/locale/locale_en-US.ini Removed unused translation string * show org labels in issue search label filter * Use more clear var name * rename migration after merge from master * comment typo * update migration again after rebase with master * check for orgID <=0 per guillep2k review * fmt * Apply suggestions from code review Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * remove unused code * Make sure RepoID is 0 when searching orgID per code review * more changes/code review requests * More descriptive translation var per code review * func description/delete comment when issue label deleted instead of hiding it * remove comment * only use issues in that repo when calculating number of open issues for org label on repo label page * Add integration test for IssuesSearch API with labels * remove unused function * Update models/issue_label.go Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * Use subquery in GetLabelIDsInReposByNames * Fix tests to use correct orgID * fix more tests * IssuesSearch api now uses new BuildLabelNamesIssueIDsCondition. Add a few more tests as well * update comment for clarity * Revert previous code change now that we can use the new BuildLabelNamesIssueIDsCondition * Don't sort repos by date in IssuesSearch API After much debugging I've found a strange issue where in some cases MySQL will return a different result than other enigines if a query is sorted by a null collumn. For example with our integration test data where we don't set updated_unix in repository fixtures: SELECT `id`, `owner_id`, `owner_name`, `lower_name`, `name`, `description`, `website`, `original_service_type`, `original_url`, `default_branch`, `num_watches`, `num_stars`, `num_forks`, `num_issues`, `num_closed_issues`, `num_pulls`, `num_closed_pulls`, `num_milestones`, `num_closed_milestones`, `is_private`, `is_empty`, `is_archived`, `is_mirror`, `status`, `is_fork`, `fork_id`, `is_template`, `template_id`, `size`, `is_fsck_enabled`, `close_issues_via_commit_in_any_branch`, `topics`, `avatar`, `created_unix`, `updated_unix` FROM `repository` ORDER BY updated_unix DESC LIMIT 15 OFFSET 45 Returns different results for MySQL than other engines. However, the similar query: SELECT `id`, `owner_id`, `owner_name`, `lower_name`, `name`, `description`, `website`, `original_service_type`, `original_url`, `default_branch`, `num_watches`, `num_stars`, `num_forks`, `num_issues`, `num_closed_issues`, `num_pulls`, `num_closed_pulls`, `num_milestones`, `num_closed_milestones`, `is_private`, `is_empty`, `is_archived`, `is_mirror`, `status`, `is_fork`, `fork_id`, `is_template`, `template_id`, `size`, `is_fsck_enabled`, `close_issues_via_commit_in_any_branch`, `topics`, `avatar`, `created_unix`, `updated_unix` FROM `repository` ORDER BY updated_unix DESC LIMIT 15 OFFSET 30 Returns the same results. This causes integration tests to fail on MySQL in certain cases but would never show up in a real installation. Since this API call always returns issues based on the optionally provided repo_priority_id or the issueID itself, there is no change to results by changing the repo sorting method used to get ids earlier in the function. * linter is back! * code review * remove now unused option * Fix newline at end of files * more unused code * update to master * check for matching ids before query * Update models/issue_label.go Co-Authored-By: 6543 <6543@obermui.de> * Update models/issue_label.go * update comments * Update routers/org/setting.go Co-authored-by: Lauris BH <lauris@nix.lv> Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> Co-authored-by: 6543 <6543@obermui.de>
4 years ago
Git LFS support v2 (#122) * Import github.com/git-lfs/lfs-test-server as lfs module base Imported commit is 3968aac269a77b73924649b9412ae03f7ccd3198 Removed: Dockerfile CONTRIBUTING.md mgmt* script/ vendor/ kvlogger.go .dockerignore .gitignore README.md * Remove config, add JWT support from github.com/mgit-at/lfs-test-server Imported commit f0cdcc5a01599c5a955dc1bbf683bb4acecdba83 * Add LFS settings * Add LFS meta object model * Add LFS routes and initialization * Import github.com/dgrijalva/jwt-go into vendor/ * Adapt LFS module: handlers, routing, meta store * Move LFS routes to /user/repo/info/lfs/* * Add request header checks to LFS BatchHandler / PostHandler * Implement LFS basic authentication * Rework JWT secret generation / load * Implement LFS SSH token authentication with JWT Specification: https://github.com/github/git-lfs/tree/master/docs/api * Integrate LFS settings into install process * Remove LFS objects when repository is deleted Only removes objects from content store when deleted repo is the only referencing repository * Make LFS module stateless Fixes bug where LFS would not work after installation without restarting Gitea * Change 500 'Internal Server Error' to 400 'Bad Request' * Change sql query to xorm call * Remove unneeded type from LFS module * Change internal imports to code.gitea.io/gitea/ * Add Gitea authors copyright * Change basic auth realm to "gitea-lfs" * Add unique indexes to LFS model * Use xorm count function in LFS check on repository delete * Return io.ReadCloser from content store and close after usage * Add LFS info to runWeb() * Export LFS content store base path * LFS file download from UI * Work around git-lfs client issue with unauthenticated requests Returning a dummy Authorization header for unauthenticated requests lets git-lfs client skip asking for auth credentials See: https://github.com/github/git-lfs/issues/1088 * Fix unauthenticated UI downloads from public repositories * Authentication check order, Finish LFS file view logic * Ignore LFS hooks if installed for current OS user Fixes Gitea UI actions for repositories tracking LFS files. Checks for minimum needed git version by parsing the semantic version string. * Hide LFS metafile diff from commit view, marking as binary * Show LFS notice if file in commit view is tracked * Add notbefore/nbf JWT claim * Correct lint suggestions - comments for structs and functions - Add comments to LFS model - Function comment for GetRandomBytesAsBase64 - LFS server function comments and lint variable suggestion * Move secret generation code out of conditional Ensures no LFS code may run with an empty secret * Do not hand out JWT tokens if LFS server support is disabled
7 years ago
Squashed commit of the following: commit 0afcb843d7ffd596991c4885cab768273a6eb42c Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Sun Jul 31 17:13:29 2016 -0600 Removed Upload stats as the upload table is just a temporary table commit 7ecd73ff5535612d79d471409173ee7f1fcfa157 Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Sun Jul 31 08:42:41 2016 -0600 Fix for CodeMirror mode commit c29b9ab531e2e7af0fb5db24dc17e51027dd1174 Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Sun Jul 31 08:03:33 2016 -0600 Made tabbing in editor use spaces commit 23af384c53206a8a40e11e45bf49d7a149c4adcd Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Sun Jul 31 07:56:46 2016 -0600 Fix for data-url commit cfb8a97591cb6fc0a92e49563b7b764c524db0e9 Merge: 7fc8a89 991ce42 Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Sun Jul 31 07:42:53 2016 -0600 Merge remote-tracking branch 'gogits/develop' into feature-create-and-edit-repo-file Conflicts: modules/bindata/bindata.go public/js/gogs.js commit 7fc8a89cb495478225b02d613e647f99a1489634 Merge: fd3d86c c03d040 Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Sun Jul 31 07:40:00 2016 -0600 Merge branch 'feature-create-and-edit-repo-file' of github.com:richmahn/gogs into feature-create-and-edit-repo-file commit fd3d86ca6bbc02cfda566a504ffd6b03db4f75ef Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Sun Jul 31 07:39:44 2016 -0600 Code cleanup commit c03d0401c1049eeeccc32ab1f9c3303c130be5ee Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Fri Jul 29 15:38:23 2016 -0600 Code cleanup commit 98e1206ccf9f9a4503c020e3a7830cf9f861dfae Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Thu Jul 28 18:36:01 2016 -0600 Code cleanup and fixes commit c2895dc742f25f8412879c9fa15e18f27f42f194 Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Thu Jul 28 18:24:04 2016 -0600 Fixes per Unknwon's requests commit 6aa7e46b21ad4c96e562daa2eac26a8fb408f8ef Merge: 889e9fa ad7ea88 Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Thu Jul 28 17:13:43 2016 -0600 Merge remote-tracking branch 'gogits/develop' into feature-create-and-edit-repo-file Conflicts: modules/bindata/bindata.go modules/setting/setting.go commit 889e9faf1bd8559a4979c8f46005d488c1a234d4 Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Fri Jul 22 14:09:18 2016 -0600 Fix in gogs.js commit 47603edf223f147b114be65f3bd27bc1e88827a5 Merge: bb57912 cf85e9e Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Fri Jul 22 14:07:36 2016 -0600 Merge remote-tracking branch 'gogits/develop' into feature-create-and-edit-repo-file Conflicts: modules/bindata/bindata.go public/js/gogs.js commit bb5791255867a71c11a77b639db050ad09c597a4 Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Fri Jul 22 14:02:18 2016 -0600 Update for using CodeMirror mode addon commit d10d128c51039be19e2af9c66c63db66a9f2ec6d Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Tue Jul 19 16:12:57 2016 -0600 Update for Edit commit 34a34982025144e3225e389f7849eb6273c1d576 Merge: fa1b752 1c7dcdd Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Tue Jul 19 11:52:02 2016 -0600 Merge remote-tracking branch 'gogits/develop' into feature-create-and-edit-repo-file Conflicts: modules/bindata/bindata.go commit fa1b752be29cd455c5184ddac2ffe80b3489763e Author: Richard Mahn <richard_mahn@wycliffeassociates.org> Date: Fri Jul 15 18:35:42 2016 -0600 Feature for editing, creating, uploading and deleting files
7 years ago
8 years ago
9 years ago
8 years ago
8 years ago
Feature: Timetracking (#2211) * Added comment's hashtag to url for mail notifications. * Added explanation to return statement + documentation. * Replacing in-line link generation with HTMLURL. (+gofmt) * Replaced action-based model with nil-based model. (+gofmt) * Replaced mailIssueActionToParticipants with mailIssueCommentToParticipants. * Updating comment for mailIssueCommentToParticipants * Added link to comment in "Dashboard" * Deleting feed entry if a comment is going to be deleted * Added migration * Added improved migration to add a CommentID column to action. * Added improved links to comments in feed entries. * Fixes #1956 by filtering for deleted comments that are referenced in actions. * Introducing "IsDeleted" column to action. * Adding design draft (not functional) * Adding database models for stopwatches and trackedtimes * See go-gitea/gitea#967 * Adding design draft (not functional) * Adding translations and improving design * Implementing stopwatch (for timetracking) * Make UI functional * Add hints in timeline for time tracking events * Implementing timetracking feature * Adding "Add time manual" option * Improved stopwatch * Created report of total spent time by user * Only showing total time spent if theire is something to show. * Adding license headers. * Improved error handling for "Add Time Manual" * Adding @sapks 's changes, refactoring * Adding API for feature tracking * Adding unit test * Adding DISABLE/ENABLE option to Repository settings page * Improving translations * Applying @sapk 's changes * Removing repo_unit and using IssuesSetting for disabling/enabling timetracker * Adding DEFAULT_ENABLE_TIMETRACKER to config, installation and admin menu * Improving documentation * Fixing vendor/ folder * Changing timtracking routes by adding subgroups /times and /times/stopwatch (Proposed by @lafriks ) * Restricting write access to timetracking based on the repo settings (Proposed by @lafriks ) * Fixed minor permissions bug. * Adding CanUseTimetracker and IsTimetrackerEnabled in ctx.Repo * Allow assignees and authors to track there time too. * Fixed some build-time-errors + logical errors. * Removing unused Get...ByID functions * Moving IsTimetrackerEnabled from context.Repository to models.Repository * Adding a seperate file for issue related repo functions * Adding license headers * Fixed GetUserByParams return 404 * Moving /users/:username/times to /repos/:username/:reponame/times/:username for security reasons * Adding /repos/:username/times to get all tracked times of the repo * Updating sdk-dependency * Updating swagger.v1.json * Adding warning if user has already a running stopwatch (auto-timetracker) * Replacing GetTrackedTimesBy... with GetTrackedTimes(options FindTrackedTimesOptions) * Changing code.gitea.io/sdk back to code.gitea.io/sdk * Correcting spelling mistake * Updating vendor.json * Changing GET stopwatch/toggle to POST stopwatch/toggle * Changing GET stopwatch/cancel to POST stopwatch/cancel * Added migration for stopwatches/timetracking * Fixed some access bugs for read-only users * Added default allow only contributors to track time value to config * Fixed migration by chaging x.Iterate to x.Find * Resorted imports * Moved Add Time Manually form to repo_form.go * Removed "Seconds" field from Add Time Manually * Resorted imports * Improved permission checking * Fixed some bugs * Added integration test * gofmt * Adding integration test by @lafriks * Added created_unix to comment fixtures * Using last event instead of a fixed event * Adding another integration test by @lafriks * Fixing bug Timetracker enabled causing error 500 at sidebar.tpl * Fixed a refactoring bug that resulted in hiding "HasUserStopwatch" warning. * Returning TrackedTime instead of AddTimeOption at AddTime. * Updating SDK from go-gitea/go-sdk#69 * Resetting Go-SDK back to default repository * Fixing test-vendor by changing ini back to original repository * Adding "tags" to swagger spec * govendor sync * Removed duplicate * Formatting templates * Adding IsTimetrackingEnabled checks to API * Improving translations / english texts * Improving documentation * Updating swagger spec * Fixing integration test caused be translation-changes * Removed encoding issues in local_en-US.ini. * "Added" copyright line * Moved unit.IssuesConfig().EnableTimetracker into a != nil check * Removed some other encoding issues in local_en-US.ini * Improved javascript by checking if data-context exists * Replaced manual comment creation with CreateComment * Removed unnecessary code * Improved error checking * Small cosmetic changes * Replaced int>string>duration parsing with int>duration parsing * Fixed encoding issues * Removed unused imports Signed-off-by: Jonas Franz <info@jonasfranz.software>
6 years ago
Feature: Timetracking (#2211) * Added comment's hashtag to url for mail notifications. * Added explanation to return statement + documentation. * Replacing in-line link generation with HTMLURL. (+gofmt) * Replaced action-based model with nil-based model. (+gofmt) * Replaced mailIssueActionToParticipants with mailIssueCommentToParticipants. * Updating comment for mailIssueCommentToParticipants * Added link to comment in "Dashboard" * Deleting feed entry if a comment is going to be deleted * Added migration * Added improved migration to add a CommentID column to action. * Added improved links to comments in feed entries. * Fixes #1956 by filtering for deleted comments that are referenced in actions. * Introducing "IsDeleted" column to action. * Adding design draft (not functional) * Adding database models for stopwatches and trackedtimes * See go-gitea/gitea#967 * Adding design draft (not functional) * Adding translations and improving design * Implementing stopwatch (for timetracking) * Make UI functional * Add hints in timeline for time tracking events * Implementing timetracking feature * Adding "Add time manual" option * Improved stopwatch * Created report of total spent time by user * Only showing total time spent if theire is something to show. * Adding license headers. * Improved error handling for "Add Time Manual" * Adding @sapks 's changes, refactoring * Adding API for feature tracking * Adding unit test * Adding DISABLE/ENABLE option to Repository settings page * Improving translations * Applying @sapk 's changes * Removing repo_unit and using IssuesSetting for disabling/enabling timetracker * Adding DEFAULT_ENABLE_TIMETRACKER to config, installation and admin menu * Improving documentation * Fixing vendor/ folder * Changing timtracking routes by adding subgroups /times and /times/stopwatch (Proposed by @lafriks ) * Restricting write access to timetracking based on the repo settings (Proposed by @lafriks ) * Fixed minor permissions bug. * Adding CanUseTimetracker and IsTimetrackerEnabled in ctx.Repo * Allow assignees and authors to track there time too. * Fixed some build-time-errors + logical errors. * Removing unused Get...ByID functions * Moving IsTimetrackerEnabled from context.Repository to models.Repository * Adding a seperate file for issue related repo functions * Adding license headers * Fixed GetUserByParams return 404 * Moving /users/:username/times to /repos/:username/:reponame/times/:username for security reasons * Adding /repos/:username/times to get all tracked times of the repo * Updating sdk-dependency * Updating swagger.v1.json * Adding warning if user has already a running stopwatch (auto-timetracker) * Replacing GetTrackedTimesBy... with GetTrackedTimes(options FindTrackedTimesOptions) * Changing code.gitea.io/sdk back to code.gitea.io/sdk * Correcting spelling mistake * Updating vendor.json * Changing GET stopwatch/toggle to POST stopwatch/toggle * Changing GET stopwatch/cancel to POST stopwatch/cancel * Added migration for stopwatches/timetracking * Fixed some access bugs for read-only users * Added default allow only contributors to track time value to config * Fixed migration by chaging x.Iterate to x.Find * Resorted imports * Moved Add Time Manually form to repo_form.go * Removed "Seconds" field from Add Time Manually * Resorted imports * Improved permission checking * Fixed some bugs * Added integration test * gofmt * Adding integration test by @lafriks * Added created_unix to comment fixtures * Using last event instead of a fixed event * Adding another integration test by @lafriks * Fixing bug Timetracker enabled causing error 500 at sidebar.tpl * Fixed a refactoring bug that resulted in hiding "HasUserStopwatch" warning. * Returning TrackedTime instead of AddTimeOption at AddTime. * Updating SDK from go-gitea/go-sdk#69 * Resetting Go-SDK back to default repository * Fixing test-vendor by changing ini back to original repository * Adding "tags" to swagger spec * govendor sync * Removed duplicate * Formatting templates * Adding IsTimetrackingEnabled checks to API * Improving translations / english texts * Improving documentation * Updating swagger spec * Fixing integration test caused be translation-changes * Removed encoding issues in local_en-US.ini. * "Added" copyright line * Moved unit.IssuesConfig().EnableTimetracker into a != nil check * Removed some other encoding issues in local_en-US.ini * Improved javascript by checking if data-context exists * Replaced manual comment creation with CreateComment * Removed unnecessary code * Improved error checking * Small cosmetic changes * Replaced int>string>duration parsing with int>duration parsing * Fixed encoding issues * Removed unused imports Signed-off-by: Jonas Franz <info@jonasfranz.software>
6 years ago
Feature: Timetracking (#2211) * Added comment's hashtag to url for mail notifications. * Added explanation to return statement + documentation. * Replacing in-line link generation with HTMLURL. (+gofmt) * Replaced action-based model with nil-based model. (+gofmt) * Replaced mailIssueActionToParticipants with mailIssueCommentToParticipants. * Updating comment for mailIssueCommentToParticipants * Added link to comment in "Dashboard" * Deleting feed entry if a comment is going to be deleted * Added migration * Added improved migration to add a CommentID column to action. * Added improved links to comments in feed entries. * Fixes #1956 by filtering for deleted comments that are referenced in actions. * Introducing "IsDeleted" column to action. * Adding design draft (not functional) * Adding database models for stopwatches and trackedtimes * See go-gitea/gitea#967 * Adding design draft (not functional) * Adding translations and improving design * Implementing stopwatch (for timetracking) * Make UI functional * Add hints in timeline for time tracking events * Implementing timetracking feature * Adding "Add time manual" option * Improved stopwatch * Created report of total spent time by user * Only showing total time spent if theire is something to show. * Adding license headers. * Improved error handling for "Add Time Manual" * Adding @sapks 's changes, refactoring * Adding API for feature tracking * Adding unit test * Adding DISABLE/ENABLE option to Repository settings page * Improving translations * Applying @sapk 's changes * Removing repo_unit and using IssuesSetting for disabling/enabling timetracker * Adding DEFAULT_ENABLE_TIMETRACKER to config, installation and admin menu * Improving documentation * Fixing vendor/ folder * Changing timtracking routes by adding subgroups /times and /times/stopwatch (Proposed by @lafriks ) * Restricting write access to timetracking based on the repo settings (Proposed by @lafriks ) * Fixed minor permissions bug. * Adding CanUseTimetracker and IsTimetrackerEnabled in ctx.Repo * Allow assignees and authors to track there time too. * Fixed some build-time-errors + logical errors. * Removing unused Get...ByID functions * Moving IsTimetrackerEnabled from context.Repository to models.Repository * Adding a seperate file for issue related repo functions * Adding license headers * Fixed GetUserByParams return 404 * Moving /users/:username/times to /repos/:username/:reponame/times/:username for security reasons * Adding /repos/:username/times to get all tracked times of the repo * Updating sdk-dependency * Updating swagger.v1.json * Adding warning if user has already a running stopwatch (auto-timetracker) * Replacing GetTrackedTimesBy... with GetTrackedTimes(options FindTrackedTimesOptions) * Changing code.gitea.io/sdk back to code.gitea.io/sdk * Correcting spelling mistake * Updating vendor.json * Changing GET stopwatch/toggle to POST stopwatch/toggle * Changing GET stopwatch/cancel to POST stopwatch/cancel * Added migration for stopwatches/timetracking * Fixed some access bugs for read-only users * Added default allow only contributors to track time value to config * Fixed migration by chaging x.Iterate to x.Find * Resorted imports * Moved Add Time Manually form to repo_form.go * Removed "Seconds" field from Add Time Manually * Resorted imports * Improved permission checking * Fixed some bugs * Added integration test * gofmt * Adding integration test by @lafriks * Added created_unix to comment fixtures * Using last event instead of a fixed event * Adding another integration test by @lafriks * Fixing bug Timetracker enabled causing error 500 at sidebar.tpl * Fixed a refactoring bug that resulted in hiding "HasUserStopwatch" warning. * Returning TrackedTime instead of AddTimeOption at AddTime. * Updating SDK from go-gitea/go-sdk#69 * Resetting Go-SDK back to default repository * Fixing test-vendor by changing ini back to original repository * Adding "tags" to swagger spec * govendor sync * Removed duplicate * Formatting templates * Adding IsTimetrackingEnabled checks to API * Improving translations / english texts * Improving documentation * Updating swagger spec * Fixing integration test caused be translation-changes * Removed encoding issues in local_en-US.ini. * "Added" copyright line * Moved unit.IssuesConfig().EnableTimetracker into a != nil check * Removed some other encoding issues in local_en-US.ini * Improved javascript by checking if data-context exists * Replaced manual comment creation with CreateComment * Removed unnecessary code * Improved error checking * Small cosmetic changes * Replaced int>string>duration parsing with int>duration parsing * Fixed encoding issues * Removed unused imports Signed-off-by: Jonas Franz <info@jonasfranz.software>
6 years ago
Feature: Timetracking (#2211) * Added comment's hashtag to url for mail notifications. * Added explanation to return statement + documentation. * Replacing in-line link generation with HTMLURL. (+gofmt) * Replaced action-based model with nil-based model. (+gofmt) * Replaced mailIssueActionToParticipants with mailIssueCommentToParticipants. * Updating comment for mailIssueCommentToParticipants * Added link to comment in "Dashboard" * Deleting feed entry if a comment is going to be deleted * Added migration * Added improved migration to add a CommentID column to action. * Added improved links to comments in feed entries. * Fixes #1956 by filtering for deleted comments that are referenced in actions. * Introducing "IsDeleted" column to action. * Adding design draft (not functional) * Adding database models for stopwatches and trackedtimes * See go-gitea/gitea#967 * Adding design draft (not functional) * Adding translations and improving design * Implementing stopwatch (for timetracking) * Make UI functional * Add hints in timeline for time tracking events * Implementing timetracking feature * Adding "Add time manual" option * Improved stopwatch * Created report of total spent time by user * Only showing total time spent if theire is something to show. * Adding license headers. * Improved error handling for "Add Time Manual" * Adding @sapks 's changes, refactoring * Adding API for feature tracking * Adding unit test * Adding DISABLE/ENABLE option to Repository settings page * Improving translations * Applying @sapk 's changes * Removing repo_unit and using IssuesSetting for disabling/enabling timetracker * Adding DEFAULT_ENABLE_TIMETRACKER to config, installation and admin menu * Improving documentation * Fixing vendor/ folder * Changing timtracking routes by adding subgroups /times and /times/stopwatch (Proposed by @lafriks ) * Restricting write access to timetracking based on the repo settings (Proposed by @lafriks ) * Fixed minor permissions bug. * Adding CanUseTimetracker and IsTimetrackerEnabled in ctx.Repo * Allow assignees and authors to track there time too. * Fixed some build-time-errors + logical errors. * Removing unused Get...ByID functions * Moving IsTimetrackerEnabled from context.Repository to models.Repository * Adding a seperate file for issue related repo functions * Adding license headers * Fixed GetUserByParams return 404 * Moving /users/:username/times to /repos/:username/:reponame/times/:username for security reasons * Adding /repos/:username/times to get all tracked times of the repo * Updating sdk-dependency * Updating swagger.v1.json * Adding warning if user has already a running stopwatch (auto-timetracker) * Replacing GetTrackedTimesBy... with GetTrackedTimes(options FindTrackedTimesOptions) * Changing code.gitea.io/sdk back to code.gitea.io/sdk * Correcting spelling mistake * Updating vendor.json * Changing GET stopwatch/toggle to POST stopwatch/toggle * Changing GET stopwatch/cancel to POST stopwatch/cancel * Added migration for stopwatches/timetracking * Fixed some access bugs for read-only users * Added default allow only contributors to track time value to config * Fixed migration by chaging x.Iterate to x.Find * Resorted imports * Moved Add Time Manually form to repo_form.go * Removed "Seconds" field from Add Time Manually * Resorted imports * Improved permission checking * Fixed some bugs * Added integration test * gofmt * Adding integration test by @lafriks * Added created_unix to comment fixtures * Using last event instead of a fixed event * Adding another integration test by @lafriks * Fixing bug Timetracker enabled causing error 500 at sidebar.tpl * Fixed a refactoring bug that resulted in hiding "HasUserStopwatch" warning. * Returning TrackedTime instead of AddTimeOption at AddTime. * Updating SDK from go-gitea/go-sdk#69 * Resetting Go-SDK back to default repository * Fixing test-vendor by changing ini back to original repository * Adding "tags" to swagger spec * govendor sync * Removed duplicate * Formatting templates * Adding IsTimetrackingEnabled checks to API * Improving translations / english texts * Improving documentation * Updating swagger spec * Fixing integration test caused be translation-changes * Removed encoding issues in local_en-US.ini. * "Added" copyright line * Moved unit.IssuesConfig().EnableTimetracker into a != nil check * Removed some other encoding issues in local_en-US.ini * Improved javascript by checking if data-context exists * Replaced manual comment creation with CreateComment * Removed unnecessary code * Improved error checking * Small cosmetic changes * Replaced int>string>duration parsing with int>duration parsing * Fixed encoding issues * Removed unused imports Signed-off-by: Jonas Franz <info@jonasfranz.software>
6 years ago
Feature: Timetracking (#2211) * Added comment's hashtag to url for mail notifications. * Added explanation to return statement + documentation. * Replacing in-line link generation with HTMLURL. (+gofmt) * Replaced action-based model with nil-based model. (+gofmt) * Replaced mailIssueActionToParticipants with mailIssueCommentToParticipants. * Updating comment for mailIssueCommentToParticipants * Added link to comment in "Dashboard" * Deleting feed entry if a comment is going to be deleted * Added migration * Added improved migration to add a CommentID column to action. * Added improved links to comments in feed entries. * Fixes #1956 by filtering for deleted comments that are referenced in actions. * Introducing "IsDeleted" column to action. * Adding design draft (not functional) * Adding database models for stopwatches and trackedtimes * See go-gitea/gitea#967 * Adding design draft (not functional) * Adding translations and improving design * Implementing stopwatch (for timetracking) * Make UI functional * Add hints in timeline for time tracking events * Implementing timetracking feature * Adding "Add time manual" option * Improved stopwatch * Created report of total spent time by user * Only showing total time spent if theire is something to show. * Adding license headers. * Improved error handling for "Add Time Manual" * Adding @sapks 's changes, refactoring * Adding API for feature tracking * Adding unit test * Adding DISABLE/ENABLE option to Repository settings page * Improving translations * Applying @sapk 's changes * Removing repo_unit and using IssuesSetting for disabling/enabling timetracker * Adding DEFAULT_ENABLE_TIMETRACKER to config, installation and admin menu * Improving documentation * Fixing vendor/ folder * Changing timtracking routes by adding subgroups /times and /times/stopwatch (Proposed by @lafriks ) * Restricting write access to timetracking based on the repo settings (Proposed by @lafriks ) * Fixed minor permissions bug. * Adding CanUseTimetracker and IsTimetrackerEnabled in ctx.Repo * Allow assignees and authors to track there time too. * Fixed some build-time-errors + logical errors. * Removing unused Get...ByID functions * Moving IsTimetrackerEnabled from context.Repository to models.Repository * Adding a seperate file for issue related repo functions * Adding license headers * Fixed GetUserByParams return 404 * Moving /users/:username/times to /repos/:username/:reponame/times/:username for security reasons * Adding /repos/:username/times to get all tracked times of the repo * Updating sdk-dependency * Updating swagger.v1.json * Adding warning if user has already a running stopwatch (auto-timetracker) * Replacing GetTrackedTimesBy... with GetTrackedTimes(options FindTrackedTimesOptions) * Changing code.gitea.io/sdk back to code.gitea.io/sdk * Correcting spelling mistake * Updating vendor.json * Changing GET stopwatch/toggle to POST stopwatch/toggle * Changing GET stopwatch/cancel to POST stopwatch/cancel * Added migration for stopwatches/timetracking * Fixed some access bugs for read-only users * Added default allow only contributors to track time value to config * Fixed migration by chaging x.Iterate to x.Find * Resorted imports * Moved Add Time Manually form to repo_form.go * Removed "Seconds" field from Add Time Manually * Resorted imports * Improved permission checking * Fixed some bugs * Added integration test * gofmt * Adding integration test by @lafriks * Added created_unix to comment fixtures * Using last event instead of a fixed event * Adding another integration test by @lafriks * Fixing bug Timetracker enabled causing error 500 at sidebar.tpl * Fixed a refactoring bug that resulted in hiding "HasUserStopwatch" warning. * Returning TrackedTime instead of AddTimeOption at AddTime. * Updating SDK from go-gitea/go-sdk#69 * Resetting Go-SDK back to default repository * Fixing test-vendor by changing ini back to original repository * Adding "tags" to swagger spec * govendor sync * Removed duplicate * Formatting templates * Adding IsTimetrackingEnabled checks to API * Improving translations / english texts * Improving documentation * Updating swagger spec * Fixing integration test caused be translation-changes * Removed encoding issues in local_en-US.ini. * "Added" copyright line * Moved unit.IssuesConfig().EnableTimetracker into a != nil check * Removed some other encoding issues in local_en-US.ini * Improved javascript by checking if data-context exists * Replaced manual comment creation with CreateComment * Removed unnecessary code * Improved error checking * Small cosmetic changes * Replaced int>string>duration parsing with int>duration parsing * Fixed encoding issues * Removed unused imports Signed-off-by: Jonas Franz <info@jonasfranz.software>
6 years ago
Feature: Timetracking (#2211) * Added comment's hashtag to url for mail notifications. * Added explanation to return statement + documentation. * Replacing in-line link generation with HTMLURL. (+gofmt) * Replaced action-based model with nil-based model. (+gofmt) * Replaced mailIssueActionToParticipants with mailIssueCommentToParticipants. * Updating comment for mailIssueCommentToParticipants * Added link to comment in "Dashboard" * Deleting feed entry if a comment is going to be deleted * Added migration * Added improved migration to add a CommentID column to action. * Added improved links to comments in feed entries. * Fixes #1956 by filtering for deleted comments that are referenced in actions. * Introducing "IsDeleted" column to action. * Adding design draft (not functional) * Adding database models for stopwatches and trackedtimes * See go-gitea/gitea#967 * Adding design draft (not functional) * Adding translations and improving design * Implementing stopwatch (for timetracking) * Make UI functional * Add hints in timeline for time tracking events * Implementing timetracking feature * Adding "Add time manual" option * Improved stopwatch * Created report of total spent time by user * Only showing total time spent if theire is something to show. * Adding license headers. * Improved error handling for "Add Time Manual" * Adding @sapks 's changes, refactoring * Adding API for feature tracking * Adding unit test * Adding DISABLE/ENABLE option to Repository settings page * Improving translations * Applying @sapk 's changes * Removing repo_unit and using IssuesSetting for disabling/enabling timetracker * Adding DEFAULT_ENABLE_TIMETRACKER to config, installation and admin menu * Improving documentation * Fixing vendor/ folder * Changing timtracking routes by adding subgroups /times and /times/stopwatch (Proposed by @lafriks ) * Restricting write access to timetracking based on the repo settings (Proposed by @lafriks ) * Fixed minor permissions bug. * Adding CanUseTimetracker and IsTimetrackerEnabled in ctx.Repo * Allow assignees and authors to track there time too. * Fixed some build-time-errors + logical errors. * Removing unused Get...ByID functions * Moving IsTimetrackerEnabled from context.Repository to models.Repository * Adding a seperate file for issue related repo functions * Adding license headers * Fixed GetUserByParams return 404 * Moving /users/:username/times to /repos/:username/:reponame/times/:username for security reasons * Adding /repos/:username/times to get all tracked times of the repo * Updating sdk-dependency * Updating swagger.v1.json * Adding warning if user has already a running stopwatch (auto-timetracker) * Replacing GetTrackedTimesBy... with GetTrackedTimes(options FindTrackedTimesOptions) * Changing code.gitea.io/sdk back to code.gitea.io/sdk * Correcting spelling mistake * Updating vendor.json * Changing GET stopwatch/toggle to POST stopwatch/toggle * Changing GET stopwatch/cancel to POST stopwatch/cancel * Added migration for stopwatches/timetracking * Fixed some access bugs for read-only users * Added default allow only contributors to track time value to config * Fixed migration by chaging x.Iterate to x.Find * Resorted imports * Moved Add Time Manually form to repo_form.go * Removed "Seconds" field from Add Time Manually * Resorted imports * Improved permission checking * Fixed some bugs * Added integration test * gofmt * Adding integration test by @lafriks * Added created_unix to comment fixtures * Using last event instead of a fixed event * Adding another integration test by @lafriks * Fixing bug Timetracker enabled causing error 500 at sidebar.tpl * Fixed a refactoring bug that resulted in hiding "HasUserStopwatch" warning. * Returning TrackedTime instead of AddTimeOption at AddTime. * Updating SDK from go-gitea/go-sdk#69 * Resetting Go-SDK back to default repository * Fixing test-vendor by changing ini back to original repository * Adding "tags" to swagger spec * govendor sync * Removed duplicate * Formatting templates * Adding IsTimetrackingEnabled checks to API * Improving translations / english texts * Improving documentation * Updating swagger spec * Fixing integration test caused be translation-changes * Removed encoding issues in local_en-US.ini. * "Added" copyright line * Moved unit.IssuesConfig().EnableTimetracker into a != nil check * Removed some other encoding issues in local_en-US.ini * Improved javascript by checking if data-context exists * Replaced manual comment creation with CreateComment * Removed unnecessary code * Improved error checking * Small cosmetic changes * Replaced int>string>duration parsing with int>duration parsing * Fixed encoding issues * Removed unused imports Signed-off-by: Jonas Franz <info@jonasfranz.software>
6 years ago
Issue due date (#3794) * Started adding deadline to ui * Implemented basic issue due date managing * Improved UI for due date managing * Added at least write access to the repo in order to modify issue due dates * Ui improvements * Added issue comments creation when adding/modifying/removing a due date * Show due date in issue list * Added api support for issue due dates * Fixed lint suggestions * Added deadline to sdk * Updated css * Added support for adding/modifiying deadlines for pull requests via api * Fixed comments not created when updating or removing a deadline * update sdk (will do properly once go-gitea/go-sdk#103 is merged) * enhanced updateIssueDeadline * Removed unnessecary Issue.DeadlineString * UI improvements * Small improvments to comment creation + ui & validation improvements * Check if an issue is overdue is now a seperate function * Updated go-sdk with govendor as it was merged * Simplified isOverdue method * removed unessecary deadline to 0 set * Update swagger definitions * Added missing return * Added an explanary comment * Improved updateIssueDeadline method so it'll only update `deadline_unix` * Small changes and improvements * no need to explicitly load the issue when updating a deadline, just use whats already there * small optimisations * Added check if a deadline was modified before updating it * Moved comment creating logic into its own function * Code cleanup for creating deadline comment * locale improvement * When modifying a deadline, the old deadline is saved with the comment * small improvments to xorm session handling when updating an issue deadline + style nitpicks * style nitpicks * Moved checking for if the user has write acces to middleware
6 years ago
Shows total tracked time in issue and milestone list (#3341) * Show total tracked time in issue and milestone list Show total tracked time at issue page Signed-off-by: Jonas Franz <info@jonasfranz.software> * Optimizing TotalTimes by using SumInt Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fixing wrong total times for milestones caused by a missing JOIN Adding unit tests for total times Signed-off-by: Jonas Franz <info@jonasfranz.software> * Logging error instead of ignoring it Signed-off-by: Jonas Franz <info@jonasfranz.software> * Correcting spelling mistakes Signed-off-by: Jonas Franz <info@jonasfranz.software> * Change error message to a short version Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add error handling to TotalTimes Add variable for totalTimes Signed-off-by: Jonas Franz <info@jonasfranz.de> * Introduce TotalTrackedTimes as variable of issue Load TotalTrackedTimes by loading attributes of IssueList Load TotalTrackedTimes by loading attributes of single issue Add Sec2Time as helper to use it in templates Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fixed test + gofmt Signed-off-by: Jonas Franz <info@jonasfranz.software> * Load TotalTrackedTimes via MilestoneList instead of single requests Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add documentation for MilestoneList Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add documentation for MilestoneList Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix test Signed-off-by: Jonas Franz <info@jonasfranz.software> * Change comment from SQL query to description Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix unit test by using int64 instead of int Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix unit test by using int64 instead of int Signed-off-by: Jonas Franz <info@jonasfranz.software> * Check if timetracker is enabled Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix test by enabling timetracking Signed-off-by: Jonas Franz <info@jonasfranz.de>
6 years ago
Issue due date (#3794) * Started adding deadline to ui * Implemented basic issue due date managing * Improved UI for due date managing * Added at least write access to the repo in order to modify issue due dates * Ui improvements * Added issue comments creation when adding/modifying/removing a due date * Show due date in issue list * Added api support for issue due dates * Fixed lint suggestions * Added deadline to sdk * Updated css * Added support for adding/modifiying deadlines for pull requests via api * Fixed comments not created when updating or removing a deadline * update sdk (will do properly once go-gitea/go-sdk#103 is merged) * enhanced updateIssueDeadline * Removed unnessecary Issue.DeadlineString * UI improvements * Small improvments to comment creation + ui & validation improvements * Check if an issue is overdue is now a seperate function * Updated go-sdk with govendor as it was merged * Simplified isOverdue method * removed unessecary deadline to 0 set * Update swagger definitions * Added missing return * Added an explanary comment * Improved updateIssueDeadline method so it'll only update `deadline_unix` * Small changes and improvements * no need to explicitly load the issue when updating a deadline, just use whats already there * small optimisations * Added check if a deadline was modified before updating it * Moved comment creating logic into its own function * Code cleanup for creating deadline comment * locale improvement * When modifying a deadline, the old deadline is saved with the comment * small improvments to xorm session handling when updating an issue deadline + style nitpicks * style nitpicks * Moved checking for if the user has write acces to middleware
6 years ago
Issue due date (#3794) * Started adding deadline to ui * Implemented basic issue due date managing * Improved UI for due date managing * Added at least write access to the repo in order to modify issue due dates * Ui improvements * Added issue comments creation when adding/modifying/removing a due date * Show due date in issue list * Added api support for issue due dates * Fixed lint suggestions * Added deadline to sdk * Updated css * Added support for adding/modifiying deadlines for pull requests via api * Fixed comments not created when updating or removing a deadline * update sdk (will do properly once go-gitea/go-sdk#103 is merged) * enhanced updateIssueDeadline * Removed unnessecary Issue.DeadlineString * UI improvements * Small improvments to comment creation + ui & validation improvements * Check if an issue is overdue is now a seperate function * Updated go-sdk with govendor as it was merged * Simplified isOverdue method * removed unessecary deadline to 0 set * Update swagger definitions * Added missing return * Added an explanary comment * Improved updateIssueDeadline method so it'll only update `deadline_unix` * Small changes and improvements * no need to explicitly load the issue when updating a deadline, just use whats already there * small optimisations * Added check if a deadline was modified before updating it * Moved comment creating logic into its own function * Code cleanup for creating deadline comment * locale improvement * When modifying a deadline, the old deadline is saved with the comment * small improvments to xorm session handling when updating an issue deadline + style nitpicks * style nitpicks * Moved checking for if the user has write acces to middleware
6 years ago
Pull request review/approval and comment on code (#3748) * Initial ui components for pull request review * Add Review Add IssueComment types Signed-off-by: Jonas Franz <info@jonasfranz.software> (cherry picked from commit 2b4daab) Signed-off-by: Jonas Franz <info@jonasfranz.software> * Replace ReviewComment with Content Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add load functions Add ReviewID to findComments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add create review comment implementation Add migration for review Other small changes Signed-off-by: Jonas Franz <info@jonasfranz.software> * Simplified create and find functions for review Signed-off-by: Jonas Franz <info@jonasfranz.software> * Moved "Pending" to first position Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add GetCurrentReview to simplify fetching current review Signed-off-by: Jonas Franz <info@jonasfranz.software> * Preview for listing comments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Move new comment form to its own file Signed-off-by: Jonas Franz <info@jonasfranz.software> * Implement Review form Show Review comments on comment stream Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for single comments Showing buttons in context Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add pending tag to pending review comments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add unit tests for Review Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fetch all review ids at once Add unit tests Signed-off-by: Jonas Franz <info@jonasfranz.software> * gofmt Signed-off-by: Jonas Franz <info@jonasfranz.software> * Improved comment rendering in "Files" view by adding Comments to DiffLine Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for invalidating comments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Switched back to code.gitea.io/git Signed-off-by: Jonas Franz <info@jonasfranz.software> * Moved review migration from v64 to v65 Signed-off-by: Jonas Franz <info@jonasfranz.software> * Rebuild css Signed-off-by: Jonas Franz <info@jonasfranz.software> * gofmt Signed-off-by: Jonas Franz <info@jonasfranz.software> * Improve translations Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix unit tests by updating fixtures and updating outdated test Signed-off-by: Jonas Franz <info@jonasfranz.software> * Comments will be shown at the right place now Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for deleting CodeComments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix problems caused by files in subdirectories Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for showing code comments of reviews in conversation Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for "Show/Hide outdated" Signed-off-by: Jonas Franz <info@jonasfranz.software> * Update code.gitea.io/git Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for new webhooks Signed-off-by: Jonas Franz <info@jonasfranz.software> * Update comparison Signed-off-by: Jonas Franz <info@jonasfranz.software> * Resolve conflicts Signed-off-by: Jonas Franz <info@jonasfranz.software> * Minor UI improvements * update code.gitea.io/git * Fix ui bug reported by @lunny causing wrong position of add button Add functionality to "Cancel" button Add scale effects to add button Hide "Cancel" button for existing comments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Prepare solving conflicts Signed-off-by: Jonas Franz <info@jonasfranz.software> * Show add button only if no comments already exist for the line Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add missing vendor files Signed-off-by: Jonas Franz <info@jonasfranz.software> * Check if reviewer is nil Signed-off-by: Jonas Franz <info@jonasfranz.software> * Show forms only to users who are logged in Signed-off-by: Jonas Franz <info@jonasfranz.software> * Revert "Show forms only to users who are logged in" This reverts commit c083682 Signed-off-by: Jonas Franz <info@jonasfranz.software> * Save patch in comment Render patch for code comments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add link to comment in code Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add reply form to comment list Show forms only to signed in users Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add 'Reply' as translatable Add CODE_COMMENT_LINES setting Signed-off-by: Jonas Franz <info@jonasfranz.software> * gofmt Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix problems introduced by checking for singed in user Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add v70 Signed-off-by: Jonas Franz <info@jonasfranz.software> * Update generated stylesheet Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix preview Beginn with new review comment patch system Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add new algo to generate diff for line range Remove old algo used for cutting big diffs (it was very buggy) * Add documentation and example for CutDiffAroundLine * Fix example of CutDiffAroundLine * Fix some comment UI rendering bugs * Add code comment edit mode * Send notifications / actions to users until review gets published Fix diff generation bug Fix wrong hashtag * Fix vet errors * Send notifications also for single comments * Fix some notification bugs, fix link * Fix: add comment icon is only shown on code lines * Add lint comment * Add unit tests for git diff * Add more error messages * Regenerated css Signed-off-by: Jonas Franz <info@jonasfranz.software> * fmt Signed-off-by: Jonas Franz <info@jonasfranz.software> * Regenerated CSS with latest less version Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix test by updating comment type to new ID Signed-off-by: Jonas Franz <info@jonasfranz.software> * Introducing CodeComments as type for map[string]map[int64][]*Comment Other minor code improvements Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix data-tab issues Signed-off-by: Jonas Franz <info@jonasfranz.software> * Remove unnecessary change Signed-off-by: Jonas Franz <info@jonasfranz.software> * refactored checkForInvalidation Signed-off-by: Jonas Franz <info@jonasfranz.software> * Append comments instead of setting Signed-off-by: Jonas Franz <info@jonasfranz.software> * Use HeadRepo instead of BaseRepo Signed-off-by: Jonas Franz <info@jonasfranz.software> * Update migration Signed-off-by: Jonas Franz <info@jonasfranz.de> * Regenerated CSS Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add copyright Signed-off-by: Jonas Franz <info@jonasfranz.software> * Update index.css Signed-off-by: Jonas Franz <info@jonasfranz.software>
5 years ago
Pull request review/approval and comment on code (#3748) * Initial ui components for pull request review * Add Review Add IssueComment types Signed-off-by: Jonas Franz <info@jonasfranz.software> (cherry picked from commit 2b4daab) Signed-off-by: Jonas Franz <info@jonasfranz.software> * Replace ReviewComment with Content Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add load functions Add ReviewID to findComments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add create review comment implementation Add migration for review Other small changes Signed-off-by: Jonas Franz <info@jonasfranz.software> * Simplified create and find functions for review Signed-off-by: Jonas Franz <info@jonasfranz.software> * Moved "Pending" to first position Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add GetCurrentReview to simplify fetching current review Signed-off-by: Jonas Franz <info@jonasfranz.software> * Preview for listing comments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Move new comment form to its own file Signed-off-by: Jonas Franz <info@jonasfranz.software> * Implement Review form Show Review comments on comment stream Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for single comments Showing buttons in context Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add pending tag to pending review comments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add unit tests for Review Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fetch all review ids at once Add unit tests Signed-off-by: Jonas Franz <info@jonasfranz.software> * gofmt Signed-off-by: Jonas Franz <info@jonasfranz.software> * Improved comment rendering in "Files" view by adding Comments to DiffLine Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for invalidating comments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Switched back to code.gitea.io/git Signed-off-by: Jonas Franz <info@jonasfranz.software> * Moved review migration from v64 to v65 Signed-off-by: Jonas Franz <info@jonasfranz.software> * Rebuild css Signed-off-by: Jonas Franz <info@jonasfranz.software> * gofmt Signed-off-by: Jonas Franz <info@jonasfranz.software> * Improve translations Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix unit tests by updating fixtures and updating outdated test Signed-off-by: Jonas Franz <info@jonasfranz.software> * Comments will be shown at the right place now Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for deleting CodeComments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix problems caused by files in subdirectories Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for showing code comments of reviews in conversation Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for "Show/Hide outdated" Signed-off-by: Jonas Franz <info@jonasfranz.software> * Update code.gitea.io/git Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for new webhooks Signed-off-by: Jonas Franz <info@jonasfranz.software> * Update comparison Signed-off-by: Jonas Franz <info@jonasfranz.software> * Resolve conflicts Signed-off-by: Jonas Franz <info@jonasfranz.software> * Minor UI improvements * update code.gitea.io/git * Fix ui bug reported by @lunny causing wrong position of add button Add functionality to "Cancel" button Add scale effects to add button Hide "Cancel" button for existing comments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Prepare solving conflicts Signed-off-by: Jonas Franz <info@jonasfranz.software> * Show add button only if no comments already exist for the line Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add missing vendor files Signed-off-by: Jonas Franz <info@jonasfranz.software> * Check if reviewer is nil Signed-off-by: Jonas Franz <info@jonasfranz.software> * Show forms only to users who are logged in Signed-off-by: Jonas Franz <info@jonasfranz.software> * Revert "Show forms only to users who are logged in" This reverts commit c083682 Signed-off-by: Jonas Franz <info@jonasfranz.software> * Save patch in comment Render patch for code comments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add link to comment in code Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add reply form to comment list Show forms only to signed in users Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add 'Reply' as translatable Add CODE_COMMENT_LINES setting Signed-off-by: Jonas Franz <info@jonasfranz.software> * gofmt Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix problems introduced by checking for singed in user Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add v70 Signed-off-by: Jonas Franz <info@jonasfranz.software> * Update generated stylesheet Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix preview Beginn with new review comment patch system Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add new algo to generate diff for line range Remove old algo used for cutting big diffs (it was very buggy) * Add documentation and example for CutDiffAroundLine * Fix example of CutDiffAroundLine * Fix some comment UI rendering bugs * Add code comment edit mode * Send notifications / actions to users until review gets published Fix diff generation bug Fix wrong hashtag * Fix vet errors * Send notifications also for single comments * Fix some notification bugs, fix link * Fix: add comment icon is only shown on code lines * Add lint comment * Add unit tests for git diff * Add more error messages * Regenerated css Signed-off-by: Jonas Franz <info@jonasfranz.software> * fmt Signed-off-by: Jonas Franz <info@jonasfranz.software> * Regenerated CSS with latest less version Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix test by updating comment type to new ID Signed-off-by: Jonas Franz <info@jonasfranz.software> * Introducing CodeComments as type for map[string]map[int64][]*Comment Other minor code improvements Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix data-tab issues Signed-off-by: Jonas Franz <info@jonasfranz.software> * Remove unnecessary change Signed-off-by: Jonas Franz <info@jonasfranz.software> * refactored checkForInvalidation Signed-off-by: Jonas Franz <info@jonasfranz.software> * Append comments instead of setting Signed-off-by: Jonas Franz <info@jonasfranz.software> * Use HeadRepo instead of BaseRepo Signed-off-by: Jonas Franz <info@jonasfranz.software> * Update migration Signed-off-by: Jonas Franz <info@jonasfranz.de> * Regenerated CSS Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add copyright Signed-off-by: Jonas Franz <info@jonasfranz.software> * Update index.css Signed-off-by: Jonas Franz <info@jonasfranz.software>
5 years ago
Pull request review/approval and comment on code (#3748) * Initial ui components for pull request review * Add Review Add IssueComment types Signed-off-by: Jonas Franz <info@jonasfranz.software> (cherry picked from commit 2b4daab) Signed-off-by: Jonas Franz <info@jonasfranz.software> * Replace ReviewComment with Content Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add load functions Add ReviewID to findComments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add create review comment implementation Add migration for review Other small changes Signed-off-by: Jonas Franz <info@jonasfranz.software> * Simplified create and find functions for review Signed-off-by: Jonas Franz <info@jonasfranz.software> * Moved "Pending" to first position Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add GetCurrentReview to simplify fetching current review Signed-off-by: Jonas Franz <info@jonasfranz.software> * Preview for listing comments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Move new comment form to its own file Signed-off-by: Jonas Franz <info@jonasfranz.software> * Implement Review form Show Review comments on comment stream Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for single comments Showing buttons in context Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add pending tag to pending review comments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add unit tests for Review Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fetch all review ids at once Add unit tests Signed-off-by: Jonas Franz <info@jonasfranz.software> * gofmt Signed-off-by: Jonas Franz <info@jonasfranz.software> * Improved comment rendering in "Files" view by adding Comments to DiffLine Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for invalidating comments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Switched back to code.gitea.io/git Signed-off-by: Jonas Franz <info@jonasfranz.software> * Moved review migration from v64 to v65 Signed-off-by: Jonas Franz <info@jonasfranz.software> * Rebuild css Signed-off-by: Jonas Franz <info@jonasfranz.software> * gofmt Signed-off-by: Jonas Franz <info@jonasfranz.software> * Improve translations Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix unit tests by updating fixtures and updating outdated test Signed-off-by: Jonas Franz <info@jonasfranz.software> * Comments will be shown at the right place now Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for deleting CodeComments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix problems caused by files in subdirectories Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for showing code comments of reviews in conversation Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for "Show/Hide outdated" Signed-off-by: Jonas Franz <info@jonasfranz.software> * Update code.gitea.io/git Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for new webhooks Signed-off-by: Jonas Franz <info@jonasfranz.software> * Update comparison Signed-off-by: Jonas Franz <info@jonasfranz.software> * Resolve conflicts Signed-off-by: Jonas Franz <info@jonasfranz.software> * Minor UI improvements * update code.gitea.io/git * Fix ui bug reported by @lunny causing wrong position of add button Add functionality to "Cancel" button Add scale effects to add button Hide "Cancel" button for existing comments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Prepare solving conflicts Signed-off-by: Jonas Franz <info@jonasfranz.software> * Show add button only if no comments already exist for the line Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add missing vendor files Signed-off-by: Jonas Franz <info@jonasfranz.software> * Check if reviewer is nil Signed-off-by: Jonas Franz <info@jonasfranz.software> * Show forms only to users who are logged in Signed-off-by: Jonas Franz <info@jonasfranz.software> * Revert "Show forms only to users who are logged in" This reverts commit c083682 Signed-off-by: Jonas Franz <info@jonasfranz.software> * Save patch in comment Render patch for code comments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add link to comment in code Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add reply form to comment list Show forms only to signed in users Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add 'Reply' as translatable Add CODE_COMMENT_LINES setting Signed-off-by: Jonas Franz <info@jonasfranz.software> * gofmt Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix problems introduced by checking for singed in user Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add v70 Signed-off-by: Jonas Franz <info@jonasfranz.software> * Update generated stylesheet Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix preview Beginn with new review comment patch system Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add new algo to generate diff for line range Remove old algo used for cutting big diffs (it was very buggy) * Add documentation and example for CutDiffAroundLine * Fix example of CutDiffAroundLine * Fix some comment UI rendering bugs * Add code comment edit mode * Send notifications / actions to users until review gets published Fix diff generation bug Fix wrong hashtag * Fix vet errors * Send notifications also for single comments * Fix some notification bugs, fix link * Fix: add comment icon is only shown on code lines * Add lint comment * Add unit tests for git diff * Add more error messages * Regenerated css Signed-off-by: Jonas Franz <info@jonasfranz.software> * fmt Signed-off-by: Jonas Franz <info@jonasfranz.software> * Regenerated CSS with latest less version Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix test by updating comment type to new ID Signed-off-by: Jonas Franz <info@jonasfranz.software> * Introducing CodeComments as type for map[string]map[int64][]*Comment Other minor code improvements Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix data-tab issues Signed-off-by: Jonas Franz <info@jonasfranz.software> * Remove unnecessary change Signed-off-by: Jonas Franz <info@jonasfranz.software> * refactored checkForInvalidation Signed-off-by: Jonas Franz <info@jonasfranz.software> * Append comments instead of setting Signed-off-by: Jonas Franz <info@jonasfranz.software> * Use HeadRepo instead of BaseRepo Signed-off-by: Jonas Franz <info@jonasfranz.software> * Update migration Signed-off-by: Jonas Franz <info@jonasfranz.de> * Regenerated CSS Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add copyright Signed-off-by: Jonas Franz <info@jonasfranz.software> * Update index.css Signed-off-by: Jonas Franz <info@jonasfranz.software>
5 years ago
8 years ago
8 years ago
8 years ago
Change target branch for pull request (#6488) * Adds functionality to change target branch of created pull requests Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Use const instead of var in JavaScript additions Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Check if branches are equal and if PR already exists before changing target branch Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Make sure to check all commits Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Print error messages for user as error flash message Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Disallow changing target branch of closed or merged pull requests Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Resolve conflicts after merge of upstream/master Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Change order of branch select fields Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Removes duplicate check Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Use ctx.Tr for translations Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Recompile JS Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Use correct translation namespace Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Remove redundant if condition Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Moves most change branch logic into pull service Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Completes comment Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Add Ref to ChangesPayload for logging changed target branches instead of creating a new struct Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Revert changes to go.mod Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Directly use createComment method Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Return 404 if pull request is not found. Move written check up Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Remove variable declaration Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Return client errors on change pull request target errors Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Return error in commit.HasPreviousCommit Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Adds blank line Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Test patch before persisting new target branch Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Update patch before testing (not working) Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Removes patch calls when changeing pull request target Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Removes unneeded check for base name Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Moves ChangeTargetBranch completely to pull service. Update patch status. Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Set webhook mode after errors were validated Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Update PR in one transaction Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Move logic for check if head is equal with branch to pull model Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Adds missing comment and simplify return Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Adjust CreateComment method call Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com>
4 years ago
Change target branch for pull request (#6488) * Adds functionality to change target branch of created pull requests Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Use const instead of var in JavaScript additions Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Check if branches are equal and if PR already exists before changing target branch Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Make sure to check all commits Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Print error messages for user as error flash message Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Disallow changing target branch of closed or merged pull requests Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Resolve conflicts after merge of upstream/master Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Change order of branch select fields Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Removes duplicate check Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Use ctx.Tr for translations Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Recompile JS Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Use correct translation namespace Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Remove redundant if condition Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Moves most change branch logic into pull service Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Completes comment Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Add Ref to ChangesPayload for logging changed target branches instead of creating a new struct Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Revert changes to go.mod Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Directly use createComment method Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Return 404 if pull request is not found. Move written check up Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Remove variable declaration Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Return client errors on change pull request target errors Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Return error in commit.HasPreviousCommit Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Adds blank line Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Test patch before persisting new target branch Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Update patch before testing (not working) Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Removes patch calls when changeing pull request target Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Removes unneeded check for base name Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Moves ChangeTargetBranch completely to pull service. Update patch status. Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Set webhook mode after errors were validated Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Update PR in one transaction Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Move logic for check if head is equal with branch to pull model Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Adds missing comment and simplify return Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Adjust CreateComment method call Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com>
4 years ago
Change target branch for pull request (#6488) * Adds functionality to change target branch of created pull requests Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Use const instead of var in JavaScript additions Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Check if branches are equal and if PR already exists before changing target branch Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Make sure to check all commits Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Print error messages for user as error flash message Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Disallow changing target branch of closed or merged pull requests Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Resolve conflicts after merge of upstream/master Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Change order of branch select fields Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Removes duplicate check Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Use ctx.Tr for translations Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Recompile JS Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Use correct translation namespace Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Remove redundant if condition Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Moves most change branch logic into pull service Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Completes comment Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Add Ref to ChangesPayload for logging changed target branches instead of creating a new struct Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Revert changes to go.mod Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Directly use createComment method Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Return 404 if pull request is not found. Move written check up Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Remove variable declaration Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Return client errors on change pull request target errors Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Return error in commit.HasPreviousCommit Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Adds blank line Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Test patch before persisting new target branch Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Update patch before testing (not working) Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Removes patch calls when changeing pull request target Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Removes unneeded check for base name Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Moves ChangeTargetBranch completely to pull service. Update patch status. Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Set webhook mode after errors were validated Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Update PR in one transaction Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Move logic for check if head is equal with branch to pull model Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Adds missing comment and simplify return Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Adjust CreateComment method call Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com>
4 years ago
8 years ago
8 years ago
8 years ago
8 years ago
9 years ago
9 years ago
8 years ago
8 years ago
Graceful Queues: Issue Indexing and Tasks (#9363) * Queue: Add generic graceful queues with settings * Queue & Setting: Add worker pool implementation * Queue: Add worker settings * Queue: Make resizing worker pools * Queue: Add name variable to queues * Queue: Add monitoring * Queue: Improve logging * Issues: Gracefulise the issues indexer Remove the old now unused specific queues * Task: Move to generic queue and gracefulise * Issues: Standardise the issues indexer queue settings * Fix test * Queue: Allow Redis to connect to unix * Prevent deadlock during early shutdown of issue indexer * Add MaxWorker settings to queues * Merge branch 'master' into graceful-queues * Update modules/indexer/issues/indexer.go Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * Update modules/indexer/issues/indexer.go Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * Update modules/queue/queue_channel.go Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * Update modules/queue/queue_disk.go * Update modules/queue/queue_disk_channel.go Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * Rename queue.Description to queue.ManagedQueue as per @guillep2k * Cancel pool workers when removed * Remove dependency on queue from setting * Update modules/queue/queue_redis.go Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * As per @guillep2k add mutex locks on shutdown/terminate * move unlocking out of setInternal * Add warning if number of workers < 0 * Small changes as per @guillep2k * No redis host specified not found * Clean up documentation for queues * Update docs/content/doc/advanced/config-cheat-sheet.en-us.md * Update modules/indexer/issues/indexer_test.go * Ensure that persistable channel queue is added to manager * Rename QUEUE_NAME REDIS_QUEUE_NAME * Revert "Rename QUEUE_NAME REDIS_QUEUE_NAME" This reverts commit 1f83b4fc9b9dabda186257b38c265fe7012f90df. Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> Co-authored-by: Lauris BH <lauris@nix.lv> Co-authored-by: techknowlogick <matti@mdranta.net> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
4 years ago
Repository avatars (#6986) * Repository avatars - first variant of code from old work for gogs - add migration 87 - add new option in app.ini - add en-US locale string - add new class in repository.less * Add changed index.css, remove unused template name * Update en-us doc about configuration options * Add comments to new functions, add new option to docker app.ini * Add comment for lint * Remove variable, not needed * Fix formatting * Update swagger api template * Check if avatar exists * Fix avatar link/path checks * Typo * TEXT column can't have a default value * Fixes: - remove old avatar file on upload - use ID in name of avatar file - users may upload same files - add simple tests * Fix fmt check * Generate PNG instead of "static" GIF * More informative comment * Fix error message * Update avatar upload checks: - add file size check - add new option - update config docs - add new string to en-us locale * Fixes: - use FileHEader field for check file size - add new test - upload big image * Fix formatting * Update comments * Update log message * Removed wrong style - not needed * Use Sync2 to migrate * Update repos list view - bigger avatar - fix html blocks alignment * A little adjust avatar size * Use small icons for explore/repo list * Use new cool avatar preparation func by @lafriks * Missing changes for new function * Remove unused import, move imports * Missed new option definition in app.ini Add file size check in user/profile avatar upload * Use smaller field length for Avatar * Use session to update repo DB data, update DeleteAvatar - use session too * Fix err variable definition * As suggested @lafriks - return as soon as possible, code readability
5 years ago
Adds side-by-side diff for images (#6784) * Adds side-by-side diff for images Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Explain blank imports Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Use complete word for width and height labels on image compare Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Update index.css from master Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Moves ImageInfo to git commit file Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Assign ImageInfo function for template and sets correct target for BeforeSourcePath Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Adds missing comment Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Return error if ImageInfo failed Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Avoid template panic when ImageInfo failed for some reason Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Show file size on image diff Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Removes unused helper function Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Reverts copyright year change Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Close file reader Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Update commit.go Sets correct data key * Moves reader.Close() up a few lines * Updates index.css * Updates CSS file Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Transfers adjustments for image compare to compare.go file Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Adjusts variable name Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Apply lesshint recommendations Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Do not show old image on image compare if it is not in index of base commit Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com> * Change file size text Signed-off-by: Mario Lubenka <mario.lubenka@googlemail.com>
4 years ago
8 years ago
Pull request review/approval and comment on code (#3748) * Initial ui components for pull request review * Add Review Add IssueComment types Signed-off-by: Jonas Franz <info@jonasfranz.software> (cherry picked from commit 2b4daab) Signed-off-by: Jonas Franz <info@jonasfranz.software> * Replace ReviewComment with Content Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add load functions Add ReviewID to findComments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add create review comment implementation Add migration for review Other small changes Signed-off-by: Jonas Franz <info@jonasfranz.software> * Simplified create and find functions for review Signed-off-by: Jonas Franz <info@jonasfranz.software> * Moved "Pending" to first position Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add GetCurrentReview to simplify fetching current review Signed-off-by: Jonas Franz <info@jonasfranz.software> * Preview for listing comments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Move new comment form to its own file Signed-off-by: Jonas Franz <info@jonasfranz.software> * Implement Review form Show Review comments on comment stream Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for single comments Showing buttons in context Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add pending tag to pending review comments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add unit tests for Review Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fetch all review ids at once Add unit tests Signed-off-by: Jonas Franz <info@jonasfranz.software> * gofmt Signed-off-by: Jonas Franz <info@jonasfranz.software> * Improved comment rendering in "Files" view by adding Comments to DiffLine Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for invalidating comments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Switched back to code.gitea.io/git Signed-off-by: Jonas Franz <info@jonasfranz.software> * Moved review migration from v64 to v65 Signed-off-by: Jonas Franz <info@jonasfranz.software> * Rebuild css Signed-off-by: Jonas Franz <info@jonasfranz.software> * gofmt Signed-off-by: Jonas Franz <info@jonasfranz.software> * Improve translations Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix unit tests by updating fixtures and updating outdated test Signed-off-by: Jonas Franz <info@jonasfranz.software> * Comments will be shown at the right place now Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for deleting CodeComments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix problems caused by files in subdirectories Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for showing code comments of reviews in conversation Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for "Show/Hide outdated" Signed-off-by: Jonas Franz <info@jonasfranz.software> * Update code.gitea.io/git Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add support for new webhooks Signed-off-by: Jonas Franz <info@jonasfranz.software> * Update comparison Signed-off-by: Jonas Franz <info@jonasfranz.software> * Resolve conflicts Signed-off-by: Jonas Franz <info@jonasfranz.software> * Minor UI improvements * update code.gitea.io/git * Fix ui bug reported by @lunny causing wrong position of add button Add functionality to "Cancel" button Add scale effects to add button Hide "Cancel" button for existing comments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Prepare solving conflicts Signed-off-by: Jonas Franz <info@jonasfranz.software> * Show add button only if no comments already exist for the line Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add missing vendor files Signed-off-by: Jonas Franz <info@jonasfranz.software> * Check if reviewer is nil Signed-off-by: Jonas Franz <info@jonasfranz.software> * Show forms only to users who are logged in Signed-off-by: Jonas Franz <info@jonasfranz.software> * Revert "Show forms only to users who are logged in" This reverts commit c083682 Signed-off-by: Jonas Franz <info@jonasfranz.software> * Save patch in comment Render patch for code comments Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add link to comment in code Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add reply form to comment list Show forms only to signed in users Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add 'Reply' as translatable Add CODE_COMMENT_LINES setting Signed-off-by: Jonas Franz <info@jonasfranz.software> * gofmt Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix problems introduced by checking for singed in user Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add v70 Signed-off-by: Jonas Franz <info@jonasfranz.software> * Update generated stylesheet Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix preview Beginn with new review comment patch system Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add new algo to generate diff for line range Remove old algo used for cutting big diffs (it was very buggy) * Add documentation and example for CutDiffAroundLine * Fix example of CutDiffAroundLine * Fix some comment UI rendering bugs * Add code comment edit mode * Send notifications / actions to users until review gets published Fix diff generation bug Fix wrong hashtag * Fix vet errors * Send notifications also for single comments * Fix some notification bugs, fix link * Fix: add comment icon is only shown on code lines * Add lint comment * Add unit tests for git diff * Add more error messages * Regenerated css Signed-off-by: Jonas Franz <info@jonasfranz.software> * fmt Signed-off-by: Jonas Franz <info@jonasfranz.software> * Regenerated CSS with latest less version Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix test by updating comment type to new ID Signed-off-by: Jonas Franz <info@jonasfranz.software> * Introducing CodeComments as type for map[string]map[int64][]*Comment Other minor code improvements Signed-off-by: Jonas Franz <info@jonasfranz.software> * Fix data-tab issues Signed-off-by: Jonas Franz <info@jonasfranz.software> * Remove unnecessary change Signed-off-by: Jonas Franz <info@jonasfranz.software> * refactored checkForInvalidation Signed-off-by: Jonas Franz <info@jonasfranz.software> * Append comments instead of setting Signed-off-by: Jonas Franz <info@jonasfranz.software> * Use HeadRepo instead of BaseRepo Signed-off-by: Jonas Franz <info@jonasfranz.software> * Update migration Signed-off-by: Jonas Franz <info@jonasfranz.de> * Regenerated CSS Signed-off-by: Jonas Franz <info@jonasfranz.software> * Add copyright Signed-off-by: Jonas Franz <info@jonasfranz.software> * Update index.css Signed-off-by: Jonas Franz <info@jonasfranz.software>
5 years ago
8 years ago
8 years ago
8 years ago
8 years ago
Add Organization Wide Labels (#10814) * Add organization wide labels Implement organization wide labels similar to organization wide webhooks. This lets you create individual labels for organizations that can be used for all repos under that organization (so being able to reuse the same label across multiple repos). This makes it possible for small organizations with many repos to use labels effectively. Fixes #7406 * Add migration * remove comments * fix tests * Update options/locale/locale_en-US.ini Removed unused translation string * show org labels in issue search label filter * Use more clear var name * rename migration after merge from master * comment typo * update migration again after rebase with master * check for orgID <=0 per guillep2k review * fmt * Apply suggestions from code review Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * remove unused code * Make sure RepoID is 0 when searching orgID per code review * more changes/code review requests * More descriptive translation var per code review * func description/delete comment when issue label deleted instead of hiding it * remove comment * only use issues in that repo when calculating number of open issues for org label on repo label page * Add integration test for IssuesSearch API with labels * remove unused function * Update models/issue_label.go Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * Use subquery in GetLabelIDsInReposByNames * Fix tests to use correct orgID * fix more tests * IssuesSearch api now uses new BuildLabelNamesIssueIDsCondition. Add a few more tests as well * update comment for clarity * Revert previous code change now that we can use the new BuildLabelNamesIssueIDsCondition * Don't sort repos by date in IssuesSearch API After much debugging I've found a strange issue where in some cases MySQL will return a different result than other enigines if a query is sorted by a null collumn. For example with our integration test data where we don't set updated_unix in repository fixtures: SELECT `id`, `owner_id`, `owner_name`, `lower_name`, `name`, `description`, `website`, `original_service_type`, `original_url`, `default_branch`, `num_watches`, `num_stars`, `num_forks`, `num_issues`, `num_closed_issues`, `num_pulls`, `num_closed_pulls`, `num_milestones`, `num_closed_milestones`, `is_private`, `is_empty`, `is_archived`, `is_mirror`, `status`, `is_fork`, `fork_id`, `is_template`, `template_id`, `size`, `is_fsck_enabled`, `close_issues_via_commit_in_any_branch`, `topics`, `avatar`, `created_unix`, `updated_unix` FROM `repository` ORDER BY updated_unix DESC LIMIT 15 OFFSET 45 Returns different results for MySQL than other engines. However, the similar query: SELECT `id`, `owner_id`, `owner_name`, `lower_name`, `name`, `description`, `website`, `original_service_type`, `original_url`, `default_branch`, `num_watches`, `num_stars`, `num_forks`, `num_issues`, `num_closed_issues`, `num_pulls`, `num_closed_pulls`, `num_milestones`, `num_closed_milestones`, `is_private`, `is_empty`, `is_archived`, `is_mirror`, `status`, `is_fork`, `fork_id`, `is_template`, `template_id`, `size`, `is_fsck_enabled`, `close_issues_via_commit_in_any_branch`, `topics`, `avatar`, `created_unix`, `updated_unix` FROM `repository` ORDER BY updated_unix DESC LIMIT 15 OFFSET 30 Returns the same results. This causes integration tests to fail on MySQL in certain cases but would never show up in a real installation. Since this API call always returns issues based on the optionally provided repo_priority_id or the issueID itself, there is no change to results by changing the repo sorting method used to get ids earlier in the function. * linter is back! * code review * remove now unused option * Fix newline at end of files * more unused code * update to master * check for matching ids before query * Update models/issue_label.go Co-Authored-By: 6543 <6543@obermui.de> * Update models/issue_label.go * update comments * Update routers/org/setting.go Co-authored-by: Lauris BH <lauris@nix.lv> Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> Co-authored-by: 6543 <6543@obermui.de>
4 years ago
8 years ago
8 years ago
8 years ago
Restricted users (#6274) * Restricted users (#4334): initial implementation * Add User.IsRestricted & UI to edit it * Pass user object instead of user id to places where IsRestricted flag matters * Restricted users: maintain access rows for all referenced repos (incl public) * Take logged in user & IsRestricted flag into account in org/repo listings, searches and accesses * Add basic repo access tests for restricted users Signed-off-by: Manush Dodunekov <manush@stendahls.se> * Mention restricted users in the faq Signed-off-by: Manush Dodunekov <manush@stendahls.se> * Revert unnecessary change `.isUserPartOfOrg` -> `.IsUserPartOfOrg` Signed-off-by: Manush Dodunekov <manush@stendahls.se> * Remove unnecessary `org.IsOrganization()` call Signed-off-by: Manush Dodunekov <manush@stendahls.se> * Revert to an `int64` keyed `accessMap` * Add type `userAccess` * Add convenience func updateUserAccess() * Turn accessMap into a `map[int64]userAccess` Signed-off-by: Manush Dodunekov <manush@stendahls.se> * or even better: `map[int64]*userAccess` * updateUserAccess(): use tighter syntax as suggested by lafriks * even tighter * Avoid extra loop * Don't disclose limited orgs to unauthenticated users * Don't assume block only applies to orgs * Use an array of `VisibleType` for filtering * fix yet another thinko * Ok - no need for u * Revert "Ok - no need for u" This reverts commit 5c3e886aabd5acd997a3b35687d322439732c200. Co-authored-by: Antoine GIRARD <sapk@users.noreply.github.com> Co-authored-by: Lauris BH <lauris@nix.lv>
4 years ago
Restricted users (#6274) * Restricted users (#4334): initial implementation * Add User.IsRestricted & UI to edit it * Pass user object instead of user id to places where IsRestricted flag matters * Restricted users: maintain access rows for all referenced repos (incl public) * Take logged in user & IsRestricted flag into account in org/repo listings, searches and accesses * Add basic repo access tests for restricted users Signed-off-by: Manush Dodunekov <manush@stendahls.se> * Mention restricted users in the faq Signed-off-by: Manush Dodunekov <manush@stendahls.se> * Revert unnecessary change `.isUserPartOfOrg` -> `.IsUserPartOfOrg` Signed-off-by: Manush Dodunekov <manush@stendahls.se> * Remove unnecessary `org.IsOrganization()` call Signed-off-by: Manush Dodunekov <manush@stendahls.se> * Revert to an `int64` keyed `accessMap` * Add type `userAccess` * Add convenience func updateUserAccess() * Turn accessMap into a `map[int64]userAccess` Signed-off-by: Manush Dodunekov <manush@stendahls.se> * or even better: `map[int64]*userAccess` * updateUserAccess(): use tighter syntax as suggested by lafriks * even tighter * Avoid extra loop * Don't disclose limited orgs to unauthenticated users * Don't assume block only applies to orgs * Use an array of `VisibleType` for filtering * fix yet another thinko * Ok - no need for u * Revert "Ok - no need for u" This reverts commit 5c3e886aabd5acd997a3b35687d322439732c200. Co-authored-by: Antoine GIRARD <sapk@users.noreply.github.com> Co-authored-by: Lauris BH <lauris@nix.lv>
4 years ago
Oauth2 consumer (#679) * initial stuff for oauth2 login, fails on: * login button on the signIn page to start the OAuth2 flow and a callback for each provider Only GitHub is implemented for now * show login button only when the OAuth2 consumer is configured (and activated) * create macaron group for oauth2 urls * prevent net/http in modules (other then oauth2) * use a new data sessions oauth2 folder for storing the oauth2 session data * add missing 2FA when this is enabled on the user * add password option for OAuth2 user , for use with git over http and login to the GUI * add tip for registering a GitHub OAuth application * at startup of Gitea register all configured providers and also on adding/deleting of new providers * custom handling of errors in oauth2 request init + show better tip * add ExternalLoginUser model and migration script to add it to database * link a external account to an existing account (still need to handle wrong login and signup) and remove if user is removed * remove the linked external account from the user his settings * if user is unknown we allow him to register a new account or link it to some existing account * sign up with button on signin page (als change OAuth2Provider structure so we can store basic stuff about providers) * from gorilla/sessions docs: "Important Note: If you aren't using gorilla/mux, you need to wrap your handlers with context.ClearHandler as or else you will leak memory!" (we're using gorilla/sessions for storing oauth2 sessions) * use updated goth lib that now supports getting the OAuth2 user if the AccessToken is still valid instead of re-authenticating (prevent flooding the OAuth2 provider)
7 years ago
Add single sign-on support via SSPI on Windows (#8463) * Add single sign-on support via SSPI on Windows * Ensure plugins implement interface * Ensure plugins implement interface * Move functions used only by the SSPI auth method to sspi_windows.go * Field SSPISeparatorReplacement of AuthenticationForm should not be required via binding, as binding will insist the field is non-empty even if another login type is selected * Fix breaking of oauth authentication on download links. Do not create new session with SSPI authentication on download links. * Update documentation for the new 'SPNEGO with SSPI' login source * Mention in documentation that ROOT_URL should contain the FQDN of the server * Make sure that Contexter is not checking for active login sources when the ORM engine is not initialized (eg. when installing) * Always initialize and free SSO methods, even if they are not enabled, as a method can be activated while the app is running (from Authentication sources) * Add option in SSPIConfig for removing of domains from logon names * Update helper text for StripDomainNames option * Make sure handleSignIn() is called after a new user object is created by SSPI auth method * Remove default value from text of form field helper Co-Authored-By: Lauris BH <lauris@nix.lv> * Remove default value from text of form field helper Co-Authored-By: Lauris BH <lauris@nix.lv> * Remove default value from text of form field helper Co-Authored-By: Lauris BH <lauris@nix.lv> * Only make a query to the DB to check if SSPI is enabled on handlers that need that information for templates * Remove code duplication * Log errors in ActiveLoginSources Co-Authored-By: Lauris BH <lauris@nix.lv> * Revert suffix of randomly generated E-mails for Reverse proxy authentication Co-Authored-By: Lauris BH <lauris@nix.lv> * Revert unneeded white-space change in template Co-Authored-By: Lauris BH <lauris@nix.lv> * Add copyright comments at the top of new files * Use loopback name for randomly generated emails * Add locale tag for the SSPISeparatorReplacement field with proper casing * Revert casing of SSPISeparatorReplacement field in locale file, moving it up, next to other form fields * Update docs/content/doc/features/authentication.en-us.md Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * Remove Priority() method and define the order in which SSO auth methods should be executed in one place * Log authenticated username only if it's not empty * Rephrase helper text for automatic creation of users * Return error if more than one active SSPI auth source is found * Change newUser() function to return error, letting caller log/handle the error * Move isPublicResource, isPublicPage and handleSignIn functions outside SSPI auth method to allow other SSO methods to reuse them if needed * Refactor initialization of the list containing SSO auth methods * Validate SSPI settings on POST * Change SSPI to only perform authentication on its own login page, API paths and download links. Leave Toggle middleware to redirect non authenticated users to login page * Make 'Default language' in SSPI config empty, unless changed by admin * Show error if admin tries to add a second authentication source of type SSPI * Simplify declaration of global variable * Rebuild gitgraph.js on Linux * Make sure config values containing only whitespace are not accepted
4 years ago
Add single sign-on support via SSPI on Windows (#8463) * Add single sign-on support via SSPI on Windows * Ensure plugins implement interface * Ensure plugins implement interface * Move functions used only by the SSPI auth method to sspi_windows.go * Field SSPISeparatorReplacement of AuthenticationForm should not be required via binding, as binding will insist the field is non-empty even if another login type is selected * Fix breaking of oauth authentication on download links. Do not create new session with SSPI authentication on download links. * Update documentation for the new 'SPNEGO with SSPI' login source * Mention in documentation that ROOT_URL should contain the FQDN of the server * Make sure that Contexter is not checking for active login sources when the ORM engine is not initialized (eg. when installing) * Always initialize and free SSO methods, even if they are not enabled, as a method can be activated while the app is running (from Authentication sources) * Add option in SSPIConfig for removing of domains from logon names * Update helper text for StripDomainNames option * Make sure handleSignIn() is called after a new user object is created by SSPI auth method * Remove default value from text of form field helper Co-Authored-By: Lauris BH <lauris@nix.lv> * Remove default value from text of form field helper Co-Authored-By: Lauris BH <lauris@nix.lv> * Remove default value from text of form field helper Co-Authored-By: Lauris BH <lauris@nix.lv> * Only make a query to the DB to check if SSPI is enabled on handlers that need that information for templates * Remove code duplication * Log errors in ActiveLoginSources Co-Authored-By: Lauris BH <lauris@nix.lv> * Revert suffix of randomly generated E-mails for Reverse proxy authentication Co-Authored-By: Lauris BH <lauris@nix.lv> * Revert unneeded white-space change in template Co-Authored-By: Lauris BH <lauris@nix.lv> * Add copyright comments at the top of new files * Use loopback name for randomly generated emails * Add locale tag for the SSPISeparatorReplacement field with proper casing * Revert casing of SSPISeparatorReplacement field in locale file, moving it up, next to other form fields * Update docs/content/doc/features/authentication.en-us.md Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * Remove Priority() method and define the order in which SSO auth methods should be executed in one place * Log authenticated username only if it's not empty * Rephrase helper text for automatic creation of users * Return error if more than one active SSPI auth source is found * Change newUser() function to return error, letting caller log/handle the error * Move isPublicResource, isPublicPage and handleSignIn functions outside SSPI auth method to allow other SSO methods to reuse them if needed * Refactor initialization of the list containing SSO auth methods * Validate SSPI settings on POST * Change SSPI to only perform authentication on its own login page, API paths and download links. Leave Toggle middleware to redirect non authenticated users to login page * Make 'Default language' in SSPI config empty, unless changed by admin * Show error if admin tries to add a second authentication source of type SSPI * Simplify declaration of global variable * Rebuild gitgraph.js on Linux * Make sure config values containing only whitespace are not accepted
4 years ago
Git LFS support v2 (#122) * Import github.com/git-lfs/lfs-test-server as lfs module base Imported commit is 3968aac269a77b73924649b9412ae03f7ccd3198 Removed: Dockerfile CONTRIBUTING.md mgmt* script/ vendor/ kvlogger.go .dockerignore .gitignore README.md * Remove config, add JWT support from github.com/mgit-at/lfs-test-server Imported commit f0cdcc5a01599c5a955dc1bbf683bb4acecdba83 * Add LFS settings * Add LFS meta object model * Add LFS routes and initialization * Import github.com/dgrijalva/jwt-go into vendor/ * Adapt LFS module: handlers, routing, meta store * Move LFS routes to /user/repo/info/lfs/* * Add request header checks to LFS BatchHandler / PostHandler * Implement LFS basic authentication * Rework JWT secret generation / load * Implement LFS SSH token authentication with JWT Specification: https://github.com/github/git-lfs/tree/master/docs/api * Integrate LFS settings into install process * Remove LFS objects when repository is deleted Only removes objects from content store when deleted repo is the only referencing repository * Make LFS module stateless Fixes bug where LFS would not work after installation without restarting Gitea * Change 500 'Internal Server Error' to 400 'Bad Request' * Change sql query to xorm call * Remove unneeded type from LFS module * Change internal imports to code.gitea.io/gitea/ * Add Gitea authors copyright * Change basic auth realm to "gitea-lfs" * Add unique indexes to LFS model * Use xorm count function in LFS check on repository delete * Return io.ReadCloser from content store and close after usage * Add LFS info to runWeb() * Export LFS content store base path * LFS file download from UI * Work around git-lfs client issue with unauthenticated requests Returning a dummy Authorization header for unauthenticated requests lets git-lfs client skip asking for auth credentials See: https://github.com/github/git-lfs/issues/1088 * Fix unauthenticated UI downloads from public repositories * Authentication check order, Finish LFS file view logic * Ignore LFS hooks if installed for current OS user Fixes Gitea UI actions for repositories tracking LFS files. Checks for minimum needed git version by parsing the semantic version string. * Hide LFS metafile diff from commit view, marking as binary * Show LFS notice if file in commit view is tracked * Add notbefore/nbf JWT claim * Correct lint suggestions - comments for structs and functions - Add comments to LFS model - Function comment for GetRandomBytesAsBase64 - LFS server function comments and lint variable suggestion * Move secret generation code out of conditional Ensures no LFS code may run with an empty secret * Do not hand out JWT tokens if LFS server support is disabled
7 years ago
9 years ago
Add support for federated avatars (#3320) * Add support for federated avatars Fixes #3105 Removes avatar fetching duplication code Adds an "Enable Federated Avatar" checkbox in user settings (defaults to unchecked) Moves avatar settings all in the same form, making local and remote avatars mutually exclusive Renames UploadAvatarForm to AvatarForm as it's not anymore only for uploading * Run gofmt on all modified files * Move Avatar form in its own page * Add go-libravatar dependency to vendor/ dir Hopefully helps with accepting the contribution. See also #3214 * Revert "Add go-libravatar dependency to vendor/ dir" This reverts commit a8cb93ae640bbb90f7d25012fc257bda9fae9b82. * Make federated avatar setting a global configuration Removes the per-user setting * Move avatar handling back to base tool, disable federated avatar in offline mode * Format, handle error * Properly set fallback host * Use unsupported github.com mirror for importing go-libravatar * Remove comment showing life exists outside of github.com ... pity, but contribution would not be accepted otherwise * Use Combo for Get and Post methods over /avatar * FEDERATED_AVATAR -> ENABLE_FEDERATED_AVATAR * Fix persistance of federated avatar lookup checkbox at install time * Federated Avatars -> Enable Federated Avatars * Use len(string) == 0 instead of string == "" * Move import line where it belong See https://github.com/Unknwon/go-code-convention/blob/master/en-US/import_packages.md Pity the import url is still the unofficial one, but oh well... * Save a line (and waste much more expensive time) * Remove redundant parens * Remove an empty line * Remove empty lines * Reorder lines to make diff smaller * Remove another newline Unknwon review got me start a fight against newlines * Move DISABLE_GRAVATAR and ENABLE_FEDERATED_AVATAR after OFFLINE_MODE On re-reading the diff I figured what Unknwon meant here: https://github.com/gogits/gogs/pull/3320/files#r73741106 * Remove newlines that weren't there before my intervention
7 years ago
Better logging (#6038) (#6095) * Panic don't fatal on create new logger Fixes #5854 Signed-off-by: Andrew Thornton <art27@cantab.net> * partial broken * Update the logging infrastrcture Signed-off-by: Andrew Thornton <art27@cantab.net> * Reset the skip levels for Fatal and Error Signed-off-by: Andrew Thornton <art27@cantab.net> * broken ncsa * More log.Error fixes Signed-off-by: Andrew Thornton <art27@cantab.net> * Remove nal * set log-levels to lowercase * Make console_test test all levels * switch to lowercased levels * OK now working * Fix vetting issues * Fix lint * Fix tests * change default logging to match current gitea * Improve log testing Signed-off-by: Andrew Thornton <art27@cantab.net> * reset error skip levels to 0 * Update documentation and access logger configuration * Redirect the router log back to gitea if redirect macaron log but also allow setting the log level - i.e. TRACE * Fix broken level caching * Refactor the router log * Add Router logger * Add colorizing options * Adjust router colors * Only create logger if they will be used * update app.ini.sample * rename Attribute ColorAttribute * Change from white to green for function * Set fatal/error levels * Restore initial trace logger * Fix Trace arguments in modules/auth/auth.go * Properly handle XORMLogger * Improve admin/config page * fix fmt * Add auto-compression of old logs * Update error log levels * Remove the unnecessary skip argument from Error, Fatal and Critical * Add stacktrace support * Fix tests * Remove x/sync from vendors? * Add stderr option to console logger * Use filepath.ToSlash to protect against Windows in tests * Remove prefixed underscores from names in colors.go * Remove not implemented database logger This was removed from Gogs on 4 Mar 2016 but left in the configuration since then. * Ensure that log paths are relative to ROOT_PATH * use path.Join * rename jsonConfig to logConfig * Rename "config" to "jsonConfig" to make it clearer * Requested changes * Requested changes: XormLogger * Try to color the windows terminal If successful default to colorizing the console logs * fixup * Colorize initially too * update vendor * Colorize logs on default and remove if this is not a colorizing logger * Fix documentation * fix test * Use go-isatty to detect if on windows we are on msys or cygwin * Fix spelling mistake * Add missing vendors * More changes * Rationalise the ANSI writer protection * Adjust colors on advice from @0x5c * Make Flags a comma separated list * Move to use the windows constant for ENABLE_VIRTUAL_TERMINAL_PROCESSING * Ensure matching is done on the non-colored message - to simpify EXPRESSION
5 years ago
Graceful Queues: Issue Indexing and Tasks (#9363) * Queue: Add generic graceful queues with settings * Queue & Setting: Add worker pool implementation * Queue: Add worker settings * Queue: Make resizing worker pools * Queue: Add name variable to queues * Queue: Add monitoring * Queue: Improve logging * Issues: Gracefulise the issues indexer Remove the old now unused specific queues * Task: Move to generic queue and gracefulise * Issues: Standardise the issues indexer queue settings * Fix test * Queue: Allow Redis to connect to unix * Prevent deadlock during early shutdown of issue indexer * Add MaxWorker settings to queues * Merge branch 'master' into graceful-queues * Update modules/indexer/issues/indexer.go Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * Update modules/indexer/issues/indexer.go Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * Update modules/queue/queue_channel.go Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * Update modules/queue/queue_disk.go * Update modules/queue/queue_disk_channel.go Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * Rename queue.Description to queue.ManagedQueue as per @guillep2k * Cancel pool workers when removed * Remove dependency on queue from setting * Update modules/queue/queue_redis.go Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * As per @guillep2k add mutex locks on shutdown/terminate * move unlocking out of setInternal * Add warning if number of workers < 0 * Small changes as per @guillep2k * No redis host specified not found * Clean up documentation for queues * Update docs/content/doc/advanced/config-cheat-sheet.en-us.md * Update modules/indexer/issues/indexer_test.go * Ensure that persistable channel queue is added to manager * Rename QUEUE_NAME REDIS_QUEUE_NAME * Revert "Rename QUEUE_NAME REDIS_QUEUE_NAME" This reverts commit 1f83b4fc9b9dabda186257b38c265fe7012f90df. Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> Co-authored-by: Lauris BH <lauris@nix.lv> Co-authored-by: techknowlogick <matti@mdranta.net> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
4 years ago
Graceful Queues: Issue Indexing and Tasks (#9363) * Queue: Add generic graceful queues with settings * Queue & Setting: Add worker pool implementation * Queue: Add worker settings * Queue: Make resizing worker pools * Queue: Add name variable to queues * Queue: Add monitoring * Queue: Improve logging * Issues: Gracefulise the issues indexer Remove the old now unused specific queues * Task: Move to generic queue and gracefulise * Issues: Standardise the issues indexer queue settings * Fix test * Queue: Allow Redis to connect to unix * Prevent deadlock during early shutdown of issue indexer * Add MaxWorker settings to queues * Merge branch 'master' into graceful-queues * Update modules/indexer/issues/indexer.go Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * Update modules/indexer/issues/indexer.go Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * Update modules/queue/queue_channel.go Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * Update modules/queue/queue_disk.go * Update modules/queue/queue_disk_channel.go Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * Rename queue.Description to queue.ManagedQueue as per @guillep2k * Cancel pool workers when removed * Remove dependency on queue from setting * Update modules/queue/queue_redis.go Co-Authored-By: guillep2k <18600385+guillep2k@users.noreply.github.com> * As per @guillep2k add mutex locks on shutdown/terminate * move unlocking out of setInternal * Add warning if number of workers < 0 * Small changes as per @guillep2k * No redis host specified not found * Clean up documentation for queues * Update docs/content/doc/advanced/config-cheat-sheet.en-us.md * Update modules/indexer/issues/indexer_test.go * Ensure that persistable channel queue is added to manager * Rename QUEUE_NAME REDIS_QUEUE_NAME * Revert "Rename QUEUE_NAME REDIS_QUEUE_NAME" This reverts commit 1f83b4fc9b9dabda186257b38c265fe7012f90df. Co-authored-by: guillep2k <18600385+guillep2k@users.noreply.github.com> Co-authored-by: Lauris BH <lauris@nix.lv> Co-authored-by: techknowlogick <matti@mdranta.net> Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
4 years ago
Sign merges, CRUD, Wiki and Repository initialisation with gpg key (#7631) This PR fixes #7598 by providing a configurable way of signing commits across the Gitea instance. Per repository configurability and import/generation of trusted secure keys is not provided by this PR - from a security PoV that's probably impossible to do properly. Similarly web-signing, that is asking the user to sign something, is not implemented - this could be done at a later stage however. ## Features - [x] If commit.gpgsign is set in .gitconfig sign commits and files created through repofiles. (merges should already have been signed.) - [x] Verify commits signed with the default gpg as valid - [x] Signer, Committer and Author can all be different - [x] Allow signer to be arbitrarily different - We still require the key to have an activated email on Gitea. A more complete implementation would be to use a keyserver and mark external-or-unactivated with an "unknown" trust level icon. - [x] Add a signing-key.gpg endpoint to get the default gpg pub key if available - Rather than add a fake web-flow user I've added this as an endpoint on /api/v1/signing-key.gpg - [x] Try to match the default key with a user on gitea - this is done at verification time - [x] Make things configurable? - app.ini configuration done - [x] when checking commits are signed need to check if they're actually verifiable too - [x] Add documentation I have decided that adjusting the docker to create a default gpg key is not the correct thing to do and therefore have not implemented this.
4 years ago
Sign merges, CRUD, Wiki and Repository initialisation with gpg key (#7631) This PR fixes #7598 by providing a configurable way of signing commits across the Gitea instance. Per repository configurability and import/generation of trusted secure keys is not provided by this PR - from a security PoV that's probably impossible to do properly. Similarly web-signing, that is asking the user to sign something, is not implemented - this could be done at a later stage however. ## Features - [x] If commit.gpgsign is set in .gitconfig sign commits and files created through repofiles. (merges should already have been signed.) - [x] Verify commits signed with the default gpg as valid - [x] Signer, Committer and Author can all be different - [x] Allow signer to be arbitrarily different - We still require the key to have an activated email on Gitea. A more complete implementation would be to use a keyserver and mark external-or-unactivated with an "unknown" trust level icon. - [x] Add a signing-key.gpg endpoint to get the default gpg pub key if available - Rather than add a fake web-flow user I've added this as an endpoint on /api/v1/signing-key.gpg - [x] Try to match the default key with a user on gitea - this is done at verification time - [x] Make things configurable? - app.ini configuration done - [x] when checking commits are signed need to check if they're actually verifiable too - [x] Add documentation I have decided that adjusting the docker to create a default gpg key is not the correct thing to do and therefore have not implemented this.
4 years ago
  1. home = Home
  2. dashboard = Dashboard
  3. explore = Explore
  4. help = Help
  5. sign_in = Sign In
  6. sign_in_with = Sign In With
  7. sign_out = Sign Out
  8. sign_up = Register
  9. link_account = Link Account
  10. register = Register
  11. website = Website
  12. version = Version
  13. powered_by = Powered by %s
  14. page = Page
  15. template = Template
  16. language = Language
  17. notifications = Notifications
  18. create_new = Create…
  19. user_profile_and_more = Profile and Settings…
  20. signed_in_as = Signed in as
  21. enable_javascript = This website works better with JavaScript.
  22. username = Username
  23. email = Email Address
  24. password = Password
  25. re_type = Re-Type Password
  26. captcha = CAPTCHA
  27. twofa = Two-Factor Authentication
  28. twofa_scratch = Two-Factor Scratch Code
  29. passcode = Passcode
  30. u2f_insert_key = Insert your security key
  31. u2f_sign_in = Press the button on your security key. If your security key has no button, re-insert it.
  32. u2f_press_button = Please press the button on your security key…
  33. u2f_use_twofa = Use a two-factor code from your phone
  34. u2f_error = Could not read your security key.
  35. u2f_unsupported_browser = Your browser does not support U2F security keys.
  36. u2f_error_1 = An unknown error occurred. Please retry.
  37. u2f_error_2 = Please make sure to use the correct, encrypted (https://) URL.
  38. u2f_error_3 = The server could not process your request.
  39. u2f_error_4 = The security key is not permitted for this request. Please make sure that the key is not already registered.
  40. u2f_error_5 = Timeout reached before your key could be read. Please reload this page and retry.
  41. u2f_reload = Reload
  42. repository = Repository
  43. organization = Organization
  44. mirror = Mirror
  45. new_repo = New Repository
  46. new_migrate = New Migration
  47. new_mirror = New Mirror
  48. new_fork = New Repository Fork
  49. new_org = New Organization
  50. manage_org = Manage Organizations
  51. admin_panel = Site Administration
  52. account_settings = Account Settings
  53. settings = Settings
  54. your_profile = Profile
  55. your_starred = Starred
  56. your_settings = Settings
  57. all = All
  58. sources = Sources
  59. mirrors = Mirrors
  60. collaborative = Collaborative
  61. forks = Forks
  62. activities = Activities
  63. pull_requests = Pull Requests
  64. issues = Issues
  65. milestones = Milestones
  66. cancel = Cancel
  67. add = Add
  68. add_all = Add All
  69. remove = Remove
  70. remove_all = Remove All
  71. write = Write
  72. preview = Preview
  73. loading = Loading…
  74. error404 = The page you are trying to reach either <strong>does not exist</strong> or <strong>you are not authorized</strong> to view it.
  75. [startpage]
  76. app_desc = A painless, self-hosted Git service
  77. install = Easy to install
  78. install_desc = Simply <a target="_blank" rel="noopener noreferrer" href="https://docs.gitea.io/en-us/install-from-binary/">run the binary</a> for your platform. Or ship Gitea with <a target="_blank" rel="noopener noreferrer" href="https://github.com/go-gitea/gitea/tree/master/docker">Docker</a> or <a target="_blank" rel="noopener noreferrer" href="https://github.com/alvaroaleman/ansible-gitea/blob/master/Vagrantfile">Vagrant</a>, or get it <a target="_blank" rel="noopener noreferrer" href="https://docs.gitea.io/en-us/install-from-package/">packaged</a>.
  79. platform = Cross-platform
  80. platform_desc = Gitea runs anywhere <a target="_blank" rel="noopener noreferrer" href="http://golang.org/">Go</a> can compile for: Windows, macOS, Linux, ARM, etc. Choose the one you love!
  81. lightweight = Lightweight
  82. lightweight_desc = Gitea has low minimal requirements and can run on an inexpensive Raspberry Pi. Save your machine energy!
  83. license = Open Source
  84. license_desc = Go get <a target="_blank" rel="noopener noreferrer" href="https://code.gitea.io/gitea">code.gitea.io/gitea</a>! Join us by <a target="_blank" rel="noopener noreferrer" href="https://github.com/go-gitea/gitea">contributing</a> to make this project even better. Don't be shy to be a contributor!
  85. [install]
  86. install = Installation
  87. title = Initial Configuration
  88. docker_helper = If you run Gitea inside Docker, please read the <a target="_blank" rel="noopener noreferrer" href="%s">documentation</a> before changing any settings.
  89. requite_db_desc = Gitea requires MySQL, PostgreSQL, MSSQL or SQLite3.
  90. db_title = Database Settings
  91. db_type = Database Type
  92. host = Host
  93. user = Username
  94. password = Password
  95. db_name = Database Name
  96. db_helper = Note to MySQL users: please use the InnoDB storage engine and if you use "utf8mb4", your InnoDB version must be greater than 5.6 .
  97. db_schema = Schema
  98. db_schema_helper = Leave blank for database default ("public").
  99. ssl_mode = SSL
  100. charset = Charset
  101. path = Path
  102. sqlite_helper = File path for the SQLite3 database.<br>Enter an absolute path if you run Gitea as a service.
  103. err_empty_db_path = The SQLite3 database path cannot be empty.
  104. no_admin_and_disable_registration = You cannot disable user self-registration without creating an administrator account.
  105. err_empty_admin_password = The administrator password cannot be empty.
  106. err_empty_admin_email = The administrator email cannot be empty.
  107. err_admin_name_is_reserved = Administrator Username is invalid, username is reserved
  108. err_admin_name_pattern_not_allowed = Administrator username is invalid, the username matches a reserved pattern
  109. err_admin_name_is_invalid = Administrator Username is invalid
  110. general_title = General Settings
  111. app_name = Site Title
  112. app_name_helper = You can enter your company name here.
  113. repo_path = Repository Root Path
  114. repo_path_helper = Remote Git repositories will be saved to this directory.
  115. lfs_path = Git LFS Root Path
  116. lfs_path_helper = Files tracked by Git LFS will be stored in this directory. Leave empty to disable.
  117. run_user = Run As Username
  118. run_user_helper = Enter the operating system username that Gitea runs as. Note that this user must have access to the repository root path.
  119. domain = SSH Server Domain
  120. domain_helper = Domain or host address for SSH clone URLs.
  121. ssh_port = SSH Server Port
  122. ssh_port_helper = Port number your SSH server listens on. Leave empty to disable.
  123. http_port = Gitea HTTP Listen Port
  124. http_port_helper = Port number the Giteas web server will listen on.
  125. app_url = Gitea Base URL
  126. app_url_helper = Base address for HTTP(S) clone URLs and email notifications.
  127. log_root_path = Log Path
  128. log_root_path_helper = Log files will be written to this directory.
  129. optional_title = Optional Settings
  130. email_title = Email Settings
  131. smtp_host = SMTP Host
  132. smtp_from = Send Email As
  133. smtp_from_helper = Email address Gitea will use. Enter a plain email address or use the "Name" <email@example.com> format.
  134. mailer_user = SMTP Username
  135. mailer_password = SMTP Password
  136. register_confirm = Require Email Confirmation to Register
  137. mail_notify = Enable Email Notifications
  138. server_service_title = Server and Third-Party Service Settings
  139. offline_mode = Enable Local Mode
  140. offline_mode_popup = Disable third-party content delivery networks and serve all resources locally.
  141. disable_gravatar = Disable Gravatar
  142. disable_gravatar_popup = Disable Gravatar and third-party avatar sources. A default avatar will be used unless a user locally uploads an avatar.
  143. federated_avatar_lookup = Enable Federated Avatars
  144. federated_avatar_lookup_popup = Enable federated avatar lookup using Libravatar.
  145. disable_registration = Disable Self-Registration
  146. disable_registration_popup = Disable user self-registration. Only administrators will be able to create new user accounts.
  147. allow_only_external_registration_popup = Allow Registration Only Through External Services
  148. openid_signin = Enable OpenID Sign-In
  149. openid_signin_popup = Enable user sign-in via OpenID.
  150. openid_signup = Enable OpenID Self-Registration
  151. openid_signup_popup = Enable OpenID-based user self-registration.
  152. enable_captcha = Enable CAPTCHA
  153. enable_captcha_popup = Require a CAPTCHA for user self-registration.
  154. require_sign_in_view = Require Sign-In to View Pages
  155. require_sign_in_view_popup = Limit page access to signed-in users. Visitors will only see the 'sign in' and registration pages.
  156. admin_setting_desc = Creating an administrator account is optional. The first registered user will automatically become an administrator.
  157. admin_title = Administrator Account Settings
  158. admin_name = Administrator Username
  159. admin_password = Password
  160. confirm_password = Confirm Password
  161. admin_email = Email Address
  162. install_btn_confirm = Install Gitea
  163. test_git_failed = Could not test 'git' command: %v
  164. sqlite3_not_available = This Gitea version does not support SQLite3. Please download the official binary version from %s (not the 'gobuild' version).
  165. invalid_db_setting = The database settings are invalid: %v
  166. invalid_repo_path = The repository root path is invalid: %v
  167. run_user_not_match = The 'run as' username is not the current username: %s -> %s
  168. save_config_failed = Failed to save configuration: %v
  169. invalid_admin_setting = Administrator account setting is invalid: %v
  170. install_success = Welcome! Thank you for choosing Gitea. Have fun and take care!
  171. invalid_log_root_path = The log path is invalid: %v
  172. default_keep_email_private = Hide Email Addresses by Default
  173. default_keep_email_private_popup = Hide email addresses of new user accounts by default.
  174. default_allow_create_organization = Allow Creation of Organizations by Default
  175. default_allow_create_organization_popup = Allow new user accounts to create organizations by default.
  176. default_enable_timetracking = Enable Time Tracking by Default
  177. default_enable_timetracking_popup = Enable time tracking for new repositories by default.
  178. no_reply_address = Hidden Email Domain
  179. no_reply_address_helper = Domain name for users with a hidden email address. For example, the username 'joe' will be logged in Git as 'joe@noreply.example.org' if the hidden email domain is set to 'noreply.example.org'.
  180. [home]
  181. uname_holder = Username or Email Address
  182. password_holder = Password
  183. switch_dashboard_context = Switch Dashboard Context
  184. my_repos = Repositories
  185. show_more_repos = Show more repositories…
  186. collaborative_repos = Collaborative Repositories
  187. my_orgs = My Organizations
  188. my_mirrors = My Mirrors
  189. view_home = View %s
  190. search_repos = Find a repository…
  191. issues.in_your_repos = In your repositories
  192. [explore]
  193. repos = Repositories
  194. users = Users
  195. organizations = Organizations
  196. search = Search
  197. code = Code
  198. repo_no_results = No matching repositories found.
  199. user_no_results = No matching users found.
  200. org_no_results = No matching organizations found.
  201. code_no_results = No source code matching your search term found.
  202. code_search_results = Search results for '%s'
  203. code_last_indexed_at = Last indexed %s
  204. [auth]
  205. create_new_account = Register Account
  206. register_helper_msg = Already have an account? Sign in now!
  207. social_register_helper_msg = Already have an account? Link it now!
  208. disable_register_prompt = Registration is disabled. Please contact your site administrator.
  209. disable_register_mail = Email confirmation for registration is disabled.
  210. remember_me = Remember Me
  211. forgot_password_title= Forgot Password
  212. forgot_password = Forgot password?
  213. sign_up_now = Need an account? Register now.
  214. sign_up_successful = Account was successfully created.
  215. confirmation_mail_sent_prompt = A new confirmation email has been sent to <b>%s</b>. Please check your inbox within the next %s to complete the registration process.
  216. must_change_password = Update your password
  217. allow_password_change = Require user to change password (recommended)
  218. reset_password_mail_sent_prompt = A confirmation email has been sent to <b>%s</b>. Please check your inbox within the next %s to complete the account recovery process.
  219. active_your_account = Activate Your Account
  220. account_activated = Account has been activated
  221. prohibit_login = Sign In Prohibited
  222. prohibit_login_desc = Your account is prohibited to sign in, please contact your site administrator.
  223. resent_limit_prompt = You have already requested an activation email recently. Please wait 3 minutes and try again.
  224. has_unconfirmed_mail = Hi %s, you have an unconfirmed email address (<b>%s</b>). If you haven't received a confirmation email or need to resend a new one, please click on the button below.
  225. resend_mail = Click here to resend your activation email
  226. email_not_associate = The email address is not associated with any account.
  227. send_reset_mail = Send Account Recovery Email
  228. reset_password = Account Recovery
  229. invalid_code = Your confirmation code is invalid or has expired.
  230. reset_password_helper = Recover Account
  231. reset_password_wrong_user = You are signed in as %s, but the account recovery link is for %s
  232. password_too_short = Password length cannot be less than %d characters.
  233. non_local_account = Non-local users can not update their password through the Gitea web interface.
  234. verify = Verify
  235. scratch_code = Scratch code
  236. use_scratch_code = Use a scratch code
  237. twofa_scratch_used = You have used your scratch code. You have been redirected to the two-factor settings page so you may remove your device enrollment or generate a new scratch code.
  238. twofa_passcode_incorrect = Your passcode is incorrect. If you misplaced your device, use your scratch code to sign in.
  239. twofa_scratch_token_incorrect = Your scratch code is incorrect.
  240. login_userpass = Sign In
  241. login_openid = OpenID
  242. oauth_signup_tab = Register New Account
  243. oauth_signup_title = Add Email and Password (for Account Recovery)
  244. oauth_signup_submit = Complete Account
  245. oauth_signin_tab = Link to Existing Account
  246. oauth_signin_title = Sign In to Authorize Linked Account
  247. oauth_signin_submit = Link Account
  248. openid_connect_submit = Connect
  249. openid_connect_title = Connect to an existing account
  250. openid_connect_desc = The chosen OpenID URI is unknown. Associate it with a new account here.
  251. openid_register_title = Create new account
  252. openid_register_desc = The chosen OpenID URI is unknown. Associate it with a new account here.
  253. openid_signin_desc = Enter your OpenID URI. For example: https://anne.me, bob.openid.org.cn or gnusocial.net/carry.
  254. disable_forgot_password_mail = Account recovery is disabled. Please contact your site administrator.
  255. email_domain_blacklisted = You cannot register with your email address.
  256. authorize_application = Authorize Application
  257. authorize_redirect_notice = You will be redirected to %s if you authorize this application.
  258. authorize_application_created_by = This application was created by %s.
  259. authorize_application_description = If you grant the access, it will be able to access and write to all your account information, including private repos and organisations.
  260. authorize_title = Authorize "%s" to access your account?
  261. authorization_failed = Authorization failed
  262. authorization_failed_desc = The authorization failed because we detected an invalid request. Please contact the maintainer of the app you've tried to authorize.
  263. disable_forgot_password_mail = Account recovery is disabled. Please contact your site administrator.
  264. sspi_auth_failed = SSPI authentication failed
  265. [mail]
  266. activate_account = Please activate your account
  267. activate_email = Verify your email address
  268. reset_password = Recover your account
  269. register_success = Registration successful
  270. register_notify = Welcome to Gitea
  271. [modal]
  272. yes = Yes
  273. no = No
  274. modify = Update
  275. [form]
  276. UserName = Username
  277. RepoName = Repository name
  278. Email = Email address
  279. Password = Password
  280. Retype = Re-Type Password
  281. SSHTitle = SSH key name
  282. HttpsUrl = HTTPS URL
  283. PayloadUrl = Payload URL
  284. TeamName = Team name
  285. AuthName = Authorization name
  286. AdminEmail = Admin email
  287. NewBranchName = New branch name
  288. CommitSummary = Commit summary
  289. CommitMessage = Commit message
  290. CommitChoice = Commit choice
  291. TreeName = File path
  292. Content = Content
  293. SSPISeparatorReplacement = Separator
  294. SSPIDefaultLanguage = Default Language
  295. require_error = ` cannot be empty.`
  296. alpha_dash_error = ` should contain only alphanumeric, dash ('-') and underscore ('_') characters.`
  297. alpha_dash_dot_error = ` should contain only alphanumeric, dash ('-'), underscore ('_') and dot ('.') characters.`
  298. git_ref_name_error = ` must be a well-formed Git reference name.`
  299. size_error = ` must be size %s.`
  300. min_size_error = ` must contain at least %s characters.`
  301. max_size_error = ` must contain at most %s characters.`
  302. email_error = ` is not a valid email address.`
  303. url_error = ` is not a valid URL.`
  304. include_error = ` must contain substring '%s'.`
  305. glob_pattern_error = ` glob pattern is invalid: %s.`
  306. unknown_error = Unknown error:
  307. captcha_incorrect = The CAPTCHA code is incorrect.
  308. password_not_match = The passwords do not match.
  309. lang_select_error = Select a language from the list.
  310. username_been_taken = The username is already taken.
  311. repo_name_been_taken = The repository name is already used.
  312. visit_rate_limit = Remote visit addressed rate limitation.
  313. 2fa_auth_required = Remote visit required two factors authentication.
  314. org_name_been_taken = The organization name is already taken.
  315. team_name_been_taken = The team name is already taken.
  316. team_no_units_error = Allow access to at least one repository section.
  317. email_been_used = The email address is already used.
  318. openid_been_used = The OpenID address '%s' is already used.
  319. username_password_incorrect = Username or password is incorrect.
  320. password_complexity = Password does not pass complexity requirements:
  321. password_lowercase_one = At least one lowercase character
  322. password_uppercase_one = At least one uppercase character
  323. password_digit_one = At least one digit
  324. password_special_one = At least one special character (punctuation, brackets, quotes, etc.)
  325. enterred_invalid_repo_name = The repository name you entered is incorrect.
  326. enterred_invalid_owner_name = The new owner name is not valid.
  327. enterred_invalid_password = The password you entered is incorrect.
  328. user_not_exist = The user does not exist.
  329. team_not_exist = The team does not exist.
  330. last_org_owner = You cannot remove the last user from the 'owners' team. There must be at least one owner in any given team.
  331. cannot_add_org_to_team = An organization cannot be added as a team member.
  332. invalid_ssh_key = Can not verify your SSH key: %s
  333. invalid_gpg_key = Can not verify your GPG key: %s
  334. unable_verify_ssh_key = "Can not verify the SSH key; double-check it for mistakes."
  335. auth_failed = Authentication failed: %v
  336. still_own_repo = "Your account owns one or more repositories; delete or transfer them first."
  337. still_has_org = "Your account is a member of one or more organizations; leave them first."
  338. org_still_own_repo = "This organization still owns one or more repositories; delete or transfer them first."
  339. target_branch_not_exist = Target branch does not exist.
  340. [user]
  341. change_avatar = Change your avatar…
  342. join_on = Joined on
  343. repositories = Repositories
  344. activity = Public Activity
  345. followers = Followers
  346. starred = Starred Repositories
  347. following = Following
  348. follow = Follow
  349. unfollow = Unfollow
  350. heatmap.loading = Loading Heatmap…
  351. user_bio = Biography
  352. form.name_reserved = The username '%s' is reserved.
  353. form.name_pattern_not_allowed = The pattern '%s' is not allowed in a username.
  354. form.name_chars_not_allowed = User name '%s' contains invalid characters.
  355. [settings]
  356. profile = Profile
  357. account = Account
  358. password = Password
  359. security = Security
  360. avatar = Avatar
  361. ssh_gpg_keys = SSH / GPG Keys
  362. social = Social Accounts
  363. applications = Applications
  364. orgs = Manage Organizations
  365. repos = Repositories
  366. delete = Delete Account
  367. twofa = Two-Factor Authentication
  368. account_link = Linked Accounts
  369. organization = Organizations
  370. uid = Uid
  371. u2f = Security Keys
  372. public_profile = Public Profile
  373. profile_desc = Your email address will be used for notifications and other operations.
  374. password_username_disabled = Non-local users are not allowed to change their username. Please contact your site administrator for more details.
  375. full_name = Full Name
  376. website = Website
  377. location = Location
  378. update_theme = Update Theme
  379. update_profile = Update Profile
  380. update_profile_success = Your profile has been updated.
  381. change_username = Your username has been changed.
  382. change_username_prompt = Note: username changes also change your account URL.
  383. continue = Continue
  384. cancel = Cancel
  385. language = Language
  386. ui = Theme
  387. lookup_avatar_by_mail = Look Up Avatar by Email Address
  388. federated_avatar_lookup = Federated Avatar Lookup
  389. enable_custom_avatar = Use Custom Avatar
  390. choose_new_avatar = Choose new avatar
  391. update_avatar = Update Avatar
  392. delete_current_avatar = Delete Current Avatar
  393. uploaded_avatar_not_a_image = The uploaded file is not an image.
  394. uploaded_avatar_is_too_big = The uploaded file has exceeded the maximum size.
  395. update_avatar_success = Your avatar has been updated.
  396. change_password = Update Password
  397. old_password = Current Password
  398. new_password = New Password
  399. retype_new_password = Re-Type New Password
  400. password_incorrect = The current password is incorrect.
  401. change_password_success = Your password has been updated. Sign in using your new password from now on.
  402. password_change_disabled = Non-local users can not update their password through the Gitea web interface.
  403. emails = Email Addresses
  404. manage_emails = Manage Email Addresses
  405. manage_themes = Select default theme
  406. manage_openid = Manage OpenID Addresses
  407. email_desc = Your primary email address will be used for notifications and other operations.
  408. theme_desc = This will be your default theme across the site.
  409. primary = Primary
  410. activated = Activated
  411. requires_activation = Requires activation
  412. primary_email = Make Primary
  413. activate_email = Send Activation
  414. activations_pending = Activations Pending
  415. delete_email = Remove
  416. email_deletion = Remove Email Address
  417. email_deletion_desc = The email address and related information will be removed from your account. Git commits by this email address will remain unchanged. Continue?
  418. email_deletion_success = The email address has been removed.
  419. theme_update_success = Your theme was updated.
  420. theme_update_error = The selected theme does not exist.
  421. openid_deletion = Remove OpenID Address
  422. openid_deletion_desc = Removing this OpenID address from your account will prevent you from signing in with it. Continue?
  423. openid_deletion_success = The OpenID address has been removed.
  424. add_new_email = Add New Email Address
  425. add_new_openid = Add New OpenID URI
  426. add_email = Add Email Address
  427. add_openid = Add OpenID URI
  428. add_email_confirmation_sent = A confirmation email has been sent to '%s'. Please check your inbox within the next %s to confirm your email address.
  429. add_email_success = The new email address has been added.
  430. add_openid_success = The new OpenID address has been added.
  431. keep_email_private = Hide Email Address
  432. keep_email_private_popup = Your email address will be hidden from other users.
  433. openid_desc = OpenID lets you delegate authentication to an external provider.
  434. manage_ssh_keys = Manage SSH Keys
  435. manage_gpg_keys = Manage GPG Keys
  436. add_key = Add Key
  437. ssh_desc = These public SSH keys are associated with your account. The corresponding private keys allow full access to your repositories.
  438. gpg_desc = These public GPG keys are associated with your account. Keep your private keys safe as they allow commits to be verified.
  439. ssh_helper = <strong>Need help?</strong> Have a look at GitHub's guide to <a href="%s">create your own SSH keys</a> or solve <a href="%s">common problems</a> you may encounter using SSH.
  440. gpg_helper = <strong>Need help?</strong> Have a look at GitHub's guide <a href="%s">about GPG</a>.
  441. add_new_key = Add SSH Key
  442. add_new_gpg_key = Add GPG Key
  443. ssh_key_been_used = This SSH key has already been added to the server.
  444. ssh_key_name_used = An SSH key with same name is already added to your account.
  445. gpg_key_id_used = A public GPG key with same ID already exists.
  446. gpg_no_key_email_found = This GPG key is not usable with any email address associated with your account.
  447. subkeys = Subkeys
  448. key_id = Key ID
  449. key_name = Key Name
  450. key_content = Content
  451. add_key_success = The SSH key '%s' has been added.
  452. add_gpg_key_success = The GPG key '%s' has been added.
  453. delete_key = Remove
  454. ssh_key_deletion = Remove SSH Key
  455. gpg_key_deletion = Remove GPG Key
  456. ssh_key_deletion_desc = Removing an SSH key revokes its access to your account. Continue?
  457. gpg_key_deletion_desc = Removing a GPG key un-verifies commits signed by it. Continue?
  458. ssh_key_deletion_success = The SSH key has been removed.
  459. gpg_key_deletion_success = The GPG key has been removed.
  460. add_on = Added on
  461. valid_until = Valid until
  462. valid_forever = Valid forever
  463. last_used = Last used on
  464. no_activity = No recent activity
  465. can_read_info = Read
  466. can_write_info = Write
  467. key_state_desc = This key has been used in the last 7 days
  468. token_state_desc = This token has been used in the last 7 days
  469. show_openid = Show on profile
  470. hide_openid = Hide from profile
  471. ssh_disabled = SSH Disabled
  472. manage_social = Manage Associated Social Accounts
  473. social_desc = These social accounts are linked to your Gitea account. Make sure you recognize all of them as they can be used to sign in to your Gitea account.
  474. unbind = Unlink
  475. unbind_success = The social account has been unlinked from your Gitea account.
  476. manage_access_token = Manage Access Tokens
  477. generate_new_token = Generate New Token
  478. tokens_desc = These tokens grant access to your account using the Gitea API.
  479. new_token_desc = Applications using a token have full access to your account.
  480. token_name = Token Name
  481. generate_token = Generate Token
  482. generate_token_success = Your new token has been generated. Copy it now as it will not be shown again.
  483. delete_token = Delete
  484. access_token_deletion = Delete Access Token
  485. access_token_deletion_desc = Deleting a token will revoke access to your account for applications using it. Continue?
  486. delete_token_success = The token has been deleted. Applications using it no longer have access to your account.
  487. manage_oauth2_applications = Manage OAuth2 Applications
  488. edit_oauth2_application = Edit OAuth2 Application
  489. oauth2_applications_desc = OAuth2 applications enables your third-party application to securely authenticate users at this Gitea instance.
  490. remove_oauth2_application = Remove OAuth2 Application
  491. remove_oauth2_application_desc = Removing an OAuth2 application will revoke access to all signed access tokens. Continue?
  492. remove_oauth2_application_success = The application has been deleted.
  493. create_oauth2_application = Create a new OAuth2 Application
  494. create_oauth2_application_button = Create Application
  495. create_oauth2_application_success = You've successfully created a new OAuth2 application.
  496. update_oauth2_application_success = You've successfully updated the OAuth2 application.
  497. oauth2_application_name = Application Name
  498. oauth2_select_type = Which application type fits?
  499. oauth2_type_web = Web (e.g. Node.JS, Tomcat, Go)
  500. oauth2_type_native = Native (e.g. Mobile, Desktop, Browser)
  501. oauth2_redirect_uri = Redirect URI
  502. save_application = Save
  503. oauth2_client_id = Client ID
  504. oauth2_client_secret = Client Secret
  505. oauth2_regenerate_secret = Regenerate Secret
  506. oauth2_regenerate_secret_hint = Lost your secret?
  507. oauth2_client_secret_hint = The secret won't be visible if you revisit this page. Please save your secret.
  508. oauth2_application_edit = Edit
  509. oauth2_application_create_description = OAuth2 applications gives your third-party application access to user accounts on this instance.
  510. oauth2_application_remove_description = Removing an OAuth2 application will prevent it to access authorized user accounts on this instance. Continue?
  511. authorized_oauth2_applications = Authorized OAuth2 Applications
  512. authorized_oauth2_applications_description = You've granted access to your personal Gitea account to these third party applications. Please revoke access for applications no longer needed.
  513. revoke_key = Revoke
  514. revoke_oauth2_grant = Revoke Access
  515. revoke_oauth2_grant_description = Revoking access for this third party application will prevent this application from accessing your data. Are you sure?
  516. revoke_oauth2_grant_success = You've revoked access successfully.
  517. twofa_desc = Two-factor authentication enhances the security of your account.
  518. twofa_is_enrolled = Your account is currently <strong>enrolled</strong> in two-factor authentication.
  519. twofa_not_enrolled = Your account is not currently enrolled in two-factor authentication.
  520. twofa_disable = Disable Two-Factor Authentication
  521. twofa_scratch_token_regenerate = Regenerate Scratch Token
  522. twofa_scratch_token_regenerated = Your scratch token is now %s. Store it in a safe place.
  523. twofa_enroll = Enroll into Two-Factor Authentication
  524. twofa_disable_note = You can disable two-factor authentication if needed.
  525. twofa_disable_desc = Disabling two-factor authentication will make your account less secure. Continue?
  526. regenerate_scratch_token_desc = If you misplaced your scratch token or have already used it to sign in you can reset it here.
  527. twofa_disabled = Two-factor authentication has been disabled.
  528. scan_this_image = Scan this image with your authentication application:
  529. or_enter_secret = Or enter the secret: %s
  530. then_enter_passcode = And enter the passcode shown in the application:
  531. passcode_invalid = The passcode is incorrect. Try again.
  532. twofa_enrolled = Your account has been enrolled into two-factor authentication. Store your scratch token (%s) in a safe place as it is only shown once!
  533. u2f_desc = Security keys are hardware devices containing cryptographic keys. They can be used for two-factor authentication. Security keys must support the <a rel="noreferrer" href="https://fidoalliance.org/">FIDO U2F</a> standard.
  534. u2f_require_twofa = Your account must be enrolled in two-factor authentication to use security keys.
  535. u2f_register_key = Add Security Key
  536. u2f_nickname = Nickname
  537. u2f_press_button = Press the button on your security key to register it.
  538. u2f_delete_key = Remove Security Key
  539. u2f_delete_key_desc = If you remove a security key you can no longer sign in with it. Continue?
  540. manage_account_links = Manage Linked Accounts
  541. manage_account_links_desc = These external accounts are linked to your Gitea account.
  542. account_links_not_available = There are currently no external accounts linked to your Gitea account.
  543. remove_account_link = Remove Linked Account
  544. remove_account_link_desc = Removing a linked account will revoke its access to your Gitea account. Continue?
  545. remove_account_link_success = The linked account has been removed.
  546. orgs_none = You are not a member of any organizations.
  547. repos_none = You do not own any repositories
  548. delete_account = Delete Your Account
  549. delete_prompt = This operation will permanently delete your user account. It <strong>CAN NOT</strong> be undone.
  550. confirm_delete_account = Confirm Deletion
  551. delete_account_title = Delete User Account
  552. delete_account_desc = Are you sure you want to permanently delete this user account?
  553. email_notifications.enable = Enable Email Notifications
  554. email_notifications.onmention = Only Email on Mention
  555. email_notifications.disable = Disable Email Notifications
  556. email_notifications.submit = Set Email Preference
  557. [repo]
  558. owner = Owner
  559. repo_name = Repository Name
  560. repo_name_helper = Good repository names use short, memorable and unique keywords.
  561. repo_size = Repository Size
  562. template = Template
  563. template_select = Select a template.
  564. template_helper = Make repository a template
  565. template_description = Template repositories let users generate new repositories with the same directory structure, files, and optional settings.
  566. visibility = Visibility
  567. visibility_description = Only the owner or the organization members if they have rights, will be able to see it.
  568. visibility_helper = Make Repository Private
  569. visibility_helper_forced = Your site administrator forces new repositories to be private.
  570. visibility_fork_helper = (Changing this will affect all forks.)
  571. clone_helper = Need help cloning? Visit <a target="_blank" rel="noopener noreferrer" href="%s">Help</a>.
  572. fork_repo = Fork Repository
  573. fork_from = Fork From
  574. fork_visibility_helper = The visibility of a forked repository cannot be changed.
  575. use_template = Use this template
  576. generate_repo = Generate Repository
  577. generate_from = Generate From
  578. repo_desc = Description
  579. repo_lang = Language
  580. repo_gitignore_helper = Select .gitignore templates.
  581. issue_labels = Issue Labels
  582. issue_labels_helper = Select an issue label set.
  583. license = License
  584. license_helper = Select a license file.
  585. readme = README
  586. readme_helper = Select a README file template.
  587. auto_init = Initialize Repository (Adds .gitignore, License and README)
  588. create_repo = Create Repository
  589. default_branch = Default Branch
  590. mirror_prune = Prune
  591. mirror_prune_desc = Remove obsolete remote-tracking references
  592. mirror_interval = Mirror Interval (valid time units are 'h', 'm', 's'). 0 to disable automatic sync.
  593. mirror_interval_invalid = The mirror interval is not valid.
  594. mirror_address = Clone From URL
  595. mirror_address_desc = Put any required credentials in the Clone Authorization section.
  596. mirror_address_url_invalid = The provided url is invalid. You must escape all components of the url correctly.
  597. mirror_address_protocol_invalid = The provided url is invalid. Only http(s):// or git:// locations can be mirrored from.
  598. mirror_last_synced = Last Synchronized
  599. watchers = Watchers
  600. stargazers = Stargazers
  601. forks = Forks
  602. pick_reaction = Pick your reaction
  603. reactions_more = and %d more
  604. unit_disabled = The site administrator has disabled this repository section.
  605. language_other = Other
  606. template.items = Template Items
  607. template.git_content = Git Content (Default Branch)
  608. template.git_hooks = Git Hooks
  609. template.git_hooks_tooltip = You are currently unable to modify or remove git hooks once added. Select this only if you trust the template repository.
  610. template.webhooks = Webhooks
  611. template.topics = Topics
  612. template.avatar = Avatar
  613. template.issue_labels = Issue Labels
  614. template.one_item = Must select at least one template item
  615. template.invalid = Must select a template repository
  616. archive.title = This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
  617. archive.issue.nocomment = This repo is archived. You cannot comment on issues.
  618. archive.pull.nocomment = This repo is archived. You cannot comment on pull requests.
  619. form.reach_limit_of_creation = You have already reached your limit of %d repositories.
  620. form.name_reserved = The repository name '%s' is reserved.
  621. form.name_pattern_not_allowed = The pattern '%s' is not allowed in a repository name.
  622. need_auth = Clone Authorization
  623. migrate_type = Migration Type
  624. migrate_type_helper = This repository will be a <span class="text blue">mirror</span>
  625. migrate_items = Migration Items
  626. migrate_items_wiki = Wiki
  627. migrate_items_milestones = Milestones
  628. migrate_items_labels = Labels
  629. migrate_items_issues = Issues
  630. migrate_items_pullrequests = Pull Requests
  631. migrate_items_releases = Releases
  632. migrate_repo = Migrate Repository
  633. migrate.clone_address = Migrate / Clone From URL
  634. migrate.clone_address_desc = The HTTP(S) or Git 'clone' URL of an existing repository
  635. migrate.clone_local_path = or a local server path
  636. migrate.permission_denied = You are not allowed to import local repositories.
  637. migrate.invalid_local_path = "The local path is invalid. It does not exist or is not a directory."
  638. migrate.failed = Migration failed: %v
  639. migrate.lfs_mirror_unsupported = Mirroring LFS objects is not supported - use 'git lfs fetch --all' and 'git lfs push --all' instead.
  640. migrate.migrate_items_options = When migrating from github, input a username and migration options will be displayed.
  641. migrated_from = Migrated from <a href="%[1]s">%[2]s</a>
  642. migrated_from_fake = Migrated From %[1]s
  643. migrate.migrating = Migrating from <b>%s</b> ...
  644. migrate.migrating_failed = Migrating from <b>%s</b> failed.
  645. mirror_from = mirror of
  646. forked_from = forked from
  647. generated_from = generated from
  648. fork_from_self = You cannot fork a repository you own.
  649. fork_guest_user = Sign in to fork this repository.
  650. copy_link = Copy
  651. copy_link_success = Link has been copied
  652. copy_link_error = Use ⌘C or Ctrl-C to copy
  653. copied = Copied OK
  654. unwatch = Unwatch
  655. watch = Watch
  656. unstar = Unstar
  657. star = Star
  658. fork = Fork
  659. download_archive = Download Repository
  660. no_desc = No Description
  661. quick_guide = Quick Guide
  662. clone_this_repo = Clone this repository
  663. create_new_repo_command = Creating a new repository on the command line
  664. push_exist_repo = Pushing an existing repository from the command line
  665. empty_message = This repository does not contain any content.
  666. code = Code
  667. code.desc = Access source code, files, commits and branches.
  668. branch = Branch
  669. tree = Tree
  670. filter_branch_and_tag = Filter branch or tag
  671. branches = Branches
  672. tags = Tags
  673. issues = Issues
  674. pulls = Pull Requests
  675. labels = Labels
  676. org_labels_desc = Organization level labels that can be used with <strong>all repositories</strong> under this organization
  677. org_labels_desc_manage = manage
  678. milestones = Milestones
  679. commits = Commits
  680. commit = Commit
  681. releases = Releases
  682. file_raw = Raw
  683. file_history = History
  684. file_view_raw = View Raw
  685. file_permalink = Permalink
  686. file_too_large = The file is too large to be shown.
  687. video_not_supported_in_browser = Your browser does not support the HTML5 'video' tag.
  688. audio_not_supported_in_browser = Your browser does not support the HTML5 'audio' tag.
  689. stored_lfs = Stored with Git LFS
  690. symbolic_link = Symbolic link
  691. commit_graph = Commit Graph
  692. blame = Blame
  693. normal_view = Normal View
  694. line = line
  695. lines = lines
  696. editor.new_file = New File
  697. editor.upload_file = Upload File
  698. editor.edit_file = Edit File
  699. editor.preview_changes = Preview Changes
  700. editor.cannot_edit_lfs_files = LFS files cannot be edited in the web interface.
  701. editor.cannot_edit_non_text_files = Binary files cannot be edited in the web interface.
  702. editor.edit_this_file = Edit File
  703. editor.this_file_locked = File is locked
  704. editor.must_be_on_a_branch = You must be on a branch to make or propose changes to this file.
  705. editor.fork_before_edit = You must fork this repository to make or propose changes to this file.
  706. editor.delete_this_file = Delete File
  707. editor.must_have_write_access = You must have write access to make or propose changes to this file.
  708. editor.file_delete_success = File '%s' has been deleted.
  709. editor.name_your_file = Name your file…
  710. editor.filename_help = Add a directory by typing its name followed by a slash ('/'). Remove a directory by typing backspace at the beginning of the input field.
  711. editor.or = or
  712. editor.cancel_lower = Cancel
  713. editor.commit_signed_changes = Commit Signed Changes
  714. editor.commit_changes = Commit Changes
  715. editor.add_tmpl = Add '<filename>'
  716. editor.add = Add '%s'
  717. editor.update = Update '%s'
  718. editor.delete = Delete '%s'
  719. editor.commit_message_desc = Add an optional extended description…
  720. editor.commit_directly_to_this_branch = Commit directly to the <strong class="branch-name">%s</strong> branch.
  721. editor.create_new_branch = Create a <strong>new branch</strong> for this commit and start a pull request.
  722. editor.create_new_branch_np = Create a <strong>new branch</strong> for this commit.
  723. editor.propose_file_change = Propose file change
  724. editor.new_branch_name_desc = New branch name…
  725. editor.cancel = Cancel
  726. editor.filename_cannot_be_empty = The filename cannot be empty.
  727. editor.filename_is_invalid = The filename is invalid: '%s'.
  728. editor.branch_does_not_exist = Branch '%s' does not exist in this repository.
  729. editor.branch_already_exists = Branch '%s' already exists in this repository.
  730. editor.directory_is_a_file = Directory name '%s' is already used as a filename in this repository.
  731. editor.file_is_a_symlink = '%s' is a symbolic link. Symbolic links cannot be edited in the web editor
  732. editor.filename_is_a_directory = Filename '%s' is already used as a directory name in this repository.
  733. editor.file_editing_no_longer_exists = The file being edited, '%s', no longer exists in this repository.
  734. editor.file_deleting_no_longer_exists = The file being deleted, '%s', no longer exists in this repository.
  735. editor.file_changed_while_editing = The file contents have changed since you started editing. <a target="_blank" rel="noopener noreferrer" href="%s">Click here</a> to see them or <strong>Commit Changes again</strong> to overwrite them.
  736. editor.file_already_exists = A file named '%s' already exists in this repository.
  737. editor.commit_empty_file_header = Commit an empty file
  738. editor.commit_empty_file_text = The file you're about commit is empty. Proceed?
  739. editor.no_changes_to_show = There are no changes to show.
  740. editor.fail_to_update_file = Failed to update/create file '%s' with error: %v
  741. editor.push_rejected_no_message = The change was rejected by the server without a message. Please check githooks.
  742. editor.push_rejected = The change was rejected by the server with the following message:<br>%s<br> Please check githooks.
  743. editor.add_subdir = Add a directory…
  744. editor.unable_to_upload_files = Failed to upload files to '%s' with error: %v
  745. editor.upload_file_is_locked = File '%s' is locked by %s.
  746. editor.upload_files_to_dir = Upload files to '%s'
  747. editor.cannot_commit_to_protected_branch = Cannot commit to protected branch '%s'.
  748. editor.no_commit_to_branch = Unable to commit directly to branch because:
  749. editor.user_no_push_to_branch = User cannot push to branch
  750. editor.require_signed_commit = Branch requires a signed commit
  751. commits.desc = Browse source code change history.
  752. commits.commits = Commits
  753. commits.no_commits = No commits in common. '%s' and '%s' have entirely different histories.
  754. commits.search = Search commits…
  755. commits.search.tooltip = You can prefix keywords with "author:", "committer:", "after:", or "before:", e.g. "revert author:Alice before:2019-04-01".
  756. commits.find = Search
  757. commits.search_all = All Branches
  758. commits.author = Author
  759. commits.message = Message
  760. commits.date = Date
  761. commits.older = Older
  762. commits.newer = Newer
  763. commits.signed_by = Signed by
  764. commits.signed_by_untrusted_user = Signed by untrusted user
  765. commits.signed_by_untrusted_user_unmatched = Signed by untrusted user who does not match committer
  766. commits.gpg_key_id = GPG Key ID
  767. ext_issues = Ext. Issues
  768. ext_issues.desc = Link to an external issue tracker.
  769. issues.desc = Organize bug reports, tasks and milestones.
  770. issues.new = New Issue
  771. issues.new.title_empty = Title cannot be empty
  772. issues.new.labels = Labels
  773. issues.new.no_label = No Label
  774. issues.new.clear_labels = Clear labels
  775. issues.new.milestone = Milestone
  776. issues.new.no_milestone = No Milestone
  777. issues.new.clear_milestone = Clear milestone
  778. issues.new.open_milestone = Open Milestones
  779. issues.new.closed_milestone = Closed Milestones
  780. issues.new.assignees = Assignees
  781. issues.new.clear_assignees = Clear assignees
  782. issues.new.no_assignees = No Assignees
  783. issues.no_ref = No Branch/Tag Specified
  784. issues.create = Create Issue
  785. issues.new_label = New Label
  786. issues.new_label_placeholder = Label name
  787. issues.new_label_desc_placeholder = Description
  788. issues.create_label = Create Label
  789. issues.label_templates.title = Load a predefined set of labels
  790. issues.label_templates.info = No labels exist yet. Create a label with 'New Label' or use a predefined label set:
  791. issues.label_templates.helper = Select a label set
  792. issues.label_templates.use = Use Label Set
  793. issues.label_templates.fail_to_load_file = Failed to load label template file '%s': %v
  794. issues.add_label_at = added the <div class="ui label has-emoji" style="color: %s\; background-color: %s">%s</div> label %s
  795. issues.remove_label_at = removed the <div class="ui label has-emoji" style="color: %s\; background-color: %s">%s</div> label %s
  796. issues.add_milestone_at = `added this to the <b>%s</b> milestone %s`
  797. issues.change_milestone_at = `modified the milestone from <b>%s</b> to <b>%s</b> %s`
  798. issues.remove_milestone_at = `removed this from the <b>%s</b> milestone %s`
  799. issues.deleted_milestone = `(deleted)`
  800. issues.self_assign_at = `self-assigned this %s`
  801. issues.add_assignee_at = `was assigned by <b>%s</b> %s`
  802. issues.remove_assignee_at = `was unassigned by <b>%s</b> %s`
  803. issues.remove_self_assignment = `removed their assignment %s`
  804. issues.change_title_at = `changed title from <b><strike>%s</strike></b> to <b>%s</b> %s`
  805. issues.delete_branch_at = `deleted branch <b>%s</b> %s`
  806. issues.open_tab = %d Open
  807. issues.close_tab = %d Closed
  808. issues.filter_label = Label
  809. issues.filter_label_exclude = `Use <code>alt</code> + <code>click/enter</code> to exclude labels`
  810. issues.filter_label_no_select = All labels
  811. issues.filter_milestone = Milestone
  812. issues.filter_milestone_no_select = All milestones
  813. issues.filter_assignee = Assignee
  814. issues.filter_assginee_no_select = All assignees
  815. issues.filter_type = Type
  816. issues.filter_type.all_issues = All issues
  817. issues.filter_type.assigned_to_you = Assigned to you
  818. issues.filter_type.created_by_you = Created by you
  819. issues.filter_type.mentioning_you = Mentioning you
  820. issues.filter_sort = Sort
  821. issues.filter_sort.latest = Newest
  822. issues.filter_sort.oldest = Oldest
  823. issues.filter_sort.recentupdate = Recently updated
  824. issues.filter_sort.leastupdate = Least recently updated
  825. issues.filter_sort.mostcomment = Most commented
  826. issues.filter_sort.leastcomment = Least commented
  827. issues.filter_sort.nearduedate = Nearest due date
  828. issues.filter_sort.farduedate = Farthest due date
  829. issues.filter_sort.moststars = Most stars
  830. issues.filter_sort.feweststars = Fewest stars
  831. issues.filter_sort.mostforks = Most forks
  832. issues.filter_sort.fewestforks = Fewest forks
  833. issues.action_open = Open
  834. issues.action_close = Close
  835. issues.action_label = Label
  836. issues.action_milestone = Milestone
  837. issues.action_milestone_no_select = No milestone
  838. issues.action_assignee = Assignee
  839. issues.action_assignee_no_select = No assignee
  840. issues.opened_by = opened %[1]s by <a href="%[2]s">%[3]s</a>
  841. pulls.merged_by = merged %[1]s by <a href="%[2]s">%[3]s</a>
  842. pulls.merged_by_fake = merged %[1]s by %[2]s
  843. issues.closed_by = by <a href="%[2]s">%[3]s</a> closed %[1]s
  844. issues.opened_by_fake = opened %[1]s by %[2]s
  845. issues.closed_by_fake = by %[2]s closed %[1]s
  846. issues.previous = Previous
  847. issues.next = Next
  848. issues.open_title = Open
  849. issues.closed_title = Closed
  850. issues.num_comments = %d comments
  851. issues.commented_at = `commented <a href="#%s">%s</a>`
  852. issues.delete_comment_confirm = Are you sure you want to delete this comment?
  853. issues.context.copy_link = Copy Link
  854. issues.context.quote_reply = Quote Reply
  855. issues.context.edit = Edit
  856. issues.context.delete = Delete
  857. issues.no_content = There is no content yet.
  858. issues.close_issue = Close
  859. issues.close_comment_issue = Comment and Close
  860. issues.reopen_issue = Reopen
  861. issues.reopen_comment_issue = Comment and Reopen
  862. issues.create_comment = Comment
  863. issues.closed_at = `closed <a id="%[1]s" href="#%[1]s">%[2]s</a>`
  864. issues.reopened_at = `reopened <a id="%[1]s" href="#%[1]s">%[2]s</a>`
  865. issues.commit_ref_at = `referenced this issue from a commit <a id="%[1]s" href="#%[1]s">%[2]s</a>`
  866. issues.ref_issue_from = `<a href="%[3]s">referenced this issue %[4]s</a> <a id="%[1]s" href="#%[1]s">%[2]s</a>`
  867. issues.ref_pull_from = `<a href="%[3]s">referenced this pull request %[4]s</a> <a id="%[1]s" href="#%[1]s">%[2]s</a>`
  868. issues.ref_closing_from = `<a href="%[3]s">referenced a pull request %[4]s that will close this issue</a> <a id="%[1]s" href="#%[1]s">%[2]s</a>`
  869. issues.ref_reopening_from = `<a href="%[3]s">referenced a pull request %[4]s that will reopen this issue</a> <a id="%[1]s" href="#%[1]s">%[2]s</a>`
  870. issues.ref_closed_from = `<a href="%[3]s">closed this issue %[4]s</a> <a id="%[1]s" href="#%[1]s">%[2]s</a>`
  871. issues.ref_reopened_from = `<a href="%[3]s">reopened this issue %[4]s</a> <a id="%[1]s" href="#%[1]s">%[2]s</a>`
  872. issues.ref_from = `from %[1]s`
  873. issues.poster = Poster
  874. issues.collaborator = Collaborator
  875. issues.owner = Owner
  876. issues.sign_in_require_desc = <a href="%s">Sign in</a> to join this conversation.
  877. issues.edit = Edit
  878. issues.cancel = Cancel
  879. issues.save = Save
  880. issues.label_title = Label name
  881. issues.label_description = Label description
  882. issues.label_color = Label color
  883. issues.label_count = %d labels
  884. issues.label_open_issues = %d open issues
  885. issues.label_edit = Edit
  886. issues.label_delete = Delete
  887. issues.label_modify = Edit Label
  888. issues.label_deletion = Delete Label
  889. issues.label_deletion_desc = Deleting a label removes it from all issues. Continue?
  890. issues.label_deletion_success = The label has been deleted.
  891. issues.label.filter_sort.alphabetically = Alphabetically
  892. issues.label.filter_sort.reverse_alphabetically = Reverse alphabetically
  893. issues.label.filter_sort.by_size = Smallest size
  894. issues.label.filter_sort.reverse_by_size = Largest size
  895. issues.num_participants = %d Participants
  896. issues.attachment.open_tab = `Click to see "%s" in a new tab`
  897. issues.attachment.download = `Click to download "%s"`
  898. issues.subscribe = Subscribe
  899. issues.unsubscribe = Unsubscribe
  900. issues.lock = Lock conversation
  901. issues.unlock = Unlock conversation
  902. issues.lock.unknown_reason = Cannot lock an issue with an unknown reason.
  903. issues.lock_duplicate = An issue cannot be locked twice.
  904. issues.unlock_error = Cannot unlock an issue that is not locked.
  905. issues.lock_with_reason = "locked as <strong>%s</strong> and limited conversation to collaborators %s"
  906. issues.lock_no_reason = "locked and limited conversation to collaborators %s"
  907. issues.unlock_comment = "unlocked this conversation %s"
  908. issues.lock_confirm = Lock
  909. issues.unlock_confirm = Unlock
  910. issues.lock.notice_1 = - Other users can’t add new comments to this issue.
  911. issues.lock.notice_2 = - You and other collaborators with access to this repository can still leave comments that others can see.
  912. issues.lock.notice_3 = - You can always unlock this issue again in the future.
  913. issues.unlock.notice_1 = - Everyone would be able to comment on this issue once more.
  914. issues.unlock.notice_2 = - You can always lock this issue again in the future.
  915. issues.lock.reason = Reason for locking
  916. issues.lock.title = Lock conversation on this issue.
  917. issues.unlock.title = Unlock conversation on this issue.
  918. issues.comment_on_locked = You cannot comment on a locked issue.
  919. issues.tracker = Time Tracker
  920. issues.start_tracking_short = Start
  921. issues.start_tracking = Start Time Tracking
  922. issues.start_tracking_history = `started working %s`
  923. issues.tracker_auto_close = Timer will be stopped automatically when this issue gets closed
  924. issues.tracking_already_started = `You have already started time tracking on this <a href="%s">issue</a>!`
  925. issues.stop_tracking = Stop
  926. issues.stop_tracking_history = `stopped working %s`
  927. issues.add_time = Manually Add Time
  928. issues.add_time_short = Add Time
  929. issues.add_time_cancel = Cancel
  930. issues.add_time_history = `added spent time %s`
  931. issues.del_time_history= `deleted spent time %s`
  932. issues.add_time_hours = Hours
  933. issues.add_time_minutes = Minutes
  934. issues.add_time_sum_to_small = No time was entered.
  935. issues.cancel_tracking = Cancel
  936. issues.cancel_tracking_history = `cancelled time tracking %s`
  937. issues.time_spent_total = Total Time Spent
  938. issues.time_spent_from_all_authors = `Total Time Spent: %s`
  939. issues.due_date = Due Date
  940. issues.invalid_due_date_format = "Due date format must be 'yyyy-mm-dd'."
  941. issues.error_modifying_due_date = "Failed to modify the due date."
  942. issues.error_removing_due_date = "Failed to remove the due date."
  943. issues.due_date_form = "yyyy-mm-dd"
  944. issues.due_date_form_add = "Add due date"
  945. issues.due_date_form_edit = "Edit"
  946. issues.due_date_form_remove = "Remove"
  947. issues.due_date_not_writer = "You need repository write access to update an issue's due date."
  948. issues.due_date_not_set = "No due date set."
  949. issues.due_date_added = "added the due date %s %s"
  950. issues.due_date_modified = "modified the due date to %s from %s %s"
  951. issues.due_date_remove = "removed the due date %s %s"
  952. issues.due_date_overdue = "Overdue"
  953. issues.due_date_invalid = "The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'."
  954. issues.dependency.title = Dependencies
  955. issues.dependency.issue_no_dependencies = This issue currently doesn't have any dependencies.
  956. issues.dependency.pr_no_dependencies = This pull request currently doesn't have any dependencies.
  957. issues.dependency.add = Add dependency…
  958. issues.dependency.cancel = Cancel
  959. issues.dependency.remove = Remove
  960. issues.dependency.remove_info = Remove this dependency
  961. issues.dependency.added_dependency = `<a href="%[1]s">%[2]s</a> added a new dependency %[3]s`
  962. issues.dependency.removed_dependency = `<a href="%[1]s">%[2]s</a> removed a dependency %[3]s`
  963. issues.dependency.issue_closing_blockedby = Closing this pull request is blocked by the following issues
  964. issues.dependency.pr_closing_blockedby = Closing this issue is blocked by the following issues
  965. issues.dependency.issue_close_blocks = This issue blocks closing of the following issues
  966. issues.dependency.pr_close_blocks = This pull request blocks closing of the following issues
  967. issues.dependency.issue_close_blocked = You need to close all issues blocking this issue before you can close it.
  968. issues.dependency.pr_close_blocked = You need to close all issues blocking this pull request before you can merge it.
  969. issues.dependency.blocks_short = Blocks
  970. issues.dependency.blocked_by_short = Depends on
  971. issues.dependency.remove_header = Remove Dependency
  972. issues.dependency.issue_remove_text = This will remove the dependency from this issue. Continue?
  973. issues.dependency.pr_remove_text = This will remove the dependency from this pull request. Continue?
  974. issues.dependency.setting = Enable Dependencies For Issues and Pull Requests
  975. issues.dependency.add_error_same_issue = You cannot make an issue depend on itself.
  976. issues.dependency.add_error_dep_issue_not_exist = Dependent issue does not exist.
  977. issues.dependency.add_error_dep_not_exist = Dependency does not exist.
  978. issues.dependency.add_error_dep_exists = Dependency already exists.
  979. issues.dependency.add_error_cannot_create_circular = You cannot create a dependency with two issues blocking each other.
  980. issues.dependency.add_error_dep_not_same_repo = Both issues must be in the same repository.
  981. issues.review.self.approval = You cannot approve your own pull request.
  982. issues.review.self.rejection = You cannot request changes on your own pull request.
  983. issues.review.approve = "approved these changes %s"
  984. issues.review.comment = "reviewed %s"
  985. issues.review.content.empty = You need to leave a comment indicating the requested change(s).
  986. issues.review.reject = "requested changes %s"
  987. issues.review.pending = Pending
  988. issues.review.review = Review
  989. issues.review.reviewers = Reviewers
  990. issues.review.show_outdated = Show outdated
  991. issues.review.hide_outdated = Hide outdated
  992. issues.assignee.error = Not all assignees was added due to an unexpected error.
  993. pulls.desc = Enable pull requests and code reviews.
  994. pulls.new = New Pull Request
  995. pulls.compare_changes = New Pull Request
  996. pulls.compare_changes_desc = Select the branch to merge into and the branch to pull from.
  997. pulls.compare_base = merge into
  998. pulls.compare_compare = pull from
  999. pulls.filter_branch = Filter branch
  1000. pulls.no_results = No results found.
  1001. pulls.nothing_to_compare = These branches are equal. There is no need to create a pull request.
  1002. pulls.has_pull_request = `A pull request between these branches already exists: <a href="%[1]s/pulls/%[3]d">%[2]s#%[3]d</a>`
  1003. pulls.create = Create Pull Request
  1004. pulls.title_desc = wants to merge %[1]d commits from <code>%[2]s</code> into <code id="branch_target">%[3]s</code>
  1005. pulls.merged_title_desc = merged %[1]d commits from <code>%[2]s</code> into <code>%[3]s</code> %[4]s
  1006. pulls.change_target_branch_at = `changed target branch from <b>%s</b> to <b>%s</b> %s`
  1007. pulls.tab_conversation = Conversation
  1008. pulls.tab_commits = Commits
  1009. pulls.tab_files = Files Changed
  1010. pulls.reopen_to_merge = Please reopen this pull request to perform a merge.
  1011. pulls.cant_reopen_deleted_branch = This pull request cannot be reopened because the branch was deleted.
  1012. pulls.merged = Merged
  1013. pulls.merged_as = The pull request has been merged as <a rel="nofollow" class="ui sha" href="%[1]s"><code>%[2]s</code></a>.
  1014. pulls.is_closed = The pull request has been closed.
  1015. pulls.has_merged = The pull request has been merged.
  1016. pulls.title_wip_desc = `<a href="#">Start the title with <strong>%s</strong></a> to prevent the pull request from being merged accidentally.`
  1017. pulls.cannot_merge_work_in_progress = This pull request is marked as a work in progress. Remove the <strong>%s</strong> prefix from the title when it's ready
  1018. pulls.data_broken = This pull request is broken due to missing fork information.
  1019. pulls.files_conflicted = This pull request has changes conflicting with the target branch.
  1020. pulls.is_checking = "Merge conflict checking is in progress. Try again in few moments."
  1021. pulls.required_status_check_failed = Some required checks were not successful.
  1022. pulls.required_status_check_administrator = As an administrator, you may still merge this pull request.
  1023. pulls.blocked_by_approvals = "This Pull Request doesn't have enough approvals yet. %d of %d approvals granted."
  1024. pulls.blocked_by_rejection = "This Pull Request has changes requested by an official reviewer."
  1025. pulls.can_auto_merge_desc = This pull request can be merged automatically.
  1026. pulls.cannot_auto_merge_desc = This pull request cannot be merged automatically due to conflicts.
  1027. pulls.cannot_auto_merge_helper = Merge manually to resolve the conflicts.
  1028. pulls.num_conflicting_files_1 = "%d conflicting file"
  1029. pulls.num_conflicting_files_n = "%d conflicting files"
  1030. pulls.approve_count_1 = "%d approval"
  1031. pulls.approve_count_n = "%d approvals"
  1032. pulls.reject_count_1 = "%d change request"
  1033. pulls.reject_count_n = "%d change requests"
  1034. pulls.no_merge_desc = This pull request cannot be merged because all repository merge options are disabled.
  1035. pulls.no_merge_helper = Enable merge options in the repository settings or merge the pull request manually.
  1036. pulls.no_merge_wip = This pull request can not be merged because it is marked as being a work in progress.
  1037. pulls.no_merge_not_ready = This pull request is not ready to be merged, check review status and status checks.
  1038. pulls.no_merge_access = You are not authorized to merge this pull request.
  1039. pulls.merge_pull_request = Merge Pull Request
  1040. pulls.rebase_merge_pull_request = Rebase and Merge
  1041. pulls.rebase_merge_commit_pull_request = Rebase and Merge (--no-ff)
  1042. pulls.squash_merge_pull_request = Squash and Merge
  1043. pulls.require_signed_wont_sign = The branch requires signed commits but this merge will not be signed
  1044. pulls.invalid_merge_option = You cannot use this merge option for this pull request.
  1045. pulls.merge_conflict = Merge Failed: There was a conflict whilst merging: %[1]s<br>%[2]s<br>Hint: Try a different strategy
  1046. pulls.rebase_conflict = Merge Failed: There was a conflict whilst rebasing commit: %[1]s<br>%[2]s<br>%[3]s<br>Hint:Try a different strategy
  1047. pulls.unrelated_histories = Merge Failed: The merge head and base do not share a common history. Hint: Try a different strategy
  1048. pulls.merge_out_of_date = Merge Failed: Whilst generating the merge, the base was updated. Hint: Try again.
  1049. pulls.push_rejected = Merge Failed: The push was rejected with the following message:<br>%s<br>Review the githooks for this repository
  1050. pulls.push_rejected_no_message = Merge Failed: The push was rejected but there was no remote message.<br>Review the githooks for this repository
  1051. pulls.open_unmerged_pull_exists = `You cannot perform a reopen operation because there is a pending pull request (#%d) with identical properties.`
  1052. pulls.status_checking = Some checks are pending
  1053. pulls.status_checks_success = All checks were successful
  1054. pulls.status_checks_error = Some checks failed
  1055. pulls.update_branch = Update branch
  1056. pulls.update_branch_success = Branch update was successful
  1057. pulls.update_not_allowed = You are not allowed to update branch
  1058. pulls.outdated_with_base_branch = This branch is out-of-date with the base branch
  1059. milestones.new = New Milestone
  1060. milestones.open_tab = %d Open
  1061. milestones.close_tab = %d Closed
  1062. milestones.closed = Closed %s
  1063. milestones.no_due_date = No due date
  1064. milestones.open = Open
  1065. milestones.close = Close
  1066. milestones.new_subheader = Milestones organize issues and track progress.
  1067. milestones.completeness = %d%% Completed
  1068. milestones.create = Create Milestone
  1069. milestones.title = Title
  1070. milestones.desc = Description
  1071. milestones.due_date = Due Date (optional)
  1072. milestones.clear = Clear
  1073. milestones.invalid_due_date_format = "Due date format must be 'yyyy-mm-dd'."
  1074. milestones.create_success = The milestone '%s' has been created.
  1075. milestones.edit = Edit Milestone
  1076. milestones.edit_subheader = Milestones organize issues and track progress.
  1077. milestones.cancel = Cancel
  1078. milestones.modify = Update Milestone
  1079. milestones.edit_success = Milestone '%s' has been updated.
  1080. milestones.deletion = Delete Milestone
  1081. milestones.deletion_desc = Deleting a milestone removes it from all related issues. Continue?
  1082. milestones.deletion_success = The milestone has been deleted.
  1083. milestones.filter_sort.closest_due_date = Closest due date
  1084. milestones.filter_sort.furthest_due_date = Furthest due date
  1085. milestones.filter_sort.least_complete = Least complete
  1086. milestones.filter_sort.most_complete = Most complete
  1087. milestones.filter_sort.most_issues = Most issues
  1088. milestones.filter_sort.least_issues = Least issues
  1089. signing.will_sign = This commit will be signed with key '%s'
  1090. signing.wont_sign.error = There was an error whilst checking if the commit could be signed
  1091. signing.wont_sign.nokey = There is no key available to sign this commit
  1092. signing.wont_sign.never = Commits are never signed
  1093. signing.wont_sign.always = Commits are always signed
  1094. signing.wont_sign.pubkey = The commit will not be signed because you do not have a public key associated with your account
  1095. signing.wont_sign.twofa = You must have two factor authentication enabled to have commits signed
  1096. signing.wont_sign.parentsigned = The commit will not be signed as the parent commit is not signed
  1097. signing.wont_sign.basesigned = The merge will not be signed as the base commit is not signed
  1098. signing.wont_sign.headsigned = The merge will not be signed as the head commit is not signed
  1099. signing.wont_sign.commitssigned = The merge will not be signed as all the associated commits are not signed
  1100. signing.wont_sign.approved = The merge will not be signed as the PR is not approved
  1101. ext_wiki = Ext. Wiki
  1102. ext_wiki.desc = Link to an external wiki.
  1103. wiki = Wiki
  1104. wiki.welcome = Welcome to the Wiki.
  1105. wiki.welcome_desc = The wiki lets you write and share documentation with collaborators.
  1106. wiki.desc = Write and share documentation with collaborators.
  1107. wiki.create_first_page = Create the First Page
  1108. wiki.page = Page
  1109. wiki.filter_page = Filter page
  1110. wiki.new_page = Page
  1111. wiki.default_commit_message = Write a note about this page update (optional).
  1112. wiki.save_page = Save Page
  1113. wiki.last_commit_info = %s edited this page %s
  1114. wiki.edit_page_button = Edit
  1115. wiki.new_page_button = New Page
  1116. wiki.file_revision = Page Revision
  1117. wiki.wiki_page_revisions = Wiki Page Revisions
  1118. wiki.back_to_wiki = Back to wiki page
  1119. wiki.delete_page_button = Delete Page
  1120. wiki.delete_page_notice_1 = Deleting the wiki page '%s' cannot be undone. Continue?
  1121. wiki.page_already_exists = A wiki page with the same name already exists.
  1122. wiki.reserved_page = The wiki page name '%s' is reserved.
  1123. wiki.pages = Pages
  1124. wiki.last_updated = Last updated %s
  1125. activity = Activity
  1126. activity.period.filter_label = Period:
  1127. activity.period.daily = 1 day
  1128. activity.period.halfweekly = 3 days
  1129. activity.period.weekly = 1 week
  1130. activity.period.monthly = 1 month
  1131. activity.period.quarterly = 3 months
  1132. activity.period.semiyearly = 6 months
  1133. activity.period.yearly = 1 year
  1134. activity.overview = Overview
  1135. activity.active_prs_count_1 = <strong>%d</strong> Active Pull Request
  1136. activity.active_prs_count_n = <strong>%d</strong> Active Pull Requests
  1137. activity.merged_prs_count_1 = Merged Pull Request
  1138. activity.merged_prs_count_n = Merged Pull Requests
  1139. activity.opened_prs_count_1 = Proposed Pull Request
  1140. activity.opened_prs_count_n = Proposed Pull Requests
  1141. activity.title.user_1 = %d user
  1142. activity.title.user_n = %d users
  1143. activity.title.prs_1 = %d Pull request
  1144. activity.title.prs_n = %d Pull requests
  1145. activity.title.prs_merged_by = %s merged by %s
  1146. activity.title.prs_opened_by = %s proposed by %s
  1147. activity.merged_prs_label = Merged
  1148. activity.opened_prs_label = Proposed
  1149. activity.active_issues_count_1 = <strong>%d</strong> Active Issue
  1150. activity.active_issues_count_n = <strong>%d</strong> Active Issues
  1151. activity.closed_issues_count_1 = Closed Issue
  1152. activity.closed_issues_count_n = Closed Issues
  1153. activity.title.issues_1 = %d Issue
  1154. activity.title.issues_n = %d Issues
  1155. activity.title.issues_closed_by = %s closed by %s
  1156. activity.title.issues_created_by = %s created by %s
  1157. activity.closed_issue_label = Closed
  1158. activity.new_issues_count_1 = New Issue
  1159. activity.new_issues_count_n = New Issues
  1160. activity.new_issue_label = Opened
  1161. activity.title.unresolved_conv_1 = %d Unresolved Conversation
  1162. activity.title.unresolved_conv_n = %d Unresolved Conversations
  1163. activity.unresolved_conv_desc = These recently changed issues and pull requests have not been resolved yet.
  1164. activity.unresolved_conv_label = Open
  1165. activity.title.releases_1 = %d Release
  1166. activity.title.releases_n = %d Releases
  1167. activity.title.releases_published_by = %s published by %s
  1168. activity.published_release_label = Published
  1169. activity.no_git_activity = There has not been any commit activity in this period.
  1170. activity.git_stats_exclude_merges = Excluding merges,
  1171. activity.git_stats_author_1 = %d author
  1172. activity.git_stats_author_n = %d authors
  1173. activity.git_stats_pushed_1 = has pushed
  1174. activity.git_stats_pushed_n = have pushed
  1175. activity.git_stats_commit_1 = %d commit
  1176. activity.git_stats_commit_n = %d commits
  1177. activity.git_stats_push_to_branch = to %s and
  1178. activity.git_stats_push_to_all_branches = to all branches.
  1179. activity.git_stats_on_default_branch = On %s,
  1180. activity.git_stats_file_1 = %d file
  1181. activity.git_stats_file_n = %d files
  1182. activity.git_stats_files_changed_1 = has changed
  1183. activity.git_stats_files_changed_n = have changed
  1184. activity.git_stats_additions = and there have been
  1185. activity.git_stats_addition_1 = %d addition
  1186. activity.git_stats_addition_n = %d additions
  1187. activity.git_stats_and_deletions = and
  1188. activity.git_stats_deletion_1 = %d deletion
  1189. activity.git_stats_deletion_n = %d deletions
  1190. search = Search
  1191. search.search_repo = Search repository
  1192. search.results = Search results for "%s" in <a href="%s">%s</a>
  1193. settings = Settings
  1194. settings.desc = Settings is where you can manage the settings for the repository
  1195. settings.options = Repository
  1196. settings.collaboration = Collaborators
  1197. settings.collaboration.admin = Administrator
  1198. settings.collaboration.write = Write
  1199. settings.collaboration.read = Read
  1200. settings.collaboration.owner = Owner
  1201. settings.collaboration.undefined = Undefined
  1202. settings.hooks = Webhooks
  1203. settings.githooks = Git Hooks
  1204. settings.basic_settings = Basic Settings
  1205. settings.mirror_settings = Mirror Settings
  1206. settings.sync_mirror = Synchronize Now
  1207. settings.mirror_sync_in_progress = Mirror synchronization is in progress. Check back in a minute.
  1208. settings.email_notifications.enable = Enable Email Notifications
  1209. settings.email_notifications.onmention = Only Email on Mention
  1210. settings.email_notifications.disable = Disable Email Notifications
  1211. settings.email_notifications.submit = Set Email Preference
  1212. settings.site = Website
  1213. settings.update_settings = Update Settings
  1214. settings.advanced_settings = Advanced Settings
  1215. settings.wiki_desc = Enable Repository Wiki
  1216. settings.use_internal_wiki = Use Built-In Wiki
  1217. settings.use_external_wiki = Use External Wiki
  1218. settings.external_wiki_url = External Wiki URL
  1219. settings.external_wiki_url_error = The external wiki URL is not a valid URL.
  1220. settings.external_wiki_url_desc = Visitors are redirected to the external wiki URL when clicking the wiki tab.
  1221. settings.issues_desc = Enable Repository Issue Tracker
  1222. settings.use_internal_issue_tracker = Use Built-In Issue Tracker
  1223. settings.use_external_issue_tracker = Use External Issue Tracker
  1224. settings.external_tracker_url = External Issue Tracker URL
  1225. settings.external_tracker_url_error = The external issue tracker URL is not a valid URL.
  1226. settings.external_tracker_url_desc = Visitors are redirected to the external issue tracker URL when clicking on the issues tab.
  1227. settings.tracker_url_format = External Issue Tracker URL Format
  1228. settings.tracker_url_format_error = The external issue tracker URL format is not a valid URL.
  1229. settings.tracker_issue_style = External Issue Tracker Number Format
  1230. settings.tracker_issue_style.numeric = Numeric
  1231. settings.tracker_issue_style.alphanumeric = Alphanumeric
  1232. settings.tracker_url_format_desc = Use the placeholders <code>{user}</code>, <code>{repo}</code> and <code>{index}</code> for the username, repository name and issue index.
  1233. settings.enable_timetracker = Enable Time Tracking
  1234. settings.allow_only_contributors_to_track_time = Let Only Contributors Track Time
  1235. settings.pulls_desc = Enable Repository Pull Requests
  1236. settings.pulls.ignore_whitespace = Ignore Whitespace for Conflicts
  1237. settings.pulls.allow_merge_commits = Enable Commit Merging
  1238. settings.pulls.allow_rebase_merge = Enable Rebasing to Merge Commits
  1239. settings.pulls.allow_rebase_merge_commit = Enable Rebasing with explicit merge commits (--no-ff)
  1240. settings.pulls.allow_squash_commits = Enable Squashing to Merge Commits
  1241. settings.admin_settings = Administrator Settings
  1242. settings.admin_enable_health_check = Enable Repository Health Checks (git fsck)
  1243. settings.admin_enable_close_issues_via_commit_in_any_branch = Close an issue via a commit made in a non default branch
  1244. settings.danger_zone = Danger Zone
  1245. settings.new_owner_has_same_repo = The new owner already has a repository with same name. Please choose another name.
  1246. settings.convert = Convert to Regular Repository
  1247. settings.convert_desc = You can convert this mirror into a regular repository. This cannot be undone.
  1248. settings.convert_notices_1 = This operation will convert the mirror into a regular repository and cannot be undone.
  1249. settings.convert_confirm = Convert Repository
  1250. settings.convert_succeed = The mirror has been converted into a regular repository.
  1251. settings.transfer = Transfer Ownership
  1252. settings.transfer_desc = Transfer this repository to a user or to an organization for which you have administrator rights.
  1253. settings.transfer_notices_1 = - You will lose access to the repository if you transfer it to an individual user.
  1254. settings.transfer_notices_2 = - You will keep access to the repository if you transfer it to an organization that you (co-)own.
  1255. settings.transfer_form_title = Enter the repository name as confirmation:
  1256. settings.wiki_delete = Delete Wiki Data
  1257. settings.wiki_delete_desc = Deleting repository wiki data is permanent and cannot be undone.
  1258. settings.wiki_delete_notices_1 = - This will permanently delete and disable the repository wiki for %s.
  1259. settings.confirm_wiki_delete = Delete Wiki Data
  1260. settings.wiki_deletion_success = The repository wiki data has been deleted.
  1261. settings.delete = Delete This Repository
  1262. settings.delete_desc = Deleting a repository is permanent and cannot be undone.
  1263. settings.delete_notices_1 = - This operation <strong>CANNOT</strong> be undone.
  1264. settings.delete_notices_2 = - This operation will permanently delete the <strong>%s</strong> repository including code, issues, comments, wiki data and collaborator settings.
  1265. settings.delete_notices_fork_1 = - Forks of this repository will become independent after deletion.
  1266. settings.deletion_success = The repository has been deleted.
  1267. settings.update_settings_success = The repository settings have been updated.
  1268. settings.transfer_owner = New Owner
  1269. settings.make_transfer = Perform Transfer
  1270. settings.transfer_succeed = The repository has been transferred.
  1271. settings.confirm_delete = Delete Repository
  1272. settings.add_collaborator = Add Collaborator
  1273. settings.add_collaborator_success = The collaborator has been added.
  1274. settings.add_collaborator_inactive_user = Can not add an inactive user as a collaborator.
  1275. settings.add_collaborator_duplicate = The collaborator is already added to this repository.
  1276. settings.delete_collaborator = Remove
  1277. settings.collaborator_deletion = Remove Collaborator
  1278. settings.collaborator_deletion_desc = Removing a collaborator will revoke their access to this repository. Continue?
  1279. settings.remove_collaborator_success = The collaborator has been removed.
  1280. settings.search_user_placeholder = Search user…
  1281. settings.org_not_allowed_to_be_collaborator = Organizations cannot be added as a collaborator.
  1282. settings.change_team_access_not_allowed = Changing team access for repository has been restricted to organization owner
  1283. settings.team_not_in_organization = The team is not in the same organization as the repository
  1284. settings.add_team_duplicate = Team already has the repository
  1285. settings.add_team_success = The team now have access to the repository.
  1286. settings.remove_team_success = The team's access to the repository has been removed.
  1287. settings.add_webhook = Add Webhook
  1288. settings.add_webhook.invalid_channel_name = Webhook channel name cannot be empty and cannot contain only a # character.
  1289. settings.hooks_desc = Webhooks automatically make HTTP POST requests to a server when certain Gitea events trigger. Read more in the <a target="_blank" rel="noopener noreferrer" href="%s">webhooks guide</a>.
  1290. settings.webhook_deletion = Remove Webhook
  1291. settings.webhook_deletion_desc = Removing a webhook deletes its settings and delivery history. Continue?
  1292. settings.webhook_deletion_success = The webhook has been removed.
  1293. settings.webhook.test_delivery = Test Delivery
  1294. settings.webhook.test_delivery_desc = Test this webhook with a fake event.
  1295. settings.webhook.test_delivery_success = A fake event has been added to the delivery queue. It may take few seconds before it shows up in the delivery history.
  1296. settings.webhook.request = Request
  1297. settings.webhook.response = Response
  1298. settings.webhook.headers = Headers
  1299. settings.webhook.payload = Content
  1300. settings.webhook.body = Body
  1301. settings.githooks_desc = "Git hooks are powered by Git itself. You can edit hook files below to set up custom operations."
  1302. settings.githook_edit_desc = If the hook is inactive, sample content will be presented. Leaving content to an empty value will disable this hook.
  1303. settings.githook_name = Hook Name
  1304. settings.githook_content = Hook Content
  1305. settings.update_githook = Update Hook
  1306. settings.add_webhook_desc = Gitea will send <code>POST</code> requests with a specified content type to the target URL. Read more in the <a target="_blank" rel="noopener noreferrer" href="%s">webhooks guide</a>.
  1307. settings.payload_url = Target URL
  1308. settings.http_method = HTTP Method
  1309. settings.content_type = POST Content Type
  1310. settings.secret = Secret
  1311. settings.slack_username = Username
  1312. settings.slack_icon_url = Icon URL
  1313. settings.discord_username = Username
  1314. settings.discord_icon_url = Icon URL
  1315. settings.slack_color = Color
  1316. settings.event_desc = Trigger On:
  1317. settings.event_push_only = Push Events
  1318. settings.event_send_everything = All Events
  1319. settings.event_choose = Custom Events…
  1320. settings.event_header_repository = Repository Events
  1321. settings.event_create = Create
  1322. settings.event_create_desc = Branch or tag created.
  1323. settings.event_delete = Delete
  1324. settings.event_delete_desc = Branch or tag deleted.
  1325. settings.event_fork = Fork
  1326. settings.event_fork_desc = Repository forked.
  1327. settings.event_release = Release
  1328. settings.event_release_desc = Release published, updated or deleted in a repository.
  1329. settings.event_push = Push
  1330. settings.event_push_desc = Git push to a repository.
  1331. settings.event_repository = Repository
  1332. settings.event_repository_desc = Repository created or deleted.
  1333. settings.event_header_issue = Issue Events
  1334. settings.event_issues = Issues
  1335. settings.event_issues_desc = Issue opened, closed, reopened, or edited.
  1336. settings.event_issue_assign = Issue Assigned
  1337. settings.event_issue_assign_desc = Issue assigned or unassigned.
  1338. settings.event_issue_label = Issue Labeled
  1339. settings.event_issue_label_desc = Issue labels updated or cleared.
  1340. settings.event_issue_milestone = Issue Milestoned
  1341. settings.event_issue_milestone_desc = Issue milestoned or demilestoned.
  1342. settings.event_issue_comment = Issue Comment
  1343. settings.event_issue_comment_desc = Issue comment created, edited, or deleted.
  1344. settings.event_header_pull_request = Pull Request Events
  1345. settings.event_pull_request = Pull Request
  1346. settings.event_pull_request_desc = Pull request opened, closed, reopened, or edited.
  1347. settings.event_pull_request_assign = Pull Request Assigned
  1348. settings.event_pull_request_assign_desc = Pull request assigned or unassigned.
  1349. settings.event_pull_request_label = Pull Request Labeled
  1350. settings.event_pull_request_label_desc = Pull request labels updated or cleared.
  1351. settings.event_pull_request_milestone = Pull Request Milestoned
  1352. settings.event_pull_request_milestone_desc = Pull request milestoned or demilestoned.
  1353. settings.event_pull_request_comment = Pull Request Comment
  1354. settings.event_pull_request_comment_desc = Pull request comment created, edited, or deleted.
  1355. settings.event_pull_request_review = Pull Request Reviewed
  1356. settings.event_pull_request_review_desc = Pull request approved, rejected, or review comment.
  1357. settings.event_pull_request_sync = Pull Request Synchronized
  1358. settings.event_pull_request_sync_desc = Pull request synchronized.
  1359. settings.branch_filter = Branch filter
  1360. settings.branch_filter_desc = Branch whitelist for push, branch creation and branch deletion events, specified as glob pattern. If empty or <code>*</code>, events for all branches are reported. See <a href="https://godoc.org/github.com/gobwas/glob#Compile">github.com/gobwas/glob</a> documentation for syntax. Examples: <code>master</code>, <code>{master,release*}</code>.
  1361. settings.active = Active
  1362. settings.active_helper = Information about triggered events will be sent to this webhook URL.
  1363. settings.add_hook_success = The webhook has been added.
  1364. settings.update_webhook = Update Webhook
  1365. settings.update_hook_success = The webhook has been updated.
  1366. settings.delete_webhook = Remove Webhook
  1367. settings.recent_deliveries = Recent Deliveries
  1368. settings.hook_type = Hook Type
  1369. settings.add_slack_hook_desc = Integrate <a href="%s">Slack</a> into your repository.
  1370. settings.slack_token = Token
  1371. settings.slack_domain = Domain
  1372. settings.slack_channel = Channel
  1373. settings.add_discord_hook_desc = Integrate <a href="%s">Discord</a> into your repository.
  1374. settings.add_dingtalk_hook_desc = Integrate <a href="%s">Dingtalk</a> into your repository.
  1375. settings.add_telegram_hook_desc = Integrate <a href="%s">Telegram</a> into your repository.
  1376. settings.add_matrix_hook_desc = Integrate <a href="%s">Matrix</a> into your repository.
  1377. settings.add_msteams_hook_desc = Integrate <a href="%s">Microsoft Teams</a> into your repository.
  1378. settings.add_feishu_hook_desc = Integrate <a href="%s">Feishu</a> into your repository.
  1379. settings.deploy_keys = Deploy Keys
  1380. settings.add_deploy_key = Add Deploy Key
  1381. settings.deploy_key_desc = Deploy keys have read-only pull access to the repository.
  1382. settings.is_writable = Enable Write Access
  1383. settings.is_writable_info = Allow this deploy key to <strong>push</strong> to the repository.
  1384. settings.no_deploy_keys = There are no deploy keys yet.
  1385. settings.title = Title
  1386. settings.deploy_key_content = Content
  1387. settings.key_been_used = A deploy key with identical content is already in use.
  1388. settings.key_name_used = A deploy key with the same name already exists.
  1389. settings.add_key_success = The deploy key '%s' has been added.
  1390. settings.deploy_key_deletion = Remove Deploy Key
  1391. settings.deploy_key_deletion_desc = Removing a deploy key will revoke its access to this repository. Continue?
  1392. settings.deploy_key_deletion_success = The deploy key has been removed.
  1393. settings.branches = Branches
  1394. settings.protected_branch = Branch Protection
  1395. settings.protected_branch_can_push = Allow push?
  1396. settings.protected_branch_can_push_yes = You can push
  1397. settings.protected_branch_can_push_no = You can not push
  1398. settings.branch_protection = Branch Protection for Branch '<b>%s</b>'
  1399. settings.protect_this_branch = Enable Branch Protection
  1400. settings.protect_this_branch_desc = Prevents deletion and restricts Git pushing and merging to the branch.
  1401. settings.protect_disable_push = Disable Push
  1402. settings.protect_disable_push_desc = No pushing will be allowed to this branch.
  1403. settings.protect_enable_push = Enable Push
  1404. settings.protect_enable_push_desc = Anyone with write access will be allowed to push to this branch (but not force push).
  1405. settings.protect_whitelist_committers = Whitelist Restricted Push
  1406. settings.protect_whitelist_committers_desc = Only whitelisted users or teams will be allowed to push to this branch (but not force push).
  1407. settings.protect_whitelist_deploy_keys = Whitelist deploy keys with write access to push
  1408. settings.protect_whitelist_users = Whitelisted users for pushing:
  1409. settings.protect_whitelist_search_users = Search users…
  1410. settings.protect_whitelist_teams = Whitelisted teams for pushing:
  1411. settings.protect_whitelist_search_teams = Search teams…
  1412. settings.protect_merge_whitelist_committers = Enable Merge Whitelist
  1413. settings.protect_merge_whitelist_committers_desc = Allow only whitelisted users or teams to merge pull requests into this branch.
  1414. settings.protect_merge_whitelist_users = Whitelisted users for merging:
  1415. settings.protect_merge_whitelist_teams = Whitelisted teams for merging:
  1416. settings.protect_check_status_contexts = Enable Status Check
  1417. settings.protect_check_status_contexts_desc = Require status checks to pass before merging Choose which status checks must pass before branches can be merged into a branch that matches this rule. When enabled, commits must first be pushed to another branch, then merged or pushed directly to a branch that matches this rule after status checks have passed. If no contexts are selected, the last commit must be successful regardless of context.
  1418. settings.protect_check_status_contexts_list = Status checks found in the last week for this repository
  1419. settings.protect_required_approvals = Required approvals:
  1420. settings.protect_required_approvals_desc = Allow only to merge pull request with enough positive reviews.
  1421. settings.protect_approvals_whitelist_enabled = Restrict approvals to whitelisted users or teams
  1422. settings.protect_approvals_whitelist_enabled_desc = Only reviews from whitelisted users or teams will count to the required approvals. Without approval whitelist, reviews from anyone with write access count to the required approvals.
  1423. settings.protect_approvals_whitelist_users = Whitelisted reviewers:
  1424. settings.protect_approvals_whitelist_teams = Whitelisted teams for reviews:
  1425. settings.dismiss_stale_approvals = Dismiss stale approvals
  1426. settings.dismiss_stale_approvals_desc = When new commits that change the content of the pull request are pushed to the branch, old approvals will be dismissed.
  1427. settings.require_signed_commits = Require Signed Commits
  1428. settings.require_signed_commits_desc = Reject pushes to this branch if they are unsigned or unverifiable
  1429. settings.protect_protected_file_patterns = Protected file patterns (separated using semicolon ';'):
  1430. settings.protect_protected_file_patterns_desc = Protected files that are not allowed to be changed directly even if user has rights to add, edit or delete files in this branch. Multiple patterns can be separated using semicolon (';'). See <a href="https://godoc.org/github.com/gobwas/glob#Compile">github.com/gobwas/glob</a> documentation for pattern syntax. Examples: <code>.drone.yml</code>, <code>/docs/**/*.txt</code>.
  1431. settings.add_protected_branch = Enable protection
  1432. settings.delete_protected_branch = Disable protection
  1433. settings.update_protect_branch_success = Branch protection for branch '%s' has been updated.
  1434. settings.remove_protected_branch_success = Branch protection for branch '%s' has been disabled.
  1435. settings.protected_branch_deletion = Disable Branch Protection
  1436. settings.protected_branch_deletion_desc = Disabling branch protection allows users with write permission to push to the branch. Continue?
  1437. settings.block_rejected_reviews = Block merge on rejected reviews
  1438. settings.block_rejected_reviews_desc = Merging will not be possible when changes are requested by official reviewers, even if there are enough approvals.
  1439. settings.default_branch_desc = Select a default repository branch for pull requests and code commits:
  1440. settings.choose_branch = Choose a branch…
  1441. settings.no_protected_branch = There are no protected branches.
  1442. settings.edit_protected_branch = Edit
  1443. settings.protected_branch_required_approvals_min = Required approvals cannot be negative.
  1444. settings.bot_token = Bot Token
  1445. settings.chat_id = Chat ID
  1446. settings.matrix.homeserver_url = Homeserver URL
  1447. settings.matrix.room_id = Room ID
  1448. settings.matrix.access_token = Access Token
  1449. settings.matrix.message_type = Message Type
  1450. settings.archive.button = Archive Repo
  1451. settings.archive.header = Archive This Repo
  1452. settings.archive.text = Archiving the repo will make it entirely read-only. It is hidden from the dashboard, cannot be committed to and no issues or pull-requests can be created.
  1453. settings.archive.success = The repo was successfully archived.
  1454. settings.archive.error = An error occurred while trying to archive the repo. See the log for more details.
  1455. settings.archive.error_ismirror = You cannot archive a mirrored repo.
  1456. settings.archive.branchsettings_unavailable = Branch settings are not available if the repo is archived.
  1457. settings.unarchive.button = Un-Archive Repo
  1458. settings.unarchive.header = Un-Archive This Repo
  1459. settings.unarchive.text = Un-Archiving the repo will restore its ability to receive commits and pushes, as well as new issues and pull-requests.
  1460. settings.unarchive.success = The repo was successfully un-archived.
  1461. settings.unarchive.error = An error occurred while trying to un-archive the repo. See the log for more details.
  1462. settings.update_avatar_success = The repository avatar has been updated.
  1463. settings.lfs=LFS
  1464. settings.lfs_filelist=LFS files stored in this repository
  1465. settings.lfs_no_lfs_files=No LFS files stored in this repository
  1466. settings.lfs_findcommits=Find commits
  1467. settings.lfs_lfs_file_no_commits=No Commits found for this LFS file
  1468. settings.lfs_noattribute=This path does not have the lockable attribute in the default branch
  1469. settings.lfs_delete=Delete LFS file with OID %s
  1470. settings.lfs_delete_warning=Deleting an LFS file may cause 'object does not exist' errors on checkout. Are you sure?
  1471. settings.lfs_findpointerfiles=Find pointer files
  1472. settings.lfs_locks=Locks
  1473. settings.lfs_invalid_locking_path=Invalid path: %s
  1474. settings.lfs_invalid_lock_directory=Cannot lock directory: %s
  1475. settings.lfs_lock_already_exists=Lock already exists: %s
  1476. settings.lfs_lock=Lock
  1477. settings.lfs_lock_path=Filepath to lock...
  1478. settings.lfs_locks_no_locks=No Locks
  1479. settings.lfs_lock_file_no_exist=Locked file does not exist in default branch
  1480. settings.lfs_force_unlock=Force Unlock
  1481. settings.lfs_pointers.found=Found %d blob pointer(s) - %d associated, %d unassociated (%d missing from store)
  1482. settings.lfs_pointers.sha=Blob SHA
  1483. settings.lfs_pointers.oid=OID
  1484. settings.lfs_pointers.inRepo=In Repo
  1485. settings.lfs_pointers.exists=Exists in store
  1486. settings.lfs_pointers.accessible=Accessible to User
  1487. settings.lfs_pointers.associateAccessible=Associate accessible %d OIDs
  1488. diff.browse_source = Browse Source
  1489. diff.parent = parent
  1490. diff.commit = commit
  1491. diff.git-notes = Notes
  1492. diff.data_not_available = Diff Content Not Available
  1493. diff.options_button = Diff Options
  1494. diff.show_diff_stats = Show Stats
  1495. diff.download_patch = Download Patch File
  1496. diff.download_diff = Download Diff File
  1497. diff.show_split_view = Split View
  1498. diff.show_unified_view = Unified View
  1499. diff.whitespace_button = Whitespace
  1500. diff.whitespace_show_everything = Show all changes
  1501. diff.whitespace_ignore_all_whitespace = Ignore whitespace when comparing lines
  1502. diff.whitespace_ignore_amount_changes = Ignore changes in amount of whitespace
  1503. diff.whitespace_ignore_at_eol = Ignore changes in whitespace at EOL
  1504. diff.stats_desc = <strong> %d changed files</strong> with <strong>%d additions</strong> and <strong>%d deletions</strong>
  1505. diff.bin = BIN
  1506. diff.view_file = View File
  1507. diff.file_before = Before
  1508. diff.file_after = After
  1509. diff.file_image_width = Width
  1510. diff.file_image_height = Height
  1511. diff.file_byte_size = Size
  1512. diff.file_suppressed = File diff suppressed because it is too large
  1513. diff.too_many_files = Some files were not shown because too many files changed in this diff
  1514. diff.comment.placeholder = Leave a comment
  1515. diff.comment.markdown_info = Styling with markdown is supported.
  1516. diff.comment.add_single_comment = Add single comment
  1517. diff.comment.add_review_comment = Add comment
  1518. diff.comment.start_review = Start review
  1519. diff.comment.reply = Reply
  1520. diff.review = Review
  1521. diff.review.header = Submit review
  1522. diff.review.placeholder = Review comment
  1523. diff.review.comment = Comment
  1524. diff.review.approve = Approve
  1525. diff.review.reject = Request changes
  1526. releases.desc = Track project versions and downloads.
  1527. release.releases = Releases
  1528. release.new_release = New Release
  1529. release.draft = Draft
  1530. release.prerelease = Pre-Release
  1531. release.stable = Stable
  1532. release.edit = edit
  1533. release.ahead = <strong>%d</strong> commits to %s since this release
  1534. release.source_code = Source Code
  1535. release.new_subheader = Releases organize project versions.
  1536. release.edit_subheader = Releases organize project versions.
  1537. release.tag_name = Tag name
  1538. release.target = Target
  1539. release.tag_helper = Choose an existing tag or create a new tag.
  1540. release.title = Title
  1541. release.content = Content
  1542. release.prerelease_desc = Mark as Pre-Release
  1543. release.prerelease_helper = Mark this release unsuitable for production use.
  1544. release.cancel = Cancel
  1545. release.publish = Publish Release
  1546. release.save_draft = Save Draft
  1547. release.edit_release = Update Release
  1548. release.delete_release = Delete Release
  1549. release.deletion = Delete Release
  1550. release.deletion_desc = Deleting a release removes its Git tag from the repository. Repository contents and history remain unchanged. Continue?
  1551. release.deletion_success = The release has been deleted.
  1552. release.tag_name_already_exist = A release with this tag name already exists.
  1553. release.tag_name_invalid = The tag name is not valid.
  1554. release.downloads = Downloads
  1555. release.download_count = Downloads: %s
  1556. branch.name = Branch Name
  1557. branch.search = Search branches
  1558. branch.already_exists = A branch named '%s' already exists.
  1559. branch.delete_head = Delete
  1560. branch.delete = Delete Branch '%s'
  1561. branch.delete_html = Delete Branch
  1562. branch.delete_desc = Deleting a branch is permanent. It <strong>CANNOT</strong> be undone. Continue?
  1563. branch.deletion_success = Branch '%s' has been deleted.
  1564. branch.deletion_failed = Failed to delete branch '%s'.
  1565. branch.delete_branch_has_new_commits = Branch '%s' cannot be deleted because new commits have been added after merging.
  1566. branch.create_branch = Create branch <strong>%s</strong>
  1567. branch.create_from = from '%s'
  1568. branch.create_success = Branch '%s' has been created.
  1569. branch.branch_already_exists = Branch '%s' already exists in this repository.
  1570. branch.branch_name_conflict = Branch name '%s' conflicts with the already existing branch '%s'.
  1571. branch.tag_collision = Branch '%s' cannot be created as a tag with same name already exists in the repository.
  1572. branch.deleted_by = Deleted by %s
  1573. branch.restore_success = Branch '%s' has been restored.
  1574. branch.restore_failed = Failed to restore branch '%s'.
  1575. branch.protected_deletion_failed = Branch '%s' is protected. It cannot be deleted.
  1576. branch.restore = Restore Branch '%s'
  1577. branch.download = Download Branch '%s'
  1578. branch.included_desc = This branch is part of the default branch
  1579. branch.included = Included
  1580. topic.manage_topics = Manage Topics
  1581. topic.done = Done
  1582. topic.count_prompt = You can not select more than 25 topics
  1583. topic.format_prompt = Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
  1584. [org]
  1585. org_name_holder = Organization Name
  1586. org_full_name_holder = Organization Full Name
  1587. org_name_helper = Organization names should be short and memorable.
  1588. create_org = Create Organization
  1589. repo_updated = Updated
  1590. people = People
  1591. teams = Teams
  1592. lower_members = members
  1593. lower_repositories = repositories
  1594. create_new_team = New Team
  1595. create_team = Create Team
  1596. org_desc = Description
  1597. team_name = Team Name
  1598. team_desc = Description
  1599. team_name_helper = Team names should be short and memorable.
  1600. team_desc_helper = Describe the purpose or role of the team.
  1601. team_access_desc = Repository access
  1602. team_permission_desc = Permission
  1603. team_unit_desc = Allow Access to Repository Sections
  1604. team_unit_disabled = (Disabled)
  1605. form.name_reserved = The organization name '%s' is reserved.
  1606. form.name_pattern_not_allowed = The pattern '%s' is not allowed in an organization name.
  1607. form.create_org_not_allowed = You are not allowed to create an organization.
  1608. settings = Settings
  1609. settings.options = Organization
  1610. settings.full_name = Full Name
  1611. settings.website = Website
  1612. settings.location = Location
  1613. settings.permission = Permissions
  1614. settings.repoadminchangeteam = Repository admin can add and remove access for teams
  1615. settings.visibility = Visibility
  1616. settings.visibility.public = Public
  1617. settings.visibility.limited = Limited (Visible to logged in users only)
  1618. settings.visibility.private = Private (Visible only to organization members)
  1619. settings.update_settings = Update Settings
  1620. settings.update_setting_success = Organization settings have been updated.
  1621. settings.change_orgname_prompt = Note: changing the organization name also changes the organization's URL.
  1622. settings.update_avatar_success = The organization's avatar has been updated.
  1623. settings.delete = Delete Organization
  1624. settings.delete_account = Delete This Organization
  1625. settings.delete_prompt = The organization will be permanently removed. This <strong>CANNOT</strong> be undone!
  1626. settings.confirm_delete_account = Confirm Deletion
  1627. settings.delete_org_title = Delete Organization
  1628. settings.delete_org_desc = This organization will be deleted permanently. Continue?
  1629. settings.hooks_desc = Add webhooks which will be triggered for <strong>all repositories</strong> under this organization.
  1630. settings.labels_desc = Add labels which can be used on issues for <strong>all repositories</strong> under this organization.
  1631. members.membership_visibility = Membership Visibility:
  1632. members.public = Visible
  1633. members.public_helper = make hidden
  1634. members.private = Hidden
  1635. members.private_helper = make visible
  1636. members.member_role = Member Role:
  1637. members.owner = Owner
  1638. members.member = Member
  1639. members.remove = Remove
  1640. members.leave = Leave
  1641. members.invite_desc = Add a new member to %s:
  1642. members.invite_now = Invite Now
  1643. teams.join = Join
  1644. teams.leave = Leave
  1645. teams.can_create_org_repo = Create repositories
  1646. teams.can_create_org_repo_helper = Members can create new repositories in organization. Creator will get administrator access to the new repository.
  1647. teams.read_access = Read Access
  1648. teams.read_access_helper = Members can view and clone team repositories.
  1649. teams.write_access = Write Access
  1650. teams.write_access_helper = Members can read and push to team repositories.
  1651. teams.admin_access = Administrator Access
  1652. teams.admin_access_helper = Members can pull and push to team repositories and add collaborators to them.
  1653. teams.no_desc = This team has no description
  1654. teams.settings = Settings
  1655. teams.owners_permission_desc = Owners have full access to <strong>all repositories</strong> and have <strong>administrator access</strong> to the organization.
  1656. teams.members = Team Members
  1657. teams.update_settings = Update Settings
  1658. teams.delete_team = Delete Team
  1659. teams.add_team_member = Add Team Member
  1660. teams.delete_team_title = Delete Team
  1661. teams.delete_team_desc = Deleting a team revokes repository access from its members. Continue?
  1662. teams.delete_team_success = The team has been deleted.
  1663. teams.read_permission_desc = This team grants <strong>Read</strong> access: members can view and clone team repositories.
  1664. teams.write_permission_desc = This team grants <strong>Write</strong> access: members can read from and push to team repositories.
  1665. teams.admin_permission_desc = This team grants <strong>Admin</strong> access: members can read from, push to and add collaborators to team repositories.
  1666. teams.create_repo_permission_desc = Additionally, this team grants <strong>Create repository</strong> permission: members can create new repositories in organization.
  1667. teams.repositories = Team Repositories
  1668. teams.search_repo_placeholder = Search repository…
  1669. teams.remove_all_repos_title = Remove all team repositories
  1670. teams.remove_all_repos_desc = This will remove all repositories from the team.
  1671. teams.add_all_repos_title = Add all repositories
  1672. teams.add_all_repos_desc = This will add all the organization's repositories to the team.
  1673. teams.add_nonexistent_repo = "The repository you're trying to add does not exist; please create it first."
  1674. teams.add_duplicate_users = User is already a team member.
  1675. teams.repos.none = No repositories could be accessed by this team.
  1676. teams.members.none = No members on this team.
  1677. teams.specific_repositories = Specific repositories
  1678. teams.specific_repositories_helper = Members will only have access to repositories explicitly added to the team. Selecting this <strong>will not</strong> automatically remove repositories already added with <i>All repositories</i>.
  1679. teams.all_repositories = All repositories
  1680. teams.all_repositories_helper = Team has access to all repositories. Selecting this will <strong>add all existing</strong> repositories to the team.
  1681. teams.all_repositories_read_permission_desc = This team grants <strong>Read</strong> access to <strong>all repositories</strong>: members can view and clone repositories.
  1682. teams.all_repositories_write_permission_desc = This team grants <strong>Write</strong> access to <strong>all repositories</strong>: members can read from and push to repositories.
  1683. teams.all_repositories_admin_permission_desc = This team grants <strong>Admin</strong> access to <strong>all repositories</strong>: members can read from, push to and add collaborators to repositories.
  1684. [admin]
  1685. dashboard = Dashboard
  1686. users = User Accounts
  1687. organizations = Organizations
  1688. repositories = Repositories
  1689. hooks = Default Webhooks
  1690. systemhooks = System Webhooks
  1691. authentication = Authentication Sources
  1692. emails = User Emails
  1693. config = Configuration
  1694. notices = System Notices
  1695. monitor = Monitoring
  1696. first_page = First
  1697. last_page = Last
  1698. total = Total: %d
  1699. dashboard.statistic = Summary
  1700. dashboard.operations = Maintenance Operations
  1701. dashboard.system_status = System Status
  1702. dashboard.statistic_info = The Gitea database holds <b>%d</b> users, <b>%d</b> organizations, <b>%d</b> public keys, <b>%d</b> repositories, <b>%d</b> watches, <b>%d</b> stars, <b>%d</b> actions, <b>%d</b> accesses, <b>%d</b> issues, <b>%d</b> comments, <b>%d</b> social accounts, <b>%d</b> follows, <b>%d</b> mirrors, <b>%d</b> releases, <b>%d</b> authentication sources, <b>%d</b> webhooks, <b>%d</b> milestones, <b>%d</b> labels, <b>%d</b> hook tasks, <b>%d</b> teams, <b>%d</b> update tasks, <b>%d</b> attachments.
  1703. dashboard.operation_name = Operation Name
  1704. dashboard.operation_switch = Switch
  1705. dashboard.operation_run = Run
  1706. dashboard.clean_unbind_oauth = Clean unbound OAuth connections
  1707. dashboard.clean_unbind_oauth_success = All unbound OAuth connections have been deleted.
  1708. dashboard.delete_inactivate_accounts = Delete all unactivated accounts
  1709. dashboard.delete_inactivate_accounts_success = All unactivated accounts have been deleted.
  1710. dashboard.delete_repo_archives = Delete all repository archives
  1711. dashboard.delete_repo_archives_success = All repository archives have been deleted.
  1712. dashboard.delete_missing_repos = Delete all repositories missing their Git files
  1713. dashboard.delete_missing_repos_success = All repositories missing their Git files have been deleted.
  1714. dashboard.delete_generated_repository_avatars = Delete generated repository avatars
  1715. dashboard.delete_generated_repository_avatars_success = Generated repository avatars were deleted.
  1716. dashboard.git_gc_repos = Garbage collect all repositories
  1717. dashboard.git_gc_repos_success = All repositories have finished garbage collection.
  1718. dashboard.resync_all_sshkeys = Update the '.ssh/authorized_keys' file with Gitea SSH keys. (Not needed for the built-in SSH server.)
  1719. dashboard.resync_all_sshkeys_success = The public SSH keys controlled by Gitea have been updated.
  1720. dashboard.resync_all_hooks = Resynchronize pre-receive, update and post-receive hooks of all repositories.
  1721. dashboard.resync_all_hooks_success = All pre-receive, update and post-receive repository hooks have been resynchronized.
  1722. dashboard.reinit_missing_repos = Reinitialize all missing Git repositories for which records exist
  1723. dashboard.reinit_missing_repos_success = All missing Git repositories for which records existed have been reinitialized.
  1724. dashboard.sync_external_users = Synchronize external user data
  1725. dashboard.sync_external_users_started = External user data synchronization has started.
  1726. dashboard.git_fsck = Execute health checks on all repositories
  1727. dashboard.git_fsck_started = Repository health checks have started.
  1728. dashboard.server_uptime = Server Uptime
  1729. dashboard.current_goroutine = Current Goroutines
  1730. dashboard.current_memory_usage = Current Memory Usage
  1731. dashboard.total_memory_allocated = Total Memory Allocated
  1732. dashboard.memory_obtained = Memory Obtained
  1733. dashboard.pointer_lookup_times = Pointer Lookup Times
  1734. dashboard.memory_allocate_times = Memory Allocations
  1735. dashboard.memory_free_times = Memory Frees
  1736. dashboard.current_heap_usage = Current Heap Usage
  1737. dashboard.heap_memory_obtained = Heap Memory Obtained
  1738. dashboard.heap_memory_idle = Heap Memory Idle
  1739. dashboard.heap_memory_in_use = Heap Memory In Use
  1740. dashboard.heap_memory_released = Heap Memory Released
  1741. dashboard.heap_objects = Heap Objects
  1742. dashboard.bootstrap_stack_usage = Bootstrap Stack Usage
  1743. dashboard.stack_memory_obtained = Stack Memory Obtained
  1744. dashboard.mspan_structures_usage = MSpan Structures Usage
  1745. dashboard.mspan_structures_obtained = MSpan Structures Obtained
  1746. dashboard.mcache_structures_usage = MCache Structures Usage
  1747. dashboard.mcache_structures_obtained = MCache Structures Obtained
  1748. dashboard.profiling_bucket_hash_table_obtained = Profiling Bucket Hash Table Obtained
  1749. dashboard.gc_metadata_obtained = GC Metadata Obtained
  1750. dashboard.other_system_allocation_obtained = Other System Allocation Obtained
  1751. dashboard.next_gc_recycle = Next GC Recycle
  1752. dashboard.last_gc_time = Since Last GC Time
  1753. dashboard.total_gc_time = Total GC Pause
  1754. dashboard.total_gc_pause = Total GC Pause
  1755. dashboard.last_gc_pause = Last GC Pause
  1756. dashboard.gc_times = GC Times
  1757. users.user_manage_panel = User Account Management
  1758. users.new_account = Create User Account
  1759. users.name = Username
  1760. users.full_name = Full Name
  1761. users.activated = Activated
  1762. users.admin = Admin
  1763. users.restricted = Restricted
  1764. users.repos = Repos
  1765. users.created = Created
  1766. users.last_login = Last Sign-In
  1767. users.never_login = Never Signed-In
  1768. users.send_register_notify = Send User Registration Notification
  1769. users.new_success = The user account '%s' has been created.
  1770. users.edit = Edit
  1771. users.auth_source = Authentication Source
  1772. users.local = Local
  1773. users.auth_login_name = Authentication Sign-In Name
  1774. users.password_helper = Leave the password empty to keep it unchanged.
  1775. users.update_profile_success = The user account has been updated.
  1776. users.edit_account = Edit User Account
  1777. users.max_repo_creation = Maximum Number of Repositories
  1778. users.max_repo_creation_desc = (Enter -1 to use the global default limit.)
  1779. users.is_activated = User Account Is Activated
  1780. users.prohibit_login = Disable Sign-In
  1781. users.is_admin = Is Administrator
  1782. users.is_restricted = Is Restricted
  1783. users.allow_git_hook = May Create Git Hooks
  1784. users.allow_import_local = May Import Local Repositories
  1785. users.allow_create_organization = May Create Organizations
  1786. users.update_profile = Update User Account
  1787. users.delete_account = Delete User Account
  1788. users.still_own_repo = This user still owns one or more repositories. Delete or transfer these repositories first.
  1789. users.still_has_org = This user is a member of an organization. Remove the user from any organizations first.
  1790. users.deletion_success = The user account has been deleted.
  1791. emails.email_manage_panel = User Email Management
  1792. emails.primary = Primary
  1793. emails.activated = Activated
  1794. emails.filter_sort.email = Email
  1795. emails.filter_sort.email_reverse = Email (reverse)
  1796. emails.filter_sort.name = User Name
  1797. emails.filter_sort.name_reverse = User Name (reverse)
  1798. emails.updated = Email updated
  1799. emails.not_updated = Failed to update the requested email address: %v
  1800. emails.duplicate_active = This email address is already active for a different user.
  1801. emails.change_email_header = Update Email Properties
  1802. emails.change_email_text = Are your sure you want to update this email address?
  1803. orgs.org_manage_panel = Organization Management
  1804. orgs.name = Name
  1805. orgs.teams = Teams
  1806. orgs.members = Members
  1807. orgs.new_orga = New Organization
  1808. repos.repo_manage_panel = Repository Management
  1809. repos.owner = Owner
  1810. repos.name = Name
  1811. repos.private = Private
  1812. repos.watches = Watches
  1813. repos.stars = Stars
  1814. repos.forks = Forks
  1815. repos.issues = Issues
  1816. repos.size = Size
  1817. hooks.desc = Webhooks automatically make HTTP POST requests to a server when certain Gitea events trigger. Webhooks defined here are defaults and will be copied into all new repositories. Read more in the <a target="_blank" rel="noopener" href="https://docs.gitea.io/en-us/webhooks/">webhooks guide</a>.
  1818. hooks.add_webhook = Add Default Webhook
  1819. hooks.update_webhook = Update Default Webhook
  1820. systemhooks.desc = Webhooks automatically make HTTP POST requests to a server when certain Gitea events trigger. Webhooks defined will act on all repositories on the system, so please consider any performance implications this may have. Read more in the <a target="_blank" rel="noopener" href="https://docs.gitea.io/en-us/webhooks/">webhooks guide</a>.
  1821. systemhooks.add_webhook = Add System Webhook
  1822. systemhooks.update_webhook = Update System Webhook
  1823. auths.auth_manage_panel = Authentication Source Management
  1824. auths.new = Add Authentication Source
  1825. auths.name = Name
  1826. auths.type = Type
  1827. auths.enabled = Enabled
  1828. auths.syncenabled = Enable User Synchronization
  1829. auths.updated = Updated
  1830. auths.auth_type = Authentication Type
  1831. auths.auth_name = Authentication Name
  1832. auths.security_protocol = Security Protocol
  1833. auths.domain = Domain
  1834. auths.host = Host
  1835. auths.port = Port
  1836. auths.bind_dn = Bind DN
  1837. auths.bind_password = Bind Password
  1838. auths.bind_password_helper = Warning: This password is stored in plain text. Use a read-only account if possible.
  1839. auths.user_base = User Search Base
  1840. auths.user_dn = User DN
  1841. auths.attribute_username = Username Attribute
  1842. auths.attribute_username_placeholder = Leave empty to use the username entered in Gitea.
  1843. auths.attribute_name = First Name Attribute
  1844. auths.attribute_surname = Surname Attribute
  1845. auths.attribute_mail = Email Attribute
  1846. auths.attribute_ssh_public_key = Public SSH Key Attribute
  1847. auths.attributes_in_bind = Fetch Attributes in Bind DN Context
  1848. auths.allow_deactivate_all = Allow an empty search result to deactivate all users
  1849. auths.use_paged_search = Use Paged Search
  1850. auths.search_page_size = Page Size
  1851. auths.filter = User Filter
  1852. auths.admin_filter = Admin Filter
  1853. auths.restricted_filter = Restricted Filter
  1854. auths.restricted_filter_helper = Leave empty to not set any users as restricted. Use an asterisk ('*') to set all users that do not match Admin Filter as restricted.
  1855. auths.ms_ad_sa = MS AD Search Attributes
  1856. auths.smtp_auth = SMTP Authentication Type
  1857. auths.smtphost = SMTP Host
  1858. auths.smtpport = SMTP Port
  1859. auths.allowed_domains = Allowed Domains
  1860. auths.allowed_domains_helper = Leave empty to allow all domains. Separate multiple domains with a comma (',').
  1861. auths.enable_tls = Enable TLS Encryption
  1862. auths.skip_tls_verify = Skip TLS Verify
  1863. auths.pam_service_name = PAM Service Name
  1864. auths.oauth2_provider = OAuth2 Provider
  1865. auths.oauth2_clientID = Client ID (Key)
  1866. auths.oauth2_clientSecret = Client Secret
  1867. auths.openIdConnectAutoDiscoveryURL = OpenID Connect Auto Discovery URL
  1868. auths.oauth2_use_custom_url = Use Custom URLs Instead of Default URLs
  1869. auths.oauth2_tokenURL = Token URL
  1870. auths.oauth2_authURL = Authorize URL
  1871. auths.oauth2_profileURL = Profile URL
  1872. auths.oauth2_emailURL = Email URL
  1873. auths.enable_auto_register = Enable Auto Registration
  1874. auths.sspi_auto_create_users = Automatically create users
  1875. auths.sspi_auto_create_users_helper = Allow SSPI auth method to automatically create new accounts for users that login for the first time
  1876. auths.sspi_auto_activate_users = Automatically activate users
  1877. auths.sspi_auto_activate_users_helper = Allow SSPI auth method to automatically activate new users
  1878. auths.sspi_strip_domain_names = Remove domain names from usernames
  1879. auths.sspi_strip_domain_names_helper = If checked, domain names will be removed from logon names (eg. "DOMAIN\user" and "user@example.org" both will become just "user").
  1880. auths.sspi_separator_replacement = Separator to use instead of \, / and @
  1881. auths.sspi_separator_replacement_helper = The character to use to replace the separators of down-level logon names (eg. the \ in "DOMAIN\user") and user principal names (eg. the @ in "user@example.org").
  1882. auths.sspi_default_language = Default user language
  1883. auths.sspi_default_language_helper = Default language for users automatically created by SSPI auth method. Leave empty if you prefer language to be automatically detected.
  1884. auths.tips = Tips
  1885. auths.tips.oauth2.general = OAuth2 Authentication
  1886. auths.tips.oauth2.general.tip = When registering a new OAuth2 authentication, the callback/redirect URL should be: <host>/user/oauth2/<Authentication Name>/callback
  1887. auths.tip.oauth2_provider = OAuth2 Provider
  1888. auths.tip.bitbucket = Register a new OAuth consumer on https://bitbucket.org/account/user/<your username>/oauth-consumers/new and add the permission 'Account' - 'Read'
  1889. auths.tip.nextcloud = Register a new OAuth consumer on your instance using the following menu "Settings -> Security -> OAuth 2.0 client"
  1890. auths.tip.dropbox = Create a new application at https://www.dropbox.com/developers/apps
  1891. auths.tip.facebook = Register a new application at https://developers.facebook.com/apps and add the product "Facebook Login"
  1892. auths.tip.github = Register a new OAuth application on https://github.com/settings/applications/new
  1893. auths.tip.gitlab = Register a new application on https://gitlab.com/profile/applications
  1894. auths.tip.google_plus = Obtain OAuth2 client credentials from the Google API console at https://console.developers.google.com/
  1895. auths.tip.openid_connect = Use the OpenID Connect Discovery URL (<server>/.well-known/openid-configuration) to specify the endpoints
  1896. auths.tip.twitter = Go to https://dev.twitter.com/apps, create an application and ensure that the “Allow this application to be used to Sign in with Twitter” option is enabled
  1897. auths.tip.discord = Register a new application on https://discordapp.com/developers/applications/me
  1898. auths.tip.gitea = Register a new OAuth2 application. Guide can be found at https://docs.gitea.io/en-us/oauth2-provider/
  1899. auths.tip.yandex = Create a new application at https://oauth.yandex.com/client/new. Select following permissions from the "Yandex.Passport API" section: "Access to email address", "Access to user avatar" and "Access to username, first name and surname, gender"
  1900. auths.edit = Edit Authentication Source
  1901. auths.activated = This Authentication Source is Activated
  1902. auths.new_success = The authentication '%s' has been added.
  1903. auths.update_success = The authentication source has been updated.
  1904. auths.update = Update Authentication Source
  1905. auths.delete = Delete Authentication Source
  1906. auths.delete_auth_title = Delete Authentication Source
  1907. auths.delete_auth_desc = Deleting an authentication source prevents users from using it to sign in. Continue?
  1908. auths.still_in_used = The authentication source is still in use. Convert or delete any users using this authentication source first.
  1909. auths.deletion_success = The authentication source has been deleted.
  1910. auths.login_source_exist = The authentication source '%s' already exists.
  1911. auths.login_source_of_type_exist = An authentication source of this type already exists.
  1912. config.server_config = Server Configuration
  1913. config.app_name = Site Title
  1914. config.app_ver = Gitea Version
  1915. config.app_url = Gitea Base URL
  1916. config.custom_conf = Configuration File Path
  1917. config.custom_file_root_path = "Custom File Root Path"
  1918. config.domain = SSH Server Domain
  1919. config.offline_mode = Local Mode
  1920. config.disable_router_log = Disable Router Log
  1921. config.run_user = Run As Username
  1922. config.run_mode = Run Mode
  1923. config.git_version = Git Version
  1924. config.repo_root_path = Repository Root Path
  1925. config.lfs_root_path = LFS Root Path
  1926. config.static_file_root_path = Static File Root Path
  1927. config.log_file_root_path = Log Path
  1928. config.script_type = Script Type
  1929. config.reverse_auth_user = Reverse Authentication User
  1930. config.ssh_config = SSH Configuration
  1931. config.ssh_enabled = Enabled
  1932. config.ssh_start_builtin_server = Use Built-In Server
  1933. config.ssh_domain = Server Domain
  1934. config.ssh_port = Port
  1935. config.ssh_listen_port = Listen Port
  1936. config.ssh_root_path = Root Path
  1937. config.ssh_key_test_path = Key Test Path
  1938. config.ssh_keygen_path = Keygen ('ssh-keygen') Path
  1939. config.ssh_minimum_key_size_check = Minimum Key Size Check
  1940. config.ssh_minimum_key_sizes = Minimum Key Sizes
  1941. config.lfs_config = LFS Configuration
  1942. config.lfs_enabled = Enabled
  1943. config.lfs_content_path = LFS Content Path
  1944. config.lfs_http_auth_expiry = LFS HTTP Auth Expiry
  1945. config.db_config = Database Configuration
  1946. config.db_type = Type
  1947. config.db_host = Host
  1948. config.db_name = Name
  1949. config.db_user = Username
  1950. config.db_schema = Schema
  1951. config.db_ssl_mode = SSL
  1952. config.db_path = Path
  1953. config.service_config = Service Configuration
  1954. config.register_email_confirm = Require Email Confirmation to Register
  1955. config.disable_register = Disable Self-Registration
  1956. config.allow_only_external_registration = Allow Registration Only Through External Services
  1957. config.enable_openid_signup = Enable OpenID Self-Registration
  1958. config.enable_openid_signin = Enable OpenID Sign-In
  1959. config.show_registration_button = Show Register Button
  1960. config.require_sign_in_view = Require Sign-In to View Pages
  1961. config.mail_notify = Enable Email Notifications
  1962. config.disable_key_size_check = Disable Minimum Key Size Check
  1963. config.enable_captcha = Enable CAPTCHA
  1964. config.active_code_lives = Active Code Lives
  1965. config.reset_password_code_lives = Recover Account Code Expiry Time
  1966. config.default_keep_email_private = Hide Email Addresses by Default
  1967. config.default_allow_create_organization = Allow Creation of Organizations by Default
  1968. config.enable_timetracking = Enable Time Tracking
  1969. config.default_enable_timetracking = Enable Time Tracking by Default
  1970. config.default_allow_only_contributors_to_track_time = Let Only Contributors Track Time
  1971. config.no_reply_address = Hidden Email Domain
  1972. config.default_visibility_organization = Default visibility for new Organizations
  1973. config.default_enable_dependencies = Enable Issue Dependencies by Default
  1974. config.webhook_config = Webhook Configuration
  1975. config.queue_length = Queue Length
  1976. config.deliver_timeout = Deliver Timeout
  1977. config.skip_tls_verify = Skip TLS Verification
  1978. config.mailer_config = SMTP Mailer Configuration
  1979. config.mailer_enabled = Enabled
  1980. config.mailer_disable_helo = Disable HELO
  1981. config.mailer_name = Name
  1982. config.mailer_host = Host
  1983. config.mailer_user = User
  1984. config.mailer_use_sendmail = Use Sendmail
  1985. config.mailer_sendmail_path = Sendmail Path
  1986. config.mailer_sendmail_args = Extra Arguments to Sendmail
  1987. config.send_test_mail = Send Testing Email
  1988. config.test_mail_failed = Failed to send a testing email to '%s': %v
  1989. config.test_mail_sent = A testing email has been sent to '%s'.
  1990. config.oauth_config = OAuth Configuration
  1991. config.oauth_enabled = Enabled
  1992. config.cache_config = Cache Configuration
  1993. config.cache_adapter = Cache Adapter
  1994. config.cache_interval = Cache Interval
  1995. config.cache_conn = Cache Connection
  1996. config.cache_item_ttl = Cache Item TTL
  1997. config.session_config = Session Configuration
  1998. config.session_provider = Session Provider
  1999. config.provider_config = Provider Config
  2000. config.cookie_name = Cookie Name
  2001. config.enable_set_cookie = Enable Set Cookie
  2002. config.gc_interval_time = GC Interval Time
  2003. config.session_life_time = Session Life Time
  2004. config.https_only = HTTPS Only
  2005. config.cookie_life_time = Cookie Life Time
  2006. config.picture_config = Picture and Avatar Configuration
  2007. config.picture_service = Picture Service
  2008. config.disable_gravatar = Disable Gravatar
  2009. config.enable_federated_avatar = Enable Federated Avatars
  2010. config.git_config = Git Configuration
  2011. config.git_disable_diff_highlight = Disable Diff Syntax Highlight
  2012. config.git_max_diff_lines = Max Diff Lines (for a single file)
  2013. config.git_max_diff_line_characters = Max Diff Characters (for a single line)
  2014. config.git_max_diff_files = Max Diff Files (to be shown)
  2015. config.git_gc_args = GC Arguments
  2016. config.git_migrate_timeout = Migration Timeout
  2017. config.git_mirror_timeout = Mirror Update Timeout
  2018. config.git_clone_timeout = Clone Operation Timeout
  2019. config.git_pull_timeout = Pull Operation Timeout
  2020. config.git_gc_timeout = GC Operation Timeout
  2021. config.log_config = Log Configuration
  2022. config.log_mode = Log Mode
  2023. config.macaron_log_mode = Macaron Log Mode
  2024. config.own_named_logger = Named Logger
  2025. config.routes_to_default_logger = Routes To Default Logger
  2026. config.go_log = Uses Go Log (redirected to default)
  2027. config.router_log_mode = Router Log Mode
  2028. config.disabled_logger = Disabled
  2029. config.access_log_mode = Access Log Mode
  2030. config.access_log_template = Template
  2031. config.xorm_log_mode = XORM Log Mode
  2032. config.xorm_log_sql = Log SQL
  2033. monitor.cron = Cron Tasks
  2034. monitor.name = Name
  2035. monitor.schedule = Schedule
  2036. monitor.next = Next Time
  2037. monitor.previous = Previous Time
  2038. monitor.execute_times = Executions
  2039. monitor.process = Running Processes
  2040. monitor.desc = Description
  2041. monitor.start = Start Time
  2042. monitor.execute_time = Execution Time
  2043. monitor.process.cancel = Cancel process
  2044. monitor.process.cancel_desc = Cancelling a process may cause data loss
  2045. monitor.process.cancel_notices = Cancel: <strong>%s</strong>?
  2046. monitor.queues = Queues
  2047. monitor.queue = Queue: %s
  2048. monitor.queue.name = Name
  2049. monitor.queue.type = Type
  2050. monitor.queue.exemplar = Exemplar Type
  2051. monitor.queue.numberworkers = Number of Workers
  2052. monitor.queue.maxnumberworkers = Max Number of Workers
  2053. monitor.queue.review = Review Config
  2054. monitor.queue.review_add = Review/Add Workers
  2055. monitor.queue.configuration = Initial Configuration
  2056. monitor.queue.nopool.title = No Worker Pool
  2057. monitor.queue.nopool.desc = This queue wraps other queues and does not itself have a worker pool.
  2058. monitor.queue.wrapped.desc = A wrapped queue wraps a slow starting queue, buffering queued requests in a channel. It does not have a worker pool itself.
  2059. monitor.queue.persistable-channel.desc = A persistable-channel wraps two queues, a channel queue that has its own worker pool and a level queue for persisted requests from previous shutdowns. It does not have a worker pool itself.
  2060. monitor.queue.pool.timeout = Timeout
  2061. monitor.queue.pool.addworkers.title = Add Workers
  2062. monitor.queue.pool.addworkers.submit = Add Workers
  2063. monitor.queue.pool.addworkers.desc = Add Workers to this pool with or without a timeout. If you set a timeout these workers will be removed from the pool after the timeout has lapsed.
  2064. monitor.queue.pool.addworkers.numberworkers.placeholder = Number of Workers
  2065. monitor.queue.pool.addworkers.timeout.placeholder = Set to 0 for no timeout
  2066. monitor.queue.pool.addworkers.mustnumbergreaterzero = Number of Workers to add must be greater than zero
  2067. monitor.queue.pool.addworkers.musttimeoutduration = Timeout must be a golang duration eg. 5m or be 0
  2068. monitor.queue.pool.flush.title = Flush Queue
  2069. monitor.queue.pool.flush.desc = Flush will add a worker that will terminate once the queue is empty, or it times out.
  2070. monitor.queue.pool.flush.submit = Add Flush Worker
  2071. monitor.queue.pool.flush.added = Flush Worker added for %[1]s
  2072. monitor.queue.settings.title = Pool Settings
  2073. monitor.queue.settings.desc = Pools dynamically grow with a boost in response to their worker queue blocking. These changes will not affect current worker groups.
  2074. monitor.queue.settings.timeout = Boost Timeout
  2075. monitor.queue.settings.timeout.placeholder = Currently %[1]v
  2076. monitor.queue.settings.timeout.error = Timeout must be a golang duration eg. 5m or be 0
  2077. monitor.queue.settings.numberworkers = Boost Number of Workers
  2078. monitor.queue.settings.numberworkers.placeholder = Currently %[1]d
  2079. monitor.queue.settings.numberworkers.error = Number of Workers to add must be greater than or equal to zero
  2080. monitor.queue.settings.maxnumberworkers = Max Number of workers
  2081. monitor.queue.settings.maxnumberworkers.placeholder = Currently %[1]d
  2082. monitor.queue.settings.maxnumberworkers.error = Max number of workers must be a number
  2083. monitor.queue.settings.submit = Update Settings
  2084. monitor.queue.settings.changed = Settings Updated
  2085. monitor.queue.settings.blocktimeout = Current Block Timeout
  2086. monitor.queue.settings.blocktimeout.value = %[1]v
  2087. monitor.queue.pool.none = This queue does not have a Pool
  2088. monitor.queue.pool.added = Worker Group Added
  2089. monitor.queue.pool.max_changed = Maximum number of workers changed
  2090. monitor.queue.pool.workers.title = Active Worker Groups
  2091. monitor.queue.pool.workers.none = No worker groups.
  2092. monitor.queue.pool.cancel = Shutdown Worker Group
  2093. monitor.queue.pool.cancelling = Worker Group shutting down
  2094. monitor.queue.pool.cancel_notices = Shutdown this group of %s workers?
  2095. monitor.queue.pool.cancel_desc = Leaving a queue without any worker groups may cause requests to block indefinitely.
  2096. notices.system_notice_list = System Notices
  2097. notices.view_detail_header = View Notice Details
  2098. notices.actions = Actions
  2099. notices.select_all = Select All
  2100. notices.deselect_all = Deselect All
  2101. notices.inverse_selection = Inverse Selection
  2102. notices.delete_selected = Delete Selected
  2103. notices.delete_all = Delete All Notices
  2104. notices.type = Type
  2105. notices.type_1 = Repository
  2106. notices.desc = Description
  2107. notices.op = Op.
  2108. notices.delete_success = The system notices have been deleted.
  2109. [action]
  2110. create_repo = created repository <a href="%s">%s</a>
  2111. rename_repo = renamed repository from <code>%[1]s</code> to <a href="%[2]s">%[3]s</a>
  2112. commit_repo = pushed to <a href="%[1]s/src/branch/%[2]s">%[3]s</a> at <a href="%[1]s">%[4]s</a>
  2113. create_issue = `opened issue <a href="%s/issues/%s">%s#%[2]s</a>`
  2114. close_issue = `closed issue <a href="%s/issues/%s">%s#%[2]s</a>`
  2115. reopen_issue = `reopened issue <a href="%s/issues/%s">%s#%[2]s</a>`
  2116. create_pull_request = `created pull request <a href="%s/pulls/%s">%s#%[2]s</a>`
  2117. close_pull_request = `closed pull request <a href="%s/pulls/%s">%s#%[2]s</a>`
  2118. reopen_pull_request = `reopened pull request <a href="%s/pulls/%s">%s#%[2]s</a>`
  2119. comment_issue = `commented on issue <a href="%s/issues/%s">%s#%[2]s</a>`
  2120. comment_pull = `commented on pull request <a href="%s/pulls/%s">%s#%[2]s</a>`
  2121. merge_pull_request = `merged pull request <a href="%s/pulls/%s">%s#%[2]s</a>`
  2122. transfer_repo = transferred repository <code>%s</code> to <a href="%s">%s</a>
  2123. push_tag = pushed tag <a href="%s/src/tag/%s">%[2]s</a> to <a href="%[1]s">%[3]s</a>
  2124. delete_tag = deleted tag %[2]s from <a href="%[1]s">%[3]s</a>
  2125. delete_branch = deleted branch %[2]s from <a href="%[1]s">%[3]s</a>
  2126. compare_commits = Compare %d commits
  2127. compare_commits_general = Compare commits
  2128. mirror_sync_push = synced commits to <a href="%[1]s/src/%[2]s">%[3]s</a> at <a href="%[1]s">%[4]s</a> from mirror
  2129. mirror_sync_create = synced new reference <a href="%s/src/%s">%[2]s</a> to <a href="%[1]s">%[3]s</a> from mirror
  2130. mirror_sync_delete = synced and deleted reference <code>%[2]s</code> at <a href="%[1]s">%[3]s</a> from mirror
  2131. approve_pull_request = `approved <a href="%s/pulls/%s">%s#%[2]s</a>`
  2132. reject_pull_request = `suggested changes for <a href="%s/pulls/%s">%s#%[2]s</a>`
  2133. [tool]
  2134. ago = %s ago
  2135. from_now = %s from now
  2136. now = now
  2137. future = future
  2138. 1s = 1 second
  2139. 1m = 1 minute
  2140. 1h = 1 hour
  2141. 1d = 1 day
  2142. 1w = 1 week
  2143. 1mon = 1 month
  2144. 1y = 1 year
  2145. seconds = %d seconds
  2146. minutes = %d minutes
  2147. hours = %d hours
  2148. days = %d days
  2149. weeks = %d weeks
  2150. months = %d months
  2151. years = %d years
  2152. raw_seconds = seconds
  2153. raw_minutes = minutes
  2154. [dropzone]
  2155. default_message = Drop files or click here to upload.
  2156. invalid_input_type = You can not upload files of this type.
  2157. file_too_big = File size ({{filesize}} MB) exceeds the maximum size of ({{maxFilesize}} MB).
  2158. remove_file = Remove file
  2159. [notification]
  2160. notifications = Notifications
  2161. unread = Unread
  2162. read = Read
  2163. no_unread = No unread notifications.
  2164. no_read = No read notifications.
  2165. pin = Pin notification
  2166. mark_as_read = Mark as read
  2167. mark_as_unread = Mark as unread
  2168. mark_all_as_read = Mark all as read
  2169. [gpg]
  2170. default_key=Signed with default key
  2171. error.extract_sign = Failed to extract signature
  2172. error.generate_hash = Failed to generate hash of commit
  2173. error.no_committer_account = No account linked to committer's email address
  2174. error.no_gpg_keys_found = "No known key found for this signature in database"
  2175. error.not_signed_commit = "Not a signed commit"
  2176. error.failed_retrieval_gpg_keys = "Failed to retrieve any key attached to the committer's account"
  2177. error.probable_bad_signature = "WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS."
  2178. error.probable_bad_default_signature = "WARNING! Although the default key has this ID it does not verify this commit! This commit is SUSPICIOUS."
  2179. [units]
  2180. error.no_unit_allowed_repo = You are not allowed to access any section of this repository.
  2181. error.unit_not_allowed = You are not allowed to access this repository section.