Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 675746 Details for
Bug 825081
[kn_IN] Lohit Kannada font does not properly handle vowel signs in consonant clusters
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
Script to produce mostly valid test examples
kannada-c_vir_c_vs-examples-produce.py (text/x-python), 1017 bytes, created by
Shriramana Sharma
on 2013-01-09 17:36:57 UTC
(
hide
)
Description:
Script to produce mostly valid test examples
Filename:
MIME Type:
Creator:
Shriramana Sharma
Created:
2013-01-09 17:36:57 UTC
Size:
1017 bytes
patch
obsolete
>#! /usr/bin/env python3 > >from random import random >first = [ 0xc95, 0xc9a, 0xc9f, 0xca4, 0xcaa ] >second = [ i + 0x1 for i in first ] >third = [ i + 0x1 for i in second ] >fourth = [ i + 0x1 for i in third ] >fifth = [ i + 0x1 for i in fourth ] >semivowels = list ( range ( 0xcaf, 0xcb4 ) ) + [ 0xcb5, 0xcde ] >fricatives = list ( range ( 0xcb6, 0xcba ) ) >vowelsigns = list ( range ( 0xcbe, 0xcc5 ) ) + list ( range ( 0xcc6, 0xcc9 ) ) + list ( range ( 0xcca, 0xcce ) ) >stops = first + second + third + fourth + fifth >choicemap = [ [ first, first + second ], [ third, third + fourth ], [ fifth, stops ], [ semivowels, semivowels ], [ stops, semivowels ], [ fricatives, fricatives ], [ fricatives, semivowels ] ] >virama = chr ( 0xccd ) >result = [] >def chooseone ( l ) : return l [ int ( random () * len ( l ) ) ] >for i in range ( 100 ) : > c = chooseone ( choicemap ) > s = chr ( chooseone ( c [ 0 ] ) ) + virama + chr ( chooseone ( c [ 1 ] ) ) + chr ( chooseone ( vowelsigns ) ) > result += [ s ] >for r in result : print ( r )
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 825081
:
586752
|
673323
|
674575
|
674589
| 675746 |
679704