Sponsored Content
Top Forums Web Development Web Accessibility: text resize Post 302397238 by pludi on Sunday 21st of February 2010 03:22:05 PM
Old 02-21-2010
I agree with you that sites should be accessible to all. What I mean with target group is not a group of people with a similar impairing condition, but similar interests. Eg. a group of software engineers will probably search for the "re-size text" option differently than a group of linguists. And with seniors it should be as easy as possible to find it, and be non-obtrusive otherwise.

Mind tho, this is coming from someone who "designs" web-pages as black-on-white, default font & size, should be readable in lynx or w3m Smilie
 

6 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Possible to download web page's text to a file?

Hi, Say there is a web page that contains just text only - that is, even the source code is just the text itself, nothing more. An example would be "http://mynasadata.larc.nasa.gov/docs/ocean_percent.txt" Is there a UNIX command that would allow me to download this text and store it in a... (1 Reply)
Discussion started by: Breanne
1 Replies

2. Programming

Application with Accessibility for Blind People

I am about to start developing an application, which requires accessibility for blind people. It will be a front-end to google calendar for blind people. Can I do this in C#? Does .NET provide accessibility? I want to read the information from screen readers(e.g. JAWS), a software that uses voice... (0 Replies)
Discussion started by: romeo5577
0 Replies

3. Shell Programming and Scripting

Grep text matching problem with script which checks if web page contains text.

I wrote a Bash script which checks to see if a text string exists on a web page and then sends me an email if it does (or does not e.g. "Out of stock"). I run it from my crontab, it's quite handy from time to time and I've been using it for a few years now. The script uses wget to download an... (6 Replies)
Discussion started by: gencon
6 Replies

4. Shell Programming and Scripting

Perl text from web

perl -MLWP::Simple -le '$s=shift;$c=get("http://genetics.emory.edu/egl/tests/view.php?testid=4125/$s/");$c=~/meta content=(.*?)name=\"Genes\"/msg; print length($1),"\t$1"' "Test Description" >output.txt I am having trouble with this code: Can it be modified for the desired output? I attached... (3 Replies)
Discussion started by: cmccabe
3 Replies

5. Shell Programming and Scripting

Web page with picture, text, php function

Hello. I'm trying to create a web page which the presentation is as follows: 1 °) at the top of page an image 2 °) below the text 3 °) to complete a php function that returns information. I tried different things but none work. Script 1: <!DOCTYPE html> <html> <head> <style> div { ... (5 Replies)
Discussion started by: jcdole
5 Replies

6. Shell Programming and Scripting

Copy text from web page and add to file

I need help to make a script for Ubuntu to OSCam that copy the text on this website that only contains "C: ip port randomUSERNAME password" and want to exclude the text "C:" and replace the rest with the old in my test.server file. (line 22) device = ip,port (line 23) user =... (6 Replies)
Discussion started by: baxarn
6 Replies
MENUFILE(5)							File Formats Manual						       MENUFILE(5)

NAME
       menufile - entry in the Debian menu system

