Tomcat Server 생성시 Cannot create a server using the selected type
Tomcat Server 생성시

[Cannot create a server using the selected type] 발생

WorkSpace 폴더 안에 다음 경로를 찾는다.

---------------------------------------------------------------

.metadata\.plugins\org.eclipse.core.runtime\.settings

---------------------------------------------------------------

여기에서

org.eclipse.wst.server.core.prefs

org.eclipse.jst.server.tomcat.core.prefs

이 두 파일을 지우고 Eclipse Restart!!
크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기(0) 이올린에 추천하기(0)

Posted by 홍반장

2011/03/22 14:58 2011/03/22 14:58
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/5975

[CSS] CSS 의 선택자(Selector)

CSS에서 선택자(Selector)
: CSS 속성(Property) 1개 또는 그 이상의 속성들을 속성블럭(Property block: {} ) 속에 넣어 놓는 것

일반 선택자의 종류
 1. 공용선택자 :  *   (모든 태그를 지정)
  2.타입선택자:  A   (태그 A를 지정)
  3.클래스선택자: .A  (클래스가 A 인 태그를 지정)
  4.ID선택자  :     #A   (아이디가 A인 태그를 지정)

복합 선택자
  1.하위선택자 : A   B  (태그 A로 감싸져 있는 태그 B를 지정)
  2.자식선택자: A > B  (태그 A로 감싸져 있는 태그 B 중 한 단계 밑에 것을 지정)
  3.인접선택자: A + B  (태그 A와 B가 연속으로 나와 있는 것을 지정)

가상클래스 선택자(Selector) 요소
 1. :first-child 선택자  - A:first-child (태그A로 감싸져 있는 가장 처음 태그를 지정)
 2.언어선택자   -  A:lang(B)    (태그A중 언어가 B로 설정된 것을 지정)
 3.링크선택자  -  A:link          (태그A중 링크가 걸려있으면 지정)
                            A:visited    (태그A중 링크가 걸렸고 사용자가 이미 클릭한 태그를 지정)
 4.동정선택자  - A:active
                           A:hover
                           A:focus

기타 선택자
  :Attribute Selector  -  E[attr]
    - Element 에 사용된 속성(attribute)와 속성값등이 seletor로 지정하는 조건과 일치할때 적용.  ex) *[title]{background-color:gold;} /* titleattribute를 사용하는 문서내의 모든 element(*)에 적용 */

   :Attribute Seletor - E[attr="attVal"] 
      - 같은 속성(attribute)의 속성값이 해당 조건과 일치할때 적용
         ex)  a[href="http://www.ngio.co.kr/"]{font-weight:bold;}

  :Attribute Selector  - E[attr~="attVal"]
    - 속성값이 공백으로 분리되어 여러 개일 경우, 값들중에 해당 조건과 일치하는 경우 적용







크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기(0) 이올린에 추천하기(0)

Posted by 홍반장

2011/03/21 13:40 2011/03/21 13:40
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/5966

[APTANA] aptana에 zen-coding 설치

1. Help > Install New Software

2. http://zen-coding.ru/eclipse/updates/ 아니면 http://media.chikuyonok.ru/eclipse/updates/ 추가하시구요

3. Zen Coding for Eclipse group 체크하세요

4. 설치완료
크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기

Posted by 홍반장

2011/03/21 13:35 2011/03/21 13:35
,
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/5965

웹표준 권고안 확인 사이트

http://validator.w3.org/ - 브라우저 유효성 검사
http://jigsaw.w3.org/css-validator - CSS 유효성 확인
http://www.stg.brown.edu/service/xmlvalid/ - XML유효성 확인
http://www.wah.or.kr/Achive/Kadowah.asp - 한국형 접근성 평가도구

CSS 디자인 코리아 - http://forum.standardmag.org/
크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기(0) 이올린에 추천하기(0)

Posted by 홍반장

2011/03/21 11:43 2011/03/21 11:43
,
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/5964

Safari Developer library

애플에서 제공하는 Safari Developer library
http://developer.apple.com/library/safari/navigation/

애플 개발자센터 - Design.Code.Build.innovate
http://developer.apple.com/
크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기(0) 이올린에 추천하기(0)

Posted by 홍반장

2011/03/21 10:29 2011/03/21 10:29
, ,
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/5963

이클립스 에디터에서 저장시 줄끝 공백제거

1. Window 메뉴 에서 Preferences 창을 엽니다.

2. Java -> Editor -> Save Actions 선택  (아니면 type filter text 에서 save 라고 입력하면 쉽게 검색됨)

3. Addtional actions 옵션을 체크해서 활성시킴

4. Configurre 버튼 클릭

5. Code Organizing 탭 선택

6. Remove trailing whitespace 옵션 체크

7. 라디오버튼에서 모든 라인 혹은 빈라인의 공백 무시중 필요한 것으로 선택


크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기(0) 이올린에 추천하기(0)

Posted by 홍반장

2011/03/18 14:21 2011/03/18 14:21
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/5958

closure-compiler - http://code.google.com/p/closure-compiler/
Compressor - http://javascriptcompressor.com/
크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기(0) 이올린에 추천하기(0)

Posted by 홍반장

2011/03/18 14:05 2011/03/18 14:05
,
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/5957

Html5 적용되는 브라우저별 테스트 - http://html5test.com/
위 주소를 실행시키면 해당 브라우저의 적용 가능한 html5 Tag 가 나오고 점수가 매겨진다.
브라우저 업데이트도 아마 영향이 있을 것이다.


Firefox 4버전으로 변경하고 테스트 해보니 무려 255점이나온다. 헐~



크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기(0) 이올린에 추천하기(0)

Posted by 홍반장

2011/03/18 10:47 2011/03/18 10:47
,
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/5956

모바일웹 모음 - http://m.xiles.net/
사용자 삽입 이미지

크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기(0) 이올린에 추천하기(0)

Posted by 홍반장

2011/03/18 10:13 2011/03/18 10:13
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/5955

국립중앙박물관 모바일웹 http://m.museum.go.kr/

사용자 삽입 이미지

크리에이티브 커먼즈 라이센스
Creative Commons License
이올린에 북마크하기(0) 이올린에 추천하기(0)

Posted by 홍반장

2011/03/18 10:07 2011/03/18 10:07
,
Response
No Trackback , No Comment
RSS :
http://tcbs17.cafe24.com/tc/rss/response/5954

« Previous : 1 : ... 8 : 9 : 10 : 11 : 12 : 13 : 14 : 15 : 16 : ... 101 : Next »

블로그 이미지

- 홍반장

Archives

Recent Trackbacks

Calendar

«   2024/05   »
      1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31  
Statistics Graph

Site Stats

Total hits:
195512
Today:
680
Yesterday:
630