Skip to content

Commit 7ab560e

Browse files
authored
Merge pull request #8 from magento-dragons/MAGETWO-65715-1.12.20
Upgrade zend framework to 1.12.20
2 parents 21985df + 93b304f commit 7ab560e

File tree

173 files changed

+808
-21418
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

173 files changed

+808
-21418
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
.vagrant
12
tests/Zend/Db/Table/_files/cachefiles/*
23
tests/Zend/Auth/Adapter/OpenId/_files/*
34
tests/Zend/Filter/_files/Compress/*

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ services:
2121
- memcached
2222

2323
before_script:
24+
- phpenv config-rm xdebug.ini || return 0
2425
- if [[ "$TRAVIS_PHP_VERSION" != "5.2" ]]; then travis_retry composer self-update; fi
2526
- if [[ "$TRAVIS_PHP_VERSION" != "5.2" ]]; then travis_retry composer install --no-interaction --prefer-source --dev; fi
2627

CONTRIBUTING.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# CONTRIBUTING
22

3+
> ## End-of-Life occurs 28 Sep 2016
4+
>
5+
> Between now and 28 Sep 2016, we will only be accepting security patches to
6+
> this repository; after that date, we will issue no more releases.
7+
>
8+
> For more information:
9+
>
10+
> - https://framework.zend.com/blog/2016-06-28-zf1-eol.html
11+
12+
---
13+
14+
> ## Contributors License Agreement
15+
>
316
> **To submit code, patches, and proposals to Zend Framework, contributors must
417
agree to the New BSD License and also submit a signed
518
[Contributor License Agreement (CLA)](https://github.com/zendframework/zf1/wiki/Contributor-License-Agreement-%28CLA%29).**
@@ -38,4 +51,4 @@ contributors a chance to resolve the vulnerability and issue a new release prior
3851
to any public exposure; this helps protect Zend Framework users and provides
3952
them with a chance to upgrade and/or update in order to protect their applications.
4053

41-
For sensitive email communications, please use [our PGP key](http://framework.zend.com/zf-security-pgp-key.asc).
54+
For sensitive email communications, please use [our PGP key](http://framework.zend.com/zf-security-pgp-key.asc).

Vagrantfile

Lines changed: 31 additions & 75 deletions
Original file line numberDiff line numberDiff line change
@@ -1,90 +1,46 @@
11
# -*- mode: ruby -*-
22
# vi: set ft=ruby :
33

4-
Vagrant::Config.run do |config|
5-
# All Vagrant configuration is done here. The most common configuration
6-
# options are documented and commented below. For a complete reference,
7-
# please see the online documentation at vagrantup.com.
84

9-
# Every Vagrant virtual environment requires a box to build off of.
10-
config.vm.box = "lucid32"
5+
# Inline provisioning shell script
6+
@script = <<SCRIPT
117
12-
# The url from where the 'config.vm.box' box will be fetched if it
13-
# doesn't already exist on the user's system.
14-
config.vm.box_url = "http://files.vagrantup.com/lucid32.box"
8+
echo -e '\nexport PATH=~/.composer/vendor/bin:$PATH\n' >> ~/.bashrc
159
16-
# Boot with a GUI so you can see the screen. (Default is headless)
17-
#config.vm.boot_mode = :gui
10+
# Switch to PHP7
11+
newphp 7
1812
19-
# Assign this VM to a host-only network IP, allowing you to access it
20-
# via the IP. Host-only networks can talk to the host machine as well as
21-
# any other machines on the same network, but cannot be accessed (through this
22-
# network interface) by any external networks.
23-
# config.vm.network :hostonly, "192.168.33.10"
13+
# rebuild PHP7
14+
#makephp 7
2415
25-
# Assign this VM to a bridged network, allowing you to connect directly to a
26-
# network using the host's network device. This makes the VM appear as another
27-
# physical device on your network.
28-
# config.vm.network :bridged
16+
echo ""
17+
echo "** SSH into the box to run the tests. use newphp to switch between versions and makephp 7 to rebuld PHP 7**"
18+
echo "** Use 'newphp nn' to switch between versions (e.g. newphp 54)**"
19+
echo "** Install PHPUnit via composer global require phpunit/phpunit:~n.n for the version required**"
20+
echo ""
21+
SCRIPT
2922

30-
# Forward a port from the guest to the host, which allows for outside
31-
# computers to access the VM, whereas host only networking does not.
32-
config.vm.forward_port 80, 8081
3323

34-
# Hostname
35-
config.vm.host_name = "zf1.dev"
24+
# Vagrant configuration
25+
VAGRANTFILE_API_VERSION = "2"
26+
Vagrant.configure(VAGRANTFILE_API_VERSION) do |c|
27+
c.vm.define "zf1dev", primary: true do |config|
28+
config.vm.box = 'rasmus/php7dev'
29+
# config.vm.network :forwarded_port, guest: 80, host: 8889
30+
config.vm.hostname = "zf1dev.localhost"
31+
32+
config.vm.provision 'shell', inline: @script
3633

37-
# Pass custom arguments to VBoxManage before booting VM
38-
config.vm.customize [
39-
# 'modifyvm', :id, '--chipset', 'ich9', # solves kernel panic issue on some host machines
40-
# '--uartmode1', 'file', 'C:\\base6-console.log' # uncomment to change log location on Windows
41-
"setextradata", :id, "VBoxInternal2/SharedFoldersEnableSymlinksCreate/v-root", "1"
42-
]
34+
config.vm.provider "virtualbox" do |vb|
35+
vb.customize ["modifyvm", :id, "--memory", "1024"]
36+
end
4337

44-
# Share an additional folder to the guest VM. The first argument is
45-
# an identifier, the second is the path on the guest to mount the
46-
# folder, and the third is the path on the host to the actual folder.
47-
# config.vm.share_folder "v-data", "/vagrant_data", "../data"
48-
49-
# Enable provisioning with Puppet stand alone. Puppet manifests
50-
# are contained in a directory path relative to this Vagrantfile.
51-
# You will need to create the manifests directory and a manifest in
52-
# the file lucid32.pp in the manifests_path directory.
53-
#
54-
# An example Puppet manifest to provision the message of the day:
55-
#
56-
# # group { "puppet":
57-
# # ensure => "present",
58-
# # }
59-
# #
60-
# # File { owner => 0, group => 0, mode => 0644 }
61-
# #
62-
# # file { '/etc/motd':
63-
# # content => "Welcome to your Vagrant-built virtual machine!
64-
# # Managed by Puppet.\n"
65-
# # }
66-
#
67-
# config.vm.provision :puppet do |puppet|
68-
# puppet.manifests_path = "manifests"
69-
# puppet.manifest_file = "lucid32.pp"
70-
# end
71-
72-
73-
config.vm.provision :puppet do |puppet|
74-
puppet.manifests_path = "puppet/manifests"
75-
puppet.manifest_file = "default.pp"
7638
end
39+
end
7740

78-
# config.vm.provision :puppet do |puppet|
79-
# puppet.manifests_path = "puppet/manifests"
80-
# puppet.module_path = "puppet/modules"
81-
# puppet.manifest_file = "zf1.pp"
82-
# puppet.options = [
83-
# '--verbose',
84-
# #'--debug',
85-
# # '--graph',
86-
# # '--graphdir=/vagrant/puppet/graphs'
87-
# ]
88-
# end
8941

90-
end
42+
# config.vm.customize [
43+
# # 'modifyvm', :id, '--chipset', 'ich9', # solves kernel panic issue on some host machines
44+
# # '--uartmode1', 'file', 'C:\\base6-console.log' # uncomment to change log location on Windows
45+
# "setextradata", :id, "VBoxInternal2/SharedFoldersEnableSymlinksCreate/v-root", "1"
46+
# ]

documentation/manual/de/module_specs/Zend_Form-Elements.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1171,7 +1171,7 @@ echo $element->renderHtmlTag("Das ist der Inhalt des HTML Tags");
11711171
<emphasis>required</emphasis>: Ein Flag, das anzeigt ob ein Element benötigt
11721172
wird wenn eine Prüfung des Formulars durchgeführt wird, oder nicht. Verwendet
11731173
die Zugriffsmethoden <methodname>setRequired()</methodname> und
1174-
<methodname>getRequired()</methodname>. Dieses Flag ist standardmäßig
1174+
<methodname>isRequired()</methodname>. Dieses Flag ist standardmäßig
11751175
<constant>FALSE</constant>.
11761176
</para>
11771177
</listitem>
@@ -1330,7 +1330,7 @@ $element->class = 'text;
13301330
<listitem><para><methodname>setOrder($order)</methodname></para></listitem>
13311331
<listitem><para><methodname>getOrder()</methodname></para></listitem>
13321332
<listitem><para><methodname>setRequired($flag)</methodname></para></listitem>
1333-
<listitem><para><methodname>getRequired()</methodname></para></listitem>
1333+
<listitem><para><methodname>isRequired()</methodname></para></listitem>
13341334
<listitem><para><methodname>setAllowEmpty($flag)</methodname></para></listitem>
13351335
<listitem><para><methodname>getAllowEmpty()</methodname></para></listitem>
13361336

documentation/manual/de/module_specs/Zend_Form-StandardElements.xml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,6 @@
3535
den <link linkend="zend.form.standardDecorators.viewHelper">ViewHelper</link> und den
3636
<link linkend="zend.form.standardDecorators.dtDdWrapper">DtDdWrapper</link> Dekorator.
3737
</para>
38-
39-
<para>
40-
Nach der Veröffentlichung oder Prüfung einer Form, kann geprüft werden ob der gegebene
41-
Button geklickt wurd indem die <methodname>isChecked()</methodname> Methode verwendet
42-
wird.
43-
</para>
4438
</sect2>
4539

4640
<sect2 id="zend.form.standardElements.captcha">

documentation/manual/de/module_specs/Zend_Gdata-Introduction.xml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,6 @@
5959
</para>
6060
</listitem>
6161

62-
<listitem>
63-
<para>
64-
<link linkend="zend.gdata.youtube">YouTube</link> bietet die Möglichkeit Videos,
65-
Kommentare, Favoriten, Einschreibungen, Benutzerprofile und vieles mehr zu
66-
Suchen und zu Empfangen.
67-
</para>
68-
</listitem>
69-
7062
<listitem>
7163
<para>
7264
<link linkend="zend.gdata.photos">Picasa Web Album</link> bietet eine online

0 commit comments

Comments
 (0)