Author |
Topic |
|
pokemon
Junior Member
151 Posts |
Posted - 02 October 2002 : 18:36:59
|
Can someone help me how to add the vietnamese font in the forum, which allow our user typing their vietnamese language instead of english..
Thanks for your help< |
Edited by - ruirib on 02 October 2002 20:24:33 |
|
Deleted
deleted
4116 Posts |
Posted - 02 October 2002 : 21:14:06
|
What are you trying to do with what version of Snitz exactly? < |
Stop the WAR! |
|
|
pokemon
Junior Member
151 Posts |
Posted - 02 October 2002 : 22:53:23
|
Well, i'm using Snitz, but there are many of our users are vietnamese that they want to be able to type in Vietnamese and English..In otherhand, i'm not talking about Vietnamese Version for Snitz. Just like in Message box i'm be able to type Vietnamese wording. If someone out there know what the MOD is please help me for version 3.4x
Thanks< |
|
|
cocu
Starting Member
8 Posts |
|
Deleted
deleted
4116 Posts |
Posted - 04 October 2002 : 10:23:57
|
I read it, but what is in that file?
<!--#INCLUDE FILE="mviet/mviet.asp" -->
also what does this function do:
Call MVietRow()
Session.Codepage=65001 means utf-8... < |
Stop the WAR! |
|
|
cocu
Starting Member
8 Posts |
Posted - 04 October 2002 : 12:49:28
|
quote: Originally posted by bozden
I read it, but what is in that file?
<!--#INCLUDE FILE="mviet/mviet.asp" -->
It's a file that include some script that let us typing Vietnamese language directly on web browser!
You can contact the author of that script here: http://www.csun.edu/~ca46617/Support/
quote:
also what does this function do:
Call MVietRow()
It's call the function to display a menu to let people chose which format they want to type Vietnamese language.
You can sent an email to the author of the script here: ngot@dactrung.com
quote:
Session.Codepage=65001 means utf-8...
Yes! It's let server know that the text we submit to database is unicode while utf-8 is let web browser know the text to display is unicode.
< |
|
|
n/a
deleted
593 Posts |
Posted - 04 October 2002 : 16:06:48
|
quote: quote: --------------------------------------------------------------------------------
Session.Codepage=65001 means utf-8...
--------------------------------------------------------------------------------
Yes! It's let server know that the text we submit to database is unicode while utf-8 is let web browser know the text to display is unicode.
Sorry for some basic question (and not directly related with Vietnamese language/input) but will this session statement Session.Codepage=65001 included in config.asp affect how email messages handled as well? I have V4b3x and V3.4 with utf-8 encoding setting, running on native English servers (w/Access200 DB) and having problems with auto response messages handling Japanese etc. and am wondering whether this will set all encoding scheme in unicode (UTF8) for both server/db side including mail server/components handling unicode texts....
TIA,< |
Taku
|
|
|
Deleted
deleted
4116 Posts |
Posted - 05 October 2002 : 02:54:56
|
Very few components support utf-8, some support CJK encodings, most support western encodings, none support all...< |
Stop the WAR! |
|
|
n/a
deleted
593 Posts |
Posted - 05 October 2002 : 04:50:57
|
quote: Originally posted by bozden
Very few components support utf-8, some support CJK encodings, most support western encodings, none support all...
Right.. my personal usage is on top of everything English unlike basing things on a locale enviornment and components... if it is a web mail type enviornment, perhaps it may be ok but with typical server/client enviornment (like I am using Outlook and Outlook Express - with MS Global IME and fonts) this seems to be a continued problem to get fully addressed....??!< |
Taku
|
|
|
BQXL
Starting Member
2 Posts |
Posted - 05 October 2002 : 12:21:39
|
1. Goto http://www.avys.de/js/src/vudownload.html and download vietuni.js
2. Put this on config.asp <%Session.Codepage=65001%>
<head> <META http-equiv=Content-Type content="text/html; charset=utf-8">
..... </head>
3. at the top of file inc_header.asp add these line (remeber change the path of js file):
<script language="JavaScript1.2" src="js/vietuni.js" type='text/javascript'></script>
4. select a tag at the top inc_header.asp and add these line:
ex: response.write ("<a href='default.asp' ><img src='" & strTitleImage & "' border='0'>")
change to:
response.write ("<a href='default.asp' ><img src='" & strTitleImage & "' border='0'") If str_f_vietype = "Auto" then Response.Write "onLoad='setTypingMode(4)'" ElseIf str_f_vietype = "VIQR" then Response.Write "onLoad='setTypingMode(3)'" ElseIf str_f_vietype = "VNI" then Response.Write "onLoad='setTypingMode(2)'" ElseIf str_f_vietype = "TELEX" then Response.Write "onLoad='setTypingMode(1)'" ElseIf str_f_vietype = "OFF" then Response.Write "onLoad='setTypingMode(0)'" Else Response.Write "onLoad='setTypingMode(2)'" str_f_vietype = "VNI" End If
response.write (">")
5. at all input box (Subject, message,... ) which you need to typing Vietnamse, edit it as below:
<textarea cols="70" name="Message" rows="10" wrap="VIRTUAL"><% =Trim(CleanCode(TxtMsg))%></textarea>
Change to:
<textarea cols="70" name="Message" rows="10" wrap="VIRTUAL" onkeyup="telexingVietUC(this,event);"><% =Trim(CleanCode(TxtMsg))%></textarea>
6. and below these text box add these line:
<tr> <td bgColor="<% =strPopUpTableColor %>" valign="top"> <div align="right"><font face="<% =strDefaultFontFace %>" size="<% =strDefaultFontSize %>"><a href="JavaScript:openWindow('VietUniKey.asp')"> <img src="<%= strImageURL %>icon_smile_question.gif" border="0" WIDTH="15" HEIGHT="15"></a> <b>Typing Vietnamese</b></font></div> </td> <td bgColor="<% =strPopUpTableColor %>" valign="top"> <font face="<% =strDefaultFontFace %>" size="<% =strDefaultFontSize %>"> <input type=radio name="switch" value="OFF" onFocus="setTypingMode(0)" <% If str_f_vietype = "OFF" then response.Write "checked"%>>Tat <input type=radio name="switch" value="TELEX" onFocus="setTypingMode(1)" <% If str_f_vietype = "TELEX" then response.Write "checked"%>>Telex <input type=radio name="switch" value="VNI" onFocus="setTypingMode(2)" <% If str_f_vietype = "VNI" then response.Write "checked"%>>VNI <input type=radio name="switch" value="VIQR" onFocus="setTypingMode(3)" <% If str_f_vietype = "VIQR" then response.Write "checked"%>>VIQR <input type=radio name="switch" value="Auto" onFocus="setTypingMode(4)" <% If str_f_vietype = "Auto" then response.Write "checked"%>>Auto </font> </td> </tr> < |
Edited by - BQXL on 05 October 2002 12:23:59 |
|
|
minhluan70
Junior Member
USA
120 Posts |
Posted - 05 October 2002 : 12:54:48
|
If anyone want a Vietnamese Snitz Forums 2000, go to MVIET forum and ask your questions: http://www.vietsuns.com/phorum
Professor Son Pham (MVIET's daddy) of Northridge University is willing to help you to install MVIET for your snitz forum. Note that MVIET works not only for Snitz but also for PHPBB2, invision board, Ikonboard, YabbSE, WebWiz Guide forum, Vbullettin Board, and many different kinds of forum. Regards, < |
Man proposes, God disposes |
|
|
metamorph
Starting Member
2 Posts |
Posted - 05 October 2002 : 13:48:36
|
My site is a good demo about Snitz and MVIET marriage . My members love it . MViet Snitz Demo
VNese language requires some special such as ' ` ~ ? . ^ to place on top or bottom of a vowel . MViet alows to place these characters to any vowel . Check my site !< |
|
|
htdf
Starting Member
7 Posts |
Posted - 21 March 2005 : 21:04:39
|
[quote]Originally posted by metamorph
My site is a good demo about Snitz and MVIET marriage . My members love it . http://vietnamoregon.comMViet Snitz Demo[
vi#7879;tnam
nothing in yoursite----this is how you drive people to your site. GOOD LUCK < |
Edited by - htdf on 21 March 2005 21:21:21 |
|
|
|
Topic |
|