Changeset 4622

Show
Ignore:
Timestamp:
10/29/07 10:49:36 (2 years ago)
Author:
inureyes
Message:

#710

Location:
trunk
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • trunk/blog/owner/center/about/index.php

    r4575 r4622  
    8888                                                <td class="role"><?php echo _t('Editor / Formatter / Module');?></td> 
    8989                                            </tr> 
     90                                            <tr> 
     91                                                <td class="name"><a href="http://crizin.net">Jaeyong Lee</a></td> 
     92                                                <td class="role"><?php echo _t('RSS Reader');?></td> 
     93                                            </tr> 
    9094                                        </tbody> 
    9195                                    </table> 
     
    200204                            <div id="supporter-description" class="section"> 
    201205                                <h3><span class="text"><?php echo _t('공헌자');?></span></h3> 
    202                                  
     206                                <div id="creators-container" class="container"> 
     207                                    <h4><?php echo _t('Core creator');?></h4> 
     208                                    <p> 
     209                                    <a href="http://interlude.pe.kr">Jaehoon Jeong (0.9x),</a> 
     210                                    <a href="http://papacha.tistory.com">Sunju Jahng (1.0x)</a> 
     211                                    </p> 
     212                                </div>   
    203213                                <div id="contributor-container" class="container"> 
    204214                                    <h4><?php echo _t('Code Contributor');?></h4> 
  • trunk/blog/owner/entry/delete/index.php

    r4599 r4622  
    66$IV = array( 
    77    'POST' => array( 
    8         'targets' => array ('list') 
     8        'targets' => array ('list','mandatory'=>false) 
    99    ) 
    1010); 
     
    1313 
    1414requireStrictRoute(); 
     15 
     16$isAjaxRequest = checkAjaxRequest(); 
    1517 
    1618if(isset($suri['id'])) { 
  • trunk/plugins/FM_Modern/editor.js

    r4594 r4622  
    17411741    html = html.replace(new RegExp("<u([^>]*?)>(.*?)</u>", "gi"), "<ins$1>$2</ins>");  
    17421742    html = html.replace(new RegExp("<strike([^>]*?)>(.*?)</strike>", "gi"), "<del$1>$2</del>");  
    1743      
     1743    // delete blanks 
     1744    html = html.replace(new RegExp("<p>\\s*(<br\\s/?)+", "gi"), "<p>"); 
     1745    html = html.replace(new RegExp("(<br\\s/?>)+\\s*</p>", "gi"), "</p>"); 
     1746    html = html.replace(new RegExp("<p></p>", "gi"), ""); 
     1747    html = html.replace(new RegExp("<li>\\s*<p>", "gi"), "<li>"); 
     1748    html = html.replace(new RegExp("</p>\\s*</li>", "gi"), "</li>"); 
    17441749    if(isWYSIWYG) { 
    17451750        this.contentDocument.body.innerHTML = html;