"내가 수정한 것들"의 두 판 사이의 차이
ph
잔글 |
|||
2번째 줄: | 2번째 줄: | ||
*[http://www.mediawiki.org/wiki/Syntaxhighlight syntax highlight extension] | *[http://www.mediawiki.org/wiki/Syntaxhighlight syntax highlight extension] | ||
*모바일 브라우저에서 너무 작게 보이는 문제<source lang="html4strict"><meta name="viewport" content="width=device-width" /></source>이걸로 해결 | *모바일 브라우저에서 너무 작게 보이는 문제<source lang="html4strict"><meta name="viewport" content="width=device-width" /></source>이걸로 해결 | ||
− | ** (QnA) [http://www.smashingmagazine.com/2011/01/11/keeping-web-users-safe-by-sanitizing-input-data/ 이 사이트]처럼 초기에는 작다가 확대하면 알아서 텍스트 폭이 변하는건 어떻게 하는걸까. 소스보기에서 <source lang="html4strict"><meta name="viewport" content="width=device-width; initial-scale=1.0"></source>이렇게 있었지만 이걸 내 위키에 넣어도 원하는대로 동작하지는 않았다.<sup>[https://developer.mozilla.org/en/Mobile/Viewport_meta_tag 참고자료]</sup> | + | **(QnA) [http://www.smashingmagazine.com/2011/01/11/keeping-web-users-safe-by-sanitizing-input-data/ 이 사이트]처럼 초기에는 작다가 확대하면 알아서 텍스트 폭이 변하는건 어떻게 하는걸까. 소스보기에서 <source lang="html4strict"><meta name="viewport" content="width=device-width; initial-scale=1.0"></source>이렇게 있었지만 이걸 내 위키에 넣어도 원하는대로 동작하지는 않았다.<sup>[https://developer.mozilla.org/en/Mobile/Viewport_meta_tag 참고자료]</sup> |
+ | * fck editor에서 붙여넣기. 텍스트 뿐 아니라 서식도 가능하게 | ||
+ | ** [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에서 | ||
+ | <source lang='javascript'> | ||
+ | // Setup the editor toolbar. | ||
+ | FCKConfig.ToolbarSets['Wiki'] = [ | ||
+ | ['Source'], | ||
+ | ['Cut','Copy','Paste','PasteText','PasteWord','-','Print'], | ||
+ | ['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'], | ||
+ | ['SpecialChar','Table','Image','Rule'], | ||
+ | </source> | ||
+ | 이렇게 함. 원래 <source lang='javascript'>'PasteText','PasteWord'</source>여기에 주석이 있었음. |
2011년 2월 28일 (월) 14:40 판
- file upload enable
- syntax highlight extension
- 모바일 브라우저에서 너무 작게 보이는 문제이걸로 해결
<meta name="viewport" content="width=device-width" />
- 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'
여기에 주석이 있었음.