Rename directory to better suit the moving time.
Kind of also fix the apache conf, but not quite.
This commit is contained in:
BIN
old-projects/jap/kanaverter/bak/logo.xcf
Normal file
BIN
old-projects/jap/kanaverter/bak/logo.xcf
Normal file
Binary file not shown.
30
old-projects/jap/kanaverter/bak/t.txt
Normal file
30
old-projects/jap/kanaverter/bak/t.txt
Normal file
@@ -0,0 +1,30 @@
|
||||
function convert_value(str,from,to) {
|
||||
strlen=str.length
|
||||
cstart=0
|
||||
ftxt=""
|
||||
for (i=0;i<strlen;i++) {
|
||||
clen=i-cstart+1
|
||||
ctxt=str.substr(cstart,clen)
|
||||
cctxt=str.substr(cstart+1,1)
|
||||
maybe=false
|
||||
for (ii=0;ii<rhiradbl;ii++) {
|
||||
crhiradb=rhiradb[ii]
|
||||
if (crhiradb==ctxt) {
|
||||
ftxt+=""+r_hiradb[ctxt]+";"
|
||||
cstart=i+1
|
||||
maybe=true
|
||||
}
|
||||
else if (crhiradb.substr(0,clen)==ctxt) {
|
||||
maybe=true
|
||||
}
|
||||
}
|
||||
if (!maybe) {
|
||||
document.title=ctxt
|
||||
//ftxt+=cctxt
|
||||
cstart=i
|
||||
}
|
||||
}
|
||||
//if (strlen>cstart) ftxt+=ctxt
|
||||
ftxt=html_entity_decode(ftxt)
|
||||
return ftxt
|
||||
}
|
||||
Reference in New Issue
Block a user