File: dynamic_filters.js

package info (click to toggle)
mantis 1.1.6%2Bdfsg-2lenny6
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 9,576 kB
  • ctags: 14,851
  • sloc: php: 54,817; sql: 348; sh: 181; makefile: 56
file content (178 lines) | stat: -rw-r--r-- 7,519 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
/*
# Mantis - a php based bugtracking system

# Copyright (C) 2000 - 2002  Kenzaburo Ito - kenito@300baud.org
# Copyright (C) 2002 - 2007  Mantis Team   - mantisbt-dev@lists.sourceforge.net

# Mantis is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# Mantis is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Mantis.  If not, see <http://www.gnu.org/licenses/>.
 *
 * --------------------------------------------------------
 * $Id: dynamic_filters.js,v 1.5.2.1 2007-10-13 22:35:56 giallu Exp $
 * --------------------------------------------------------
 */
/*
// +----------------------------------------------------------------------+
// | Orginial Code Care Of:                                               |
// +----------------------------------------------------------------------+
// | Copyright (c) 2004 Bitflux GmbH                                      |
// +----------------------------------------------------------------------+
// | Licensed under the Apache License, Version 2.0 (the "License");      |
// | you may not use this file except in compliance with the License.     |
// | You may obtain a copy of the License at                              |
// | http://www.apache.org/licenses/LICENSE-2.0                           |
// | Unless required by applicable law or agreed to in writing, software  |
// | distributed under the License is distributed on an "AS IS" BASIS,    |
// | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or      |
// | implied. See the License for the specific language governing         |
// | permissions and limitations under the License.                       |
// +----------------------------------------------------------------------+
// | Author: Bitflux GmbH <devel@bitflux.ch>                              |
// |         http://blog.bitflux.ch/p1735.html                            |
// +----------------------------------------------------------------------+
//
//
// +----------------------------------------------------------------------+
// | Heavily Modified by Jeff Minard (07/09/04)                           |
// +----------------------------------------------------------------------+
// | Same stuff as above, yo!                                             |
// +----------------------------------------------------------------------+
// | Author: Jeff Minard <jeff-js@creatimation.net>                       |
// |         http://www.creatimation.net                                  |
// |         http://www.creatimation.net/journal/live-request             |
// +----------------------------------------------------------------------+
//
// +----------------------------------------------------------------------+
// | What is this nonsense?? (07/09/04)                                   |
// +----------------------------------------------------------------------+
// | This is a script that, by using XMLHttpRequest javascript objects    |
// | you can quickly add some very click live interactive feed back to    |
// | your pages that reuire server side interaction.                      |
// |                                                                      |
// | For instance, you use this to emulate a "live searching" feature     |
// | wherein users type in key phrases, and once they have stopped typing |
// | the script will automatically search and retrive *without* a page    |
// | reload.
// |                                                                      |
// | In another instance, I use this to product live comments by passing  |
// | the text to a Textile class that parses it to valid HTML. After      |
// | parsing, the html is returned and displayed on the page as the       |
// | user types.                                                          |
// +----------------------------------------------------------------------+
//
//
// +----------------------------------------------------------------------+
// | Modified by Lee O'Mara <lomara@omara.ca>                  12/08/2004 |
// +----------------------------------------------------------------------+
// | Hacked apart Jeff's script for use in Mantis.                        |
// |                                                                      |
// | This script gets filters from the server and displays them without   |
// | reloading the page.                                                  |
// |                                                                      |
// | The script tries to follow the notion of "unobtrusive javascript".   |
// | There are no event handlers in the HTML code. The events are added   |
// | on pageload(based on specific id names).                             |
// +----------------------------------------------------------------------+
//
//
*/


var processURI    = './return_dynamic_filters.php';
var liveReq = false;

/**
 * Build the XMLHttpRequest and send it
 */
function liveReqDoReq() {

	if (liveReq && liveReq.readyState < 4) {
		liveReq.abort();
	}
	
	if (window.XMLHttpRequest) {
		// branch for IE7, Firefox, Opera, etc.
		liveReq = new XMLHttpRequest();
	} else if (window.ActiveXObject) {
		// branch for IE5, IE6 via ActiveX
		liveReq = new ActiveXObject("Microsoft.XMLHTTP");
	}

	name = this.id;
	liveReq.onreadystatechange = function(){liveReqProcessReqChange(name);};
	t_view = document.getElementById('filters_form_open').elements['view_type'].value;
	liveReq.open("GET", processURI + "?view_type=" + t_view + "&filter_target=" + this.id);

	// show "Loading..." while waiting
	document.getElementById(this.id+'_target').innerHTML = string_loading;

	liveReq.send(null);

	return false;
}

/**
 * Processes the results of the XMLHttpRequest
 */
function liveReqProcessReqChange(name) {
	if (liveReq.readyState == 4) {
		document.getElementById(name+'_target').innerHTML = liveReq.responseText;
		replaceWithContent(name);
	}
}

/**
 * Strip the tag, leave the content.
 */
function replaceWithContent(id){
	tag = document.getElementById(id);
	if (!tag) return false;
	t_parent = tag.parentNode;
	if (!t_parent) return false;
	for(var i=0; i <tag.childNodes.length; i++){
		child = tag.childNodes[i].cloneNode(true);
		t_parent.insertBefore(child, tag);
	}
	t_parent.removeChild(tag);
}

/**
 * Initialise the filter links
 */
function labelInit(){
	// keep browsers that don't support DOM or
	// XMLHttpRequest from getting in trouble
	if (document.getElementById && 	(window.XMLHttpRequest || window.ActiveXObject)) {

		t_form = document.getElementById("filters_form_open");
		if (!t_form) return false;

		t_links = t_form.getElementsByTagName("a");
		if (!t_links) return false;

		for(var i=0; i < t_links.length; i++){
			var t_link = t_links[i];
			if (t_link.id.substring((t_link.id.length - 7), t_link.id.length) == "_filter"){
				// only attach event handler if a target is found
				if (document.getElementById(t_link.id+'_target')){
					// setup the event handler
					t_link.onclick = liveReqDoReq;
				} else {
					alert("missing target for:" +t_link.id);
				}
			}
		}
	}
}

addLoadEvent(labelInit);