mirror of
https://github.com/YunoHost-Apps/jappix_ynh.git
synced 2024-09-03 19:26:19 +02:00
add directory
This commit is contained in:
parent
b269f72a08
commit
36be0b7b9e
26 changed files with 163926 additions and 0 deletions
14
source/store/access/index.html
Normal file
14
source/store/access/index.html
Normal file
|
@ -0,0 +1,14 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||
<title>Jappix - Forbidden</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>Forbidden</h1>
|
||||
<h4>This is a private folder</h4>
|
||||
</body>
|
||||
|
||||
</html>
|
11
source/store/access/months.xml
Normal file
11
source/store/access/months.xml
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<jappix xmlns="jappix:access:months">
|
||||
<month_8>0</month_8>
|
||||
<month_9>0</month_9>
|
||||
<month_10>0</month_10>
|
||||
<month_11>3</month_11>
|
||||
<month_12>0</month_12>
|
||||
<month_1>0</month_1>
|
||||
<month_2>0</month_2>
|
||||
<month_3>0</month_3>
|
||||
</jappix>
|
5
source/store/access/total.xml
Normal file
5
source/store/access/total.xml
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<jappix xmlns="jappix:access:total">
|
||||
<total>3</total>
|
||||
<stamp>1385476111</stamp>
|
||||
</jappix>
|
14
source/store/avatars/index.html
Normal file
14
source/store/avatars/index.html
Normal file
|
@ -0,0 +1,14 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||
<title>Jappix - Forbidden</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>Forbidden</h1>
|
||||
<h4>This is a private folder</h4>
|
||||
</body>
|
||||
|
||||
</html>
|
14
source/store/backgrounds/index.html
Normal file
14
source/store/backgrounds/index.html
Normal file
|
@ -0,0 +1,14 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||
<title>Jappix - Forbidden</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>Forbidden</h1>
|
||||
<h4>This is a private folder</h4>
|
||||
</body>
|
||||
|
||||
</html>
|
7381
source/store/cache/2d2ce9a8cf7acc9f869ced83c74adbad_plain.cache
vendored
Normal file
7381
source/store/cache/2d2ce9a8cf7acc9f869ced83c74adbad_plain.cache
vendored
Normal file
File diff suppressed because it is too large
Load diff
37142
source/store/cache/35b5a430d742f790a81fb4044add3483_plain.cache
vendored
Normal file
37142
source/store/cache/35b5a430d742f790a81fb4044add3483_plain.cache
vendored
Normal file
File diff suppressed because it is too large
Load diff
37142
source/store/cache/35b5a430d742f790a81fb4044add3483_plain_fr.cache
vendored
Normal file
37142
source/store/cache/35b5a430d742f790a81fb4044add3483_plain_fr.cache
vendored
Normal file
File diff suppressed because it is too large
Load diff
37142
source/store/cache/4c8c9d7652050462941d708c6e94844e_plain.cache
vendored
Normal file
37142
source/store/cache/4c8c9d7652050462941d708c6e94844e_plain.cache
vendored
Normal file
File diff suppressed because it is too large
Load diff
37142
source/store/cache/4c8c9d7652050462941d708c6e94844e_plain_fr.cache
vendored
Normal file
37142
source/store/cache/4c8c9d7652050462941d708c6e94844e_plain_fr.cache
vendored
Normal file
File diff suppressed because it is too large
Load diff
94
source/store/cache/50062d1b61bdaeb174d8cea2191a9a46_plain.cache
vendored
Normal file
94
source/store/cache/50062d1b61bdaeb174d8cea2191a9a46_plain.cache
vendored
Normal file
|
@ -0,0 +1,94 @@
|
|||
/*
|
||||
|
||||
Jappix - An open social platform
|
||||
These are the http-auth JS scripts for Jappix
|
||||
|
||||
-------------------------------------------------
|
||||
|
||||
License: AGPL
|
||||
Author: Valérian Saliou, Kload
|
||||
Last revision: 16/04/12
|
||||
|
||||
*/
|
||||
|
||||
// Does the user login
|
||||
var CURRENT_SESSION = false;
|
||||
|
||||
// Login to a HTTP session
|
||||
function doHttpLogin(lNick, lPass, lServer, lPriority) {
|
||||
try {
|
||||
|
||||
// We add the login wait div
|
||||
showGeneralWait();
|
||||
|
||||
// We define the http binding parameters
|
||||
oArgs = new Object();
|
||||
|
||||
if(HOST_BOSH_MAIN)
|
||||
oArgs.httpbase = HOST_BOSH_MAIN;
|
||||
else
|
||||
oArgs.httpbase = HOST_BOSH;
|
||||
|
||||
// Check BOSH origin
|
||||
BOSH_SAME_ORIGIN = isSameOrigin(oArgs.httpbase);
|
||||
|
||||
// We create the new http-binding connection
|
||||
con = new JSJaCHttpBindingConnection(oArgs);
|
||||
|
||||
// And we handle everything that happen
|
||||
setupCon(con);
|
||||
|
||||
// Generate a resource
|
||||
var random_resource = getDB('session', 'resource');
|
||||
|
||||
if(!random_resource)
|
||||
random_resource = JAPPIX_RESOURCE + ' (' + (new Date()).getTime() + ')';
|
||||
|
||||
// Generate a priority
|
||||
lPriority = lPriority ? lPriority : 10;
|
||||
|
||||
// We retrieve what the user typed in the login inputs
|
||||
oArgs = new Object();
|
||||
oArgs.domain = trim(lServer);
|
||||
oArgs.username = trim(lNick);
|
||||
oArgs.resource = random_resource;
|
||||
oArgs.pass = lPass;
|
||||
oArgs.secure = true;
|
||||
oArgs.xmllang = XML_LANG;
|
||||
|
||||
// Store the resource (for reconnection)
|
||||
setDB('session', 'resource', random_resource);
|
||||
|
||||
// Generate a session XML to be stored
|
||||
session_xml = '<session><stored>true</stored><domain>' + lServer.htmlEnc() + '</domain><username>' + lNick.htmlEnc() + '</username><resource>' + random_resource + '</resource><password>' + lPass.htmlEnc() + '</password><priority>' + (lPriority + '').htmlEnc() + '</priority></session>';
|
||||
|
||||
// Save the session parameters (for reconnect if network issue)
|
||||
CURRENT_SESSION = session_xml;
|
||||
|
||||
// We store the infos of the user into the data-base
|
||||
setDB('priority', 1, 10);
|
||||
|
||||
// We connect !
|
||||
con.connect(oArgs);
|
||||
|
||||
// Change the page title
|
||||
pageTitle('wait');
|
||||
|
||||
logThis('Jappix is connecting...', 3);
|
||||
}
|
||||
|
||||
catch(e) {
|
||||
// Logs errors
|
||||
logThis('Error while logging in: ' + e, 1);
|
||||
|
||||
// Reset Jappix
|
||||
destroyTalkPage();
|
||||
|
||||
// Open an unknown error
|
||||
openThisError(2);
|
||||
}
|
||||
|
||||
finally {
|
||||
return false;
|
||||
}
|
||||
}
|
94
source/store/cache/50062d1b61bdaeb174d8cea2191a9a46_plain_en.cache
vendored
Normal file
94
source/store/cache/50062d1b61bdaeb174d8cea2191a9a46_plain_en.cache
vendored
Normal file
|
@ -0,0 +1,94 @@
|
|||
/*
|
||||
|
||||
Jappix - An open social platform
|
||||
These are the http-auth JS scripts for Jappix
|
||||
|
||||
-------------------------------------------------
|
||||
|
||||
License: AGPL
|
||||
Author: Valérian Saliou, Kload
|
||||
Last revision: 16/04/12
|
||||
|
||||
*/
|
||||
|
||||
// Does the user login
|
||||
var CURRENT_SESSION = false;
|
||||
|
||||
// Login to a HTTP session
|
||||
function doHttpLogin(lNick, lPass, lServer, lPriority) {
|
||||
try {
|
||||
|
||||
// We add the login wait div
|
||||
showGeneralWait();
|
||||
|
||||
// We define the http binding parameters
|
||||
oArgs = new Object();
|
||||
|
||||
if(HOST_BOSH_MAIN)
|
||||
oArgs.httpbase = HOST_BOSH_MAIN;
|
||||
else
|
||||
oArgs.httpbase = HOST_BOSH;
|
||||
|
||||
// Check BOSH origin
|
||||
BOSH_SAME_ORIGIN = isSameOrigin(oArgs.httpbase);
|
||||
|
||||
// We create the new http-binding connection
|
||||
con = new JSJaCHttpBindingConnection(oArgs);
|
||||
|
||||
// And we handle everything that happen
|
||||
setupCon(con);
|
||||
|
||||
// Generate a resource
|
||||
var random_resource = getDB('session', 'resource');
|
||||
|
||||
if(!random_resource)
|
||||
random_resource = JAPPIX_RESOURCE + ' (' + (new Date()).getTime() + ')';
|
||||
|
||||
// Generate a priority
|
||||
lPriority = lPriority ? lPriority : 10;
|
||||
|
||||
// We retrieve what the user typed in the login inputs
|
||||
oArgs = new Object();
|
||||
oArgs.domain = trim(lServer);
|
||||
oArgs.username = trim(lNick);
|
||||
oArgs.resource = random_resource;
|
||||
oArgs.pass = lPass;
|
||||
oArgs.secure = true;
|
||||
oArgs.xmllang = XML_LANG;
|
||||
|
||||
// Store the resource (for reconnection)
|
||||
setDB('session', 'resource', random_resource);
|
||||
|
||||
// Generate a session XML to be stored
|
||||
session_xml = '<session><stored>true</stored><domain>' + lServer.htmlEnc() + '</domain><username>' + lNick.htmlEnc() + '</username><resource>' + random_resource + '</resource><password>' + lPass.htmlEnc() + '</password><priority>' + (lPriority + '').htmlEnc() + '</priority></session>';
|
||||
|
||||
// Save the session parameters (for reconnect if network issue)
|
||||
CURRENT_SESSION = session_xml;
|
||||
|
||||
// We store the infos of the user into the data-base
|
||||
setDB('priority', 1, 10);
|
||||
|
||||
// We connect !
|
||||
con.connect(oArgs);
|
||||
|
||||
// Change the page title
|
||||
pageTitle('wait');
|
||||
|
||||
logThis('Jappix is connecting...', 3);
|
||||
}
|
||||
|
||||
catch(e) {
|
||||
// Logs errors
|
||||
logThis('Error while logging in: ' + e, 1);
|
||||
|
||||
// Reset Jappix
|
||||
destroyTalkPage();
|
||||
|
||||
// Open an unknown error
|
||||
openThisError(2);
|
||||
}
|
||||
|
||||
finally {
|
||||
return false;
|
||||
}
|
||||
}
|
94
source/store/cache/50dd26a35a1dacfd1c8ec5ffd8ecaca2_plain.cache
vendored
Normal file
94
source/store/cache/50dd26a35a1dacfd1c8ec5ffd8ecaca2_plain.cache
vendored
Normal file
|
@ -0,0 +1,94 @@
|
|||
/*
|
||||
|
||||
Jappix - An open social platform
|
||||
These are the http-auth JS scripts for Jappix
|
||||
|
||||
-------------------------------------------------
|
||||
|
||||
License: AGPL
|
||||
Author: Valérian Saliou, Kload
|
||||
Last revision: 16/04/12
|
||||
|
||||
*/
|
||||
|
||||
// Does the user login
|
||||
var CURRENT_SESSION = false;
|
||||
|
||||
// Login to a HTTP session
|
||||
function doHttpLogin(lNick, lPass, lServer, lPriority) {
|
||||
try {
|
||||
|
||||
// We add the login wait div
|
||||
showGeneralWait();
|
||||
|
||||
// We define the http binding parameters
|
||||
oArgs = new Object();
|
||||
|
||||
if(HOST_BOSH_MAIN)
|
||||
oArgs.httpbase = HOST_BOSH_MAIN;
|
||||
else
|
||||
oArgs.httpbase = HOST_BOSH;
|
||||
|
||||
// Check BOSH origin
|
||||
BOSH_SAME_ORIGIN = isSameOrigin(oArgs.httpbase);
|
||||
|
||||
// We create the new http-binding connection
|
||||
con = new JSJaCHttpBindingConnection(oArgs);
|
||||
|
||||
// And we handle everything that happen
|
||||
setupCon(con);
|
||||
|
||||
// Generate a resource
|
||||
var random_resource = getDB('session', 'resource');
|
||||
|
||||
if(!random_resource)
|
||||
random_resource = JAPPIX_RESOURCE + ' (' + (new Date()).getTime() + ')';
|
||||
|
||||
// Generate a priority
|
||||
lPriority = lPriority ? lPriority : 10;
|
||||
|
||||
// We retrieve what the user typed in the login inputs
|
||||
oArgs = new Object();
|
||||
oArgs.domain = trim(lServer);
|
||||
oArgs.username = trim(lNick);
|
||||
oArgs.resource = random_resource;
|
||||
oArgs.pass = lPass;
|
||||
oArgs.secure = true;
|
||||
oArgs.xmllang = XML_LANG;
|
||||
|
||||
// Store the resource (for reconnection)
|
||||
setDB('session', 'resource', random_resource);
|
||||
|
||||
// Generate a session XML to be stored
|
||||
session_xml = '<session><stored>true</stored><domain>' + lServer.htmlEnc() + '</domain><username>' + lNick.htmlEnc() + '</username><resource>' + random_resource + '</resource><password>' + lPass.htmlEnc() + '</password><priority>' + (lPriority + '').htmlEnc() + '</priority></session>';
|
||||
|
||||
// Save the session parameters (for reconnect if network issue)
|
||||
CURRENT_SESSION = session_xml;
|
||||
|
||||
// We store the infos of the user into the data-base
|
||||
setDB('priority', 1, 10);
|
||||
|
||||
// We connect !
|
||||
con.connect(oArgs);
|
||||
|
||||
// Change the page title
|
||||
pageTitle('wait');
|
||||
|
||||
logThis('Jappix is connecting...', 3);
|
||||
}
|
||||
|
||||
catch(e) {
|
||||
// Logs errors
|
||||
logThis('Error while logging in: ' + e, 1);
|
||||
|
||||
// Reset Jappix
|
||||
destroyTalkPage();
|
||||
|
||||
// Open an unknown error
|
||||
openThisError(2);
|
||||
}
|
||||
|
||||
finally {
|
||||
return false;
|
||||
}
|
||||
}
|
94
source/store/cache/50dd26a35a1dacfd1c8ec5ffd8ecaca2_plain_en.cache
vendored
Normal file
94
source/store/cache/50dd26a35a1dacfd1c8ec5ffd8ecaca2_plain_en.cache
vendored
Normal file
|
@ -0,0 +1,94 @@
|
|||
/*
|
||||
|
||||
Jappix - An open social platform
|
||||
These are the http-auth JS scripts for Jappix
|
||||
|
||||
-------------------------------------------------
|
||||
|
||||
License: AGPL
|
||||
Author: Valérian Saliou, Kload
|
||||
Last revision: 16/04/12
|
||||
|
||||
*/
|
||||
|
||||
// Does the user login
|
||||
var CURRENT_SESSION = false;
|
||||
|
||||
// Login to a HTTP session
|
||||
function doHttpLogin(lNick, lPass, lServer, lPriority) {
|
||||
try {
|
||||
|
||||
// We add the login wait div
|
||||
showGeneralWait();
|
||||
|
||||
// We define the http binding parameters
|
||||
oArgs = new Object();
|
||||
|
||||
if(HOST_BOSH_MAIN)
|
||||
oArgs.httpbase = HOST_BOSH_MAIN;
|
||||
else
|
||||
oArgs.httpbase = HOST_BOSH;
|
||||
|
||||
// Check BOSH origin
|
||||
BOSH_SAME_ORIGIN = isSameOrigin(oArgs.httpbase);
|
||||
|
||||
// We create the new http-binding connection
|
||||
con = new JSJaCHttpBindingConnection(oArgs);
|
||||
|
||||
// And we handle everything that happen
|
||||
setupCon(con);
|
||||
|
||||
// Generate a resource
|
||||
var random_resource = getDB('session', 'resource');
|
||||
|
||||
if(!random_resource)
|
||||
random_resource = JAPPIX_RESOURCE + ' (' + (new Date()).getTime() + ')';
|
||||
|
||||
// Generate a priority
|
||||
lPriority = lPriority ? lPriority : 10;
|
||||
|
||||
// We retrieve what the user typed in the login inputs
|
||||
oArgs = new Object();
|
||||
oArgs.domain = trim(lServer);
|
||||
oArgs.username = trim(lNick);
|
||||
oArgs.resource = random_resource;
|
||||
oArgs.pass = lPass;
|
||||
oArgs.secure = true;
|
||||
oArgs.xmllang = XML_LANG;
|
||||
|
||||
// Store the resource (for reconnection)
|
||||
setDB('session', 'resource', random_resource);
|
||||
|
||||
// Generate a session XML to be stored
|
||||
session_xml = '<session><stored>true</stored><domain>' + lServer.htmlEnc() + '</domain><username>' + lNick.htmlEnc() + '</username><resource>' + random_resource + '</resource><password>' + lPass.htmlEnc() + '</password><priority>' + (lPriority + '').htmlEnc() + '</priority></session>';
|
||||
|
||||
// Save the session parameters (for reconnect if network issue)
|
||||
CURRENT_SESSION = session_xml;
|
||||
|
||||
// We store the infos of the user into the data-base
|
||||
setDB('priority', 1, 10);
|
||||
|
||||
// We connect !
|
||||
con.connect(oArgs);
|
||||
|
||||
// Change the page title
|
||||
pageTitle('wait');
|
||||
|
||||
logThis('Jappix is connecting...', 3);
|
||||
}
|
||||
|
||||
catch(e) {
|
||||
// Logs errors
|
||||
logThis('Error while logging in: ' + e, 1);
|
||||
|
||||
// Reset Jappix
|
||||
destroyTalkPage();
|
||||
|
||||
// Open an unknown error
|
||||
openThisError(2);
|
||||
}
|
||||
|
||||
finally {
|
||||
return false;
|
||||
}
|
||||
}
|
7381
source/store/cache/80408617e52ef82c399677697d4baca6_plain.cache
vendored
Normal file
7381
source/store/cache/80408617e52ef82c399677697d4baca6_plain.cache
vendored
Normal file
File diff suppressed because it is too large
Load diff
14
source/store/cache/index.html
vendored
Normal file
14
source/store/cache/index.html
vendored
Normal file
|
@ -0,0 +1,14 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||
<title>Jappix - Forbidden</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>Forbidden</h1>
|
||||
<h4>This is a private folder</h4>
|
||||
</body>
|
||||
|
||||
</html>
|
14
source/store/conf/hosts.xml
Normal file
14
source/store/conf/hosts.xml
Normal file
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<jappix xmlns="jappix:conf:hosts">
|
||||
<main>titoko.fr</main>
|
||||
<muc>muc.titoko.fr</muc>
|
||||
<pubsub>pubsub.titoko.fr</pubsub>
|
||||
<vjud>vjud.titoko.fr</vjud>
|
||||
<anonymous>anonymous.titoko.fr</anonymous>
|
||||
<bosh>https://titoko.fr/jappix/http-bind</bosh>
|
||||
<bosh_main></bosh_main>
|
||||
<bosh_mini></bosh_mini>
|
||||
<static></static>
|
||||
<upload></upload>
|
||||
<bosh_proxy>off</bosh_proxy>
|
||||
</jappix>
|
14
source/store/conf/index.html
Normal file
14
source/store/conf/index.html
Normal file
|
@ -0,0 +1,14 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||
<title>Jappix - Forbidden</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>Forbidden</h1>
|
||||
<h4>This is a private folder</h4>
|
||||
</body>
|
||||
|
||||
</html>
|
4
source/store/conf/installed.xml
Normal file
4
source/store/conf/installed.xml
Normal file
|
@ -0,0 +1,4 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<jappix xmlns="jappix:conf:installed">
|
||||
<installed>true</installed>
|
||||
</jappix>
|
32
source/store/conf/main.xml
Normal file
32
source/store/conf/main.xml
Normal file
|
@ -0,0 +1,32 @@
|
|||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<jappix xmlns="jappix:conf:main">
|
||||
<name>YunoJappix</name>
|
||||
<desc>a free social network</desc>
|
||||
<owner_name></owner_name>
|
||||
<owner_website></owner_website>
|
||||
<legal></legal>
|
||||
<resource>YunoJappix</resource>
|
||||
<lock>on</lock>
|
||||
<anonymous>off</anonymous>
|
||||
<http_auth>on</http_auth>
|
||||
<registration>off</registration>
|
||||
<manager_link>on</manager_link>
|
||||
<groupchats_join></groupchats_join>
|
||||
<groupchats_suggest>off</groupchats_suggest>
|
||||
<encryption>on</encryption>
|
||||
<https_storage>off</https_storage>
|
||||
<https_force>off</https_force>
|
||||
<compression>off</compression>
|
||||
<analytics_track>off</analytics_track>
|
||||
<analytics_url></analytics_url>
|
||||
<analytics_id></analytics_id>
|
||||
<ads_enable>off</ads_enable>
|
||||
<ads_standard></ads_standard>
|
||||
<ads_content></ads_content>
|
||||
<multi_files>off</multi_files>
|
||||
<developer>off</developer>
|
||||
<statistics>off</statistics>
|
||||
<register_api>off</register_api>
|
||||
<xmppd_ctl>/usr/bin/metronomectl</xmppd_ctl>
|
||||
<xmppd>metronome</xmppd>
|
||||
</jappix>
|
14
source/store/logos/index.html
Normal file
14
source/store/logos/index.html
Normal file
|
@ -0,0 +1,14 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||
<title>Jappix - Forbidden</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>Forbidden</h1>
|
||||
<h4>This is a private folder</h4>
|
||||
</body>
|
||||
|
||||
</html>
|
14
source/store/logs/index.html
Normal file
14
source/store/logs/index.html
Normal file
|
@ -0,0 +1,14 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||
<title>Jappix - Forbidden</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>Forbidden</h1>
|
||||
<h4>This is a private folder</h4>
|
||||
</body>
|
||||
|
||||
</html>
|
14
source/store/music/index.html
Normal file
14
source/store/music/index.html
Normal file
|
@ -0,0 +1,14 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||
<title>Jappix - Forbidden</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>Forbidden</h1>
|
||||
<h4>This is a private folder</h4>
|
||||
</body>
|
||||
|
||||
</html>
|
14
source/store/send/index.html
Normal file
14
source/store/send/index.html
Normal file
|
@ -0,0 +1,14 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||
<title>Jappix - Forbidden</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>Forbidden</h1>
|
||||
<h4>This is a private folder</h4>
|
||||
</body>
|
||||
|
||||
</html>
|
14
source/store/share/index.html
Normal file
14
source/store/share/index.html
Normal file
|
@ -0,0 +1,14 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||
<title>Jappix - Forbidden</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>Forbidden</h1>
|
||||
<h4>This is a private folder</h4>
|
||||
</body>
|
||||
|
||||
</html>
|
14
source/store/updates/index.html
Normal file
14
source/store/updates/index.html
Normal file
|
@ -0,0 +1,14 @@
|
|||
<!DOCTYPE html>
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||
<title>Jappix - Forbidden</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>Forbidden</h1>
|
||||
<h4>This is a private folder</h4>
|
||||
</body>
|
||||
|
||||
</html>
|
Loading…
Add table
Reference in a new issue