[PR #2674] [MERGED] Add Activity page to repository #16533

Closed
opened 2025-11-02 12:12:50 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/go-gitea/gitea/pull/2674
Author: @lafriks
Created: 10/7/2017
Status: Merged
Merged: 10/14/2017
Merged by: @lafriks

Base: masterHead: feat/pulse


📝 Commits (10+)

  • 5de8a82 Add Pulse tab to repisotory page
  • 753f34b Pull request data for pulse
  • b352580 Add issue stats data and pulse page view
  • 4842575 Add user unit right checks
  • 0996e13 Add releases to activity
  • 1c48cc6 Remove unneded newline
  • cb22128 Fix right checking to only needed ones
  • a15d624 Refactor count selection to not use struct but just integer
  • 145c509 Improve plural text translation function
  • 81ad114 Fix formatting

📊 Changes

12 files changed (+686 additions, -4 deletions)

View changed files

📝 models/repo.go (+18 -1)
models/repo_activity.go (+242 -0)
📝 modules/context/repo.go (+10 -1)
📝 modules/templates/helper.go (+58 -0)
📝 options/locale/locale_en-US.ini (+42 -0)
📝 public/css/index.css (+1 -1)
📝 public/less/_base.less (+33 -1)
📝 public/less/_repository.less (+11 -0)
routers/repo/activity.go (+76 -0)
📝 routers/routes/routes.go (+5 -0)
templates/repo/activity.tmpl (+184 -0)
📝 templates/repo/header.tmpl (+6 -0)

📄 Description

Adds pulse page to repository to display latest activity from issues and pull requests

Screenshot:
attels


🔄 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/2674 **Author:** [@lafriks](https://github.com/lafriks) **Created:** 10/7/2017 **Status:** ✅ Merged **Merged:** 10/14/2017 **Merged by:** [@lafriks](https://github.com/lafriks) **Base:** `master` ← **Head:** `feat/pulse` --- ### 📝 Commits (10+) - [`5de8a82`](https://github.com/go-gitea/gitea/commit/5de8a82ba8c561d90bc0b913d84f72fb30238b09) Add Pulse tab to repisotory page - [`753f34b`](https://github.com/go-gitea/gitea/commit/753f34bf1a300b5381a71c97497eab2c3d24f93c) Pull request data for pulse - [`b352580`](https://github.com/go-gitea/gitea/commit/b352580be0f619ff3cab48d0dac0bc5b517e18ae) Add issue stats data and pulse page view - [`4842575`](https://github.com/go-gitea/gitea/commit/48425759fba970cd78a61ba104395373c5a7b969) Add user unit right checks - [`0996e13`](https://github.com/go-gitea/gitea/commit/0996e1304c5955cd92220ac5c47cc04a767db700) Add releases to activity - [`1c48cc6`](https://github.com/go-gitea/gitea/commit/1c48cc6d47727cab8d97a0612b329a735e1f3735) Remove unneded newline - [`cb22128`](https://github.com/go-gitea/gitea/commit/cb22128fb19f12339bce8bf78adb1c14f265953b) Fix right checking to only needed ones - [`a15d624`](https://github.com/go-gitea/gitea/commit/a15d6242481e87fbf2fba5f983ff9a53de26e9ef) Refactor count selection to not use struct but just integer - [`145c509`](https://github.com/go-gitea/gitea/commit/145c509ebaf00b2f45f525c8315b9cbd1d69d196) Improve plural text translation function - [`81ad114`](https://github.com/go-gitea/gitea/commit/81ad114d6e788f312c60dd24bc8bf2828882b213) Fix formatting ### 📊 Changes **12 files changed** (+686 additions, -4 deletions) <details> <summary>View changed files</summary> 📝 `models/repo.go` (+18 -1) ➕ `models/repo_activity.go` (+242 -0) 📝 `modules/context/repo.go` (+10 -1) 📝 `modules/templates/helper.go` (+58 -0) 📝 `options/locale/locale_en-US.ini` (+42 -0) 📝 `public/css/index.css` (+1 -1) 📝 `public/less/_base.less` (+33 -1) 📝 `public/less/_repository.less` (+11 -0) ➕ `routers/repo/activity.go` (+76 -0) 📝 `routers/routes/routes.go` (+5 -0) ➕ `templates/repo/activity.tmpl` (+184 -0) 📝 `templates/repo/header.tmpl` (+6 -0) </details> ### 📄 Description Adds pulse page to repository to display latest activity from issues and pull requests Screenshot: ![attels](https://user-images.githubusercontent.com/165205/31312315-4db6a198-abc8-11e7-9c97-5f43b756352d.png) --- <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 12:12:50 -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#16533