Skip to content

Commit

Permalink
로그아웃 동의 템플릿에서 기다릴 시간 변경 가능 하도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Joungkyun committed Jan 21, 2018
1 parent 5af8974 commit 764b9c1
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 12 deletions.
3 changes: 2 additions & 1 deletion OAUTH2/GOOGLE.php
Original file line number Diff line number Diff line change
Expand Up @@ -352,12 +352,13 @@ public function reqLogout () {
'/{%LOGOUT-URL%}/',
'/{%WIN-WIDTH%}/',
'/{%WIN-HEIGHT%}/',
'/{%INTERVAL%}/',
);
$dst = array (
'Google',
$redirect,
'https://accounts.google.com/Logout?continue=https://google.com',
600, 250
600, 250, 3000
);
$logoutDoc = preg_replace ($src, $dst, $logoutDoc);
echo $logoutDoc;
Expand Down
3 changes: 2 additions & 1 deletion OAUTH2/KAKAO.php
Original file line number Diff line number Diff line change
Expand Up @@ -371,12 +371,13 @@ public function reqLogout () {
'/{%LOGOUT-URL%}/',
'/{%WIN-WIDTH%}/',
'/{%WIN-HEIGHT%}/',
'/{%INTERVAL%}/',
);
$dst = array (
'KAKAO',
$redirect,
'https://accounts.kakao.com/logout?continue=https://accounts.kakao.com/weblogin/account',
600, 250
600, 250, 1000
);
$logoutDoc = preg_replace ($src, $dst, $logoutDoc);
echo $logoutDoc;
Expand Down
2 changes: 1 addition & 1 deletion OAUTH2/logout-agree.template
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
);

childwin.focus ();
setInterval (returnURL, 3000);
setInterval (returnURL, {%INTERVAL%});
}

function returnURL () {
Expand Down
20 changes: 11 additions & 9 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<active>yes</active>
</lead>
<date>2018-01-21</date>
<time>22:27:46</time>
<time>22:36:47</time>
<version>
<release>1.0.6</release>
<api>1.0.0</api>
Expand All @@ -24,17 +24,18 @@
<license uri="https://www.opensource.org/licenses/bsd-license.php">BSD</license>
<notes>* 네이버 모듈에 실명(realname), 닉네임 정보(nickname) 추가.
* 기존의 name은 nickname 정보에서 실명이 있을 경우 realname을 사용하도록 변경
* 로그아웃 동의 템플릿에서 기다릴 시간 변경 가능 하도록 수정
</notes>
<contents>
<dir name="/">
<file role="php" md5sum="4fd03c17a747a90934a82dc0baf3c88a" name="OAUTH2.php" />
<file role="php" md5sum="da5d99fee79c0ff9f26f3229e1016c7b" name="OAUTH2/DAUM.php" />
<file role="php" md5sum="39e3e391052310e54d6c1a612c7bf500" name="OAUTH2/FACEBOOK.php" />
<file role="php" md5sum="4b8bb4b1dca0b035c3b227cf27fd2789" name="OAUTH2/GITHUB.php" />
<file role="php" md5sum="7d281b94946a5fc126af005b70029700" name="OAUTH2/GOOGLE.php" />
<file role="php" md5sum="56109b4d592ae9bc335e2f7329768185" name="OAUTH2/KAKAO.php" />
<file role="php" md5sum="836982151516eb3f80fbaa305855b17b" name="OAUTH2/NAVER.php" />
<file role="php" md5sum="224ea170ad68506ba9f0805a49be2b0d" name="OAUTH2/logout-agree.template" />
<file role="php" md5sum="3d0e7761f13fd06fc86f5981953b69e7" name="OAUTH2.php" />
<file role="php" md5sum="2b97dbfb668cd1dd98bbb6dd33c95ba3" name="OAUTH2/DAUM.php" />
<file role="php" md5sum="759e675b6d8bed5a5b6b4d20de01a4b9" name="OAUTH2/FACEBOOK.php" />
<file role="php" md5sum="f93341015cc35768d5cdb23de0df74fa" name="OAUTH2/GITHUB.php" />
<file role="php" md5sum="a822175b14c492fe429aecda3e9ce9a1" name="OAUTH2/GOOGLE.php" />
<file role="php" md5sum="bef51d54d15092692683fbd91e51b0f6" name="OAUTH2/KAKAO.php" />
<file role="php" md5sum="48b7a2918bc8ce80626c71e0e6076ecb" name="OAUTH2/NAVER.php" />
<file role="php" md5sum="f4944e1961b5d6ea925b0b38f3e1430f" name="OAUTH2/logout-agree.template" />
<file role="php" md5sum="318f0bc144dd8ad28be690f6e9ff2af3" name="OAUTH2/logout-no-auto.template" />
<file role="php" md5sum="3f38dd2c30e3a33dca52a253908c96a6" name="OAUTH2/logout.template" />
</dir>
Expand Down Expand Up @@ -75,6 +76,7 @@
<notes>
* 네이버 모듈에 실명(realname), 닉네임 정보(nickname) 추가.
* 기존의 name은 nickname 정보에서 실명이 있을 경우 realname을 사용하도록 변경
* 로그아웃 동의 템플릿에서 기다릴 시간 변경 가능 하도록 수정
</notes>
</release>
<release>
Expand Down
2 changes: 2 additions & 0 deletions package.xml.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
<license uri="https://www.opensource.org/licenses/bsd-license.php">BSD</license>
<notes>* 네이버 모듈에 실명(realname), 닉네임 정보(nickname) 추가.
* 기존의 name은 nickname 정보에서 실명이 있을 경우 realname을 사용하도록 변경
* 로그아웃 동의 템플릿에서 기다릴 시간 변경 가능 하도록 수정
</notes>
<contents>
<dir name="/">
Expand Down Expand Up @@ -75,6 +76,7 @@
<notes>
* 네이버 모듈에 실명(realname), 닉네임 정보(nickname) 추가.
* 기존의 name은 nickname 정보에서 실명이 있을 경우 realname을 사용하도록 변경
* 로그아웃 동의 템플릿에서 기다릴 시간 변경 가능 하도록 수정
</notes>
</release>
<release>
Expand Down

0 comments on commit 764b9c1

Please sign in to comment.