Changeset 2279
- Timestamp:
- 06/04/07 12:44:15 (1 year ago)
- Files:
-
- eclipsetracplugin/eclipse/trunk/mm.eclipse.trac/META-INF/MANIFEST.MF (modified) (1 diff)
- eclipsetracplugin/eclipse/trunk/mm.eclipse.trac/src/mm/eclipse/trac/xmlrpc/Trac.java (modified) (3 diffs)
- eclipsetracplugin/eclipse/trunk/org.apache.commons.httpclient/build.properties (modified) (1 diff)
- eclipsetracplugin/eclipse/trunk/org.apache.xmlrpc/META-INF/MANIFEST.MF (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
eclipsetracplugin/eclipse/trunk/mm.eclipse.trac/META-INF/MANIFEST.MF
r2275 r2279 14 14 org.eclipse.ui.navigator, 15 15 org.eclipse.ui.views, 16 org.apache.xmlrpc 16 org.apache.xmlrpc;bundle-version="3.0.0" 17 17 Eclipse-LazyStart: true 18 18 Bundle-Vendor: Matteo Merli eclipsetracplugin/eclipse/trunk/mm.eclipse.trac/src/mm/eclipse/trac/xmlrpc/Trac.java
r2275 r2279 15 15 import org.apache.xmlrpc.client.XmlRpcClient; 16 16 import org.apache.xmlrpc.client.XmlRpcClientConfigImpl; 17 import org.apache.xmlrpc.client.XmlRpcCommonsTransportFactory; 17 18 import org.apache.xmlrpc.client.XmlRpcSunHttpTransportFactory; 18 19 … … 42 43 if ( !anonymous ) 43 44 { 44 // If the user chose not to authe ticate anonymously45 // If the user chose not to authenticate anonymously 45 46 // but not provided any password, make sure the authentication 46 47 // will fail, without the system asking credentials with an … … 59 60 XmlRpcClient client = new XmlRpcClient(); 60 61 client.setConfig( config ); 61 client.setTransportFactory( new XmlRpc SunHttpTransportFactory( client ) );62 client.setTransportFactory( new XmlRpcCommonsTransportFactory( client ) ); 62 63 63 64 proxy = new DynamicProxy( client ); eclipsetracplugin/eclipse/trunk/org.apache.commons.httpclient/build.properties
r2278 r2279 1 source.. = src/2 output.. = bin/3 1 bin.includes = META-INF/,\ 4 2 .,\ eclipsetracplugin/eclipse/trunk/org.apache.xmlrpc/META-INF/MANIFEST.MF
r2276 r2279 9 9 lib/xmlrpc-common-3.0.jar, 10 10 lib/ws-commons-util-1.0.1.jar 11 Require-Bundle: org.apache.commons.httpclient
