mirror of https://github.com/go-gitea/gitea.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
* Use PathUnescape instead of QueryUnescape when working with branch names Currently branch names with a '+' fail in certain situations because QueryUnescape replaces the + character with a blank space. Using PathUnescape should be better since it is defined as: // PathUnescape is identical to QueryUnescape except that it does not // unescape '+' to ' ' (space). Fixes #6333 * Change error to match new function name * Add new util function PathEscapeSegments This function simply runs PathEscape on each segment of a path without touching the forward slash itself. We want to use this instead of PathEscape/QueryEscape in most cases because a forward slash is a valid name for a branch etc... and we don't want that escaped in a URL. Putting this in new file url.go and also moving a couple similar functions into that file as well. * Use EscapePathSegments where appropriate Replace various uses of EscapePath/EscapeQuery with new EscapePathSegments. Also remove uncessary uses of various escape/unescape functions when the text had already been escaped or was not escaped. * Reformat comment to make drone build happy * Remove no longer used url library * Requested code changes |
6 years ago | |
---|---|---|
.. | ||
fixtures | 6 years ago | |
migrations | 6 years ago | |
access.go | 6 years ago | |
access_test.go | 6 years ago | |
action.go | 6 years ago | |
action_list.go | 7 years ago | |
action_test.go | 6 years ago | |
admin.go | 6 years ago | |
admin_test.go | 8 years ago | |
attachment.go | 6 years ago | |
attachment_test.go | 7 years ago | |
branches.go | 6 years ago | |
branches_test.go | 7 years ago | |
consistency.go | 8 years ago | |
error.go | 6 years ago | |
error_oauth2.go | 8 years ago | |
external_login_user.go | 8 years ago | |
git_diff.go | 6 years ago | |
git_diff_test.go | 6 years ago | |
gpg_key.go | 6 years ago | |
gpg_key_test.go | 7 years ago | |
graph.go | 7 years ago | |
graph_test.go | 7 years ago | |
helper.go | 7 years ago | |
issue.go | 6 years ago | |
issue_assignees.go | 6 years ago | |
issue_assignees_test.go | 6 years ago | |
issue_comment.go | 6 years ago | |
issue_comment_list.go | 6 years ago | |
issue_comment_test.go | 7 years ago | |
issue_dependency.go | 6 years ago | |
issue_dependency_test.go | 6 years ago | |
issue_label.go | 6 years ago | |
issue_label_test.go | 6 years ago | |
issue_list.go | 6 years ago | |
issue_list_test.go | 7 years ago | |
issue_lock.go | 6 years ago | |
issue_mail.go | 6 years ago | |
issue_milestone.go | 6 years ago | |
issue_milestone_test.go | 7 years ago | |
issue_reaction.go | 7 years ago | |
issue_reaction_test.go | 6 years ago | |
issue_stopwatch.go | 6 years ago | |
issue_stopwatch_test.go | 7 years ago | |
issue_test.go | 6 years ago | |
issue_tracked_time.go | 6 years ago | |
issue_tracked_time_test.go | 8 years ago | |
issue_user.go | 6 years ago | |
issue_user_test.go | 7 years ago | |
issue_watch.go | 7 years ago | |
issue_watch_test.go | 7 years ago | |
lfs.go | 6 years ago | |
lfs_lock.go | 6 years ago | |
login_source.go | 6 years ago | |
mail.go | 6 years ago | |
main_test.go | 7 years ago | |
models.go | 6 years ago | |
models_sqlite.go | 11 years ago | |
models_test.go | 7 years ago | |
notification.go | 6 years ago | |
notification_test.go | 7 years ago | |
oauth2.go | 6 years ago | |
oauth2_application.go | 6 years ago | |
oauth2_application_test.go | 6 years ago | |
org.go | 6 years ago | |
org_team.go | 6 years ago | |
org_team_test.go | 6 years ago | |
org_test.go | 6 years ago | |
pull.go | 6 years ago | |
pull_test.go | 7 years ago | |
release.go | 6 years ago | |
release_test.go | 6 years ago | |
repo.go | 6 years ago | |
repo_activity.go | 7 years ago | |
repo_branch.go | 6 years ago | |
repo_collaboration.go | 7 years ago | |
repo_collaboration_test.go | 8 years ago | |
repo_indexer.go | 7 years ago | |
repo_issue.go | 7 years ago | |
repo_list.go | 6 years ago | |
repo_list_test.go | 6 years ago | |
repo_mirror.go | 6 years ago | |
repo_permission.go | 6 years ago | |
repo_permission_test.go | 6 years ago | |
repo_redirect.go | 8 years ago | |
repo_redirect_test.go | 8 years ago | |
repo_tag.go | 6 years ago | |
repo_test.go | 7 years ago | |
repo_unit.go | 6 years ago | |
repo_watch.go | 6 years ago | |
repo_watch_test.go | 7 years ago | |
review.go | 6 years ago | |
review_test.go | 6 years ago | |
ssh_key.go | 6 years ago | |
ssh_key_test.go | 8 years ago | |
star.go | 6 years ago | |
star_test.go | 8 years ago | |
status.go | 6 years ago | |
status_test.go | 8 years ago | |
test_fixtures.go | 6 years ago | |
token.go | 7 years ago | |
token_test.go | 8 years ago | |
topic.go | 6 years ago | |
topic_test.go | 6 years ago | |
twofactor.go | 7 years ago | |
u2f.go | 6 years ago | |
u2f_test.go | 6 years ago | |
unit.go | 6 years ago | |
unit_tests.go | 6 years ago | |
update.go | 6 years ago | |
update_test.go | 8 years ago | |
upload.go | 6 years ago | |
user.go | 6 years ago | |
user_follow.go | 8 years ago | |
user_follow_test.go | 8 years ago | |
user_heatmap.go | 6 years ago | |
user_heatmap_test.go | 6 years ago | |
user_mail.go | 7 years ago | |
user_mail_test.go | 8 years ago | |
user_openid.go | 6 years ago | |
user_openid_test.go | 8 years ago | |
user_test.go | 6 years ago | |
webhook.go | 6 years ago | |
webhook_dingtalk.go | 6 years ago | |
webhook_discord.go | 6 years ago | |
webhook_slack.go | 6 years ago | |
webhook_test.go | 7 years ago | |
wiki.go | 6 years ago | |
wiki_test.go | 7 years ago |