From 88da694266b2425cfea1a30a2a004ab9d3e73609 Mon Sep 17 00:00:00 2001 From: Tobias Markmann Date: Fri, 9 Oct 2009 21:37:40 +0000 Subject: [PATCH] Some aesthetic changes. git-svn-id: file:///home/ksmith/gitmigration/svn/xmpp/trunk@3530 4b5297f7-1745-476d-ba37-a9c6900126ab --- index.shtml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/index.shtml b/index.shtml index 545be433..ece6413a 100755 --- a/index.shtml +++ b/index.shtml @@ -9,7 +9,7 @@

XMPP is the Extensible Messaging and Presence Protocol, a set of open technologies for instant messaging, presence, multi-party chat, voice and video calls, collaboration, lightweight middleware, content syndication, and generalized routing of XML data.

The XMPP Standards Foundation (XSF) develops extensions to XMPP through a standards process centered around XMPP Extension Protocols (XEPs). The process is managed by the XMPP Extensions Editor and involves intensive discussion on the Standards mailing list, formal review and voting by the XMPP Council, and modification based on implementation experience and interoperability testing. All documents in the XEP series are available under a liberal IPR Policy for wide implementation. Submissions are welcome (see also the "inbox"). All XEPs and related files are under source control, old versions are available, and IETF-style XML reference files are provided.

-

This page lists approved XMPP extensions as well as proposals that are under active consideration. Good places for developers to start are the client compliance and server compliance definitions, as well as the technology overview pages.

+

This page lists approved XMPP extensions as well as proposals that are under active consideration. A list of all XEPs (including retracted, rejected, deprecated, and obsolete XEPs) is also available. Good places for developers to start are the client compliance and server compliance definitions, as well as the technology overview pages.

@@ -18,20 +18,20 @@ $("p#status-selector > input").click(function(event){ var xep_status = $(this).attr("name"); if (this.checked) { - $(".XEP-" + xep_status).css("display", ""); + $(".XEP-" + xep_status).fadeIn("normal"); } else { - $(".XEP-" + xep_status).css("display", "none"); + $(".XEP-" + xep_status).fadeOut("normal"); } }); jQuery.each($("p#status-selector > input"), function() { var xep_status = $(this).attr("name"); if (this.checked) { - $(".XEP-" + xep_status).css("display", ""); + $(".XEP-" + xep_status).show(); } else { - $(".XEP-" + xep_status).css("display", "none"); + $(".XEP-" + xep_status).hide(); } }); - $(".jsSupport").css("display", ""); + $(".jsSupport").fadeIn("normal"); });