Du-Hyeon's blog

...

Subscribe to RSS feed

SK 텔레콤 TMAP navi 체험단을 모집중

,

노키아 5800 이벤트

봉하오리쌀 예약!

, , , ...

오늘 노하후홈페이지 (http://www.knowhow.or.kr)에서 반가운 메일이 왔다.
봉하오리쌀을 추수해서 판다는 내용이었다.
메일 보고 예약을 했는데 예약한 사람이 많다. 되었으면 좋겠는데... bigsmile

봉하오리쌀 홈페이지 : http://duckrice.bongha.net

인터넷 판매는
예약 => 추첨 => 입금 => 배송완료
순으로 진행되고

3Kg에 1만500원으로 판매한다고 되있다.
택배비는 별도이고 아직 배송업체와 가격을 낮추고 있다고 한다.

게시글 : http://duckrice.bongha.net/bbs_qna/view.php?start=&page=1&path=IyMjIyMj&pri_id=32

배송비 부분을 확인하시면 좋겠습니다.
2008.10.15 10:04 | 관리자 | 조회 496 |
관리자입니다.일단 배송비별도라고 한 것은 맞습니다.그리고 10,500원은 1kg 3개 박스 1개의 판매가격입니다.아직 배송비가 얼마라고 공개하지 않고있습니다.이유는 택배발송업체와 택배비를 놓고 협의중이기 때문입니다.말씀하신 1kg 당 3,500원 별도 배송은 잘못된 정보입니다. 아마 옮기면서 그런것 같으네요...택배비를 낮추기 위해 업체와 협의중이며 1kg 3묶음 1박스 택배비는2,500원 이하에서 결정될 것 같습니다.관심가져 주셔서 감사합니다.





Zsh, Subversion 자동완성(Tab Completion) 수정

, , , ...

OS : Kubuntu 8.04 64bit AMD
Subversion 1.5.1
Zsh 4.3.4

Zsh에서 Subversion 자동완성이 Subversion 1.5이상 버전이 되면서 잘 안되었다.

% svn add sr<TAB>
_arguments:comparguments:303: invalid argument: ARG


불편함을 참고 쓰다가 오늘 맘먹고 찾아서 해결 했다.

방법1)
참고사이트:
http://mkoga.wordpress.com/2008/09/09/zsh-tab-completion-fix-for-subversion-15/
% cd /usr/share/zsh/4.3.4/functions/Completion/Unix
% sudo wget http://gvn.googlecode.com/svn/trunk/contrib/zsh/_subversion

방법2) <= 현재 내가 사용하는 방식이다.
% mkdir ~/.zshfunc
% cd ~/.zshfunc
% wget http://gvn.googlecode.com/svn/trunk/contrib/zsh/_subversion
% cat ~/.zshrc
...
fpath=(~/.zshfunc $fpath)
autoload -U ~/.zshfunc/_*(:t)
%
.zshrc의 맨 밑에 두줄을 추가 한다.


뭐가 틀린가? diff로 확인 해 보면 틀린게 별거 없다.
arg를 ARG로 대소문자 때문에 에러가 발생하는것 같다. ㅡ.ㅡ;;;

% diff -Naur /usr/share/zsh/4.3.4/functions/Completion/Unix/_subversion ~/.zshfunc/_subversion
--- /usr/share/zsh/4.3.4/functions/Completion/Unix/_subversion  2007-11-01 09:41:37.000000000 +0900
+++ /home/x/.zshfunc/_subversion        2008-03-08 08:39:24.000000000 +0900
@@ -30,7 +30,7 @@

         usage=${${(M)${(f)"$(LC_ALL=C _call_program options svn help $cmd)"}:#usage:*}#usage:*$cmd] }
         args=(
-          ${=${${${(M)${(f)"$(LC_ALL=C _call_program options svn help $cmd)"##*Valid options:}:#* :*}%% #:*}/ arg/:arg:}/(#b)-([[:alpha:]]) \[--([a-z-]##)\](:arg:)#/(--$match[2])-$match[1]$match[3] (-$match[1])--$match[2]$match[3]}
+          ${=${${${(M)${(f)"$(LC_ALL=C _call_program options svn help $cmd)"##*Valid options:}:#* :*}%% #:*}/ ARG/:ARG:}/(#b)-([[:alpha:]]) \[--([a-z-]##)\](:ARG:)#/(--$match[2])-$match[1]$match[3] (-$match[1])--$match[2]$match[3]}
         )

         case $cmd in;
@@ -41,7 +41,7 @@
           ;;
           (commit)
             args=(
-             ${args/(#b)(*--file*):arg:/$match[1]:file:_files}
+             ${args/(#b)(*--file*):ARG:/$match[1]:file:_files}
               '*:file:_files -g "*(e:_svn_status:)"'
             )
           ;;
@@ -81,7 +81,7 @@
          (propset)
            args=(
            ':propname:(svn:ignore svn:keywords svn:executable svn:eol-style svn:mime-type svn:externals svn:needs-lock)'
-           ${args/(#b)(*--file*):arg:/$match[1]:file:_files}
+           ${args/(#b)(*--file*):ARG:/$match[1]:file:_files}
            '*:path or url: _alternative "files:file:_files" "urls:URL:_svn_urls"'
            )
          ;;
@@ -148,7 +148,7 @@

         usage=${${(M)${(f)"$(LC_ALL=C _call_program options svnadmin help $cmd)"}:#$cmd:usage:*}#$cmd: usage: svnadmin $cmd }
         args=(
-          ${=${${${(M)${(f)"$(LC_ALL=C _call_program options svnadmin help $cmd)"##*Valid options:}:#*:*}%% #:*}/ arg/:arg:}/(#b)-([[:alpha:]]) \[--([a-z-]##)\](:arg:)#/(--$match[2])-$match[1]$match[3] (-$match[1])--$match[2]$match[3]}
+          ${=${${${(M)${(f)"$(LC_ALL=C _call_program options svnadmin help $cmd)"##*Valid options:}:#*:*}%% #:*}/ ARG/:ARG:}/(#b)-([[:alpha:]]) \[--([a-z-]##)\](:ARG:)#/(--$match[2])-$match[1]$match[3] (-$match[1])--$match[2]$match[3]}
         )
         if [[ $_svnadmin_subcmd_usage == *REPOS_PATH* ]]; then
           args+=( ":path:_files -/" )
%


_subversion_diff01.png
_subversion
_subversion_20081016.diff

시작...

,

오페라 블로그를 처음 시작한다.

이글루스, 블로거, 워드프레스, 오페라블로그

편한 곳을 찾아서 방황을 많이 하는 것 같다. :-)
February 2012
M T W T F S S
January 2012March 2012
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29