"내가 수정한 것들"의 두 판 사이의 차이

ph
이동: 둘러보기, 검색
잔글
5번째 줄: 5번째 줄:
 
*fck editor에서 붙여넣기. 텍스트 뿐 아니라 서식도 가능하게  
 
*fck editor에서 붙여넣기. 텍스트 뿐 아니라 서식도 가능하게  
 
**[http://www.mediawiki.org/wiki/Extension_talk:FCKeditor_(Official)#copy_and_paste_issues.3B_.22Paste_From_Word.22_icon_missing 여기]참고.  
 
**[http://www.mediawiki.org/wiki/Extension_talk:FCKeditor_(Official)#copy_and_paste_issues.3B_.22Paste_From_Word.22_icon_missing 여기]참고.  
**w/extensions/FCKeditor/fckeditor_config.js에서
+
** <div>w/extensions/FCKeditor/fckeditor_config.js에서
 
<source lang="javascript">
 
<source lang="javascript">
 
// Setup the editor toolbar.
 
// Setup the editor toolbar.
13번째 줄: 13번째 줄:
 
         ['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],
 
         ['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],
 
         ['SpecialChar','Table','Image','Rule'],
 
         ['SpecialChar','Table','Image','Rule'],
</source> 이렇게 함. 원래 <source lang="javascript">'PasteText','PasteWord'</source>여기에 주석이 있었음.  
+
</source> 이렇게 함. 원래 <source lang="javascript">'PasteText','PasteWord'</source>여기에 주석이 있었음. </div>
 
**근데 이거 잘 안되고 있으니 다시 한번 잘 들여다볼것.
 
**근데 이거 잘 안되고 있으니 다시 한번 잘 들여다볼것.

2011년 2월 28일 (월) 14:46 판

  • file upload enable
  • syntax highlight extension
  • 모바일 브라우저에서 너무 작게 보이는 문제
    <meta name="viewport" content="width=device-width" />
    
    이걸로 해결
    • (QnA) 이 사이트처럼 초기에는 작다가 확대하면 알아서 텍스트 폭이 변하는건 어떻게 하는걸까. 소스보기에서
      <meta name="viewport" content="width=device-width; initial-scale=1.0">
      
      이렇게 있었지만 이걸 내 위키에 넣어도 원하는대로 동작하지는 않았다.참고자료
  • fck editor에서 붙여넣기. 텍스트 뿐 아니라 서식도 가능하게
    • 여기참고.
    • w/extensions/FCKeditor/fckeditor_config.js에서
// Setup the editor toolbar.
FCKConfig.ToolbarSets['Wiki'] = [
        ['Source'],
        ['Cut','Copy','Paste','PasteText','PasteWord','-','Print'],
        ['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],
        ['SpecialChar','Table','Image','Rule'],

이렇게 함. 원래

'PasteText','PasteWord'

여기에 주석이 있었음.

    • 근데 이거 잘 안되고 있으니 다시 한번 잘 들여다볼것.