REDHAT yum repository 설정

|

레드햇 Enterprise 6 의 yum repository를 셋팅한다

/etc/yum.conf 에 추가한다

[base]

name=CentOS-$releasever - Base

baseurl=http://ftp.daum.net/centos/6/os/$basearch/

gpgcheck=1

gpgkey=http://ftp.daum.net/centos/RPM-GPG-KEY-CentOS-6


[updates]

name=CentOS-$releasever - Updates

baseurl=http://ftp.daum.net/centos/6/updates/$basearch

gpgcheck=1

gpgkey=http://ftp.daum.net/centos/RPM-GPG-KEY-CentOS-6


[extras]

name=CentOS-@releasever - Extras

baseurl=http://ftp.daum.net/centos/6/extras/@basearch

gpgcheck=1

gpgkey=http://ftp.daum.net/centos/RPM-GPG-KEY-CentOS-6


[centosplus]

name=CentOS-@releasever - Plus

baseurl=http://ftp.daum.net/centos/6/centosplus/@basearch

gpgcheck=1

gpgkey=http://ftp.daum.net/centos/RPM-GPG-KEY-CentOS-6


And

excel 파일을 위한 api

|

java 에서 excel을 read, write하기 위한 library

Apache POI : support 2007, 2003 (http://poi.apache.org/)

JExelAPI : only support 2003

OpenXls :


And

css table

|
일반적으로 table css시에 colgroup을 통해서 width의 %를 주게되면 cell의 contents에 따라서 원하는 너비로 정리가 안되는데
이부분을 해결하는 방법은 2가지가 있다
1. table-layout:fixed와 overflow:hidden을 사용하는방법
2. table-lyaout:fixedt와 word-wrap:break-word을 통해서 cell의 높이가 커지지만 모든 contents를 다 보여주는방법

table-layout
fixed: 지정된 비율로 table자체가 fix된다
auto: table cell에 있는 contents의 width에 맞춰서 테이블이 구성된다

break-all : cell내용에서 어떤단위라도 width에 안맞으면 new line으로 만들어버린다
hypenate : hypenation point에 대해서 new line을 추가
firefox, opera에서는 동작안한다
 
break-word : 쪼개질수 없는 word를 쪼갠다
width가 적용된 상태에서만 동작한다
 
text-wrap : 
아직 browser에서 지원하지 않음 
And
prev | 1 | 2 | 3 | 4 | ··· | 21 | next