SYNOPSIS
       ~/.menu/*

       /etc/menu/*

       /usr/lib/menu/*

       /usr/share/menu/*

       /usr/share/menu/default/*

DESCRIPTION
       Menu  files  add entries to the Debian menu system. The system administrator can place menu files in /etc/menu/ to override menu files that
       packages add to /usr/share/menu/ .  The user can place menu files in ~/.menu/ to override all other menu files.

       Please read the Debian menu manual available in /usr/share/doc/menu/html for the complete specification of menu files.

       The menu files are usually named after the Debian package that contains the programs listed in them. In it,  you  can  list  several  "menu
       entries"  that  specify	a specific item in the menu structure. Each menu entry specifies which packages it depends on; if that package are
       not installed, the menu entry will be ignored by update-menus(1).  (In a menu  entry  you  can  specify	pseudo-packages  that  start  with
       "local.";  update-menus will always use those menu entries).  If you wish to remove an item from the menu entirely, make an empty menu file
       with the same name as the file you want to override.

Examples
       Dosemu could install the following menu file as /usr/share/menu/dosemu:

	?package(dosemu):needs="text" section="Applications/Emulators" title="Dosemu" command="dosemu"
	?package(dosemu):needs="X11" section="Applications/Emulators" title="Dosemu" command="xdos"

       The system administrator wants to override this file to change how dosemu is run, so /etc/menu/dosemu is created:

	?package(dosemu):needs="text" section="Applications/Emulators" title="Dosemu" command="dosemu -A"
	?package(dosemu):needs="X11"  section="Applications/Emulators" title="Dosemu" command="xdos -A"

       A user does not want Dosemu to appear in the menus at all, so the user creates an empty file named ~/.menu/dosemu.

FORMAT
       A menu file consists of 0 or more lines of the following format:

	      ?package(package-name):var1=value1 var2=value2  ...

	      needs  Specify what kind of environment the program require. This variable must be defined, and should be one of the following:

		     needs="text"
			    Program requires a terminal

		     needs="x11"
			    Program requires a X server

		     needs="vc"
			    Program requires a Linux console (i.e.: svgalib programs)

		     needs="wm"
			    The program is a window manager.

		     needs="fvwmmodule"
			    The program is a fvwm compatible module.

	      section
		     The section in which the menu entry should appear. See MENU LAYOUT for preferred section names.

	      icon   An icon for this menu entry. If no icon is available, just don't define this.

	      title  The title of the program that will appear on the menus. Keep it short.  If two menu entries share the same title and section,
		     the  one  that best fits the available display will be used. So in the example above with two menu entries that both have the
		     menu id "title", if X is available, the X11 one will be used; otherwise the text one will be used.  Must be defined.

	      command
		     The command to be executed when this menu entry is selected.

	      hints  A comma-separated list of hints on how grouping menu entries; see the manual.

MENU LAYOUT
       The authoritative list of Debian's menu structure is maintained in the Debian Menu sub-policy document which is part of the  Debian  Policy
       package. The menu structure below is included only for convenience. Please do not put your packages into any other sections.

       Use `/' to separate sub-menu names, for example, "Applications/Editors" or "Games/Arcade".

	Applications
	  Accessibility
	  Amateur Radio
	  Data Management
	  Editors
	  Education
	  Emulators
	  File Management
	  Graphics
	  Mobile Devices
	  Network
	    Communication
	    File Transfer
	    Monitoring
	    Web Browsing
	    Web News
	  Office
	  Programming
	  Project Management
	  Science
	    Astronomy
	    Biology
	    Chemistry
	    Data Analysis
	    Electronics
	    Engineering
	    Geoscience
	    Mathematics
	    Medicine
	    Physics
	    Social
	  Shells
	  Sound
	  System
	    Administration
	    Hardware
	    Language Environment
	    Monitoring
	    Package Management
	    Security
	  Terminal Emulators
	  Text
	  TV and Radio
	  Viewers
	  Video
	  Web Development
	Games
	  Action
	  Adventure
	  Blocks
	  Board
	  Card
	  Puzzles
	  Simulation
	  Strategy
	  Tools
	  Toys
	Help
	Screen
	  Saving
	  Locking
	Window Managers
	FVWM Modules
	Window Maker

NOTES
       If you want to specify an icon or hotkey for a sub-menu (for example, the Editors sub-menu), just use the same syntax but leave the command
       empty:

       ?package(mypackage):needs="X11" section="Applications" icon="icon.xpm" hotkey="E" title="Editors"

       Whenever any menu files are changed, you must run update-menus(1)

FILES
       (Earlier listed files override later files with the same names.)

       ~/.menu/*
	      Menu files added by the user.
       /etc/menu/*
	      Menu files added by the system administrator.
       /usr/lib/menu/*
	      Architecture-dependant menu files provided by other Debian packages.
       /usr/share/menu/*
	      Architecture-independant menu files provided by other Debian packages.
       /usr/share/menu/default/*
	      Menu files provided by the menu package.

AUTHORS
       Joost Witteveen <joostje@debian.org>, based on work by Lars Wirzenius <liw@iki.fi>. Now maintained by Bill Allombert <ballombe@debian.org>.

       (Man page by Joey Hess, <joeyh@debian.org>)

SEE ALSO
       update-menus(1), /usr/share/doc/menu/html/index.html

DEBIAN								   File Formats 						       MENUFILE(5)
All times are GMT -4. The time now is 09:17 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy