Subversion Repositories userdetect2

Rev

Rev 87 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 87 Rev 90
Line 176... Line 176...
176
 
176
 
177
  // Split conditions and command
177
  // Split conditions and command
178
  nameVal := SplitString('=', idTermAndCmd); // TODO: problem... "=" could be inside dynamicData...
178
  nameVal := SplitString('=', idTermAndCmd); // TODO: problem... "=" could be inside dynamicData...
179
  if Length(nameVal) < 2 then exit;
179
  if Length(nameVal) < 2 then exit;
180
  idTerm := nameVal[0];
180
  idTerm := nameVal[0];
-
 
181
  if Pos(':', idTerm) = 0 then Exit; // e.g. the INI entry "Description" 
181
  cmd    := nameVal[1];
182
  cmd    := nameVal[1];
182
 
183
 
183
  // Decode conditions
184
  // Decode conditions
184
  entry.ids := UD2P_ParseConditions(idTerm);
185
  entry.ids := UD2P_ParseConditions(idTerm);
185
 
186