summaryrefslogtreecommitdiffstats
path: root/gogs.go
Commit message (Expand)AuthorAgeFilesLines
* IP: RC Code ReviewUnknown2014-03-271-1/+1
* Fix issue on windowsUnknown2014-03-261-1/+1
* More on diff pageUnknown2014-03-261-1/+1
* Add mail notify for creating issueUnknown2014-03-251-1/+1
* Added create issueUnknown2014-03-251-1/+1
* Check run userUnknown2014-03-251-15/+0
* Mirror fixUnknown2014-03-241-1/+1
* SSL enable config optionUnknown2014-03-231-1/+1
* Update READMEUnknown2014-03-221-1/+1
* Working on issuesUnknown2014-03-221-1/+1
* Update sessionUnknown2014-03-221-1/+1
* Add admin delete userUnknown2014-03-221-1/+1
* Finsih mail resend limitUnknown2014-03-211-1/+1
* Basic admin data table, models changesUnknown2014-03-201-4/+4
* Add Repository/user name filterUnknown2014-03-201-1/+1
* Bug fixUnknown2014-03-201-1/+1
* Pools limit concurrent numsUnknown2014-03-191-1/+1
* Add complete log configurationUnknown2014-03-191-1/+1
* Delete commit and update getlastcommitUnknown2014-03-181-1/+1
* Add postgres support, clean code, code reviewUnknown2014-03-171-1/+1
* Add latest commit in repo viewerUnknown2014-03-171-1/+1
* Fix commit feed uiUnknown2014-03-161-1/+1
* Clean codeUnknown2014-03-161-1/+1
* Merge branch 'master' of github.com:gogits/gogsUnknown2014-03-161-0/+1
|\
| * add updateLunny Xiao2014-03-161-0/+1
* | Clean codeUnknown2014-03-161-12/+10
|/
* move templateFuncs to one file, add middleware context.slene2014-03-151-0/+1
* Add basic render of public actUnknown2014-03-151-1/+1
* Finish update password and profileUnknown2014-03-141-1/+1
* Add update user profile back end, add new gitignore and license, add template...Unknown2014-03-131-1/+1
* Add delete repoUnknown2014-03-131-1/+1
* single repository page ui, add spec handler to get repoFuXiaoHei2014-03-131-3/+3
* Finish delete userUnknown2014-03-111-1/+1
* Finish create repoUnknown2014-03-111-1/+1
* Update create repoUnknown2014-03-111-1/+1
* Clean codeUnknown2014-03-101-1/+2
* Add add and delete SSH keyUnknown2014-03-101-1/+1
* Update CreateRepositoryUnknown2014-03-091-1/+1
* Update repo.CreateUnknown2014-03-081-1/+1
* Merge utils to modulesUnknown2014-03-071-3/+3
* Change /user/profile URL to /user/:usernameUnknown2014-03-071-1/+1
* Add SignInRequire and SignOutRequire middlewareUnknown2014-03-071-1/+1
* Finish log in userUnknown2014-03-061-1/+1
* Finish register userUnknown2014-03-061-1/+1
* Add binding form for register userUnknown2014-03-061-1/+1
* UpdateUnknown2014-03-031-1/+1
* UpdateUnknown2014-03-021-1/+1
* add run userLunny Xiao2014-02-251-1/+17
* improved ssh supportsLunny Xiao2014-02-201-2/+1
* Add code of delete userUnknown2014-02-191-15/+6
;repo.editor.upload_file"}} </a> {{end}} <a class="item" href="{{.RepoLink}}/_diffpatch/{{.BranchName | PathEscapeSegments}}/{{.TreePath | PathEscapeSegments}}"> {{ctx.Locale.Tr "repo.editor.patch"}} </a> </div> </button> {{end}} {{if and $isTreePathRoot .Repository.IsTemplate}} <a role="button" class="ui primary compact button" href="{{AppSubUrl}}/repo/create?template_id={{.Repository.ID}}"> {{ctx.Locale.Tr "repo.use_template"}} </a> {{end}} {{if not $isTreePathRoot}} {{$treeNameIdxLast := Eval $treeNamesLen "-" 1}} <span class="breadcrumb repo-path tw-ml-1"> <a class="section" href="{{.RepoLink}}/src/{{.BranchNameSubURL}}" title="{{.Repository.Name}}">{{StringUtils.EllipsisString .Repository.Name 30}}</a> {{- range $i, $v := .TreeNames -}} <span class="breadcrumb-divider">/</span> {{- if eq $i $treeNameIdxLast -}} <span class="active section" title="{{$v}}">{{$v}}</span> <button class="btn interact-fg tw-mx-1" data-clipboard-text="{{$.TreePath}}" data-tooltip-content="{{ctx.Locale.Tr "copy_path"}}">{{svg "octicon-copy" 14}}</button> {{- else -}} {{$p := index $.Paths $i}}<span class="section"><a href="{{$.BranchLink}}/{{PathEscapeSegments $p}}" title="{{$v}}">{{$v}}</a></span> {{- end -}} {{- end -}} </span> {{end}} </div> <div class="repo-button-row-right"> <!-- Only show clone panel in repository home page --> {{if $isTreePathRoot}} {{template "repo/clone_panel" .}} {{end}} {{if and (not $isTreePathRoot) (not .IsViewFile) (not .IsBlame)}}{{/* IsViewDirectory (not home), TODO: split the templates, avoid using "if" tricks */}} <a class="ui button" href="{{.RepoLink}}/commits/{{.BranchNameSubURL}}/{{.TreePath | PathEscapeSegments}}"> {{svg "octicon-history" 16 "tw-mr-2"}}{{ctx.Locale.Tr "repo.file_history"}} </a> {{end}} </div> </div> {{if .IsViewFile}} {{template "repo/view_file" .}} {{else if .IsBlame}} {{template "repo/blame" .}} {{else}}{{/* IsViewDirectory */}} {{if $isTreePathRoot}} {{template "repo/code/upstream_diverging_info" .}} {{end}} {{template "repo/view_list" .}} {{if and .ReadmeExist (or .IsMarkup .IsPlainText)}} {{template "repo/view_file" .}} {{end}} {{end}} </div> {{if $showSidebar}} {{template "repo/home_sidebar_top" .}} {{template "repo/home_sidebar_bottom" .}} {{end}} </div> </div> </div> {{template "base/footer" .}}