-
- Downloads
Add new feature to find file
Using the fuzzy filter, develop "file finder" feature. - feedback(http://feedback.gitlab.com/forums/176466-general/suggestions/4987909-add-file-finder-fuzzy-input-in-files-tab-to-ju ) - fuzzy filter(https://github.com/jeancroy/fuzzaldrin-plus) - shortcuts(when "t" was hitted at tree view, go to 'file find' page and 'esc' is to go back) - depends on gitlab_git 7.2.22
parent
d47b3e63
No related branches found
No related tags found
Showing
- CHANGELOG 1 addition, 0 deletionsCHANGELOG
- Gemfile 1 addition, 1 deletionGemfile
- Gemfile.lock 1 addition, 1 deletionGemfile.lock
- app/assets/javascripts/application.js.coffee 1 addition, 0 deletionsapp/assets/javascripts/application.js.coffee
- app/assets/javascripts/dispatcher.js.coffee 3 additions, 1 deletionapp/assets/javascripts/dispatcher.js.coffee
- app/assets/javascripts/project_find_file.js.coffee 125 additions, 0 deletionsapp/assets/javascripts/project_find_file.js.coffee
- app/assets/javascripts/shortcuts_find_file.js.coffee 19 additions, 0 deletionsapp/assets/javascripts/shortcuts_find_file.js.coffee
- app/assets/javascripts/shortcuts_tree.coffee 4 additions, 0 deletionsapp/assets/javascripts/shortcuts_tree.coffee
- app/assets/stylesheets/pages/tree.scss 8 additions, 0 deletionsapp/assets/stylesheets/pages/tree.scss
- app/controllers/projects/find_file_controller.rb 26 additions, 0 deletionsapp/controllers/projects/find_file_controller.rb
- app/controllers/projects/refs_controller.rb 2 additions, 0 deletionsapp/controllers/projects/refs_controller.rb
- app/models/repository.rb 5 additions, 0 deletionsapp/models/repository.rb
- app/views/help/_shortcuts.html.haml 26 additions, 0 deletionsapp/views/help/_shortcuts.html.haml
- app/views/layouts/nav/_project.html.haml 1 addition, 2 deletionsapp/views/layouts/nav/_project.html.haml
- app/views/projects/_find_file_link.html.haml 3 additions, 0 deletionsapp/views/projects/_find_file_link.html.haml
- app/views/projects/find_file/show.html.haml 27 additions, 0 deletionsapp/views/projects/find_file/show.html.haml
- app/views/projects/tree/show.html.haml 4 additions, 4 deletionsapp/views/projects/tree/show.html.haml
- config/routes.rb 18 additions, 0 deletionsconfig/routes.rb
- doc/workflow/shortcuts.png 0 additions, 0 deletionsdoc/workflow/shortcuts.png
- features/project/find_file.feature 42 additions, 0 deletionsfeatures/project/find_file.feature
Loading
| Loading
| @@ -49,7 +49,7 @@ gem "browser", '~> 1.0.0' |
# Extracting information from a git repository | ||
# Provide access to Gitlab::Git library | ||
gem "gitlab_git", '~> 7.2.20' | ||
gem "gitlab_git", '~> 7.2.22' | ||
# LDAP Auth | ||
# GitLab fork with several improvements to original library. For full list of changes | ||
Loading
| Loading
|
app/assets/javascripts/shortcuts_tree.coffee
0 → 100644
app/views/projects/_find_file_link.html.haml
0 → 100644
app/views/projects/find_file/show.html.haml
0 → 100644

| W: | H:
| W: | H:


features/project/find_file.feature
0 → 100644