Final sitemap Solution?

Posted on November 16th, 2006 in General by daya

Sitemap.org, seems finally got three major player to accept one single sitemap, reducing, webmaster head-ache. If you already have Google xml type site-maps you are saved. yes, That is exactly all three major search engines are going to use hence forth.

Sitemap’s are an easy way for webmasters to inform search engines about pages on their sites that are available for crawling. In its simplest form, a Sitemap is an XML file that lists URLs for a site along with additional metadata about each URL (when it was last updated, how often it usually changes, and how important it is, relative to other URLs in the site) so that search engines can more intelligently crawl the site.

Web crawlers usually discover pages from links within the site and from other sites. Sitemap’s supplement this data to allow crawlers that support Sitemap’s to pick up all URLs in the Sitemap and learn about those URLs using the associated metadata. Using the Sitemap protocol does not guarantee that web pages are included in search engines, but provides hints for web crawlers to do a better job of crawling your site.

Sitemap 0.90 is offered under the terms of the Attribution-ShareAlike Creative Commons License and has wide adoption, including support from Google, Yahoo!, and Microsoft.

Popularity: 2% [?]

Firefox Vs IE - The winner is?!

Posted on November 16th, 2006 in General by daya

Popularity: 3% [?]

Ajax Online Dictionary

Posted on November 16th, 2006 in General by daya

The ajax based online dictionary Ninja words A really fast dictionary… fast like a ninja since it is use ajax without refreshing the page. It is very useful, when you wanted to find out something very fast. please click here to check out

click to visit ninja

Popularity: 1% [?]

Accessibility Wordpress theme Meyshan?

Posted on November 16th, 2006 in General by daya

 

The upcoming Wordpress theme Meyshan, with high enhancement and power of ajax, would also have following basic Accessibility and more as described here in http://codex.Wordpress.org/Accessibility. These are the minimum requirement we have given to the developers Infotechdreams an Indoor based company in India, who is currently developing the unique, highly ajax enhanced Wordpress theme Meyshan. However, we request you to advice, if we haven’t covered all in the accessibility in Wordpress meyshan theme.

Validation

Validation of one’s HTML documents is perhaps the most important, and the easiest, hence the developer of meyshan theme is expected to aid accessibility. A validator checks the document’s HTML against a document type definition to ensure that the syntax of the HTML is correct.

Forgetting a quotation mark or using the wrong attribute value is often very easy to do when writing HTML. While many browsers will recover from authoring errors, the way in which they recover tends to differ, and new versions of a browser may change the error recovery method. An excellent example is the change in behavior from Netscape 1.22 to Netscape 2.0; Netscape 1.22 did not care if the author forgot the closing quote in code such as <A HREF="oops.html>Oops</A>, but Netscape 2.0 required the closing quotation mark. A document that had been validated would be fine under either browser, but a document which the author had just visually checked under Netscape 1.22 was often missing half its content in Netscape 2.0.

The WDG HTML Validator should be used to check meyshan theme pages. Be wary of programs that falsely claim to be validators; while document checkers or lints can be valuable tools, they are not substitutes for HTML validation.

Platform Independence

Wherever possible, Web pages should be platform independent, meaning that they should be accessible regardless of the user’s platform and settings. While validation is a key step in ensuring platform independence, it alone is not sufficient. Authors should also take care to ensure that Web pages are not dependent on a certain resolution, color depth, font size, or window size.

Authors concerned about their documents’ accessibility are encouraged to view their pages with varying resolution, color depth, font size, and window size. Well-authored pages will adjust and remain accessible in any browsing environment. Authors can also view their Web pages on numerous browsers (preferably including a text-only browser like Lynx), and can have a friend read their Web pages aloud to simulate how blind or in-car users might hear the pages. Two helpful tools for authors in evaluating the platform independence of a Web site are the Web Page Purifier and Web Page Backward Compatibility Viewer.

Since people access the Web in different ways, platform-dependent phrases should be avoided. For example, "click here" is inappropriate to anyone without a mouse, and is also useless when a link anchor is read aloud or printed at the end of a document as a summary. Authors should also avoid phrases like "see below" since "below" is meaningless when a document is spoken aloud.

Structural HTML

