V2.0 BIG NEW CHANGES
- un système de tags pour pouvoir filtrer les pages (bouton (T) pour ajouter modifier les tags d'une page), - un flux RSS des pages publiques filtrable par tags également (le lien RSS de la page en cours est en pied de page) - une API permettant de récupérer un array d'infos sur les pages au format sérialisé (on peut également filtrer le résultat par tag) - un bouton de renommage des titres de page (R) - un bouton pour télécharger le zip de la page qu'on est en train de visionner.
This commit is contained in:
parent
24860b9572
commit
6c8bccf5ff
6 changed files with 385 additions and 117 deletions
Binary file not shown.
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.8 KiB |
|
@ -6,7 +6,7 @@ body {
|
||||||
margin:0;padding:0;
|
margin:0;padding:0;
|
||||||
font-family: Georgia, Serif;font-size : 16px; color: #050;
|
font-family: Georgia, Serif;font-size : 16px; color: #050;
|
||||||
}
|
}
|
||||||
a:hover { color: #050;text-shadow:0 0 5px green;}
|
a:hover { color: #050;text-shadow:0 0 3px green;}
|
||||||
|
|
||||||
a { color: black; text-decoration: none;}
|
a { color: black; text-decoration: none;}
|
||||||
|
|
||||||
|
@ -29,34 +29,51 @@ header{
|
||||||
background-image: -moz-linear-gradient( top, #555, #333); background-image: -ms-linear-gradient( top, #555, #333);
|
background-image: -moz-linear-gradient( top, #555, #333); background-image: -ms-linear-gradient( top, #555, #333);
|
||||||
background-image: -o-linear-gradient( top, #555, #333); background-image: -webkit-gradient(linear, center top, center bottom, from(#555), to(#333)); background-image: -webkit-linear-gradient( top, #555, #333); background-image: linear-gradient( top, #555, #333);
|
background-image: -o-linear-gradient( top, #555, #333); background-image: -webkit-gradient(linear, center top, center bottom, from(#555), to(#333)); background-image: -webkit-linear-gradient( top, #555, #333); background-image: linear-gradient( top, #555, #333);
|
||||||
}
|
}
|
||||||
header nav{display:inline-block; vertical-align: top;}
|
header nav{display:inline-block; vertical-align: top;}
|
||||||
header nav p{color:lightgreen;text-shadow: 0 1px 1px black;font-size:20px;}
|
header nav .zip{width:16px;height:16px; display:inline-block;background:url(zip.png) no-repeat;}
|
||||||
|
header nav p{color:lightgreen;text-shadow: 0 1px 1px black;font-size:20px;}
|
||||||
|
header nav .tag_public{display:inline-block;padding:5px;color:green;text-shadow: 0 1px 1px black;}
|
||||||
|
header nav .tag_public:hover{color:lightgreen;}
|
||||||
|
header nav .tag_private{display:inline-block;padding:5px;color:red;text-shadow: 0 1px 1px black;}
|
||||||
|
header nav .tag_private:hover{color:pink;}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
aside{height:100%;padding-bottom : 70px;text-align:center;}
|
aside{height:100%;padding-bottom : 70px;text-align:center;}
|
||||||
aside iframe{height:100%;border:none;}
|
aside iframe{height:100%;border:none;}
|
||||||
aside ul{padding:0;}
|
aside ul{padding:0;}
|
||||||
aside li{margin:5px;list-style:none;vertical-align:middle;border-radius:3px;}
|
aside li{margin:5px;list-style:none;vertical-align:middle;border-radius:3px;overflow-x:hidden;}
|
||||||
|
aside li .tag{font-size:10px;display:inline-block;padding:2px;border-radius:3px;}
|
||||||
|
aside .public li .tag{background:rgba(100,255,100,0.4);color:green;}
|
||||||
|
aside .public li .tag:hover{background:rgba(100,255,100,0.9);color:darkgreen;}
|
||||||
|
aside .private li .tag{background:rgba(255,100,100,0.4);color:red;}
|
||||||
|
aside .private li .tag:hover{background:rgba(255,100,100,0.9);color:darkred;text-shadow:0 0 3px red;}
|
||||||
|
|
||||||
|
|
||||||
aside .public li{background:rgba(100,255,100,0.2);}
|
aside .public li{background:rgba(100,255,100,0.2);}
|
||||||
aside .private li{background:rgba(255,100,100,0.2);}
|
aside .private li{background:rgba(255,100,100,0.2);}
|
||||||
aside .public {background:rgba(100,255,100,0.2);}
|
aside .public {background:rgba(100,255,100,0.2);}
|
||||||
aside .private {background:rgba(255,100,100,0.2);}
|
aside .private {background:rgba(255,100,100,0.2);}
|
||||||
aside li em {font-size:10px ; color:#484;}
|
aside li em {font-size:10px ; color:#484;}
|
||||||
|
aside li.private em { color:#844;}
|
||||||
aside li img {vertical-align:bottom;margin:1px;width:16px;height:16px;}
|
aside li img {vertical-align:bottom;margin:1px;width:16px;height:16px;}
|
||||||
aside li a.suppr, aside li a.origine, aside li a.zip{opacity:0.5;width:16px;height:16px;display:inline-block;background:url(actions.png) no-repeat 0 -159px ;}
|
aside li a.suppr,aside li a.rename,aside li a.origine, aside li a.zip, aside li a.tagme{opacity:0.5;width:16px;height:16px;display:inline-block;background:url(actions.png) no-repeat 0 -159px ;}
|
||||||
aside li a.origine{background-position: 0 -396px ;}
|
aside li a.origine{background-position: 0 -396px ;}
|
||||||
aside li a.zip{background-position: 0 2px ;}
|
aside li a.zip{background-position: 0 2px ;}
|
||||||
aside li a.suppr:hover,aside li a.origine:hover,aside li a.zip:hover{opacity:1;}
|
aside li a.tagme{background-position: 0 -63px ;}
|
||||||
|
aside li a.rename{background-position: 0 -30px ;}
|
||||||
|
aside li a.tagme:hover,aside li a.rename:hover,aside li a.suppr:hover,aside li a.origine:hover,aside li a.zip:hover{opacity:1;}
|
||||||
aside li a.toprivate,aside li a.topublic{float:right;margin-right:5px;opacity:0.5;}
|
aside li a.toprivate,aside li a.topublic{float:right;margin-right:5px;opacity:0.5;}
|
||||||
aside li a.toprivate:hover,aside li a.topublic:hover{opacity:1;}
|
aside li a.toprivate:hover,aside li a.topublic:hover{opacity:1;}
|
||||||
|
|
||||||
aside .public,.private{min-width:300px;text-align:left;vertical-align:top; margin-top:25px;padding:10px; border-radius:5px; border:1px dashed;display:inline-block;}
|
aside .public,.private{min-width:300px;text-align:left;vertical-align:top; margin-top:25px;padding:10px; border-radius:5px; border:1px dashed;display:inline-block;}
|
||||||
aside .public{border-color:green;}
|
aside .public{border-color:green;}
|
||||||
aside .private{border-color:red;}
|
aside .private{border-color:red;}
|
||||||
footer {text-align: right; color:#F80;text-shadow: 0 1px 1px black; position:fixed;bottom:0;left:0;right:0;height:auto;min-height:20px;padding : 5px ; -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; border-top:1px solid #888;-moz-box-shadow: 0 0px 9px #000; -webkit-box-shadow: 0 0px 9px #000; box-shadow: 0 0px 9px #000; -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=9, Direction=135, Color='#000')"; filter: progid:DXImageTransform.Microsoft.Shadow(Strength=9, Direction=135, Color='#000'); filter: progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr = #555, endColorstr = #333); -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr = #555, endColorstr = #333)"; background-image: -moz-linear-gradient( top, #555, #333); background-image: -ms-linear-gradient( top, #555, #333); background-image: -o-linear-gradient( top, #555, #333); background-image: -webkit-gradient(linear, center top, center bottom, from(#555), to(#333)); background-image: -webkit-linear-gradient( top, #555, #333); background-image: linear-gradient( top, #555, #333); }
|
footer {
|
||||||
footer p {margin:0;padding:0;color:lightgreen;text-shadow:0 1px 1px green;}
|
font-size:10px;text-align: right; color:lightgreen;text-shadow: 0 1px 1px black; position:fixed; line-height:15px;
|
||||||
|
bottom:0;left:0;right:0;height:auto;min-height:15px;padding-right : 5px ; -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;
|
||||||
|
border-top:1px solid #888;-moz-box-shadow: 0 0px 9px #000; -webkit-box-shadow: 0 0px 9px #000; box-shadow: 0 0px 9px #000;
|
||||||
|
-ms-filter: "progid:DXImageTransform.Microsoft.Shadow(Strength=9, Direction=135, Color='#000')"; filter: progid:DXImageTransform.Microsoft.Shadow(Strength=9, Direction=135, Color='#000'); filter: progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr = #555, endColorstr = #333); -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType = 1, startColorstr = #555, endColorstr = #333)"; background-image: -moz-linear-gradient( top, #555, #333); background-image: -ms-linear-gradient( top, #555, #333); background-image: -o-linear-gradient( top, #555, #333); background-image: -webkit-gradient(linear, center top, center bottom, from(#555), to(#333)); background-image: -webkit-linear-gradient( top, #555, #333); background-image: linear-gradient( top, #555, #333); }
|
||||||
footer a {color:lightgreen;text-shadow:0 1px 1px green;}
|
footer a {color:lightgreen;text-shadow:0 1px 1px green;}
|
||||||
footer a:hover {color:white;}
|
footer a:hover {color:white;}
|
||||||
|
|
||||||
|
|
BIN
design/zip.png
Normal file
BIN
design/zip.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1,014 B |
418
index.php
418
index.php
|
@ -1,10 +1,112 @@
|
||||||
<?php
|
<?php
|
||||||
if (isset($_GET['public'])){$publicarg='?public';$public=true;$bodyclass='publicpage';}else{$publicarg='';$bodyclass='';$public=false;include 'auto_restrict.php';}
|
// liste des parametres GET autorisés pour l'accès public
|
||||||
|
if (isset($_GET['public'])
|
||||||
|
||isset($_GET['zippublic'])
|
||||||
|
||isset($_GET['rss'])
|
||||||
|
||isset($_GET['publicget'])
|
||||||
|
||isset($_GET['api']))
|
||||||
|
{$publicarg='?public';$GLOBAL['public']=true;$bodyclass='publicpage';}
|
||||||
|
else{$publicarg='';$bodyclass='';$GLOBAL['public']=false;include 'auto_restrict.php';}
|
||||||
|
if (isset($_GET['tag'])){$search_tags=strip_tags($_GET['tag']);}else{$search_tags='';}
|
||||||
|
// Fonctions
|
||||||
function aff($a,$stop=true){echo 'Arret a la ligne '.__LINE__.' du fichier '.__FILE__.'<pre>';var_dump($a);echo '</pre>';if ($stop){exit();}}
|
function aff($a,$stop=true){echo 'Arret a la ligne '.__LINE__.' du fichier '.__FILE__.'<pre>';var_dump($a);echo '</pre>';if ($stop){exit();}}
|
||||||
function BodyClasses($add=''){$regex='#(msie)[/ ]([0-9])+|(firefox)/([0-9])+|(chrome)/([0-9])+|(opera)/([0-9]+)|(safari)/([0-9]+)|(android)|(iphone)|(ipad)|(blackberry)|(Windows Phone)|(symbian)|(mobile)|(bada])#i';@preg_match($regex,$_SERVER['HTTP_USER_AGENT'],$resultat);return ' class="'.$add.' '.@preg_replace('#([a-zA-Z ]+)[ /]([0-9]+)#','$1 $1$2',$resultat[0]).' '.basename($_SERVER['PHP_SELF'],'.php').'" ';}
|
function BodyClasses($add=''){$regex='#(msie)[/ ]([0-9])+|(firefox)/([0-9])+|(chrome)/([0-9])+|(opera)/([0-9]+)|(safari)/([0-9]+)|(android)|(iphone)|(ipad)|(blackberry)|(Windows Phone)|(symbian)|(mobile)|(bada])#i';@preg_match($regex,$_SERVER['HTTP_USER_AGENT'],$resultat);return ' class="'.$add.' '.@preg_replace('#([a-zA-Z ]+)[ /]([0-9]+)#','$1 $1$2',$resultat[0]).' '.basename($_SERVER['PHP_SELF'],'.php').'" ';}
|
||||||
function title2filename($chaine){$a=array(' ',':','|','#','/','\\','$','*','?','&','<','>');return substr(stripAccents(str_replace($a,'_',$chaine)),0,30);}
|
function title2filename($chaine){$a=array(' ',':','|','#','/','\\','$','*','?','&','<','>');return substr(stripAccents(str_replace($a,'_',$chaine)),0,30);}
|
||||||
function stripAccents($string){ $a=explode(' ','à á â ã ä ç è é ê ë ì í î ï ñ ò ó ô õ ö ù ú û ü ý ÿ À Á Â Ã Ä Ç È É Ê Ë Ì Í Î Ï Ñ Ò Ó Ô Õ Ö Ù Ú Û Ü Ý');$b=explode(' ','a a a a a c e e e e i i i i n o o o o o u u u u y y A A A A A C E E E E I I I I N O O O O O U U U U Y');return str_replace($a,$b,$string);}
|
function stripAccents($string){ $a=explode(' ','à á â ã ä ç è é ê ë ì í î ï ñ ò ó ô õ ö ù ú û ü ý ÿ À Á Â Ã Ä Ç È É Ê Ë Ì Í Î Ï Ñ Ò Ó Ô Õ Ö Ù Ú Û Ü Ý');$b=explode(' ','a a a a a c e e e e i i i i n o o o o o u u u u y y A A A A A C E E E E I I I I N O O O O O U U U U Y');return str_replace($a,$b,$string);}
|
||||||
|
function returncurrenturl(){$domaine=dirname($_SERVER['SERVER_PROTOCOL']) . "://" . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] ;$domaine=explode('?',$domaine);return $domaine[0];}
|
||||||
|
function store($file,$datas){file_put_contents($file,serialize($datas));}
|
||||||
|
function unstore($file){ return unserialize(file_get_contents($file));}
|
||||||
|
function search($public='public',$tag=false){
|
||||||
|
global $GLOBAL;
|
||||||
|
//$GLOBAL['tag_array'];
|
||||||
|
if (!$tag){return scandir($GLOBAL[$public.'_data_folder'] );}
|
||||||
|
else{
|
||||||
|
foreach ($GLOBAL['tag_array'][$public] as $key=>$val){
|
||||||
|
if (stripos($val,$tag)!==false){$result[]=$key;}
|
||||||
|
}
|
||||||
|
if (!empty($result)){return $result;}else{return array();}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function array2feed($array=null){
|
||||||
|
// more infos on this function at https://github.com/broncowdd/feed2array
|
||||||
|
if (!$array){return false;}
|
||||||
|
if (empty($array['infos']['type'])){$array['infos']['type']='rss';}else{$array['infos']['type']=strtolower($array['infos']['type']);}
|
||||||
|
if (empty($array['infos']['description'])){$array['infos']['description']='';}
|
||||||
|
$r="\n";$t="\t";
|
||||||
|
$tpl=array('rss'=>array(),'atom'=>array());
|
||||||
|
$tpl['rss']['header']='<?xml version="1.0" encoding="utf-8" ?>'.$r.'<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/">'.$r.$t.'<channel>'.$r;
|
||||||
|
$tpl['atom']['header']='<feed xmlns="http://www.w3.org/2005/Atom">'.$r;
|
||||||
|
$tpl['rss']['footer']=$t.'</channel></rss>'.$r;
|
||||||
|
$tpl['atom']['footer']='</feed>'.$r;
|
||||||
|
$tpl['rss']['content-type']='Content-Type: application/rss+xml';
|
||||||
|
$tpl['atom']['content-type']='Content-Type: application/atom+xml;charset=utf-8';
|
||||||
|
header($tpl[$array['infos']['type']]['content-type']);
|
||||||
|
$feed=$tpl[$array['infos']['type']]['header'];
|
||||||
|
//create the feed's info content
|
||||||
|
foreach($array['infos'] as $key=>$value){
|
||||||
|
if ($array['infos']['type']=='atom'){ // ATOM
|
||||||
|
if ($key=='link'){$feed.=$t.$t.'<link href="'.$value.'" rel="self" type="application/atom+xml"/>'.$r;}
|
||||||
|
elseif ($key=='author'){$feed.=$t.$t.'<author><name>'.$value.'</name></author>'.$r;}
|
||||||
|
elseif ($key=='licence'){$feed.=$t.$t.'<'.$key.' href="'.$value.'" rel="license"/>'.$r;} // in atom feed, licence is the link to the licence type
|
||||||
|
elseif ($key!='version'&&$key!='type'){$feed.=$t.$t.'<'.$key.'>'.$value.'</'.$key.'>'.$r;}
|
||||||
|
}else{ // RSS
|
||||||
|
if ($key!='version'&&$key!='type'){$feed.=$t.$t.'<'.$key.'>'.$value.'</'.$key.'>'.$r;}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//then the items content
|
||||||
|
foreach ($array['items'] as $item){
|
||||||
|
if ($array['infos']['type']=='atom'){ $feed.=$t.$t.$t.'<entry>'.$r;}else{$feed.=$t.$t.$t.'<item>'.$r;}
|
||||||
|
foreach($item as $key=>$value){
|
||||||
|
if ($array['infos']['type']=='atom'){ // ATOM
|
||||||
|
if ($key=='link'){$feed.=$t.$t.$t.$t.'<link href="'.$value.'" rel="alternate" type="text/html"/>'.$r;}
|
||||||
|
elseif ($key=='content'){$feed.=$t.$t.$t.$t.'<content type="text">'.htmlspecialchars($value).'</content>'.$r;}
|
||||||
|
else{$feed.=$t.$t.$t.$t.'<'.$key.'>'.$value.'</'.$key.'>'.$r;}
|
||||||
|
}else{ // RSS
|
||||||
|
if ($key=='date'||$key=='pubDate'||$key=='title'||$key=='link'){$feed.=$t.$t.$t.$t.'<'.$key.'>'.htmlspecialchars($value).'</'.$key.'>'.$r;}
|
||||||
|
elseif($key=='guid'){ $feed.=$t.$t.$t.$t.'<guid isPermaLink="false">'.$value.'</guid>'.$r;}
|
||||||
|
else{$feed.=$t.$t.$t.$t.'<'.$key.'><![CDATA['.$value.']]></'.$key.'>'.$r;}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if ($array['infos']['type']=='atom'){ $feed.=$t.$t.$t.'</entry>'.$r;}else{$feed.=$t.$t.$t.'</item>'.$r;}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
$feed.=$tpl[$array['infos']['type']]['footer'];
|
||||||
|
return $feed;
|
||||||
|
}
|
||||||
|
function tagcloud(){
|
||||||
|
global $GLOBAL;
|
||||||
|
$array=array();
|
||||||
|
if (!$GLOBAL['public']){
|
||||||
|
foreach ($GLOBAL['tag_array']['private'] as $key=>$tag){
|
||||||
|
$tags=explode(' ',$tag);
|
||||||
|
foreach ($tags as $t){
|
||||||
|
if (!isset($array[$t]['nb'])){$array[$t]['nb']=1;}else{$array[$t]['nb']++;}
|
||||||
|
if (!isset($array[$t]['status'])){$array[$t]['status']='private';}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
foreach ($GLOBAL['tag_array']['public'] as $key=>$tag){
|
||||||
|
$tags=explode(' ',$tag);
|
||||||
|
foreach ($tags as $t){
|
||||||
|
if (!isset($array[$t]['nb'])){$array[$t]['nb']=1;}else{$array[$t]['nb']++;}
|
||||||
|
if (!isset($array[$t]['status'])){$array[$t]['status']='public';}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach ($array as $tag=>$val){
|
||||||
|
echo '<a class="tag_'.$val['status'].'" href="'.$GLOBAL['respawn_url'].'?tag='.$tag.'">'.$tag.' <em>'.$val['nb'].'</em></a>';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function tag2links($tagstring){
|
||||||
|
global $GLOBAL;
|
||||||
|
$array=explode(' ',$tagstring);$links='';
|
||||||
|
foreach ($array as $tag){
|
||||||
|
$links.='<a href="'.$GLOBAL['respawn_url'].'?tag='.$tag.'" class="tag">'.$tag.'</a>';
|
||||||
|
}
|
||||||
|
return $links;
|
||||||
|
}
|
||||||
if(isset($_GET['publicget'])||isset($_GET['privateget'])){$bodyclass.=' iframe';}
|
if(isset($_GET['publicget'])||isset($_GET['privateget'])){$bodyclass.=' iframe';}
|
||||||
$bodyclass=bodyclasses($bodyclass);$target='';
|
$bodyclass=bodyclasses($bodyclass);$target='';
|
||||||
|
|
||||||
|
@ -22,7 +124,7 @@ $bodyclass=bodyclasses($bodyclass);$target='';
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* all the enhancements (logo, css, session lock, bookmarklet) are from Bronco (www.warriordudimanche.net)
|
/* all the enhancements (logo, css, session lock, bookmarklet, tags, rss feed, api) are from Bronco (www.warriordudimanche.net)
|
||||||
* and are based on the same licence ;)
|
* and are based on the same licence ;)
|
||||||
* thanks a lot to Timo for his great job on this app ;) */
|
* thanks a lot to Timo for his great job on this app ;) */
|
||||||
|
|
||||||
|
@ -32,20 +134,27 @@ error_reporting(-1);
|
||||||
date_default_timezone_set('UTC');
|
date_default_timezone_set('UTC');
|
||||||
// CONFIGURABLE OPTIONS
|
// CONFIGURABLE OPTIONS
|
||||||
// change those directories'names for more security
|
// change those directories'names for more security
|
||||||
$GLOBALS['data_folder'] = 'mypersonaldata';
|
$GLOBAL['data_folder'] = 'mypersonaldata';
|
||||||
$GLOBALS['private_data_folder'] = $GLOBALS['data_folder'].'/private';
|
$GLOBAL['private_data_folder'] = $GLOBAL['data_folder'].'/private';
|
||||||
$GLOBALS['public_data_folder'] = $GLOBALS['data_folder'].'/public';
|
$GLOBAL['public_data_folder'] = $GLOBAL['data_folder'].'/public';
|
||||||
$GLOBALS['default_data_folder'] = $GLOBALS['public_data_folder'];
|
$GLOBAL['default_data_folder'] = $GLOBAL['public_data_folder'];//change to private_data_folder to make private the default status
|
||||||
$GLOBAL['version']='1.3';
|
$GLOBAL['version']='2.0';
|
||||||
$GLOBALS['message'] = 'Votre webliothèque perso';
|
$GLOBAL['rss_title']='Respawn: le flux de la webliothèque';
|
||||||
$GLOBALS['public_title'] = 'Voici la webliothèque publique de Bronco';
|
$GLOBAL['rss_description']='Le respawn de warriordudimanche.net';
|
||||||
|
$GLOBAL['respawn_url']=returncurrenturl();
|
||||||
|
$GLOBAL['message'] = 'Votre webliothèque perso';
|
||||||
|
$GLOBAL['public_title'] = 'Voici la webliothèque publique de Bronco';
|
||||||
$bookmarklet='<a title="Drag this link to your shortcut bar" href=\'javascript:javascript:(function(){var url = location.href;window.open("http://'.$_SERVER['SERVER_NAME'].$_SERVER['PHP_SELF'].'?q="+ encodeURIComponent(url),"_blank","menubar=yes,height=600,width=1000,toolbar=yes,scrollbars=yes,status=yes");})();\' >Bookmarklet</a>';
|
$bookmarklet='<a title="Drag this link to your shortcut bar" href=\'javascript:javascript:(function(){var url = location.href;window.open("http://'.$_SERVER['SERVER_NAME'].$_SERVER['PHP_SELF'].'?q="+ encodeURIComponent(url),"_blank","menubar=yes,height=600,width=1000,toolbar=yes,scrollbars=yes,status=yes");})();\' >Bookmarklet</a>';
|
||||||
$column_width='width:47%';
|
$column_width='width:47%';
|
||||||
if ($public){$bookmarklet='';$column_width='width:97%';}
|
if ($GLOBAL['public']){$bookmarklet='';$column_width='width:97%';}
|
||||||
if (!creer_dossier($GLOBALS['data_folder'], TRUE)) { die('Cant create '.$GLOBALS['data_folder'].' folder.'); }
|
if (!creer_dossier($GLOBAL['data_folder'], TRUE)) { die('Cant create '.$GLOBAL['data_folder'].' folder.'); }
|
||||||
if (!creer_dossier($GLOBALS['data_folder'].'/zipversions', TRUE)) { die('Cant create '.$GLOBALS['data_folder'].'/zipversions'.' folder.'); }
|
if (!creer_dossier($GLOBAL['data_folder'].'/zipversions', TRUE)) { die('Cant create '.$GLOBAL['data_folder'].'/zipversions'.' folder.'); }
|
||||||
if (!creer_dossier($GLOBALS['private_data_folder'], TRUE)) { die('Cant create '.$GLOBALS['private_data_folder'].' folder.'); }
|
if (!creer_dossier($GLOBAL['private_data_folder'], TRUE)) { die('Cant create '.$GLOBAL['private_data_folder'].' folder.'); }
|
||||||
if (!creer_dossier($GLOBALS['public_data_folder'], TRUE)) { die('Cant create '.$GLOBALS['public_data_folder'].' folder.'); }
|
if (!creer_dossier($GLOBAL['public_data_folder'], TRUE)) { die('Cant create '.$GLOBAL['public_data_folder'].' folder.'); }
|
||||||
|
if (is_file($GLOBAL['data_folder'].'/tags.txt')){$GLOBAL['tag_array']=unstore($GLOBAL['data_folder'].'/tags.txt');}else{$GLOBAL['tag_array']=array('public'=>array(),'private'=>array());store($GLOBAL['data_folder'].'/tags.txt',$GLOBAL['tag_array']);}
|
||||||
|
if (!isset($GLOBAL['tag_array']['public'])){$GLOBAL['tag_array']['public']=array();};
|
||||||
|
if (!isset($GLOBAL['tag_array']['private'])){$GLOBAL['tag_array']['private']=array();};
|
||||||
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// BEGIN SCRIPT
|
// BEGIN SCRIPT
|
||||||
|
@ -62,9 +171,9 @@ if (!creer_dossier($GLOBALS['public_data_folder'], TRUE)) { die('Cant create '.$
|
||||||
|
|
||||||
// init
|
// init
|
||||||
// url not yet retrieved
|
// url not yet retrieved
|
||||||
$GLOBALS['done']['d'] = FALSE;
|
$GLOBAL['done']['d'] = FALSE;
|
||||||
|
|
||||||
if (!$public){
|
if (!$GLOBAL['public']){ // private
|
||||||
// Get URL to save.
|
// Get URL to save.
|
||||||
if (!empty($_GET['q'])) {
|
if (!empty($_GET['q'])) {
|
||||||
|
|
||||||
|
@ -73,39 +182,39 @@ if (!$public){
|
||||||
if (strpos($url, '://') === false) {
|
if (strpos($url, '://') === false) {
|
||||||
$url = 'http://'.$url;
|
$url = 'http://'.$url;
|
||||||
}
|
}
|
||||||
$GLOBALS['url'] = $url;
|
$GLOBAL['url'] = $url;
|
||||||
$url_p = url_parts();
|
$url_p = url_parts();
|
||||||
|
|
||||||
// retrieve the file main HTML file
|
// retrieve the file main HTML file
|
||||||
|
|
||||||
$GLOBALS['main_page_data'] = get_external_file($GLOBALS['url'], 6);
|
$GLOBAL['main_page_data'] = get_external_file($GLOBAL['url'], 6);
|
||||||
|
|
||||||
|
|
||||||
if ($GLOBALS['main_page_data'] === FALSE) {
|
if ($GLOBAL['main_page_data'] === FALSE) {
|
||||||
die('error retrieving external main page');
|
die('error retrieving external main page');
|
||||||
}
|
}
|
||||||
|
|
||||||
else {
|
else {
|
||||||
// crée le nouveau dossier basé sur le TS.
|
// crée le nouveau dossier basé sur le TS.
|
||||||
$new_folder = date('Y-m-d-H-i-s');
|
$new_folder = date('Y-m-d-H-i-s');
|
||||||
if (!creer_dossier($GLOBALS['default_data_folder'].'/'.$new_folder) === TRUE ) {
|
if (!creer_dossier($GLOBAL['default_data_folder'].'/'.$new_folder) === TRUE ) {
|
||||||
die('error creating data folder');
|
die('error creating data folder');
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$GLOBALS['target_folder'] = $GLOBALS['default_data_folder'].'/'.$new_folder;
|
$GLOBAL['target_folder'] = $GLOBAL['default_data_folder'].'/'.$new_folder;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*GESTION DU PDF ICI*/
|
/*GESTION DU PDF ICI*/
|
||||||
if (strtolower(substr($_GET['q'],-4))=='.pdf'){
|
if (strtolower(substr($_GET['q'],-4))=='.pdf'){
|
||||||
$title=basename($_GET['q']);
|
$title=basename($_GET['q']);
|
||||||
file_put_contents($GLOBALS['target_folder'].'/'.$title,$GLOBALS['main_page_data']);
|
file_put_contents($GLOBAL['target_folder'].'/'.$title,$GLOBAL['main_page_data']);
|
||||||
file_put_contents($GLOBALS['target_folder'].'/index.php','<?php header("location: '.$title.'");?>');
|
file_put_contents($GLOBAL['target_folder'].'/index.php','<?php header("location: '.$title.'");?>');
|
||||||
}else{
|
}else{
|
||||||
|
|
||||||
|
|
||||||
$liste_css = array();
|
$liste_css = array();
|
||||||
// parse le fichier principal à la recherche de données à télécharger
|
// parse le fichier principal à la recherche de données à télécharger
|
||||||
$files = list_retrievable_data($GLOBALS['url'], $GLOBALS['main_page_data']);
|
$files = list_retrievable_data($GLOBAL['url'], $GLOBAL['main_page_data']);
|
||||||
// les récupère et les enregistre.
|
// les récupère et les enregistre.
|
||||||
//echo '<pre>';print_r($files);die();
|
//echo '<pre>';print_r($files);die();
|
||||||
foreach ($files as $i => $file) {
|
foreach ($files as $i => $file) {
|
||||||
|
@ -115,20 +224,20 @@ if (!$public){
|
||||||
$liste_css[] = $file;
|
$liste_css[] = $file;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
file_put_contents($GLOBALS['target_folder'].'/'.$file['nom_destination'], $data);
|
file_put_contents($GLOBAL['target_folder'].'/'.$file['nom_destination'], $data);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// remplace juste les liens <a href=""> relatifs vers des liens absolus
|
// remplace juste les liens <a href=""> relatifs vers des liens absolus
|
||||||
absolutes_links($GLOBALS['main_page_data']);
|
absolutes_links($GLOBAL['main_page_data']);
|
||||||
|
|
||||||
// enregistre le fichier HTML principal
|
// enregistre le fichier HTML principal
|
||||||
file_put_contents($GLOBALS['target_folder'].'/'.'index.html', $GLOBALS['main_page_data']);
|
file_put_contents($GLOBAL['target_folder'].'/'.'index.html', $GLOBAL['main_page_data']);
|
||||||
|
|
||||||
// récupère le titre de la page
|
// récupère le titre de la page
|
||||||
// cherche le charset spécifié dans le code HTML.
|
// cherche le charset spécifié dans le code HTML.
|
||||||
// récupère la balise méta tout entière, dans $meta
|
// récupère la balise méta tout entière, dans $meta
|
||||||
preg_match('#<meta .*charset=.*>#Usi', $GLOBALS['main_page_data'], $meta);
|
preg_match('#<meta .*charset=.*>#Usi', $GLOBAL['main_page_data'], $meta);
|
||||||
|
|
||||||
// si la balise a été trouvée, on tente d’isoler l’encodage.
|
// si la balise a été trouvée, on tente d’isoler l’encodage.
|
||||||
if (!empty($meta[0])) {
|
if (!empty($meta[0])) {
|
||||||
|
@ -138,7 +247,7 @@ if (!$public){
|
||||||
$html_charset = (!empty($enc[1])) ? strtolower($enc[1]) : 'utf-8';
|
$html_charset = (!empty($enc[1])) ? strtolower($enc[1]) : 'utf-8';
|
||||||
} else { $html_charset = 'utf-8'; }
|
} else { $html_charset = 'utf-8'; }
|
||||||
// récupère le titre, dans le tableau $titles, rempli par preg_match()
|
// récupère le titre, dans le tableau $titles, rempli par preg_match()
|
||||||
preg_match('#<title>(.*)</title>#Usi', $GLOBALS['main_page_data'], $titles);
|
preg_match('#<title>(.*)</title>#Usi', $GLOBAL['main_page_data'], $titles);
|
||||||
if (!empty($titles[1])) {
|
if (!empty($titles[1])) {
|
||||||
$html_title = trim($titles[1]);
|
$html_title = trim($titles[1]);
|
||||||
// ré-encode le titre en UTF-8 en fonction de son encodage.
|
// ré-encode le titre en UTF-8 en fonction de son encodage.
|
||||||
|
@ -224,14 +333,14 @@ if (!$public){
|
||||||
|
|
||||||
if (!preg_match('#(css|php|txt|html)#', $file['url_fichier']) ) {
|
if (!preg_match('#(css|php|txt|html)#', $file['url_fichier']) ) {
|
||||||
if (FALSE !== ($f = get_external_file($url_fichier, 3)) ) {
|
if (FALSE !== ($f = get_external_file($url_fichier, 3)) ) {
|
||||||
file_put_contents($GLOBALS['target_folder'].'/'.$nouveau_nom, $f);
|
file_put_contents($GLOBAL['target_folder'].'/'.$nouveau_nom, $f);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// don't forget to save data
|
// don't forget to save data
|
||||||
file_put_contents($GLOBALS['target_folder'].'/'.$file['nom_destination'], $data);
|
file_put_contents($GLOBAL['target_folder'].'/'.$file['nom_destination'], $data);
|
||||||
}
|
}
|
||||||
$n++;
|
$n++;
|
||||||
$count = count($liste_css);
|
$count = count($liste_css);
|
||||||
|
@ -239,12 +348,12 @@ if (!$public){
|
||||||
}
|
}
|
||||||
// enregistre un fichier d’informations concernant la page (date, url, titre)
|
// enregistre un fichier d’informations concernant la page (date, url, titre)
|
||||||
$info = '';
|
$info = '';
|
||||||
$info .= 'URL="'.$GLOBALS['url'].'"'."\n";
|
$info .= 'URL="'.$GLOBAL['url'].'"'."\n";
|
||||||
$info .= 'TITLE="'.$title.'"'."\n";
|
$info .= 'TITLE="'.$title.'"'."\n";
|
||||||
$info .= 'DATE="'.time().'"'."\n";
|
$info .= 'DATE="'.time().'"'."\n";
|
||||||
file_put_contents($GLOBALS['target_folder'].'/'.'index.ini', $info);
|
file_put_contents($GLOBAL['target_folder'].'/'.'index.ini', $info);
|
||||||
/*$GLOBALS['done']['d'] = 'ajout';
|
/*$GLOBAL['done']['d'] = 'ajout';
|
||||||
$GLOBALS['done']['lien'] = $GLOBALS['target_folder'].'/'; */
|
$GLOBAL['done']['lien'] = $GLOBAL['target_folder'].'/'; */
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -264,7 +373,7 @@ if (!$public){
|
||||||
}
|
}
|
||||||
// then the folder itself.
|
// then the folder itself.
|
||||||
if (TRUE === rmdir($_GET['suppr'])) {
|
if (TRUE === rmdir($_GET['suppr'])) {
|
||||||
$GLOBALS['done']['d'] = 'remove';
|
$GLOBAL['done']['d'] = 'remove';
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -275,70 +384,145 @@ if (!$public){
|
||||||
// to private
|
// to private
|
||||||
if (isset($_GET['toprivate']) and $torem = $_GET['toprivate'] and $torem != '') {
|
if (isset($_GET['toprivate']) and $torem = $_GET['toprivate'] and $torem != '') {
|
||||||
$torem = htmlspecialchars($_GET['toprivate']);
|
$torem = htmlspecialchars($_GET['toprivate']);
|
||||||
if (is_dir($GLOBALS['public_data_folder'].'/'.$_GET['toprivate'])){
|
if (is_dir($GLOBAL['public_data_folder'].'/'.$_GET['toprivate'])){
|
||||||
rename ($GLOBALS['public_data_folder'].'/'.$_GET['toprivate'],$GLOBALS['private_data_folder'].'/'.$_GET['toprivate']);
|
rename ($GLOBAL['public_data_folder'].'/'.$_GET['toprivate'],$GLOBAL['private_data_folder'].'/'.$_GET['toprivate']);
|
||||||
header("location: index.php");
|
header("location: index.php");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// to public
|
// to public
|
||||||
if (isset($_GET['topublic']) and $torem = $_GET['topublic'] and $torem != '') {
|
if (isset($_GET['topublic']) and $torem = $_GET['topublic'] and $torem != '') {
|
||||||
$torem = htmlspecialchars($_GET['topublic']);
|
$torem = htmlspecialchars($_GET['topublic']);
|
||||||
if (is_dir($GLOBALS['private_data_folder'].'/'.$_GET['topublic'])){
|
if (is_dir($GLOBAL['private_data_folder'].'/'.$_GET['topublic'])){
|
||||||
rename ($GLOBALS['private_data_folder'].'/'.$_GET['topublic'],$GLOBALS['public_data_folder'].'/'.$_GET['topublic']);
|
rename ($GLOBAL['private_data_folder'].'/'.$_GET['topublic'],$GLOBAL['public_data_folder'].'/'.$_GET['topublic']);
|
||||||
header("location: index.php");
|
header("location: index.php");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// disconnect
|
// disconnect
|
||||||
if (isset($_GET['discotime'])){log_user('disco','');}
|
if (isset($_GET['discotime'])){log_user('disco','');}
|
||||||
|
|
||||||
if (isset($_GET['privateget'])&&is_dir($GLOBALS['private_data_folder'].'/'.$_GET['privateget'])){$target=$GLOBALS['private_data_folder'].'/'.$_GET['privateget'];}
|
if (isset($_GET['privateget'])&&is_dir($GLOBAL['private_data_folder'].'/'.$_GET['privateget'])){$target=$GLOBAL['private_data_folder'].'/'.$_GET['privateget'];}
|
||||||
|
|
||||||
|
|
||||||
if (isset($_GET['zipprivate'])) {
|
if (isset($_GET['zipprivate'])) {
|
||||||
$ini_file = $GLOBALS['private_data_folder'].'/'.$_GET['zipprivate'].'/index.ini';
|
$ini_file = $GLOBAL['private_data_folder'].'/'.$_GET['zipprivate'].'/index.ini';
|
||||||
if(is_file($ini_file)){$info=parse_ini_file($ini_file);}else{$info['TITLE']='';}
|
if(is_file($ini_file)){$info=parse_ini_file($ini_file);}else{$info['TITLE']='';}
|
||||||
$origin_folder_path=$GLOBALS['private_data_folder'].'/'.$_GET['zipprivate'];
|
$origin_folder_path=$GLOBAL['private_data_folder'].'/'.$_GET['zipprivate'];
|
||||||
$zip_foldername=title2filename($info['TITLE']).'-'.$_GET['zipprivate'];
|
$zip_foldername=title2filename($info['TITLE']).'-'.$_GET['zipprivate'];
|
||||||
$zip_filename=$zip_foldername.'.zip';
|
$zip_filename=$zip_foldername.'.zip';
|
||||||
$zip_completepath=$GLOBALS['data_folder'].'/zipversions/'.$zip_filename;
|
$zip_completepath=$GLOBAL['data_folder'].'/zipversions/'.$zip_filename;
|
||||||
if (is_file($zip_completepath)){header("location: $zip_completepath");exit();}// il existe déjà, on envoie
|
if (is_file($zip_completepath)){header("location: $zip_completepath");exit();}// il existe déjà, on envoie
|
||||||
if (is_dir($origin_folder_path)){// sinon on crée le zip si le dossier existe
|
if (is_dir($origin_folder_path)){// sinon on crée le zip si le dossier existe
|
||||||
include 'zip.php';
|
include 'zip.php';
|
||||||
rename ($origin_folder_path,$zip_foldername); // on le déplace pour éviter de voir la structure de dossiers apparaître dans le zip
|
rename ($origin_folder_path,$zip_foldername); // on le déplace pour éviter de voir la structure de dossiers apparaître dans le zip
|
||||||
zip($zip_filename,$zip_foldername,$GLOBALS['data_folder'].'/zipversions/');
|
zip($zip_filename,$zip_foldername,$GLOBAL['data_folder'].'/zipversions/');
|
||||||
rename ($zip_foldername,$origin_folder_path); // on le remet à sa place
|
rename ($zip_foldername,$origin_folder_path); // on le remet à sa place
|
||||||
header('location: '.$GLOBALS['data_folder'].'/zipversions/'.$zip_filename);
|
header('location: '.$GLOBAL['data_folder'].'/zipversions/'.$zip_filename);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
// public get
|
if (isset($_GET['rename'])&&isset($_GET['to'])&&isset($_GET['file'])) {
|
||||||
|
if (is_file($_GET['file'].'/index.ini')){
|
||||||
|
$ini=parse_ini_file($_GET['file'].'/index.ini');
|
||||||
|
|
||||||
|
$old=strip_tags(urldecode($_GET['rename']));
|
||||||
|
$new=strip_tags(urldecode($_GET['to']));
|
||||||
|
$newini='URL="'.$ini['URL'].'"'."\n".'TITLE="'.$new.'"'."\n".'DATE="'.$ini['DATE'].'"';
|
||||||
|
//$ini=str_replace('TITLE="'.$old.'"','TITLE="'.$new.'"',$ini);aff($ini);
|
||||||
|
file_put_contents($_GET['file'].'/index.ini',$newini);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (isset($_GET['settag'])&&isset($_GET['file'])) {
|
||||||
|
if (is_file($GLOBAL['data_folder'].'/tags.txt')){$GLOBAL['tag_array']=unstore($GLOBAL['data_folder'].'/tags.txt');}else{$GLOBAL['tag_array']=array();}
|
||||||
|
if (isset($_GET['ispublic'])){$type='public';}else{$type='private';}
|
||||||
|
$GLOBAL['tag_array'][$type][$_GET['file']]=strip_tags($_GET['settag']);
|
||||||
|
store($GLOBAL['data_folder'].'/tags.txt',$GLOBAL['tag_array']);
|
||||||
|
}
|
||||||
|
}else{ // public get
|
||||||
//download public zip version
|
//download public zip version
|
||||||
if (isset($_GET['zippublic'])) {
|
if (isset($_GET['zippublic'])) {
|
||||||
$ini_file = $GLOBALS['public_data_folder'].'/'.$_GET['zippublic'].'/index.ini';
|
$ini_file = $GLOBAL['public_data_folder'].'/'.$_GET['zippublic'].'/index.ini';
|
||||||
if(is_file($ini_file)){$info=parse_ini_file($ini_file);}else{$info['TITLE']='';}
|
if(is_file($ini_file)){$info=parse_ini_file($ini_file);}else{$info['TITLE']='';}
|
||||||
$origin_folder_path=$GLOBALS['public_data_folder'].'/'.$_GET['zippublic'];
|
$origin_folder_path=$GLOBAL['public_data_folder'].'/'.$_GET['zippublic'];
|
||||||
$zip_foldername=title2filename($info['TITLE']).'-'.$_GET['zippublic'];
|
$zip_foldername=title2filename($info['TITLE']).'-'.$_GET['zippublic'];
|
||||||
$zip_filename=$zip_foldername.'.zip';
|
$zip_filename=$zip_foldername.'.zip';
|
||||||
$zip_completepath=$GLOBALS['data_folder'].'/zipversions/'.$zip_filename;
|
$zip_completepath=$GLOBAL['data_folder'].'/zipversions/'.$zip_filename;
|
||||||
if (is_file($zip_completepath)){header("location: $zip_completepath");exit();}// il existe déjà, on envoie
|
if (is_file($zip_completepath)){header("location: $zip_completepath");exit();}// il existe déjà, on envoie
|
||||||
if (is_dir($origin_folder_path)){// sinon on crée le zip si le dossier existe
|
if (is_dir($origin_folder_path)){// sinon on crée le zip si le dossier existe
|
||||||
include 'zip.php';
|
include 'zip.php';
|
||||||
rename ($origin_folder_path,$zip_foldername); // on le déplace pour éviter de voir la structure de dossiers apparaître dans le zip
|
rename ($origin_folder_path,$zip_foldername); // on le déplace pour éviter de voir la structure de dossiers apparaître dans le zip
|
||||||
zip($zip_filename,$zip_foldername,$GLOBALS['data_folder'].'/zipversions/');
|
zip($zip_filename,$zip_foldername,$GLOBAL['data_folder'].'/zipversions/');
|
||||||
rename ($zip_foldername,$origin_folder_path); // on le remet à sa place
|
rename ($zip_foldername,$origin_folder_path); // on le remet à sa place
|
||||||
header('location: '.$GLOBALS['data_folder'].'/zipversions/'.$zip_filename);
|
header('location: '.$GLOBAL['data_folder'].'/zipversions/'.$zip_filename);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (isset($_GET['publicget'])&&is_dir($GLOBALS['public_data_folder'].'/'.$_GET['publicget'])){$target=$GLOBALS['public_data_folder'].'/'.$_GET['publicget'];}
|
if (isset($_GET['publicget'])&&is_dir($GLOBAL['public_data_folder'].'/'.$_GET['publicget'])){$target=$GLOBAL['public_data_folder'].'/'.$_GET['publicget'];}
|
||||||
|
if (isset($_GET['rss'])){
|
||||||
|
|
||||||
|
$items=array_reverse(search('public',$search_tags));
|
||||||
|
$feed=array(
|
||||||
|
'infos'=>array(
|
||||||
|
'type'=>'rss',
|
||||||
|
'description'=>$GLOBAL['rss_description'],
|
||||||
|
'title'=>$GLOBAL['rss_title'],
|
||||||
|
'link'=>$GLOBAL['respawn_url'],
|
||||||
|
)
|
||||||
|
);
|
||||||
|
foreach ($items as $key=>$item){
|
||||||
|
if ($item!='index.html'){
|
||||||
|
if (is_dir($GLOBAL['public_data_folder'].'/'.$item)){
|
||||||
|
if (is_file($GLOBAL['public_data_folder'].'/'.$item.'/index.ini')){
|
||||||
|
$infos=parse_ini_file($GLOBAL['public_data_folder'].'/'.$item.'/index.ini');
|
||||||
|
date_default_timezone_set('Europe/Paris');
|
||||||
|
$infos['DATE']= date("r", $infos['DATE']);
|
||||||
|
if ($infos['TITLE']==''){$infos['TITLE']='Version Respawn de '.$infos['URL'];}
|
||||||
|
$feed['items'][$key]=array(
|
||||||
|
'description'=>'Version Respawn de '.$infos['URL'],
|
||||||
|
'title'=>$infos['TITLE'],
|
||||||
|
'link'=>$GLOBAL['respawn_url'].'?publicget='.$item,
|
||||||
|
'guid'=>$infos['URL'],
|
||||||
|
'pubDate'=>$infos['DATE'],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
exit(array2feed($feed));
|
||||||
|
}
|
||||||
|
if (isset($_GET['api'])){
|
||||||
|
$content=array();
|
||||||
|
$items=search('public',$search_tags);
|
||||||
|
foreach ($items as $key=>$item){
|
||||||
|
if ($item!='index.html'){
|
||||||
|
if (is_dir($GLOBAL['public_data_folder'].'/'.$item)){
|
||||||
|
if (is_file($GLOBAL['public_data_folder'].'/'.$item.'/index.ini')){
|
||||||
|
$infos=parse_ini_file($GLOBAL['public_data_folder'].'/'.$item.'/index.ini');
|
||||||
|
date_default_timezone_set('Europe/Paris');
|
||||||
|
$infos['DATE']= date('d/m/Y', $infos['DATE']);
|
||||||
|
if ($infos['TITLE']==''){$infos['TITLE']='Respawn de '.$infos['URL'];}
|
||||||
|
$content[$key]=array(
|
||||||
|
'description'=>'Version Respawn de '.$infos['URL'],
|
||||||
|
'title'=>$infos['TITLE'],
|
||||||
|
'respawn_link'=>$GLOBAL['respawn_url'].'?publicget='.$item,
|
||||||
|
'original_link'=>$infos['URL'],
|
||||||
|
'date'=>$infos['DATE'],
|
||||||
|
'tags'=>$GLOBAL['tag_array']['public'][$item],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
exit(serialize($content));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
function url_parts() {
|
function url_parts() {
|
||||||
$url_p['s'] = parse_url($GLOBALS['url'], PHP_URL_SCHEME); $url_p['s'] = (is_null($url_p['s'])) ? '' : $url_p['s'];
|
$url_p['s'] = parse_url($GLOBAL['url'], PHP_URL_SCHEME); $url_p['s'] = (is_null($url_p['s'])) ? '' : $url_p['s'];
|
||||||
$url_p['h'] = parse_url($GLOBALS['url'], PHP_URL_HOST); $url_p['h'] = (is_null($url_p['h'])) ? '' : $url_p['h'];
|
$url_p['h'] = parse_url($GLOBAL['url'], PHP_URL_HOST); $url_p['h'] = (is_null($url_p['h'])) ? '' : $url_p['h'];
|
||||||
$url_p['p'] = parse_url($GLOBALS['url'], PHP_URL_PORT); $url_p['p'] = (is_null($url_p['p'])) ? '' : ':'.$url_p['p'];
|
$url_p['p'] = parse_url($GLOBAL['url'], PHP_URL_PORT); $url_p['p'] = (is_null($url_p['p'])) ? '' : ':'.$url_p['p'];
|
||||||
$url_p['pat'] = parse_url($GLOBALS['url'], PHP_URL_PATH); $url_p['pat'] = (is_null($url_p['pat'])) ? '' : $url_p['pat'];
|
$url_p['pat'] = parse_url($GLOBAL['url'], PHP_URL_PATH); $url_p['pat'] = (is_null($url_p['pat'])) ? '' : $url_p['pat'];
|
||||||
$url_p['file'] = pathinfo($url_p['pat'], PATHINFO_BASENAME);
|
$url_p['file'] = pathinfo($url_p['pat'], PATHINFO_BASENAME);
|
||||||
return $url_p;
|
return $url_p;
|
||||||
}
|
}
|
||||||
|
@ -520,7 +704,7 @@ function add_table_and_replace(&$data, $retrievable, &$match1, $match, $url_p, $
|
||||||
$url_fichier = $url_p['s'].'://'.$url_p['h'].$match;
|
$url_fichier = $url_p['s'].'://'.$url_p['h'].$match;
|
||||||
}
|
}
|
||||||
else { // relative local path
|
else { // relative local path
|
||||||
$uuu = (strlen($url_p['file']) == 0 or preg_match('#/$#', $url_p['pat'])) ? $GLOBALS['url'] : substr($GLOBALS['url'], 0, -strlen($url_p['file'])) ;
|
$uuu = (strlen($url_p['file']) == 0 or preg_match('#/$#', $url_p['pat'])) ? $GLOBAL['url'] : substr($GLOBAL['url'], 0, -strlen($url_p['file'])) ;
|
||||||
$url_fichier = $uuu . substr($match, 0, -strlen($nom_fichier)).$nom_fichier;
|
$url_fichier = $uuu . substr($match, 0, -strlen($nom_fichier)).$nom_fichier;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -564,13 +748,13 @@ function rand_new_name($name) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if ($GLOBALS['done']['d'] !== FALSE) {
|
if ($GLOBAL['done']['d'] !== FALSE) {
|
||||||
switch($GLOBALS['done']['d']) {
|
switch($GLOBAL['done']['d']) {
|
||||||
case 'ajout' :
|
case 'ajout' :
|
||||||
header('Location: index.php?done='.$GLOBALS['done']['d'].'&lien='.urlencode($GLOBALS['url']).'&loclink='.urlencode($GLOBALS['done']['lien']));
|
header('Location: index.php?done='.$GLOBAL['done']['d'].'&lien='.urlencode($GLOBAL['url']).'&loclink='.urlencode($GLOBAL['done']['lien']));
|
||||||
break;
|
break;
|
||||||
case 'remove' :
|
case 'remove' :
|
||||||
header('Location: index.php?done='.$GLOBALS['done']['d']);
|
header('Location: index.php?done='.$GLOBAL['done']['d']);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
echo '</div>'."\n";
|
echo '</div>'."\n";
|
||||||
|
@ -584,23 +768,41 @@ if ($GLOBALS['done']['d'] !== FALSE) {
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
|
<?php
|
||||||
|
if (!empty($_GET['publicget'])){
|
||||||
|
$id=strip_tags($_GET['publicget']);
|
||||||
|
$temp=parse_ini_file($GLOBAL['public_data_folder'].'/'.$id.'/index.ini');
|
||||||
|
$page_title=$temp['TITLE'];
|
||||||
|
}else if (!empty($search_tags)){
|
||||||
|
$page_title='Tag: '.$search_tags;
|
||||||
|
}
|
||||||
|
else{$page_title='Respawn – a PHP WebPage Saver'; }
|
||||||
|
?>
|
||||||
<meta charset="utf-8" /></head>
|
<meta charset="utf-8" /></head>
|
||||||
<title>Respawn – a PHP WebPage Saver</title>
|
<title><?php echo $page_title; ?></title>
|
||||||
<link rel="stylesheet" type="text/css" href="design/style.css"/>
|
<link rel="stylesheet" type="text/css" href="design/style.css"/>
|
||||||
<link rel="shortcut icon" type="/image/png" href="design/favicon2.png">
|
<link rel="shortcut icon" type="/image/png" href="design/favicon2.png">
|
||||||
<!--[if IE]><script> document.createElement("article");document.createElement("aside");document.createElement("section");document.createElement("footer");</script> <![endif]-->
|
<!--[if IE]><script> document.createElement("article");document.createElement("aside");document.createElement("section");document.createElement("footer");</script> <![endif]-->
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
<body <?php echo $bodyclass;?>>
|
<body <?php echo $bodyclass;?>>
|
||||||
<header><a href="<?php echo $_SERVER['PHP_SELF'].$publicarg; ?>"><img src="design/logo2.png"/></a>
|
<header><a href="<?php echo $GLOBAL['respawn_url'].$publicarg; ?>"><img src="design/logo2.png"/></a>
|
||||||
<nav id="orpx_nav-bar">
|
<nav id="orpx_nav-bar">
|
||||||
<?php
|
<?php
|
||||||
if (!$public){
|
if (!$GLOBAL['public']){
|
||||||
echo "\t".'<form method="get" action="'.$_SERVER['PHP_SELF'].'" style="text-align:center">'."\n";
|
echo "\t".'<form method="get" action="'.$_SERVER['PHP_SELF'].'" style="text-align:center">'."\n";
|
||||||
echo "\t\t".'<input id="____q" type="text" size="70" name="q" value="" placeholder="URL from the page to download" />'."\n";
|
echo "\t\t".'<input id="____q" type="text" size="70" name="q" value="" placeholder="URL from the page to download" />'."\n";
|
||||||
echo "\t\t".'<input type="submit" value="Retrieve"/>'."\n";
|
echo "\t\t".'<input type="submit" value="Retrieve"/>'."\n";
|
||||||
echo "\t".'</form>'."\n";
|
echo "\t".'</form>'."\n";
|
||||||
} else{echo '<p>'.$GLOBALS['message'].'</p>';}
|
} else{
|
||||||
|
echo '<p>';
|
||||||
|
if (!empty($target)){echo $page_title.' <a class="zip" href="?zippublic='.strip_tags($_GET['publicget']).'" title="Get ZIP version"></a>';}else{echo $GLOBAL['message'];}
|
||||||
|
echo '</p>';
|
||||||
|
}
|
||||||
|
|
||||||
|
echo '<div class="tag_cloud">';
|
||||||
|
tagcloud();
|
||||||
|
echo '</div>';
|
||||||
?>
|
?>
|
||||||
</nav>
|
</nav>
|
||||||
</header>
|
</header>
|
||||||
|
@ -609,7 +811,8 @@ if ($GLOBALS['done']['d'] !== FALSE) {
|
||||||
if (!empty($target)){
|
if (!empty($target)){
|
||||||
echo '<iframe name="embed" style="min-height: 800px;" src="'.$target.'" width="100%" height="100%" scrolling="auto" frameborder="0" allowtransparency="true" ></iframe>';
|
echo '<iframe name="embed" style="min-height: 800px;" src="'.$target.'" width="100%" height="100%" scrolling="auto" frameborder="0" allowtransparency="true" ></iframe>';
|
||||||
}else{
|
}else{
|
||||||
if (!$public){
|
if (!empty($search_tags)){echo '<h2> Tag : <em>'.$search_tags.'</em> - <a href="'.$GLOBAL['respawn_url'].'">No tag</a></h2><hr/>';}
|
||||||
|
if (!$GLOBAL['public']){
|
||||||
if (isset($_GET['done']) and $_GET['done'] !== FALSE) {
|
if (isset($_GET['done']) and $_GET['done'] !== FALSE) {
|
||||||
echo '<div id="new-link">'."\n";
|
echo '<div id="new-link">'."\n";
|
||||||
switch($_GET['done']) {
|
switch($_GET['done']) {
|
||||||
|
@ -627,16 +830,17 @@ if ($GLOBALS['done']['d'] !== FALSE) {
|
||||||
}
|
}
|
||||||
// public pages
|
// public pages
|
||||||
echo '<div class="public" style="'.$column_width.'">'."\n";
|
echo '<div class="public" style="'.$column_width.'">'."\n";
|
||||||
$liste_pages = scandir($GLOBALS['public_data_folder']);
|
$liste_pages = search('public',$search_tags);
|
||||||
|
|
||||||
if ( ($nb = count($liste_pages)) != 0 ) {
|
if ( ($nb = count($liste_pages)) != 0 ) {
|
||||||
echo '<ul id="liste-pages-sauvees">'."\n";
|
echo '<ul id="liste-pages-sauvees">'."\n";
|
||||||
|
|
||||||
for ($i = 0 ; $i < $nb ; $i++) {
|
for ($i = 0 ; $i < $nb ; $i++) {
|
||||||
// dont list '.' and '..' folders.
|
// dont list '.' and '..' folders.
|
||||||
if (is_dir($GLOBALS['public_data_folder'].'/'.$liste_pages[$i]) and ($liste_pages[$i] != '.') and ($liste_pages[$i] != '..')) {
|
if (is_dir($GLOBAL['public_data_folder'].'/'.$liste_pages[$i]) and ($liste_pages[$i] != '.') and ($liste_pages[$i] != '..')) {
|
||||||
// each folder should contain such a file "index.ini".
|
// each folder should contain such a file "index.ini".
|
||||||
$ini_file = $GLOBALS['public_data_folder'].'/'.$liste_pages[$i].'/index.ini';
|
$ini_file = $GLOBAL['public_data_folder'].'/'.$liste_pages[$i].'/index.ini';
|
||||||
$favicon = glob($GLOBALS['public_data_folder'].'/'.$liste_pages[$i].'/*favicon.*');
|
$favicon = glob($GLOBAL['public_data_folder'].'/'.$liste_pages[$i].'/*favicon.*');
|
||||||
|
|
||||||
$favicon = (isset($favicon[0])) ? $favicon[0] : '';
|
$favicon = (isset($favicon[0])) ? $favicon[0] : '';
|
||||||
if ( is_file($ini_file) and is_readable($ini_file) ) {
|
if ( is_file($ini_file) and is_readable($ini_file) ) {
|
||||||
|
@ -649,29 +853,37 @@ if ($GLOBALS['done']['d'] !== FALSE) {
|
||||||
} else {
|
} else {
|
||||||
$titre = 'titre'; $url = '#'; $date = 'date inconnue';
|
$titre = 'titre'; $url = '#'; $date = 'date inconnue';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$tags=$taglinks='';
|
||||||
|
if (isset($GLOBAL['tag_array']['public'][$liste_pages[$i]])){$tags=$GLOBAL['tag_array']['public'][$liste_pages[$i]];$taglinks=tag2links($GLOBAL['tag_array']['public'][$liste_pages[$i]]);}
|
||||||
echo "\t".'<li>';
|
echo "\t".'<li>';
|
||||||
if (!$public){echo '<a class="suppr" onclick="return window.confirm(\'Sure to remove?\')" href="?suppr='.$GLOBALS['public_data_folder'].'/'.$liste_pages[$i].'" title="suppr"> </a>';}
|
if (!$GLOBAL['public']){echo '<a class="suppr" onclick="return window.confirm(\'Sure to remove?\')" href="?suppr='.$GLOBAL['public_data_folder'].'/'.$liste_pages[$i].'" title="suppr"> </a>';}
|
||||||
echo '<a class="zip" href="?zippublic='.$liste_pages[$i].'" title="Download zip version"> </a><a class="origine" href="'.$url.'" title="origin"> </a> - <a href="?public&publicget='.$liste_pages[$i].'"><img src="'.$favicon.'"/>'.$titre.'</a> <em> ['.$date.']</em>';
|
if (!$GLOBAL['public']){echo '<a class="rename" onclick="rename(\''.$GLOBAL['public_data_folder'].'/'.$liste_pages[$i].'\',\''.$titre.'\',this)" href="" title="rename"> </a>';}
|
||||||
if (!$public){echo '<a href="?toprivate='.$liste_pages[$i].'" class="toprivate" title="Change to private">▶</a></li>'."\n";}else{echo "</li>\n";}
|
if (!$GLOBAL['public']){echo '<a class="tagme" onclick="tag(\'&ispublic\',\''.$liste_pages[$i].'\',\''.$tags.'\',this)" href="#" title="edit tags"> </a>';}
|
||||||
|
echo '<a class="zip" href="?zippublic='.$liste_pages[$i].'" title="Download zip version"> </a><a class="origine" href="'.$url.'" title="origin"> </a> - <a href="?public&publicget='.$liste_pages[$i].'"><img src="'.$favicon.'"/>'.$titre.'</a> <em> ['.$date.']</em> '.$taglinks;
|
||||||
|
if (!$GLOBAL['public']){echo '<a href="?toprivate='.$liste_pages[$i].'" class="toprivate" title="Change to private">▶</a></li>'."\n";}else{echo "</li>\n";}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
echo '</ul>'."\n";
|
echo '</ul>'."\n";
|
||||||
}
|
}else{echo 'Nothing found...';}
|
||||||
echo '</div>'."\n";
|
echo '</div>'."\n";
|
||||||
|
|
||||||
if (!$public){ // don't list private pages
|
|
||||||
|
|
||||||
|
// PRIVATE PAGES ------------------------------------------------------------------------------------------
|
||||||
|
if (!$GLOBAL['public']){
|
||||||
|
|
||||||
echo '<div class="private" style="'.$column_width.'">'."\n";
|
echo '<div class="private" style="'.$column_width.'">'."\n";
|
||||||
$liste_pages = scandir($GLOBALS['private_data_folder']);
|
$liste_pages = search('private',$search_tags);
|
||||||
if ( ($nb = count($liste_pages)) != 0 ) {
|
if ( ($nb = count($liste_pages)) != 0 ) {
|
||||||
echo '<ul id="liste-pages-sauvees">'."\n";
|
echo '<ul id="liste-pages-sauvees">'."\n";
|
||||||
|
|
||||||
for ($i = 0 ; $i < $nb ; $i++) {
|
for ($i = 0 ; $i < $nb ; $i++) {
|
||||||
// dont list '.' and '..' folders.
|
// dont list '.' and '..' folders.
|
||||||
if (is_dir($GLOBALS['private_data_folder'].'/'.$liste_pages[$i]) and ($liste_pages[$i] != '.') and ($liste_pages[$i] != '..')) {
|
if (is_dir($GLOBAL['private_data_folder'].'/'.$liste_pages[$i]) and ($liste_pages[$i] != '.') and ($liste_pages[$i] != '..')) {
|
||||||
// each folder should contain such a file "index.ini".
|
// each folder should contain such a file "index.ini".
|
||||||
$ini_file = $GLOBALS['private_data_folder'].'/'.$liste_pages[$i].'/index.ini';
|
$ini_file = $GLOBAL['private_data_folder'].'/'.$liste_pages[$i].'/index.ini';
|
||||||
$favicon=glob($GLOBALS['private_data_folder'].'/'.$liste_pages[$i].'/*favicon.*');
|
$favicon=glob($GLOBAL['private_data_folder'].'/'.$liste_pages[$i].'/*favicon.*');
|
||||||
$favicon = (isset($favicon[0])) ? $favicon[0] : '';
|
$favicon = (isset($favicon[0])) ? $favicon[0] : '';
|
||||||
if ( is_file($ini_file) and is_readable($ini_file) ) {
|
if ( is_file($ini_file) and is_readable($ini_file) ) {
|
||||||
$infos = parse_ini_file($ini_file);
|
$infos = parse_ini_file($ini_file);
|
||||||
|
@ -683,22 +895,46 @@ if ($GLOBALS['done']['d'] !== FALSE) {
|
||||||
} else {
|
} else {
|
||||||
$titre = 'titre'; $url = '#'; $date = 'date inconnue';
|
$titre = 'titre'; $url = '#'; $date = 'date inconnue';
|
||||||
}
|
}
|
||||||
echo "\t".'<li><a class="suppr" onclick="return window.confirm(\'Sure to remove?\')" href="?suppr='.$GLOBALS['private_data_folder'].'/'.$liste_pages[$i].'" title="suppr"> </a><a class="zip" href="?zipprivate='.$liste_pages[$i].'" title="Download zip version"> </a><a class="origine" href="'.$url.'" title="origin"> </a> - <a href="?privateget='.$liste_pages[$i].'"><img src="'.$favicon.'"/>'.$titre.'</a> <em> ['.$date.']</em><a href="?topublic='.$liste_pages[$i].'" class="topublic" title="Change to public">◀</a></li>'."\n";
|
$tags=$taglinks='';
|
||||||
|
if (isset($GLOBAL['tag_array']['private'][$liste_pages[$i]])){$tags=$GLOBAL['tag_array']['private'][$liste_pages[$i]];$taglinks=tag2links($GLOBAL['tag_array']['private'][$liste_pages[$i]]);}
|
||||||
|
|
||||||
|
echo "\t".'<li><a class="suppr" onclick="return window.confirm(\'Sure to remove?\')" href="?suppr='.$GLOBAL['private_data_folder'].'/'.$liste_pages[$i].'" title="suppr"> </a>
|
||||||
|
<a class="rename" onclick="rename(\''.$GLOBAL['public_data_folder'].'/'.$liste_pages[$i].'\',\''.$titre.'\',this)" href="#" title="rename"> </a>
|
||||||
|
<a class="tagme" onclick="tag(\'\',\''.$liste_pages[$i].'\',\''.$tags.'\',this)" href="#" title="edit tags"> </a>
|
||||||
|
<a class="zip" href="?zipprivate='.$liste_pages[$i].'" title="Download zip version"> </a>
|
||||||
|
<a class="origine" href="'.$url.'" title="origin"> </a> - <a href="?privateget='.$liste_pages[$i].'"><img src="'.$favicon.'"/>'.$titre.'</a> <em> ['.$date.']</em> '.$taglinks.' <a href="?topublic='.$liste_pages[$i].'" class="topublic" title="Change to public">◀</a></li>'."\n";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
echo '</ul>'."\n";
|
echo '</ul>'."\n";
|
||||||
}
|
}else{echo 'Nothing found...';}
|
||||||
echo '</div>'."\n";
|
echo '</div>'."\n";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
</aside>
|
</aside>
|
||||||
<footer>
|
<footer>
|
||||||
<p style='float:left'>
|
<script id='flattrbtn'>(function(i){var f,s=document.getElementById(i);f=document.createElement('iframe');f.src='//api.flattr.com/button/view/?uid=Broncowdd&button=compact&url='+encodeURIComponent(document.URL);f.title='Flattr';f.height=15;f.width=110;f.style.borderWidth=0;s.parentNode.insertBefore(f,s);})('flattrbtn');</script>
|
||||||
<?php if (!$public){echo '<a href="?discotime">Disconnect</a>';}?>
|
<a title='from TiMo' href='http://lehollandaisvolant.net/index.php?mode=links&id=20121211195941'>Respawn</a> (bronco edition v<?php echo $GLOBAL['version'];?>) - <a href='?public'>Public page link</a> -
|
||||||
<?php if (!$public){echo $bookmarklet;} ?></p><p><a title='from TiMo' href='http://lehollandaisvolant.net/index.php?mode=links&id=20121211195941'>Respawn</a> (bronco edition v<?php echo $GLOBAL['version'];?>) - <?php $GLOBALS['message'];?> - <a href='?public'>Public page link</a>
|
<a href="?rss<?php if ($search_tags!='') {echo '&tag='.$search_tags; }?>"> RSS </a> -
|
||||||
<script id='flattrbtn'>(function(i){var f,s=document.getElementById(i);f=document.createElement('iframe');f.src='//api.flattr.com/button/view/?uid=Broncowdd&button=compact&url='+encodeURIComponent(document.URL);f.title='Flattr';f.height=20;f.width=110;f.style.borderWidth=0;s.parentNode.insertBefore(f,s);})('flattrbtn');</script>
|
<?php if (!$GLOBAL['public']){echo $bookmarklet;} ?> -
|
||||||
</p>
|
<?php if (!$GLOBAL['public']){echo '<a href="?discotime">Disconnect</a>';}?>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
function rename(file,oldname,obj){
|
||||||
|
newname= prompt('Rename this page:',oldname);
|
||||||
|
if (newname && newname!=oldname){
|
||||||
|
obj.setAttribute('href',"<?php echo $GLOBAL['respawn_url']; ?>?rename="+encodeURIComponent(oldname)+"&to="+encodeURIComponent(newname)+"&file="+file);
|
||||||
|
|
||||||
|
}else{}
|
||||||
|
}
|
||||||
|
function tag(ispublic,file,oldtags,obj){
|
||||||
|
newtags= prompt('Tags for this page:',oldtags);
|
||||||
|
if (newtags && newtags!=oldtags){
|
||||||
|
obj.setAttribute('href',"<?php echo $GLOBAL['respawn_url']; ?>?settag="+encodeURIComponent(newtags)+"&file="+file+ispublic);
|
||||||
|
|
||||||
|
}else{}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
0
mypersonaldata/tags.txt
Normal file
0
mypersonaldata/tags.txt
Normal file
27
readme.md
27
readme.md
|
@ -1,11 +1,26 @@
|
||||||
|
RESPAWN 2.0:
|
||||||
|
|
||||||
Ceci est un fork de l'appli Respawn de Timo le Hollandais Volant.
|
Ceci est un fork de l'appli Respawn de Timo le Hollandais Volant.
|
||||||
J'ai utilisé le moteur de cette appli et y ai ajouté quelques aspect :
|
J'ai utilisé le moteur de cette appli et y ai ajouté quelques aspect.
|
||||||
-le verrouillage par mot de passe,
|
Nouveautés de la version 2.0:
|
||||||
-deux espaces séparés : un public et un privé (dont on peut (doit!) renommer les dossiers dans la config)
|
- un système de tags pour pouvoir filtrer les pages (bouton (T) pour ajouter modifier les tags d'une page),
|
||||||
-l'ajout (si possible) de la favicon
|
- un flux RSS des pages publiques filtrable par tags également (le lien RSS de la page en cours est en pied de page)
|
||||||
-l'ajout d'icones et d'un design un peu amélioré, même si beaucoup reste à faire (mais là j'ai les yeux qui piquent)
|
- une API permettant de récupérer un array d'infos sur les pages au format sérialisé (on peut également filtrer le résultat par tag)
|
||||||
-l'ajout d'un logo propre à cette appli
|
- un bouton de renommage des titres de page (R)
|
||||||
|
- un bouton pour télécharger le zip de la page qu'on est en train de visionner.
|
||||||
|
|
||||||
|
Ajouts de la version précédente:
|
||||||
|
- un bookmarklet pour respawner directement une page (depuis un ordinateur connecté en tant qu'admin)
|
||||||
|
- le verrouillage par mot de passe,
|
||||||
|
- deux espaces séparés : un public et un privé (dont on peut (doit!) renommer les dossiers dans la config)
|
||||||
|
- l'ajout (si possible) de la favicon
|
||||||
|
- l'ajout d'icones et d'un design un peu amélioré, même si beaucoup reste à faire
|
||||||
|
- l'ajout d'un logo propre à cette appli
|
||||||
|
|
||||||
Merci à Timo pour cette merveille de simplicité et d'efficacité qui concourt à conserver et diffuser l'information !
|
Merci à Timo pour cette merveille de simplicité et d'efficacité qui concourt à conserver et diffuser l'information !
|
||||||
|
|
||||||
|
|
||||||
|
INSTALLATION:
|
||||||
|
Dézippez l'archive sur votre serveur, allez à l'adresse, créez un mot de passe dans la première fenêtre et c'est parti.
|
||||||
|
|
||||||
Bronco - bronco@warriordudimanche.net
|
Bronco - bronco@warriordudimanche.net
|
Reference in a new issue