mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-31 06:21:11 +00:00 
			
		
		
		
	Since #26254, it started using `{{ctx.Locale.Tr ...}}` Now the `ctx` seems stable enough, so the check could be removed. (cherry picked from commit 567a68a0bf78c8d70f08c8ab948fdbb455225aa9)
		
			
				
	
	
		
			35 lines
		
	
	
	
		
			739 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
	
		
			739 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2023 The Gitea Authors. All rights reserved.
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| package context
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 	"time"
 | |
| )
 | |
| 
 | |
| var _ context.Context = TemplateContext(nil)
 | |
| 
 | |
| func NewTemplateContext(ctx context.Context) TemplateContext {
 | |
| 	return TemplateContext{"_ctx": ctx}
 | |
| }
 | |
| 
 | |
| func (c TemplateContext) parentContext() context.Context {
 | |
| 	return c["_ctx"].(context.Context)
 | |
| }
 | |
| 
 | |
| func (c TemplateContext) Deadline() (deadline time.Time, ok bool) {
 | |
| 	return c.parentContext().Deadline()
 | |
| }
 | |
| 
 | |
| func (c TemplateContext) Done() <-chan struct{} {
 | |
| 	return c.parentContext().Done()
 | |
| }
 | |
| 
 | |
| func (c TemplateContext) Err() error {
 | |
| 	return c.parentContext().Err()
 | |
| }
 | |
| 
 | |
| func (c TemplateContext) Value(key any) any {
 | |
| 	return c.parentContext().Value(key)
 | |
| }
 |