When writing HTML, authors should concentrate on the structure of the document rather than its presentation. A document marked up structurally can easily adapt to different browsing environments. When composing HTML, authors should think about what the content means instead of how it should look. If you want text to be bold, think about why you want this style; if what you really want is to express emphasis or strong emphasis, use HTML’s EM or STRONG elements.

The FONT element is commonly misused when strong emphasis or a heading is the intended meaning. Rather than <FONT COLOR=red>Warning!</FONT>, use <STRONG CLASS=warning>Warning!</STRONG> with .warning { color: red; background: transparent } defined in a style sheet.

Some HTML presentation attributes, such as the ALIGN attribute, can safely be used as presentation suggestions. In general, style sheets provide a more flexible solution that favors both authors and users. To maintain accessibility, documents should never be dependent on a particular presentation, including one achieved through style sheets.

Images

ALT Text

When using the IMG or AREA elements, authors should always use the ALT attribute to provide a textual alternative. The ALT attribute is presented to those not loading images–estimated to account for 30% of all Web users.

The ALT attribute is best used to provide the function of the image rather than a description of the image. For example, ALT="Welcome to the Web Design Group" is more useful to those not loading images than ALT="Web Design Group logo". In general, users of a text-only browser like Lynx should be unaware that there are any images on the page, unless the image is content that cannot be completely replaced with text. In this case, such as in a photo album or art gallery, the image’s function and description are essentially the same thing, and so a description of the image would be appropriate for the ALT text.

Images that are purely decorative should use ALT="" to indicate explicitly that the image is not content. Decorative bullets should be replaced with ALT="*" or something similar–not ALT="Round yellow bullet". When images are alongside text or other images, some form of separation may be necessary, such as ALT=" [Photograph of me] " or ALT="Web Design Group ~".

For a thorough discussion of the ALT attribute, see the article Use of ALT texts in IMGs.

Images of Text

Images of text are quite common on the Web, but they can be difficult for those with poor vision or with high resolutions on small monitors. In HTML, text is sized according to the user’s preferred font size, but when using images of text the author must choose an absolute font size in pixels for the user. Since different users have different tastes, trying to guess a suitable font size is not a good idea. Thus, authors should avoid using images of text as much as possible.

Cascading Style Sheets can often be used to provide attractive text without the need for images. With CSS, the author can suggest numerous physical properties of text, including its font, color, background, letter spacing, and more.

Image Maps

Image maps are problematic because of their poor support for those not loading images. When using an image map, one should use a client-side image map in combination with a server-side image map wherever possible. With client-side image maps, the ALT attribute of the AREA element should always be used.

Image maps should be avoided when they are not "natural." For example, most graphical toolbars could more easily and more efficiently be created using a number of separate images or simply using text. On the other hand, an image map for linking to organs of the body, or an image map linking to regions of a country, would be natural and less contrived than the graphical toolbars common on the Web. If feasible, a textual alternative would be helpful in these cases.

BODY Colors

If setting colors using HTML’s BODY attributes, an author should specify all color attributes. By specifying only one or a few of BGCOLOR, TEXT, LINK, VLINK, and ALINK, authors risk an inaccessible document since the user’s chosen colors may be unreadable against the author’s specified colors. As an author, do not assume that users have the same browser settings as you.

BODY colors should always be specified with a hexadecimal triplet in the form #rrggbb or #RRGGBB since older browsers do not support color names. Netscape 1.22 will interpret all color names as blue.

Authors who specify a background image using BODY’s BACKGROUND attribute should also specify all color attributes. Be sure to select a BGCOLOR that will be readable against the text colors, since those not loading images will see the background color in place of the background image.

The FONT Element

HTML’s FONT element (and its cohort BASEFONT) should generally be avoided in creating accessible Web sites. While attribute specifications like SIZE="+1" or SIZE="-1" are relatively harmless, absolute sizes like SIZE=1 can result in text that is too small to read. Style sheets allow authors to suggest relative changes in font size with much greater flexibility than is allowed under FONT.

The FONT element’s COLOR attribute should always be avoided since many supporting browsers still honor the font color when the user tries to override author-specified colors. The result could be an unreadable document if the font color does not contrast well against the reader’s chosen background.

