버전 : doxygen 1.8.0, graphviz 2.28.0


1. 개괄적인 사용법은 여기
http://wiki.kldp.org/wiki.php/Doxygen/%B0%AD%C1%C201

2. download 는 여기
http://www.stack.nl/~dimitri/doxygen/download.html#latestsrc
http://www.graphviz.org/Download_windows.php

3. graphviz  를 이용해서 그래프까지 만들려면 이 문서를 본다
http://blog.naver.com/PostView.nhn?blogId=khbrst&logNo=50112236741


4. Graphviz 경로를 설정해주지 않은 채  dot (그래프) 을 선택해서 실행한 적이 있다면
결과 디렉토리를 지우고 다시 실행한다.

5. DOT_PATH 에 Graphviz   를 적어주어야 한다. DOT_FONTPATH rk

6.  (Expert > Input)  소스 디렉토리 지정한 뒤 recursive 선택할 것.

7. 언어 설정은 expert tab 의 'Project' 와 'Input' 항목이다

8. 기타
http://betle.tistory.com/67




새 PC 는 windows7. 기존 xp 에서 쓰던 mediawiki 1.11.1 이 작동되지 않는다.


1. 데이터베이스 백업

새 pc 에 wamp  새로 설치하고, 옛 pc 에서 mysql db 데이터를 dump 했다.

command 창에서 mysqldump.exe 디렉토리 까지 들어가서 mysqldump 하면 된다.


2. 새 장비에서 데이터베이스 복구

새 pc 에서도 마찬가지로 mysql.exe 이 있는 디렉토리에서 mysql 복구하면 된다


E:\wamp\bin\mysql\mysql5.5.16\bin>m
Enter password:

E:\wamp\bin\mysql\mysql5.5.16\bin>


3. 업데이트 실행 (데이터베이스 구조 수정)

이 단계를 빠뜨리면 글이 입력되기는 하지만 아래 에러 메시지가 출력된다 

 Unknown column 'cl_sortkey_prefix' mediawiki

역시 command 창에서

E:\wamp\bin\php5.3.8>php.exe E:\wamp\www\mediawiki1.18.1\maintenance\update.php


를 실행하면 아래 처럼 화면이 출력되면서 DB 구조가 바뀐다.

 






비밀번호 설정을 따로 하지 않는다. 비밀번호가 필요한 경우는 팝업 창이 떠서 물어본다


j2sdk 링크

카테고리 없음 2012. 3. 26. 16:29
sun 이 오라클에 합병되어서 그런지 j2sdk 다운 받는 곳을 찾기도 힘들다.

http://wilab.inha.ac.kr/ivj/needdownload.html



http://www.indiangeek.net/wp-content/uploads/Programmer%20competency%20matrix.htm

(영문)

kldp 에서 본 링크이다.

하부 디렉토리의 txt 파일에서 hello there 를 찾을 때

findstr /s /c:"hello there" *.txt


findstr /p /s /c:"hello there" *.txt  (binary file 은 제외한다)

출처:http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/findstr.mspx?mfr=true


findstr /?

...

/P : 인쇄할 수 없는 텍스트가 포함된 파일은 건너뜁니다 (Printable)

/S : 현재 디렉토리와 모든 하위 디렉터리에서 일치하는 파일을 찾습니다 (Subdirectory)

/C:파일   지정된 파일롭터 찾는 텍스트를 받습니다



알티베이스 설치 시 생성 된 $ALTIBASE_HOME/lib디렉토리 밑에 JDBC Driver (Altibase.jar)를 pc 에 다운 받는다.
그 jar 파일을 jdbc 설정 창에서 선택

참고 : http://atc.altibase.com/sub08/html_manual/a3/htm/admincenter/ch01s01.html+altibase+admincenter+jdbc+driver+%EC%84%A4%EC%A0%95&cd=1&hl=ko&ct=




Tools > Cusotomize Toolbars 에서
palette 선택

* db 에 있는 모든 테이블
$SYBASE/ASEP/bin/ddlgen -Usa -P -S써버명 -TDB  -N디비명 -Ooutput.file

* 특정 테이블
$SYBASE/ASEP/bin/ddlgen -Usa -P -S써버명 -TU -D디비명 -N테이블명 -Ooutput.file

output.file 은 출력결과를 담을 파일이다