fix redirections

This commit is contained in:
Nicolas Stepien 2013-01-24 13:55:41 +01:00
parent 81dd0fe9af
commit 7e2fb6d4ae
2 changed files with 6 additions and 6 deletions

View File

@ -1016,7 +1016,7 @@
Redirect = {
image: function(board, filename) {
switch (board) {
switch (board.ID) {
case 'a':
case 'co':
case 'jp':
@ -1057,7 +1057,7 @@
}
},
post: function(board, postID) {
switch (board) {
switch (board.ID) {
case 'a':
case 'co':
case 'jp':
@ -1082,7 +1082,7 @@
to: function(data) {
var board, url;
board = data.board;
switch (board) {
switch (board.ID) {
case 'a':
case 'co':
case 'jp':

View File

@ -248,7 +248,7 @@ Redirect =
image: (board, filename) ->
# XXX need to differentiate between thumbnail only and full_image for img src=
# Do not use g.BOARD, the image url can originate from a cross-quote.
switch board
switch board.ID
when 'a', 'co', 'jp', 'm', 'q', 'sp', 'tg', 'tv', 'v', 'vg', 'wsg'
"//archive.foolz.us/#{board}/full_image/#{filename}"
when 'u'
@ -266,7 +266,7 @@ Redirect =
when 'c'
"//archive.nyafuu.org/#{board}/full_image/#{filename}"
post: (board, postID) ->
switch board
switch board.ID
when 'a', 'co', 'jp', 'm', 'q', 'sp', 'tg', 'tv', 'v', 'vg', 'wsg', 'dev', 'foolz'
"//archive.foolz.us/_/api/chan/post/?board=#{board}&num=#{postID}"
when 'u', 'kuku'
@ -277,7 +277,7 @@ Redirect =
# https://github.com/eksopl/fuuka/issues/27
to: (data) ->
{board} = data
switch board
switch board.ID
when 'a', 'co', 'jp', 'm', 'q', 'sp', 'tg', 'tv', 'v', 'vg', 'wsg', 'dev', 'foolz'
url = Redirect.path '//archive.foolz.us', 'foolfuuka', data
when 'u', 'kuku'