Lines Matching full:update

2  * Update plugin. Use updateUrl and updateInterval (optional, default is 60000ms)
4 * update-url and update-interval URL parameters may be used instead.)
11 * <update ...>
20 * Where update must contain an id attribute to reference the cell in the diagram.
75 var updateInterval = parseInt(urlParams['update-interval'] || 60000);
76 var updateUrlParam = urlParams['update-url'];
83 // Creates empty file if update URL is in URL parameter
131 if (urlParams['update-url'] || (root.value != null && typeof(root.value) == 'object'))
219 var update = doc.createElement('update');
220 update.setAttribute('id', cell.id);
221 update.setAttribute('value', '<object label="%load% minutes" load="' +
223 update.setAttribute('style', cell.style + ';strokeColor=red;strokeWidth=' +
225 status.appendChild(update);
229 var update = doc.createElement('update');
230 update.setAttribute('id', cell.id);
231 update.setAttribute('value', '<object label="" load="' +
233 update.setAttribute('style', cell.style + ';strokeColor=black;strokeWidth=;');
234 status.appendChild(update);
239 // For the purpose of the demo we flag stuff to update with update="1".
242 cell.value.getAttribute('update') == '1')
252 var update = doc.createElement('update');
253 update.setAttribute('id', cell.id);
254 update.setAttribute('value', '<object tooltip="%load%% Done" load="' +
256 update.setAttribute('style', cell.prevStyle + ';fillColor=red;gradientColor=white;');
257 update.setAttribute('icon', JSON.stringify({tooltip: 'Alert', align: 'right',
259 // update.setAttribute('geometry', JSON.stringify({dx: (Math.random() * 100) - 50,
261 status.appendChild(update);
266 var update = doc.createElement('update');
267 update.setAttribute('id', cell.id);
268 update.setAttribute('icon', JSON.stringify({tooltip: 'Busy', append: true,
270 status.appendChild(update);
275 var update = doc.createElement('update');
276 update.setAttribute('id', cell.id);
277 update.setAttribute('style', cell.prevStyle + ';fillColor=#d4e1f5;gradientColor=white;');
278 update.setAttribute('value',
280 update.setAttribute('icon', '');
281 status.appendChild(update);