kitlo | d66aa99 | 2010-01-22 17:18:19 +0000 | [diff] [blame] | 1 | <?php |
| 2 | /******************************************************************************* |
Kit Lo | 3c7ce14 | 2013-03-02 18:22:40 -0500 | [diff] [blame] | 3 | * Copyright (c) 2010-2013 Eclipse Foundation, IBM Corporation and others. |
kitlo | d66aa99 | 2010-01-22 17:18:19 +0000 | [diff] [blame] | 4 | * All rights reserved. This program and the accompanying materials |
| 5 | * are made available under the terms of the Eclipse Public License v1.0 |
| 6 | * which accompanies this distribution, and is available at |
| 7 | * http://www.eclipse.org/legal/epl-v10.html |
| 8 | * |
| 9 | * Contributors: |
| 10 | * Eclipse Foundation - Initial API and implementation |
| 11 | * Kit Lo (IBM) - Bug 299402, Extract properties files from Eclipse project update sites for translation |
Kit Lo | 3c7ce14 | 2013-03-02 18:22:40 -0500 | [diff] [blame] | 12 | * Kit Lo (IBM) - [402192] Extract project source files from Git repositories for translation |
| 13 | *******************************************************************************/ |
| 14 | |
kitlo | d66aa99 | 2010-01-22 17:18:19 +0000 | [diff] [blame] | 15 | require_once("cb_global.php"); |
| 16 | |
| 17 | $return = array(); |
| 18 | |
| 19 | $project_id = getHTTPParameter("project_id", "POST"); |
| 20 | $version = getHTTPParameter("version", "POST"); |
| 21 | |
| 22 | $query = "SELECT pattern FROM plugin_exclude_patterns WHERE project_id = " . returnQuotedString(sqlSanitize($project_id, $dbh)) . |
| 23 | " AND version = " . returnQuotedString(sqlSanitize($version, $dbh)); |
| 24 | |
kitlo | 2c8d8a9 | 2018-04-19 13:25:09 -0400 | [diff] [blame] | 25 | $res = mysqli_query($dbh, $query); |
kitlo | 1d02709 | 2018-04-19 17:44:07 -0400 | [diff] [blame] | 26 | if (mysqli_affected_rows($dbh) > 0) { |
droy | a3815a5 | 2019-09-25 12:49:18 -0400 | [diff] [blame] | 27 | while ($line = mysqli_fetch_array($res, MYSQLI_ASSOC)) { |
kitlo | d66aa99 | 2010-01-22 17:18:19 +0000 | [diff] [blame] | 28 | echo $line['pattern'] . "\n"; |
| 29 | } |
| 30 | } else { |
Kit Lo | 3c7ce14 | 2013-03-02 18:22:40 -0500 | [diff] [blame] | 31 | echo "No plugin exclude patterns found for $project_id $version"; |
kitlo | d66aa99 | 2010-01-22 17:18:19 +0000 | [diff] [blame] | 32 | } |
| 33 | ?> |