Skip to content

Commit

Permalink
appengine id 를 tube-english 로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
zelon committed Nov 20, 2015
1 parent 5ecb53a commit cf4bbf9
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 16 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# youtube-english
# tube-english
유투브로 영어공부하기

# 개발환경
Expand All @@ -8,4 +8,4 @@ app-engine
youtube api

# 개발 사이트
http://youtube-english-1118.appspot.com/
http://tube-english.appspot.com/
2 changes: 1 addition & 1 deletion app.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
application: youtube-english-1118
application: tube-english
version: 1
runtime: go
api_version: go1
Expand Down
2 changes: 1 addition & 1 deletion app/db.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package youtube_english
package tube_english

import (
"encoding/json"
Expand Down
2 changes: 1 addition & 1 deletion app/db_video.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package youtube_english
package tube_english

import (
"encoding/json"
Expand Down
2 changes: 1 addition & 1 deletion app/hello.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package youtube_english
package tube_english

import (
"fmt"
Expand Down
2 changes: 1 addition & 1 deletion chrome-ext/background.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
chrome.browserAction.onClicked.addListener(function(tab) {
var current_url = tab.url;
var target_url = "http://youtube-english-1118.appspot.com/view.htm?q=" + current_url;
var target_url = "http://tube-english.appspot.com/view.htm?q=" + current_url;
chrome.tabs.update(tab.id, { url: target_url });
});
6 changes: 3 additions & 3 deletions chrome-ext/manifest.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"manifest_version": 2,

"name": "Youtube English",
"description": "Open Youtube English by current url",
"name": "Tube English",
"description": "Open Tube English by current url",
"version": "1.0",

"browser_action": {
"default_icon": "icon.png",
"default_title": "Send to Youtube English"
"default_title": "Send to Tube English"
},

"background": {
Expand Down
2 changes: 1 addition & 1 deletion go_deploy.bat
Original file line number Diff line number Diff line change
@@ -1 +1 @@
goapp deploy -application youtube-english-1118 app.yaml
goapp deploy -application tube-english app.yaml
6 changes: 3 additions & 3 deletions static/html/index.htm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->

<title>Youtube English</title>
<title>Tube English</title>

<!-- Latest compiled and minified CSS -->
<!--
Expand Down Expand Up @@ -38,7 +38,7 @@
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">YouTube English</a>
<a class="navbar-brand" href="/">Tube English</a>
</div>

<!-- Collect the nav links, forms, and other content for toggling -->
Expand All @@ -56,7 +56,7 @@
</nav>
<div class="jumbotron">
<div class="container">
<h2>YouTube English 는 YouTube 영상을 통해서 영어 공부를 좀 더 쉽게 할
<h2>Tube English 는 YouTube 영상을 통해서 영어 공부를 좀 더 쉽게 할
수 있도록 도와주는 여러 기능을 제공합니다</h2>
<ul>
<li>구간 반복</li>
Expand Down
4 changes: 2 additions & 2 deletions static/html/view.htm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->

<title>Youtube English</title>
<title>Tube English</title>

<!-- Latest compiled and minified CSS -->
<!--
Expand Down Expand Up @@ -38,7 +38,7 @@
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">YouTube English</a>
<a class="navbar-brand" href="/">Tube English</a>
</div>

<!-- Collect the nav links, forms, and other content for toggling -->
Expand Down

0 comments on commit cf4bbf9

Please sign in to comment.