Playing With Sid

  • Subscribe to our RSS feed.
  • Twitter
  • StumbleUpon
  • Reddit
  • Facebook
  • Digg
Showing posts with label orca. Show all posts
Showing posts with label orca. Show all posts

Wednesday, 21 July 2010

Free Software Accessibility, Call to Arms

Posted on 12:53 by Unknown

Chris Hofstader Director of Access Technology for Project GNU writes his thoughts on the future of Free Software Accessibility.



Call to Arms



In the time since I joined FSF/GNU as Director of Access Technology, I have focussed largely on policy, fundraising and coordination with other groups. Meanwhile, I've whined a lot about the state of the software which must be our highest priority.



We have three areas where we need to focus our hacking efforts: OS level things like dbus (I don't understand this part of a GNU/Linux system too well but Bill, Joanie and Janina seem to have good ideas for these areas), orca and other AT "middleware" that needs to communicate both with the OS and applications and, very importantly, support for the applications and how they communicate with the AT.



We thought of setting priorities but this would, at the start at least, just be a list of lists of lists and would probably, like so many lists before it, die on the vine.



So, instead of finding tasks and then volunteers to work on them, we are switching gears again and trying to first find volunteers and asking them what they want to work on. We may try to suggest specific high priorities for volunteers but, as they aren't being paid, letting them find their way to the projects they find interesting will likely be the best route to productivity.



We also need volunteers to step up and take the lead role on projects and project components. Don has taken charge of OCR and we've seen great progress there, Joanie owns orca and needs lots of help, Bill and Tony (of course) run the vinux shop, Sina is leading the Java Access stuff but, while we've talked about it a lot, we've no leader for speech recognition/dictation, no one on magnification, learning disabilities and other projects suited for people with non-vision disabilities. On braille, of course, we have John J. Boyer whose project has led the pack for a number of years. We are on our way to a FLOSS AT future but we've lots of work from now until then.



At yesterday's Open a11y (www.a11y.org) call, we discussed priorities and a list of mostly vision related items topped the list. This group needs help with regression testing for orca (this can be done by pretty junior people and those interested should contact Joanie but keep in touch with us so we can know what is going on around this small community) and the second item was poor performance of orca which needs people with C programming skills, an understanding of how GNU/Linux works under the hood and a talent for finding bottlenecks (Python will also be helpful) and this group should probably contact either Joanie or Bill but, as above, stay in touch with us.



A lot of us, including me, complain about performance and functionality in various applications when running orca. We've got to stop whining and get hacking. It would be good to have people take the lead on Firefox, OpenOffice and other "high value" programs. It would also be useful for people to take charge of entirely new AT (like speech recognition) projects to help us move forward in areas that are not already covered.



We need resources to be used judiciously but we also want our hackers to have fun working on projects they will find most rewarding. We need hackers, testers, documenters and probably a bunch of other skills that I cannot think of at this moment.




Please forward this message to as many lists you can find that may have interested parties on them. Also, if anyone on this distribution has skills in languages other than English, please try to send along translations calling for volunteers who may not speak English.

Read More
Posted in accessibility, free software, orca | No comments

Wednesday, 7 July 2010

Orca Caps Lock Issue

Posted on 02:22 by Unknown

Caps Lock key doesn't work is the most common complaint from Orca screen readers users. On Ubuntu 10.04 Lucid Lynx I found that Caps Lock is reset mysteriously. Here is workaround you can use until we find the culprit responsible for this.




Debugging with xmodmap


You find the present keymaps setting with xmodmap command. You can see that the line starting 'lock' is empty. We can set it properly with xmodmap -e "add Lock = Caps_Lock".



$ xmodmap
xmodmap: up to 4 keys per modifier, (keycodes in parentheses):

shift Shift_L (0x32), Shift_R (0x3e)
lock
control Control_L (0x25), Control_R (0x69)
mod1 Alt_L (0x40), Alt_R (0x6c), Meta_L (0xcd)
mod2 Num_Lock (0x4d)
mod3
mod4 Super_L (0x85), Super_R (0x86), Super_L (0xce), Hyper_L (0xcf)
mod5 ISO_Level3_Shift (0x5c), Mode_switch (0xcb)

# Set the Caps_Lock with xmodmap
$ xmodmap -e "add Lock = Caps_Lock"

# Now caps lock works properly
$ xmodmap
xmodmap: up to 4 keys per modifier, (keycodes in parentheses):

shift Shift_L (0x32), Shift_R (0x3e)
lock Caps_Lock (0x42)
control Control_L (0x25), Control_R (0x69)
mod1 Alt_L (0x40), Alt_R (0x6c), Meta_L (0xcd)
mod2 Num_Lock (0x4d)
mod3
mod4 Super_L (0x85), Super_R (0x86), Super_L (0xce), Hyper_L (0xcf)
mod5 ISO_Level3_Shift (0x5c), Mode_switch (0xcb)



Bash Autostart script for setting Caps lock



Now we know that this can be fixed so I used a bash script to call the modmap script everytime we boot. Somehow '.Xmodmap' settings are not getting loaded so I am using an alternative script '.xmodmaprc' and call it from .bashrc file manually.

# .xmodmaprc
xmodmap -e "add Lock = Caps_Lock"

# .bashrc
if [ -f ~/.xmodmaprc ]; then
. ~/.xmodmaprc
fi





Reboot the computer and enable the modmap file to be loaded at boot time.


Enable Modmap load at book dialog


PS: Kudos to dotslashblog for the xmodmaprc solution

Read More
Posted in accessibility, keyboard, lucid, orca, ubuntu | No comments

Monday, 22 March 2010

Accessibility Evaluation: Yelp GNOME Help Browser

Posted on 12:18 by Unknown

During last few months Yelp Gnome help viewer had few hiccups. The ever vigilant users quickly posted "Yelp in Ubuntu Lucid is currently not accessible" messages to various mailing-lists. I am quite happy to report that Yelp (2.29.5.x) is now fully accessible with gnome orca screen reader once again. The accessibility testing was done on Ubuntu 10.04 Lucid with Orca screen reader (2.30.0pre) and Accerciser.



You will find few accessibility and usability suggestions from the evaluation listed below. Willie Walker and Shaun McCance helped by offering sage advice on Gnome #a11y IRC channel and Gnome Bugzilla. You can track these issues by subscribing to bugs.




Yelp accessibility evaluation results screenshot with labels

Click image for full size






  • Show Previous page in history button inaccessible (bgo #613265)


  • Navigation Links provide additional information (bgo #613262)


  • Reverse tabbing fails in search bar(bgo #613301)


  • Side bar and other information boxes (bgo #613267)


  • Alternative Home Link Location (bgo #613300)





Please do let me know if you find more issues with Yelp. I'll promise to look at them once I return from the easter vacation.

Read More
Posted in 10.04, a11y, accerciser, accessibility, gnome, lucid, orca, ubuntu, yelp | No comments

Wednesday, 3 March 2010

Espeak Klatt voices in Ubuntu Lucid

Posted on 23:35 by Unknown

The next version of Ubuntu 10.04 (Lucid Lynx) ships with espeak version 1.43. This new release of espeak has the klatt voices that's everyone is talking about.



In December 2009 I first read about the Klatt voices in a post on NVDA mailing list. After some initial testing, I filed a Ubuntu bug report(LP: #510182) requesting to include this version into Ubuntu. Eddie Hung build Espeak packages for testing on Ubuntu Lucid development release.



Meanwhile Luke Yelavich mentioned that we can't include unstable software releases and I wrote to espeak developer Jonathan Duddington to make a stable release just in time before the lucid code freeze. Luke and Jonathan managed resolve the technical problems, thanks to them you can now try out the espeak voice variants. Give it a try!





espeak -v 'en-us+klatt2' "This is espeak test"



Storm dargon responded to my email request to provide the steps to enable the klatt2 voice for US english. Here is how you enable them to use with orca screen reader.





cd /usr/share/espeak-data/voices/en/
cp en-us en-us.bak
sudo gedit en-us
#move to the end of the file press enter and type: klatt 2
#save the file and exit. Espeak will change to klatt 2 automatically.



Someone once commented "espeak voice sounds like a 1960's science fiction robot" and I think its true. Right now we should work to make them better, Interested Anyone?

Read More
Posted in 10.04, accessibility, espeak, lucid, nvda, orca, ubuntu | No comments

Monday, 15 February 2010

Gnome Keyboard Shortcuts

Posted on 05:37 by Unknown

Accelerate your Gnome keyboard navigation with these shortcuts. You should master these if you are orca screen reader user along with Orca keyboard shortcuts.




  • Global Keyboard Shortcuts


  • Alt+F1 Open the Main Applications Menu

  • Alt+F2 Open the Run Application dialog.

  • Print Screen Take a screenshot of the entire screen.

  • Alt+ Print Screen Take a screenshot of the window that currently has focus.

  • F1 If the focused element is an application window or dialog, this keyboard shortcut opens the Help for the application.

  • Ctrl+F1 If the focused element is a panel or application window, this keyboard shortcut switches the display of tooltips for the window or panel objects on and off.

  • Shift+F10
    Open a popup menu for the element that has focus (if a popup menu exists for that element).

  • Tab
    Give focus to the next element or control.

  • Shift+Tab
    Reverse the navigation direction and give focus to the previous element or control.

  • Ctrl+Tab
    Give focus to the next element or control if the Tab key has a specific purpose in a control.

  • arrow keys Navigate within an element or control.

  • spacebar Activate the element or control that has focus.For example, if the current control is a button, this action is the equivalent of clicking on the button with a mouse.

  • Esc
    Close a window, menu, or drawer.

  • F7
    Switch to caret navigation mode. Caret navigation mode enables you to use the keyboard to select text.

  • Ctrl+Alt +D
    Temporarily hide all windows and give focus to the desktop background.

  • Ctrl+Alt +Tab
    Display a popup window with icons that represent the desktop background and the panels. Press and hold Ctrl+Alt and continue to press Tab to switch the focus between the desktop background and the panels.

  • Navigating Windows

  • Alt+Tab
    Display a popup window with icons that represent each window.

  • Alt+Esc
    Raise each window in turn until you reach the window you want.

  • Alt+F6
    Cycle between windows belonging to the current application (eg, a multiple document interface application like Text Editor).

  • Alt+ spacebar
    Open the Window menu.

  • Alt+F4
    Close the window.

  • Alt+F9
    Minimize the window.

  • Alt+F10
    Maximize the window.

  • Alt+F5
    Restore a maximized window to its original size.

  • Alt+F7
    Start the move operation.

  • arrow keys
    Move the window 10 pixels at a time in the direction of the arrow key.

  • Ctrl + arrow keys
    Move the window one pixel at a time in the direction of the arrow key.

  • Shift + arrow keys
    Move the window in the direction of the arrow key and align it with the edge of the nearest window, panel or screen edge.

  • spacebar
    Complete the move operation, leaving the window in the current position.

  • Esc
    Cancel the move operation, restoring the window to its original position.

  • Alt+F8
    Start the resize operation.

  • arrow keys
    Resize the window in the direction of the arrow key.

  • spacebar
    Complete the resize operation, leaving the window at the current size.

  • Esc
    Cancel the resize operation, restoring the window to its original size.

  • F6
    Give focus to the next pane.The system gives focus to the control that last had focus in the pane.

  • F8
    Give focus to the first resize handle in the window.The resize handle is displayed between the panes and enables you to resize the panes.Press F8 again to give focus to the next resize handle.

  • Navigating Applications

  • F10
    Open the first menu on the application menubar.

  • Alt + access key
    Open the menu that is associated with the access key

  • access keys
    Select the menu item that is associated with the access key.
  • left arrow and right arrow
    Switch focus between the menus on the menubar.

  • up arrow and down arrow
    Move focus into a menu.

  • Esc
    Close the open menu and give focus to the control that had focus before the menubar.

  • Ctrl+O
    Open the file selector dialog.

  • Ctrl+S
    Open the Save dialog.

  • Ctrl+L
    Open a Location dialog, enabling you to type the name of a file that you want to open or save.

  • Ctrl+P
    Open a Print dialog, if available.

  • Ctrl+C
    Copy highlighted text to the global, application-spanning clipboard.

  • Ctrl+X
    Cut highlighted text to the global, application-spanning clipboard.

  • Ctrl+V
    Paste text from the global, application-spanning clipboard to the current cursor position.

  • Alt+access key
    Activate or select a control.

  • Tab
    Give focus to the next control.

  • Ctrl+Page Up
    Move to the next page/tabbed section of the dialog.

  • Ctrl+Page Down
    Move to the previous page/tabbed section of the dialog.

  • Esc
    Cancel/dismiss the dialog.

  • Return
    Perform the default action for the dialog.

  • Navigating Folders

  • arrow keys
    Select the next or previous file or folder in the direction of the arrow key.

  • Ctrl + arrow keys
    Give focus to the next or previous file or folder but do not select the item.

  • spacebar
    Open the focused file or folder.
  • Ctrl + spacebar
    Select the item that currently has focus.

  • Home
    Select the first file or folder within the current folder.

  • End
    Select the last file or folder within the current folder.

  • backspace
    Open the current folder's parent folder.

  • Shift-F10
    Open a file or folder popup menu.

  • Ctrl-F10
    Open the enclosing folder's popup menu (equivalent to right-clicking on the view pane background).

  • F6
    Switch focus between the side pane and the view pane.

  • Shift+F10
    Open the side pane popup menu.


  • Caret Navigation Mode

  • F7
    Switch to caret navigation mode [Yelp-only].

  • left arrow
    Move one character to the left.

  • right arrow
    Move one character to the right.

  • up arrow
    Move up one line.


  • down arrow
    Move down one line.


  • Ctrl + left arrow
    Move to the beginning of the previous word.


  • Ctrl + right arrow
    Move to the end of the next word.


  • Page Up
    Scroll up one page of content.


  • Page Down
    Scroll down one page of content.


  • Home
    Move to the beginning of the current line.


  • End
    Move to the end of the current line.


  • Shift + arrow keys
    Move from the current position to the destination position, selecting all text between the two positions.


  • Tab
    Move focus to the next focusable control.


  • Shift+Tab
    Move focus to the previous focusable control.


  • Enter Activate a button, link or other control
  • .
Read More
Posted in a11y, accessibility, gnome, orca | No comments

Thursday, 11 February 2010

Orca Keyboard Shortcuts

Posted on 22:47 by Unknown

Perhaps the most common request from Orca screen reader users is the documentation. Few months ago Orca developers started rewriting most of the existing documentation. The Orca keyboard shortcut cheat sheet is part of this effort, it is now part of new orca man page.





Desktop Mode
Flat review commands

Numpad-7 move the flat review cursor to the previous line and read it.

Numpad-8 read the current line.

Numpad-9 move the flat review cursor to the next line and read it.

Numpad-4 move the flat review cursor to the previous word and read it.

Numpad-5 read the current word.

Numpad-6 move the flat review cursor to the next word and read it.

Numpad-1 move the flat review cursor to the previous character and read it.

Numpad-2 read the current character.

Numpad-3 move the flat review cursor to the next character and read it.

Numpad-slash perform a left mouse click at the location of the flat review cursor.

Numpad-star perform a right mouse click at the location of the flat review cursor.

Bookmark commands

Alt+Insert+[1-6] assign a bookmark to a numbered slot.

Insert+[1-6] go to the position pointed to by the bookmark bound to this numbered slot.

Alt+Shift+[1-6]

Insert+B and Insert+Shift+B move between the given bookmarks for the given application or page.

Alt+Insert+B save the defined bookmarks for the current application or page.

Miscellaneous functions

Numpad+Plus
'say all' command; reads from the current position of the caret to the end of the document.

Numpad+Enter 'Where am I' command; speaks information such as the title of the current application

Insert+H enter into orca's 'learn mode'; press Escape to exit.

Insert+Shift+Backslash toggle live regions monitoring on and off.

Insert+F speak font and attribute information for the current character.

Insert+Space Launch the orca Configuration dialog.

Insert+Ctrl+Space reload user settings and reinitialize services as necessary.
Also launches the orca Configuration dialog for the current application.

Insert+S toggle speech on and off.

Insert+F11 toggle the reading of tables, either by single cell or whole row.

Insert+Q quit orca.

Debugging

Ctrl+Alt+Insert+Home report information on the currently active script.

Ctrl+Alt+Insert+End print a debug listing of all known applications
to the console where orca is running.

Ctrl+Alt+Insert+Page_Up print debug information about the ancestry of the object with focus.

Ctrl+Alt+Insert+Page_Down print debug information about the hierarchy of the application with focus.

Laptop Mode
Flat review commands

Caps_Lock+U move the flat review cursor to the previous line and read it.
Double-click to move flat review to the top of the current window.

Caps_Lock+I read the current line.
Double-click to read the current line along with
formatting and capitalization details.

Caps_Lock+O move the flat review cursor to the next line and read it.
Double-click to move flat review to the bottom of the current window.

Caps_Lock+J move the flat review cursor to the previous word and read it.
Double-click to move flat review to the word above the current word.

Caps_Lock+K read the current word.
Double-click to spell the word. Triple-click to hear the word spelled phonetically.

Caps_Lock+L move the flat review cursor to the next word and read it.
Double-click to move flat review to the word below the current word.

Caps_Lock+M move the flat review cursor to the previous character and read it.
Double-click to move flat review to the end of the current line.

Caps_Lock+Comma read the current character.
Double-click to pronounce the character phonetically if it is a letter.

Caps_Lock+Period move the flat review cursor to the next character and read it.

Caps_Lock+7 perform a left mouse click at the location of the flat review cursor.

Caps_Lock+8 perform a right mouse click at the location of the flat review cursor.

Caps_Lock+8 perform a right mouse click at the location of the flat review cursor.

Bookmark commands

Alt+Caps_Lock+[1-6] add a bookmark to the numbered slot.
If a bookmark already exists for the slot it will be replaced with the new one.

Caps_Lock+[1-6] go to the position pointed to by the bookmark bound to this numbered slot.

Alt+Shift+[1-6]

Caps_Lock+B and Caps_Lock+Shift+B move between the given bookmarks
for the given application or page.

Alt+Caps_Lock+B save the defined bookmarks for the current application or page.

Miscellaneous functions

Caps_Lock+Semicolon Caps_Lock+Enter

Caps_Lock+H enter learn mode (press Escape to exit).

Caps_Lock+Shift+Backslash toggle live regions monitoring on and off.

Caps_Lock+F speak font and attribute information for the current character.

Caps_Lock+Space launch the orca Configuration dialog.

Caps_Lock+Ctrl+Space reload user settings and reinitialize
services as necessary; also launches the orca Configuration dialog
for the current application.

Caps_Lock+S toggle speech on and off.

Caps_Lock+F11 toggle the reading of tables, either by single cell or whole row.

Caps_Lock+Q quit orca.

Debugging

Caps_Lock+Alt+Ctrl+Home report information on the currently active script.

Caps_Lock+Alt+Ctrl+End prints a debug listing of all known applications
to the console where orca is running.

Caps_Lock+Alt+Ctrl+Page_Up prints debug information about the ancestry
of the object with focus.

Caps_Lock+Alt+Ctrl+Page_Down prints debug information about the
object hierarchy of the application with focus.


Read More
Posted in a11y, accessibility, gnome, orca | No comments

Tuesday, 9 February 2010

State of gnu/Linux Accessibility

Posted on 03:20 by Unknown

Joanie's post sparked more conversations on gnu/Linux Accessibility. Here are some of the views expressed some of members of gnu/linux community.





Over the years, great progress has been made in the accessibility of GNOME. Using Orca, I am able to navigate around GNOME applications and Firefox. This has been made possible through a collaboration between engineers at Sun and dedicated volunteers (or perhaps "a dedicated volunteer" would be more apt). Engineers working on Firefox have also spent significant amounts of time ensuring that Gecko exposes the information that access technologies such as Orca need to represent web pages. This collaboration has been a blessing for the community and has allowed people with disabilities to productively use GNOME. On January 29, however, Will Walker, the lead Orca developer, was laid off by Oracle, and so now there are no more paid Orca developers. This was a continuation of what has been an over-all trend over the last couple of years in which companies have pulled funding from open source accessibility projects. I am concerned about the potential implications for the future if some sort of funding structure is not established.

on the state of open-source accessibility by Mike






As many of you may have heard, from blogs by Eitan, Mike and Joanie, as well as an e-mail to the gnome-foundation-lists by Fernando, the Gnome a11y community is having a tough time.



I have been interacting with the a11y community for over two years now, and in that time the funding situation has never looked good. I do not wish to insult or demean companies that are no-longer involved in funding Gnome a11y. Companies and individuals have their own priorities that they must follow. Work they have done in the past on Gnome is very much appreciated by me, even if they cannot continue that work in-to the future.



Funding Gnome a11y by Mark Doffmans








I have been on the road for the last two weeks. Headed back to Seattle tomorrow after a great FOSDEM in Brussels.



While on the road I have heard all sorts of news regarding GNOME accessibility, none of it good. I am angry, I feel like blaming somebody or something, but I am not sure what. Right now I am directing my frustration towards academics who still have funding to continue various assistive technology research that will probably never see the light of day as a usable application while the real bread and butter of an accessible platform is being taken away. It’s reflexive, I know it. Maybe later I will have a clearer picture of how we move forward.




GNOME accessibility, don’t take it for granted by Eitan






As you all probably know, Oracle recently bought Sun. Sun has been one
of the largest contributors to the GNOME project during the last
years.

Probably is too early to know how this is going to affect GNOME
project. However this last week we have seen some relevant events:
Oracle laid off two members of the Sun's Accessibility Program Office.




e-mail to the gnome-foundation-lists by Fernando

Read More
Posted in a11y, accessibility, Linux, orca, ubuntu | No comments

Sunday, 7 February 2010

An Open Letter to Oracle on the Topic Of Accessibility

Posted on 20:56 by Unknown
Dear Oracle:

You don't know me, so please permit me a brief introduction: I'm Joanie. By day, I'm an assistive technology specialist working with individuals who are blind or visually impaired. By night, weekend, and holiday for almost four years now, I've been a GNOME community contributor working primarily on the Orca screen reader, a project led by Sun's Accessibility Program Office.

Working with the engineers at Sun, both inside and outside of the APO, has been an honor for a variety of reasons, not least of which is our shared common belief: Access isn't a privilege; it's a right. Towards that end, Sun Microsystems strived to ensure that ALL users have access to software and information.
Read More
Read More
Posted in a11y, accessibility, Linux, orca, ubuntu | No comments

Thursday, 7 January 2010

Free software and the Blind: The IISE Experience

Posted on 03:21 by Unknown

Abstract

The challenges and experiences of adopting GNU Linux at Braille Without Borders - International Institute for Social Entrepreneurs (IISE). Linux is non-commercial operating system developed by the world wide Free/Libre Open Source Software (FLOSS) community. Driven by the values of freedom and sharing of software, it is one of biggest volunteer effort to develop alternatives for commercial software. The easy to use Linux operating system is stable, secure, accessible, virus free and available in almost every language of the world.



The visually impaired participants of IISE are introduced to Linux and given laptops with Orca Screen reader. They are encouraged to participate and contribute by providing feedback on various accessibility and usability issues. Using Linux resulted in huge cost saving and it is used extensively in running campus Intranet and Internet connectivity. The benefits of adopting Linux were apparent despite some of the shortcoming of Linux assistive technologies. Working closely together the FLOSS developer community enabled us to resolve some of problems and helped make Linux better for blind everywhere.



What is FLOSS?



Linux operating system is developed by the world wide FLOSS (free/libre open source software) community. The FLOSS community of users and developers does collaborative development via the Internet. Anyone can contribute by finding and fixing software defects, suggest improvements, write documentation and translate software into different languages. The developers release an improved version of Linux every 6 months. Linux can be installed and configured by the visually impaired independently from sighted assistance.




What is IISE?



Braille Without Borders is a non-profit organization focuses on empowerment of the blind and partially sighted around the globe. Last year it has started International Institute for Social Entrepreneurs (IISE) in Kerala, India. The institute offers a one-year residential course for mainly blind and visually impaired participants from all over the world. The course imparts the necessary skills needed to initiate and run social projects to create opportunities for the disadvantaged. The FLOSS community is driven by values of freedom and sharing of software is apt choice for an organization that strives for social empowerment. The project uses Ubuntu Linux distribution as its main operating system and along with Orca screen reader.



The Challenges


Perhaps the biggest challenge was addressing the misconceptions about Linux. Being free in many people's opinions, means it cannot be stable and usable. Also people who used other operating systems and commercial screen readers would resist the change. After few weeks of training the participants started to open up and slowly became more comfortable using Linux with Orca screen reader. Given that Linux is virus free and wouldn't crash often also worked in its favor.



The Orca screen reader is slower and not as responsive as commercial screen readers. The voice quality of the FLOSS text to speech (TTS) leaves much to be desired. We are working closely with the developers to improve it and find workable solutions. The Orca screen reader is in active development, the new release supports Grade 2 Braille and uses a new speech system that improves its performance.



The Linux Advantage


There is huge saving of cost as there is no need to purchase licenses for an operating system and assistive technologies. Linux gives high performance on inexpensive hardware and there is no need for hardware upgrades to run newer software. Linux has a blind-friendly installation and most administration tasks can be done with a screen reader. It comes with large documentation and FLOSS community also offers online support.



Linux has a large number of software programs to choose from. It has everything you need from word processing software, spreadsheets, multimedia players and server software needed to run local Intranet. The IISE campus network runs various Linux servers for network management and Internet connectivity.



Bridging the Gap


The IISE encourages participants to engage with the FLOSS community in order to avoid becoming a passive consumer of software. This enables the visually impaired to influence and customize Linux to their needs. Apart from computer trainers, we had developers on campus who would ooeer a helping hand. The FLOSS developer community online provided quick fixes to various problems and gathers feedback about the needs of the visually impaired. By providing the users with the latest release of software, we found that they were quick to point out potential accessibility and usability issues. Thus we were able to do comprehensive testing of the operating system and improve it for every blind person around the world.



Conclusion


In all, Linux offers a win win situation being a sustainable alternative to commercial operating systems. Non-profits and institutions can benefit from its huge array of software. Problems do exist but can be addressed with the help of the FLOSS community. It is important to avoid being passive consumers of FLOSS software but be more proactive. We feel that the IISE experience can be a viable model that's worth emulating.




Paper published by Rakesh 'arky' Ambati in National Conference on ICTs for the differently- abled/under privileged communities in Education, Employment and Entrepreneurship (NCIDEEE 2009)

Read More
Posted in accessibility, IISE, Linux, orca, ubuntu | No comments

Friday, 25 December 2009

IISE Christmas Greetings

Posted on 00:45 by Unknown

Its Christmas eve, the IISE campus is now a very lonely place. We miss our friends who returned to their countries to pursue the dream projects. I hope this audio greeting would bring joy and many warm memories.IISE Graduation 2009


Merry Christmas !!




Read More
Posted in IISE, india, kerala, orca, video | No comments

Thursday, 10 December 2009

Orca on Ubuntu Mobile Internet Device (MID) Edition

Posted on 02:22 by Unknown

After trying various gnu/Linux distributions for mobile devices, I choose Ubuntu MID (8.10 Intrepid Ibex), a keyboard / mouse driven distribution from Ubuntu. It was possible to use a spare PC laptop as my test development platform instead of a MID Development kit. The idea behind this experiment to try running Orca screen reader on devices other than gnu/Linux personal computers.




Ubuntu MID distribution is targeted at new Mobile Internet Device (MID) devices, though it doesn't include gnome-orca package. But don't let that stop you, you can get the packages and its dependencies from main repositories and install it manually with dpkg. Right now not possible to install the gnome-orca packages from the main repositories due to 'lpia' architecture package tag conflict.



The list of needed packages are given below.


  • at-spi_1.24.0-0ubuntu3_i386.deb

  • gnome-orca_2.24.1-0ubuntu1_all.deb

  • libatspi1.0-0_1.24.0-0ubuntu3_i386.deb

  • libbrlapi0.5_3.10-0ubuntu2_i386.deb

  • libgail-gnome-module_1.20.0-1ubuntu1_i386.deb

  • libgnome-speech7_0.4.21-0ubuntu5_i386.deb

  • libxevie1_1.0.2-3_i386.deb

  • libxevie1-dbg_1.0.2-3_i386.deb

  • python-brlapi_3.10-0ubuntu2_i386.deb

  • python-gnome2_2.22.3-0ubuntu1_i386.deb

  • python-gnome2-desktop_2.24.0-0ubuntu1_i386.deb

  • python-gnomecanvas_2.22.3-0ubuntu1_i386.deb

  • python-pyatspi_1.24.0-0ubuntu3_all.deb




Once the packages are installed with 'dpkg -i *deb'. The orca can be enabled via the accessibility menu or by setting the gconf settings. Though the interface is not yet accessible, I was able to use midori browser with Orca without any trouble.

Read More
Posted in accessibility, embedded linux, maemo, midori, Mobile, moblin, orca, terminal, ubuntu | No comments

Sunday, 6 December 2009

Documentary on Rural Internet Kiosks in Africa

Posted on 18:59 by Unknown

Few hours ago I heard that my friend Jawahar Patani finished the documentary about Rural Internet Kiosks(RIK) project. I have been helping this project for while now. I hope that this documentary would spread the word about this wonderful initiative.



Please visit www.ruralinternetkiosks.com to learn more about this project.



About the Documentary



This short documentary features ICT development in Africa with emphasis on how the Rural Internet Kiosk (RIK) is changing the way rural Africa communicates. The Rural Internet Kiosk is 100% solar powered and is connected to the Internet via Satellite using Astra2Connect VSAT technology.



You can watch the part 1 and part 2 of this documentary on youtube.




Read More
Posted in accessibility, africa, film, internet, intersat, kiosk, Linux, orca, rural, solar, video, vsat | No comments

Wednesday, 14 October 2009

PyCon India 2009

Posted on 06:05 by Unknown

Most action happens on conference sidelines PyCon India 2009 is no expection. You can always watch the recordings of talks later on. Catching up with friends comes first. Sharing ideas about projects, events and just talking all things geek. Good to hear that Santhosh was interested about integrating dhvani with speech dispatcher for Orca screen reader. Sharing experiences of working with non-profits with Sayamindu and talking about accessibility issues on OLPC SUGAR. And exploring possibilities of doing Ubuntu Karmic release parties in Chennai and Bangalore with Parthan (technofreak), Renuka and Debayan.



I did catch few of the lectures of Ramakrishna on Enterprise Linux, Parthan and the presentation by the FOSSEE team.







Parthan Python newbie talk


The Mallu Gang !


Praveen shows his Android G2


Baij T-shirt with topsy turvy logo


What's Reappy ?


Jinesh checking out Samsung mobile (Q2?)


Hiran hacking my T-shirt with a pen :)






The Food was Good!



Where are the crowds ? Ah! 75 students took off to see the city!

Prabhu Ramchandran charms the crowds


The feedback !






Read More
Posted in accessibility, android, bangalore, dhvani, events, free software, india, OLPC, orca, python, travel | No comments

Friday, 9 October 2009

At National Workshop on Web Accessibility in Trivandrum

Posted on 13:16 by Unknown

Delivered a lecture about Ubuntu accessibility features and Orca screen reader at the National Workshop on Web Accessibility here in Trivandrum. I had to wrap up the usually hour long talk quickly so that I can catch the train to Bangalore to be at the Pycon India 2009 the next day.








The two day Web Accessibility workshop hosted by SPACE and Centre for Internet and Society concluded at Christ Nagar International School today. 43 participants from various Government departments and private firms took part in the workshop. The aim of the workshop was to educate web developers of Government and non Government agencies on how to develop websites that are equally accessible to people with disabilities.


Read More

Read More
Posted in a11y, accessibility, events, kerala, orca, ubuntu, web standards | No comments

Thursday, 30 July 2009

Better Gnome Desktop Magnification with eZoom

Posted on 12:52 by Unknown

The Gnome desktop provides magnification with gnome-mag. This program has very limited features and has quite a few performance issues. After upgrading to Ubuntu Jaunty, we had trouble using the full screen magnification. Ever since I have been searching for a better magnification for partially sighted, low vision Gnome desktop users.



The Compiz-Fusion's eZoom (Enhanced Zoom) desktop plugin steps in to fill the gap.






The zooming is quite smooth, but its appears very jerky in this video.




How to enable eZoom in Ubuntu Gnome Desktop?



To use eZoom desktop plugin, first install the compiz-fusion-plugins-main package. This package is available in Ubuntu itself. Then open the Compiz Configuration Manager and enable "Enhanced Zoom Desktop" under Accessibility menu.Compiz Settings Manager





Next step is to assign the keyboard shortcuts to zoom in and out. I have assigned Super+1 (Windows Key+1) to zoom in and Super+2 to zoom out.Compiz eZoom shortcuts

Read More
Posted in "compiz-fusion", a11y, accessibility, compiz, gnome, Linux, orca, ubuntu | No comments

Sunday, 19 July 2009

GDM Timed Login

Posted on 02:39 by Unknown

The Gnome Display Manager(GDM) is the graphical login program for Gnome Desktop environment. It is being completely rewritten, one of its goals is to provide better accessible login support.



The latest version of GDM has been uploaded into Ubuntu Karmic and is under active testing. There are few issues to be ironed out before we can have a fully accessible login with orca screen reader and magnifier. Until then I advice the blind gnu/Linux users to use GDM timed login.



Add the following lines to your /etc/gdm/custom.conf file to enable GDM timed login. Replace 'user' with your username.


[daemon]
AutomaticLoginEnable=true
AutomaticLogin=user
TimedLoginEnable=true
TimedLogin=user
TimedLoginDelay=10



Please note that the configuration of GDM has moved away from previously single configuration file /etc/gdm/gdm.conf . As of now you can't use the graphic gdmsetup to configure GDM.

Read More
Posted in a11y, accessibility, blind, gdm, gnome, karmic, Linux, orca, ubuntu | No comments

Monday, 27 April 2009

Enable Ctrl-Alt-Backspace in Ubuntu

Posted on 22:52 by Unknown

Here is one change in the latest Ubuntu release Jaunty (9.04) that is *really* not blind friendly. You can no longer use the Ctrl-Alt-Backspace key combination to restart the graphical (X) session by default. Most of the Orca screen reader users have to resort to using this key combination to start over when Orca screen reader stops or hangs for some unknown reason.




Its not very difficult to turn on this feature back on. To enable this Ctrl-Alt-Backspace key combination you have to use the dontzap program. You might want to install this package on your computer. They type this command in the terminal.


sudo dontzap -d

Reboot the computer and you are ready.



Update In Ubuntu Karmic the dontzap has been removed. You have use the keyboard preference tool.


  • Select "System"->"Preferences"->"Keyboard"

  • Select the "Layouts" tab and click on the "Layout Options" button.

  • Select "Key sequence to kill the X server" and enable "Control + Alt + Backspace".

Read More
Posted in a11y, accessibility, blind, dontzap, jaunty, karmic, Linux, orca, ubuntu | No comments

Thursday, 26 March 2009

Notify-OSD Now Works with Orca

Posted on 22:15 by Unknown

The message came in last night as I was leaving office. It was response to bug #333134, it was a request to enable notifications from the new Notify-osd system work with Orca screen reader.




Hi Arky,


I would like to believe that this is resolved in recent updates. Please make sure you are using the most recent version of gnome-orca and notify-osd.





Thank you guys! You really made a difference to all the blind users around the world. Now there is one more good reason to grab the jaunty.

Read More
Posted in accessibility, IISE, jaunty, notify-osd, orca, ubuntu | No comments

Wednesday, 18 February 2009

Gnome Default File Associations

Posted on 01:58 by Unknown

One of the thing that's missing in the Gnome Desktop is an easy way of changing the default file associations. Especially for people with special needs like the blind and low-vision who access the Gnome Desktop using a Orca Screen reader. You can edit the mailcap file straight away to change the setting however that way for people who dabble in technical stuff.



The Davyd Madeley What's new in GNOME 2.8? page provides a nice preview of the changes in Gnome 2.8. The new MIME system looks the same as in the Gnome 2.24.1 . You still have to right click and use context menu, that a terrible idea for me. I rather like the accessible GUI like the Gnome Preferred Applications tool or the Nautilus File Management Preferences. I hope someone from the Gnome team can remedy this and provide single place to easily edit file associations.

Read More
Posted in a11y, accessibility, gnome, Linux, orca | No comments

Tuesday, 27 January 2009

GNOME Shutdown Menu Not Accessible

Posted on 17:21 by Unknown

The accessibility problem of the GNOME shutdown menu is perhaps the most frequently raised question on accessibility (a11y) and the Orca mailing-lists and chat rooms. Orca screen reader doesn't speak up the contents of the shutdown dialog and its a pain to wait for next 60 seconds for the computer to start the shutdown process. GNOME Shutdown dialog box



Here is a work around I use in Braille Without Borders IISE campus, the idea is to avoid the shutdown dialog prompting altogether. Here is how you turn it off. Go to System Menu and choose Preferences sub menu and scroll down to Power Management and select it (System > Preferences > Power Management). In the GNOME Power Management tool, select General Preference tab, change the "When power button is pressed is pressed" option to 'shutdown' instead of 'ask me'. GNOME Power Management tool, General Preferences Tab

Read More
Posted in a11y, accessibility, gnome, IISE, Linux, orca, ubuntu | No comments
Older Posts Home
Subscribe to: Posts (Atom)

Popular Posts

  • Vietnamese Language Tools: Developing Keyboards and Spell-checker
    Mentoring Mozilla Vietnamese localization team to develop Vietnamese keyboard and spell checker for Firefox OS . We built and tested Vietna...
  • Multimedia/Internet Keyboards in GNU/Linux
    As the resident Gnu/Linux guru, I sometimes help new users making transition from other OS’s.Over the years I’d ask anyone who installed Gnu...
  • Bollywood Afternoon In Hanoi
    A lot can happen over a cup of Masala Chai. Sunday afternoon's are usually Indian food at Foodshop 45 in Tay Ho, Hanoi. After a good mea...
  • Locate Configuration Example
    Keep things found is not an easy skill to master. The disk drive turns into a deep and dark jungle after the first few weeks on road. Tradit...
  • Mapping The Internet
    I watched the map of internet mentioned in the recent "Download: The True Story of the Internet " on Discovery Channel , it sound...
  • foss.in 2008 :: Sorting In Indic Locales Workout
    Day 3 : Sorting In Indic Locales workout at foss.in 2008 . Indic Workout In Progress Brainstorming Live interaction and collaborative edi...
  • foss.in 2008 :: Day 4
    Day 4 @ foss.in 2008 IndLinux Project BOF Beacon Workout Sharing ideas after Apertium talk Sachin Joshi demo's his Hindi ASR syste...
  • Cellphone Woes of a Weary Traveller
    'Somethings' they say, 'remain a mystery until someone comes along'. Few hours into the journey, I could feel some discomfor...
  • foss.in 2008
    Photos from Day One of foss.in in Bangalore. JN Tata Auditorium, IIsc Bangalore Event Registration Counters Waiting for my turn Securit...
  • National Conference on Free Software 2008 :: Day 1
    The YMCA camp building is just a stone throw away from the Cochin backwaters, I spent some time looking the slow churning waters and the sun...

Categories

  • "Blog Action Day 08 - Poverty"
  • "blog action day"
  • "Compiz Extras "
  • "compiz-fusion"
  • "film making"
  • "FSUG-Bangalore"
  • "GISS"
  • "Graphic Design"
  • "Linux"
  • "martial art"
  • "New Media"
  • "open movie editor"
  • "OpenCV"
  • "web authentication"
  • "web automation"
  • "web testing"
  • 01-18-2012
  • 10.04
  • 10.10
  • 3dprinting
  • 9.04
  • a
  • a11y
  • accerciser
  • accessibility
  • acpi
  • Activism
  • adobe
  • adzap
  • aegis
  • africa
  • AIR
  • ajax
  • alsa
  • AMD64
  • Andhra Pradesh
  • android
  • angling
  • Animals
  • anusaaraka
  • apache
  • apertium
  • api
  • apm
  • apple
  • apport
  • Apps Script
  • apt-get
  • apt-key
  • architecture
  • archmage
  • ardour
  • arduino
  • ARM
  • art
  • asterisk
  • atom
  • audio description
  • backlinks
  • bangalore
  • barcamp
  • barcamphanoi
  • barcampkl
  • barcamppp
  • barcampsaigon
  • barcampvte
  • bash
  • bbc
  • bcy2011
  • beagle
  • beercamp
  • Beryl
  • big buck bunny
  • biofuel
  • bittorrent
  • blackout
  • blender
  • blind
  • blogger
  • blogging
  • book
  • Boot-Process
  • boot2gecko
  • bootparam
  • braille
  • brazil
  • breakpad
  • broadcom
  • bugs
  • bzr
  • Calicut
  • cambodia
  • canon
  • Canopy
  • cartoons
  • cat
  • CC
  • CDAC
  • CDMA
  • celliax
  • censorship
  • CES 2008
  • CES08
  • CHDK
  • chennai
  • children
  • china
  • CHM
  • chmsee
  • Chromium
  • classmate PC
  • cleaning
  • Climate Change
  • cloud computing
  • cms
  • codec
  • Comedy
  • comics
  • command line
  • CommandLine
  • compiz
  • Computational Linguistics
  • console
  • cpan
  • Creative Commons
  • cron
  • css
  • curl
  • cut
  • cyanogenmod
  • DAISY
  • debian
  • debian documentation
  • debian upgrade-system
  • Debian-IN
  • deborphan
  • delhi
  • design
  • dhvani
  • django
  • DJvu
  • dmesg
  • documentation
  • dontzap
  • dots
  • dpatch
  • drupal
  • drush
  • earth hour
  • easy_install
  • ebay
  • eclipse
  • Ecuador
  • education
  • eee pc
  • eeepc
  • elinks
  • Elinks2
  • emacs
  • embedded linux
  • Environment
  • equivs
  • espeak
  • etch
  • events
  • fennec
  • ffmpeg
  • fiction
  • film
  • film making
  • find
  • findutils
  • firefox
  • firefox3
  • firefox4
  • firefoxOS
  • firmware
  • fishing
  • flying
  • foss.in
  • fossasia
  • fossin2008
  • FOSSMeet
  • free culture
  • free software
  • FreeNode
  • fsf
  • fsfs
  • fx4
  • G1
  • gadgets
  • gdm
  • gedit
  • geek humour
  • geocoding
  • Gimp
  • GISS
  • GIST
  • git
  • gnewsense
  • gnochm
  • gnome
  • google
  • google app engine
  • google earth
  • gplv3
  • grep
  • grub
  • GSM
  • gstreamer
  • gta02
  • GUI Testing
  • habba.in
  • hack
  • hackable1
  • hacker
  • handbrake
  • hanoi
  • hanoitweetup
  • hardware
  • hardy heron
  • HCU
  • hindi
  • hipatia
  • history
  • hosting
  • hotkeys
  • how to
  • HowTo
  • html
  • html5
  • HTTP
  • humour
  • hunspell
  • hyderabad
  • i810
  • ICANN41
  • iceweasel
  • identi.ca
  • IEEE
  • iffk
  • iframe
  • IISE
  • ILS
  • ILUG-D
  • IM
  • imacros
  • india
  • india_engg_students
  • Indian Languages
  • indic
  • indlinux
  • initscripts
  • Inkscape
  • intel
  • interaction design
  • internet
  • internet kiosk
  • intersat
  • Intrepid
  • Intrepid Ibex
  • ipod
  • IRC
  • jam
  • jaunty
  • Java
  • Javascript
  • Jet Man
  • josm
  • jquery
  • JSSH
  • Kannada
  • karmic
  • Kchm
  • kerala
  • kernel
  • keyboard
  • keycode
  • kid
  • kiddy video
  • kids
  • kinect
  • kiosk
  • koha
  • l10n
  • laos
  • launchpad
  • layout
  • ldap
  • lenny
  • less
  • lftp
  • libchm
  • library
  • libreoffice
  • lilo
  • Linux
  • lisp
  • local weather
  • locate
  • logging
  • lttoolbox
  • lucid
  • lv
  • machine translation system
  • madras
  • maemo
  • mailing-list
  • mallard
  • MALT
  • malware
  • man
  • manga
  • maps
  • maverick
  • mediawiki
  • meego
  • mencoder
  • merkaartor
  • Mibbit
  • micro-blogging
  • midori
  • mlocate
  • Mobile
  • moblin
  • mod_pagespeed
  • modem
  • more
  • most
  • mother
  • mozcamp
  • mozilla
  • Mozilla Crash Reporter
  • mplayer
  • MT
  • mukt.in
  • music
  • mwc2012
  • myanmar
  • mymozl10n
  • mysql
  • n70
  • nature
  • nedumangad
  • neo freerunner
  • Neo1973
  • nepal
  • netbooks
  • newbies
  • news
  • NGO
  • NITC
  • NLP
  • NLTK
  • Nokia
  • Nonprofits
  • notify-osd
  • novell
  • NUI
  • nvda
  • OCR
  • oddmuse
  • OLPC
  • ooffice
  • open movie
  • openDNS
  • openmoko
  • openNI
  • openOffice
  • openoffice.org
  • OpenStreetMap
  • opensuse
  • openvt
  • orca
  • OS
  • oscar
  • OSM
  • Package-Management
  • packaging
  • pager
  • parenting
  • patents
  • pbx
  • PDF
  • people
  • perl
  • Pets
  • Phatch
  • photography
  • php
  • php-nuke
  • phpnuke
  • pidgin
  • PIL
  • pipa
  • podcast
  • podcasting
  • pokhara
  • POS Tagger
  • postfix
  • potlatch
  • poweroff
  • powershot
  • proc
  • programming
  • pune
  • puppylinux
  • pyCairo
  • python
  • pythonegg
  • QA
  • Qmail
  • radio show
  • Recycling
  • red nose day
  • redhat
  • regex
  • RFC
  • RHEL
  • rms
  • RND
  • robots
  • rockbox
  • RSS
  • RSS/XML
  • rtorrent
  • rubber
  • ruby
  • rural
  • s60
  • sahana
  • samba
  • sampada
  • samsung
  • sbcl
  • science
  • scipy
  • search
  • security
  • SFD2011
  • shell
  • short-stories
  • shutdown
  • silk
  • singapore
  • sitecopy
  • skype
  • slocate
  • social media
  • software patents
  • software-center
  • softwarefreedomday
  • solar
  • solar eclipse
  • sopa
  • space
  • spam
  • SPE editor
  • speakers
  • spins
  • squid
  • stallman
  • stanford parser
  • startups
  • startx
  • stumpwm
  • SUSE
  • system-adminstration
  • sysvinit
  • t-shirt
  • tablet
  • tactile watch
  • tea shops
  • teacher
  • technology
  • tee
  • telugu
  • terminal
  • terminal Tags: command line
  • Tesseract
  • Testing
  • The IT Crowd
  • theatre
  • tibet
  • tracker
  • travel
  • trek
  • trekking
  • tux4kids
  • tuxmath
  • tv
  • tweets
  • twitter
  • ubuntu
  • UMPC
  • unicode
  • UNR
  • uptime
  • urdu
  • User friendly
  • uTouch
  • UX
  • UXA
  • vagrant
  • VCS
  • veli
  • vidarbha
  • video
  • video hamming
  • video hams
  • video-ham
  • vim
  • virutalization
  • visualization
  • voip
  • vsat
  • w3c
  • watches
  • water from dew
  • WATiR
  • weather stations
  • weave
  • web automation
  • web standards
  • web testing
  • web-browser
  • web2py
  • webmaker
  • wget
  • Wiki
  • wikia
  • wikipedia
  • Windows
  • Windows XP
  • wmv
  • Word Press
  • wordpress
  • worm
  • wrapzap
  • writing
  • wvdial
  • X-Window-System
  • X11
  • xchm
  • xev
  • xml
  • xmlstarlet
  • XO Laptop
  • xorg
  • xserver
  • xvidcap
  • yahoo groups
  • yahoo maps
  • yelp
  • Yves Rossy
  • Zii
  • ZTE

Blog Archive

  • ▼  2013 (23)
    • ▼  December (3)
      • Turn your old iPod speakers into wireless speakers
      • Kinect-Powered Interactive New Media Installation
      • Mozilla Taiwan Localization Sprint
    • ►  November (3)
    • ►  September (1)
    • ►  August (1)
    • ►  July (1)
    • ►  June (2)
    • ►  May (3)
    • ►  April (1)
    • ►  March (1)
    • ►  February (5)
    • ►  January (2)
  • ►  2012 (26)
    • ►  December (3)
    • ►  November (1)
    • ►  October (1)
    • ►  July (1)
    • ►  June (3)
    • ►  May (6)
    • ►  April (1)
    • ►  March (8)
    • ►  January (2)
  • ►  2011 (43)
    • ►  December (2)
    • ►  November (7)
    • ►  October (8)
    • ►  September (4)
    • ►  August (5)
    • ►  June (1)
    • ►  February (6)
    • ►  January (10)
  • ►  2010 (73)
    • ►  December (17)
    • ►  November (5)
    • ►  October (10)
    • ►  September (3)
    • ►  August (8)
    • ►  July (9)
    • ►  June (4)
    • ►  March (5)
    • ►  February (7)
    • ►  January (5)
  • ►  2009 (108)
    • ►  December (7)
    • ►  November (10)
    • ►  October (8)
    • ►  September (6)
    • ►  August (8)
    • ►  July (4)
    • ►  June (5)
    • ►  May (6)
    • ►  April (15)
    • ►  March (15)
    • ►  February (9)
    • ►  January (15)
  • ►  2008 (223)
    • ►  December (45)
    • ►  November (28)
    • ►  October (32)
    • ►  September (4)
    • ►  August (11)
    • ►  July (6)
    • ►  June (11)
    • ►  May (3)
    • ►  April (11)
    • ►  March (7)
    • ►  February (3)
    • ►  January (62)
  • ►  2007 (2)
    • ►  December (2)
Powered by Blogger.

About Me

Unknown
View my complete profile