Latest Headlines on OCRegister.com
[x] Close
Web Dev Stuff, Freedom Stuff ~ Stuff for Freedom Web Developers

Archive for the 'HTML' Category

Farbtastic: jQuery color picker plug-in | Steven Wittens - Acko.net

September 5th, 2008, 8:32 am by Clay

Farbtastic Color Picker widgetFarbtastic is a jQuery plug-in that can add one or more color picker widgets into a page through JavaScript. Each widget is then linked to an existing element (e.g. a text field) and will update the element's value when a color is selected.

Download Farbtastic 1.2 - 8 January 2007 (License: GPL).

Farbtastic: jQuery color picker plug-in | Steven Wittens - Acko.net

Can Web 2.0 Evolve Into An Enterprise Technology?

October 30th, 2007, 11:59 am by Clay

Web 2.0 Impact ChartGrowing Pains: Can Web 2.0 Evolve Into An Enterprise Technology? -- Web 2.0 -- InformationWeek

Wikis, mashups, social networking, and even Second Life can have a place in business, but they need to improve legacy interoperability--and IT needs to overcome its skepticism.

WordPressMU Bug Trac for fixing target="_blank"

October 9th, 2007, 9:32 am by Clay

W3C - World Wide Web ConsortiumOnce upon a time, we had a vexing problem where we couldn't set the @target (OT: @target is tech-speak/jargon/euphemism for 'target attribute'). Actually, you could set it, but when you 'saved' the post or story, TinyMCE (that nifty toolbar interface for formatting blog posts used by WordPress and a million other places). Here's where I figured out what was wrong. I don't know why they 'broke' the @target attribute, although I do know that the 'target' attribute was deprecated in HTML 4.01, as well as XHTML 1.0. However, there are ways around it, like via JavaScript and XHTML modules which are pretty darn cool.

Anyway, when we upgrade WordPressMU to the next version, we'll likely need to 'fix' this again, so here's $98 bucks worth of direction:

Changeset 1022 - WordPress MU Trac - Trac

Just change this:

$allowedposttags = array(
'address' => array(),
'a' => array(
'href' => array(), 'title' => array(),
'rel' => array(), 'rev' => array(),
'name' => array()
),

to this:

$allowedposttags = array(
'address' => array(),
'a' => array(
'href' => array(), 'title' => array(),
'rel' => array(), 'rev' => array(),
'name' => array(), 'target' => array()
),

NOTE: This change was downgraded to determine if it inexplicably affects bandwidth performance.

Yahoo! UI Library: Graded Browser Support

September 28th, 2007, 10:31 am by Clay

Yahoo! UI Library: Graded Browser Support

A-Grade Browser Support is probably what we should adopt, as well.

TinyMCE - The WYSIWYG Editor for WordPress

September 26th, 2007, 8:16 am by Clay

TinyMCE EditorTinyMCE is a powerful WYSIWYG editor control for web browsers such as MSIE or Mozilla that enables the user to edit HTML contents in a more user friendly way. The editor control is very flexible and it's built for integration purposes (usage within systems like Intranets, CMS, and LMS, for example).

TinyMCE:Installation - Moxiecode Documentation Wiki

This is the Text Editor available for WordPress posting (Visual Edit mode). Pretty neat. Perhaps we'll add a few items...

Here're some more interesting TinyMCE links:

Perhaps, if I can ever find some time, I'll be able to play around with this stuff.

Add Search Providers to Internet Explorer 7 & Firefox

September 11th, 2007, 8:25 am by Clay

I believe that if we could arrange to have each of Freedom's 7000 employees use as their browsers' default, local news resource, the web search tool, it would have an impact on Freedom revenue. At the very least, we may want to consider making this one of the steps in setting up new workstations.

By following the directions on the following page, we can use the OCRegister.com Google 'web' search results page our default for searches from the IE7 search bar:

There are also instructions available to add them to the Mozilla Search Bar here:

Technorati’s OSD fileThat page has instructions indicating how to add a search engine plugin to your browser, and 'advertise' how to do it to the web browser, so our visitors & staff can add them to their browsers as well. Very Nifty! Read the rest of this entry »

Prop-Clear: CSS min-height hack

September 6th, 2007, 10:24 am by Clay

This is the solution to the perplexing problem of content area overflowing onto footers and su

Prop-Clear: CSS min-height hack

In a nutshell, add this to your CSS style sheet:

.clear { clear:both; height:1px; overflow:hidden; }

... and add <div class="clear"></div> to your HTML:


<div class="contentinnerwrapper">
<?php echo $content_for_layout; ?>
<div class="clear"></div>
</div>

Test your web design in different browsers - Browsershots

May 21st, 2007, 11:48 am by Clay

Test your web design in different browsers - Browsershots
Browsershots makes screenshots of your web design in different browsers. It is a free open-source online service created by Johann C. Rocholl. When you submit your web address, it will be added to the job queue. A number of distributed computers will open your website in their browser. Then they will make screenshots and upload them to the central server here.

Dreamweaver: Configuring Third-Party File Compare (aka `diff`)

May 21st, 2007, 11:48 am by Clay

Adobe - Developer Center : Configuring Third-Party File Compare

This article gives step-by-step instructions to enable the ‘Compare with Remote’ menu item (for Mac & Windows ;-) . It also provides information on where to get and configure file comparison: WinMerge (Windows) and FileMerge (Mac).

NOTE: FileMerge is available free via Mac OS X Developer Tools XCode package, available from http://developer.apple.com/ (free registration).

Mystery Bug - css-discuss

May 21st, 2007, 11:45 am by Clay

The article below outlines a useful technique in identifying and resolving CSS ‘bugs’ and other problems.

From the article overview:

Mystery Bug - css-discuss
CSS bugs can be obscenely difficult to isolate, especially when they are located amidst a large, complex page with many external style sheets. Compounding this is the fact that few coders have enough experience to be sure that what they’re seeing really IS a bug, and not just incorrect coding.

Often people will, when facing the Mystery Bug, just thrash about almost blindly, and only by pure luck will the answer be found. This need not be.

By following the procedure below, a clear understanding of the problem may be quickly obtained, freeing the coder to find a workaround or avoid the bug altogether.