[PR #733] [CLOSED] First implementation of git appraise #15548

Closed
opened 2025-11-02 11:49:09 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/go-gitea/gitea/pull/733
Author: @sokolovstas
Created: 1/23/2017
Status: Closed

Base: masterHead: appraise


📝 Commits (6)

  • 5f6fc3d First implementation of git appraise
  • be138a1 Fixed review notes
  • f6191d7 Added IsReview flag and Revision string field to models.Issue
  • 99847b5 Add files diff
  • dd9dc93 Fix active highlight on review files list
  • 48f08ab Added showing code lines in comments

📊 Changes

29 files changed (+3616 additions, -105 deletions)

View changed files

📝 cmd/web.go (+8 -0)
📝 models/issue.go (+11 -1)
📝 models/issue_comment.go (+5 -0)
📝 models/repo.go (+17 -9)
📝 modules/auth/repo_form.go (+3 -2)
📝 modules/context/repo.go (+11 -0)
📝 options/locale/locale_en-US.ini (+2 -0)
📝 public/css/index.css (+43 -30)
📝 public/less/_repository.less (+47 -47)
📝 routers/init.go (+1 -1)
routers/repo/reviews.go (+481 -0)
📝 routers/repo/setting.go (+1 -0)
📝 templates/repo/header.tmpl (+5 -0)
📝 templates/repo/issue/list.tmpl (+10 -2)
📝 templates/repo/issue/view.tmpl (+1 -1)
📝 templates/repo/issue/view_content.tmpl (+19 -7)
📝 templates/repo/issue/view_title.tmpl (+10 -2)
📝 templates/repo/pulls/tab_menu.tmpl (+3 -3)
📝 templates/repo/settings/options.tmpl (+10 -0)
vendor/github.com/google/git-appraise/LICENSE (+202 -0)

...and 9 more files

📄 Description

Issue #189

This is first implementation of appraise review. I opened gitea code only this morning and to end of day I completed showing review list.

Dear maintainers please see the code and tell me if I started implementation properly. I can continue to implement this tomorrow.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/go-gitea/gitea/pull/733 **Author:** [@sokolovstas](https://github.com/sokolovstas) **Created:** 1/23/2017 **Status:** ❌ Closed **Base:** `master` ← **Head:** `appraise` --- ### 📝 Commits (6) - [`5f6fc3d`](https://github.com/go-gitea/gitea/commit/5f6fc3d859ca079eccd6f6581202f5ece1b35237) First implementation of git appraise - [`be138a1`](https://github.com/go-gitea/gitea/commit/be138a16a848f7d13ee171f274fc70d3f16d374f) Fixed review notes - [`f6191d7`](https://github.com/go-gitea/gitea/commit/f6191d7da3bdff0e4c9198ae4b6fd88d47cf696d) Added IsReview flag and Revision string field to models.Issue - [`99847b5`](https://github.com/go-gitea/gitea/commit/99847b51a9bae218bf7a2798b8b12aaa5eb0c157) Add files diff - [`dd9dc93`](https://github.com/go-gitea/gitea/commit/dd9dc933268d4ed4a57f5018d36a9446c9d969f8) Fix active highlight on review files list - [`48f08ab`](https://github.com/go-gitea/gitea/commit/48f08abd563aaa91bbede624359312cd37268bd3) Added showing code lines in comments ### 📊 Changes **29 files changed** (+3616 additions, -105 deletions) <details> <summary>View changed files</summary> 📝 `cmd/web.go` (+8 -0) 📝 `models/issue.go` (+11 -1) 📝 `models/issue_comment.go` (+5 -0) 📝 `models/repo.go` (+17 -9) 📝 `modules/auth/repo_form.go` (+3 -2) 📝 `modules/context/repo.go` (+11 -0) 📝 `options/locale/locale_en-US.ini` (+2 -0) 📝 `public/css/index.css` (+43 -30) 📝 `public/less/_repository.less` (+47 -47) 📝 `routers/init.go` (+1 -1) ➕ `routers/repo/reviews.go` (+481 -0) 📝 `routers/repo/setting.go` (+1 -0) 📝 `templates/repo/header.tmpl` (+5 -0) 📝 `templates/repo/issue/list.tmpl` (+10 -2) 📝 `templates/repo/issue/view.tmpl` (+1 -1) 📝 `templates/repo/issue/view_content.tmpl` (+19 -7) 📝 `templates/repo/issue/view_title.tmpl` (+10 -2) 📝 `templates/repo/pulls/tab_menu.tmpl` (+3 -3) 📝 `templates/repo/settings/options.tmpl` (+10 -0) ➕ `vendor/github.com/google/git-appraise/LICENSE` (+202 -0) _...and 9 more files_ </details> ### 📄 Description Issue #189 This is first implementation of appraise review. I opened gitea code only this morning and to end of day I completed showing review list. Dear maintainers please see the code and tell me if I started implementation properly. I can continue to implement this tomorrow. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2025-11-02 11:49:09 -06:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/gitea#15548