Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(143)

Unified Diff: third_party/twisted_8_1/twisted/web/woven/WebConduit2_msie.js

Issue 12261012: Remove third_party/twisted_8_1 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/twisted_8_1/twisted/web/woven/WebConduit2_msie.js
diff --git a/third_party/twisted_8_1/twisted/web/woven/WebConduit2_msie.js b/third_party/twisted_8_1/twisted/web/woven/WebConduit2_msie.js
deleted file mode 100644
index 9d281bb44327a38f7d474ad47a6758c216cfe761..0000000000000000000000000000000000000000
--- a/third_party/twisted_8_1/twisted/web/woven/WebConduit2_msie.js
+++ /dev/null
@@ -1,105 +0,0 @@
-var InternetExplorer = navigator.appName.indexOf('Microsoft') != 1
-function FlashConduit_swf_DoFSCommand(command, args) {
- eval(args)
-}
-
-if (InternetExplorer) {
- if (navigator.userAgent.indexOf('Windows') != -1) {
- document.write('<SCRIPT LANGUAGE=VBScript\>\n')
- document.write('on error resume next\n')
- document.write('Sub FlashConduit_swf_FSCommand(ByVal command, ByVal args)\n')
- document.write('call FlashConduit_swf_DoFSCommand(command, args)\n')
- document.write('end sub\n')
- document.write('</SCRIPT\>\n')
- }
-
-}
-
-var woven_eventQueue = []
-woven_eventQueueBusy = 0
-woven_clientSideEventNum = 0
-
-function woven_eventHandler(eventName, node) {
- var eventTarget = node.getAttribute('id')
- var additionalArguments = ''
- for (i = 2; i<arguments.length; i++) {
- additionalArguments += '&woven_clientSideEventArguments='
- additionalArguments += escape(eval(arguments[i]))
- }
- var source = '?woven_clientSideEventName=' + eventName + '&woven_clientSideEventTarget=' + eventTarget + additionalArguments + '&woven_clientSideEventNum=' + woven_clientSideEventNum
- woven_clientSideEventNum += 1
-
- woven_eventQueue = woven_eventQueue.concat(source)
- if (!woven_eventQueueBusy) {
- woven_sendTopEvent()
- }
- return false
-}
-
-function woven_sendTopEvent() {
- woven_eventQueueBusy = 1
- var url = woven_eventQueue[0]
- woven_eventQueue = woven_eventQueue.slice(1)
- var input = document.getElementById('woven_inputConduit')
-
- input.src = url
-}
-
-function woven_clientToServerEventComplete() {
- if (this.woven_eventQueue.length) {
- this.woven_sendTopEvent()
- } else {
- this.woven_eventQueueBusy = 0
- }
- var focus = document.getElementById('woven_firstResponder')
- if (focus) {
- focus.focus()
- if (focus.getAttribute('clearOnFocus')) {
- focus.value=''
- }
- }
- document.scrollTop = 999999999
-}
-
-function woven_attemptFocus(theNode) {
- // focus the first input element in the new node
- if (theNode.tagName == 'INPUT') {
- theNode.focus()
- return 1
- } else {
-/* for (i=0; i<theNode.childNodes.length; i++) { */
-/* if(woven_attemptFocus(theNode.childNodes[i])) { */
-/* return 1 */
-/* } */
-/* } */
- return 0
- }
-}
-
-function woven_replaceElement(theId, htmlStr) {
- //alert(woven_eventQueue.length)
- var oldNode = document.getElementById(theId)
- if (oldNode) {
- if (oldNode.parentNode) {
- var created = document.createElement('span')
- created.innerHTML = htmlStr
- if (created.firstChild) {
- oldNode.parentNode.replaceChild(created.firstChild, oldNode)
- var newNode = document.getElementById(theId)
- //woven_attemptFocus(newNode)
- }
- }
- }
-}
-
-function woven_appendChild(theId, htmlStr) {
- var container = document.getElementById(theId)
- var newNode = document.createElement('span')
- newNode.innerHTML = htmlStr
- container.appendChild(newNode.firstChild)
-}
-
-function woven_removeChild(theId) {
- var theElement = document.getElementById(theId)
- theElement.parentNode.removeChild(theElement)
-}

Powered by Google App Engine
This is Rietveld 408576698