Re: [fossil-users] translating fossil

2013-02-06 Thread Александр Орефков
I try some little translation user's web ui to Russian for my web-site. Its really hard and dirty work :( Some text I can translate by modifying header and footer, but other ui was rewriting in sources by many #ifdef LANG_RU ... #elif LANG_EN ... #endif and add -DLANG_RU in Makefile Many

Re: [fossil-users] translating fossil

2013-02-06 Thread Александр Орефков
Imho, need more develop json interface to enable construction of a quick and flexible UI ___ fossil-users mailing list fossil-users@lists.fossil-scm.org http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Re: [fossil-users] Broken alignment in side-by-side diffs

2012-06-20 Thread Александр Орефков
Hi. I temporary use simple crutch in diff.c in sbsWriteText: ... }else if( c=='' p-escHtml ){ memcpy(z[j], gt;, 4); j += 4; }else{ z[j++] = c; /*fix for russian utf-8 - 2 bytes per symbol*/ if( c0 ) { z[j++] = zIn[++i]; } } It worked. At

Re: [fossil-users] Broken alignment in side-by-side diffs

2012-06-20 Thread Александр Орефков
2012/6/20 Martin Gagnon eme...@gmail.com: Le 2012-06-20 à 04:49, Александр Орефков oref...@gmail.com a écrit : Hi. I temporary use simple crutch in diff.c in sbsWriteText: ...    }else if( c=='' p-escHtml ){      memcpy(z[j], gt;, 4);      j += 4;    }else{      z[j++] = c;      /*fix

Re: [fossil-users] Broken alignment in side-by-side diffs

2012-06-20 Thread Александр Орефков
2012/6/20 Lluís Batlle i Rossell vi...@viric.name: yes, that has been reported before. It's quite easy to count utf-8... but maybe not everyone uses utf-8. Should we add a 'setting' for 8-bit or utf-8 characters? In Fossil in web pages header set utf-8 code page, so not utf-8 file text

Re: [fossil-users] Build error in VS 2008 with JSON enabled

2012-06-20 Thread Александр Орефков
Hi. I add that line, and add it: $(OBJDIR)\cson_amalgamation$(O): $(SRCDIR)\cson_amalgamation.c $(TCC) -c $(SRCDIR)\cson_amalgamation.c -o $(OBJDIR)\cson_amalgamation$(O) -DCSON_FOSSIL_MODE And set CFLAGS = -nologo -MT -O2 -DFOSSIL_ENABLE_JSON After it Fossil with JSON builded sucessed

[fossil-users] Anonimous can't create tickets on fossil-scm.org?

2012-06-19 Thread Александр Орефков
subj. Earler I can create tickets on fossil-scm.org, but now I can not. I found some errors in sources, wheare I can pos it? WBR, Alexander Orefkov. ___ fossil-users mailing list fossil-users@lists.fossil-scm.org

[fossil-users] Build error in VS 2008 with JSON enabled

2012-06-19 Thread Александр Орефков
Hi. I was tryed build fossil in VS2008 with JSON enabled, and found some errors in sources. In attach diff file with fixed errors. Also in win\Makefile.msc no cson_amalgamation.c WBR, Alexander Orefkov. diff.diff Description: Binary data ___