Eclipse 3.4 ganimede 에서 처음 로딩시 에러가 발생한다.
'분류 전체보기'에 해당되는 글 951건
- 2009.04.17 eclipse 오디날 찾기 실패
- 2009.04.16 회사에서 필요한 솔루션 - 구글 apps로 회사에서 기본 사용하기
- 2009.04.16 구글 캘린더 음력 사용하기
- 2009.04.13 폴더 파일 비교 프로그램
- 2009.04.10 자바스크립트 행추가 필드추가
- 2009.04.10 WARNING: Parameters: Invalid chunk ignored
- 2009.04.10 개발용 폰트
- 2009.04.09 자바 교육
- 2009.04.08 마인드맵프로그램
- 2009.04.08 eclipse tomcat plugin
메신저
달력 - 일정관리
구글 apps로 회사에서 기본 사용하기
메일
구글 gmail 기본사용
메신저
여기에 구글토크 메신저까지 사내 메신저로 굿.
프로젝트관리
관리자가 캘린더추가하고 여기에 사용자 초대해서 사용하고
그러면 해당 캘린더만 사용가능하니까 좋을듯
인트라넷 게시판?
.
<html>
<script>
var rowIndex = 1;
function addFile(form,k){
if(rowIndex > (5-k)) return false;
var oCurrentRow,oCurrentCell;
var sAddingHtml;
oCurrentRow = insertTable.insertRow();
rowIndex = oCurrentRow.rowIndex;
oCurrentCell = oCurrentRow.insertCell();
rowIndex++;
oCurrentCell.innerHTML = "<tr><td colspan=4><INPUT class=input TYPE=FILE NAME='filename" +rowIndex + "' size=25></td></tr>";
form.rowCount.value = rowIndex;
}
//첨부파일 삭제
function deleteFile(form){
if(rowIndex<2){
return false;
}else{
form.rowCount.value = form.rowCount.value - 1;
rowIndex--;
insertTable.deleteRow(rowIndex);
}
}
</script>
<body>
<form name="write">
<table name='insertTable' id='insertTable' border=0 cellpadding=0 cellspacing=0>
<tr><td valign=bottom><INPUT type='file' maxLength='100' name='filename1' size='25'></td>
<td width=100>
<input type="button" value="추가" onClick="addFile(write,1)" border=0 style='cursor:hand' hspace=4>
<input type="button" value="삭제" onClick='deleteFile(write)' border=0 style='cursor:hand'>
</td>
</tr>
</table>
<input type="hidden" name="rowCount" value="1">
<input type="submit">
</form>
</body>
</html>
tomcat작업시 parameter 전송때마다 로그에 기록되는 다음과 같은 메세지 제거 방법
WARNING: Parameters: Invalid chunk ignored. remove
1. tomcat설치경로/conf/logging.properties 편집
2. org.apache.tomcat.util.http.Parameters.level = SEVERE 추가
tomcat 재시작...
개발용 폰트
프로그래머가 많이 쓰는 폰트
http://namoda.springnote.com/pages/1944118