BlogGalleryAbout meContactAggregator

A Real Browser inside Emacs

There have been efforts to combine real browsing with Emacs experience. Conkeror is one such example. But, conkeror only provides an emacs-like navigational experience. It is borne out of a Firefox extension and is based on Gecko. On the other hand, ezbl , an infant written in pure Emacs Lisp, uses uzbl. Uzbl is a webkit powered framework and is built upon unix philosophy. Ezbl essentially takes care of the configuration/control stuff. It runs an instance of uzbl inside emacs patched for xembed support. For more information visit the developer's blog.

Technorati Tags: , , ,

Related Entries:
വിട്ടാലും വിടാത്ത വിധേയത്വം
AGPLMail - A new horizon?
Use Malayalam with GNU Emacs
ഈമാക്സില്‍ മലയാളം
Comments (1)  Permalink

Use Malayalam with GNU Emacs

This is how it is done

Check m17n and libotf versions:(don't use versions older than the returned one)
m17n-config --version
1.5.2
libotf-config --version
0.9.8
OK. Now get the CVS:
cvs -z3 -d:pserver:anonymous@cvs.savannah.gnu.org:/sources/emacs co emacs
Now configure with options:
cd emacs
./configure --without-carbon --with-x --with-toolkit-scroll-bars --with-jpeg --with-png --with-rsvg --with-tiff --with-xpm --enable-font-backend --with-freetype --with-xft --with-x-toolkit=gtk --without-hesiod --with-dbus --with-libotf --with-m17n-flt --no-create --no-recursion
Now make:
make bootstrap; make all
Test if the emacs built is OK:
./src/emacs -q
Then install emacs:
make install
Now define a function for setting up the font and code table for Malayalam by adding these lines in your .emacs file, the init file:
(defun setup-malayalam-rendering()
  "Setup Malayalam rendering"
  (interactive)
  (set-fontset-font "fontset-default"
            (cons (decode-char 'ucs ?\x0d02)
              (decode-char 'ucs ?\x0d6f))
            "Rachana")
 (set-char-table-range
   composition-function-table '(#x0d00 . #x0d7f)
   (list (vector "[\x0d00-\x0d7f\x200c\x200d]+" 0
'font-shape-gstring))))
Start emacs and use the function:
M-x setup-malayalam-rendering

And enjoy reading and writing neat Malayalam text in the Emacs buffer!

, , ,

Related Entries:
ഈമാക്സില്‍ മലയാളം
വിട്ടാലും വിടാത്ത വിധേയത്വം
New Suruma font
XeTeX Malayalam
The Spiral Malayalam
Comments (0)  Permalink

ഈമാക്സില്‍ മലയാളം

ഗ്നൂ ഈമാക്സ് (GNU Emacs) ഇപ്പോള്‍ Xft പിന്‍തുണയുള്ളതാക്കിയതുകൊണ്ടു് ഫോണ്ടുകള്‍ വ്യത്യസ്ത വലുപ്പത്തിലും(Scalable) മിനുസപ്പെടുത്തിയും(Antialiased) കാണിക്കാന്‍ ക്ഷമതയുള്ളതായിട്ടുണ്ടു്. ഇതില്‍ ബഹുഭാഷാസാഹിത്യം(Mutilingual text) കൈകാര്യം ചെയ്യാന്‍ m17n, libotf എന്നീ സംഗ്രഹങ്ങള്‍(Libraries) ആണു് ഉപയോഗിച്ചുവരുന്നതു്.

നിലവിലുള്ള m17n-db-യില്‍ മലയാളം അക്ഷരങ്ങള്‍ നിരത്താനും വിന്യസിക്കാനുമുള്ള സംവിധാനം (MLYM-OTF.flt), പരമ്പരാഗത ലിപിയെ സംബന്ധിച്ചിടത്തോളം, പിഴവുകള്‍ ഉള്ളതായിരുന്നു. അവ തിരുത്തുന്നതിനായി  m17n ടീമിലെ അംഗങ്ങളുമായി(Mr. Naoto and Mr. Handa) ബന്ധപ്പെടുകയും അഭിപ്രായങ്ങളും നിര്‍ദ്ദേശങ്ങളും അറിയിക്കുകയും  ചെയ്തു. അതിന്റെ ഫലമായി അവര്‍ തയ്യാറാക്കിയ പുതിയ  MLYM-OTF.flt, എതാണ്ടു് അന്യൂനമായ രിതിയില്‍ത്തന്നെ പരമ്പരാഗത ലിപി കാണിക്കുന്നുണ്ടു്.

ഗ്നൂ ഈമാക്സിന്റെ CVS പതിപ്പാണു് (GNU Emacs 23.0.60.1) ശരിയായി മലയാളം കാണിക്കുന്നതു്. ഇതിനെ ഒരുക്കിയെടുക്കാനും ഉപയോഗിക്കാനും m17n, libotf എന്നിവയുടെ എറ്റവും പുതിയ പതിപ്പുകള്‍ തന്നെ ഉപയോഗിക്കേണ്ടതുണ്ട്.

, , ,

Related Entries:
Use Malayalam with GNU Emacs
വിട്ടാലും വിടാത്ത വിധേയത്വം
New Suruma font
XeTeX Malayalam
The Spiral Malayalam
Comments (0)  Permalink
1-3/3
Best viewed with FLOSS browsers