From 95dfe14528663923ca2a88ec928f1d8d9df2402b Mon Sep 17 00:00:00 2001 From: bai Date: Fri, 29 Mar 2019 02:14:43 +0000 Subject: Init --- cgi/templates/anarkia.html | 329 +++++++++++++++++++++++++++++++ cgi/templates/banned.html | 34 ++++ cgi/templates/base_bottom.html | 3 + cgi/templates/base_top.html | 55 ++++++ cgi/templates/board.0.html | 230 +++++++++++++++++++++ cgi/templates/board.html | 264 +++++++++++++++++++++++++ cgi/templates/board.jp.html | 271 +++++++++++++++++++++++++ cgi/templates/catalog.html | 30 +++ cgi/templates/error.html | 7 + cgi/templates/exception.html | 36 ++++ cgi/templates/home.rss | 24 +++ cgi/templates/htaccess | 24 +++ cgi/templates/kako.html | 60 ++++++ cgi/templates/manage/addboard.html | 21 ++ cgi/templates/manage/bans.html | 92 +++++++++ cgi/templates/manage/boardoptions.html | 195 ++++++++++++++++++ cgi/templates/manage/changepassword.html | 24 +++ cgi/templates/manage/delete.html | 23 +++ cgi/templates/manage/filters.html | 119 +++++++++++ cgi/templates/manage/ipdelete.html | 24 +++ cgi/templates/manage/ipshow.html | 73 +++++++ cgi/templates/manage/lockboard.html | 20 ++ cgi/templates/manage/login.html | 21 ++ cgi/templates/manage/logs.html | 17 ++ cgi/templates/manage/manage.html | 22 +++ cgi/templates/manage/menu.html | 30 +++ cgi/templates/manage/message.html | 8 + cgi/templates/manage/mod.html | 96 +++++++++ cgi/templates/manage/move.html | 60 ++++++ cgi/templates/manage/quotes.html | 12 ++ cgi/templates/manage/rebuild.html | 20 ++ cgi/templates/manage/recent_images.html | 24 +++ cgi/templates/manage/recyclebin.html | 72 +++++++ cgi/templates/manage/reports.html | 58 ++++++ cgi/templates/manage/search.html | 27 +++ cgi/templates/manage/staff.html | 63 ++++++ cgi/templates/mobile/base_top.html | 14 ++ cgi/templates/mobile/board.html | 55 ++++++ cgi/templates/mobile/error.html | 6 + cgi/templates/mobile/latest.html | 14 ++ cgi/templates/mobile/newest.html | 14 ++ cgi/templates/mobile/threadlist.html | 43 ++++ cgi/templates/mobile/txt_newthread.html | 35 ++++ cgi/templates/mobile/txt_thread.html | 74 +++++++ cgi/templates/mobile/txt_threadlist.html | 26 +++ cgi/templates/mod.html | 86 ++++++++ cgi/templates/navbar.html | 16 ++ cgi/templates/paint.html | 79 ++++++++ cgi/templates/redirect.html | 12 ++ cgi/templates/report.html | 29 +++ cgi/templates/revision.html | 1 + cgi/templates/stats.html | 163 +++++++++++++++ cgi/templates/txt_archive.html | 104 ++++++++++ cgi/templates/txt_base_top.html | 44 +++++ cgi/templates/txt_board.en.html | 137 +++++++++++++ cgi/templates/txt_board.html | 137 +++++++++++++ cgi/templates/txt_error.html | 50 +++++ cgi/templates/txt_thread.en.html | 105 ++++++++++ cgi/templates/txt_thread.html | 101 ++++++++++ cgi/templates/txt_threadlist.html | 67 +++++++ 60 files changed, 3900 insertions(+) create mode 100644 cgi/templates/anarkia.html create mode 100644 cgi/templates/banned.html create mode 100644 cgi/templates/base_bottom.html create mode 100644 cgi/templates/base_top.html create mode 100644 cgi/templates/board.0.html create mode 100644 cgi/templates/board.html create mode 100644 cgi/templates/board.jp.html create mode 100644 cgi/templates/catalog.html create mode 100644 cgi/templates/error.html create mode 100644 cgi/templates/exception.html create mode 100644 cgi/templates/home.rss create mode 100644 cgi/templates/htaccess create mode 100644 cgi/templates/kako.html create mode 100644 cgi/templates/manage/addboard.html create mode 100644 cgi/templates/manage/bans.html create mode 100644 cgi/templates/manage/boardoptions.html create mode 100644 cgi/templates/manage/changepassword.html create mode 100644 cgi/templates/manage/delete.html create mode 100644 cgi/templates/manage/filters.html create mode 100644 cgi/templates/manage/ipdelete.html create mode 100644 cgi/templates/manage/ipshow.html create mode 100644 cgi/templates/manage/lockboard.html create mode 100644 cgi/templates/manage/login.html create mode 100644 cgi/templates/manage/logs.html create mode 100644 cgi/templates/manage/manage.html create mode 100644 cgi/templates/manage/menu.html create mode 100644 cgi/templates/manage/message.html create mode 100644 cgi/templates/manage/mod.html create mode 100644 cgi/templates/manage/move.html create mode 100644 cgi/templates/manage/quotes.html create mode 100644 cgi/templates/manage/rebuild.html create mode 100644 cgi/templates/manage/recent_images.html create mode 100644 cgi/templates/manage/recyclebin.html create mode 100644 cgi/templates/manage/reports.html create mode 100644 cgi/templates/manage/search.html create mode 100644 cgi/templates/manage/staff.html create mode 100644 cgi/templates/mobile/base_top.html create mode 100644 cgi/templates/mobile/board.html create mode 100644 cgi/templates/mobile/error.html create mode 100644 cgi/templates/mobile/latest.html create mode 100644 cgi/templates/mobile/newest.html create mode 100644 cgi/templates/mobile/threadlist.html create mode 100644 cgi/templates/mobile/txt_newthread.html create mode 100644 cgi/templates/mobile/txt_thread.html create mode 100644 cgi/templates/mobile/txt_threadlist.html create mode 100644 cgi/templates/mod.html create mode 100644 cgi/templates/navbar.html create mode 100644 cgi/templates/paint.html create mode 100644 cgi/templates/redirect.html create mode 100644 cgi/templates/report.html create mode 100644 cgi/templates/revision.html create mode 100644 cgi/templates/stats.html create mode 100644 cgi/templates/txt_archive.html create mode 100644 cgi/templates/txt_base_top.html create mode 100644 cgi/templates/txt_board.en.html create mode 100644 cgi/templates/txt_board.html create mode 100644 cgi/templates/txt_error.html create mode 100644 cgi/templates/txt_thread.en.html create mode 100644 cgi/templates/txt_thread.html create mode 100644 cgi/templates/txt_threadlist.html (limited to 'cgi/templates') diff --git a/cgi/templates/anarkia.html b/cgi/templates/anarkia.html new file mode 100644 index 0000000..3ded9da --- /dev/null +++ b/cgi/templates/anarkia.html @@ -0,0 +1,329 @@ + + + +
+
ⒶⒶⒶⒶⒶⒶⒶⒶⒶⒶⒶⒶⒶⒶ
+
+ +
+

Anarkía @ B.a.I.

+

Anarkía es una sección especial sin moderación y con acceso libre a su panel de administración.

