blob: 508f85ba62c074a2de0bdd471c031104ee866393 [file] [log] [blame]
kitlod66aa992010-01-22 17:18:19 +00001<?php
2/*******************************************************************************
Kit Lo3c7ce142013-03-02 18:22:40 -05003 * Copyright (c) 2010-2013 Eclipse Foundation, IBM Corporation and others.
kitlod66aa992010-01-22 17:18:19 +00004 * 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 Lo3c7ce142013-03-02 18:22:40 -050012 * Kit Lo (IBM) - [402192] Extract project source files from Git repositories for translation
13 *******************************************************************************/
14
kitlod66aa992010-01-22 17:18:19 +000015require_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
kitlo2c8d8a92018-04-19 13:25:09 -040025$res = mysqli_query($dbh, $query);
kitlo1d027092018-04-19 17:44:07 -040026if (mysqli_affected_rows($dbh) > 0) {
droya3815a52019-09-25 12:49:18 -040027 while ($line = mysqli_fetch_array($res, MYSQLI_ASSOC)) {
kitlod66aa992010-01-22 17:18:19 +000028 echo $line['pattern'] . "\n";
29 }
30} else {
Kit Lo3c7ce142013-03-02 18:22:40 -050031 echo "No plugin exclude patterns found for $project_id $version";
kitlod66aa992010-01-22 17:18:19 +000032}
33?>