summaryrefslogtreecommitdiffstats
path: root/app/views/repositories/show.rhtml
Commit message (Collapse)AuthorAgeFilesLines
* rename .rhtml to .html.erb of app/views/repositories/show.rhtmlToshi MARUYAMA2011-08-231-64/+0
| | | | git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6529 e93f8b46-1217-0410-a6f0-8f06a7374b81
* scm: remove "View all revisions" in sub directory (#7984).Toshi MARUYAMA2011-03-261-4/+9
| | | | git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5223 e93f8b46-1217-0410-a6f0-8f06a7374b81
* scm: add rev param to "View revisions" (#7984).Toshi MARUYAMA2011-03-261-1/+4
| | | | | | | | | | | There are two paths to show specific revision. * http://www.redmine.org/projects/redmine/repository/revisions/5219/show * http://www.redmine.org/projects/redmine/repository/show?rev=5219 First link is http://www.redmine.org/projects/redmine/repository/revisions/5219/changes . But, Second link is http://www.redmine.org/projects/redmine/repository/changes . git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5222 e93f8b46-1217-0410-a6f0-8f06a7374b81
* scm: do not display 'View revision' links in subversion if path or revision ↵Toshi MARUYAMA2011-03-241-1/+5
| | | | | | are nil (#7984). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5219 e93f8b46-1217-0410-a6f0-8f06a7374b81
* scm: backout r5213. do not display both 'View all revisions' and 'View ↵Toshi MARUYAMA2011-03-241-9/+12
| | | | | | | | | | | | | | | | | | | revision' links (#7984, #7246). Git and Mercurial support *branch*. Git in repository root shows *master branch*. Git master branch does not have all revisions. Mercurial default branch is *default branch*. Mercurial shows *tip* in repository root. Mercurial does not treat directory. "hg log DIR" costs high. Getting correct limited changesets in sub directory and branch is very heavy. So, if there is no recent revision in sub directory and branch, no changeset shows. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5218 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Do not display both 'View all revisions' and 'View revision' links (#7984).Jean-Philippe Lang2011-03-241-12/+9
| | | | git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5213 e93f8b46-1217-0410-a6f0-8f06a7374b81
* scm: switch showing link all revisions and directory revisions if scm ↵Toshi MARUYAMA2011-03-161-7/+12
| | | | | | supports these feature or not. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5145 e93f8b46-1217-0410-a6f0-8f06a7374b81
* scm: code clean up repositories/show.rhtml.Toshi MARUYAMA2011-03-151-9/+15
| | | | git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5138 e93f8b46-1217-0410-a6f0-8f06a7374b81
* scm: code clean up repositories/show.rhtml.Toshi MARUYAMA2011-03-151-13/+16
| | | | git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@5136 e93f8b46-1217-0410-a6f0-8f06a7374b81
* SCM:Jean-Philippe Lang2009-09-011-2/+8
| | | | | | | * add latest changesets for the current directory when browsing the repository and a link to the full log * ability to diff a directory (#3575) git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2849 e93f8b46-1217-0410-a6f0-8f06a7374b81
* SCM browser:Jean-Philippe Lang2009-08-171-1/+3
| | | | | | | * don't show repository commits when showing a subfolder * remove obsolete view browse.rhtml git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2843 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Added branch and tag support to the git repository viewer. (#1406)Eric Davis2009-08-151-9/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Many thanks to Adam Soltys and everyone else who tested this patch. * Updated git test repository so it has a branch with some differences from the master branch * Moved redmine diff class into a module so as not to clash with diff-lcs gem which is required by grit * Find changesets from all branches, not just master * Got revision browsing working * Got file actions working properly * Allow browsing by short form of commit identifier * Added a method to retrieve repository branches * Allow browsing by branch names as well as commit numbers * Handle the case where a git repository has no master branch * Expand revision box and handle finding revisions by first 8 characters * Added branches dropdown to repository show page * Combined repository browse and show into a single action. Moved branch/revision navigation into a partial. * Renamed partial navigation -> breadcrumbs * Made it so latest revisions list uses branch and path context * Preserve current path when changing branch or revision * Perform slightly more graceful error handling in the case of invalid repository URLs * Allow branch names to contain periods * Allow dashes in branch names * Sort branches by name * Adding tags dropdown * Need to disable both branches and tags dropdowns before submitting revision form * Support underscores in revision (branch/tag) names * Making file history sensitive to current branch/tag/revision, adding common navigation to changes page * Updated translation files to include labels for 'branch', 'tag', and 'view all revisions' * Reenable fields after submit so they don't look disabled and don't stay disabled on browser back button * Instead of dashes just use empty string for default dropdown value * Individual entry views now sport the upgraded revision navigation * Don't display dropdowns with no entries * Consider all revisions when doing initial load * Fixed bug grabbing changesets. Thanks to Bernhard Furtmueller for catching. * Always check the entire log to find new revisions, rather than trying to go forward from the latest known one * Added some cleverness to avoid selecting the whole changesets table any time someone views the repository root * File copies and renames being detected properly * Return gracefully if no revisions are found in the git log * Applied patch from Babar Le Lapin to improve Windows compatibility git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2840 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Fixing repository routes (#2967).Jean-Philippe Lang2009-03-131-1/+1
| | | | git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2581 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Adds an helper to render other formats download links.Jean-Philippe Lang2009-01-291-4/+4
| | | | git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2333 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Added hook :view_repositories_show_contextual to allow adding items to theEric Davis2008-10-251-0/+1
| | | | | | | | | repository's contextual menu. #2073 git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@1948 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Adds links to changesets atom feed on repository browser (#1873).Jean-Philippe Lang2008-09-121-0/+4
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@1802 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Adds a field on the repository view to browse at specific revision (#1443).Jean-Philippe Lang2008-06-151-1/+6
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@1554 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Slight improvements to the browser views.Jean-Philippe Lang2008-01-021-1/+1
| | | | | | ApplicationHelper#set_html_title replaced by html_title with arguments and can be called several times in views to append elements to the title. git-svn-id: http://redmine.rubyforge.org/svn/trunk@1032 e93f8b46-1217-0410-a6f0-8f06a7374b81
* More detailed html title on several views.Jean-Philippe Lang2007-12-071-0/+2
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@964 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Merged 0.6 branch into trunk.Jean-Philippe Lang2007-08-291-2/+5
| | | | | | | | | Permissions management was rewritten. Some permissions can now be specifically defined for non member and anonymous users. This migration: * is irreversible (please, don't forget to *backup* your database before upgrading) * resets role's permissions (go to "Admin -> Roles & Permissions" to set them after upgrading) git-svn-id: http://redmine.rubyforge.org/svn/trunk@674 e93f8b46-1217-0410-a6f0-8f06a7374b81
* Added basic support for CVS and Mercurial SCMs.Jean-Philippe Lang2007-06-121-3/+5
| | | | | | | | | Browsing, changesets fetching and diff viewing are implemented. Only tested with local repositories. Thanks to Ralph Vater for CVS specific code. git-svn-id: http://redmine.rubyforge.org/svn/trunk@559 e93f8b46-1217-0410-a6f0-8f06a7374b81
* added simple svn statistics graphs, rendered using SVG::GraphJean-Philippe Lang2007-03-251-0/+4
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@380 e93f8b46-1217-0410-a6f0-8f06a7374b81
* SVN commits are now stored in the database, and added to the activity view ↵Jean-Philippe Lang2007-03-251-9/+6
| | | | | | | | | | | and the search engine. New commits are automatically retrieved and stored when consulting the repository in the app. This behaviour can be disabled by unchecking 'Autofecth commits' in configuration settings. Commits can be fetched offline by running (recommanded at least for the initial import of past commits): ruby script/runner "Repository.fetch_changesets" It will load commits for all of the repositories. git-svn-id: http://redmine.rubyforge.org/svn/trunk@377 e93f8b46-1217-0410-a6f0-8f06a7374b81
* XHTML compliance improvementsJean-Philippe Lang2007-01-051-3/+5
| | | | git-svn-id: http://redmine.rubyforge.org/svn/trunk@150 e93f8b46-1217-0410-a6f0-8f06a7374b81
* svn browser merged in trunkJean-Philippe Lang2006-12-241-0/+15
git-svn-id: http://redmine.rubyforge.org/svn/trunk@106 e93f8b46-1217-0410-a6f0-8f06a7374b81