mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 01:27:36 +01:00
Initial XFN support.
git-svn-id: http://svn.automattic.com/wordpress/trunk@633 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
2e42c2329f
commit
7aa01391d0
@ -69,7 +69,7 @@ setTimeout("redirect();", 600);
|
||||
?>
|
||||
|
||||
<script language="javascript" type="text/javascript">
|
||||
<!-- hiding from old terrible browsers
|
||||
//<![CDATA[
|
||||
|
||||
function profile(userID) {
|
||||
window.open ("profile.php?action=viewprofile&user="+userID, "Profile", "width=500, height=450, location=0, menubar=0, resizable=0, scrollbars=1, status=1, titlebar=0, toolbar=0, screenX=60, left=60, screenY=60, top=60");
|
||||
@ -82,9 +82,55 @@ setTimeout("redirect();", 600);
|
||||
function helpWindow(url) {
|
||||
window.open(url, "Help", "width=640, height=450, location=0, menubar=0, resizable=0, scrollbars=1, status=1, titlebar=0, toolbar=0, screenX=60, left=60, screenY=60, top=60");
|
||||
}
|
||||
|
||||
|
||||
// End -->
|
||||
function GetElementsWithClassName(elementName, className) {
|
||||
var allElements = document.getElementsByTagName(elementName);
|
||||
var elemColl = new Array();
|
||||
for (i = 0; i < allElements.length; i++) {
|
||||
if (allElements[i].className == className) {
|
||||
elemColl[elemColl.length] = allElements[i];
|
||||
}
|
||||
}
|
||||
return elemColl;
|
||||
}
|
||||
|
||||
function blurry() {
|
||||
if (!document.getElementById) return;
|
||||
|
||||
var aInputs = document.getElementsByTagName('input');
|
||||
|
||||
for (var i = 0; i < aInputs.length; i++) {
|
||||
|
||||
aInputs[i].onclick = function() {
|
||||
var inputColl = GetElementsWithClassName('input','valinp');
|
||||
var rel = document.getElementById('rel');
|
||||
var inputs = '';
|
||||
for (i = 0; i < inputColl.length; i++) {
|
||||
if (inputColl[i].checked) {
|
||||
if (inputColl[i].value != '') inputs += inputColl[i].value + ' ';
|
||||
}
|
||||
}
|
||||
inputs = inputs.substr(0,inputs.length - 1);
|
||||
rel.value = inputs;
|
||||
}
|
||||
|
||||
aInputs[i].onkeyup = function() {
|
||||
var inputColl = GetElementsWithClassName('input','valinp');
|
||||
var rel = document.getElementById('rel');
|
||||
var inputs = '';
|
||||
for (i = 0; i < inputColl.length; i++) {
|
||||
if (inputColl[i].checked) {
|
||||
inputs += inputColl[i].value + ' ';
|
||||
}
|
||||
}
|
||||
inputs = inputs.substr(0,inputs.length - 1);
|
||||
rel.value = inputs;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
window.onload = blurry;
|
||||
//]]>
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
|
@ -654,7 +654,68 @@ LINKS;
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right">rel:</td>
|
||||
<td><input type="text" name="rel" size="80" value=""></td>
|
||||
<td><input type="text" name="rel" id="rel" size="80" value=""></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" align="right"><a href="http://gmpg.org/xfn/">XFN</a>:</td>
|
||||
<td> <table cellspacing="0">
|
||||
<tr>
|
||||
<th scope="row">
|
||||
friendship
|
||||
</th>
|
||||
<td>
|
||||
|
||||
<label for="friendship-aquaintance"><input class="valinp" type="radio" name="friendship" value="acquaintance" id="friendship-aquaintance" /> acquaintance</label> <label for="friendship-friend"><input class="valinp" type="radio" name="friendship" value="friend" id="friendship-friend" /> friend</label> <label for="friendship-none"><input class="valinp" type="radio" name="friendship" value="" id="friendship-none" /> none</label>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">
|
||||
|
||||
physical
|
||||
</th>
|
||||
<td>
|
||||
<label for="met"><input class="valinp" type="checkbox" name="physical" value="met" id="met" /> met</label>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">
|
||||
|
||||
professional
|
||||
</th>
|
||||
<td>
|
||||
<label for="co-worker"><input class="valinp" type="checkbox" name="professional" value="co-worker" id="co-worker" /> co-worker</label> <label for="colleague"><input class="valinp" type="checkbox" name="professional" value="colleague" id="colleague" /> colleague</label>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
||||
<th scope="row">
|
||||
geographical
|
||||
</th>
|
||||
<td>
|
||||
<label for="co-resident"><input class="valinp" type="radio" name="geographical" value="co-resident" id="co-resident" /> co-resident</label> <label for="neighbor"><input class="valinp" type="radio" name="geographical" value="neighbor" id="neighbor" /> neighbor</label> <label for="geographical-none"><input class="valinp" type="radio" name="geographical" value="" id="geographical-none" /> none</label>
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">
|
||||
family
|
||||
</th>
|
||||
<td>
|
||||
<label for="family-child"><input class="valinp" type="radio" name="family" value="child" id="family-child" /> child</label> <label for="family-parent"><input class="valinp" type="radio" name="family" value="parent" id="family-parent" /> parent</label> <label for="family-sibling"><input class="valinp" type="radio" name="family" value="sibling" id="family-sibling" /> sibling</label> <label for="family-spouse"><input class="valinp" type="radio" name="family" value="spouse" id="family-spouse" /> spouse</label>
|
||||
<label for="family-none"><input class="valinp" type="radio" name="family" value="" id="family-none" /> none</label>
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th scope="row">
|
||||
romantic
|
||||
</th>
|
||||
<td>
|
||||
<label for="muse"><input class="valinp" type="checkbox" name="romantic" value="muse" id="muse" /> muse</label> <label for="crush"><input class="valinp" type="checkbox" name="romantic" value="crush" id="crush" /> crush</label> <label for="date"><input class="valinp" type="checkbox" name="romantic" value="date" id="date" /> date</label> <label for="sweetheart"><input class="valinp" type="checkbox" name="romantic" value="sweetheart" id="sweetheart" /> sweetheart</label><label for="spouse"></label>
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</table></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" align="right">Notes:</td>
|
||||
|
Loading…
Reference in New Issue
Block a user