Add project page

This commit is contained in:
Rob Winch
2013-09-07 16:43:45 -07:00
committed by Phillip Webb
parent 171918e41a
commit 5b95a4ef97
5 changed files with 98 additions and 6 deletions

View File

@@ -10,21 +10,20 @@ redcarpet:
### The following properties will change on a project-by-project basis
# Context path in the remote website (usually /<project>), will be prepended to absolute URLs for static resources
baseurl: /gh-pages
baseurl: /spring-security-kerberos
# Name of the project for display in places like page titles
name: Spring Framework
name: Spring Security Kerberos
# ID of the project in the metadata API at spring.io (if this is not a
# valid project ID the javascript widgets in the home page will not work)
project: spring-framework
project: spring-security-kerberos
# Project github URL
github_repo_url: http://github.com/spring-projects/spring-framework
github_repo_url: http://github.com/spring-projects/spring-security-kerberos
# Project forum URL
forum: http://forum.spring.io/forum/spring-projects/container
forum: http://forum.spring.io/forum/spring-projects/security
### The following properties are constant for most projects

3
_includes/build.gradle Normal file
View File

@@ -0,0 +1,3 @@
dependencies {
compile '{@= groupId @}:spring-security-kerberos-core:{@= version @}'
}

19
_includes/pom.xml Normal file
View File

@@ -0,0 +1,19 @@
<dependencies>
<dependency>
<groupId>{@= groupId @}</groupId>
<artifactId>spring-security-kerberos-core</artifactId>
<version>{@= version @}</version>
</dependency>
</dependencies>
{@ if (repository) { @}
<repositories>
<repository>
<id>{@= repository.id @}</id>
<name>{@= repository.name @}</name>
<url>{@= repository.url @}</url>
<snapshots>
<enabled>{@= repository.snapshotsEnabled @}</enabled>
</snapshots>
</repository>
</repositories>{@ } @}

BIN
img/project-icon-large.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

71
index.html Normal file
View File

@@ -0,0 +1,71 @@
---
# The name of your project
title: Spring Security Kerberos
badges:
# Specify your project's twitter handle, if any. Delete if none.
twitter: SpringSecurity
# Customize your project's badges. Delete any entries that do not apply.
custom:
- name: Source (GitHub)
url: https://github.com/spring-projects/spring-security-kerberos
icon: github
- name: Issues (JIRA)
url: http://jira.springsource.org/browse/SES
icon: tracking
- name: CI (Bamboo)
url: https://build.springsource.org/browse/SES
icon: ci
- name: Forum
url: http://forum.stage.springsource.org/forum/spring-projects/security
icon: forum
- name: StackOverflow
url: http://stackoverflow.com/questions/tagged/spring-security
icon: stackoverflow
---
<!DOCTYPE HTML>
<html lang="en-US">
<!-- Specify the parent of this project (or delete if none) to influence the rendering of the breadcrumb -->
{% capture parent_link %}
[Spring Security]({{site.projects_site_url}}/spring-security)
{% endcapture %}
{% capture billboard_description %}
Spring Security Extension for use with Kerberos.
{% endcapture %}
{% capture main_content %}
With the Spring Security Kerberos Extension, your users are authenticated against your web application just by opening the URL. There is no need to enter a username/password and no need to install additional software.
<span id="quick-start"></span>
## Quick Start
{% include download_widget.md %}
{% endcapture %}
{% capture related_resources %}
### Resources
* [Quick Start](http://blog.springsource.com/2009/09/28/spring-security-kerberos/)
* [Sample](https://github.com/SpringSource/spring-security-kerberos/tree/master/spring-security-kerberos-sample)
* [Spring Security]({{site.projects_site_url}}/spring-security)
{% endcapture %}
{% include project_page.html %}
</html>