Open nathan-sain opened 6 years ago
Currently it will only index code but not related wiki repo.
@lunny
not related wiki repo.
Ah, how it's pity :cry:
not related wiki repo.
Ah, how it's pity :cry:
Second the above.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs during the next 2 weeks. Thank you for your contributions.
Indexing wiki and having an effective search function definitely helps with the use of a software, especially something as promising as gitea. Please give this ticket more consideration that it deserves.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs during the next 2 weeks. Thank you for your contributions.
Agree this feature is sorely missing and makes the wiki not very useable in lots of real world situations (lots of documentation/text isn't practical without search). It is almost more usable to use the regular code view to store the wiki/md files where you get access to search but loose the few wiki features like page dropdown and _sidebar/_footer
Having a search here would make the wiki feature exponentially more useful :)
This would be a very useful feature indeed!
Any progress on this? Search on wiki is a must for this kind of tool.
Thanks Paolo
Could it be implemented with bleve, like the other searches? Any objections with an implementation like that? I guess the Wiki is just markdown code, so I think it shouldn't be too difficult to implement.
The wikis being just (afaik) rendered code, it definitely feels like it should be able to be done in a similar fashion.
requesting for this
Any updates on this?
Very useful feature. Any plans to implement this?
Would definitely love this feature. That makes the wiki a much more powerfull tool for documentation.
I'd love to see this on the roadmap!
Any update on this?
I, too, would love to see this on the roadmap - I currently maintain a company wiki within Gitea, but the lack of search is sorely missing.
Like a few others have mentioned, I too create a separate code repository and use it as a wiki. However, the analyzer uses keyword
rather than standard
^1 making the search less ideal (e.g. python
returns results but the query python list
does not, see generally ^3).
Long-term there needs to be a separate indexer for the wiki but for an easy workaround one can change the analyzer used in the source:
sed -i 's!analyzer/keyword!analyzer/standard!' modules/indexer/code/bleve/bleve.go
I put together this Dockerfile
if anybody wants to use it:
Hello! Are there any plans on this feature?
In hindsight I'm not sure if my last workaround worked very well, I'd need to review it.
What needs to be done to implement this? If someone with more experience in this codebase can list some achievable steps, I'm happy to help out in any way I can.
As it stands I'm using a separate Meilisearch Bar and fzf + bleve, I'd rather just use the integrated bleve.
suggestions how to expose it to the ui are welcome to #29726 ;)
[x]
):Description
I have enabled indexing of my repos with REPO_INDEXER_ENABLED = true in my app.ini I would like to search my wiki repos like I do my code repos