[PR #530] [MERGED] Search for issues/pulls #15435

Closed
opened 2025-11-02 11:46:28 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/go-gitea/gitea/pull/530
Author: @ethantkoenig
Created: 12/29/2016
Status: Merged
Merged: 1/25/2017
Merged by: @lunny

Base: masterHead: search_bar


📝 Commits (1)

  • e0e49aa Search bar for issues/pulls

📊 Changes

195 files changed (+221830 additions, -60 deletions)

View changed files

📝 .gitignore (+1 -0)
📝 conf/app.ini (+4 -0)
📝 models/issue.go (+60 -14)
📝 models/issue_comment.go (+5 -13)
models/issue_indexer.go (+183 -0)
📝 models/models.go (+4 -0)
modules/indexer/indexer.go (+14 -0)
📝 modules/setting/setting.go (+6 -0)
modules/util/util.go (+25 -0)
📝 public/css/index.css (+4 -0)
📝 routers/api/v1/repo/issue.go (+4 -2)
📝 routers/api/v1/repo/issue_comment.go (+1 -1)
📝 routers/init.go (+2 -0)
📝 routers/repo/issue.go (+28 -6)
📝 routers/user/home.go (+3 -2)
📝 templates/repo/issue/list.tmpl (+22 -21)
📝 templates/repo/issue/navbar.tmpl (+1 -1)
templates/repo/issue/search.tmpl (+13 -0)
vendor/github.com/blevesearch/bleve/CONTRIBUTING.md (+16 -0)
vendor/github.com/blevesearch/bleve/LICENSE (+202 -0)

...and 80 more files

📄 Description

Issue #379. This PR is the same as the now-closed #387; I had to reissue the PR for logistical reasons.

Uses a bleve indexer to search issues/pulls by keyword.

screenshot from 2017-01-12 14-12-03


🔄 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/530 **Author:** [@ethantkoenig](https://github.com/ethantkoenig) **Created:** 12/29/2016 **Status:** ✅ Merged **Merged:** 1/25/2017 **Merged by:** [@lunny](https://github.com/lunny) **Base:** `master` ← **Head:** `search_bar` --- ### 📝 Commits (1) - [`e0e49aa`](https://github.com/go-gitea/gitea/commit/e0e49aa804c3b931676ba60ce4091c04a426f678) Search bar for issues/pulls ### 📊 Changes **195 files changed** (+221830 additions, -60 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+1 -0) 📝 `conf/app.ini` (+4 -0) 📝 `models/issue.go` (+60 -14) 📝 `models/issue_comment.go` (+5 -13) ➕ `models/issue_indexer.go` (+183 -0) 📝 `models/models.go` (+4 -0) ➕ `modules/indexer/indexer.go` (+14 -0) 📝 `modules/setting/setting.go` (+6 -0) ➕ `modules/util/util.go` (+25 -0) 📝 `public/css/index.css` (+4 -0) 📝 `routers/api/v1/repo/issue.go` (+4 -2) 📝 `routers/api/v1/repo/issue_comment.go` (+1 -1) 📝 `routers/init.go` (+2 -0) 📝 `routers/repo/issue.go` (+28 -6) 📝 `routers/user/home.go` (+3 -2) 📝 `templates/repo/issue/list.tmpl` (+22 -21) 📝 `templates/repo/issue/navbar.tmpl` (+1 -1) ➕ `templates/repo/issue/search.tmpl` (+13 -0) ➕ `vendor/github.com/blevesearch/bleve/CONTRIBUTING.md` (+16 -0) ➕ `vendor/github.com/blevesearch/bleve/LICENSE` (+202 -0) _...and 80 more files_ </details> ### 📄 Description Issue #379. This PR is the same as the now-closed #387; I had to reissue the PR for logistical reasons. Uses a bleve indexer to search issues/pulls by keyword. ![screenshot from 2017-01-12 14-12-03](https://cloud.githubusercontent.com/assets/8990880/21904466/b9645ed2-d8d1-11e6-8e9c-604097577589.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 11:46:28 -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#15435