forked from gitea/gitea
		
	 a112cf34d3
			
		
	
	
		a112cf34d3
		
			
		
	
	
	
	
		
			
			Hello, it seems that one my previous PR (adding the sparse index to the cargo package content page), did not worked as expected: the gitea-origin-url does not add the AppURL because of the `sparse+` prefix in the url. Currently the rendered page gives the following: ```toml [registry] default = "gitea" [registries.gitea] index = "sparse+/api/packages/ownername/cargo/" # Sparse index # index = "https://git.example.com/ownername/_cargo-index.git" # Git [net] git-fetch-with-cli = true ```
		
			
				
	
	
		
			64 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			Handlebars
		
	
	
	
	
	
| {{if eq .PackageDescriptor.Package.Type "cargo"}}
 | |
| 	<h4 class="ui top attached header">{{ctx.Locale.Tr "packages.installation"}}</h4>
 | |
| 	<div class="ui attached segment">
 | |
| 		<div class="ui form">
 | |
| 			<div class="field">
 | |
| 				<label>{{svg "octicon-code"}} {{ctx.Locale.Tr "packages.cargo.registry" | Safe}}</label>
 | |
| 				<div class="markup"><pre class="code-block"><code>[registry]
 | |
| default = "gitea"
 | |
| 
 | |
| [registries.gitea]
 | |
| index = "sparse+<gitea-origin-url data-url="{{AppSubUrl}}/api/packages/{{.PackageDescriptor.Owner.Name}}/cargo/"></gitea-origin-url>" # Sparse index
 | |
| # index = "<gitea-origin-url data-url="{{AppSubUrl}}/{{.PackageDescriptor.Owner.Name}}/_cargo-index.git"></gitea-origin-url>" # Git
 | |
| 
 | |
| [net]
 | |
| git-fetch-with-cli = true</code></pre></div>
 | |
| 			</div>
 | |
| 			<div class="field">
 | |
| 				<label>{{svg "octicon-terminal"}} {{ctx.Locale.Tr "packages.cargo.install"}}</label>
 | |
| 				<div class="markup"><pre class="code-block"><code>cargo add {{.PackageDescriptor.Package.Name}}@{{.PackageDescriptor.Version.Version}}</code></pre></div>
 | |
| 			</div>
 | |
| 			<div class="field">
 | |
| 				<label>{{ctx.Locale.Tr "packages.registry.documentation" "Cargo" "https://docs.gitea.com/usage/packages/cargo/" | Safe}}</label>
 | |
| 			</div>
 | |
| 		</div>
 | |
| 	</div>
 | |
| 
 | |
| 	{{if or .PackageDescriptor.Metadata.Description .PackageDescriptor.Metadata.Readme}}
 | |
| 		<h4 class="ui top attached header">{{ctx.Locale.Tr "packages.about"}}</h4>
 | |
| 		{{if .PackageDescriptor.Metadata.Description}}<div class="ui attached segment">{{.PackageDescriptor.Metadata.Description}}</div>{{end}}
 | |
| 		{{if .PackageDescriptor.Metadata.Readme}}<div class="ui attached segment">{{RenderMarkdownToHtml $.Context .PackageDescriptor.Metadata.Readme}}</div>{{end}}
 | |
| 	{{end}}
 | |
| 
 | |
| 	{{if .PackageDescriptor.Metadata.Dependencies}}
 | |
| 		<h4 class="ui top attached header">{{ctx.Locale.Tr "packages.dependencies"}}</h4>
 | |
| 		<div class="ui attached segment">
 | |
| 			<table class="ui single line very basic table">
 | |
| 				<thead>
 | |
| 					<tr>
 | |
| 						<th class="ten wide">{{ctx.Locale.Tr "packages.dependency.id"}}</th>
 | |
| 						<th class="six wide">{{ctx.Locale.Tr "packages.dependency.version"}}</th>
 | |
| 					</tr>
 | |
| 				</thead>
 | |
| 				<tbody>
 | |
| 					{{range .PackageDescriptor.Metadata.Dependencies}}
 | |
| 					<tr>
 | |
| 						<td>{{.Name}}</td>
 | |
| 						<td>{{.Req}}</td>
 | |
| 					</tr>
 | |
| 					{{end}}
 | |
| 				</tbody>
 | |
| 			</table>
 | |
| 		</div>
 | |
| 	{{end}}
 | |
| 
 | |
| 	{{if .PackageDescriptor.Metadata.Keywords}}
 | |
| 		<h4 class="ui top attached header">{{ctx.Locale.Tr "packages.keywords"}}</h4>
 | |
| 		<div class="ui attached segment">
 | |
| 			{{range .PackageDescriptor.Metadata.Keywords}}
 | |
| 				{{.}}
 | |
| 			{{end}}
 | |
| 		</div>
 | |
| 	{{end}}
 | |
| {{end}}
 |