+
+
+
Opciones generales
+
Panel de moderación
+
Editar CSS
+
+
Emojis
+
Bans
+
Cambiar tipo de board
+
+
+ +
+ + + + + + +
Logs
FechaAcción
${log['timestamp_formatted']}${log['action']}
+
+
Volver a la sección + +
Opciones de Board
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Nombre de sección
Descripción + +
+
Caja extra
Nombre por defecto
Título por defecto
Mensaje por defecto
ID + +
Desactivar nombre
Desactivar asunto
Permitir crear hilos sin imagen
Permitir subida
Tipos de archivo + +
+ +
Tamaño máximo (KB)
Dimensión de miniatura (px)
Hilos en página frontal
Respuestas a mostrar
+
+ +
+
+Volver al menú + +
Denuncias
+ + + + + + + + + + + + + + +
PostFechaRazón
#{r['postid']}${r['timestamp_formatted']}#{r['reason']}
+ + No hay denuncias.
+ +
+
Lista de hilos
+ + + + + + + + + + + + + + + + + + + + + + + +
#IDAsuntoFechaMensajePostsAcción
#{i}#{thread['id']}#{thread['subject'][:30]}#{thread['timestamp_formatted'][:21]}${thread['message'][:250]}#{thread['length']}[#{"Abrir" if thread['locked'] == "1" else "Cerrar"}]
+
Volver al menú + +
Hilo: ${posts[0]['subject']} (#{posts[0]['length']})
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
#IDFechaNombreMensajeUsuario
#{i} + #{p['id']} + + [Eliminar] + + [#{"Abrir" if p['locked'] == "1" else "Cerrar"}] + + ${p['timestamp_formatted']}${p['name']}${p['message']}#{p['ip'][:4]} [Ban]
#{i}#{p['id']} [Recuperar]Eliminado.
+
Volver al panel de moderación + +
Colocar ban
+
+ + + + + + + + + +
Ban para usuario#{post['ip'][-4:]}
Mensaje
Ciego
Expira en (segundos)
+ Nunca + 1hr + 12hr + 1d + 3d + 1w + 1m + 1yr +
+
+
+Volver al panel de moderación + +
Lista de bans
+ + + + + + + + + + + + + + + + + + + + + + + + + +
IDUsuarioPuestoExpiraCiegoRazónAcción
#{ban['id']}#{ban['ip'][-4:]}${ban['added']}${ban['until']}${"Sí" if ban['blind'] == "1" else "No"}${ban['reason']}[Eliminar ban]
No hay bans.
+
+Volver al menú + +
Editar CSS
+

Editando: ${basename}

+

Dominios permitidos: https://bienvenidoainternet.org https://i.imgur.com

+
+
+ +
+
+Volver al menú + +
Cambiar tipo de sección
+

ATENCIÓN

+

Estás a punto de cambiar la estructura de esta sección a #{type_do}.

+

Esta sección es actualmente un #{type_now} y si prosigues transformarás su estructura a un #{type_do}.

+

Nótese que este cambio se puede hacer sólo una vez cada 10 minutos.

+
+

¿Seguro que deseas convertir esta sección a #{type_do}? +

+ + +
+

+
+
+Volver al menú + +
Emojis
+ + + + + +
NombreImg
${emoji['from']}#{emoji['to']}
+
+
+ + + + + + + +
Nombre
Archivo
+(Sólo letras y/o números. Máximo: 500x500px, 500 KB.) +
+
+Volver al menú + +
${msg}

Volver al menú
+ +
+
+
ⒶⒶⒶⒶⒶⒶⒶⒶⒶⒶⒶⒶⒶⒶ
+ \ No newline at end of file diff --git a/cgi/templates/banned.html b/cgi/templates/banned.html new file mode 100644 index 0000000..23b6636 --- /dev/null +++ b/cgi/templates/banned.html @@ -0,0 +1,34 @@ + + + +Acceso prohibido@B.a.I. + + + + +

Mensaje de Bienvenido a Internet BBS/IB

+

Se te ha prohibido el acceso :-(

+

¡Tu IP (o rango) ha sido bloqueado!

+ +

La razón dejada fue: #{reason} y tu ban fue puesto el #{added} para las siguientes secciones: #{boards_str}

+ +

No sabemos qué es lo que pudo causar tu ban, ¿qué hiciste?

+

Tu ban fue puesto el #{added} para las siguientes secciones: #{boards_str}

+ + +

Pero no te preocupes, se te concederá nuevamente el acceso en la siguiente fecha y hora: #{expire}.

+ +

Si tu expulsión fue puesta incorrectamente no dudes en contactarnos dando tu IP, razón y explicación de los hechos.

+

¡Gracias por usar Bienvenido a Internet BBS/IB!

+
+

En muchos casos a pesar de que hayas sido expulsado del sitio se concede el acceso a las secciones Meta y Anarkía. Bajo cualquier consulta o reclamo contáctanos.

+
+
Bienvenido a Internet 2010-2018
+ + \ No newline at end of file diff --git a/cgi/templates/base_bottom.html b/cgi/templates/base_bottom.html new file mode 100644 index 0000000..102f8f2 --- /dev/null +++ b/cgi/templates/base_bottom.html @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/cgi/templates/base_top.html b/cgi/templates/base_top.html new file mode 100644 index 0000000..5389617 --- /dev/null +++ b/cgi/templates/base_top.html @@ -0,0 +1,55 @@ + + + + + #{matome} - #{board_long} + + #{board_long} + + #{title} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
diff --git a/cgi/templates/board.0.html b/cgi/templates/board.0.html new file mode 100644 index 0000000..1557cbc --- /dev/null +++ b/cgi/templates/board.0.html @@ -0,0 +1,230 @@ + + + [Volver al IB] + + + [Catálogo] + [Bajar] +
Modo Respuesta
+ + +
+ +
+ + + + + Usar: + x +
Recuperar dibujo guardado +
+ + +
+ + No hay dibujo + + + +
+ +
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
mediumo + + + + + + + + +
Asunto + + + + + + +
molekuloj
amiko + + + + + + + + +
timo (uzata por post forigo)
+
    + #{postarea_desc} +
  • ni ne vivas timi, ni vivas konekti.
  • + +
  • elekti la veneno: #{', '.join(supported_filetypes).upper()}. ĝis: #{maxsize}KB. paŝo: #{maxdimensions}x#{maxdimensions}px
  • + +
+
+
+
+
+ +
#{postarea_extra}
+
+ +
+ + + + + + +
+ + + +
+ + +
Nombre de archivo:#{post['file']}-(#{post['file_size']} B, #{post['image_width']}x#{post['image_height']}) + +
Nombre de archivo:#{post['file']}-(#{post['file_size']} B) + + + [Ocultar hilo] + +
+ + + #{post['id']} + + #{post['id']} + + #{post['id']} + + + + + + No.#{post['id']} eliminado por usuario. + + No.#{post['id']} eliminado por miembro del staff. + +
+ + #{post['name']} #{post['tripcode']} + + #{post['name']} + + #{post['timestamp_formatted']} + No.#{random.randint(1,999999)} + rep + + +
+ + #{post['file']}-(#{post['file_size']} B, #{post['image_width']}x#{post['image_height']}) + + #{post['file']}-(#{post['file_size']} B) + +
+ + + #{post['id']} + + #{post['id']} + + #{post['id']} + + + + + + [Responder] + + [Ocultar] + + +
+ +
+ +
+ + #{post['message']} +
+ +
(Post muy largo... Presiona aquí para verlo completo.)
+ + + + + +
Un post omitido. Haz clic en Responder para ver.
+ 1: ?> +
#{thread['omitted']} posts omitidos. Haz clic en Responder para ver.
+ + + +
+ + +
+ +
+ + +
+ +
Eliminar post
+ Clave
+ +
+ +
#{pagenav}
+ + \ No newline at end of file diff --git a/cgi/templates/board.html b/cgi/templates/board.html new file mode 100644 index 0000000..e91e187 --- /dev/null +++ b/cgi/templates/board.html @@ -0,0 +1,264 @@ + + + [Volver al IB] + + + [Catálogo] + [Bajar] +
Modo Respuesta
+ + +
+ +
+ + + + + Usar: + x +
Recuperar dibujo guardado +
+ + +
+ + No hay dibujo + + + +
+ +
+ + + + + +
Trampa:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Nombre
E-mail + + + + + + + + +
Asunto + + + + + + +
Mensaje
Archivo + + + + + + + + +
Clave (para eliminar el post)
+ +
+
+
+
+ +
#{postarea_extra}
+
+ +
+ + + + + + +
+ + + +
+ + +
Nombre de archivo:#{post['file']}-(#{post['file_size']} B, #{post['image_width']}x#{post['image_height']}) + +
Nombre de archivo:#{post['file']}-(#{post['file_size']} B) + + + [Ocultar hilo] + +
+ + + #{post['id']} + + #{post['id']} + + #{post['id']} + + + + + + No.#{post['id']} eliminado por usuario. + + No.#{post['id']} eliminado por miembro del staff. + +
+ + + #{post['name']} #{post['tripcode']} + + #{post['name']} + + + + #{post['name']} #{post['tripcode']} + + #{post['name']} + + + #{post['timestamp_formatted']} + + No.#{post['id']} + + No.#{post['id']} + + rep + + Expira el ${post['expires_formatted']} + + + +
+ + #{post['file']}-(#{post['file_size']} B, #{post['image_width']}x#{post['image_height']}) + + #{post['file']}-(#{post['file_size']} B) + +
+ + + #{post['id']} + + #{post['id']} + + #{post['id']} + + + + + + [Responder] + + [Ocultar] + + +
+ +
+ +
+ + #{post['message']} +
+ +
(Post muy largo... Presiona aquí para verlo completo.)
+ + +
Este hilo es viejo y desaparecerá pronto.
+ + + + + +
Un post omitido. Haz clic en Responder para ver.
+ 1: ?> +
#{thread['omitted']} posts omitidos. Haz clic en Responder para ver.
+ + + +
+ + +
+ +
+ + +
+ +
Eliminar post
+ Clave
+ +
+ +
#{pagenav}
+ + \ No newline at end of file diff --git a/cgi/templates/board.jp.html b/cgi/templates/board.jp.html new file mode 100644 index 0000000..8045ab1 --- /dev/null +++ b/cgi/templates/board.jp.html @@ -0,0 +1,271 @@ + + + [掲示板に戻る] + + + [カタログ] + [ボトムへ行く] +
レス送信モード
+ + +
+ +
+ + + + + + x +
アップロード途中の画像 +
+ + +
+ + 画像が見当たりません + + + +
+ +
+ + + + + +
Trampa:
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
おなまえ
E-mail + + + + + + + + +
題  名 + + + + + + +
コメント
添付File + + + + + + + + +
削除キー (削除用)
+ +
+
+
+
+ +
#{postarea_extra}
+
+ +
+ + + + + + +
+ + + +
+ + +
画像ファイル名:#{post['file']}-(#{post['file_size']} B, #{post['image_width']}x#{post['image_height']}) + +
画像ファイル名:#{post['file']}-(#{post['file_size']} B) + + + アニメGIF + + サムネ表示 + + + [隠す] + +
+ + + #{post['id']} + + #{post['id']} + + #{post['id']} + + + + + + No.#{post['id']}はユーザーに削除されました. + + No.#{post['id']}は管理人に削除されました. + +
+ + + Name #{post['name']} #{post['tripcode']} + + Name #{post['name']} + + + + Name #{post['name']} #{post['tripcode']} + + Name #{post['name']} + + + #{post['timestamp_formatted']} + + No.#{post['id']} + + No.#{post['id']} + + rep + + ${post['expires_formatted']}頃消えます + + + +
+ + #{post['file']}-(#{post['file_size']} B, #{post['image_width']}x#{post['image_height']}) + + #{post['file']}-(#{post['file_size']} B) + + + アニメGIF + + サムネ表示 + +
+ + + #{post['id']} + + #{post['id']} + + #{post['id']} + + + + + + [返信] + + [隠す] + + +
+ +
+ +
+ + #{post['message']} +
+ +
(投稿は長すぎ... 全部読むにはこっちらへ)
+ + +
このスレは古いので、もうすぐ消えます。
+ + + + + 0: ?> + レス${thread['omitted']}件省略。全て読むには返信ボタンを押してください。 + + + +
+ + +
+ +
+ + +
+ +
+ 【記事削除】
+ 削除キー +
+ +
+ +
#{pagenav}
+ + \ No newline at end of file diff --git a/cgi/templates/catalog.html b/cgi/templates/catalog.html new file mode 100644 index 0000000..4faa2d2 --- /dev/null +++ b/cgi/templates/catalog.html @@ -0,0 +1,30 @@ + +
+ [Volver al IB] + [Orden: + #{"Normal" if i_sort == "" else "Normal"} + #{"Nuevo" if i_sort == "1" else "Nuevo"} + #{"Viejo" if i_sort == "2" else "Viejo"} + #{"Más" if i_sort == "3" else "Más"} + #{"Menos" if i_sort == "4" else "Menos"}] + [Tamaño: Pequeño] + [Texto: Ocultar] + [Buscar: +
+
Modo Catálogo
+
+ +
+ + #{thread['id']}
+ +
Respuestas: ${thread['length']}
+ +

${thread['subject']}
${thread['message']}

+ +

${thread['subject']}
${thread['message']}

+ + +
+
+ \ No newline at end of file diff --git a/cgi/templates/error.html b/cgi/templates/error.html new file mode 100644 index 0000000..47ef529 --- /dev/null +++ b/cgi/templates/error.html @@ -0,0 +1,7 @@ + +


+

#{error} +

Volver
+


+ + \ No newline at end of file diff --git a/cgi/templates/exception.html b/cgi/templates/exception.html new file mode 100644 index 0000000..e8453eb --- /dev/null +++ b/cgi/templates/exception.html @@ -0,0 +1,36 @@ + + + +Error@Bienvenido a Internet + + + + + + +

ERROR : Ha ocurrido un error inesperado.

+

Esto no es normal y te pedimos que reportes el problema en +Discusión de B.a.I. o a través de +nuestro e-mail, +presentando los siguientes datos y ojalá indicando qué hacer para reproducirlo:

+

Versión: weabot +
+Tipo: ${exception}
+Detalle: ${error}
+Traceback:
+

+ + ${line[0]} ${line[1]} ${line[2]} ${line[3]}
+ +

+

Te recordamos que el software está en desarrollo y estamos siempre haciendo lo posible para arreglar los problemas lo antes posible.
Te pedimos las disculpas por cualquier inconveniente.

+
+

weabot dijo "Perdón."
Bienvenido a Internet BBS/IB

+ +

ERROR : #{error}

+

Por favor presiona Atrás y soluciona el problema.

+
+

La página principal está aquí.
Si esto es inusual intenta contactarnos.

+ + \ No newline at end of file diff --git a/cgi/templates/home.rss b/cgi/templates/home.rss new file mode 100644 index 0000000..dc69377 --- /dev/null +++ b/cgi/templates/home.rss @@ -0,0 +1,24 @@ + + + + Bienvenido a Internet BBS/IB + https://bienvenidoainternet.org/ + El BBS/IB más activo de la esfera hispana. + es + burocracia@bienvenidoainternet.org (Staff ★) + + https://bienvenidoainternet.org/rss_logo.png + Bienvenido a Internet BBS/IB + https://bienvenidoainternet.org/ + 144 + 144 + + + + ${post['board_name']}: #{post['content']} + ${post['timestamp_formatted']} + https://bienvenidoainternet.org#{post['url']} + + + + \ No newline at end of file diff --git a/cgi/templates/htaccess b/cgi/templates/htaccess new file mode 100644 index 0000000..469fec0 --- /dev/null +++ b/cgi/templates/htaccess @@ -0,0 +1,24 @@ +DirectoryIndex index.html + + +AuthName "BAI" +AuthType Basic +AuthUserFile "/home/z411/.htpasswds/public_html/wiki/passwd" + +require valid-user + + + + +ExpiresByType text/css "access plus 0 seconds" + + +ErrorDocument 403 https://bienvenidoainternet.org/cgi/banned/#{dir} + + +order allow,deny + +deny from #{ip} + +allow from all + diff --git a/cgi/templates/kako.html b/cgi/templates/kako.html new file mode 100644 index 0000000..49d95df --- /dev/null +++ b/cgi/templates/kako.html @@ -0,0 +1,60 @@ + + + + Archivo de #{board_name}@Bienvenido a Internet BBS + + + + + + + +

Índice de /#{board}/kako/

+
+  
+    
+      
+      
+      
+      
+    
+    
+      
+    
+    
+      
+      
+      
+      
+    
+    
+    
+      
+      
+       1000: ?>
+      
+      
+      
+      
+      
+    
+    
+  
NombreTamañoDescripción

..-
${thread['timestamp']}.json1KR${thread['length']}R${thread['subject']}
+
+
+
weabot/0.8.4 (CentOS) Servidor ubicado en bienvenidoainternet.org Puerto 443
+ + \ No newline at end of file diff --git a/cgi/templates/manage/addboard.html b/cgi/templates/manage/addboard.html new file mode 100644 index 0000000..71b3c31 --- /dev/null +++ b/cgi/templates/manage/addboard.html @@ -0,0 +1,21 @@ + + +
+
Nuevo board
+
+ + + + + + + + + + + +
Directorio
Nombre
+
+
+
+ \ No newline at end of file diff --git a/cgi/templates/manage/bans.html b/cgi/templates/manage/bans.html new file mode 100644 index 0000000..81e0f71 --- /dev/null +++ b/cgi/templates/manage/bans.html @@ -0,0 +1,92 @@ + + + +
+
Bans
+ +
+ + + + + + +
Dirección IP
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
Dirección IPMáscara de redBoardsAgregadoExpiraCiegoPuesto porRazónNotaAcción
${ban['ip']}${ban['netmask']}${ban['boards']}${ban['added']}${ban['until']}${ban['blind']}${ban['staff']}${ban['reason']}${ban['note']} + [Ver posts] + [Editar] + [Eliminar] +
+ +
+ + + + + + + + + + + + + + + +
IP
Máscara de red
Board(s) +
+ +
+ + 0: ?> + + +
Mensaje
Nota para staff
Ciego
Expira en (segundos) +
+
+ Nunca + 1h + 6h + 12h + 1d + 3d + 1w + 30d + 1y +
+
+
+ +
+
+ \ No newline at end of file diff --git a/cgi/templates/manage/boardoptions.html b/cgi/templates/manage/boardoptions.html new file mode 100644 index 0000000..436b036 --- /dev/null +++ b/cgi/templates/manage/boardoptions.html @@ -0,0 +1,195 @@ + + + +
+
Opciones de Board
+ + + + + + +
SecciónAccion
/#{board['dir']}/#{board['name']}[Configurar]
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
ID
Directorio
Nombre
Nombre largo
Sub-nombre
Tipo + +
Descripción / Reglas + + +
Caja extra
Forzar CSS ("" = default)
Nombre por defecto
Título por defecto
Mensaje por defecto
ID + +
Slip + +
Código de país + +
Desactivar nombre
Desactivar asunto
Papelera de reciclaje
Cerrado
Secreto
Permitir spoilers
Permitir oekaki
Permitir crear hilos sin imagen
Permitir subida
Tipos de archivo + +
+ +
Tamaño máximo (KB)
Dimensión de miniatura (px)
Hilos en página frontal
Respuestas a mostrar
Máximo de líneas (frontal)
Edad máxima de un hilo (días; 0 = desactivar)
Inactividad máxima de un hilo (días; 0 = desactivar)
Archivar hilos
Espera para crear nuevo hilo (segundos)
Espera entre respuestas (segundos)
+
+
+ +
+ +
+
+ \ No newline at end of file diff --git a/cgi/templates/manage/changepassword.html b/cgi/templates/manage/changepassword.html new file mode 100644 index 0000000..977c772 --- /dev/null +++ b/cgi/templates/manage/changepassword.html @@ -0,0 +1,24 @@ + + +
+
Cambiar contraseña
+
+ + + + + + + + + + + + + + +
Clave actual
Nueva clave
Confirmar nueva clave
+
+
+
+ diff --git a/cgi/templates/manage/delete.html b/cgi/templates/manage/delete.html new file mode 100644 index 0000000..78c1c5e --- /dev/null +++ b/cgi/templates/manage/delete.html @@ -0,0 +1,23 @@ + + +
+
Eliminar Post
+
+ + + +

+ Post #${postid} de /${curboard}/
+
+
+
+ Nota: Por favor evitar eliminar permanentemente el post al menos que sea estrictamente necesario. +
Al eliminar permanentemente un post no queda en papelera y se rompen + las referencias que se pueden haber hecho hacia él, especialmente en los BBS.
+

+ +

+
+
+
+ diff --git a/cgi/templates/manage/filters.html b/cgi/templates/manage/filters.html new file mode 100644 index 0000000..188a741 --- /dev/null +++ b/cgi/templates/manage/filters.html @@ -0,0 +1,119 @@ + + + +
+
Filtros
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
IDBoardsTipoAcciónMensajeModificadoPorAcción
#{filter['id']}${filter['boards']}#{filter['type_formatted']}#{filter['action_formatted']}${filter['reason']}${filter['added']}${filter['staff']}[Editar]
+ [Eliminar]
+
+ +
+ +
+ + + + + + + + + + + + + + + + +
Tipo de filtro
Regex:
Nombre: (regex)
Tripcode: (incluir separador)
+
+
+
Aplicar a
+
+ +
+ +
+ +
+
+

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Acción
Expira en: (segundos)
Preset: + Nunca + 1h + 6h + 12h + 1d + 3d + 1w + 30d + 1y +
Tardar: (segundos)
+
+ + + +
Mensaje a mostrar
+
+ +
+ +
+
+ diff --git a/cgi/templates/manage/ipdelete.html b/cgi/templates/manage/ipdelete.html new file mode 100644 index 0000000..71c043a --- /dev/null +++ b/cgi/templates/manage/ipdelete.html @@ -0,0 +1,24 @@ + + +
+
Eliminar por IP
+
+ + + + + + + + + + +
Board(s) +
+ +
+ +
Dirección IP
+
+

+ diff --git a/cgi/templates/manage/ipshow.html b/cgi/templates/manage/ipshow.html new file mode 100644 index 0000000..6937a0e --- /dev/null +++ b/cgi/templates/manage/ipshow.html @@ -0,0 +1,73 @@ + + +
+
Mostrar por IP
+ +
+ + + +
Dirección IP
+
+ + + +
+ Hostname: #{host if host else "Desconocido"} [#{country if country else "??"}]#{" (Nodo Tor)" if tor else ""}
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
SecciónPadreIDFechaNombreAsuntoMensajeArchivoAcción
#{post['dir']}#{post['parentid']}#{post['id']}#{post['timestamp_formatted']}#{post['name']} #{post['tripcode']}#{post['name']}#{post['subject']}#{post['message']} + + Eliminar + + Rec + [1] + + Rec + [2] + +
+
+ + Error: No hay posts

+ + [Volver al panel] + +
+
+ \ No newline at end of file diff --git a/cgi/templates/manage/lockboard.html b/cgi/templates/manage/lockboard.html new file mode 100644 index 0000000..cebf061 --- /dev/null +++ b/cgi/templates/manage/lockboard.html @@ -0,0 +1,20 @@ + + +
+
Cerrar o abrir board
+ + + + + + + + + + + + +
SecciónAcción
/#{board['dir']}/#{board['name']}[Cerrar][Abrir]
+
+
+ diff --git a/cgi/templates/manage/login.html b/cgi/templates/manage/login.html new file mode 100644 index 0000000..7ce47a1 --- /dev/null +++ b/cgi/templates/manage/login.html @@ -0,0 +1,21 @@ + +
+ #{page} +
+ + + + + + + + + + + + +
Usuario
Contraseña
+
+
+
+ \ No newline at end of file diff --git a/cgi/templates/manage/logs.html b/cgi/templates/manage/logs.html new file mode 100644 index 0000000..e11780a --- /dev/null +++ b/cgi/templates/manage/logs.html @@ -0,0 +1,17 @@ + + +
+
Registro
+ + + + + + + + + +
FechaStaffAcción
${log['timestamp_formatted']}${log['staff']}${log['action']}
+
+
+ \ No newline at end of file diff --git a/cgi/templates/manage/manage.html b/cgi/templates/manage/manage.html new file mode 100644 index 0000000..06b1737 --- /dev/null +++ b/cgi/templates/manage/manage.html @@ -0,0 +1,22 @@ + + +
+
BANDEJA DE ENTRADA +
+ Denuncias: + 0: ?> + #{reports} + + 0 +
+
+ NOTICIAS DEL STAFF +
+
+ +
#{post['title'] if post['title'] else "Sin asunto"}
#{post['id']} : ${post['name']} : ${post['timestamp_formatted']}
+
#{post['message']}
+ +
+
+ \ No newline at end of file diff --git a/cgi/templates/manage/menu.html b/cgi/templates/manage/menu.html new file mode 100644 index 0000000..d6ffd5e --- /dev/null +++ b/cgi/templates/manage/menu.html @@ -0,0 +1,30 @@ + + + + +
¡Bienvenido, #{username}! ¡Eres +Accionista +Accionista +Developer +Moderador + de #{site_title}!
+
+ + + + + + + + + + + + + + + +
Principal:- Inicio - Cambiar contraseña - News Channel - Correo - Cerrar sesión -
Posts:- Modbrowse - Ver por IP - Papelera de reciclaje - Imágenes recientes -
Moderación:- Denuncias - Eliminar por IP - Lista de bans - Mover hilo - Filtros - Frases -
Administración:- Reconstruir - Noticias - Twitter - Opciones de board - Agregar board - Cerrar board -
Staff:- Miembros - Registro de acciones -
+
+ \ No newline at end of file diff --git a/cgi/templates/manage/message.html b/cgi/templates/manage/message.html new file mode 100644 index 0000000..6c53ecc --- /dev/null +++ b/cgi/templates/manage/message.html @@ -0,0 +1,8 @@ + + +
+
#{title if title else "Mensaje"}
+

#{message}

+
+
+ \ No newline at end of file diff --git a/cgi/templates/manage/mod.html b/cgi/templates/manage/mod.html new file mode 100644 index 0000000..ddc688f --- /dev/null +++ b/cgi/templates/manage/mod.html @@ -0,0 +1,96 @@ + + +
+
Modbrowse
+ + + + + + +
SecciónAcción
/#{board['dir']}/#{board['name']}[Navegar]
+ + + + + + + + + + + + + + + + + + + + + + + + +
#IDAsuntoFechaMensajeResp.Acciones
#{i}#{thread['id']}#{thread['subject']}#{thread['timestamp_formatted'][:21]}${thread['message'][:200]}#{thread['length']} + L#{"-" if thread['locked'] == "1" else "+"} + PS#{"-" if thread['locked'] == "2" else "+"} + M + D + & + B +
+
+[Volver] + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Hilo: ${posts[0]['subject']} (#{posts[0]['length']})
#{"Abrir hilo" if posts[0]['locked'] == "1" else "Cerrar hilo"} / +#{"Quitar permasage" if posts[0]['locked'] == "2" else "Permasage"} / +Mover hilo
#IDFechaNombreMensajeArchivoIPAcción
#{i}#{p['id']}${p['timestamp_formatted']}${p['name']}${p['message']} + + #{p['ip']} + + Eliminar + & + Ban + + Recuperar + [1] + + Recuperar + [2] + +
+
+[Volver al panel] + +
+
+ \ No newline at end of file diff --git a/cgi/templates/manage/move.html b/cgi/templates/manage/move.html new file mode 100644 index 0000000..8fcc1e9 --- /dev/null +++ b/cgi/templates/manage/move.html @@ -0,0 +1,60 @@ + + +
+
Mover hilo
+ +
+ + + + + + + + + + + + + + + + + + + + + +
Board actual + + + + + +
ID de hilo + + + + + +
Mover a + +
Insertar mensaje + +
+
+
+
+ \ No newline at end of file diff --git a/cgi/templates/manage/quotes.html b/cgi/templates/manage/quotes.html new file mode 100644 index 0000000..d30a403 --- /dev/null +++ b/cgi/templates/manage/quotes.html @@ -0,0 +1,12 @@ + + +
+
Quotes
+

Ingresa un mensaje a mostrar por cada linea:

+
+
+ +
+
+
+ diff --git a/cgi/templates/manage/rebuild.html b/cgi/templates/manage/rebuild.html new file mode 100644 index 0000000..3afc057 --- /dev/null +++ b/cgi/templates/manage/rebuild.html @@ -0,0 +1,20 @@ + + +
+
Reconstruir board
+ + + + + + + + + + + + +
SecciónAcción
Home[Reconstruir]
Noticias[Reconstruir]
Índices de archivos[Reconstruir]
.htaccess[Reconstruir]
/#{board['dir']}/#{board['name']}[Reconstruir frontales][Reconstruir todo]
+
+
+ diff --git a/cgi/templates/manage/recent_images.html b/cgi/templates/manage/recent_images.html new file mode 100644 index 0000000..39f919c --- /dev/null +++ b/cgi/templates/manage/recent_images.html @@ -0,0 +1,24 @@ + + + +
+
Imágenes recientes
+
+ + + +
Número a mostrar
+
+
+
+ + + + + + + +
+
+
+ \ No newline at end of file diff --git a/cgi/templates/manage/recyclebin.html b/cgi/templates/manage/recyclebin.html new file mode 100644 index 0000000..b413c9c --- /dev/null +++ b/cgi/templates/manage/recyclebin.html @@ -0,0 +1,72 @@ + + + +
+
Papelera de Reciclaje
+
+ + + + + + + + + +
Eliminado por + + + +
Board + +
+
+
+ +${message} +
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
IDTimestampBoardTipoIPMensaje
X
R
#{post['id']}${post['timestamp_formatted']}${post['dir']}${post['IS_DELETED']}${post['ip']}#{post['message']}
+
+
+
#{navigator}
+ + No hay posts. + +
+
+ diff --git a/cgi/templates/manage/reports.html b/cgi/templates/manage/reports.html new file mode 100644 index 0000000..f47ec38 --- /dev/null +++ b/cgi/templates/manage/reports.html @@ -0,0 +1,58 @@ + + + +
+
Reportes
+ +${message} + +
+ + + + + +
Board + +
+
+ +
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + +
FechaPostIP PostRazónIP Denuncia
X ${report['timestamp_formatted']}${report['link']}${report['ip']}${report['reason']}${report['reporterip']}
+
+
+
+ diff --git a/cgi/templates/manage/search.html b/cgi/templates/manage/search.html new file mode 100644 index 0000000..6c2ec6f --- /dev/null +++ b/cgi/templates/manage/search.html @@ -0,0 +1,27 @@ + + +
+
Registro de búsqueda
+ + + + + + + + + + + + + + + + + + + +
IDFechaBúsquedaEnResultadosPor
${log['id']}${log['timestamp_formatted']}${log['keyword']}${"[A] " if log['archive'] else ""}${"Global" if log["ita"] == "" else log["ita"]}${log['res']}${log['ip']}
+
+
+ \ No newline at end of file diff --git a/cgi/templates/manage/staff.html b/cgi/templates/manage/staff.html new file mode 100644 index 0000000..787a843 --- /dev/null +++ b/cgi/templates/manage/staff.html @@ -0,0 +1,63 @@ + + + +
+
Staff
+ + + + + + + + + + + + + + + + + + + + + +
IDNombreNivelÚltima actividadAcciones
${member['id']}${member['username']}${member['rights']}${member['lastactive']} + [Editar] + [Eliminar] +
+ +
+ + + + + + + + + + + + + + + + + + +
Nombre
Contraseña
Nivel + +
+
+ +
+
+ \ No newline at end of file diff --git a/cgi/templates/mobile/base_top.html b/cgi/templates/mobile/base_top.html new file mode 100644 index 0000000..6a6c5bd --- /dev/null +++ b/cgi/templates/mobile/base_top.html @@ -0,0 +1,14 @@ + + + + + #{board_name}@Bienvenido a Internet Móvil + + Bienvenido a Internet Móvil + + + + + + diff --git a/cgi/templates/mobile/board.html b/cgi/templates/mobile/board.html new file mode 100644 index 0000000..70b8461 --- /dev/null +++ b/cgi/templates/mobile/board.html @@ -0,0 +1,55 @@ + + + + +
+ + +

No.#{post['id']} eliminado por el usuario.

+ +

No.#{post['id']} eliminado por miembro del staff.

+ + +

#{post["subject"]} (#{thread['length']})

+ +
+ +

#{post["subject"]}

+ +

#{post['id']}#{post['name']} #{post['tripcode']} #{post['timestamp_formatted']}

+
#{int(post['file_size'])//1024}KB #{post['file'].split(".")[1].upper()}
+
#{post['message']}
+ + + +Recargar + + + +
El hilo ha sido cerrado. Ya no se puede postear en él.
+ +
+ +
+ + + + + + + + + +
+ + +
+ + +
+ +
+ + + + \ No newline at end of file diff --git a/cgi/templates/mobile/error.html b/cgi/templates/mobile/error.html new file mode 100644 index 0000000..00ae4f4 --- /dev/null +++ b/cgi/templates/mobile/error.html @@ -0,0 +1,6 @@ + + +

Home
Error

+


#{error}



+ + \ No newline at end of file diff --git a/cgi/templates/mobile/latest.html b/cgi/templates/mobile/latest.html new file mode 100644 index 0000000..615b21c --- /dev/null +++ b/cgi/templates/mobile/latest.html @@ -0,0 +1,14 @@ + + +
+
Info
+ Bienvenido a Internet Móvil +
+ + + + \ No newline at end of file diff --git a/cgi/templates/mobile/newest.html b/cgi/templates/mobile/newest.html new file mode 100644 index 0000000..37fd67f --- /dev/null +++ b/cgi/templates/mobile/newest.html @@ -0,0 +1,14 @@ + + +
+
Info
+ Bienvenido a Internet Móvil +
+ + + + \ No newline at end of file diff --git a/cgi/templates/mobile/threadlist.html b/cgi/templates/mobile/threadlist.html new file mode 100644 index 0000000..edb81eb --- /dev/null +++ b/cgi/templates/mobile/threadlist.html @@ -0,0 +1,43 @@ + + +
+
Home
+ #{board_name} +
+ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/cgi/templates/mobile/txt_newthread.html b/cgi/templates/mobile/txt_newthread.html new file mode 100644 index 0000000..b19d2fa --- /dev/null +++ b/cgi/templates/mobile/txt_newthread.html @@ -0,0 +1,35 @@ + + +
+
Home
+ #{board_name} +
+ + + + + +
+ +
+ + + + + + + + + +
+ + +
+ + +
+ +
Formatos permitidos: #{', '.join(supported_filetypes).upper()}
Tamaño máximo: #{maxsize} KB
+ + + \ No newline at end of file diff --git a/cgi/templates/mobile/txt_thread.html b/cgi/templates/mobile/txt_thread.html new file mode 100644 index 0000000..8a19a94 --- /dev/null +++ b/cgi/templates/mobile/txt_thread.html @@ -0,0 +1,74 @@ + + + + + + + 1000: ?> +
■ El hilo superó los 1000 mensajes y ha sido cerrado.
+ 950: ?> +
■ El hilo ha recibido más de 950 mensajes. Límite: 1000
+ 900: ?> +
■ El hilo ha recibido más de 900 mensajes. Límite: 1000
+ +
+

#{thread['subject']} (#{thread['length']})

+ + +

#{str(post['num']).zfill(4)} Eliminado por el usuario.

+ +

#{str(post['num']).zfill(4)} Eliminado por miembro del staff.

+ +
+

#{str(post['num']).zfill(4)} #{post['name']} #{post['tripcode']}

+
#{int(post['file_size'])//1024}KB #{post['file'].split(".")[1].upper()}
+
#{post['message']}
+

#{post['timestamp_formatted']}

+
+ + + +Ver nuevos posts + + + +
+ +
+ + + + +
+ + +
+ + +
+ +
+ + + + \ No newline at end of file diff --git a/cgi/templates/mobile/txt_threadlist.html b/cgi/templates/mobile/txt_threadlist.html new file mode 100644 index 0000000..5e3d133 --- /dev/null +++ b/cgi/templates/mobile/txt_threadlist.html @@ -0,0 +1,26 @@ + + +
+
Home
+ #{board_name} +
+ + + + + + + + + + \ No newline at end of file diff --git a/cgi/templates/mod.html b/cgi/templates/mod.html new file mode 100644 index 0000000..21a35f6 --- /dev/null +++ b/cgi/templates/mod.html @@ -0,0 +1,86 @@ + + + + + MOD/S3M/XM module player for Web Audio + + + + + + + + + + + +
+
+
MOD/S3M/XM module player for Web Audio
+
(c) 2012-2015 Firehawk/TDA
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+                              + ('    ') + +

+ [<<] + [reproducir] + [pausa] + [>>] + + [rept] + [)oo(] + [trks] + [filt] +
+
+
+
+
+ Esta es una instancia local del reproductor de MODs por Firehawk - Twitter / firehawk@haxor.fi.
Código fuente disponible en GitHub bajo licencia MIT. + +
+
+ + +
+ + diff --git a/cgi/templates/navbar.html b/cgi/templates/navbar.html new file mode 100644 index 0000000..1655f0b --- /dev/null +++ b/cgi/templates/navbar.html @@ -0,0 +1,16 @@ +Actualidad +Tecnología +Juegos +Música +TV y Cine +Humanidades +Club VIP +World Lobby +| +Imágenes +二次元画像 +Naturaleza +Oekaki +Cero +| +Meta \ No newline at end of file diff --git a/cgi/templates/paint.html b/cgi/templates/paint.html new file mode 100644 index 0000000..476babe --- /dev/null +++ b/cgi/templates/paint.html @@ -0,0 +1,79 @@ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ +
+ + +
+
+ + +


+ +
+
+ diff --git a/cgi/templates/redirect.html b/cgi/templates/redirect.html new file mode 100644 index 0000000..172425d --- /dev/null +++ b/cgi/templates/redirect.html @@ -0,0 +1,12 @@ + + +Has posteado en Bienvenido a Internet BBS/IB + + + + + +

Gracias por tu post

${message}

(por favor espera) +

Tiempo usado: #{timetaken}

+ + \ No newline at end of file diff --git a/cgi/templates/report.html b/cgi/templates/report.html new file mode 100644 index 0000000..d37ca6d --- /dev/null +++ b/cgi/templates/report.html @@ -0,0 +1,29 @@ + + + +Post denunciado +Denunciar post ${postshow} + + + + + + + +

Post denunciado.

+
Volver
+ +

Formulario de denuncia

+
Para pedir que el post ${postshow} sea eliminado, indica una razón y presiona el botón [Enviar denuncia]. +
Volver +
+
Este formulario no es para eliminar tu propio post. +Para eliminar tu propio post debes presionar el botón del que aparece a la derecha de tu post cuando le pones el cursor encima. [info] +Para eliminar tu propio post debes chequear la caja que se encuentra en la parte superior izquierda de tu post y luego presionar el botón "Eliminar" que se encuentra al final de la página. [info] +
Normalmente eliminamos los mensajes que son considerados spam o flood. Si deseas pedir la prohibición de acceso a algún usuario persistente, te recomendamos hacerlo en la sección meta. +
Contacto
+ + + \ No newline at end of file diff --git a/cgi/templates/revision.html b/cgi/templates/revision.html new file mode 100644 index 0000000..1e9b46b --- /dev/null +++ b/cgi/templates/revision.html @@ -0,0 +1 @@ +0.8.7 diff --git a/cgi/templates/stats.html b/cgi/templates/stats.html new file mode 100644 index 0000000..dd0e5ab --- /dev/null +++ b/cgi/templates/stats.html @@ -0,0 +1,163 @@ + + + +Estadísticas@Bienvenido a Internet + + + + + +
+
Bienvenido a Internet Estadísticas
+
+ Última actualización: ${timestamp} GMT${tz} + + (en caché) + +
+
+ +
+ +

Mensajes totales (última semana)

+ + + + + + + + + + + + + + + + + + + + + + + + +
DíaHilosResp.Total
${day}${threads}${int(posts)-int(threads)}${posts}
Total${allthreads}${allposts-allthreads}${allposts}
+ +
+ +

Volumen de mensajes por sección (últimos 30 días)

+ + + + + + + + + + + + + + + + + +
#SecciónMensajesPorcentaje
+ ${iter} + ${iter} + ${iter} + ${iter} + ${board}${num}${percent}%
+ +
+ +

Sistema

+ + + + + + + + + + + + + + + + + + + +
Máquinamaria (Debian GNU/Linux)
OS${uname[0]} ${uname[2]}
Release/Arq.${uname[3]} ${uname[4]}
Motor BBS/IBweabot ${weabot_ver}
Templatingtenjin ${tenjin_ver}
Versión de Python${python_ver}
Implementación${python_impl}
Build${python_build}
Compilado en${python_compiler}
+ +
+ +

Base de datos

+ + + + + + + + + + + + + +
Base de DatosMariaDB
Versión${mysql_ver} Linux x86_64
Mensajes totales activos${total}
Archivos totales activos${total_files}
Mensajes totales archivados (BBS)${total_archived}
Mensajes totales archivados (IB)0 (QEPD)
+ +
+ + + + diff --git a/cgi/templates/txt_archive.html b/cgi/templates/txt_archive.html new file mode 100644 index 0000000..b1e25db --- /dev/null +++ b/cgi/templates/txt_archive.html @@ -0,0 +1,104 @@ + + + + #{threads[0]['subject']} - Archivo de #{board_name}@Bienvenido a Internet BBS + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
■ Este hilo se encuentra guardado en el archivo

+
+

#{thread['subject']} (${(str(thread['length'])+" respuestas") if thread['length'] > 1 else "Una respuesta"})

+ + +

#{post['num']} : Mensaje eliminado por el usuario.

+ +

#{post['num']} : Mensaje eliminado por miembro del staff.

+ + +
+ +
+ +

#{post['num']} : + + + #{post['name']} #{post['tripcode']} + + #{post['name']} + + + + #{post['name']} #{post['tripcode']} + + #{post['name']} + + : #{post['timestamp_formatted']}

+
#{post['message']}
+
+ + + +
#{thread['size']}
+ +
+
■ Este hilo se encuentra guardado en el archivo

+ + + +
weabot.py ver Bienvenido a Internet BBS/IB
+ + + \ No newline at end of file diff --git a/cgi/templates/txt_base_top.html b/cgi/templates/txt_base_top.html new file mode 100644 index 0000000..eb3c37b --- /dev/null +++ b/cgi/templates/txt_base_top.html @@ -0,0 +1,44 @@ + + + + + #{threads[0]['subject']} - #{board_name}@Bienvenido a Internet BBS + + #{board_long} + + #{title} + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/cgi/templates/txt_board.en.html b/cgi/templates/txt_board.en.html new file mode 100644 index 0000000..8e3c421 --- /dev/null +++ b/cgi/templates/txt_board.en.html @@ -0,0 +1,137 @@ + + + + + + +
+
+ +

#{board_long}

+ +
#{postarea_desc}
+ + +
+ +
+ +
#{postarea_extra}
+ + + + + + + +
+ +

[#{titer}:#{thread['length']}]#{thread['posts'][0]['subject']}

+ + +

#{post['num']} : Post deleted by user.

+ +

#{post['num']} : Post deleted by staff.

+ +
+

#{post['num']} : + + + #{post['name']} #{post['tripcode']} + + #{post['name']} + + + + #{post['name']} #{post['tripcode']} + + #{post['name']} + + : #{post['timestamp_formatted']}

+ +
${int(post['file_size'])//1024}KB ${post['file'].split(".")[1].upper()}
+ +
+ #{post['message']} + +
(Post is too long... Click here to view the whole post.)
+ +
+
+ + + +
+ +
+ Name:  E-mail: 
+
+ +
+ +
This thread has been closed. You cannot post in it any longer.
+ + +
+
+ + + + +
+
+
+ +
New thread form
+
+ + + + + + + + + + + + + + + + + +
Subject:
Name:E-mail:
Body:
File:
+
Trampa:
+
+
+
+ + + \ No newline at end of file diff --git a/cgi/templates/txt_board.html b/cgi/templates/txt_board.html new file mode 100644 index 0000000..097e255 --- /dev/null +++ b/cgi/templates/txt_board.html @@ -0,0 +1,137 @@ + + + + + + +
+
+ +

#{board_long}

+ +
#{postarea_desc}
+ + +
+ +
+ +
#{postarea_extra}
+ + + + + + + +
+ +

[#{titer}:#{thread['length']}]#{thread['posts'][0]['subject']}

+ + +

#{post['num']} Mensaje eliminado por el usuario.

+ +

#{post['num']} Mensaje eliminado por miembro del staff.

+ +
+

#{post['num']} : + + + #{post['name']} #{post['tripcode']} + + #{post['name']} + + + + #{post['name']} #{post['tripcode']} + + #{post['name']} + + : #{post['timestamp_formatted']}

+ +
${int(post['file_size'])//1024}KB ${post['file'].split(".")[1].upper()}
+ +
+ #{post['message']} + +
(Post muy largo... Presiona aquí para verlo completo.)
+ +
+
+ + + +
+ +
+ Nombre:  E-mail:  +
+ +
+ +
El hilo ha sido cerrado. Ya no se puede postear en él.
+ + +
+
+ + + + +
+
+
+ +
Formulario de nuevo hilo
+
+ + + + + + + + + + + + + + + + + +
Asunto:
Nombre:E-mail:
Mensaje:
Archivo:
+
Trampa:
+
+
+
+ + + \ No newline at end of file diff --git a/cgi/templates/txt_error.html b/cgi/templates/txt_error.html new file mode 100644 index 0000000..8a16a63 --- /dev/null +++ b/cgi/templates/txt_error.html @@ -0,0 +1,50 @@ + + +Error + + + + + +
ERROR: #{error}
+
+ Host ${info['host']}
+
+ Nombre: ${info['name']}
+ E-mail: ${info['email']}
+ Mensaje:
+ ${info['message']} +
+
+
+ + + \ No newline at end of file diff --git a/cgi/templates/txt_thread.en.html b/cgi/templates/txt_thread.en.html new file mode 100644 index 0000000..2e811cb --- /dev/null +++ b/cgi/templates/txt_thread.en.html @@ -0,0 +1,105 @@ + + + + + +
+ 1000: ?> +
The thread got over 1000 posts and has been closed.
+ 900: ?> +
The thread has reached 900 posts. When it reaches 1000 posts it will be closed.
+ +
+

#{thread['subject']} (${(str(thread['length'])+" replies") if thread['length']>1 else "1 reply"})

+ + +

#{post['num']} : Post deleted by user.

+ +

#{post['num']} : Post deleted by staff.

+ + +
+ +
+ +

#{post['num']} : + + + #{post['name']} #{post['tripcode']} + + #{post['name']} + + + + #{post['name']} #{post['tripcode']} + + #{post['name']} + + : #{post['timestamp_formatted']} + rep del

+ +
${int(post['file_size'])//1024}KB ${post['file'].split(".")[1].upper()}
+ +
+ #{post['message']} +
+
+ + +
#{thread['size']}
+
+
+ + +
+ + 1000: ?> +
The thread got over 1000 posts and has been closed.
+ 950: ?> +
The thread has reached 950 posts. When it reaches 1000 posts it will be closed.
+ 900: ?> +
The thread has reached 900 posts. When it reaches 1000 posts it will be closed.
+ +
+ + + +
+ Name:  E-mail: 
+
+ + + + + +
+ + +
weabot.py ver Bienvenido a Internet BBS/IB
+ + + \ No newline at end of file diff --git a/cgi/templates/txt_thread.html b/cgi/templates/txt_thread.html new file mode 100644 index 0000000..c438944 --- /dev/null +++ b/cgi/templates/txt_thread.html @@ -0,0 +1,101 @@ + + + + + +
+ 1000: ?> +
El hilo superó los 1000 mensajes y ha sido cerrado. Ya no se puede postear en él.
+ 900: ?> +
El hilo ha recibido más de 900 mensajes. Cuando llegue a 1000 será cerrado.
+ +
+

#{thread['subject']} (${(str(thread['length'])+" respuestas") if thread['length']>1 else "Una respuesta"})

+ + +

#{post['num']} : Mensaje eliminado por el usuario.

+ +

#{post['num']} : Mensaje eliminado por miembro del staff.

+ + +
+ +
+ +

#{post['num']} : + + + #{post['name']} #{post['tripcode']} + + #{post['name']} + + + + #{post['name']} #{post['tripcode']} + + #{post['name']} + + : #{post['timestamp_formatted']} + rep del

+ +
${int(post['file_size'])//1024}KB ${post['file'].split(".")[1].upper()}
+ +
#{post['message']}
+
+ + +
#{thread['size']}
+
+
+ + +
+ + 1000: ?> +
El hilo superó los 1000 mensajes y ha sido cerrado. Ya no se puede postear en él.
+ 900: ?> +
El hilo ha recibido más de 900 mensajes. Cuando llegue a 1000 será cerrado.
+ +
+ + + +
+ Nombre:  E-mail: 
+
+ + + + + +
+ + +
weabot.py ver Bienvenido a Internet BBS/IB
+ + + \ No newline at end of file diff --git a/cgi/templates/txt_threadlist.html b/cgi/templates/txt_threadlist.html new file mode 100644 index 0000000..bb09df4 --- /dev/null +++ b/cgi/templates/txt_threadlist.html @@ -0,0 +1,67 @@ + + + + + + +
+

#{board_long}

+ +
+ + +
+ + + +
+
#{iter}:
+ +
#{thread["length"]}
+
#{timestamps[iter-1][1]}
+
+ + +
+ +
+
+
+
Formulario de nuevo hilo
+
+ + + + + + + + + + + + + + + + + +
Asunto:
Nombre:E-mail:
Mensaje:
Archivo:
+
Trampa:
+
+
+
+ + + \ No newline at end of file -- cgit v1.2.1-18-gbd029