본문 바로가기

Dev Story

[svn] trunk, branches, tags 디렉토리 용도 trunk소스의 주 개발 작업을 진행하는 폴더가장 중심이 되는 디렉토리로 소스 개발 작업은 이곳에서 진행됨branches소스의 실험적인 작업을 진행하는 폴더소스의 현재 버전을 유지보수 하고, 현재 버전을 기반으로 차기 버전을 개발할 경우 이 폴더 이용tags현재 릴리즈된 소스를 관리하기 쉽게 따로 보관하는데 사용개발을 위한 것이 아니라 보관을 위해 사용체크아웃하여 커밋 할 경우 경고 메시지가 출력됨 더보기
How To Use 'Syntaxhighlighter' - code highlight Code Highlight Syntaxhighlighter는 소스코드의 가독성을 높여주기 위해 구문을 강조해 주는 Javascript 기반의 라이브러리이다. 티스토리는 스킨관련 작업이 가능해 파일을 업로드 할수 있어 블로그내에 업로드하여 사용할 수 있다.이곳에서 다운로드 받을 수 있다. 파일을 다운로드 받아 압축을 풀면 다음과 같은 디렉토리에 있다. - Scripts : 압축된 형태의 언어별 js파일, clipboard.swf- Styles : SyntaxHighlighter.css- Uncompressed : Scripts의 원본형태 파일다음을 사용하려고 하는 페이지에 삽입한다. 사용방법 - Suppored Language Language Aliases C++ cpp, c, c++ C# c#, c-sh.. 더보기
[tomcat] MAC OS에서 tomcat 설정 1. /bin 디렉토리의 startup.sh 파일을 편집 EXECUATBLE 아래줄에 다음 내용 추가 export JAVA_HOME=/System/Library/Frameworks/JavaVM.framework/Versions/1.5/Home export CATALINA_HOME=/Users/user/tomcat 더보기
[openlayers] GetFeature 지원하지 않는 ContentType 오류 처리 OpenLayers.Reuqest.Post의 Post Request 사용시 기본 Content-Type은 "application-xml" 이다. 서버측에서 요구하는 ContentType이 달라서 그런지 지원하지 않는 ContentType이라는 오류가 발생하였다.옵션에 Content-Type을 정해주면 문제 해결이 되었다. //수정전 var request = OpenLayers.Request.POST({ method: "POST", url: url, data: data, callback: callbackFnc }); //수정후 var request = OpenLayers.Request.POST({ method: "POST", url: url, data: data, headers: { 'Content-Typ.. 더보기
[cvs] 사용자 생성 및 삭제 1. cvs root 설정 - c:\> set cvsroot=:pserver:[사용자 윈도우 계정]@[사용자 IP]:[Repository Name] - ( 예 : set cvsroot=:pserver:administrator@127.0.0.1:/test ) 2. 로그인 - c:\> cvs login - 패스워드 입력 3. 사용자 생성 c:\> cvs passwd -a -r [사용자 윈도우 계정] [cvs 사용자 이름] ( 예 cvs passwd -a -r administrator cvsUser1 사용자 패스워드 입력 ) 4. 사용자 삭제 c:\> cvs passwd -r cvsnt -X [삭제아이디] 더보기
[IIS] Windows XP IIS6에서 동시접속자수 늘리기 커맨드 창에서 다음과 같이 입력하면 된다고 합니다. C:\Inetpub\AdminScripts\adsutil set w3svc/MaxConnections 10 출처 : http://museko.blogspot.com/2009/07/windows-xp-iis.html 더보기
OGC Web Coverage Service (WCS) Web Coverage Service (WCS) 1) Overview The OGC Web Coverage Service (WCS) supports electronic retrieval of geospatial data as "coverages" – that is, digital geospatial information representing space/time-varying phe-nomena. This document specifies the WCS core; every implementation of a WCS shall adhere to this standard. This standard thus defines only basic requirements. Extensions to the core .. 더보기
OGC Web Feature Service (WFS) Web Feature Service (WFS) 1) Overview The WFS specification defines interfaces for describing data manipulation operations of geographic features. Data manipulation operations include the ability to:get or query features based on spatial and non-spatial constraintscreate a new feature instancedelete a feature instanceupdate a feature instanceThe basic Web Feature Service allows querying and retr.. 더보기