The FACE attribute of the FONT element can also not be overridden by the user in many supporting browsers. This may result in the browser choosing a font that is very difficult to read given the user’s platform and environment settings. Remember that the same font may look very different on platforms other than your own.

The FACE attribute should also not be used in an attempt to get Greek letters, mathematical symbols, or dingbats. The FONT element only suggests a presentation, so the content should still make sense in the absence of that presentation. Browsers should not render <FONT FACE=Symbol>a</FONT> as the Greek letter alpha; this bug may be corrected in the future.

For a more in-depth discussion of the FACE attribute, see <FONT FACE> considered harmful. Another excellent discussion on the FONT element is Warren Steel’s What’s Wrong With FONT?.

Tables

Authors should avoid using tables simply for layout as much as possible. Unfortunately, completely avoiding tables for layout can limit an author’s flexibility since CSS layout methods are not supported well enough to fully replace tables. When using tables for layout, authors should keep the following ideas in mind:

  • The WIDTH attribute on TABLE, TD, or TH elements is usually unnecessary and can hinder a document’s accessibility. In particular, authors should avoid specifying absolute widths larger than a few hundred pixels, since large widths can cause horizontal scrolling with narrow windows or large fonts.
  • While HTML standards do not allow a paragraph to contain a table, many browsers do allow this, which has led some authors to use floating tables within a sentence of a paragraph. In Lynx and speaking browsers, the result is half a sentence, followed by the table contents, followed by the other half of the sentence. To account for the different interpretations of tables and paragraphs, authors should never try to place a TABLE within a P element, and they should always use the optional </P> end-tag to end any paragraph preceding a table.

JavaScript

JavaScript (or JScript or VBScript) is not supported by all browsers and some users choose to disable it. When JavaScript is used, it should not be relied upon.

For example, when using JavaScript to open a small popup window from a link, authors should not use

<A HREF="javascript:window.open('foo.html', 'popup', 'scrollbars,resizable,width=300,height=120')">

since the link will fail to function for those without JavaScript enabled. The following would work in all browsers:

<A HREF="foo.html" ONCLICK="if (window.open) { window.open('foo.html', 'popup', 'scrollbars,resizable,width=300,height=120'); return false; }">

Popularity: 2% [?]

The Ajax Powered Wordpress theme: "Meyshan"

Posted on November 16th, 2006 in General by daya

The new Wordpress theme Meyshan has come to epitomize Wordpress blogging system. The new Wordpress theme “Meyshan” is highly enhanced and build with lots of Ajax. The theme is 100% XHTML and CSS Validated theme, also, the theme Meyshan is widget ready and with option page to easily customize to your needs. The theme is being tested to run perfectly nice with all the major browser, including IE, Safari, Opera, and our own Firefox.

The the new Wordpress theme Meyshan has Ajax tapped browsing, Ajax Live search, Ajax Comments, 3 column or 2 column(user selection) and also has a static front page. The theme meyshan also integrated with latest light box, grey box, thick box effects, sweet titles, seo plugins and more.

The highly ajax enhanced Wordpress theme “meyshan” also integrated and bundle with more than 40 useful must have Wordpress plugins and hacks.

The vision and Idea behind the Wordpress theme Meyshan is to contribute, to the Wordpress community by providing a theme, with the web. 2.0 kind of look and feel, fast loading, user friendly, and covering all the aspects of accessibility, search engine friendly and to show how ajax, flex, fijax along with other scriptlous and moo.fx effect including Lightbox script could play and blend together to create superior blogging theme for Wordpress.

With the perfect blend of color, widget, plugins, Superior design, user friendly, efficient coding,  the theme meyshan from Meyshan world Inc is expected to become a blog-hold name among bloggers in the world and expected to established a brand name.

We love meyshan and Wordpress, so we decided to make a Wordpress theme in the name of meyshan to contribute to Wordpress community.

The theme Meyshan is currently under beta testing and development stage, and being developed by Indur, India based company Infotechdreams, to whom we have placed the order. The final version to the theme is expected to be ready by the first week of December for the public use, however, beta tester are requested to contact us and also let us know other features you would like to integrated with this ultimate Wordpress theme meyshan.

Popularity: 4% [?]