Skip to content

Commit 22837ed

Browse files
committed
Renamed some example repositories.
1 parent 2c95e01 commit 22837ed

File tree

8 files changed

+48
-48
lines changed

8 files changed

+48
-48
lines changed

_data/language.yml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,26 @@ info_website: "About Aspectran"
22
archive: "Archive"
33
blog_archive: "Blog Archive"
44
blog: "Blog"
5-
comments_headline:
6-
more: "더 보기"
7-
details: "자세히 보기"
5+
comments_headline: "Dialogue & Discussion"
6+
more: "More ›"
7+
details: "Details"
88
more_articles: "More Articles"
99
more_examples: "More Examples"
10-
navigation_title: "메뉴"
11-
new_blog_entries: "새로운 글"
12-
next: "다음"
10+
navigation_title: "Navigation"
11+
new_blog_entries: "New Blog Articles"
12+
next: "Next"
1313
next_posts: "Next Posts"
14-
previous: "이전"
14+
previous: "Previous"
1515
previous_posts: "Previous Posts"
16-
read: "(읽기)"
17-
read_more: "자세히 보기"
18-
if_you_are_not_redirected_automatically: "자동으로 페이지가 이동되지 않을 경우"
19-
click_here: "여기를 클릭하세요."
20-
next_post_in: "현재 카테고리에서 다음 글 : "
21-
previous_post_in: "현재 카테고리에서 이전 글 : "
22-
breadcrumb_start: "Aspectran"
23-
edit: "편집"
24-
this_content_is_open_source: "이 켄텐츠는 오픈소스입니다."
25-
help_improve_it: " 개선될 수 있도록 도와주세요"
16+
read: "Read"
17+
read_more: "Read More ›"
18+
if_you_are_not_redirected_automatically: "If you are not redirected automatically,"
19+
click_here: "click here"
20+
next_post_in: "Next Post in"
21+
previous_post_in: "Previous Post in"
22+
breadcrumb_start: "Start"
23+
edit: "Edit"
24+
this_content_is_open_source: "This content is open source."
25+
help_improve_it: "Help improve it"
2626
enter_search_term: "Enter search term and hit enter"
27-
go_to_top_of_page: "위로 가기"
27+
go_to_top_of_page: "Go to top"

_data/language_en.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
info_website: "About This Site"
1+
info_website: "About Aspectran"
22
archive: "Archive"
33
blog_archive: "Blog Archive"
44
blog: "Blog"
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div class="panel alert-box warning radius">
2-
<p>본 예제는 당분간 정상 작동하지 않을 수 있습니다. 양해 바랍니다.</p>
2+
<p>This example may not function normally for the time being. please understand.</p>
33
</div>
44

