brands: add ISSUE_URL
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
This commit is contained in:
		
							parent
							
								
									4d64828237
								
							
						
					
					
						commit
						3381471933
					
				
							
								
								
									
										2
									
								
								Makefile
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								Makefile
									
									
									
									
									
								
							| @ -1,6 +1,7 @@ | |||||||
| # -*- coding: utf-8; mode: makefile-gmake -*-
 | # -*- coding: utf-8; mode: makefile-gmake -*-
 | ||||||
| 
 | 
 | ||||||
| export GIT_URL=https://github.com/asciimoo/searx | export GIT_URL=https://github.com/asciimoo/searx | ||||||
|  | export ISSUE_URL=$(GIT_URL)/issues | ||||||
| export SEARX_URL=https://searx.me | export SEARX_URL=https://searx.me | ||||||
| export DOCS_URL=https://asciimoo.github.io/searx | export DOCS_URL=https://asciimoo.github.io/searx | ||||||
| 
 | 
 | ||||||
| @ -86,6 +87,7 @@ engines-languages:  pyenvinstall | |||||||
| searx.brand: | searx.brand: | ||||||
| 	$(Q)echo "build searx/brand.py" | 	$(Q)echo "build searx/brand.py" | ||||||
| 	$(Q)echo "GIT_URL = '$(GIT_URL)'"  > searx/brand.py | 	$(Q)echo "GIT_URL = '$(GIT_URL)'"  > searx/brand.py | ||||||
|  | 	$(Q)echo "ISSUE_URL = '$(ISSUE_URL)'" >> searx/brand.py | ||||||
| 	$(Q)echo "SEARX_URL = '$(SEARX_URL)'" >> searx/brand.py | 	$(Q)echo "SEARX_URL = '$(SEARX_URL)'" >> searx/brand.py | ||||||
| 	$(Q)echo "DOCS_URL = '$(DOCS_URL)'" >> searx/brand.py | 	$(Q)echo "DOCS_URL = '$(DOCS_URL)'" >> searx/brand.py | ||||||
| 	$(Q)echo "PUBLIC_INSTANCES = 'https://searx.space'" >> searx/brand.py | 	$(Q)echo "PUBLIC_INSTANCES = 'https://searx.space'" >> searx/brand.py | ||||||
|  | |||||||
| @ -1,4 +1,5 @@ | |||||||
| GIT_URL = 'https://github.com/asciimoo/searx' | GIT_URL = 'https://github.com/asciimoo/searx' | ||||||
|  | ISSUE_URL = 'https://github.com/asciimoo/searx/issues' | ||||||
| SEARX_URL = 'https://searx.me' | SEARX_URL = 'https://searx.me' | ||||||
| DOCS_URL = 'https://asciimoo.github.io/searx' | DOCS_URL = 'https://asciimoo.github.io/searx' | ||||||
| PUBLIC_INSTANCES = 'https://searx.space' | PUBLIC_INSTANCES = 'https://searx.space' | ||||||
|  | |||||||
| @ -87,7 +87,7 @@ | |||||||
|                 <small> |                 <small> | ||||||
|                     {{ _('Powered by') }} <a href="{{ brand.DOCS_URL }}">searx</a> - {{ searx_version }} - {{ _('a privacy-respecting, hackable metasearch engine') }}<br/> |                     {{ _('Powered by') }} <a href="{{ brand.DOCS_URL }}">searx</a> - {{ searx_version }} - {{ _('a privacy-respecting, hackable metasearch engine') }}<br/> | ||||||
|                     <a href="{{ brand.GIT_URL }}">{{ _('Source code') }}</a> | |                     <a href="{{ brand.GIT_URL }}">{{ _('Source code') }}</a> | | ||||||
|                     <a href="{{ brand.GIT_URL }}/issues">{{ _('Issue tracker') }}</a> | |                     <a href="{{ brand.ISSUE_URL }}">{{ _('Issue tracker') }}</a> | | ||||||
|                     <a href="{{ brand.PUBLIC_INSTANCES }}">{{ _('Public instances') }}</a> |                     <a href="{{ brand.PUBLIC_INSTANCES }}">{{ _('Public instances') }}</a> | ||||||
|                 </small> |                 </small> | ||||||
|             </p> |             </p> | ||||||
|  | |||||||
| @ -52,7 +52,7 @@ | |||||||
|     <p> |     <p> | ||||||
|     {{ _('Powered by') }} <a href="{{ url_for('about') }}">searx</a> - {{ searx_version }} - {{ _('a privacy-respecting, hackable metasearch engine') }}<br/> |     {{ _('Powered by') }} <a href="{{ url_for('about') }}">searx</a> - {{ searx_version }} - {{ _('a privacy-respecting, hackable metasearch engine') }}<br/> | ||||||
|         <a href="{{ brand.GIT_URL }}">{{ _('Source code') }}</a> | |         <a href="{{ brand.GIT_URL }}">{{ _('Source code') }}</a> | | ||||||
|         <a href="{{ brand.GIT_URL }}/issues">{{ _('Issue tracker') }}</a> | |         <a href="{{ brand.ISSUE_URL }}">{{ _('Issue tracker') }}</a> | | ||||||
|         <a href="{{ brand.PUBLIC_INSTANCES }}">{{ _('Public instances') }}</a> |         <a href="{{ brand.PUBLIC_INSTANCES }}">{{ _('Public instances') }}</a> | ||||||
|     </p> |     </p> | ||||||
|   </footer> |   </footer> | ||||||
|  | |||||||
							
								
								
									
										6
									
								
								setup.py
									
									
									
									
									
								
							
							
						
						
									
										6
									
								
								setup.py
									
									
									
									
									
								
							| @ -26,6 +26,11 @@ setup( | |||||||
|     version=VERSION_STRING, |     version=VERSION_STRING, | ||||||
|     description="A privacy-respecting, hackable metasearch engine", |     description="A privacy-respecting, hackable metasearch engine", | ||||||
|     long_description=long_description, |     long_description=long_description, | ||||||
|  |     url=brand.DOCS_URL, | ||||||
|  |     project_urls={ | ||||||
|  |         "Code": brand.GIT_URL, | ||||||
|  |         "Issue tracker": brand.ISSUE_URL | ||||||
|  |     }, | ||||||
|     classifiers=[ |     classifiers=[ | ||||||
|         "Development Status :: 4 - Beta", |         "Development Status :: 4 - Beta", | ||||||
|         "Programming Language :: Python", |         "Programming Language :: Python", | ||||||
| @ -37,7 +42,6 @@ setup( | |||||||
|     keywords='metasearch searchengine search web http', |     keywords='metasearch searchengine search web http', | ||||||
|     author='Adam Tauber', |     author='Adam Tauber', | ||||||
|     author_email='asciimoo@gmail.com', |     author_email='asciimoo@gmail.com', | ||||||
|     url=brand.GIT_URL, |  | ||||||
|     license='GNU Affero General Public License', |     license='GNU Affero General Public License', | ||||||
|     packages=find_packages(exclude=["tests*"]), |     packages=find_packages(exclude=["tests*"]), | ||||||
|     zip_safe=False, |     zip_safe=False, | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 Markus Heiser
						Markus Heiser