vi lib/redmine/scm/adapters/subversion_adapter.rb 

str << " --no-auth-cache --non-interactive --config-dir /tmp/subversion_config"


svn ls --config-option config:auth:store-auth-creds=yes --config-dir /tmp/subversion_config https://192.168.0.230/svn/project/trunk


ruby bin/rails runner "Repository.fetch_changesets" -e production


http://www.redmine.org/issues/1273

http://viralpatel.net/blogs/batch-insert-in-java-jdbc/

http://visualstudiogallery.msdn.microsoft.com/8e2103b6-87cf-4fef-9410-a580c434b602

template<typename T>
struct is_vector_impl
{
enum { value = false };
};

template<typename T>
struct is_vector_impl< std::vector<T> >
{
enum { value = true };
};

template<typename T>
struct is_vector
{
enum { value = is_vector_impl< boost::remove_volatile< boost::remove_const< boost::remove_reference<T>::type >::type >::type >::value };
};

BOOST_STATIC_ASSERT( (is_vector<int>::value == false) );
BOOST_STATIC_ASSERT( (is_vector< std::vector<int> >::value == true) );
BOOST_STATIC_ASSERT( (is_vector< const std::vector<int> >::value == true) );
BOOST_STATIC_ASSERT( (is_vector< std::vector<int>& >::value == true) );
BOOST_STATIC_ASSERT( (is_vector< const std::vector<int>& >::value == true) );

레이옷 블로그에 댓글 달고 있다가 자꾸 글자들을 먹어버려서 여기에 포스팅-_-;

'자료 > 내자료' 카테고리의 다른 글

SPE 길찾기용 지형구조 - V2  (1) 2007.02.22
SPE V1 - 길찾기용 지형구조  (9) 2006.12.10
게임을 위한 GUI모듈  (4) 2006.07.31
MSB/LSB template  (0) 2006.05.18
is_template  (0) 2006.05.10
http://www.codeproject.com/gdi/fontfile.asp

이거 못찾았으면 무식하게 폰트 파일 다 열어보는 코드를 만들뻔 했다-ㅅ-;
요새는 정말 구글신 없이는 못살겠다;

덤으로 fonts폴더 경로명 가져오기
 TCHAR szFontPath[_MAX_PATH];
 if( SHGetFolderPath( NULL, CSIDL_FONTS, NULL, SHGFP_TYPE_CURRENT, szFontPath ) == E_FAIL )
  return false;

'자료 > Article' 카테고리의 다른 글

레드마인 visual svn  (0) 2017.01.03
mysql batch job  (0) 2016.07.08
Design and Implementation of a Win32 Text Editor  (0) 2007.06.12
Utilities for STL std::string  (1) 2007.03.27
/ENTRY(진입점 기호)  (2) 2007.03.01
http://www.catch22.net/tuts/editor11.asp

Brand new tutorial series, covering the design and implementation of Neatpad - a text editor written using pure C/C++ Win32 techniques. The entire range of functionality is covered - text file loading, undo and redo, unicode, user-interface details and memory management techniques.

Uniscribe관련 내용이 설명되어 있다.

'자료 > Article' 카테고리의 다른 글

mysql batch job  (0) 2016.07.08
font의 facename으로 displayname및 filename얻어내기  (1) 2007.06.20
Utilities for STL std::string  (1) 2007.03.27
/ENTRY(진입점 기호)  (2) 2007.03.01
Compiler Support for Type Traits  (0) 2007.02.13
저번에도 새버전을 한번 받았었는데 CrashExplorer에서 콜스택 추적이 안되길래 안썼었는데..
이번버전도 그러길래 보니까 버그가 있네요;;
#ifdef 하다가 실수한 부분이;;;;;

수정버전 빌드해서 올려놉니다.

+ Recent posts