update Drupal 7.19
Signed-off-by: bachy <git@g-u-i.net>
This commit is contained in:
parent
6c0f932603
commit
00df84c69c
@ -1,3 +1,10 @@
|
|||||||
|
Drupal 7.19, 2013-01-16
|
||||||
|
-----------------------
|
||||||
|
- Fixed security issues (multiple vulnerabilities). See SA-CORE-2013-001.
|
||||||
|
|
||||||
|
Drupal 7.18, 2012-12-19
|
||||||
|
-----------------------
|
||||||
|
- Fixed security issues (multiple vulnerabilities). See SA-CORE-2012-004.
|
||||||
|
|
||||||
Drupal 7.17, 2012-11-07
|
Drupal 7.17, 2012-11-07
|
||||||
-----------------------
|
-----------------------
|
||||||
|
42
INSTALL.mysql.txt
Normal file
42
INSTALL.mysql.txt
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
|
||||||
|
CREATE THE MySQL DATABASE
|
||||||
|
--------------------------
|
||||||
|
|
||||||
|
This step is only necessary if you don't already have a database set up (e.g.,
|
||||||
|
by your host). In the following examples, 'username' is an example MySQL user
|
||||||
|
which has the CREATE and GRANT privileges. Use the appropriate user name for
|
||||||
|
your system.
|
||||||
|
|
||||||
|
First, you must create a new database for your Drupal site (here, 'databasename'
|
||||||
|
is the name of the new database):
|
||||||
|
|
||||||
|
mysqladmin -u username -p create databasename
|
||||||
|
|
||||||
|
MySQL will prompt for the 'username' database password and then create the
|
||||||
|
initial database files. Next you must log in and set the access database rights:
|
||||||
|
|
||||||
|
mysql -u username -p
|
||||||
|
|
||||||
|
Again, you will be asked for the 'username' database password. At the MySQL
|
||||||
|
prompt, enter the following command:
|
||||||
|
|
||||||
|
GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER
|
||||||
|
ON databasename.*
|
||||||
|
TO 'username'@'localhost' IDENTIFIED BY 'password';
|
||||||
|
|
||||||
|
where
|
||||||
|
|
||||||
|
'databasename' is the name of your database
|
||||||
|
'username@localhost' is the username of your MySQL account
|
||||||
|
'password' is the password required for that username
|
||||||
|
|
||||||
|
Note: Unless your database user has all of the privileges listed above, you will
|
||||||
|
not be able to run Drupal.
|
||||||
|
|
||||||
|
If successful, MySQL will reply with:
|
||||||
|
|
||||||
|
Query OK, 0 rows affected
|
||||||
|
|
||||||
|
If the InnoDB storage engine is available, it will be used for all database
|
||||||
|
tables. InnoDB provides features over MyISAM such as transaction support,
|
||||||
|
row-level locks, and consistent non-locking reads.
|
44
INSTALL.pgsql.txt
Normal file
44
INSTALL.pgsql.txt
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
|
||||||
|
CREATE THE PostgreSQL DATABASE
|
||||||
|
------------------------------
|
||||||
|
|
||||||
|
Note that the database must be created with UTF-8 (Unicode) encoding.
|
||||||
|
|
||||||
|
1. CREATE DATABASE USER
|
||||||
|
|
||||||
|
This step is only necessary if you don't already have a user set up (e.g., by
|
||||||
|
your host), or want to create a new user for use with Drupal only. The
|
||||||
|
following command creates a new user named 'username' and asks for a password
|
||||||
|
for that user:
|
||||||
|
|
||||||
|
createuser --pwprompt --encrypted --no-createrole --no-createdb username
|
||||||
|
|
||||||
|
If there are no errors, then the command was successful.
|
||||||
|
|
||||||
|
2. CREATE DRUPAL DATABASE
|
||||||
|
|
||||||
|
This step is only necessary if you don't already have a database set up
|
||||||
|
(e.g., by your host) or want to create a new database for use with Drupal
|
||||||
|
only. The following command creates a new database named 'databasename',
|
||||||
|
which is owned by the previously created 'username':
|
||||||
|
|
||||||
|
createdb --encoding=UTF8 --owner=username databasename
|
||||||
|
|
||||||
|
If there are no errors, then the command was successful.
|
||||||
|
|
||||||
|
3. CREATE SCHEMA OR SCHEMAS (Optional advanced step)
|
||||||
|
|
||||||
|
Drupal will run across different schemas within your database if you so wish.
|
||||||
|
By default, Drupal runs inside the 'public' schema but you can use $db_prefix
|
||||||
|
inside settings.php to define a schema for Drupal to run inside of, or
|
||||||
|
specify tables that are shared inside of a separate schema. Drupal will not
|
||||||
|
create schemas for you. In fact, the user that Drupal runs as should not be
|
||||||
|
allowed to do this. You'll need to execute the SQL below as a superuser,
|
||||||
|
replace 'username' with the username that Drupal uses to connect to
|
||||||
|
PostgreSQL, and replace 'schema_name' with a schema name you wish to use,
|
||||||
|
such as 'shared':
|
||||||
|
|
||||||
|
CREATE SCHEMA schema_name AUTHORIZATION username;
|
||||||
|
|
||||||
|
Do this for as many schemas as you need. See default.settings.php for
|
||||||
|
instructions on how to set which tables use which schemas.
|
31
INSTALL.sqlite.txt
Normal file
31
INSTALL.sqlite.txt
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
|
||||||
|
SQLITE REQUIREMENTS
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
To use SQLite with your Drupal installation, the following requirements must be
|
||||||
|
met: Server has PHP 5.2 or later with PDO, and the PDO SQLite driver must be
|
||||||
|
enabled.
|
||||||
|
|
||||||
|
SQLITE DATABASE CREATION
|
||||||
|
------------------------
|
||||||
|
|
||||||
|
The Drupal installer will create the SQLite database for you. The only
|
||||||
|
requirement is that the installer must have write permissions to the directory
|
||||||
|
where the database file resides. This directory (not just the database file) also
|
||||||
|
has to remain writeable by the web server going forward for SQLite to continue to
|
||||||
|
be able to operate.
|
||||||
|
|
||||||
|
On the "Database configuration" form in the "Database file" field, you must
|
||||||
|
supply the exact path to where you wish your database file to reside. It is
|
||||||
|
strongly suggested that you choose a path that is outside of the webroot, yet
|
||||||
|
ensure that the directory is writeable by the web server.
|
||||||
|
|
||||||
|
If you must place your database file in your webroot, you could try using the
|
||||||
|
following in your "Database file" field:
|
||||||
|
|
||||||
|
sites/default/files/.ht.sqlite
|
||||||
|
|
||||||
|
Note: The .ht in the name will tell Apache to prevent the database from being
|
||||||
|
downloaded. Please check that the file is, indeed, protected by your webserver.
|
||||||
|
If not, please consult the documentation of your webserver on how to protect a
|
||||||
|
file from downloading.
|
398
INSTALL.txt
Normal file
398
INSTALL.txt
Normal file
@ -0,0 +1,398 @@
|
|||||||
|
|
||||||
|
CONTENTS OF THIS FILE
|
||||||
|
---------------------
|
||||||
|
|
||||||
|
* Requirements and notes
|
||||||
|
* Optional server requirements
|
||||||
|
* Installation
|
||||||
|
* Building and customizing your site
|
||||||
|
* Multisite configuration
|
||||||
|
* More information
|
||||||
|
|
||||||
|
REQUIREMENTS AND NOTES
|
||||||
|
----------------------
|
||||||
|
|
||||||
|
Drupal requires:
|
||||||
|
|
||||||
|
- A web server. Apache (version 2.0 or greater) is recommended.
|
||||||
|
- PHP 5.2.4 (or greater) (http://www.php.net/).
|
||||||
|
- One of the following databases:
|
||||||
|
- MySQL 5.0.15 (or greater) (http://www.mysql.com/).
|
||||||
|
- MariaDB 5.1.44 (or greater) (http://mariadb.org/). MariaDB is a fully
|
||||||
|
compatible drop-in replacement for MySQL.
|
||||||
|
- PostgreSQL 8.3 (or greater) (http://www.postgresql.org/).
|
||||||
|
- SQLite 3.4.2 (or greater) (http://www.sqlite.org/).
|
||||||
|
|
||||||
|
For more detailed information about Drupal requirements, including a list of
|
||||||
|
PHP extensions and configurations that are required, see "System requirements"
|
||||||
|
(http://drupal.org/requirements) in the Drupal.org online documentation.
|
||||||
|
|
||||||
|
For detailed information on how to configure a test server environment using a
|
||||||
|
variety of operating systems and web servers, see "Local server setup"
|
||||||
|
(http://drupal.org/node/157602) in the Drupal.org online documentation.
|
||||||
|
|
||||||
|
Note that all directories mentioned in this document are always relative to the
|
||||||
|
directory of your Drupal installation, and commands are meant to be run from
|
||||||
|
this directory (except for the initial commands that create that directory).
|
||||||
|
|
||||||
|
OPTIONAL SERVER REQUIREMENTS
|
||||||
|
----------------------------
|
||||||
|
|
||||||
|
- If you want to use Drupal's "Clean URLs" feature on an Apache web server, you
|
||||||
|
will need the mod_rewrite module and the ability to use local .htaccess
|
||||||
|
files. For Clean URLs support on IIS, see "Clean URLs with IIS"
|
||||||
|
(http://drupal.org/node/3854) in the Drupal.org online documentation.
|
||||||
|
|
||||||
|
- If you plan to use XML-based services such as RSS aggregation, you will need
|
||||||
|
PHP's XML extension. This extension is enabled by default on most PHP
|
||||||
|
installations.
|
||||||
|
|
||||||
|
- To serve gzip compressed CSS and JS files on an Apache web server, you will
|
||||||
|
need the mod_headers module and the ability to use local .htaccess files.
|
||||||
|
|
||||||
|
- Some Drupal functionality (e.g., checking whether Drupal and contributed
|
||||||
|
modules need updates, RSS aggregation, etc.) require that the web server be
|
||||||
|
able to go out to the web and download information. If you want to use this
|
||||||
|
functionality, you need to verify that your hosting provider or server
|
||||||
|
configuration allows the web server to initiate outbound connections. Most web
|
||||||
|
hosting setups allow this.
|
||||||
|
|
||||||
|
INSTALLATION
|
||||||
|
------------
|
||||||
|
|
||||||
|
1. Download and extract Drupal.
|
||||||
|
|
||||||
|
You can obtain the latest Drupal release from http://drupal.org -- the files
|
||||||
|
are available in .tar.gz and .zip formats and can be extracted using most
|
||||||
|
compression tools.
|
||||||
|
|
||||||
|
To download and extract the files, on a typical Unix/Linux command line, use
|
||||||
|
the following commands (assuming you want version x.y of Drupal in .tar.gz
|
||||||
|
format):
|
||||||
|
|
||||||
|
wget http://drupal.org/files/projects/drupal-x.y.tar.gz
|
||||||
|
tar -zxvf drupal-x.y.tar.gz
|
||||||
|
|
||||||
|
This will create a new directory drupal-x.y/ containing all Drupal files and
|
||||||
|
directories. Then, to move the contents of that directory into a directory
|
||||||
|
within your web server's document root or your public HTML directory,
|
||||||
|
continue with this command:
|
||||||
|
|
||||||
|
mv drupal-x.y/* drupal-x.y/.htaccess /path/to/your/installation
|
||||||
|
|
||||||
|
2. Optionally, download a translation.
|
||||||
|
|
||||||
|
By default, Drupal is installed in English, and further languages may be
|
||||||
|
installed later. If you prefer to install Drupal in another language
|
||||||
|
initially:
|
||||||
|
|
||||||
|
- Download a translation file for the correct Drupal version and language
|
||||||
|
from the translation server: http://localize.drupal.org/translate/downloads
|
||||||
|
|
||||||
|
- Place the file into your installation profile's translations directory.
|
||||||
|
For instance, if you are using the Standard installation profile,
|
||||||
|
move the .po file into the directory:
|
||||||
|
|
||||||
|
profiles/standard/translations/
|
||||||
|
|
||||||
|
For detailed instructions, visit http://drupal.org/localize
|
||||||
|
|
||||||
|
3. Create the Drupal database.
|
||||||
|
|
||||||
|
Because Drupal stores all site information in a database, you must create
|
||||||
|
this database in order to install Drupal, and grant Drupal certain database
|
||||||
|
privileges (such as the ability to create tables). For details, consult
|
||||||
|
INSTALL.mysql.txt, INSTALL.pgsql.txt, or INSTALL.sqlite.txt. You may also
|
||||||
|
need to consult your web hosting provider for instructions specific to your
|
||||||
|
web host.
|
||||||
|
|
||||||
|
Take note of the username, password, database name, and hostname as you
|
||||||
|
create the database. You will enter this information during the install.
|
||||||
|
|
||||||
|
4. Run the install script.
|
||||||
|
|
||||||
|
To run the install script, point your browser to the base URL of your
|
||||||
|
website (e.g., http://www.example.com).
|
||||||
|
|
||||||
|
You will be guided through several screens to set up the database, add the
|
||||||
|
site maintenance account (the first user, also known as user/1), and provide
|
||||||
|
basic web site settings.
|
||||||
|
|
||||||
|
During installation, several files and directories need to be created, which
|
||||||
|
the install script will try to do automatically. However, on some hosting
|
||||||
|
environments, manual steps are required, and the install script will tell
|
||||||
|
you that it cannot proceed until you fix certain issues. This is normal and
|
||||||
|
does not indicate a problem with your server.
|
||||||
|
|
||||||
|
The most common steps you may need to perform are:
|
||||||
|
|
||||||
|
a. Missing files directory.
|
||||||
|
|
||||||
|
The install script will attempt to create a file storage directory in
|
||||||
|
the default location at sites/default/files (the location of the files
|
||||||
|
directory may be changed after Drupal is installed).
|
||||||
|
|
||||||
|
If auto-creation fails, you can make it work by changing permissions on
|
||||||
|
the sites/default directory so that the web server can create the files
|
||||||
|
directory within it for you. (If you are creating a multisite
|
||||||
|
installation, substitute the correct sites directory for sites/default;
|
||||||
|
see the Multisite Configuration section of this file, below.)
|
||||||
|
|
||||||
|
For example, on a Unix/Linux command line, you can grant everyone
|
||||||
|
(including the web server) permission to write to the sites/default
|
||||||
|
directory with this command:
|
||||||
|
|
||||||
|
chmod a+w sites/default
|
||||||
|
|
||||||
|
Be sure to set the permissions back after the installation is finished!
|
||||||
|
Sample command:
|
||||||
|
|
||||||
|
chmod go-w sites/default
|
||||||
|
|
||||||
|
Alternatively, instead of allowing the web server to create the files
|
||||||
|
directory for you as described above, you can create it yourself. Sample
|
||||||
|
commands from a Unix/Linux command line:
|
||||||
|
|
||||||
|
mkdir sites/default/files
|
||||||
|
chmod a+w sites/default/files
|
||||||
|
|
||||||
|
b. Missing settings file.
|
||||||
|
|
||||||
|
Drupal will try to automatically create a settings.php configuration file,
|
||||||
|
which is normally in the directory sites/default (to avoid problems when
|
||||||
|
upgrading, Drupal is not packaged with this file). If auto-creation fails,
|
||||||
|
you will need to create this file yourself, using the file
|
||||||
|
sites/default/default.settings.php as a template.
|
||||||
|
|
||||||
|
For example, on a Unix/Linux command line, you can make a copy of the
|
||||||
|
default.settings.php file with the command:
|
||||||
|
|
||||||
|
cp sites/default/default.settings.php sites/default/settings.php
|
||||||
|
|
||||||
|
Next, grant write privileges to the file to everyone (including the web
|
||||||
|
server) with the command:
|
||||||
|
|
||||||
|
chmod a+w sites/default/settings.php
|
||||||
|
|
||||||
|
Be sure to set the permissions back after the installation is finished!
|
||||||
|
Sample command:
|
||||||
|
|
||||||
|
chmod go-w sites/default/settings.php
|
||||||
|
|
||||||
|
c. Write permissions after install.
|
||||||
|
|
||||||
|
The install script will attempt to write-protect the settings.php file and
|
||||||
|
the sites/default directory after saving your configuration. If this
|
||||||
|
fails, you will be notified, and you can do it manually. Sample commands
|
||||||
|
from a Unix/Linux command line:
|
||||||
|
|
||||||
|
chmod go-w sites/default/settings.php
|
||||||
|
chmod go-w sites/default
|
||||||
|
|
||||||
|
5. Verify that the site is working.
|
||||||
|
|
||||||
|
When the install script finishes, you will be logged in with the site
|
||||||
|
maintenance account on a "Welcome" page. If the default Drupal theme is not
|
||||||
|
displaying properly and links on the page result in "Page Not Found" errors,
|
||||||
|
you may be experiencing problems with clean URLs. Visit
|
||||||
|
http://drupal.org/getting-started/clean-urls to troubleshoot.
|
||||||
|
|
||||||
|
6. Change file system storage settings (optional).
|
||||||
|
|
||||||
|
The files directory created in step 4 is the default file system path used to
|
||||||
|
store all uploaded files, as well as some temporary files created by
|
||||||
|
Drupal. After installation, you can modify the file system path to store
|
||||||
|
uploaded files in a different location.
|
||||||
|
|
||||||
|
It is not necessary to modify this path, but you may wish to change it if:
|
||||||
|
|
||||||
|
- Your site runs multiple Drupal installations from a single codebase (modify
|
||||||
|
the file system path of each installation to a different directory so that
|
||||||
|
uploads do not overlap between installations).
|
||||||
|
|
||||||
|
- Your site runs on a number of web servers behind a load balancer or reverse
|
||||||
|
proxy (modify the file system path on each server to point to a shared file
|
||||||
|
repository).
|
||||||
|
|
||||||
|
- You want to restrict access to uploaded files.
|
||||||
|
|
||||||
|
To modify the file system path:
|
||||||
|
|
||||||
|
a. Ensure that the new location for the path exists and is writable by the
|
||||||
|
web server. For example, to create a new directory named uploads and grant
|
||||||
|
write permissions, use the following commands on a Unix/Linux command
|
||||||
|
line:
|
||||||
|
|
||||||
|
mkdir uploads
|
||||||
|
chmod a+w uploads
|
||||||
|
|
||||||
|
b. Navigate to Administration > Configuration > Media > File system, and
|
||||||
|
enter the desired path. Note that if you want to use private file storage,
|
||||||
|
you need to first enter the path for private files and save the
|
||||||
|
configuration, and then change the "Default download method" setting and
|
||||||
|
save again.
|
||||||
|
|
||||||
|
Changing the file system path after files have been uploaded may cause
|
||||||
|
unexpected problems on an existing site. If you modify the file system path
|
||||||
|
on an existing site, remember to copy all files from the original location
|
||||||
|
to the new location.
|
||||||
|
|
||||||
|
7. Revoke documentation file permissions (optional).
|
||||||
|
|
||||||
|
Some administrators suggest making the documentation files, especially
|
||||||
|
CHANGELOG.txt, non-readable so that the exact version of Drupal you are
|
||||||
|
running is slightly more difficult to determine. If you wish to implement
|
||||||
|
this optional security measure, from a Unix/Linux command line you can use
|
||||||
|
the following command:
|
||||||
|
|
||||||
|
chmod a-r CHANGELOG.txt
|
||||||
|
|
||||||
|
Note that the example only affects CHANGELOG.txt. To completely hide all
|
||||||
|
documentation files from public view, repeat this command for each of the
|
||||||
|
Drupal documentation files in the installation directory, substituting the
|
||||||
|
name of each file for CHANGELOG.txt in the example.
|
||||||
|
|
||||||
|
For more information on setting file permissions, see "Modifying Linux,
|
||||||
|
Unix, and Mac file permissions" (http://drupal.org/node/202483) or
|
||||||
|
"Modifying Windows file permissions" (http://drupal.org/node/202491) in the
|
||||||
|
Drupal.org online documentation.
|
||||||
|
|
||||||
|
8. Set up independent "cron" maintenance jobs.
|
||||||
|
|
||||||
|
Many Drupal modules have tasks that must be run periodically, including the
|
||||||
|
Search module (building and updating the index used for keyword searching),
|
||||||
|
the Aggregator module (retrieving feeds from other sites), and the System
|
||||||
|
module (performing routine maintenance and pruning of database tables). These
|
||||||
|
tasks are known as "cron maintenance tasks", named after the Unix/Linux
|
||||||
|
"cron" utility.
|
||||||
|
|
||||||
|
When you install Drupal, its built-in cron feature is enabled, which
|
||||||
|
automatically runs the cron tasks periodically, triggered by people visiting
|
||||||
|
pages of your site. You can configure the built-in cron feature by navigating
|
||||||
|
to Administration > Configuration > System > Cron.
|
||||||
|
|
||||||
|
It is also possible to run the cron tasks independent of site visits; this is
|
||||||
|
recommended for most sites. To do this, you will need to set up an automated
|
||||||
|
process to visit the page cron.php on your site, which executes the cron
|
||||||
|
tasks.
|
||||||
|
|
||||||
|
The URL of the cron.php page requires a "cron key" to protect against
|
||||||
|
unauthorized access. Your site's cron key is automatically generated during
|
||||||
|
installation and is specific to your site. The full URL of the page, with the
|
||||||
|
cron key, is available in the "Cron maintenance tasks" section of the Status
|
||||||
|
report page at Administration > Reports > Status report.
|
||||||
|
|
||||||
|
As an example for how to set up this automated process, you can use the
|
||||||
|
crontab utility on Unix/Linux systems. The following crontab line uses the
|
||||||
|
wget command to visit the cron.php page, and runs each hour, on the hour:
|
||||||
|
|
||||||
|
0 * * * * wget -O - -q -t 1 http://example.com/cron.php?cron_key=YOURKEY
|
||||||
|
|
||||||
|
Replace the text "http://example.com/cron.php?cron_key=YOURKEY" in the
|
||||||
|
example with the full URL displayed under "Cron maintenance tasks" on the
|
||||||
|
"Status report" page.
|
||||||
|
|
||||||
|
More information about cron maintenance tasks is available at
|
||||||
|
http://drupal.org/cron, and sample cron shell scripts can be found in the
|
||||||
|
scripts/ directory. (Note that these scripts must be customized like the
|
||||||
|
above example, to add your site-specific cron key and domain name.)
|
||||||
|
|
||||||
|
BUILDING AND CUSTOMIZING YOUR SITE
|
||||||
|
----------------------------------
|
||||||
|
|
||||||
|
A new installation of Drupal defaults to a very basic configuration. To extend
|
||||||
|
your site, you use "modules" and "themes". A module is a plugin that adds
|
||||||
|
functionality to Drupal, while a theme changes the look of your site. The core
|
||||||
|
of Drupal provides several optional modules and themes, and you can download
|
||||||
|
more at http://drupal.org/project/modules and http://drupal.org/project/themes
|
||||||
|
|
||||||
|
Do not mix downloaded or custom modules and themes with Drupal's core modules
|
||||||
|
and themes. Drupal's modules and themes are located in the top-level modules and
|
||||||
|
themes directories, while the modules and themes you add to Drupal are normally
|
||||||
|
placed in the sites/all/modules and sites/all/themes directories. If you run a
|
||||||
|
multisite installation, you can also place modules and themes in the
|
||||||
|
site-specific directories -- see the Multisite Configuration section, below.
|
||||||
|
|
||||||
|
Never edit Drupal's core modules and themes; instead, use the hooks available in
|
||||||
|
the Drupal API. To modify the behavior of Drupal, develop a module as described
|
||||||
|
at http://drupal.org/developing/modules. To modify the look of Drupal, create a
|
||||||
|
subtheme as described at http://drupal.org/node/225125, or a completely new
|
||||||
|
theme as described at http://drupal.org/documentation/theme
|
||||||
|
|
||||||
|
MULTISITE CONFIGURATION
|
||||||
|
-----------------------
|
||||||
|
|
||||||
|
A single Drupal installation can host several Drupal-powered sites, each with
|
||||||
|
its own individual configuration.
|
||||||
|
|
||||||
|
Additional site configurations are created in subdirectories within the 'sites'
|
||||||
|
directory. Each subdirectory must have a 'settings.php' file, which specifies
|
||||||
|
the configuration settings. The easiest way to create additional sites is to
|
||||||
|
copy the 'default' directory and modify the 'settings.php' file as appropriate.
|
||||||
|
The new directory name is constructed from the site's URL. The configuration for
|
||||||
|
www.example.com could be in 'sites/example.com/settings.php' (note that 'www.'
|
||||||
|
should be omitted if users can access your site at http://example.com/).
|
||||||
|
|
||||||
|
Sites do not have to have a different domain. You can also use subdomains and
|
||||||
|
subdirectories for Drupal sites. For example, example.com, sub.example.com, and
|
||||||
|
sub.example.com/site3 can all be defined as independent Drupal sites. The setup
|
||||||
|
for a configuration such as this would look like the following:
|
||||||
|
|
||||||
|
sites/default/settings.php
|
||||||
|
sites/example.com/settings.php
|
||||||
|
sites/sub.example.com/settings.php
|
||||||
|
sites/sub.example.com.site3/settings.php
|
||||||
|
|
||||||
|
When searching for a site configuration (for example www.sub.example.com/site3),
|
||||||
|
Drupal will search for configuration files in the following order, using the
|
||||||
|
first configuration it finds:
|
||||||
|
|
||||||
|
sites/www.sub.example.com.site3/settings.php
|
||||||
|
sites/sub.example.com.site3/settings.php
|
||||||
|
sites/example.com.site3/settings.php
|
||||||
|
sites/www.sub.example.com/settings.php
|
||||||
|
sites/sub.example.com/settings.php
|
||||||
|
sites/example.com/settings.php
|
||||||
|
sites/default/settings.php
|
||||||
|
|
||||||
|
If you are installing on a non-standard port, the port number is treated as the
|
||||||
|
deepest subdomain. For example: http://www.example.com:8080/ could be loaded
|
||||||
|
from sites/8080.www.example.com/. The port number will be removed according to
|
||||||
|
the pattern above if no port-specific configuration is found, just like a real
|
||||||
|
subdomain.
|
||||||
|
|
||||||
|
Each site configuration can have its own site-specific modules and themes in
|
||||||
|
addition to those installed in the standard 'modules' and 'themes' directories.
|
||||||
|
To use site-specific modules or themes, simply create a 'modules' or 'themes'
|
||||||
|
directory within the site configuration directory. For example, if
|
||||||
|
sub.example.com has a custom theme and a custom module that should not be
|
||||||
|
accessible to other sites, the setup would look like this:
|
||||||
|
|
||||||
|
sites/sub.example.com/
|
||||||
|
settings.php
|
||||||
|
themes/custom_theme
|
||||||
|
modules/custom_module
|
||||||
|
|
||||||
|
NOTE: for more information about multiple virtual hosts or the configuration
|
||||||
|
settings, consult http://drupal.org/getting-started/6/install/multi-site
|
||||||
|
|
||||||
|
For more information on configuring Drupal's file system path in a multisite
|
||||||
|
configuration, see step 6 above.
|
||||||
|
|
||||||
|
MORE INFORMATION
|
||||||
|
----------------
|
||||||
|
|
||||||
|
- See the Drupal.org online documentation:
|
||||||
|
http://drupal.org/documentation
|
||||||
|
|
||||||
|
- For a list of security announcements, see the "Security advisories" page at
|
||||||
|
http://drupal.org/security (available as an RSS feed). This page also
|
||||||
|
describes how to subscribe to these announcements via e-mail.
|
||||||
|
|
||||||
|
- For information about the Drupal security process, or to find out how to
|
||||||
|
report a potential security issue to the Drupal security team, see the
|
||||||
|
"Security team" page at http://drupal.org/security-team
|
||||||
|
|
||||||
|
- For information about the wide range of available support options, visit
|
||||||
|
http://drupal.org and click on Community and Support in the top or bottom
|
||||||
|
navigation.
|
@ -8,7 +8,7 @@
|
|||||||
/**
|
/**
|
||||||
* The current system version.
|
* The current system version.
|
||||||
*/
|
*/
|
||||||
define('VERSION', '7.17');
|
define('VERSION', '7.19');
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Core API compatibility.
|
* Core API compatibility.
|
||||||
|
@ -160,18 +160,6 @@ class DrupalDefaultEntityController implements DrupalEntityControllerInterface {
|
|||||||
public function load($ids = array(), $conditions = array()) {
|
public function load($ids = array(), $conditions = array()) {
|
||||||
$entities = array();
|
$entities = array();
|
||||||
|
|
||||||
# PATCH http://drupal.org/node/1003788#comment-5195682
|
|
||||||
// Clean the $ids array to remove non-integer values that can be passed
|
|
||||||
// in from various sources, including menu callbacks.
|
|
||||||
if (is_array($ids)) {
|
|
||||||
foreach ($ids as $key => $id) {
|
|
||||||
if (empty($id) || ((string) $id !== (string) (int) $id)) {
|
|
||||||
unset($ids[$key]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
# endpatch
|
|
||||||
|
|
||||||
// Revisions are not statically cached, and require a different query to
|
// Revisions are not statically cached, and require a different query to
|
||||||
// other conditions, so separate the revision id into its own variable.
|
// other conditions, so separate the revision id into its own variable.
|
||||||
if ($this->revisionKey && isset($conditions[$this->revisionKey])) {
|
if ($this->revisionKey && isset($conditions[$this->revisionKey])) {
|
||||||
|
@ -1113,6 +1113,9 @@ function file_munge_filename($filename, $extensions, $alerts = TRUE) {
|
|||||||
|
|
||||||
// Allow potentially insecure uploads for very savvy users and admin
|
// Allow potentially insecure uploads for very savvy users and admin
|
||||||
if (!variable_get('allow_insecure_uploads', 0)) {
|
if (!variable_get('allow_insecure_uploads', 0)) {
|
||||||
|
// Remove any null bytes. See http://php.net/manual/en/security.filesystem.nullbytes.php
|
||||||
|
$filename = str_replace(chr(0), '', $filename);
|
||||||
|
|
||||||
$whitelist = array_unique(explode(' ', trim($extensions)));
|
$whitelist = array_unique(explode(' ', trim($extensions)));
|
||||||
|
|
||||||
// Split the filename up by periods. The first part becomes the basename
|
// Split the filename up by periods. The first part becomes the basename
|
||||||
|
@ -114,7 +114,6 @@ Drupal.jsAC.prototype.onkeyup = function (input, e) {
|
|||||||
*/
|
*/
|
||||||
Drupal.jsAC.prototype.select = function (node) {
|
Drupal.jsAC.prototype.select = function (node) {
|
||||||
this.input.value = $(node).data('autocompleteValue');
|
this.input.value = $(node).data('autocompleteValue');
|
||||||
$(this.input).trigger('autocompleteSelect', [node]);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -168,7 +167,7 @@ Drupal.jsAC.prototype.unhighlight = function (node) {
|
|||||||
Drupal.jsAC.prototype.hidePopup = function (keycode) {
|
Drupal.jsAC.prototype.hidePopup = function (keycode) {
|
||||||
// Select item if the right key or mousebutton was pressed.
|
// Select item if the right key or mousebutton was pressed.
|
||||||
if (this.selected && ((keycode && keycode != 46 && keycode != 8 && keycode != 27) || !keycode)) {
|
if (this.selected && ((keycode && keycode != 46 && keycode != 8 && keycode != 27) || !keycode)) {
|
||||||
this.select(this.selected);
|
this.input.value = $(this.selected).data('autocompleteValue');
|
||||||
}
|
}
|
||||||
// Hide popup.
|
// Hide popup.
|
||||||
var popup = this.popup;
|
var popup = this.popup;
|
||||||
@ -221,7 +220,7 @@ Drupal.jsAC.prototype.found = function (matches) {
|
|||||||
for (key in matches) {
|
for (key in matches) {
|
||||||
$('<li></li>')
|
$('<li></li>')
|
||||||
.html($('<div></div>').html(matches[key]))
|
.html($('<div></div>').html(matches[key]))
|
||||||
.mousedown(function () { ac.hidePopup(this); })
|
.mousedown(function () { ac.select(this); })
|
||||||
.mouseover(function () { ac.highlight(this); })
|
.mouseover(function () { ac.highlight(this); })
|
||||||
.mouseout(function () { ac.unhighlight(this); })
|
.mouseout(function () { ac.unhighlight(this); })
|
||||||
.data('autocompleteValue', key)
|
.data('autocompleteValue', key)
|
||||||
|
@ -58,9 +58,9 @@ Drupal.behaviors.collapse = {
|
|||||||
$('fieldset.collapsible', context).once('collapse', function () {
|
$('fieldset.collapsible', context).once('collapse', function () {
|
||||||
var $fieldset = $(this);
|
var $fieldset = $(this);
|
||||||
// Expand fieldset if there are errors inside, or if it contains an
|
// Expand fieldset if there are errors inside, or if it contains an
|
||||||
// element that is targeted by the URI fragment identifier.
|
// element that is targeted by the URI fragment identifier.
|
||||||
var anchor = location.hash && location.hash != '#' ? ', ' + location.hash : '';
|
var anchor = location.hash && location.hash != '#' ? ', ' + location.hash : '';
|
||||||
if ($('.error' + anchor, $fieldset).length) {
|
if ($fieldset.find('.error' + anchor).length) {
|
||||||
$fieldset.removeClass('collapsed');
|
$fieldset.removeClass('collapsed');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -6,6 +6,27 @@ jQuery.noConflict();
|
|||||||
|
|
||||||
(function ($) {
|
(function ($) {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Override jQuery.fn.init to guard against XSS attacks.
|
||||||
|
*
|
||||||
|
* See http://bugs.jquery.com/ticket/9521
|
||||||
|
*/
|
||||||
|
var jquery_init = $.fn.init;
|
||||||
|
$.fn.init = function (selector, context, rootjQuery) {
|
||||||
|
// If the string contains a "#" before a "<", treat it as invalid HTML.
|
||||||
|
if (selector && typeof selector === 'string') {
|
||||||
|
var hash_position = selector.indexOf('#');
|
||||||
|
if (hash_position >= 0) {
|
||||||
|
var bracket_position = selector.indexOf('<');
|
||||||
|
if (bracket_position > hash_position) {
|
||||||
|
throw 'Syntax error, unrecognized expression: ' + selector;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return jquery_init.call(this, selector, context, rootjQuery);
|
||||||
|
};
|
||||||
|
$.fn.init.prototype = jquery_init.prototype;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Attach all registered behaviors to a page element.
|
* Attach all registered behaviors to a page element.
|
||||||
*
|
*
|
||||||
|
@ -50,8 +50,8 @@ Drupal.behaviors.verticalTabs = {
|
|||||||
if (!tab_focus) {
|
if (!tab_focus) {
|
||||||
// If the current URL has a fragment and one of the tabs contains an
|
// If the current URL has a fragment and one of the tabs contains an
|
||||||
// element that matches the URL fragment, activate that tab.
|
// element that matches the URL fragment, activate that tab.
|
||||||
if (window.location.hash && $(window.location.hash, this).length) {
|
if (window.location.hash && $(this).find(window.location.hash).length) {
|
||||||
tab_focus = $(window.location.hash, this).closest('.vertical-tabs-pane');
|
tab_focus = $(this).find(window.location.hash).closest('.vertical-tabs-pane');
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
tab_focus = $('> .vertical-tabs-pane:first', this);
|
tab_focus = $('> .vertical-tabs-pane:first', this);
|
||||||
|
@ -7,8 +7,8 @@ files[] = aggregator.test
|
|||||||
configure = admin/config/services/aggregator/settings
|
configure = admin/config/services/aggregator/settings
|
||||||
stylesheets[all][] = aggregator.css
|
stylesheets[all][] = aggregator.css
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ core = 7.x
|
|||||||
files[] = block.test
|
files[] = block.test
|
||||||
configure = admin/structure/block
|
configure = admin/structure/block
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -13,8 +13,8 @@ regions[footer] = Footer
|
|||||||
regions[highlighted] = Highlighted
|
regions[highlighted] = Highlighted
|
||||||
regions[help] = Help
|
regions[help] = Help
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
files[] = blog.test
|
files[] = blog.test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -7,8 +7,8 @@ files[] = book.test
|
|||||||
configure = admin/content/book/settings
|
configure = admin/content/book/settings
|
||||||
stylesheets[all][] = book.css
|
stylesheets[all][] = book.css
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -38,6 +38,15 @@ function book_render() {
|
|||||||
* format determined by the $type parameter.
|
* format determined by the $type parameter.
|
||||||
*/
|
*/
|
||||||
function book_export($type, $nid) {
|
function book_export($type, $nid) {
|
||||||
|
// Check that the node exists and that the current user has access to it.
|
||||||
|
$node = node_load($nid);
|
||||||
|
if (!$node) {
|
||||||
|
return MENU_NOT_FOUND;
|
||||||
|
}
|
||||||
|
if (!node_access('view', $node)) {
|
||||||
|
return MENU_ACCESS_DENIED;
|
||||||
|
}
|
||||||
|
|
||||||
$type = drupal_strtolower($type);
|
$type = drupal_strtolower($type);
|
||||||
|
|
||||||
$export_function = 'book_export_' . $type;
|
$export_function = 'book_export_' . $type;
|
||||||
|
@ -258,6 +258,13 @@ class BookTestCase extends DrupalWebTestCase {
|
|||||||
// Try getting the URL directly, and verify it fails.
|
// Try getting the URL directly, and verify it fails.
|
||||||
$this->drupalGet('book/export/html/' . $this->book->nid);
|
$this->drupalGet('book/export/html/' . $this->book->nid);
|
||||||
$this->assertResponse('403', t('Anonymous user properly forbidden.'));
|
$this->assertResponse('403', t('Anonymous user properly forbidden.'));
|
||||||
|
|
||||||
|
// Now grant anonymous users permission to view the printer-friendly
|
||||||
|
// version and verify that node access restrictions still prevent them from
|
||||||
|
// seeing it.
|
||||||
|
user_role_grant_permissions(DRUPAL_ANONYMOUS_RID, array('access printer-friendly version'));
|
||||||
|
$this->drupalGet('book/export/html/' . $this->book->nid);
|
||||||
|
$this->assertResponse('403', 'Anonymous user properly forbidden from seeing the printer-friendly version when denied by node access.');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
files[] = color.test
|
files[] = color.test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -9,8 +9,8 @@ files[] = comment.test
|
|||||||
configure = admin/content/comment
|
configure = admin/content/comment
|
||||||
stylesheets[all][] = comment.css
|
stylesheets[all][] = comment.css
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ core = 7.x
|
|||||||
files[] = contact.test
|
files[] = contact.test
|
||||||
configure = admin/structure/contact
|
configure = admin/structure/contact
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
files[] = contextual.test
|
files[] = contextual.test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -7,8 +7,8 @@ files[] = dashboard.test
|
|||||||
dependencies[] = block
|
dependencies[] = block
|
||||||
configure = admin/dashboard/customize
|
configure = admin/dashboard/customize
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
files[] = dblog.test
|
files[] = dblog.test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -10,8 +10,8 @@ dependencies[] = field_sql_storage
|
|||||||
required = TRUE
|
required = TRUE
|
||||||
stylesheets[all][] = theme/field.css
|
stylesheets[all][] = theme/field.css
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -7,8 +7,8 @@ dependencies[] = field
|
|||||||
files[] = field_sql_storage.test
|
files[] = field_sql_storage.test
|
||||||
required = TRUE
|
required = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -7,8 +7,8 @@ dependencies[] = field
|
|||||||
dependencies[] = options
|
dependencies[] = options
|
||||||
files[] = tests/list.test
|
files[] = tests/list.test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ package = Testing
|
|||||||
version = VERSION
|
version = VERSION
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ core = 7.x
|
|||||||
dependencies[] = field
|
dependencies[] = field
|
||||||
files[] = number.test
|
files[] = number.test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ core = 7.x
|
|||||||
dependencies[] = field
|
dependencies[] = field
|
||||||
files[] = options.test
|
files[] = options.test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -7,8 +7,8 @@ dependencies[] = field
|
|||||||
files[] = text.test
|
files[] = text.test
|
||||||
required = TRUE
|
required = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ files[] = field_test.entity.inc
|
|||||||
version = VERSION
|
version = VERSION
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ core = 7.x
|
|||||||
dependencies[] = field
|
dependencies[] = field
|
||||||
files[] = field_ui.test
|
files[] = field_ui.test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ core = 7.x
|
|||||||
dependencies[] = field
|
dependencies[] = field
|
||||||
files[] = tests/file.test
|
files[] = tests/file.test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -7,8 +7,8 @@ files[] = filter.test
|
|||||||
required = TRUE
|
required = TRUE
|
||||||
configure = admin/config/content/formats
|
configure = admin/config/content/formats
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -9,8 +9,8 @@ files[] = forum.test
|
|||||||
configure = admin/structure/forum
|
configure = admin/structure/forum
|
||||||
stylesheets[all][] = forum.css
|
stylesheets[all][] = forum.css
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
files[] = help.test
|
files[] = help.test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -7,8 +7,8 @@ dependencies[] = file
|
|||||||
files[] = image.test
|
files[] = image.test
|
||||||
configure = admin/config/media/image-styles
|
configure = admin/config/media/image-styles
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -292,7 +292,8 @@ function image_file_download($uri) {
|
|||||||
if ($info = image_get_info($uri)) {
|
if ($info = image_get_info($uri)) {
|
||||||
// Check the permissions of the original to grant access to this image.
|
// Check the permissions of the original to grant access to this image.
|
||||||
$headers = module_invoke_all('file_download', $original_uri);
|
$headers = module_invoke_all('file_download', $original_uri);
|
||||||
if (!in_array(-1, $headers)) {
|
// Confirm there's at least one module granting access and none denying access.
|
||||||
|
if (!empty($headers) && !in_array(-1, $headers)) {
|
||||||
return array(
|
return array(
|
||||||
// Send headers describing the image's size, and MIME-type...
|
// Send headers describing the image's size, and MIME-type...
|
||||||
'Content-Type' => $info['mime_type'],
|
'Content-Type' => $info['mime_type'],
|
||||||
|
@ -6,8 +6,8 @@ core = 7.x
|
|||||||
files[] = image_module_test.module
|
files[] = image_module_test.module
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ core = 7.x
|
|||||||
files[] = locale.test
|
files[] = locale.test
|
||||||
configure = admin/config/regional/language
|
configure = admin/config/regional/language
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ package = Testing
|
|||||||
version = VERSION
|
version = VERSION
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ core = 7.x
|
|||||||
files[] = menu.test
|
files[] = menu.test
|
||||||
configure = admin/structure/menu
|
configure = admin/structure/menu
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -9,8 +9,8 @@ required = TRUE
|
|||||||
configure = admin/structure/types
|
configure = admin/structure/types
|
||||||
stylesheets[all][] = node.css
|
stylesheets[all][] = node.css
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ package = Core
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
files[] = openid.test
|
files[] = openid.test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ core = 7.x
|
|||||||
dependencies[] = openid
|
dependencies[] = openid
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -4,8 +4,8 @@ package = Core
|
|||||||
version = VERSION
|
version = VERSION
|
||||||
core = 7.x
|
core = 7.x
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ core = 7.x
|
|||||||
files[] = path.test
|
files[] = path.test
|
||||||
configure = admin/config/search/path
|
configure = admin/config/search/path
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
files[] = php.test
|
files[] = php.test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ core = 7.x
|
|||||||
files[] = poll.test
|
files[] = poll.test
|
||||||
stylesheets[all][] = poll.css
|
stylesheets[all][] = poll.css
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -11,8 +11,8 @@ configure = admin/config/people/profile
|
|||||||
; See user_system_info_alter().
|
; See user_system_info_alter().
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
files[] = rdf.test
|
files[] = rdf.test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -8,8 +8,8 @@ files[] = search.test
|
|||||||
configure = admin/config/search/settings
|
configure = admin/config/search/settings
|
||||||
stylesheets[all][] = search.css
|
stylesheets[all][] = search.css
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ core = 7.x
|
|||||||
files[] = shortcut.test
|
files[] = shortcut.test
|
||||||
configure = admin/config/user-interface/shortcut
|
configure = admin/config/user-interface/shortcut
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -55,8 +55,8 @@ files[] = tests/upgrade/update.trigger.test
|
|||||||
files[] = tests/upgrade/update.field.test
|
files[] = tests/upgrade/update.field.test
|
||||||
files[] = tests/upgrade/update.user.test
|
files[] = tests/upgrade/update.user.test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ package = Testing
|
|||||||
version = VERSION
|
version = VERSION
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -7,8 +7,8 @@ stylesheets[all][] = common_test.css
|
|||||||
stylesheets[print][] = common_test.print.css
|
stylesheets[print][] = common_test.print.css
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ package = Testing
|
|||||||
version = VERSION
|
version = VERSION
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ core = 7.x
|
|||||||
dependencies[] = entity_cache_test_dependency
|
dependencies[] = entity_cache_test_dependency
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ package = Testing
|
|||||||
version = VERSION
|
version = VERSION
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ core = 7.x
|
|||||||
files[] = file_test.module
|
files[] = file_test.module
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -7,8 +7,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ core = 7.x
|
|||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
dependencies[] = _missing_dependency
|
dependencies[] = _missing_dependency
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ core = 7.x
|
|||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
dependencies[] = system_incompatible_core_version_test
|
dependencies[] = system_incompatible_core_version_test
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 5.x
|
core = 5.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -7,8 +7,8 @@ hidden = TRUE
|
|||||||
; system_incompatible_module_version_test declares version 1.0
|
; system_incompatible_module_version_test declares version 1.0
|
||||||
dependencies[] = system_incompatible_module_version_test (>2.0)
|
dependencies[] = system_incompatible_module_version_test (>2.0)
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = 1.0
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ core = 7.x
|
|||||||
files[] = system_test.module
|
files[] = system_test.module
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ core = 7.x
|
|||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
dependencies[] = taxonomy
|
dependencies[] = taxonomy
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -5,8 +5,8 @@ version = VERSION
|
|||||||
core = 7.x
|
core = 7.x
|
||||||
hidden = TRUE
|
hidden = TRUE
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ hidden = TRUE
|
|||||||
settings[basetheme_only] = base theme value
|
settings[basetheme_only] = base theme value
|
||||||
settings[subtheme_override] = base theme value
|
settings[subtheme_override] = base theme value
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ hidden = TRUE
|
|||||||
|
|
||||||
settings[subtheme_override] = subtheme value
|
settings[subtheme_override] = subtheme value
|
||||||
|
|
||||||
; Information added by drupal.org packaging script on 2012-11-07
|
; Information added by drupal.org packaging script on 2013-01-16
|
||||||
version = "7.17"
|
version = "7.19"
|
||||||
project = "drupal"
|
project = "drupal"
|
||||||
datestamp = "1352325357"
|
datestamp = "1358374870"
|
||||||
|
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user