[Notice] Announcing the End of Demo Server [Read me]

replace the word "nforge" with "yobi"
@d0b4de1af8d92d122d993bd0aaef080d3a1499df
--- app/controllers/UserApp.java
+++ app/controllers/UserApp.java
... | ... | @@ -34,7 +34,7 @@ |
34 | 34 |
public static final String SESSION_USERID = "userId"; |
35 | 35 |
public static final String SESSION_LOGINID = "loginId"; |
36 | 36 |
public static final String SESSION_USERNAME = "userName"; |
37 |
- public static final String TOKEN = "nforge.token"; |
|
37 |
+ public static final String TOKEN = "yobi.token"; |
|
38 | 38 |
public static final int MAX_AGE = 30*24*60*60; |
39 | 39 |
public static final String DEFAULT_AVATAR_URL = "/assets/images/default-avatar-128.png"; |
40 | 40 |
public static final int MAX_FETCH_USERS = 1000; |
--- app/utils/BasicAuthAction.java
+++ app/utils/BasicAuthAction.java
... | ... | @@ -15,7 +15,7 @@ |
15 | 15 |
|
16 | 16 |
public class BasicAuthAction extends Action<Object> { |
17 | 17 |
private boolean isAnonymousSupported = true; // configuration is not available yet. |
18 |
- private static final String REALM = "nforge4"; |
|
18 |
+ private static final String REALM = "Yobi"; |
|
19 | 19 |
|
20 | 20 |
public static Result unauthorized(Response response) { |
21 | 21 |
// challenge = "Basic" realm |
--- conf/application.conf.default
+++ conf/application.conf.default
... | ... | @@ -24,20 +24,20 @@ |
24 | 24 |
# |
25 | 25 |
# H2 Configuration |
26 | 26 |
db.default.driver=org.h2.Driver |
27 |
-# db.default.url="jdbc:h2:mem:nforge;MODE=PostgreSQL;DB_CLOSE_DELAY=-1" |
|
28 |
- db.default.url="jdbc:h2:file:nforge;MODE=PostgreSQL" |
|
27 |
+# db.default.url="jdbc:h2:mem:yobi;MODE=PostgreSQL;DB_CLOSE_DELAY=-1" |
|
28 |
+ db.default.url="jdbc:h2:file:yobi;MODE=PostgreSQL" |
|
29 | 29 |
# db.default.user=sa |
30 | 30 |
# db.default.password=sa |
31 | 31 |
db.default.logStatements=true |
32 | 32 |
|
33 | 33 |
# MySQL Configuration |
34 | 34 |
# db.default.driver=com.mysql.jdbc.Driver |
35 |
-# db.default.url="jdbc:mysql://127.0.0.1:3306/nforge?characterEncoding=utf-8" |
|
35 |
+# db.default.url="jdbc:mysql://127.0.0.1:3306/yobi?characterEncoding=utf-8" |
|
36 | 36 |
# db.default.user=yobi |
37 | 37 |
# db.default.password="" |
38 | 38 |
|
39 | 39 |
# Local |
40 |
-# db.default.url="jdbc:postgresql://localhost:5432/nforge" |
|
40 |
+# db.default.url="jdbc:postgresql://localhost:5432/yobi" |
|
41 | 41 |
# db.default.user=postgres |
42 | 42 |
# db.default.password=password |
43 | 43 |
|
... | ... | @@ -110,4 +110,4 @@ |
110 | 110 |
} |
111 | 111 |
} |
112 | 112 |
} |
113 |
-}(No newline at end of file) |
|
113 |
+} |
--- conf/messages
+++ conf/messages
... | ... | @@ -398,7 +398,7 @@ |
398 | 398 |
project.name.duplicate = Already existing project. |
399 | 399 |
project.name.placeholder = input project name |
400 | 400 |
project.name.rule = Naming Rule |
401 |
-project.new.agreement = I read nForge4's user agreement and accept it. |
|
401 |
+project.new.agreement = I read user agreement and accept it. |
|
402 | 402 |
project.new.vcsType.git = Git |
403 | 403 |
project.new.vcsType.subversion = Subversion |
404 | 404 |
project.onmember = <i class="yobicon-friends yobicon-middle"></i><strong>{0}</strong> |
--- docs/technical/name-validation.md
+++ docs/technical/name-validation.md
... | ... | @@ -15,14 +15,14 @@ |
15 | 15 |
|
16 | 16 |
path segment가 될 수 있는 이름(사용자 이름, 프로젝트 이름 등)에 `/` 이나 `?` 같은 예약된 문자를 사용하면 [percent encoding](http://tools.ietf.org/html/rfc3986#section-2.1)이 되는 것을 피할 수 없다. |
17 | 17 |
|
18 |
-예를 들어 프로젝트 이름이 "엔포지" 라면, 프로젝트에 대한 url은 다음과 같이 만들어 질 것이다. |
|
18 |
+예를 들어 프로젝트 이름이 "요비" 라면, 프로젝트에 대한 url은 다음과 같이 만들어 질 것이다. |
|
19 | 19 |
|
20 |
- http://nforge.com/foo/%EC%97%94%ED%8F%AC%EC%A7%80 |
|
20 |
+ http://www.foo.com/bar/%EC%9A%94%EB%B9%84 |
|
21 | 21 |
|
22 | 22 |
이렇게 되면 아래와 같은 단점이 있다. |
23 | 23 |
|
24 |
-* nforge에서 디코딩을 빼먹으면 버그를 유발하게 됨 |
|
25 |
-* nforge를 이용해 뭔가를 만들어보려는 개발자 입장에서도 percent encoding이 되는 상황을 고려해야 하는 것은 불편함 |
|
24 |
+* Yobi에서 디코딩을 빼먹으면 버그를 유발하게 됨 |
|
25 |
+* Yobi를 이용해 뭔가를 만들어보려는 개발자 입장에서도 percent encoding이 되는 상황을 고려해야 하는 것은 불편함 |
|
26 | 26 |
* 보기도 좋지 않음 |
27 | 27 |
|
28 | 28 |
예외 |
--- public/javascripts/common/yobi.Common.js
+++ public/javascripts/common/yobi.Common.js
... | ... | @@ -103,16 +103,6 @@ |
103 | 103 |
oModule = oModule[sDepth]; |
104 | 104 |
} |
105 | 105 |
|
106 |
- /* |
|
107 |
- if(typeof oModule != "function"){ |
|
108 |
- console.log("[Yobi] " + sName + " is not loaded or invalid module"); |
|
109 |
- return false; |
|
110 |
- } |
|
111 |
- |
|
112 |
- htModuleInstance[sName] = new oModule(htOptions); |
|
113 |
- return htModuleInstance[sName]; |
|
114 |
- */ |
|
115 |
- |
|
116 | 106 |
// temporary code for compatibility with nForge |
117 | 107 |
var oInstance; |
118 | 108 |
if(typeof oModule == "undefined"){ |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?