security update for uuid xmlsitemap file_field_path

This commit is contained in:
2018-10-13 16:01:24 +02:00
parent f7ae17e6c4
commit a163542966
109 changed files with 5458 additions and 1952 deletions

View File

@@ -1,4 +1,5 @@
<?php
/**
* @file
* uuid_services_example.features.inc

View File

@@ -1,17 +1,18 @@
core = "7.x"
dependencies[] = "rest_server"
dependencies[] = "services"
dependencies[] = "uuid"
dependencies[] = "uuid_services"
description = "Example feature of a UUID service. Works well with the Deploy Example feature as a client."
features[ctools][] = "services:services:3"
features[services_endpoint][] = "uuid_services_example"
name = "UUID Services Example"
package = "Features"
name = UUID Services Example
description = Example feature of a UUID service. Works well with the Deploy Example feature as a client.
core = 7.x
package = Features
php = 5.2.4
dependencies[] = rest_server
dependencies[] = services
dependencies[] = uuid
dependencies[] = uuid_services
features[ctools][] = services:services:3
features[features_api][] = api:2
features[services_endpoint][] = uuid_services_example
; Information added by drupal.org packaging script on 2013-02-03
version = "7.x-1.0-alpha3+52-dev"
; Information added by Drupal.org packaging script on 2018-07-19
version = "7.x-1.2"
core = "7.x"
project = "uuid"
datestamp = "1359858369"
datestamp = "1531990689"

View File

@@ -1,7 +1,8 @@
<?php
/**
* @file
* Code for the UUID Services Example feature.
*/
include_once('uuid_services_example.features.inc');
include_once 'uuid_services_example.features.inc';

View File

@@ -1,4 +1,5 @@
<?php
/**
* @file
* uuid_services_example.services.inc
@@ -10,7 +11,7 @@
function uuid_services_example_default_services_endpoint() {
$export = array();
$endpoint = new stdClass;
$endpoint = new stdClass();
$endpoint->disabled = FALSE; /* Edit this to true to make a default endpoint disabled initially */
$endpoint->api_version = 3;
$endpoint->name = 'uuid_services_example';
@@ -25,7 +26,6 @@ function uuid_services_example_default_services_endpoint() {
'bencode' => FALSE,
'jsonp' => FALSE,
'php' => FALSE,
'rss' => FALSE,
'xml' => FALSE,
'yaml' => FALSE,
),
@@ -35,49 +35,61 @@ function uuid_services_example_default_services_endpoint() {
'multipart/form-data' => TRUE,
'application/vnd.php.serialized' => FALSE,
'application/x-yaml' => FALSE,
'application/xml' => FALSE,
'text/xml' => FALSE,
),
);
$endpoint->resources = array(
'comment' => array(
'operations' => array(
'update' => array(
'enabled' => 1,
'enabled' => '1',
),
),
),
'file' => array(
'operations' => array(
'update' => array(
'enabled' => 1,
'enabled' => '1',
),
),
),
'node' => array(
'operations' => array(
'update' => array(
'enabled' => 1,
'enabled' => '1',
),
),
),
'taxonomy_term' => array(
'operations' => array(
'update' => array(
'enabled' => 1,
'enabled' => '1',
),
),
),
'user' => array(
'operations' => array(
'update' => array(
'enabled' => 1,
'enabled' => '1',
),
),
'actions' => array(
'login' => array(
'enabled' => 1,
'enabled' => '1',
'settings' => array(
'services' => array(
'resource_api_version' => '1.0',
),
),
),
'logout' => array(
'enabled' => 1,
'enabled' => '1',
'settings' => array(
'services' => array(
'resource_api_version' => '1.0',
),
),
),
),
),