mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-04 05:18:25 +00:00 
			
		
		
		
	Mirror fix
This commit is contained in:
		
							
								
								
									
										2
									
								
								gogs.go
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								gogs.go
									
									
									
									
									
								
							@@ -19,7 +19,7 @@ import (
 | 
				
			|||||||
// Test that go1.2 tag above is included in builds. main.go refers to this definition.
 | 
					// Test that go1.2 tag above is included in builds. main.go refers to this definition.
 | 
				
			||||||
const go12tag = true
 | 
					const go12tag = true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const APP_VER = "0.1.9.0328 Alpha"
 | 
					const APP_VER = "0.1.9.0329 Alpha"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func init() {
 | 
					func init() {
 | 
				
			||||||
	base.AppVer = APP_VER
 | 
						base.AppVer = APP_VER
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -221,6 +221,7 @@ func UpdateIssue(ctx *middleware.Context, params martini.Params, form auth.Creat
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
func Comment(ctx *middleware.Context, params martini.Params) {
 | 
					func Comment(ctx *middleware.Context, params martini.Params) {
 | 
				
			||||||
 | 
						fmt.Println(ctx.Query("change_status"))
 | 
				
			||||||
	if !ctx.Repo.IsValid {
 | 
						if !ctx.Repo.IsValid {
 | 
				
			||||||
		ctx.Handle(404, "issue.Comment(invalid repo):", nil)
 | 
							ctx.Handle(404, "issue.Comment(invalid repo):", nil)
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -18,7 +18,7 @@
 | 
				
			|||||||
        {{range .Feeds}}
 | 
					        {{range .Feeds}}
 | 
				
			||||||
            <li>
 | 
					            <li>
 | 
				
			||||||
                <i class="icon fa fa-{{ActionIcon .OpType}}"></i>
 | 
					                <i class="icon fa fa-{{ActionIcon .OpType}}"></i>
 | 
				
			||||||
                <div class="info"><span class="meta">{{TimeSince .Created}}</span><br>{{ActionDesc . | str2html}}</div>
 | 
					                <div class="info"><span class="meta">{{TimeSince .Created}}</span><br>{{ActionDesc . $.SignedUser.AvatarLink  | str2html}}</div>
 | 
				
			||||||
                <span class="clearfix"></span>
 | 
					                <span class="clearfix"></span>
 | 
				
			||||||
            </li>
 | 
					            </li>
 | 
				
			||||||
        {{else}}
 | 
					        {{else}}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -32,11 +32,10 @@
 | 
				
			|||||||
            {{if eq .TabName "activity"}}
 | 
					            {{if eq .TabName "activity"}}
 | 
				
			||||||
            <div class="tab-pane active">
 | 
					            <div class="tab-pane active">
 | 
				
			||||||
                <ul class="list-unstyled activity-list">
 | 
					                <ul class="list-unstyled activity-list">
 | 
				
			||||||
                {{$avatarLink := .Owner.AvatarLink}}
 | 
					 | 
				
			||||||
                {{range .Feeds}}
 | 
					                {{range .Feeds}}
 | 
				
			||||||
                    <li>
 | 
					                    <li>
 | 
				
			||||||
                        <i class="icon fa fa-{{ActionIcon .OpType}}"></i>
 | 
					                        <i class="icon fa fa-{{ActionIcon .OpType}}"></i>
 | 
				
			||||||
                        <div class="info"><span class="meta">{{TimeSince .Created}}</span><br>{{ActionDesc . $avatarLink | str2html}}</div>
 | 
					                        <div class="info"><span class="meta">{{TimeSince .Created}}</span><br>{{ActionDesc . $.Owner.AvatarLink | str2html}}</div>
 | 
				
			||||||
                        <span class="clearfix"></span>
 | 
					                        <span class="clearfix"></span>
 | 
				
			||||||
                    </li>
 | 
					                    </li>
 | 
				
			||||||
                {{else}}
 | 
					                {{else}}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user