55
<div class="row">
@@ -100,7 +100,7 @@ <h2 style="margin:0;">Customer Details</h2>
100100
function getCustomerList() {
101101
$.ajax({
102102
type: "GET",
103-
url: backend + "/ga-rest-service/customers",
103+
url: backend + "/gs-rest-service/customers",
104104
dataType: "json",
105105
success: function(data, textStatus, xhr) {
106106
$(".panel.alert-box").hide();
@@ -124,7 +124,7 @@ <h2 style="margin:0;">Customer Details</h2>
124124
$("input.is-invalid-input").removeClass("is-invalid-input");
125125
$.ajax({
126126
type: "GET",
127-
url: backend + "/ga-rest-service/customers/" + id,
127+
url: backend + "/gs-rest-service/customers/" + id,
128128
dataType: "json",
129129
success: function(data, textStatus, xhr) {
130130
describe(this.type, this.url, xhr);
@@ -154,10 +154,10 @@ <h2 style="margin:0;">Customer Details</h2>
154154
var id = $("input[name=id]").val();
155155
if(id == "") {
156156
type = "POST";
157-
url = backend + "/ga-rest-service/customers";
157+
url = backend + "/gs-rest-service/customers";
158158
} else {
159159
type = "PUT";
160-
url = backend + "/ga-rest-service/customers/" + id;
160+
url = backend + "/gs-rest-service/customers/" + id;
161161
}
162162
$.ajax({
163163
type: type,
@@ -197,7 +197,7 @@ <h2 style="margin:0;">Customer Details</h2>
197197
}
198198
$.ajax({
199199
type: "DELETE",
200-
url: backend + "/ga-rest-service/customers/" + id,
200+
url: backend + "/gs-rest-service/customers/" + id,
201201
dataType: "json",
202202
success: function(data, textStatus, xhr) {
203203
describe(this.type, this.url, xhr);
@@ -217,7 +217,7 @@ <h2 style="margin:0;">Customer Details</h2>
217217
}
218218
$.ajax({
219219
type: "PUT",
220-
url: backend + "/ga-rest-service/customers/" + id + "/approve/" + (approved ? "true" : "false"),
220+
url: backend + "/gs-rest-service/customers/" + id + "/approve/" + (approved ? "true" : "false"),
221221
dataType: "json",
222222
success: function(data, textStatus, xhr) {
223223
describe(this.type, this.url, xhr);
Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22
layout: example
33
format: plate article
44
title: Aspectran Hello World Example
5-
subheadline: Aspectran으로 만든 가장 간단한 Hello World 어플리케이션
6-
teaser: Aspectran을 이용하여 가장 간단한 방법으로 "Hello World!" 문자열을 출력하는 어플리케이션을 만들어 봅니다.
5+
subheadline: Getting Started
6+
teaser: Let's create a Hello World application with Aspectran.
77
outside_heading: true
88
breadcrumb: true
99
image:
10-
thumb: examples/ga-hello-world.png
10+
thumb: examples/gs-hello-world.png
1111
download:
1212
- label: Repository
13-
url: https://github.com/aspectran-guides/ga-hello-world
13+
url: https://github.com/aspectran/gs-hello-world
1414
- label: "Download ZIP"
15-
url: https://github.com/aspectran-guides/ga-hello-world/archive/master.zip
15+
url: https://github.com/aspectran/gs-hello-world/archive/master.zip
1616
asciinema: 109020
1717
---
1818

@@ -29,7 +29,7 @@ asciinema: 109020
2929

3030
"Hello, World!" 문자열을 출력하는 가장 간단한 설정 구성은 다음과 같이 작성될 수 있습니다.
3131

32-
[***ga-hello-world-master/app/config/hello-world-config.xml***](https://github.com/aspectran-guides/ga-hello-world/blob/master/app/config/hello-world-config.xml)
32+
[***gs-hello-world-master/app/config/hello-world-config.xml***](https://github.com/aspectran/gs-hello-world/blob/master/app/config/hello-world-config.xml)
3333

3434
{% highlight xml %}
3535
<?xml version="1.0" encoding="utf-8"?>
@@ -89,14 +89,14 @@ asciinema: 109020
8989
여기서는 가장 간단한 방법이라고 생각되는 콘솔 환경에서 실행해 보겠습니다.
9090

9191
먼저 다음 링크를 통하여 ZIP 파일을 내려받은 후 적당한 경로에 압축을 풀어 주세요.
92-
{% include label-link-box label="Download ZIP" href="https://github.com/aspectran-guides/ga-hello-world/archive/master.zip" %}
92+
{% include label-link-box label="Download ZIP" href="https://github.com/aspectran/gs-hello-world/archive/master.zip" %}
9393

9494
본 Hello World 어플리케이션은 Windows, Unix/Linux 및 Mac OS의 콘솔 환경에서 실행이 가능합니다.
9595
콘솔을 열고 다음 절차를 수행하세요.
9696

97-
1. `ga-hello-world-master/app` 경로로 이동하세요.
97+
1. `gs-hello-world-master/app` 경로로 이동하세요.
9898
2. `run.sh` 파일을 실행하세요. (Windows 환경에서는 `run.bat` 파일을 실행하세요.)
99-
3. 정상적으로 실행이 되면 `ga-hello-world>` 프롬프트가 나옵니다.
99+
3. 정상적으로 실행이 되면 `gs-hello-world>` 프롬프트가 나옵니다.
100100
4. 프롬프트에서 명령어 `hello`를 입력하면 "Hello, World!" 문자열이 출력됩니다.
101101
5. 명령어 `quit`를 입력하면 프로그램을 종료할 수 있습니다.
102102

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
---
22
layout: example
33
format: plate article
4-
title: RESTful 웹서비스 활용 예제
5-
subheadline: Building a RESTful Web Service
6-
teaser: GET, PUT, POST, DELETE 등과 같은 HTTP 지원 메소드를 사용해서 RESTful 웹서비스를 이용하는 예제 페이지입니다.
4+
title: Building a RESTful Web Service
5+
subheadline: Getting Started
6+
teaser: A sample page that uses RESTful web services using HTTP support methods such as GET, PUT, POST, and DELETE.
77
outside_heading: true
88
breadcrumb: true
99
image:
10-
thumb: examples/ga-rest-service.png
10+
thumb: examples/gs-rest-service.png
1111
download:
1212
- label: Front-end
13-
url: https://github.com/aspectran-guides/ga-rest-service/blob/master/src/main/webapp/ga-rest-service.html
13+
url: https://github.com/aspectran/gs-rest-service/blob/master/src/main/webapp/gs-rest-service.html
1414
- label: Back-end
15-
url: https://github.com/aspectran-guides/ga-rest-service
16-
demo: ga-rest-service.html
15+
url: https://github.com/aspectran/gs-rest-service
16+
demo: gs-rest-service.html
1717
---
1818

1919
## root-configuration.xml
2020

2121
{% highlight xml %}
2222
<?xml version="1.0" encoding="utf-8"?>
23-
<!DOCTYPE aspectran PUBLIC "-//ASPECTRAN//DTD Aspectran Configuration 3.0//EN"
24-
"http://aspectran.github.io/dtd/aspectran-3.dtd">
23+
<!DOCTYPE aspectran PUBLIC "-//ASPECTRAN//DTD Aspectran Configuration 4.0//EN"
24+
"http://aspectran.github.io/dtd/aspectran-4.dtd">
2525

2626
<aspectran>
2727

@@ -31,7 +31,7 @@ demo: ga-rest-service.html
3131

3232
<!-- 기본 설정 -->
3333
<settings>
34-
<setting name="transletNamePattern" value="/ga-rest-service/*"/>
34+
<setting name="transletNamePattern" value="/gs-rest-service/*"/>
3535
</settings>
3636

3737
<bean scan="sample.*Dao">
@@ -134,7 +134,7 @@ demo: ga-rest-service.html
134134
</exception>
135135
</translet>
136136

137-
<import file="/WEB-INF/aspectran/config/customers-translets.xml"/>
137+
<append file="/WEB-INF/aspectran/config/customers-translets.xml"/>
138138

139139
</aspectran>
140140
{% endhighlight %}
@@ -143,8 +143,8 @@ demo: ga-rest-service.html
143143

144144
{% highlight xml %}
145145
<?xml version="1.0" encoding="utf-8"?>
146-
<!DOCTYPE aspectran PUBLIC "-//ASPECTRAN//DTD Aspectran Configuration 3.0//EN"
147-
"http://aspectran.github.io/dtd/aspectran-3.dtd">
146+
<!DOCTYPE aspectran PUBLIC "-//ASPECTRAN//DTD Aspectran Configuration 4.0//EN"
147+
"http://aspectran.github.io/dtd/aspectran-4.dtd">
148148

149149
<aspectran>
150150

0 commit comments

Comments
 (0)