]> 4ch.mooo.com Git - test.git/commitdiff
modified: lib/lib_common.php
authorsparky4 <sparky4@4ch.irc.su>
Thu, 24 Feb 2011 11:27:09 +0000 (05:27 -0600)
committersparky4 <sparky4@4ch.irc.su>
Thu, 24 Feb 2011 11:27:09 +0000 (05:27 -0600)
modified:   yotsubanome.php

lib/lib_common.php
yotsubanome.php

index ebf918b850688a497dfc52eac3362730bc2be02e..1461497a04f5f6f7a5c88fbf5e4938e269ba068f 100755 (executable)
@@ -26,6 +26,7 @@ function PMCCore_errorHandler($errno, $errstr, $errfile, $errline){
 }
 
 /* css data */
+// http://www.magmagateau.com/fuukaba/ is the source of the code below
 $style_load = false;
 $style_bar = '';
 
@@ -64,7 +65,6 @@ if(str_replace('[]', '', $style_bar) == '') $style_load .= '<link rel="styleshee
 $jsdonk = 'var style_cookie = "';
 $jsdonk .= ($style_bar) ? 'yo_style' : '';
 $jsdonk .= '";';
-// http://www.magmagateau.com/fuukaba/ is the source of the code above w
 ////++++
 
 /* 輸出表頭 */
@@ -184,7 +184,7 @@ function foot(&$dat){
 /* 網址自動連結 */
 /* オートリンク */
 function auto_link_callback($matches){
-       return (strtolower($matches[3]) == "</a>") ? $matches[0] : preg_replace('/(https?|ftp|news|gopher)(:\/\/[\w\+\$\;\?\.\{\}%,!#~*\/:@&=_-]+)/u', '<a href="$1$2" rel="_blank">$1$2</a>', $matches[0]);
+       return (strtolower($matches[3]) == "</a>") ? $matches[0] : preg_replace('/(https?|ftp|news|irc|gopher)(:\/\/[\w\+\$\;\?\.\{\}%,!#~*\/:@&=_-]+)/u', '<a href="$1$2" rel="_blank">$1$2</a>', $matches[0]);
 }
 function auto_link($proto){
        $proto = preg_replace('|<br\s*/?>|',"\n",$proto);
index 1f4283d6a522e7c187a4ea29cbe86824a63856fb..d4d4b5dfe583a46339e1304696e3450eacda2892 100755 (executable)
@@ -1111,9 +1111,8 @@ _ADMINEOF_;
 </html>');
 }
 
-////////////////
-// manage_css //
-////////////////
+/* manage_css */
+// http://www.magmagateau.com/fuukaba/ is the source of the code below
 function manage_css(){
        global $PMS, $language;
        $order = array(); $line = '';
@@ -1185,23 +1184,23 @@ function manage_css(){
 
                // Success messages
                $action = (file_exists($style_dat)) ? _t('admin_updated') : _t('admin_created');
-               $delete = (@unlink(CSS_DIR.CSVSS)) ? ' - <span class="warning">'.str_replace('[file]', CSS_DIR.CSVSS, _t('admin_deleted')).'</span>' : false;
+               //---- $delete = (@unlink(CSS_DIR.CSVSS)) ? ' - <span class="warning">'.str_replace('[file]', CSS_DIR.CSVSS, _t('admin_deleted')).'</span>' : false;
                $fp = fopen($style_dat, 'w+');
                set_file_buffer($fp, 0);
                rewind($fp);
                fputs($fp, $line);
                fclose($fp);
                @chmod($style_dat, 0666);
-               echo '<div class="bar_managecss">'.str_replace('[file]', $style_dat, _t('admin_updated')).$delete.'</div>';
+               echo '<div class="bar_managecss">'.str_replace('[file]', $style_dat, _t('admin_updated'))./*----$delete.*/'</div>';
        }
 
        // Editing messages
        if(file_exists(DATA_DIR.CSV_SS)){
                $style_data = DATA_DIR.CSV_SS;
                $style_mode = _t('admin_editing');
-       }else{
-               $style_data = CSS_DIR.CSVSS;
-               $style_mode = _t('admin_imported');
+       //---- }else{
+               //---- $style_data = CSS_DIR.CSVSS;
+               //---- $style_mode = _t('admin_imported');
        }
        echo '<div class="banner"><table width="100%"><tr><th class="bar_managecss">
 '.str_replace('[file]', $style_data, $style_mode).'
@@ -1239,26 +1238,26 @@ function manage_css(){
        }
 
        // Read data from R3 DAT
-       else if(file_exists(CSS_DIR.CSVSS)){
-               $style_data = CSS_DIR.CSVSS;
-               $lines = explode("\n", file_get_contents($style_data));
-               $j = 0;
-               foreach($lines as $null => $line){ // Line has data, or line is not commented out
-                       if(substr($line, 0, 2) != '//' && $line != ''){
-                               $bits = explode('[*]', $line);
-                               $j++;
-                               $style_name = $bits[0];
-                               $style_path = CSS_DIR.$bits[2];
-                               if(file_exists($style_path)){
-                                       $style_short = $bits[1];
-                                       if($bits[3]) $style_rel = ' checked="checked"';
-                                       else $style_rel = false;
-                                       $class = ($j % 2) ? 'row1' : 'row2'; // BG colour
-                                       echo '<tr class="'.$class.'"><td align="left" colspan="2"><label><input name="default" type="radio"'.$style_rel.' value="'.$style_name.'" /> '.$style_path.'</label><input type="hidden" name="path['.$style_name.']" value="'.$bits[2].'" /></td><td align="left"><input name="names['.$style_name.']" value="'.$style_name.'" size="25" /></td><td align="left"><input name="short['.$style_name.']" value="'.$style_short.'" size="5" /></td><td align="left"><input name="order['.$style_name.']" size="2" value="'.$j.'" /></td></tr>';
-                               }
-                       }
-               }
-       }
+       //---- else if(file_exists(CSS_DIR.CSVSS)){
+               //---- $style_data = CSS_DIR.CSVSS;
+               //---- $lines = explode("\n", file_get_contents($style_data));
+               //---- $j = 0;
+               //---- foreach($lines as $null => $line){ // Line has data, or line is not commented out
+                       //---- if(substr($line, 0, 2) != '//' && $line != ''){
+                               //---- $bits = explode('[*]', $line);
+                               //---- $j++;
+                               //---- $style_name = $bits[0];
+                               //---- $style_path = CSS_DIR.$bits[2];
+                               //---- if(file_exists($style_path)){
+                                       //---- $style_short = $bits[1];
+                                       //---- if($bits[3]) $style_rel = ' checked="checked"';
+                                       //---- else $style_rel = false;
+                                       //---- $class = ($j % 2) ? 'row1' : 'row2'; // BG colour
+                                       //---- echo '<tr class="'.$class.'"><td align="left" colspan="2"><label><input name="default" type="radio"'.$style_rel.' value="'.$style_name.'" /> '.$style_path.'</label><input type="hidden" name="path['.$style_name.']" value="'.$bits[2].'" /></td><td align="left"><input name="names['.$style_name.']" value="'.$style_name.'" size="25" /></td><td align="left"><input name="short['.$style_name.']" value="'.$style_short.'" size="5" /></td><td align="left"><input name="order['.$style_name.']" size="2" value="'.$j.'" /></td></tr>';
+                               //---- }
+                       //---- }
+               //---- }
+       //---- }
 
        $j++; $class = ($j % 2) ? 'row1' : 'row2';