summaryrefslogtreecommitdiff
authormickeyl <mickeyl>2004-04-27 19:16:52 (UTC)
committer mickeyl <mickeyl>2004-04-27 19:16:52 (UTC)
commit7e3f65c9733254bf9f67932cc4f3833fba9a4914 (patch) (unidiff)
treec3b609c862afbe8667f448a473a9641c8c0ab298
parentb645511e7fba8e3c27fda69b3939c0e5dbca1609 (diff)
downloadopie-7e3f65c9733254bf9f67932cc4f3833fba9a4914.zip
opie-7e3f65c9733254bf9f67932cc4f3833fba9a4914.tar.gz
opie-7e3f65c9733254bf9f67932cc4f3833fba9a4914.tar.bz2
g++ 3.4 fix in conjunction w/ the qte fix
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/aqpkg/datamgr.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/noncore/settings/aqpkg/datamgr.cpp b/noncore/settings/aqpkg/datamgr.cpp
index 67f90a3..93daaba 100644
--- a/noncore/settings/aqpkg/datamgr.cpp
+++ b/noncore/settings/aqpkg/datamgr.cpp
@@ -103,115 +103,115 @@ void DataManager :: loadServers()
103 { 103 {
104 return; 104 return;
105 } 105 }
106 else 106 else
107 { 107 {
108 while ( fgets( line, sizeof line, fp) != NULL ) 108 while ( fgets( line, sizeof line, fp) != NULL )
109 { 109 {
110 lineStr = line; 110 lineStr = line;
111 if ( lineStr.startsWith( "src" ) || lineStr.startsWith( "#src" ) || lineStr.startsWith( "# src" ) ) 111 if ( lineStr.startsWith( "src" ) || lineStr.startsWith( "#src" ) || lineStr.startsWith( "# src" ) )
112 { 112 {
113 char alias[20]; 113 char alias[20];
114 char url[100]; 114 char url[100];
115 115
116 // Looks a little wierd but read up to the r of src (throwing it away), 116 // Looks a little wierd but read up to the r of src (throwing it away),
117 // then read up to the next space and throw that away, the alias 117 // then read up to the next space and throw that away, the alias
118 // is next. 118 // is next.
119 // Should Handle #src, # src, src, and combinations of 119 // Should Handle #src, # src, src, and combinations of
120 sscanf( lineStr, "%*[^r]%*[^ ] %s %s", alias, url ); 120 sscanf( lineStr, "%*[^r]%*[^ ] %s %s", alias, url );
121 Server *s = new Server( alias, url ); 121 Server *s = new Server( alias, url );
122 if ( lineStr.startsWith( "src" ) ) 122 if ( lineStr.startsWith( "src" ) )
123 s->setActive( true ); 123 s->setActive( true );
124 else 124 else
125 s->setActive( false ); 125 s->setActive( false );
126 126
127 serverList.append( s ); 127 serverList.append( s );
128 128
129 } 129 }
130 else if ( lineStr.startsWith( "dest" ) ) 130 else if ( lineStr.startsWith( "dest" ) )
131 { 131 {
132 char alias[20]; 132 char alias[20];
133 char path[50]; 133 char path[50];
134 sscanf( lineStr, "%*[^ ] %s %s", alias, path ); 134 sscanf( lineStr, "%*[^ ] %s %s", alias, path );
135 Destination *d = new Destination( alias, path ); 135 Destination *d = new Destination( alias, path );
136 bool linkToRoot = true; 136 bool linkToRoot = true;
137#ifdef QWS 137#ifdef QWS
138 QString key = alias; 138 QString key = alias;
139 key += "_linkToRoot"; 139 key += "_linkToRoot";
140 linkToRoot = cfg.readBoolEntry( key, true ); 140 linkToRoot = cfg.readBoolEntry( key, true );
141#endif 141#endif
142 d->linkToRoot( linkToRoot ); 142 d->linkToRoot( linkToRoot );
143 143
144 destList.append( d ); 144 destList.append( d );
145 } 145 }
146 else if ( lineStr.startsWith( "option" ) || lineStr.startsWith( "#option" ) ) 146 else if ( lineStr.startsWith( "option" ) || lineStr.startsWith( "#option" ) )
147 { 147 {
148 char type[20]; 148 char type[20];
149 char val[100]; 149 char val[100];
150 sscanf( lineStr, "%*[^ ] %s %s", type, val ); 150 sscanf( lineStr, "%*[^ ] %s %s", type, val );
151 if ( stricmp( type, "http_proxy" ) == 0 ) 151 if ( qstricmp( type, "http_proxy" ) == 0 )
152 { 152 {
153 httpProxy = val; 153 httpProxy = val;
154 if ( lineStr.startsWith( "#" ) ) 154 if ( lineStr.startsWith( "#" ) )
155 httpProxyEnabled = false; 155 httpProxyEnabled = false;
156 else 156 else
157 httpProxyEnabled = true; 157 httpProxyEnabled = true;
158 } 158 }
159 if ( stricmp( type, "ftp_proxy" ) == 0 ) 159 if ( qstricmp( type, "ftp_proxy" ) == 0 )
160 { 160 {
161 ftpProxy = val; 161 ftpProxy = val;
162 if ( lineStr.startsWith( "#" ) ) 162 if ( lineStr.startsWith( "#" ) )
163 ftpProxyEnabled = false; 163 ftpProxyEnabled = false;
164 else 164 else
165 ftpProxyEnabled = true; 165 ftpProxyEnabled = true;
166 } 166 }
167 if ( stricmp( type, "proxy_username" ) == 0 ) 167 if ( qstricmp( type, "proxy_username" ) == 0 )
168 proxyUsername = val; 168 proxyUsername = val;
169 if ( stricmp( type, "proxy_password" ) == 0 ) 169 if ( qstricmp( type, "proxy_password" ) == 0 )
170 proxyPassword = val; 170 proxyPassword = val;
171 } 171 }
172 } 172 }
173 } 173 }
174 fclose( fp ); 174 fclose( fp );
175 175
176 reloadServerData( ); 176 reloadServerData( );
177} 177}
178 178
179void DataManager :: reloadServerData( ) 179void DataManager :: reloadServerData( )
180{ 180{
181 emit progressSetSteps( serverList.count() ); 181 emit progressSetSteps( serverList.count() );
182 emit progressSetMessage( tr( "Reading configuration..." ) ); 182 emit progressSetMessage( tr( "Reading configuration..." ) );
183 183
184 QString serverName; 184 QString serverName;
185 int i = 0; 185 int i = 0;
186 186
187 Server *server; 187 Server *server;
188 QListIterator<Server> it( serverList ); 188 QListIterator<Server> it( serverList );
189 for ( ; it.current(); ++it ) 189 for ( ; it.current(); ++it )
190 { 190 {
191 server = it.current(); 191 server = it.current();
192 serverName = server->getServerName(); 192 serverName = server->getServerName();
193 i++; 193 i++;
194 emit progressUpdate( i ); 194 emit progressUpdate( i );
195 qApp->processEvents(); 195 qApp->processEvents();
196 196
197 // Now we've read the config file in we need to read the servers 197 // Now we've read the config file in we need to read the servers
198 // The local server is a special case. This holds the contents of the 198 // The local server is a special case. This holds the contents of the
199 // status files the number of which depends on how many destinations 199 // status files the number of which depends on how many destinations
200 // we've set up 200 // we've set up
201 // The other servers files hold the contents of the server package list 201 // The other servers files hold the contents of the server package list
202 if ( serverName == LOCAL_SERVER ) 202 if ( serverName == LOCAL_SERVER )
203 server->readStatusFile( destList ); 203 server->readStatusFile( destList );
204 else if ( serverName == LOCAL_IPKGS ) 204 else if ( serverName == LOCAL_IPKGS )
205 server->readLocalIpks( getServer( LOCAL_SERVER ) ); 205 server->readLocalIpks( getServer( LOCAL_SERVER ) );
206 else 206 else
207 server->readPackageFile( getServer( LOCAL_SERVER ) ); 207 server->readPackageFile( getServer( LOCAL_SERVER ) );
208 } 208 }
209} 209}
210 210
211void DataManager :: writeOutIpkgConf() 211void DataManager :: writeOutIpkgConf()
212{ 212{
213 QFile f( IPKG_CONF ); 213 QFile f( IPKG_CONF );
214 if ( !f.open( IO_WriteOnly ) ) 214 if ( !f.open( IO_WriteOnly ) )
215 { 215 {
216 return; 216 return;
217 } 217 }