View GitHub_Java.gitignore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Compiled class file | |
*.class | |
# Log file | |
*.log | |
# BlueJ files | |
*.ctxt | |
# Mobile Tools for Java (J2ME) |
View example-nuget-quick-ref-nuspec.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<package > | |
<metadata> | |
<id>$id$</id> | |
<version>$version$</version> | |
<title>$title$</title> | |
<authors>$author$</authors> | |
<owners>$author$</owners> | |
<requireLicenseAcceptance>false</requireLicenseAcceptance> |
View example-nuget-quick-ref-nuget-config.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<configuration> | |
<packageSources> | |
<add key="nuget.org" value="https://www.nuget.org/api/v2/" /> | |
<add key="my.company.com" value="https://my.company.com/httpAuth/app/nuget/v1/FeedService.svc/" /> | |
</packageSources> | |
</configuration> |
View example-nuget-quick-ref-packages-config.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<packages> | |
<package id="FluentAssertions" version="5.4.1" targetFramework="net461" /> | |
<package id="Newtonsoft.Json" version="11.0.2" targetFramework="net461" /> | |
<package id="SpecFlow" version="2.4.0" targetFramework="net461" /> | |
<package id="SpecRun.Runner" version="1.8.0" targetFramework="net461" /> | |
<package id="SpecRun.SpecFlow" version="1.8.0" targetFramework="net461" /> | |
<package id="SpecRun.SpecFlow.2-4-0" version="1.8.0" targetFramework="net461" /> | |
<package id="System.ValueTuple" version="4.5.0" targetFramework="net461" /> | |
</packages> |
View django_admin_i18n_custom_admin.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.i18n_flag img { | |
width: 16px; | |
vertical-align: text-top; | |
} |
View django_admin_i18n_base_site.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% extends "admin/base_site.html" %} | |
{% load static %} | |
{% load i18n %} | |
<!-- custom filter module --> | |
{% load i18n_switcher %} | |
{% block extrahead %} | |
<link rel="shortcut icon" href="{% static 'images/favicon.ico' %}" /> |
View django_favicon_settings.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TEMPLATES = [ | |
{ | |
# ... | |
'DIRS': [os.path.join(BASE_DIR, 'templates')], | |
# ... | |
}, | |
] |
View django_favicon_rest_fw_api.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- The path and name for this file should be "templates/rest_framework/api.html". --> | |
<!-- It overrides the original browsable API template and will be picked up by all of its children. --> | |
<!-- This template override has been verified for Django 2.0. --> | |
{% extends "rest_framework/base.html" %} | |
{% load static %} | |
{% block style %} | |
{{ block.super }} |
View django_favicon_admin_base_site.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- The path and name for this file should be "templates/admin/base_site.html". --> | |
<!-- It overrides the original admin template and will be picked up by all of its children. --> | |
<!-- This template override has been verified for Django 1.11 and 2.0. --> | |
{% extends "admin/base_site.html" %} | |
{% load static %} | |
{% block extrahead %} | |
<link rel="shortcut icon" href="{% static 'images/favicon.ico' %}" /> |
View django_example_child.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- This is an example of a Django child template. --> | |
<!-- It extends: https://gist.github.com/d7f20ccd5620f64d761ec546fd9eb37a --> | |
<!-- The parent template sets the favicon. --> | |
{% extends "django_example_parent.html" %} | |
{% block title %}My Page{% endblock %} | |
{% block content %} | |
<div> |
NewerOlder