Skip to content

Commit e3f97e0

Browse files
committed
update documents & happy new year
1 parent b0f2aa7 commit e3f97e0

File tree

9 files changed

+73
-20
lines changed

9 files changed

+73
-20
lines changed

GitCandy/App_GlobalResources/SR.designer.cs

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

GitCandy/App_GlobalResources/SR.fr.resx

+3-3
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@
214214
<value>{0} utilisateur (s) trouvé(s)</value>
215215
</data>
216216
<data name="Home_AboutDescription" xml:space="preserve">
217-
<value>Git Candy© est une plate-forme [Git](http://git-scm.com/documentation) de contrôle de version distribué, basé sur une application ASP.NET MVC, qui prend en charge les dépôts publics et privés. Vous pouvez créer et collaborer votre dépôt avec votre équipe n'importe quand n'importe où sans aucune limite.
217+
<value>GitCandy© est une plate-forme [Git](http://git-scm.com/documentation) de contrôle de version distribué, basé sur une application ASP.NET MVC, qui prend en charge les dépôts publics et privés. Vous pouvez créer et collaborer votre dépôt avec votre équipe n'importe quand n'importe où sans aucune limite.
218218

219219
Visitez une démo sur [http://gitcandy.com]()
220220

@@ -524,7 +524,7 @@ Get source and fork me on [https://github.com/Aimeast/GitCandy]()
524524
<value>Ajouter</value>
525525
</data>
526526
<data name="Shared_AppTitle" xml:space="preserve">
527-
<value>Git Candy</value>
527+
<value>GitCandy</value>
528528
</data>
529529
<data name="Shared_Back" xml:space="preserve">
530530
<value>Retour</value>
@@ -587,7 +587,7 @@ Get source and fork me on [https://github.com/Aimeast/GitCandy]()
587587
<value>Équipes</value>
588588
</data>
589589
<data name="Shared_TitleFormat" xml:space="preserve">
590-
<value>{0} - Git Candy</value>
590+
<value>{0} - GitCandy</value>
591591
</data>
592592
<data name="Shared_Users" xml:space="preserve">
593593
<value>Utilisateurs</value>

GitCandy/App_GlobalResources/SR.resx

+3-3
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@
220220
<value>SSH</value>
221221
</data>
222222
<data name="Home_AboutDescription" xml:space="preserve">
223-
<value>Git Candy&amp;copy; is a [Git](http://git-scm.com/documentation) distributed version control platform based on ASP.NET MVC application, which supports public and private repositories. You can create and collaborate your repository with your team anytime anywhere without any limit.
223+
<value>GitCandy&amp;copy; is a [Git](http://git-scm.com/documentation) distributed version control platform based on ASP.NET MVC application, which supports public and private repositories. You can create and collaborate your repository with your team anytime anywhere without any limit.
224224

225225
Visit a demo on [http://gitcandy.com]()
226226

@@ -563,7 +563,7 @@ Get source and fork me on [https://github.com/Aimeast/GitCandy]()
563563
<value>Add</value>
564564
</data>
565565
<data name="Shared_AppTitle" xml:space="preserve">
566-
<value>Git Candy</value>
566+
<value>GitCandy</value>
567567
</data>
568568
<data name="Shared_Back" xml:space="preserve">
569569
<value>Back</value>
@@ -629,7 +629,7 @@ Get source and fork me on [https://github.com/Aimeast/GitCandy]()
629629
<value>Teams</value>
630630
</data>
631631
<data name="Shared_TitleFormat" xml:space="preserve">
632-
<value>{0} - Git Candy</value>
632+
<value>{0} - GitCandy</value>
633633
</data>
634634
<data name="Shared_Users" xml:space="preserve">
635635
<value>Users</value>

GitCandy/App_GlobalResources/SR.zh-Hans.resx

+3-3
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@
220220
<value>SSH</value>
221221
</data>
222222
<data name="Home_AboutDescription" xml:space="preserve">
223-
<value>Git Candy&amp;copy; 是一个基于ASP.NET MVC的[Git](http://git-scm.com/documentation)分布式版本控制平台,支持公共和私有代码库。可以不受限制的创建代码库,与你的团队一块协作。
223+
<value>GitCandy&amp;copy; 是一个基于ASP.NET MVC的[Git](http://git-scm.com/documentation)分布式版本控制平台,支持公共和私有代码库。可以不受限制的创建代码库,与你的团队一块协作。
224224

225225
演示地址:[http://gitcandy.com]()
226226

@@ -563,7 +563,7 @@
563563
<value>添加</value>
564564
</data>
565565
<data name="Shared_AppTitle" xml:space="preserve">
566-
<value>Git Candy</value>
566+
<value>GitCandy</value>
567567
</data>
568568
<data name="Shared_Back" xml:space="preserve">
569569
<value>返回</value>
@@ -629,7 +629,7 @@
629629
<value>团队</value>
630630
</data>
631631
<data name="Shared_TitleFormat" xml:space="preserve">
632-
<value>{0} - Git Candy</value>
632+
<value>{0} - GitCandy</value>
633633
</data>
634634
<data name="Shared_Users" xml:space="preserve">
635635
<value>用户</value>

GitCandy/Filters/SmartGitAttribute.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ protected override void HandleUnauthorizedRequest(AuthorizationContext filterCon
8484
if (controller == null || controller.Token == null)
8585
{
8686
filterContext.HttpContext.Response.Clear();
87-
filterContext.HttpContext.Response.AddHeader("WWW-Authenticate", "Basic realm=\"Git Candy\"");
87+
filterContext.HttpContext.Response.AddHeader("WWW-Authenticate", "Basic realm=\"GitCandy\"");
8888
filterContext.Result = new HttpUnauthorizedResult();
8989
}
9090
else

GitCandy/Properties/AssemblyInfo.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
[assembly: AssemblyDescription("")]
1010
[assembly: AssemblyCompany("")]
1111
[assembly: AssemblyProduct("GitCandy")]
12-
[assembly: AssemblyCopyright("Copyright © 2013-2014")]
12+
[assembly: AssemblyCopyright("Copyright © 2013-2016")]
1313

1414
#if DEBUG
1515
[assembly: AssemblyConfiguration("Debug")]

LICENSE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2013-2014 Aimeast
3+
Copyright (c) 2013-2016 Aimeast
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
## Git Candy
2-
Git Candy© is a [Git](http://git-scm.com/documentation) distributed version control platform based on ASP.NET MVC application, which supports public and private repositories. You can create and collaborate your repository with your team anytime anywhere without any limit.
1+
## GitCandy
2+
GitCandy© is a [Git](http://git-scm.com/documentation) distributed version control platform based on ASP.NET MVC application, which supports public and private repositories. You can create and collaborate your repository with your team anytime anywhere without any limit.
33

44
Visit a demo on [http://gitcandy.com](http://gitcandy.com).
55

@@ -10,7 +10,7 @@ Get source and fork me on [https://github.com/Aimeast/GitCandy](http://github.com
1010
* [IIS 7.0](http://www.iis.net/learn)
1111
* [.NET Framework 4.5](http://www.microsoft.com/en-us/download/details.aspx?id=30653)
1212
* [ASP.NET MVC 5](http://www.asp.net/mvc/tutorials/mvc-5)
13-
* [Git Bash](http://git-scm.com/downloads)
13+
* [Git](http://git-for-windows.github.io/)
1414
* [Sqlite](http://system.data.sqlite.org/index.html/doc/trunk/www/downloads.wiki) or [Sql Server](http://www.microsoft.com/en-us/sqlserver/get-sql-server/try-it.aspx)
1515

1616
---
@@ -22,9 +22,13 @@ Get source and fork me on [https://github.com/Aimeast/GitCandy](http://github.com
2222
* Update connection string in `Web.config` file
2323
* Prepare two folders for storage `Repositories` and `Cache`
2424
* Navigate to your site and login with default username `admin`, password `gitcandy`
25-
* Go to `Settings` page for set folders path of `Repositories`, `Cache` and `git.exe`
25+
* Go to `Settings` page for set folders path of `Repositories`, `Cache` and `git-core`
2626
* You are recommended to set `<compilation debug="false" />` in `Web.config`
2727

28+
##### *note*
29+
* The `Repositories` or `Cache` path looks like `x:\Repos` or `x:\Cache`
30+
* The `git-core` path looks like `x:\PortableGit\libexec\git-core` or `x:\PortableGit\mingw64\libexec\git-core`
31+
2832
---
2933
### Thanks for (alphabet)
3034
* [ASP.NET MVC](http://aspnetwebstack.codeplex.com/) @ [Apache License 2.0](http://aspnetwebstack.codeplex.com/license)

README.zh-cn.md

+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
## GitCandy
2+
GitCandy© 是一个基于 ASP.NET MVC 的 [Git](http://git-scm.com/documentation) 版本控制服务端,支持公有和私有代码库,可不受限制的创建代码代码库,随时随地的与团队进行协作。
3+
4+
演示网站:[http://gitcandy.com](http://gitcandy.com)
5+
6+
源代码: [https://github.com/Aimeast/GitCandy](https://github.com/Aimeast/GitCandy)
7+
8+
---
9+
### 系统要求
10+
* [IIS 7.0](http://www.iis.net/learn)
11+
* [.NET Framework 4.5](http://www.microsoft.com/en-us/download/details.aspx?id=30653)
12+
* [ASP.NET MVC 5](http://www.asp.net/mvc/tutorials/mvc-5)
13+
* [Git](http://git-for-windows.github.io/)
14+
* [Sqlite](http://system.data.sqlite.org/index.html/doc/trunk/www/downloads.wiki)[Sql Server](http://www.microsoft.com/en-us/sqlserver/get-sql-server/try-it.aspx)
15+
16+
---
17+
### 安装
18+
* 下载最新[发布](https://github.com/Aimeast/GitCandy/releases)的版本或自己编译最新的[dev](https://github.com/Aimeast/GitCandy/dev)分支源码
19+
* 在IIS创建一个站点,并把二进制文件和资源文件复制到站点目录
20+
* 如果用了 Visual Studio 的发布功能,还要复制`GitCandy\bin\[NativeBinaries & x86 & x64]`文件夹到站点目录
21+
*`/Sql/Create.[Sqlite | MsSql].sql`脚本创建一个数据库。如果创建的是Sqlite数据库,还需把数据库文件复制到`App_Data`文件夹
22+
* 更新`Web.config`文件的数据库连接串
23+
* 准备两个文件夹分别用来存储`代码库``缓存`
24+
* 打开新建的站点,默认登录用户名是`admin`,密码是`gitcandy`
25+
* 转到`设置`页面,分别设置`代码库``缓存``git-core`的路径
26+
* 推荐在`Web.config`设置`<compilation debug="false" />`
27+
28+
##### **
29+
* `代码库``缓存`路径示例:`x:\Repos``x:\Cache`
30+
* `git-core`路径示例:`x:\PortableGit\libexec\git-core``x:\PortableGit\mingw64\libexec\git-core`
31+
32+
---
33+
### 鸣谢 (按字母序)
34+
* [ASP.NET MVC](http://aspnetwebstack.codeplex.com/) @ [Apache License 2.0](http://aspnetwebstack.codeplex.com/license)
35+
* [Bootstrap](https://github.com/twbs/bootstrap) @ [MIT License](https://github.com/twbs/bootstrap/blob/master/LICENSE)
36+
* [Bootstrap-switch](https://github.com/nostalgiaz/bootstrap-switch) @ [Apache License 2.0](https://github.com/nostalgiaz/bootstrap-switch/blob/master/LICENSE)
37+
* [EntityFramework](http://entityframework.codeplex.com/) @ [Apache License 2.0](http://entityframework.codeplex.com/license)
38+
* [Highlight.js](https://github.com/isagalaev/highlight.js) @ [New BSD License](https://github.com/isagalaev/highlight.js/blob/master/LICENSE)
39+
* [jQuery](https://github.com/jquery/jquery) @ [MIT License](https://github.com/jquery/jquery/blob/master/MIT-LICENSE.txt)
40+
* [LibGit2Sharp](https://github.com/libgit2/libgit2sharp) @ [MIT License](https://github.com/libgit2/libgit2sharp/blob/master/LICENSE.md)
41+
* [marked](https://github.com/chjj/marked) @ [MIT License](https://github.com/chjj/marked/blob/master/LICENSE)
42+
* [Microsoft.Composition (MEF2)](http://mef.codeplex.com/) @ [Microsoft Public License](http://mef.codeplex.com/license)
43+
* [Newtonsoft.Json](http://json.codeplex.com/) @ [MIT License](http://json.codeplex.com/license)
44+
* [SharpZipLib](https://github.com/icsharpcode/SharpZipLib) @ [GPL License v2](https://github.com/icsharpcode/SharpZipLib/blob/master/doc/COPYING.txt)
45+
* [ZeroClipboard](https://github.com/zeroclipboard/zeroclipboard) @ [MIT License](https://github.com/zeroclipboard/zeroclipboard/blob/master/LICENSE)
46+
47+
---
48+
### 协议
49+
MIT 协议

0 commit comments

Comments
 (0)