블로그 이미지

마이실피르넷

일상의 이야기와 여러가지 유용한 정보들을 나누는 공간입니다. by 실피르넷


이클립스 자동줄바꿈 플러그인


이클립스 자동줄바꿈 플러그인

원문 링크 : http://brajeshwar.com/2006/word-wrap-in-eclipse/ 

It is still very buggy but we can live with it; you can enable Word Wrap in Eclipse. It screws up the line number, line height, etc but they will get back to their normal state once you turn off Virtual Word Wrap.

How to install?

  1. Open Eclipse
  2. Help > Software Updates > Find and Install
  3. Search for New Features to Install
  4. New Remote Site
  5. Enter the url – http://ahtik.com/eclipse-update/
  6. Install and Enjoy

It is available as a context-sensitive Menu “Virtual Word Wrap”.

Comment 0 Trackback 0

Trackback : http://my.silpir.net/trackback/424 관련글 쓰기

Top

문서 정보와 문자 코드 세트(meta)


문자 코드 세트 지정
1. 한글 문자 코드 세트
<meta http-equiv="content-type" content="text/html; charset=euc-kr" />
2. 다국어 문자 코드 세트
<meta http-equiv="content-type" content="text/html; charset=utf-8" />

키워드 지정
<meta name="keywords" content="키워드,키워드, ..." />

문서 정보 지정
<meta name="subject" content="문서 제목" />
<meta name="description" content="웹페이지 요약 정보" />
<meta name="author" content="제작자 정보" />
<meta name="robots" content="검색 로봇 제어" />
<meta name="copyright" content="저작권 정보" />
<meta name="generator" content="저작 프로그램" />
<meta http-equiv="pragma" content="no-cache" />
<meta http-equiv="refresh" content="3; url=이동할 주소" />
Comment 0 Trackback 0

Trackback : http://my.silpir.net/trackback/423 관련글 쓰기

Top

문서형 정의 및 선언(DTD ; Document Type Definition)


문서형 정의 및 선언(DTD ; Document Type Definition)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

네임 스페이스, 휴먼 랭귀지
<html xmlns="http://www.w3.org/1999/xhtml" lang="ko" xml:lang="ko">

HTML 4.01
Strict
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">

Transitional
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">

Frameset
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
"http://www.w3.org/TR/html4/frameset.dtd">

XHTML 1.0
Strict
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

Transitional
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

Frameset
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

XHTML 1.1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">


참고 사이트
http://www.webstandards.org/learn/reference/templates/
Comment 0 Trackback 0

Trackback : http://my.silpir.net/trackback/422 관련글 쓰기

Top

prev 1 2 3 4 5 ... 103 next