├── .github └── FUNDING.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── api ├── .htaccess ├── application │ ├── configs │ │ └── application.ini │ ├── controllers │ │ ├── ErrorController.php │ │ ├── IndexController.php │ │ ├── MenuCategoriesController.php │ │ ├── MenuCustomizationsController.php │ │ ├── MenuMealsController.php │ │ ├── OrderController.php │ │ ├── RestaurantController.php │ │ ├── RoomController.php │ │ ├── RoomTableController.php │ │ ├── SoapController.php │ │ └── UserController.php │ ├── layouts │ │ └── layout.php │ └── views │ │ └── scripts │ │ └── error │ │ └── error.phtml ├── library │ ├── AppLib │ ├── ServicesLib │ │ ├── Bootstrap.php │ │ ├── Controller │ │ │ ├── Action.php │ │ │ ├── Action │ │ │ │ └── Helper │ │ │ │ │ ├── ContextSwitch.php │ │ │ │ │ └── RestContexts.php │ │ │ ├── Plugin │ │ │ │ └── RestHandler.php │ │ │ ├── Request │ │ │ │ └── Rest.php │ │ │ ├── Response │ │ │ │ └── Rest.php │ │ │ ├── Rest.php │ │ │ └── Soap.php │ │ └── Serializer │ │ │ └── Adapter │ │ │ └── Xml.php │ ├── Zend │ └── eVias └── public │ ├── favicon.ico │ └── index.php ├── assets ├── ESlogo-transparent.png └── ESlogo.png ├── library ├── AppLib │ ├── DbFilter.php │ ├── Exception.php │ ├── Lang.php │ ├── Model │ │ ├── AclConfig.php │ │ ├── AclResource.php │ │ ├── Bookable.php │ │ ├── Booking.php │ │ ├── BookingType.php │ │ ├── Cart.php │ │ ├── Category.php │ │ ├── Company.php │ │ ├── Customer.php │ │ ├── CustomerLocation.php │ │ ├── CustomizationItem.php │ │ ├── Exception.php │ │ ├── Item.php │ │ ├── ItemCustomization.php │ │ ├── Menu.php │ │ ├── Order.php │ │ ├── Restaurant.php │ │ ├── RestaurantAccess.php │ │ ├── Room.php │ │ ├── RoomTable.php │ │ └── User.php │ ├── Service │ │ ├── Abstract.php │ │ ├── AccessControl.php │ │ ├── Application.php │ │ ├── Booking.php │ │ ├── Cart.php │ │ ├── Customer.php │ │ ├── Factory.php │ │ ├── Fault.php │ │ ├── Menu.php │ │ ├── Order.php │ │ ├── Proxy.php │ │ ├── Restaurant.php │ │ ├── Search.php │ │ └── User.php │ ├── Utils.php │ └── VERSION ├── Zend │ ├── .Acl.php.swp │ ├── .Pdf.php.swp │ ├── Acl.php │ ├── Acl │ │ ├── .Resource.php.swp │ │ ├── .Role.php.swp │ │ ├── Assert │ │ │ └── Interface.php │ │ ├── Exception.php │ │ ├── Resource.php │ │ ├── Resource │ │ │ └── Interface.php │ │ ├── Role.php │ │ └── Role │ │ │ ├── .Registry.php.swp │ │ │ ├── Interface.php │ │ │ ├── Registry.php │ │ │ ├── Registry │ │ │ └── Exception.php │ │ │ └── System.Management.Instrumentation.ni.dll │ ├── Amf │ │ ├── Adobe │ │ │ ├── Auth.php │ │ │ ├── DbInspector.php │ │ │ └── Introspector.php │ │ ├── Auth │ │ │ └── Abstract.php │ │ ├── Constants.php │ │ ├── Exception.php │ │ ├── Parse │ │ │ ├── Amf0 │ │ │ │ ├── Deserializer.php │ │ │ │ └── Serializer.php │ │ │ ├── Amf3 │ │ │ │ ├── Deserializer.php │ │ │ │ └── Serializer.php │ │ │ ├── Deserializer.php │ │ │ ├── InputStream.php │ │ │ ├── OutputStream.php │ │ │ ├── Resource │ │ │ │ ├── MysqlResult.php │ │ │ │ ├── MysqliResult.php │ │ │ │ └── Stream.php │ │ │ ├── Serializer.php │ │ │ └── TypeLoader.php │ │ ├── Request.php │ │ ├── Request │ │ │ └── Http.php │ │ ├── Response.php │ │ ├── Response │ │ │ └── Http.php │ │ ├── Server.php │ │ ├── Server │ │ │ └── Exception.php │ │ ├── Util │ │ │ └── BinaryStream.php │ │ └── Value │ │ │ ├── ByteArray.php │ │ │ ├── MessageBody.php │ │ │ ├── MessageHeader.php │ │ │ ├── Messaging │ │ │ ├── AbstractMessage.php │ │ │ ├── AcknowledgeMessage.php │ │ │ ├── ArrayCollection.php │ │ │ ├── AsyncMessage.php │ │ │ ├── CommandMessage.php │ │ │ ├── ErrorMessage.php │ │ │ └── RemotingMessage.php │ │ │ └── TraitsInfo.php │ ├── Application.php │ ├── Application │ │ ├── Bootstrap │ │ │ ├── Bootstrap.php │ │ │ ├── BootstrapAbstract.php │ │ │ ├── Bootstrapper.php │ │ │ ├── Exception.php │ │ │ └── ResourceBootstrapper.php │ │ ├── Exception.php │ │ ├── Module │ │ │ ├── Autoloader.php │ │ │ └── Bootstrap.php │ │ └── Resource │ │ │ ├── Db.php │ │ │ ├── Exception.php │ │ │ ├── Frontcontroller.php │ │ │ ├── Layout.php │ │ │ ├── Locale.php │ │ │ ├── Modules.php │ │ │ ├── Navigation.php │ │ │ ├── Resource.php │ │ │ ├── ResourceAbstract.php │ │ │ ├── Router.php │ │ │ ├── Session.php │ │ │ ├── Translate.php │ │ │ └── View.php │ ├── Auth.php │ ├── Auth │ │ ├── Adapter │ │ │ ├── DbTable.php │ │ │ ├── Digest.php │ │ │ ├── Exception.php │ │ │ ├── Http.php │ │ │ ├── Http │ │ │ │ └── Resolver │ │ │ │ │ ├── Exception.php │ │ │ │ │ ├── File.php │ │ │ │ │ └── Interface.php │ │ │ ├── InfoCard.php │ │ │ ├── Interface.php │ │ │ ├── Ldap.php │ │ │ └── OpenId.php │ │ ├── Exception.php │ │ ├── Result.php │ │ └── Storage │ │ │ ├── Exception.php │ │ │ ├── Interface.php │ │ │ ├── NonPersistent.php │ │ │ └── Session.php │ ├── Cache.php │ ├── Cache │ │ ├── Backend.php │ │ ├── Backend │ │ │ ├── Apc.php │ │ │ ├── ExtendedInterface.php │ │ │ ├── File.php │ │ │ ├── Interface.php │ │ │ ├── Memcached.php │ │ │ ├── Sqlite.php │ │ │ ├── Test.php │ │ │ ├── TwoLevels.php │ │ │ ├── Xcache.php │ │ │ ├── ZendPlatform.php │ │ │ ├── ZendServer.php │ │ │ └── ZendServer │ │ │ │ ├── Disk.php │ │ │ │ └── ShMem.php │ │ ├── Core.php │ │ ├── Exception.php │ │ └── Frontend │ │ │ ├── Class.php │ │ │ ├── File.php │ │ │ ├── Function.php │ │ │ ├── Output.php │ │ │ └── Page.php │ ├── Captcha │ │ ├── Adapter.php │ │ ├── Base.php │ │ ├── Dumb.php │ │ ├── Exception.php │ │ ├── Figlet.php │ │ ├── Image.php │ │ ├── ReCaptcha.php │ │ └── Word.php │ ├── CodeGenerator │ │ ├── Abstract.php │ │ ├── Exception.php │ │ └── Php │ │ │ ├── Abstract.php │ │ │ ├── Body.php │ │ │ ├── Class.php │ │ │ ├── Docblock.php │ │ │ ├── Docblock │ │ │ ├── Tag.php │ │ │ └── Tag │ │ │ │ ├── License.php │ │ │ │ ├── Param.php │ │ │ │ └── Return.php │ │ │ ├── Exception.php │ │ │ ├── File.php │ │ │ ├── Member │ │ │ ├── Abstract.php │ │ │ └── Container.php │ │ │ ├── Method.php │ │ │ ├── Parameter.php │ │ │ ├── Parameter │ │ │ └── DefaultValue.php │ │ │ ├── Property.php │ │ │ └── Property │ │ │ └── DefaultValue.php │ ├── Config.php │ ├── Config │ │ ├── Exception.php │ │ ├── Ini.php │ │ ├── Writer.php │ │ ├── Writer │ │ │ ├── Array.php │ │ │ ├── Ini.php │ │ │ └── Xml.php │ │ └── Xml.php │ ├── Console │ │ ├── Getopt.php │ │ └── Getopt │ │ │ └── Exception.php │ ├── Controller │ │ ├── Action.php │ │ ├── Action │ │ │ ├── Exception.php │ │ │ ├── Helper │ │ │ │ ├── Abstract.php │ │ │ │ ├── ActionStack.php │ │ │ │ ├── AjaxContext.php │ │ │ │ ├── AutoComplete │ │ │ │ │ └── Abstract.php │ │ │ │ ├── AutoCompleteDojo.php │ │ │ │ ├── AutoCompleteScriptaculous.php │ │ │ │ ├── ContextSwitch.php │ │ │ │ ├── FlashMessenger.php │ │ │ │ ├── Json.php │ │ │ │ ├── Redirector.php │ │ │ │ ├── Url.php │ │ │ │ └── ViewRenderer.php │ │ │ ├── HelperBroker.php │ │ │ ├── HelperBroker │ │ │ │ └── PriorityStack.php │ │ │ └── Interface.php │ │ ├── Dispatcher │ │ │ ├── Abstract.php │ │ │ ├── Exception.php │ │ │ ├── Interface.php │ │ │ └── Standard.php │ │ ├── Exception.php │ │ ├── Front.php │ │ ├── Plugin │ │ │ ├── Abstract.php │ │ │ ├── ActionStack.php │ │ │ ├── Broker.php │ │ │ ├── ErrorHandler.php │ │ │ └── PutHandler.php │ │ ├── Request │ │ │ ├── Abstract.php │ │ │ ├── Apache404.php │ │ │ ├── Exception.php │ │ │ ├── Http.php │ │ │ ├── HttpTestCase.php │ │ │ └── Simple.php │ │ ├── Response │ │ │ ├── Abstract.php │ │ │ ├── Cli.php │ │ │ ├── Exception.php │ │ │ ├── Http.php │ │ │ └── HttpTestCase.php │ │ └── Router │ │ │ ├── Abstract.php │ │ │ ├── Exception.php │ │ │ ├── Interface.php │ │ │ ├── Rewrite.php │ │ │ ├── Route.php │ │ │ └── Route │ │ │ ├── Abstract.php │ │ │ ├── Chain.php │ │ │ ├── Hostname.php │ │ │ ├── Interface.php │ │ │ ├── Module.php │ │ │ ├── Regex.php │ │ │ ├── Static.php │ │ │ └── System.Web.Entity.ni.dll │ ├── Crypt.php │ ├── Crypt │ │ ├── DiffieHellman.php │ │ ├── DiffieHellman │ │ │ └── Exception.php │ │ ├── Exception.php │ │ ├── Hmac.php │ │ ├── Hmac │ │ │ └── Exception.php │ │ ├── Math.php │ │ ├── Math │ │ │ ├── BigInteger.php │ │ │ ├── BigInteger │ │ │ │ ├── Bcmath.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Gmp.php │ │ │ │ └── Interface.php │ │ │ └── Exception.php │ │ ├── Rsa.php │ │ └── Rsa │ │ │ ├── Key.php │ │ │ └── Key │ │ │ ├── Private.php │ │ │ └── Public.php │ ├── Currency.php │ ├── Currency │ │ └── Exception.php │ ├── Date.php │ ├── Date │ │ ├── Cities.php │ │ ├── DateObject.php │ │ └── Exception.php │ ├── Db.php │ ├── Db │ │ ├── Adapter │ │ │ ├── Abstract.php │ │ │ ├── Db2.php │ │ │ ├── Db2 │ │ │ │ └── Exception.php │ │ │ ├── Exception.php │ │ │ ├── Mysqli.php │ │ │ ├── Mysqli │ │ │ │ └── Exception.php │ │ │ ├── Oracle.php │ │ │ ├── Oracle │ │ │ │ └── Exception.php │ │ │ ├── Pdo │ │ │ │ ├── Abstract.php │ │ │ │ ├── Ibm.php │ │ │ │ ├── Ibm │ │ │ │ │ ├── Db2.php │ │ │ │ │ └── Ids.php │ │ │ │ ├── Mssql.php │ │ │ │ ├── Mysql.php │ │ │ │ ├── Oci.php │ │ │ │ ├── Pgsql.php │ │ │ │ └── Sqlite.php │ │ │ ├── Sqlsrv.php │ │ │ └── Sqlsrv │ │ │ │ └── Exception.php │ │ ├── Exception.php │ │ ├── Expr.php │ │ ├── Profiler.php │ │ ├── Profiler │ │ │ ├── Exception.php │ │ │ ├── Firebug.php │ │ │ └── Query.php │ │ ├── Select.php │ │ ├── Select │ │ │ └── Exception.php │ │ ├── Statement.php │ │ ├── Statement │ │ │ ├── Db2.php │ │ │ ├── Db2 │ │ │ │ └── Exception.php │ │ │ ├── Exception.php │ │ │ ├── Interface.php │ │ │ ├── Mysqli.php │ │ │ ├── Mysqli │ │ │ │ └── Exception.php │ │ │ ├── Oracle.php │ │ │ ├── Oracle │ │ │ │ └── Exception.php │ │ │ ├── Pdo.php │ │ │ ├── Pdo │ │ │ │ ├── Ibm.php │ │ │ │ └── Oci.php │ │ │ ├── Sqlsrv.php │ │ │ └── Sqlsrv │ │ │ │ └── Exception.php │ │ ├── Table.php │ │ └── Table │ │ │ ├── Abstract.php │ │ │ ├── Definition.php │ │ │ ├── Exception.php │ │ │ ├── Row.php │ │ │ ├── Row │ │ │ ├── Abstract.php │ │ │ └── Exception.php │ │ │ ├── Rowset.php │ │ │ ├── Rowset │ │ │ ├── Abstract.php │ │ │ └── Exception.php │ │ │ ├── Select.php │ │ │ └── Select │ │ │ └── Exception.php │ ├── Debug.php │ ├── Dojo.php │ ├── Dojo │ │ ├── BuildLayer.php │ │ ├── Data.php │ │ ├── Exception.php │ │ ├── Form.php │ │ ├── Form │ │ │ ├── Decorator │ │ │ │ ├── AccordionContainer.php │ │ │ │ ├── AccordionPane.php │ │ │ │ ├── BorderContainer.php │ │ │ │ ├── ContentPane.php │ │ │ │ ├── DijitContainer.php │ │ │ │ ├── DijitElement.php │ │ │ │ ├── DijitForm.php │ │ │ │ ├── SplitContainer.php │ │ │ │ ├── StackContainer.php │ │ │ │ └── TabContainer.php │ │ │ ├── DisplayGroup.php │ │ │ ├── Element │ │ │ │ ├── Button.php │ │ │ │ ├── CheckBox.php │ │ │ │ ├── ComboBox.php │ │ │ │ ├── CurrencyTextBox.php │ │ │ │ ├── DateTextBox.php │ │ │ │ ├── Dijit.php │ │ │ │ ├── DijitMulti.php │ │ │ │ ├── Editor.php │ │ │ │ ├── FilteringSelect.php │ │ │ │ ├── HorizontalSlider.php │ │ │ │ ├── NumberSpinner.php │ │ │ │ ├── NumberTextBox.php │ │ │ │ ├── PasswordTextBox.php │ │ │ │ ├── RadioButton.php │ │ │ │ ├── SimpleTextarea.php │ │ │ │ ├── Slider.php │ │ │ │ ├── SubmitButton.php │ │ │ │ ├── TextBox.php │ │ │ │ ├── Textarea.php │ │ │ │ ├── TimeTextBox.php │ │ │ │ ├── ValidationTextBox.php │ │ │ │ └── VerticalSlider.php │ │ │ └── SubForm.php │ │ └── View │ │ │ ├── Exception.php │ │ │ └── Helper │ │ │ ├── AccordionContainer.php │ │ │ ├── AccordionPane.php │ │ │ ├── BorderContainer.php │ │ │ ├── Button.php │ │ │ ├── CheckBox.php │ │ │ ├── ComboBox.php │ │ │ ├── ContentPane.php │ │ │ ├── CurrencyTextBox.php │ │ │ ├── CustomDijit.php │ │ │ ├── DateTextBox.php │ │ │ ├── Dijit.php │ │ │ ├── DijitContainer.php │ │ │ ├── Dojo.php │ │ │ ├── Dojo │ │ │ └── Container.php │ │ │ ├── Editor.php │ │ │ ├── FilteringSelect.php │ │ │ ├── Form.php │ │ │ ├── HorizontalSlider.php │ │ │ ├── NumberSpinner.php │ │ │ ├── NumberTextBox.php │ │ │ ├── PasswordTextBox.php │ │ │ ├── RadioButton.php │ │ │ ├── SimpleTextarea.php │ │ │ ├── Slider.php │ │ │ ├── SplitContainer.php │ │ │ ├── StackContainer.php │ │ │ ├── SubmitButton.php │ │ │ ├── TabContainer.php │ │ │ ├── TextBox.php │ │ │ ├── Textarea.php │ │ │ ├── TimeTextBox.php │ │ │ ├── ValidationTextBox.php │ │ │ └── VerticalSlider.php │ ├── Dom │ │ ├── Exception.php │ │ ├── Query.php │ │ └── Query │ │ │ ├── Css2Xpath.php │ │ │ └── Result.php │ ├── Exception.php │ ├── Feed.php │ ├── Feed │ │ ├── Abstract.php │ │ ├── Atom.php │ │ ├── Builder.php │ │ ├── Builder │ │ │ ├── Entry.php │ │ │ ├── Exception.php │ │ │ ├── Header.php │ │ │ ├── Header │ │ │ │ └── Itunes.php │ │ │ └── Interface.php │ │ ├── Element.php │ │ ├── Entry │ │ │ ├── Abstract.php │ │ │ ├── Atom.php │ │ │ └── Rss.php │ │ ├── Exception.php │ │ ├── Reader.php │ │ ├── Reader │ │ │ ├── Entry │ │ │ │ ├── Atom.php │ │ │ │ └── Rss.php │ │ │ ├── EntryAbstract.php │ │ │ ├── EntryInterface.php │ │ │ ├── Extension │ │ │ │ ├── Atom │ │ │ │ │ ├── Entry.php │ │ │ │ │ └── Feed.php │ │ │ │ ├── Content │ │ │ │ │ └── Entry.php │ │ │ │ ├── CreativeCommons │ │ │ │ │ ├── Entry.php │ │ │ │ │ └── Feed.php │ │ │ │ ├── DublinCore │ │ │ │ │ ├── Entry.php │ │ │ │ │ └── Feed.php │ │ │ │ ├── EntryAbstract.php │ │ │ │ ├── FeedAbstract.php │ │ │ │ ├── Podcast │ │ │ │ │ ├── Entry.php │ │ │ │ │ └── Feed.php │ │ │ │ ├── Slash │ │ │ │ │ └── Entry.php │ │ │ │ ├── Syndication │ │ │ │ │ └── Feed.php │ │ │ │ ├── Thread │ │ │ │ │ └── Entry.php │ │ │ │ └── WellFormedWeb │ │ │ │ │ └── Entry.php │ │ │ ├── Feed │ │ │ │ ├── Atom.php │ │ │ │ └── Rss.php │ │ │ ├── FeedAbstract.php │ │ │ ├── FeedInterface.php │ │ │ └── FeedSet.php │ │ └── Rss.php │ ├── File │ │ ├── Transfer.php │ │ └── Transfer │ │ │ ├── Adapter │ │ │ ├── Abstract.php │ │ │ └── Http.php │ │ │ └── Exception.php │ ├── Filter.php │ ├── Filter │ │ ├── Alnum.php │ │ ├── Alpha.php │ │ ├── BaseName.php │ │ ├── Callback.php │ │ ├── Decrypt.php │ │ ├── Digits.php │ │ ├── Dir.php │ │ ├── Encrypt.php │ │ ├── Encrypt │ │ │ ├── Interface.php │ │ │ ├── Mcrypt.php │ │ │ └── Openssl.php │ │ ├── Exception.php │ │ ├── File │ │ │ ├── Decrypt.php │ │ │ ├── Encrypt.php │ │ │ ├── LowerCase.php │ │ │ ├── Rename.php │ │ │ └── UpperCase.php │ │ ├── HtmlEntities.php │ │ ├── Inflector.php │ │ ├── Input.php │ │ ├── Int.php │ │ ├── Interface.php │ │ ├── LocalizedToNormalized.php │ │ ├── NormalizedToLocalized.php │ │ ├── PregReplace.php │ │ ├── RealPath.php │ │ ├── StringToLower.php │ │ ├── StringToUpper.php │ │ ├── StringTrim.php │ │ ├── StripNewlines.php │ │ ├── StripTags.php │ │ └── Word │ │ │ ├── CamelCaseToDash.php │ │ │ ├── CamelCaseToSeparator.php │ │ │ ├── CamelCaseToUnderscore.php │ │ │ ├── DashToCamelCase.php │ │ │ ├── DashToSeparator.php │ │ │ ├── DashToUnderscore.php │ │ │ ├── Separator │ │ │ └── Abstract.php │ │ │ ├── SeparatorToCamelCase.php │ │ │ ├── SeparatorToDash.php │ │ │ ├── SeparatorToSeparator.php │ │ │ ├── UnderscoreToCamelCase.php │ │ │ ├── UnderscoreToDash.php │ │ │ └── UnderscoreToSeparator.php │ ├── Form.php │ ├── Form │ │ ├── Decorator │ │ │ ├── Abstract.php │ │ │ ├── Callback.php │ │ │ ├── Captcha.php │ │ │ ├── Captcha │ │ │ │ └── Word.php │ │ │ ├── Description.php │ │ │ ├── DtDdWrapper.php │ │ │ ├── Errors.php │ │ │ ├── Exception.php │ │ │ ├── Fieldset.php │ │ │ ├── File.php │ │ │ ├── Form.php │ │ │ ├── FormElements.php │ │ │ ├── FormErrors.php │ │ │ ├── HtmlTag.php │ │ │ ├── Image.php │ │ │ ├── Interface.php │ │ │ ├── Label.php │ │ │ ├── Marker │ │ │ │ └── File │ │ │ │ │ └── Interface.php │ │ │ ├── PrepareElements.php │ │ │ ├── Tooltip.php │ │ │ ├── ViewHelper.php │ │ │ └── ViewScript.php │ │ ├── DisplayGroup.php │ │ ├── Element.php │ │ ├── Element │ │ │ ├── Button.php │ │ │ ├── Captcha.php │ │ │ ├── Checkbox.php │ │ │ ├── Exception.php │ │ │ ├── File.php │ │ │ ├── Hash.php │ │ │ ├── Hidden.php │ │ │ ├── Image.php │ │ │ ├── Multi.php │ │ │ ├── MultiCheckbox.php │ │ │ ├── Multiselect.php │ │ │ ├── Password.php │ │ │ ├── Radio.php │ │ │ ├── Reset.php │ │ │ ├── Select.php │ │ │ ├── Submit.php │ │ │ ├── Text.php │ │ │ ├── Textarea.php │ │ │ └── Xhtml.php │ │ ├── Exception.php │ │ └── SubForm.php │ ├── Gdata.php │ ├── Gdata │ │ ├── App.php │ │ ├── App │ │ │ ├── AuthException.php │ │ │ ├── BadMethodCallException.php │ │ │ ├── Base.php │ │ │ ├── BaseMediaSource.php │ │ │ ├── CaptchaRequiredException.php │ │ │ ├── Entry.php │ │ │ ├── Exception.php │ │ │ ├── Extension.php │ │ │ ├── Extension │ │ │ │ ├── Author.php │ │ │ │ ├── Category.php │ │ │ │ ├── Content.php │ │ │ │ ├── Contributor.php │ │ │ │ ├── Control.php │ │ │ │ ├── Draft.php │ │ │ │ ├── Edited.php │ │ │ │ ├── Element.php │ │ │ │ ├── Email.php │ │ │ │ ├── Generator.php │ │ │ │ ├── Icon.php │ │ │ │ ├── Id.php │ │ │ │ ├── Link.php │ │ │ │ ├── Logo.php │ │ │ │ ├── Name.php │ │ │ │ ├── Person.php │ │ │ │ ├── Published.php │ │ │ │ ├── Rights.php │ │ │ │ ├── Source.php │ │ │ │ ├── Subtitle.php │ │ │ │ ├── Summary.php │ │ │ │ ├── Text.php │ │ │ │ ├── Title.php │ │ │ │ ├── Updated.php │ │ │ │ └── Uri.php │ │ │ ├── Feed.php │ │ │ ├── FeedEntryParent.php │ │ │ ├── FeedSourceParent.php │ │ │ ├── HttpException.php │ │ │ ├── IOException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── LoggingHttpClientAdapterSocket.php │ │ │ ├── MediaEntry.php │ │ │ ├── MediaFileSource.php │ │ │ ├── MediaSource.php │ │ │ ├── Util.php │ │ │ └── VersionException.php │ │ ├── AuthSub.php │ │ ├── Books.php │ │ ├── Books │ │ │ ├── CollectionEntry.php │ │ │ ├── CollectionFeed.php │ │ │ ├── Extension │ │ │ │ ├── AnnotationLink.php │ │ │ │ ├── BooksCategory.php │ │ │ │ ├── BooksLink.php │ │ │ │ ├── Embeddability.php │ │ │ │ ├── InfoLink.php │ │ │ │ ├── PreviewLink.php │ │ │ │ ├── Review.php │ │ │ │ ├── ThumbnailLink.php │ │ │ │ └── Viewability.php │ │ │ ├── VolumeEntry.php │ │ │ ├── VolumeFeed.php │ │ │ └── VolumeQuery.php │ │ ├── Calendar.php │ │ ├── Calendar │ │ │ ├── EventEntry.php │ │ │ ├── EventFeed.php │ │ │ ├── EventQuery.php │ │ │ ├── Extension │ │ │ │ ├── AccessLevel.php │ │ │ │ ├── Color.php │ │ │ │ ├── Hidden.php │ │ │ │ ├── Link.php │ │ │ │ ├── QuickAdd.php │ │ │ │ ├── Selected.php │ │ │ │ ├── SendEventNotifications.php │ │ │ │ ├── Timezone.php │ │ │ │ └── WebContent.php │ │ │ ├── ListEntry.php │ │ │ └── ListFeed.php │ │ ├── ClientLogin.php │ │ ├── Docs.php │ │ ├── Docs │ │ │ ├── DocumentListEntry.php │ │ │ ├── DocumentListFeed.php │ │ │ └── Query.php │ │ ├── DublinCore.php │ │ ├── DublinCore │ │ │ └── Extension │ │ │ │ ├── Creator.php │ │ │ │ ├── Date.php │ │ │ │ ├── Description.php │ │ │ │ ├── Format.php │ │ │ │ ├── Identifier.php │ │ │ │ ├── Language.php │ │ │ │ ├── Publisher.php │ │ │ │ ├── Rights.php │ │ │ │ ├── Subject.php │ │ │ │ └── Title.php │ │ ├── Entry.php │ │ ├── Exif.php │ │ ├── Exif │ │ │ ├── Entry.php │ │ │ ├── Extension │ │ │ │ ├── Distance.php │ │ │ │ ├── Exposure.php │ │ │ │ ├── FStop.php │ │ │ │ ├── Flash.php │ │ │ │ ├── FocalLength.php │ │ │ │ ├── ImageUniqueId.php │ │ │ │ ├── Iso.php │ │ │ │ ├── Make.php │ │ │ │ ├── Model.php │ │ │ │ ├── Tags.php │ │ │ │ └── Time.php │ │ │ └── Feed.php │ │ ├── Extension.php │ │ ├── Extension │ │ │ ├── AttendeeStatus.php │ │ │ ├── AttendeeType.php │ │ │ ├── Comments.php │ │ │ ├── EntryLink.php │ │ │ ├── EventStatus.php │ │ │ ├── ExtendedProperty.php │ │ │ ├── FeedLink.php │ │ │ ├── OpenSearchItemsPerPage.php │ │ │ ├── OpenSearchStartIndex.php │ │ │ ├── OpenSearchTotalResults.php │ │ │ ├── OriginalEvent.php │ │ │ ├── Rating.php │ │ │ ├── Recurrence.php │ │ │ ├── RecurrenceException.php │ │ │ ├── Reminder.php │ │ │ ├── Transparency.php │ │ │ ├── Visibility.php │ │ │ ├── When.php │ │ │ ├── Where.php │ │ │ └── Who.php │ │ ├── Feed.php │ │ ├── Gapps.php │ │ ├── Gapps │ │ │ ├── EmailListEntry.php │ │ │ ├── EmailListFeed.php │ │ │ ├── EmailListQuery.php │ │ │ ├── EmailListRecipientEntry.php │ │ │ ├── EmailListRecipientFeed.php │ │ │ ├── EmailListRecipientQuery.php │ │ │ ├── Error.php │ │ │ ├── Extension │ │ │ │ ├── EmailList.php │ │ │ │ ├── Login.php │ │ │ │ ├── Name.php │ │ │ │ ├── Nickname.php │ │ │ │ └── Quota.php │ │ │ ├── NicknameEntry.php │ │ │ ├── NicknameFeed.php │ │ │ ├── NicknameQuery.php │ │ │ ├── Query.php │ │ │ ├── ServiceException.php │ │ │ ├── UserEntry.php │ │ │ ├── UserFeed.php │ │ │ └── UserQuery.php │ │ ├── Gbase.php │ │ ├── Gbase │ │ │ ├── Entry.php │ │ │ ├── Extension │ │ │ │ └── BaseAttribute.php │ │ │ ├── Feed.php │ │ │ ├── ItemEntry.php │ │ │ ├── ItemFeed.php │ │ │ ├── ItemQuery.php │ │ │ ├── Query.php │ │ │ ├── SnippetEntry.php │ │ │ ├── SnippetFeed.php │ │ │ └── SnippetQuery.php │ │ ├── Geo.php │ │ ├── Geo │ │ │ ├── Entry.php │ │ │ ├── Extension │ │ │ │ ├── GeoRssWhere.php │ │ │ │ ├── GmlPoint.php │ │ │ │ └── GmlPos.php │ │ │ └── Feed.php │ │ ├── Health.php │ │ ├── Health │ │ │ ├── Extension │ │ │ │ └── Ccr.php │ │ │ ├── ProfileEntry.php │ │ │ ├── ProfileFeed.php │ │ │ ├── ProfileListEntry.php │ │ │ ├── ProfileListFeed.php │ │ │ └── Query.php │ │ ├── HttpAdapterStreamingProxy.php │ │ ├── HttpAdapterStreamingSocket.php │ │ ├── HttpClient.php │ │ ├── Kind │ │ │ └── EventEntry.php │ │ ├── Media.php │ │ ├── Media │ │ │ ├── Entry.php │ │ │ ├── Extension │ │ │ │ ├── MediaCategory.php │ │ │ │ ├── MediaContent.php │ │ │ │ ├── MediaCopyright.php │ │ │ │ ├── MediaCredit.php │ │ │ │ ├── MediaDescription.php │ │ │ │ ├── MediaGroup.php │ │ │ │ ├── MediaHash.php │ │ │ │ ├── MediaKeywords.php │ │ │ │ ├── MediaPlayer.php │ │ │ │ ├── MediaRating.php │ │ │ │ ├── MediaRestriction.php │ │ │ │ ├── MediaText.php │ │ │ │ ├── MediaThumbnail.php │ │ │ │ └── MediaTitle.php │ │ │ └── Feed.php │ │ ├── MediaMimeStream.php │ │ ├── MimeBodyString.php │ │ ├── MimeFile.php │ │ ├── Photos.php │ │ ├── Photos │ │ │ ├── AlbumEntry.php │ │ │ ├── AlbumFeed.php │ │ │ ├── AlbumQuery.php │ │ │ ├── CommentEntry.php │ │ │ ├── Extension │ │ │ │ ├── Access.php │ │ │ │ ├── AlbumId.php │ │ │ │ ├── BytesUsed.php │ │ │ │ ├── Checksum.php │ │ │ │ ├── Client.php │ │ │ │ ├── CommentCount.php │ │ │ │ ├── CommentingEnabled.php │ │ │ │ ├── Height.php │ │ │ │ ├── Id.php │ │ │ │ ├── Location.php │ │ │ │ ├── MaxPhotosPerAlbum.php │ │ │ │ ├── Name.php │ │ │ │ ├── Nickname.php │ │ │ │ ├── NumPhotos.php │ │ │ │ ├── NumPhotosRemaining.php │ │ │ │ ├── PhotoId.php │ │ │ │ ├── Position.php │ │ │ │ ├── QuotaCurrent.php │ │ │ │ ├── QuotaLimit.php │ │ │ │ ├── Rotation.php │ │ │ │ ├── Size.php │ │ │ │ ├── Thumbnail.php │ │ │ │ ├── Timestamp.php │ │ │ │ ├── User.php │ │ │ │ ├── Version.php │ │ │ │ ├── Weight.php │ │ │ │ └── Width.php │ │ │ ├── PhotoEntry.php │ │ │ ├── PhotoFeed.php │ │ │ ├── PhotoQuery.php │ │ │ ├── TagEntry.php │ │ │ ├── UserEntry.php │ │ │ ├── UserFeed.php │ │ │ └── UserQuery.php │ │ ├── Query.php │ │ ├── Spreadsheets.php │ │ ├── Spreadsheets │ │ │ ├── CellEntry.php │ │ │ ├── CellFeed.php │ │ │ ├── CellQuery.php │ │ │ ├── DocumentQuery.php │ │ │ ├── Extension │ │ │ │ ├── Cell.php │ │ │ │ ├── ColCount.php │ │ │ │ ├── Custom.php │ │ │ │ └── RowCount.php │ │ │ ├── ListEntry.php │ │ │ ├── ListFeed.php │ │ │ ├── ListQuery.php │ │ │ ├── SpreadsheetEntry.php │ │ │ ├── SpreadsheetFeed.php │ │ │ ├── WorksheetEntry.php │ │ │ └── WorksheetFeed.php │ │ ├── YouTube.php │ │ └── YouTube │ │ │ ├── ActivityEntry.php │ │ │ ├── ActivityFeed.php │ │ │ ├── CommentEntry.php │ │ │ ├── CommentFeed.php │ │ │ ├── ContactEntry.php │ │ │ ├── ContactFeed.php │ │ │ ├── Extension │ │ │ ├── AboutMe.php │ │ │ ├── Age.php │ │ │ ├── Books.php │ │ │ ├── Company.php │ │ │ ├── Control.php │ │ │ ├── CountHint.php │ │ │ ├── Description.php │ │ │ ├── Duration.php │ │ │ ├── FirstName.php │ │ │ ├── Gender.php │ │ │ ├── Hobbies.php │ │ │ ├── Hometown.php │ │ │ ├── LastName.php │ │ │ ├── Link.php │ │ │ ├── Location.php │ │ │ ├── MediaContent.php │ │ │ ├── MediaCredit.php │ │ │ ├── MediaGroup.php │ │ │ ├── MediaRating.php │ │ │ ├── Movies.php │ │ │ ├── Music.php │ │ │ ├── NoEmbed.php │ │ │ ├── Occupation.php │ │ │ ├── PlaylistId.php │ │ │ ├── PlaylistTitle.php │ │ │ ├── Position.php │ │ │ ├── Private.php │ │ │ ├── QueryString.php │ │ │ ├── Racy.php │ │ │ ├── Recorded.php │ │ │ ├── Relationship.php │ │ │ ├── ReleaseDate.php │ │ │ ├── School.php │ │ │ ├── State.php │ │ │ ├── Statistics.php │ │ │ ├── Status.php │ │ │ ├── Token.php │ │ │ ├── Uploaded.php │ │ │ ├── Username.php │ │ │ └── VideoId.php │ │ │ ├── InboxEntry.php │ │ │ ├── InboxFeed.php │ │ │ ├── MediaEntry.php │ │ │ ├── PlaylistListEntry.php │ │ │ ├── PlaylistListFeed.php │ │ │ ├── PlaylistVideoEntry.php │ │ │ ├── PlaylistVideoFeed.php │ │ │ ├── SubscriptionEntry.php │ │ │ ├── SubscriptionFeed.php │ │ │ ├── UserProfileEntry.php │ │ │ ├── VideoEntry.php │ │ │ ├── VideoFeed.php │ │ │ └── VideoQuery.php │ ├── Http │ │ ├── Client.php │ │ ├── Client │ │ │ ├── Adapter │ │ │ │ ├── Curl.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Interface.php │ │ │ │ ├── Proxy.php │ │ │ │ ├── Socket.php │ │ │ │ ├── Stream.php │ │ │ │ └── Test.php │ │ │ └── Exception.php │ │ ├── Cookie.php │ │ ├── CookieJar.php │ │ ├── Exception.php │ │ ├── Response.php │ │ └── Response │ │ │ └── Stream.php │ ├── InfoCard.php │ ├── InfoCard │ │ ├── Adapter │ │ │ ├── Default.php │ │ │ ├── Exception.php │ │ │ └── Interface.php │ │ ├── Cipher.php │ │ ├── Cipher │ │ │ ├── Exception.php │ │ │ ├── Pki │ │ │ │ ├── Adapter │ │ │ │ │ ├── Abstract.php │ │ │ │ │ └── Rsa.php │ │ │ │ ├── Interface.php │ │ │ │ └── Rsa │ │ │ │ │ └── Interface.php │ │ │ └── Symmetric │ │ │ │ ├── Adapter │ │ │ │ ├── Abstract.php │ │ │ │ ├── Aes128cbc.php │ │ │ │ └── Aes256cbc.php │ │ │ │ ├── Aes128cbc │ │ │ │ └── Interface.php │ │ │ │ ├── Aes256cbc │ │ │ │ └── Interface.php │ │ │ │ └── Interface.php │ │ ├── Claims.php │ │ ├── Exception.php │ │ └── Xml │ │ │ ├── Assertion.php │ │ │ ├── Assertion │ │ │ ├── Interface.php │ │ │ └── Saml.php │ │ │ ├── Element.php │ │ │ ├── Element │ │ │ └── Interface.php │ │ │ ├── EncryptedData.php │ │ │ ├── EncryptedData │ │ │ ├── Abstract.php │ │ │ └── XmlEnc.php │ │ │ ├── EncryptedKey.php │ │ │ ├── Exception.php │ │ │ ├── KeyInfo.php │ │ │ ├── KeyInfo │ │ │ ├── Abstract.php │ │ │ ├── Default.php │ │ │ ├── Interface.php │ │ │ └── XmlDSig.php │ │ │ ├── Security.php │ │ │ ├── Security │ │ │ ├── Exception.php │ │ │ ├── Transform.php │ │ │ └── Transform │ │ │ │ ├── EnvelopedSignature.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Interface.php │ │ │ │ └── XmlExcC14N.php │ │ │ └── SecurityTokenReference.php │ ├── Json.php │ ├── Json │ │ ├── Decoder.php │ │ ├── Encoder.php │ │ ├── Exception.php │ │ ├── Expr.php │ │ ├── Server.php │ │ └── Server │ │ │ ├── Cache.php │ │ │ ├── Error.php │ │ │ ├── Exception.php │ │ │ ├── Request.php │ │ │ ├── Request │ │ │ └── Http.php │ │ │ ├── Response.php │ │ │ ├── Response │ │ │ └── Http.php │ │ │ ├── Smd.php │ │ │ └── Smd │ │ │ └── Service.php │ ├── Layout.php │ ├── Layout │ │ ├── Controller │ │ │ ├── Action │ │ │ │ └── Helper │ │ │ │ │ └── Layout.php │ │ │ └── Plugin │ │ │ │ └── Layout.php │ │ └── Exception.php │ ├── Ldap.php │ ├── Ldap │ │ ├── Attribute.php │ │ ├── Collection.php │ │ ├── Collection │ │ │ └── Iterator │ │ │ │ ├── Default.php │ │ │ │ └── Interface.php │ │ ├── Converter.php │ │ ├── Dn.php │ │ ├── Exception.php │ │ ├── Filter.php │ │ ├── Filter │ │ │ ├── Abstract.php │ │ │ ├── And.php │ │ │ ├── Exception.php │ │ │ ├── Logical.php │ │ │ ├── Mask.php │ │ │ ├── Not.php │ │ │ ├── Or.php │ │ │ └── String.php │ │ ├── Ldif │ │ │ └── Encoder.php │ │ ├── Node.php │ │ └── Node │ │ │ ├── Abstract.php │ │ │ ├── ChildrenIterator.php │ │ │ ├── Collection.php │ │ │ ├── RootDse.php │ │ │ ├── RootDse │ │ │ ├── ActiveDirectory.php │ │ │ ├── OpenLdap.php │ │ │ └── eDirectory.php │ │ │ ├── Schema.php │ │ │ └── Schema │ │ │ ├── ActiveDirectory.php │ │ │ ├── AttributeType │ │ │ ├── ActiveDirectory.php │ │ │ ├── Interface.php │ │ │ └── OpenLdap.php │ │ │ ├── Item.php │ │ │ ├── ObjectClass │ │ │ ├── ActiveDirectory.php │ │ │ ├── Interface.php │ │ │ └── OpenLdap.php │ │ │ └── OpenLdap.php │ ├── Loader.php │ ├── Loader │ │ ├── Autoloader.php │ │ ├── Autoloader │ │ │ ├── Interface.php │ │ │ └── Resource.php │ │ ├── Exception.php │ │ ├── PluginLoader.php │ │ └── PluginLoader │ │ │ ├── Exception.php │ │ │ └── Interface.php │ ├── Locale.php │ ├── Locale │ │ ├── Data.php │ │ ├── Data │ │ │ ├── Translation.php │ │ │ ├── aa.xml │ │ │ ├── aa_DJ.xml │ │ │ ├── aa_ER.xml │ │ │ ├── aa_ER_SAAHO.xml │ │ │ ├── aa_ET.xml │ │ │ ├── af.xml │ │ │ ├── af_NA.xml │ │ │ ├── af_ZA.xml │ │ │ ├── ak.xml │ │ │ ├── ak_GH.xml │ │ │ ├── am.xml │ │ │ ├── am_ET.xml │ │ │ ├── ar.xml │ │ │ ├── ar_AE.xml │ │ │ ├── ar_BH.xml │ │ │ ├── ar_DZ.xml │ │ │ ├── ar_EG.xml │ │ │ ├── ar_IQ.xml │ │ │ ├── ar_JO.xml │ │ │ ├── ar_KW.xml │ │ │ ├── ar_LB.xml │ │ │ ├── ar_LY.xml │ │ │ ├── ar_MA.xml │ │ │ ├── ar_OM.xml │ │ │ ├── ar_QA.xml │ │ │ ├── ar_SA.xml │ │ │ ├── ar_SD.xml │ │ │ ├── ar_SY.xml │ │ │ ├── ar_TN.xml │ │ │ ├── ar_YE.xml │ │ │ ├── as.xml │ │ │ ├── as_IN.xml │ │ │ ├── az.xml │ │ │ ├── az_AZ.xml │ │ │ ├── az_Cyrl.xml │ │ │ ├── az_Cyrl_AZ.xml │ │ │ ├── az_Latn.xml │ │ │ ├── az_Latn_AZ.xml │ │ │ ├── be.xml │ │ │ ├── be_BY.xml │ │ │ ├── bg.xml │ │ │ ├── bg_BG.xml │ │ │ ├── bn.xml │ │ │ ├── bn_BD.xml │ │ │ ├── bn_IN.xml │ │ │ ├── bo.xml │ │ │ ├── bo_CN.xml │ │ │ ├── bo_IN.xml │ │ │ ├── bs.xml │ │ │ ├── bs_BA.xml │ │ │ ├── byn.xml │ │ │ ├── byn_ER.xml │ │ │ ├── ca.xml │ │ │ ├── ca_ES.xml │ │ │ ├── cch.xml │ │ │ ├── cch_NG.xml │ │ │ ├── characters.xml │ │ │ ├── cop.xml │ │ │ ├── cs.xml │ │ │ ├── cs_CZ.xml │ │ │ ├── cy.xml │ │ │ ├── cy_GB.xml │ │ │ ├── da.xml │ │ │ ├── da_DK.xml │ │ │ ├── de.xml │ │ │ ├── de_AT.xml │ │ │ ├── de_BE.xml │ │ │ ├── de_CH.xml │ │ │ ├── de_DE.xml │ │ │ ├── de_LI.xml │ │ │ ├── de_LU.xml │ │ │ ├── dv.xml │ │ │ ├── dv_MV.xml │ │ │ ├── dz.xml │ │ │ ├── dz_BT.xml │ │ │ ├── ee.xml │ │ │ ├── ee_GH.xml │ │ │ ├── ee_TG.xml │ │ │ ├── el.xml │ │ │ ├── el_CY.xml │ │ │ ├── el_GR.xml │ │ │ ├── el_POLYTON.xml │ │ │ ├── en.xml │ │ │ ├── en_AS.xml │ │ │ ├── en_AU.xml │ │ │ ├── en_BE.xml │ │ │ ├── en_BW.xml │ │ │ ├── en_BZ.xml │ │ │ ├── en_CA.xml │ │ │ ├── en_Dsrt.xml │ │ │ ├── en_Dsrt_US.xml │ │ │ ├── en_GB.xml │ │ │ ├── en_GU.xml │ │ │ ├── en_HK.xml │ │ │ ├── en_IE.xml │ │ │ ├── en_IN.xml │ │ │ ├── en_JM.xml │ │ │ ├── en_MH.xml │ │ │ ├── en_MP.xml │ │ │ ├── en_MT.xml │ │ │ ├── en_NA.xml │ │ │ ├── en_NZ.xml │ │ │ ├── en_PH.xml │ │ │ ├── en_PK.xml │ │ │ ├── en_SG.xml │ │ │ ├── en_Shaw.xml │ │ │ ├── en_TT.xml │ │ │ ├── en_UM.xml │ │ │ ├── en_US.xml │ │ │ ├── en_US_POSIX.xml │ │ │ ├── en_VI.xml │ │ │ ├── en_ZA.xml │ │ │ ├── en_ZW.xml │ │ │ ├── eo.xml │ │ │ ├── es.xml │ │ │ ├── es_AR.xml │ │ │ ├── es_BO.xml │ │ │ ├── es_CL.xml │ │ │ ├── es_CO.xml │ │ │ ├── es_CR.xml │ │ │ ├── es_DO.xml │ │ │ ├── es_EC.xml │ │ │ ├── es_ES.xml │ │ │ ├── es_GT.xml │ │ │ ├── es_HN.xml │ │ │ ├── es_MX.xml │ │ │ ├── es_NI.xml │ │ │ ├── es_PA.xml │ │ │ ├── es_PE.xml │ │ │ ├── es_PR.xml │ │ │ ├── es_PY.xml │ │ │ ├── es_SV.xml │ │ │ ├── es_US.xml │ │ │ ├── es_UY.xml │ │ │ ├── es_VE.xml │ │ │ ├── et.xml │ │ │ ├── et_EE.xml │ │ │ ├── eu.xml │ │ │ ├── eu_ES.xml │ │ │ ├── fa.xml │ │ │ ├── fa_AF.xml │ │ │ ├── fa_IR.xml │ │ │ ├── fi.xml │ │ │ ├── fi_FI.xml │ │ │ ├── fil.xml │ │ │ ├── fil_PH.xml │ │ │ ├── fo.xml │ │ │ ├── fo_FO.xml │ │ │ ├── fr.xml │ │ │ ├── fr_BE.xml │ │ │ ├── fr_CA.xml │ │ │ ├── fr_CH.xml │ │ │ ├── fr_FR.xml │ │ │ ├── fr_LU.xml │ │ │ ├── fr_MC.xml │ │ │ ├── fr_SN.xml │ │ │ ├── fur.xml │ │ │ ├── fur_IT.xml │ │ │ ├── ga.xml │ │ │ ├── ga_IE.xml │ │ │ ├── gaa.xml │ │ │ ├── gaa_GH.xml │ │ │ ├── gez.xml │ │ │ ├── gez_ER.xml │ │ │ ├── gez_ET.xml │ │ │ ├── gl.xml │ │ │ ├── gl_ES.xml │ │ │ ├── gsw.xml │ │ │ ├── gsw_CH.xml │ │ │ ├── gu.xml │ │ │ ├── gu_IN.xml │ │ │ ├── gv.xml │ │ │ ├── gv_GB.xml │ │ │ ├── ha.xml │ │ │ ├── ha_Arab.xml │ │ │ ├── ha_Arab_NG.xml │ │ │ ├── ha_Arab_SD.xml │ │ │ ├── ha_GH.xml │ │ │ ├── ha_Latn.xml │ │ │ ├── ha_Latn_GH.xml │ │ │ ├── ha_Latn_NE.xml │ │ │ ├── ha_Latn_NG.xml │ │ │ ├── ha_NE.xml │ │ │ ├── ha_NG.xml │ │ │ ├── ha_SD.xml │ │ │ ├── haw.xml │ │ │ ├── haw_US.xml │ │ │ ├── he.xml │ │ │ ├── he_IL.xml │ │ │ ├── hi.xml │ │ │ ├── hi_IN.xml │ │ │ ├── hr.xml │ │ │ ├── hr_HR.xml │ │ │ ├── hu.xml │ │ │ ├── hu_HU.xml │ │ │ ├── hy.xml │ │ │ ├── hy_AM.xml │ │ │ ├── hy_AM_REVISED.xml │ │ │ ├── ia.xml │ │ │ ├── id.xml │ │ │ ├── id_ID.xml │ │ │ ├── ig.xml │ │ │ ├── ig_NG.xml │ │ │ ├── ii.xml │ │ │ ├── ii_CN.xml │ │ │ ├── in.xml │ │ │ ├── is.xml │ │ │ ├── is_IS.xml │ │ │ ├── it.xml │ │ │ ├── it_CH.xml │ │ │ ├── it_IT.xml │ │ │ ├── iu.xml │ │ │ ├── iw.xml │ │ │ ├── ja.xml │ │ │ ├── ja_JP.xml │ │ │ ├── ka.xml │ │ │ ├── ka_GE.xml │ │ │ ├── kaj.xml │ │ │ ├── kaj_NG.xml │ │ │ ├── kam.xml │ │ │ ├── kam_KE.xml │ │ │ ├── kcg.xml │ │ │ ├── kcg_NG.xml │ │ │ ├── kfo.xml │ │ │ ├── kfo_CI.xml │ │ │ ├── kk.xml │ │ │ ├── kk_Cyrl.xml │ │ │ ├── kk_Cyrl_KZ.xml │ │ │ ├── kk_KZ.xml │ │ │ ├── kl.xml │ │ │ ├── kl_GL.xml │ │ │ ├── km.xml │ │ │ ├── km_KH.xml │ │ │ ├── kn.xml │ │ │ ├── kn_IN.xml │ │ │ ├── ko.xml │ │ │ ├── ko_KR.xml │ │ │ ├── kok.xml │ │ │ ├── kok_IN.xml │ │ │ ├── kpe.xml │ │ │ ├── kpe_GN.xml │ │ │ ├── kpe_LR.xml │ │ │ ├── ku.xml │ │ │ ├── ku_Arab.xml │ │ │ ├── ku_Arab_IQ.xml │ │ │ ├── ku_Arab_IR.xml │ │ │ ├── ku_Arab_SY.xml │ │ │ ├── ku_IQ.xml │ │ │ ├── ku_IR.xml │ │ │ ├── ku_Latn.xml │ │ │ ├── ku_Latn_TR.xml │ │ │ ├── ku_SY.xml │ │ │ ├── ku_TR.xml │ │ │ ├── kw.xml │ │ │ ├── kw_GB.xml │ │ │ ├── ky.xml │ │ │ ├── ky_KG.xml │ │ │ ├── likelySubtags.xml │ │ │ ├── ln.xml │ │ │ ├── ln_CD.xml │ │ │ ├── ln_CG.xml │ │ │ ├── lo.xml │ │ │ ├── lo_LA.xml │ │ │ ├── lt.xml │ │ │ ├── lt_LT.xml │ │ │ ├── lv.xml │ │ │ ├── lv_LV.xml │ │ │ ├── metazoneInfo.xml │ │ │ ├── mk.xml │ │ │ ├── mk_MK.xml │ │ │ ├── ml.xml │ │ │ ├── ml_IN.xml │ │ │ ├── mn.xml │ │ │ ├── mn_CN.xml │ │ │ ├── mn_Cyrl.xml │ │ │ ├── mn_Cyrl_MN.xml │ │ │ ├── mn_MN.xml │ │ │ ├── mn_Mong.xml │ │ │ ├── mn_Mong_CN.xml │ │ │ ├── mo.xml │ │ │ ├── mr.xml │ │ │ ├── mr_IN.xml │ │ │ ├── ms.xml │ │ │ ├── ms_BN.xml │ │ │ ├── ms_MY.xml │ │ │ ├── mt.xml │ │ │ ├── mt_MT.xml │ │ │ ├── my.xml │ │ │ ├── my_MM.xml │ │ │ ├── nb.xml │ │ │ ├── nb_NO.xml │ │ │ ├── nds.xml │ │ │ ├── nds_DE.xml │ │ │ ├── ne.xml │ │ │ ├── ne_IN.xml │ │ │ ├── ne_NP.xml │ │ │ ├── nl.xml │ │ │ ├── nl_BE.xml │ │ │ ├── nl_NL.xml │ │ │ ├── nn.xml │ │ │ ├── nn_NO.xml │ │ │ ├── no.xml │ │ │ ├── nr.xml │ │ │ ├── nr_ZA.xml │ │ │ ├── nso.xml │ │ │ ├── nso_ZA.xml │ │ │ ├── numberingSystems.xml │ │ │ ├── ny.xml │ │ │ ├── ny_MW.xml │ │ │ ├── oc.xml │ │ │ ├── oc_FR.xml │ │ │ ├── om.xml │ │ │ ├── om_ET.xml │ │ │ ├── om_KE.xml │ │ │ ├── or.xml │ │ │ ├── or_IN.xml │ │ │ ├── pa.xml │ │ │ ├── pa_Arab.xml │ │ │ ├── pa_Arab_PK.xml │ │ │ ├── pa_Guru.xml │ │ │ ├── pa_Guru_IN.xml │ │ │ ├── pa_IN.xml │ │ │ ├── pa_PK.xml │ │ │ ├── pl.xml │ │ │ ├── pl_PL.xml │ │ │ ├── postalCodeData.xml │ │ │ ├── ps.xml │ │ │ ├── ps_AF.xml │ │ │ ├── pt.xml │ │ │ ├── pt_BR.xml │ │ │ ├── pt_PT.xml │ │ │ ├── ro.xml │ │ │ ├── ro_MD.xml │ │ │ ├── ro_RO.xml │ │ │ ├── root.xml │ │ │ ├── ru.xml │ │ │ ├── ru_RU.xml │ │ │ ├── ru_UA.xml │ │ │ ├── rw.xml │ │ │ ├── rw_RW.xml │ │ │ ├── sa.xml │ │ │ ├── sa_IN.xml │ │ │ ├── se.xml │ │ │ ├── se_FI.xml │ │ │ ├── se_NO.xml │ │ │ ├── sh.xml │ │ │ ├── sh_BA.xml │ │ │ ├── sh_CS.xml │ │ │ ├── sh_YU.xml │ │ │ ├── si.xml │ │ │ ├── si_LK.xml │ │ │ ├── sid.xml │ │ │ ├── sid_ET.xml │ │ │ ├── sk.xml │ │ │ ├── sk_SK.xml │ │ │ ├── sl.xml │ │ │ ├── sl_SI.xml │ │ │ ├── so.xml │ │ │ ├── so_DJ.xml │ │ │ ├── so_ET.xml │ │ │ ├── so_KE.xml │ │ │ ├── so_SO.xml │ │ │ ├── sq.xml │ │ │ ├── sq_AL.xml │ │ │ ├── sr.xml │ │ │ ├── sr_BA.xml │ │ │ ├── sr_CS.xml │ │ │ ├── sr_Cyrl.xml │ │ │ ├── sr_Cyrl_BA.xml │ │ │ ├── sr_Cyrl_CS.xml │ │ │ ├── sr_Cyrl_ME.xml │ │ │ ├── sr_Cyrl_RS.xml │ │ │ ├── sr_Cyrl_YU.xml │ │ │ ├── sr_Latn.xml │ │ │ ├── sr_Latn_BA.xml │ │ │ ├── sr_Latn_CS.xml │ │ │ ├── sr_Latn_ME.xml │ │ │ ├── sr_Latn_RS.xml │ │ │ ├── sr_Latn_YU.xml │ │ │ ├── sr_ME.xml │ │ │ ├── sr_RS.xml │ │ │ ├── sr_YU.xml │ │ │ ├── ss.xml │ │ │ ├── ss_SZ.xml │ │ │ ├── ss_ZA.xml │ │ │ ├── st.xml │ │ │ ├── st_LS.xml │ │ │ ├── st_ZA.xml │ │ │ ├── supplementalData.xml │ │ │ ├── sv.xml │ │ │ ├── sv_FI.xml │ │ │ ├── sv_SE.xml │ │ │ ├── sw.xml │ │ │ ├── sw_KE.xml │ │ │ ├── sw_TZ.xml │ │ │ ├── syr.xml │ │ │ ├── syr_SY.xml │ │ │ ├── ta.xml │ │ │ ├── ta_IN.xml │ │ │ ├── te.xml │ │ │ ├── te_IN.xml │ │ │ ├── telephoneCodeData.xml │ │ │ ├── tg.xml │ │ │ ├── tg_Cyrl.xml │ │ │ ├── tg_Cyrl_TJ.xml │ │ │ ├── tg_TJ.xml │ │ │ ├── th.xml │ │ │ ├── th_TH.xml │ │ │ ├── ti.xml │ │ │ ├── ti_ER.xml │ │ │ ├── ti_ET.xml │ │ │ ├── tig.xml │ │ │ ├── tig_ER.xml │ │ │ ├── tl.xml │ │ │ ├── tn.xml │ │ │ ├── tn_ZA.xml │ │ │ ├── to.xml │ │ │ ├── to_TO.xml │ │ │ ├── tr.xml │ │ │ ├── tr_TR.xml │ │ │ ├── trv.xml │ │ │ ├── trv_TW.xml │ │ │ ├── ts.xml │ │ │ ├── ts_ZA.xml │ │ │ ├── tt.xml │ │ │ ├── tt_RU.xml │ │ │ ├── ug.xml │ │ │ ├── ug_Arab.xml │ │ │ ├── ug_Arab_CN.xml │ │ │ ├── ug_CN.xml │ │ │ ├── uk.xml │ │ │ ├── uk_UA.xml │ │ │ ├── ur.xml │ │ │ ├── ur_IN.xml │ │ │ ├── ur_PK.xml │ │ │ ├── uz.xml │ │ │ ├── uz_AF.xml │ │ │ ├── uz_Arab.xml │ │ │ ├── uz_Arab_AF.xml │ │ │ ├── uz_Cyrl.xml │ │ │ ├── uz_Cyrl_UZ.xml │ │ │ ├── uz_Latn.xml │ │ │ ├── uz_Latn_UZ.xml │ │ │ ├── uz_UZ.xml │ │ │ ├── ve.xml │ │ │ ├── ve_ZA.xml │ │ │ ├── vi.xml │ │ │ ├── vi_VN.xml │ │ │ ├── wal.xml │ │ │ ├── wal_ET.xml │ │ │ ├── wo.xml │ │ │ ├── wo_Latn.xml │ │ │ ├── wo_Latn_SN.xml │ │ │ ├── wo_SN.xml │ │ │ ├── xh.xml │ │ │ ├── xh_ZA.xml │ │ │ ├── yo.xml │ │ │ ├── yo_NG.xml │ │ │ ├── zh.xml │ │ │ ├── zh_CN.xml │ │ │ ├── zh_HK.xml │ │ │ ├── zh_Hans.xml │ │ │ ├── zh_Hans_CN.xml │ │ │ ├── zh_Hans_HK.xml │ │ │ ├── zh_Hans_MO.xml │ │ │ ├── zh_Hans_SG.xml │ │ │ ├── zh_Hant.xml │ │ │ ├── zh_Hant_HK.xml │ │ │ ├── zh_Hant_MO.xml │ │ │ ├── zh_Hant_TW.xml │ │ │ ├── zh_MO.xml │ │ │ ├── zh_SG.xml │ │ │ ├── zh_TW.xml │ │ │ ├── zu.xml │ │ │ └── zu_ZA.xml │ │ ├── Exception.php │ │ ├── Format.php │ │ ├── Math.php │ │ └── Math │ │ │ ├── Exception.php │ │ │ └── PhpMath.php │ ├── Log.php │ ├── Log │ │ ├── Exception.php │ │ ├── Filter │ │ │ ├── Interface.php │ │ │ ├── Message.php │ │ │ ├── Priority.php │ │ │ └── Suppress.php │ │ ├── Formatter │ │ │ ├── Firebug.php │ │ │ ├── Interface.php │ │ │ ├── Simple.php │ │ │ └── Xml.php │ │ └── Writer │ │ │ ├── Abstract.php │ │ │ ├── Db.php │ │ │ ├── Firebug.php │ │ │ ├── Mail.php │ │ │ ├── Mock.php │ │ │ ├── Null.php │ │ │ ├── Stream.php │ │ │ └── Syslog.php │ ├── Mail.php │ ├── Mail │ │ ├── Exception.php │ │ ├── Message.php │ │ ├── Message │ │ │ ├── File.php │ │ │ └── Interface.php │ │ ├── Part.php │ │ ├── Part │ │ │ ├── File.php │ │ │ └── Interface.php │ │ ├── Protocol │ │ │ ├── Abstract.php │ │ │ ├── Exception.php │ │ │ ├── Imap.php │ │ │ ├── Pop3.php │ │ │ ├── Smtp.php │ │ │ └── Smtp │ │ │ │ └── Auth │ │ │ │ ├── Crammd5.php │ │ │ │ ├── Login.php │ │ │ │ └── Plain.php │ │ ├── Storage.php │ │ ├── Storage │ │ │ ├── Abstract.php │ │ │ ├── Exception.php │ │ │ ├── Folder.php │ │ │ ├── Folder │ │ │ │ ├── Interface.php │ │ │ │ ├── Maildir.php │ │ │ │ └── Mbox.php │ │ │ ├── Imap.php │ │ │ ├── Maildir.php │ │ │ ├── Mbox.php │ │ │ ├── Pop3.php │ │ │ └── Writable │ │ │ │ ├── Interface.php │ │ │ │ └── Maildir.php │ │ └── Transport │ │ │ ├── Abstract.php │ │ │ ├── Exception.php │ │ │ ├── Sendmail.php │ │ │ └── Smtp.php │ ├── Measure │ │ ├── Abstract.php │ │ ├── Acceleration.php │ │ ├── Angle.php │ │ ├── Area.php │ │ ├── Binary.php │ │ ├── Capacitance.php │ │ ├── Cooking │ │ │ ├── Volume.php │ │ │ └── Weight.php │ │ ├── Current.php │ │ ├── Density.php │ │ ├── Energy.php │ │ ├── Exception.php │ │ ├── Flow │ │ │ ├── Mass.php │ │ │ ├── Mole.php │ │ │ └── Volume.php │ │ ├── Force.php │ │ ├── Frequency.php │ │ ├── Illumination.php │ │ ├── Length.php │ │ ├── Lightness.php │ │ ├── Number.php │ │ ├── Power.php │ │ ├── Pressure.php │ │ ├── Speed.php │ │ ├── Temperature.php │ │ ├── Time.php │ │ ├── Torque.php │ │ ├── Viscosity │ │ │ ├── Dynamic.php │ │ │ └── Kinematic.php │ │ ├── Volume.php │ │ └── Weight.php │ ├── Memory.php │ ├── Memory │ │ ├── AccessController.php │ │ ├── Container.php │ │ ├── Container │ │ │ ├── Interface.php │ │ │ ├── Locked.php │ │ │ └── Movable.php │ │ ├── Exception.php │ │ ├── Manager.php │ │ └── Value.php │ ├── Mime.php │ ├── Mime │ │ ├── Decode.php │ │ ├── Exception.php │ │ ├── Message.php │ │ └── Part.php │ ├── Navigation.php │ ├── Navigation │ │ ├── Container.php │ │ ├── Exception.php │ │ ├── Page.php │ │ └── Page │ │ │ ├── Mvc.php │ │ │ └── Uri.php │ ├── OpenId.php │ ├── OpenId │ │ ├── Consumer.php │ │ ├── Consumer │ │ │ ├── Storage.php │ │ │ └── Storage │ │ │ │ └── File.php │ │ ├── Exception.php │ │ ├── Extension.php │ │ ├── Extension │ │ │ └── Sreg.php │ │ ├── Provider.php │ │ └── Provider │ │ │ ├── Storage.php │ │ │ ├── Storage │ │ │ └── File.php │ │ │ ├── User.php │ │ │ └── User │ │ │ └── Session.php │ ├── Paginator.php │ ├── Paginator │ │ ├── Adapter │ │ │ ├── Array.php │ │ │ ├── DbSelect.php │ │ │ ├── DbTableSelect.php │ │ │ ├── Interface.php │ │ │ ├── Iterator.php │ │ │ └── Null.php │ │ ├── AdapterAggregate.php │ │ ├── Exception.php │ │ ├── ScrollingStyle │ │ │ ├── All.php │ │ │ ├── Elastic.php │ │ │ ├── Interface.php │ │ │ ├── Jumping.php │ │ │ └── Sliding.php │ │ └── SerializableLimitIterator.php │ ├── Pdf.php │ ├── Pdf │ │ ├── .Page.php.swp │ │ ├── Action.php │ │ ├── Action │ │ │ ├── GoTo.php │ │ │ ├── GoTo3DView.php │ │ │ ├── GoToE.php │ │ │ ├── GoToR.php │ │ │ ├── Hide.php │ │ │ ├── ImportData.php │ │ │ ├── JavaScript.php │ │ │ ├── Launch.php │ │ │ ├── Movie.php │ │ │ ├── Named.php │ │ │ ├── Rendition.php │ │ │ ├── ResetForm.php │ │ │ ├── SetOCGState.php │ │ │ ├── Sound.php │ │ │ ├── SubmitForm.php │ │ │ ├── Thread.php │ │ │ ├── Trans.php │ │ │ ├── URI.php │ │ │ └── Unknown.php │ │ ├── Annotation.php │ │ ├── Annotation │ │ │ ├── FileAttachment.php │ │ │ ├── Link.php │ │ │ ├── Markup.php │ │ │ └── Text.php │ │ ├── Cmap.php │ │ ├── Cmap │ │ │ ├── ByteEncoding.php │ │ │ ├── ByteEncoding │ │ │ │ └── Static.php │ │ │ ├── SegmentToDelta.php │ │ │ └── TrimmedTable.php │ │ ├── Color.php │ │ ├── Color │ │ │ ├── Cmyk.php │ │ │ ├── GrayScale.php │ │ │ ├── Html.php │ │ │ └── Rgb.php │ │ ├── Destination.php │ │ ├── Destination │ │ │ ├── Explicit.php │ │ │ ├── Fit.php │ │ │ ├── FitBoundingBox.php │ │ │ ├── FitBoundingBoxHorizontally.php │ │ │ ├── FitBoundingBoxVertically.php │ │ │ ├── FitHorizontally.php │ │ │ ├── FitRectangle.php │ │ │ ├── FitVertically.php │ │ │ ├── Named.php │ │ │ ├── Unknown.php │ │ │ └── Zoom.php │ │ ├── Element.php │ │ ├── Element │ │ │ ├── Array.php │ │ │ ├── Boolean.php │ │ │ ├── Dictionary.php │ │ │ ├── Name.php │ │ │ ├── Null.php │ │ │ ├── Numeric.php │ │ │ ├── Object.php │ │ │ ├── Object │ │ │ │ └── Stream.php │ │ │ ├── Reference.php │ │ │ ├── Reference │ │ │ │ ├── Context.php │ │ │ │ └── Table.php │ │ │ ├── Stream.php │ │ │ ├── String.php │ │ │ └── String │ │ │ │ └── Binary.php │ │ ├── ElementFactory.php │ │ ├── ElementFactory │ │ │ ├── Interface.php │ │ │ └── Proxy.php │ │ ├── Exception.php │ │ ├── FileParser.php │ │ ├── FileParser │ │ │ ├── Font.php │ │ │ ├── Font │ │ │ │ ├── OpenType.php │ │ │ │ └── OpenType │ │ │ │ │ └── TrueType.php │ │ │ ├── Image.php │ │ │ └── Image │ │ │ │ └── Png.php │ │ ├── FileParserDataSource.php │ │ ├── FileParserDataSource │ │ │ ├── File.php │ │ │ └── String.php │ │ ├── Filter │ │ │ ├── Ascii85.php │ │ │ ├── AsciiHex.php │ │ │ ├── Compression.php │ │ │ ├── Compression │ │ │ │ ├── Flate.php │ │ │ │ └── Lzw.php │ │ │ ├── Interface.php │ │ │ └── RunLength.php │ │ ├── Font.php │ │ ├── Image.php │ │ ├── NameTree.php │ │ ├── Outline.php │ │ ├── Outline │ │ │ ├── Created.php │ │ │ └── Loaded.php │ │ ├── Page.php │ │ ├── Parser.php │ │ ├── RecursivelyIteratableObjectsContainer.php │ │ ├── Resource.php │ │ ├── Resource │ │ │ ├── Font.php │ │ │ ├── Font │ │ │ │ ├── CidFont.php │ │ │ │ ├── CidFont │ │ │ │ │ └── TrueType.php │ │ │ │ ├── Extracted.php │ │ │ │ ├── FontDescriptor.php │ │ │ │ ├── Simple.php │ │ │ │ ├── Simple │ │ │ │ │ ├── Parsed.php │ │ │ │ │ ├── Parsed │ │ │ │ │ │ └── TrueType.php │ │ │ │ │ ├── Standard.php │ │ │ │ │ └── Standard │ │ │ │ │ │ ├── Courier.php │ │ │ │ │ │ ├── CourierBold.php │ │ │ │ │ │ ├── CourierBoldOblique.php │ │ │ │ │ │ ├── CourierOblique.php │ │ │ │ │ │ ├── Helvetica.php │ │ │ │ │ │ ├── HelveticaBold.php │ │ │ │ │ │ ├── HelveticaBoldOblique.php │ │ │ │ │ │ ├── HelveticaOblique.php │ │ │ │ │ │ ├── Symbol.php │ │ │ │ │ │ ├── TimesBold.php │ │ │ │ │ │ ├── TimesBoldItalic.php │ │ │ │ │ │ ├── TimesItalic.php │ │ │ │ │ │ ├── TimesRoman.php │ │ │ │ │ │ └── ZapfDingbats.php │ │ │ │ └── Type0.php │ │ │ ├── Image.php │ │ │ ├── Image │ │ │ │ ├── Jpeg.php │ │ │ │ ├── Png.php │ │ │ │ └── Tiff.php │ │ │ └── ImageFactory.php │ │ ├── StringParser.php │ │ ├── Style.php │ │ ├── Target.php │ │ ├── Trailer.php │ │ ├── Trailer │ │ │ ├── Generator.php │ │ │ └── Keeper.php │ │ └── UpdateInfoContainer.php │ ├── ProgressBar.php │ ├── ProgressBar │ │ ├── Adapter.php │ │ ├── Adapter │ │ │ ├── Console.php │ │ │ ├── Exception.php │ │ │ ├── JsPull.php │ │ │ └── JsPush.php │ │ └── Exception.php │ ├── Queue.php │ ├── Queue │ │ ├── Adapter │ │ │ ├── Activemq.php │ │ │ ├── AdapterAbstract.php │ │ │ ├── AdapterInterface.php │ │ │ ├── Array.php │ │ │ ├── Db.php │ │ │ ├── Db │ │ │ │ ├── Message.php │ │ │ │ ├── Queue.php │ │ │ │ ├── mysql.sql │ │ │ │ ├── postgresql.sql │ │ │ │ └── queue_sqlite.php │ │ │ ├── Memcacheq.php │ │ │ ├── Null.php │ │ │ └── PlatformJobQueue.php │ │ ├── Exception.php │ │ ├── Message.php │ │ ├── Message │ │ │ ├── Iterator.php │ │ │ └── PlatformJob.php │ │ └── Stomp │ │ │ ├── Client.php │ │ │ ├── Client │ │ │ ├── Connection.php │ │ │ └── ConnectionInterface.php │ │ │ ├── Frame.php │ │ │ └── FrameInterface.php │ ├── Reflection │ │ ├── Class.php │ │ ├── Docblock.php │ │ ├── Docblock │ │ │ ├── Tag.php │ │ │ └── Tag │ │ │ │ ├── Param.php │ │ │ │ └── Return.php │ │ ├── Exception.php │ │ ├── Extension.php │ │ ├── File.php │ │ ├── Function.php │ │ ├── Method.php │ │ ├── Parameter.php │ │ └── Property.php │ ├── Registry.php │ ├── Rest │ │ ├── Client.php │ │ ├── Client │ │ │ ├── Exception.php │ │ │ ├── Result.php │ │ │ └── Result │ │ │ │ └── Exception.php │ │ ├── Controller.php │ │ ├── Exception.php │ │ ├── Route.php │ │ ├── Server.php │ │ └── Server │ │ │ └── Exception.php │ ├── Search │ │ ├── Exception.php │ │ ├── Lucene.php │ │ └── Lucene │ │ │ ├── Analysis │ │ │ ├── Analyzer.php │ │ │ ├── Analyzer │ │ │ │ ├── Common.php │ │ │ │ └── Common │ │ │ │ │ ├── Text.php │ │ │ │ │ ├── Text │ │ │ │ │ └── CaseInsensitive.php │ │ │ │ │ ├── TextNum.php │ │ │ │ │ ├── TextNum │ │ │ │ │ └── CaseInsensitive.php │ │ │ │ │ ├── Utf8.php │ │ │ │ │ ├── Utf8 │ │ │ │ │ └── CaseInsensitive.php │ │ │ │ │ ├── Utf8Num.php │ │ │ │ │ └── Utf8Num │ │ │ │ │ └── CaseInsensitive.php │ │ │ ├── Token.php │ │ │ ├── TokenFilter.php │ │ │ └── TokenFilter │ │ │ │ ├── LowerCase.php │ │ │ │ ├── LowerCaseUtf8.php │ │ │ │ ├── ShortWords.php │ │ │ │ └── StopWords.php │ │ │ ├── Document.php │ │ │ ├── Document │ │ │ ├── Docx.php │ │ │ ├── Exception.php │ │ │ ├── Html.php │ │ │ ├── OpenXml.php │ │ │ ├── Pptx.php │ │ │ └── Xlsx.php │ │ │ ├── Exception.php │ │ │ ├── FSM.php │ │ │ ├── FSMAction.php │ │ │ ├── Field.php │ │ │ ├── Index │ │ │ ├── DictionaryLoader.php │ │ │ ├── DocsFilter.php │ │ │ ├── FieldInfo.php │ │ │ ├── SegmentInfo.php │ │ │ ├── SegmentMerger.php │ │ │ ├── SegmentWriter.php │ │ │ ├── SegmentWriter │ │ │ │ ├── DocumentWriter.php │ │ │ │ └── StreamWriter.php │ │ │ ├── Term.php │ │ │ ├── TermInfo.php │ │ │ ├── TermsPriorityQueue.php │ │ │ ├── TermsStream │ │ │ │ └── Interface.php │ │ │ └── Writer.php │ │ │ ├── Interface.php │ │ │ ├── LockManager.php │ │ │ ├── MultiSearcher.php │ │ │ ├── PriorityQueue.php │ │ │ ├── Proxy.php │ │ │ ├── Search │ │ │ ├── BooleanExpressionRecognizer.php │ │ │ ├── Highlighter │ │ │ │ ├── Default.php │ │ │ │ └── Interface.php │ │ │ ├── Query.php │ │ │ ├── Query │ │ │ │ ├── Boolean.php │ │ │ │ ├── Empty.php │ │ │ │ ├── Fuzzy.php │ │ │ │ ├── Insignificant.php │ │ │ │ ├── MultiTerm.php │ │ │ │ ├── Phrase.php │ │ │ │ ├── Preprocessing.php │ │ │ │ ├── Preprocessing │ │ │ │ │ ├── Fuzzy.php │ │ │ │ │ ├── Phrase.php │ │ │ │ │ └── Term.php │ │ │ │ ├── Range.php │ │ │ │ ├── Term.php │ │ │ │ └── Wildcard.php │ │ │ ├── QueryEntry.php │ │ │ ├── QueryEntry │ │ │ │ ├── Phrase.php │ │ │ │ ├── Subquery.php │ │ │ │ └── Term.php │ │ │ ├── QueryHit.php │ │ │ ├── QueryLexer.php │ │ │ ├── QueryParser.php │ │ │ ├── QueryParserContext.php │ │ │ ├── QueryParserException.php │ │ │ ├── QueryToken.php │ │ │ ├── Similarity.php │ │ │ ├── Similarity │ │ │ │ └── Default.php │ │ │ ├── Weight.php │ │ │ └── Weight │ │ │ │ ├── Boolean.php │ │ │ │ ├── Empty.php │ │ │ │ ├── MultiTerm.php │ │ │ │ ├── Phrase.php │ │ │ │ └── Term.php │ │ │ ├── Storage │ │ │ ├── Directory.php │ │ │ ├── Directory │ │ │ │ └── Filesystem.php │ │ │ ├── File.php │ │ │ └── File │ │ │ │ ├── Filesystem.php │ │ │ │ └── Memory.php │ │ │ └── TermStreamsPriorityQueue.php │ ├── Server │ │ ├── Abstract.php │ │ ├── Cache.php │ │ ├── Definition.php │ │ ├── Exception.php │ │ ├── Interface.php │ │ ├── Method │ │ │ ├── Callback.php │ │ │ ├── Definition.php │ │ │ ├── Parameter.php │ │ │ └── Prototype.php │ │ ├── Reflection.php │ │ └── Reflection │ │ │ ├── Class.php │ │ │ ├── Exception.php │ │ │ ├── Function.php │ │ │ ├── Function │ │ │ └── Abstract.php │ │ │ ├── Method.php │ │ │ ├── Node.php │ │ │ ├── Parameter.php │ │ │ ├── Prototype.php │ │ │ └── ReturnValue.php │ ├── Service │ │ ├── Abstract.php │ │ ├── Akismet.php │ │ ├── Amazon.php │ │ ├── Amazon │ │ │ ├── Abstract.php │ │ │ ├── Accessories.php │ │ │ ├── CustomerReview.php │ │ │ ├── Ec2.php │ │ │ ├── Ec2 │ │ │ │ ├── Abstract.php │ │ │ │ ├── Availabilityzones.php │ │ │ │ ├── CloudWatch.php │ │ │ │ ├── Ebs.php │ │ │ │ ├── Elasticip.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Image.php │ │ │ │ ├── Instance.php │ │ │ │ ├── Instance │ │ │ │ │ ├── Reserved.php │ │ │ │ │ └── Windows.php │ │ │ │ ├── Keypair.php │ │ │ │ ├── Region.php │ │ │ │ ├── Response.php │ │ │ │ └── Securitygroups.php │ │ │ ├── EditorialReview.php │ │ │ ├── Exception.php │ │ │ ├── Image.php │ │ │ ├── Item.php │ │ │ ├── ListmaniaList.php │ │ │ ├── Offer.php │ │ │ ├── OfferSet.php │ │ │ ├── Query.php │ │ │ ├── ResultSet.php │ │ │ ├── S3.php │ │ │ ├── S3 │ │ │ │ ├── Exception.php │ │ │ │ └── Stream.php │ │ │ ├── SimilarProduct.php │ │ │ ├── Sqs.php │ │ │ └── Sqs │ │ │ │ └── Exception.php │ │ ├── Audioscrobbler.php │ │ ├── Delicious.php │ │ ├── Delicious │ │ │ ├── Exception.php │ │ │ ├── Post.php │ │ │ ├── PostList.php │ │ │ └── SimplePost.php │ │ ├── Exception.php │ │ ├── Flickr.php │ │ ├── Flickr │ │ │ ├── Image.php │ │ │ ├── Result.php │ │ │ └── ResultSet.php │ │ ├── Nirvanix.php │ │ ├── Nirvanix │ │ │ ├── Exception.php │ │ │ ├── Namespace │ │ │ │ ├── Base.php │ │ │ │ └── Imfs.php │ │ │ └── Response.php │ │ ├── ReCaptcha.php │ │ ├── ReCaptcha │ │ │ ├── Exception.php │ │ │ ├── MailHide.php │ │ │ ├── MailHide │ │ │ │ └── Exception.php │ │ │ └── Response.php │ │ ├── Simpy.php │ │ ├── Simpy │ │ │ ├── Link.php │ │ │ ├── LinkQuery.php │ │ │ ├── LinkSet.php │ │ │ ├── Note.php │ │ │ ├── NoteSet.php │ │ │ ├── Tag.php │ │ │ ├── TagSet.php │ │ │ ├── Watchlist.php │ │ │ ├── WatchlistFilter.php │ │ │ ├── WatchlistFilterSet.php │ │ │ └── WatchlistSet.php │ │ ├── SlideShare.php │ │ ├── SlideShare │ │ │ ├── Exception.php │ │ │ └── SlideShow.php │ │ ├── StrikeIron.php │ │ ├── StrikeIron │ │ │ ├── Base.php │ │ │ ├── Decorator.php │ │ │ ├── Exception.php │ │ │ ├── SalesUseTaxBasic.php │ │ │ ├── USAddressVerification.php │ │ │ └── ZipCodeInfo.php │ │ ├── Technorati.php │ │ ├── Technorati │ │ │ ├── Author.php │ │ │ ├── BlogInfoResult.php │ │ │ ├── CosmosResult.php │ │ │ ├── CosmosResultSet.php │ │ │ ├── DailyCountsResult.php │ │ │ ├── DailyCountsResultSet.php │ │ │ ├── Exception.php │ │ │ ├── GetInfoResult.php │ │ │ ├── KeyInfoResult.php │ │ │ ├── Result.php │ │ │ ├── ResultSet.php │ │ │ ├── SearchResult.php │ │ │ ├── SearchResultSet.php │ │ │ ├── TagResult.php │ │ │ ├── TagResultSet.php │ │ │ ├── TagsResult.php │ │ │ ├── TagsResultSet.php │ │ │ ├── Utils.php │ │ │ └── Weblog.php │ │ ├── Twitter.php │ │ ├── Twitter │ │ │ ├── Exception.php │ │ │ └── Search.php │ │ ├── Yahoo.php │ │ └── Yahoo │ │ │ ├── Image.php │ │ │ ├── ImageResult.php │ │ │ ├── ImageResultSet.php │ │ │ ├── InlinkDataResult.php │ │ │ ├── InlinkDataResultSet.php │ │ │ ├── LocalResult.php │ │ │ ├── LocalResultSet.php │ │ │ ├── NewsResult.php │ │ │ ├── NewsResultSet.php │ │ │ ├── PageDataResult.php │ │ │ ├── PageDataResultSet.php │ │ │ ├── Result.php │ │ │ ├── ResultSet.php │ │ │ ├── VideoResult.php │ │ │ ├── VideoResultSet.php │ │ │ ├── WebResult.php │ │ │ └── WebResultSet.php │ ├── Session.php │ ├── Session │ │ ├── Abstract.php │ │ ├── Exception.php │ │ ├── Namespace.php │ │ ├── SaveHandler │ │ │ ├── DbTable.php │ │ │ ├── Exception.php │ │ │ └── Interface.php │ │ └── Validator │ │ │ ├── Abstract.php │ │ │ ├── HttpUserAgent.php │ │ │ └── Interface.php │ ├── Soap │ │ ├── .Server.php.swp │ │ ├── AutoDiscover.php │ │ ├── AutoDiscover │ │ │ └── Exception.php │ │ ├── Client.php │ │ ├── Client │ │ │ ├── Common.php │ │ │ ├── DotNet.php │ │ │ ├── Exception.php │ │ │ └── Local.php │ │ ├── Server.php │ │ ├── Server │ │ │ └── Exception.php │ │ ├── Wsdl.php │ │ └── Wsdl │ │ │ ├── Exception.php │ │ │ └── Strategy │ │ │ ├── Abstract.php │ │ │ ├── AnyType.php │ │ │ ├── ArrayOfTypeComplex.php │ │ │ ├── ArrayOfTypeSequence.php │ │ │ ├── Composite.php │ │ │ ├── DefaultComplexType.php │ │ │ └── Interface.php │ ├── Tag │ │ ├── Cloud.php │ │ ├── Cloud │ │ │ ├── Decorator │ │ │ │ ├── Cloud.php │ │ │ │ ├── Exception.php │ │ │ │ ├── HtmlCloud.php │ │ │ │ ├── HtmlTag.php │ │ │ │ └── Tag.php │ │ │ └── Exception.php │ │ ├── Exception.php │ │ ├── Item.php │ │ ├── ItemList.php │ │ └── Taggable.php │ ├── Test │ │ ├── DbAdapter.php │ │ ├── DbStatement.php │ │ └── PHPUnit │ │ │ ├── Constraint │ │ │ ├── DomQuery.php │ │ │ ├── Exception.php │ │ │ ├── Redirect.php │ │ │ └── ResponseHeader.php │ │ │ ├── ControllerTestCase.php │ │ │ ├── DatabaseTestCase.php │ │ │ └── Db │ │ │ ├── Connection.php │ │ │ ├── DataSet │ │ │ ├── DbRowset.php │ │ │ ├── DbTable.php │ │ │ ├── DbTableDataSet.php │ │ │ ├── QueryDataSet.php │ │ │ └── QueryTable.php │ │ │ ├── Exception.php │ │ │ ├── Metadata │ │ │ └── Generic.php │ │ │ ├── Operation │ │ │ ├── DeleteAll.php │ │ │ ├── Insert.php │ │ │ └── Truncate.php │ │ │ └── SimpleTester.php │ ├── Text │ │ ├── Exception.php │ │ ├── Figlet.php │ │ ├── Figlet │ │ │ ├── Exception.php │ │ │ └── zend-framework.flf │ │ ├── MultiByte.php │ │ ├── Table.php │ │ └── Table │ │ │ ├── Column.php │ │ │ ├── Decorator │ │ │ ├── Ascii.php │ │ │ ├── Interface.php │ │ │ └── Unicode.php │ │ │ ├── Exception.php │ │ │ └── Row.php │ ├── TimeSync.php │ ├── TimeSync │ │ ├── Exception.php │ │ ├── Ntp.php │ │ ├── Protocol.php │ │ └── Sntp.php │ ├── Tool │ │ ├── Framework │ │ │ ├── Action │ │ │ │ ├── Base.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Interface.php │ │ │ │ └── Repository.php │ │ │ ├── Client │ │ │ │ ├── Abstract.php │ │ │ │ ├── Config.php │ │ │ │ ├── Console.php │ │ │ │ ├── Console │ │ │ │ │ ├── ArgumentParser.php │ │ │ │ │ ├── HelpSystem.php │ │ │ │ │ ├── Manifest.php │ │ │ │ │ └── ResponseDecorator │ │ │ │ │ │ └── Colorizer.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Interactive │ │ │ │ │ ├── InputHandler.php │ │ │ │ │ ├── InputInterface.php │ │ │ │ │ ├── InputRequest.php │ │ │ │ │ ├── InputResponse.php │ │ │ │ │ └── OutputInterface.php │ │ │ │ ├── Request.php │ │ │ │ ├── Response.php │ │ │ │ ├── Response │ │ │ │ │ └── ContentDecorator │ │ │ │ │ │ ├── Interface.php │ │ │ │ │ │ └── Separator.php │ │ │ │ ├── Storage.php │ │ │ │ └── Storage │ │ │ │ │ ├── AdapterInterface.php │ │ │ │ │ └── Directory.php │ │ │ ├── Exception.php │ │ │ ├── Loader │ │ │ │ ├── Abstract.php │ │ │ │ ├── IncludePathLoader.php │ │ │ │ └── IncludePathLoader │ │ │ │ │ └── RecursiveFilterIterator.php │ │ │ ├── Manifest │ │ │ │ ├── ActionManifestable.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Indexable.php │ │ │ │ ├── Interface.php │ │ │ │ ├── MetadataManifestable.php │ │ │ │ ├── ProviderManifestable.php │ │ │ │ └── Repository.php │ │ │ ├── Metadata │ │ │ │ ├── Basic.php │ │ │ │ ├── Dynamic.php │ │ │ │ ├── Interface.php │ │ │ │ └── Tool.php │ │ │ ├── Provider │ │ │ │ ├── Abstract.php │ │ │ │ ├── DocblockManifestable.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Interactable.php │ │ │ │ ├── Interface.php │ │ │ │ ├── Pretendable.php │ │ │ │ ├── Repository.php │ │ │ │ └── Signature.php │ │ │ ├── Registry.php │ │ │ ├── Registry │ │ │ │ ├── EnabledInterface.php │ │ │ │ ├── Exception.php │ │ │ │ └── Interface.php │ │ │ └── System │ │ │ │ ├── Action │ │ │ │ ├── Create.php │ │ │ │ └── Delete.php │ │ │ │ ├── Manifest.php │ │ │ │ └── Provider │ │ │ │ ├── Manifest.php │ │ │ │ ├── Phpinfo.php │ │ │ │ └── Version.php │ │ └── Project │ │ │ ├── Context │ │ │ ├── Content │ │ │ │ ├── Engine.php │ │ │ │ └── Engine │ │ │ │ │ ├── CodeGenerator.php │ │ │ │ │ └── Phtml.php │ │ │ ├── Exception.php │ │ │ ├── Filesystem │ │ │ │ ├── Abstract.php │ │ │ │ ├── Directory.php │ │ │ │ └── File.php │ │ │ ├── Interface.php │ │ │ ├── Repository.php │ │ │ ├── System │ │ │ │ ├── Interface.php │ │ │ │ ├── NotOverwritable.php │ │ │ │ ├── ProjectDirectory.php │ │ │ │ ├── ProjectProfileFile.php │ │ │ │ ├── ProjectProvidersDirectory.php │ │ │ │ └── TopLevelRestrictable.php │ │ │ └── Zf │ │ │ │ ├── ActionMethod.php │ │ │ │ ├── ApisDirectory.php │ │ │ │ ├── ApplicationConfigFile.php │ │ │ │ ├── ApplicationDirectory.php │ │ │ │ ├── BootstrapFile.php │ │ │ │ ├── CacheDirectory.php │ │ │ │ ├── ConfigFile.php │ │ │ │ ├── ConfigsDirectory.php │ │ │ │ ├── ControllerFile.php │ │ │ │ ├── ControllersDirectory.php │ │ │ │ ├── DataDirectory.php │ │ │ │ ├── DbTableDirectory.php │ │ │ │ ├── DbTableFile.php │ │ │ │ ├── FormFile.php │ │ │ │ ├── FormsDirectory.php │ │ │ │ ├── HtaccessFile.php │ │ │ │ ├── LayoutsDirectory.php │ │ │ │ ├── LibraryDirectory.php │ │ │ │ ├── LocalesDirectory.php │ │ │ │ ├── LogsDirectory.php │ │ │ │ ├── ModelFile.php │ │ │ │ ├── ModelsDirectory.php │ │ │ │ ├── ModuleDirectory.php │ │ │ │ ├── ModulesDirectory.php │ │ │ │ ├── ProjectProviderFile.php │ │ │ │ ├── PublicDirectory.php │ │ │ │ ├── PublicImagesDirectory.php │ │ │ │ ├── PublicIndexFile.php │ │ │ │ ├── PublicScriptsDirectory.php │ │ │ │ ├── PublicStylesheetsDirectory.php │ │ │ │ ├── SearchIndexesDirectory.php │ │ │ │ ├── SessionsDirectory.php │ │ │ │ ├── TemporaryDirectory.php │ │ │ │ ├── TestApplicationBootstrapFile.php │ │ │ │ ├── TestApplicationControllerDirectory.php │ │ │ │ ├── TestApplicationControllerFile.php │ │ │ │ ├── TestApplicationDirectory.php │ │ │ │ ├── TestLibraryBootstrapFile.php │ │ │ │ ├── TestLibraryDirectory.php │ │ │ │ ├── TestLibraryFile.php │ │ │ │ ├── TestLibraryNamespaceDirectory.php │ │ │ │ ├── TestPHPUnitConfigFile.php │ │ │ │ ├── TestsDirectory.php │ │ │ │ ├── UploadsDirectory.php │ │ │ │ ├── ViewControllerScriptsDirectory.php │ │ │ │ ├── ViewFiltersDirectory.php │ │ │ │ ├── ViewHelpersDirectory.php │ │ │ │ ├── ViewScriptFile.php │ │ │ │ ├── ViewScriptsDirectory.php │ │ │ │ ├── ViewsDirectory.php │ │ │ │ └── ZfStandardLibraryDirectory.php │ │ │ ├── Exception.php │ │ │ ├── Profile.php │ │ │ ├── Profile │ │ │ ├── Exception.php │ │ │ ├── FileParser │ │ │ │ ├── Interface.php │ │ │ │ └── Xml.php │ │ │ ├── Iterator │ │ │ │ ├── ContextFilter.php │ │ │ │ └── EnabledResourceFilter.php │ │ │ ├── Resource.php │ │ │ └── Resource │ │ │ │ ├── Container.php │ │ │ │ └── SearchConstraints.php │ │ │ └── Provider │ │ │ ├── Abstract.php │ │ │ ├── Action.php │ │ │ ├── Controller.php │ │ │ ├── Exception.php │ │ │ ├── Form.php │ │ │ ├── Manifest.php │ │ │ ├── Model.php │ │ │ ├── Module.php │ │ │ ├── Profile.php │ │ │ ├── Project.php │ │ │ ├── ProjectProvider.php │ │ │ ├── Test.php │ │ │ └── View.php │ ├── Translate.php │ ├── Translate │ │ ├── Adapter.php │ │ ├── Adapter │ │ │ ├── Array.php │ │ │ ├── Csv.php │ │ │ ├── Gettext.php │ │ │ ├── Ini.php │ │ │ ├── Qt.php │ │ │ ├── Tbx.php │ │ │ ├── Tmx.php │ │ │ ├── Xliff.php │ │ │ └── XmlTm.php │ │ ├── Exception.php │ │ └── Plural.php │ ├── Uri.php │ ├── Uri │ │ ├── Exception.php │ │ └── Http.php │ ├── Validate.php │ ├── Validate │ │ ├── Abstract.php │ │ ├── Alnum.php │ │ ├── Alpha.php │ │ ├── Barcode.php │ │ ├── Barcode │ │ │ ├── Ean13.php │ │ │ └── UpcA.php │ │ ├── Between.php │ │ ├── Ccnum.php │ │ ├── Date.php │ │ ├── Db │ │ │ ├── Abstract.php │ │ │ ├── NoRecordExists.php │ │ │ └── RecordExists.php │ │ ├── Digits.php │ │ ├── EmailAddress.php │ │ ├── Exception.php │ │ ├── File │ │ │ ├── Count.php │ │ │ ├── Crc32.php │ │ │ ├── ExcludeExtension.php │ │ │ ├── ExcludeMimeType.php │ │ │ ├── Exists.php │ │ │ ├── Extension.php │ │ │ ├── FilesSize.php │ │ │ ├── Hash.php │ │ │ ├── ImageSize.php │ │ │ ├── IsCompressed.php │ │ │ ├── IsImage.php │ │ │ ├── Md5.php │ │ │ ├── MimeType.php │ │ │ ├── NotExists.php │ │ │ ├── Sha1.php │ │ │ ├── Size.php │ │ │ ├── Upload.php │ │ │ └── WordCount.php │ │ ├── Float.php │ │ ├── GreaterThan.php │ │ ├── Hex.php │ │ ├── Hostname.php │ │ ├── Hostname │ │ │ ├── Biz.php │ │ │ ├── Cn.php │ │ │ ├── Com.php │ │ │ └── Jp.php │ │ ├── Iban.php │ │ ├── Identical.php │ │ ├── InArray.php │ │ ├── Int.php │ │ ├── Interface.php │ │ ├── Ip.php │ │ ├── LessThan.php │ │ ├── NotEmpty.php │ │ ├── Regex.php │ │ ├── Sitemap │ │ │ ├── Changefreq.php │ │ │ ├── Lastmod.php │ │ │ ├── Loc.php │ │ │ └── Priority.php │ │ └── StringLength.php │ ├── Version.php │ ├── View.php │ ├── View │ │ ├── Abstract.php │ │ ├── Exception.php │ │ ├── Helper │ │ │ ├── Abstract.php │ │ │ ├── Action.php │ │ │ ├── BaseUrl.php │ │ │ ├── Cycle.php │ │ │ ├── DeclareVars.php │ │ │ ├── Doctype.php │ │ │ ├── Fieldset.php │ │ │ ├── Form.php │ │ │ ├── FormButton.php │ │ │ ├── FormCheckbox.php │ │ │ ├── FormElement.php │ │ │ ├── FormErrors.php │ │ │ ├── FormFile.php │ │ │ ├── FormHidden.php │ │ │ ├── FormImage.php │ │ │ ├── FormLabel.php │ │ │ ├── FormMultiCheckbox.php │ │ │ ├── FormNote.php │ │ │ ├── FormPassword.php │ │ │ ├── FormRadio.php │ │ │ ├── FormReset.php │ │ │ ├── FormSelect.php │ │ │ ├── FormSubmit.php │ │ │ ├── FormText.php │ │ │ ├── FormTextarea.php │ │ │ ├── HeadLink.php │ │ │ ├── HeadMeta.php │ │ │ ├── HeadScript.php │ │ │ ├── HeadStyle.php │ │ │ ├── HeadTitle.php │ │ │ ├── HtmlElement.php │ │ │ ├── HtmlFlash.php │ │ │ ├── HtmlList.php │ │ │ ├── HtmlObject.php │ │ │ ├── HtmlPage.php │ │ │ ├── HtmlQuicktime.php │ │ │ ├── InlineScript.php │ │ │ ├── Interface.php │ │ │ ├── Json.php │ │ │ ├── Layout.php │ │ │ ├── Navigation.php │ │ │ ├── Navigation │ │ │ │ ├── Breadcrumbs.php │ │ │ │ ├── Helper.php │ │ │ │ ├── HelperAbstract.php │ │ │ │ ├── Links.php │ │ │ │ ├── Menu.php │ │ │ │ └── Sitemap.php │ │ │ ├── PaginationControl.php │ │ │ ├── Partial.php │ │ │ ├── Partial │ │ │ │ └── Exception.php │ │ │ ├── PartialLoop.php │ │ │ ├── Placeholder.php │ │ │ ├── Placeholder │ │ │ │ ├── Container.php │ │ │ │ ├── Container │ │ │ │ │ ├── Abstract.php │ │ │ │ │ ├── Exception.php │ │ │ │ │ └── Standalone.php │ │ │ │ ├── Registry.php │ │ │ │ └── Registry │ │ │ │ │ └── Exception.php │ │ │ ├── RenderToPlaceholder.php │ │ │ ├── ServerUrl.php │ │ │ ├── Translate.php │ │ │ └── Url.php │ │ ├── Interface.php │ │ └── Stream.php │ ├── Wildfire │ │ ├── Channel │ │ │ ├── HttpHeaders.php │ │ │ └── Interface.php │ │ ├── Exception.php │ │ ├── Plugin │ │ │ ├── FirePhp.php │ │ │ ├── FirePhp │ │ │ │ ├── Message.php │ │ │ │ └── TableMessage.php │ │ │ └── Interface.php │ │ └── Protocol │ │ │ └── JsonStream.php │ └── XmlRpc │ │ ├── Client.php │ │ ├── Client │ │ ├── Exception.php │ │ ├── FaultException.php │ │ ├── HttpException.php │ │ ├── IntrospectException.php │ │ ├── ServerIntrospection.php │ │ └── ServerProxy.php │ │ ├── Exception.php │ │ ├── Fault.php │ │ ├── Request.php │ │ ├── Request │ │ ├── Http.php │ │ └── Stdin.php │ │ ├── Response.php │ │ ├── Response │ │ └── Http.php │ │ ├── Server.php │ │ ├── Server │ │ ├── Cache.php │ │ ├── Exception.php │ │ ├── Fault.php │ │ └── System.php │ │ ├── Value.php │ │ └── Value │ │ ├── Array.php │ │ ├── Base64.php │ │ ├── BigInteger.php │ │ ├── Boolean.php │ │ ├── Collection.php │ │ ├── DateTime.php │ │ ├── Double.php │ │ ├── Exception.php │ │ ├── Integer.php │ │ ├── Nil.php │ │ ├── Scalar.php │ │ ├── String.php │ │ └── Struct.php └── eVias │ ├── ArrayObject │ ├── Abstract.php │ ├── Db.php │ └── Exception.php │ ├── Bootstrap.php │ ├── Catalogue.php │ ├── Catalogue │ ├── Article.php │ ├── Article │ │ ├── Collection.php │ │ ├── Exception.php │ │ └── PublishingData.php │ ├── Category.php │ ├── Category │ │ ├── Collection.php │ │ ├── Exception.php │ │ └── PublishingData.php │ └── Exception.php │ ├── Collection.php │ ├── Controller │ └── Action.php │ ├── Exception.php │ ├── Mail.php │ ├── Mail │ ├── Address.php │ └── Exception.php │ ├── Routes.php │ ├── Service │ ├── Abstract.php │ ├── Catalogue.php │ ├── Catalogue │ │ └── Exception.php │ ├── Exception.php │ └── Member.php │ ├── View.php │ └── View │ └── Helper │ ├── FreakingTitle.php │ └── HeadTitle.php ├── native └── eRemote.imeals.apps │ ├── .gitignore │ ├── AndroidManifest.xml │ ├── ant.properties │ ├── build.xml │ ├── eRemote.iml │ ├── gen │ └── be │ │ └── evias │ │ └── eRemote │ │ ├── BuildConfig.java │ │ ├── Manifest.java │ │ └── R.java │ ├── local.properties │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ ├── drawable-hdpi │ │ ├── fail.gif │ │ ├── ic_launcher.png │ │ ├── imeals_logo.png │ │ └── success.gif │ ├── drawable-ldpi │ │ ├── fail.gif │ │ ├── ic_launcher.png │ │ ├── imeals_logo.png │ │ └── success.gif │ ├── drawable-mdpi │ │ ├── fail.gif │ │ ├── ic_launcher.png │ │ ├── imeals_logo.png │ │ └── success.gif │ ├── drawable-xhdpi │ │ ├── fail.gif │ │ ├── ic_launcher.png │ │ ├── imeals_logo.png │ │ └── success.gif │ ├── layout-land │ │ └── main.xml │ ├── layout │ │ ├── fragment_alert.xml │ │ ├── fragment_delivery.xml │ │ ├── fragment_order.xml │ │ ├── fragment_order_addcustomization.xml │ │ ├── fragment_order_addmeal.xml │ │ ├── fragment_preference.xml │ │ ├── fragment_restaurant.xml │ │ ├── login.xml │ │ └── main.xml │ └── values │ │ ├── arrays.xml │ │ └── strings.xml │ └── src │ └── be │ └── evias │ └── eRemote │ ├── app │ ├── DetailsActivity.java │ ├── LoginActivity.java │ ├── MainActivity.java │ ├── MenuFragment.java │ └── modules │ │ ├── backlog │ │ └── AlertFragment.java │ │ ├── delivery │ │ └── DeliveryFragment.java │ │ ├── order │ │ ├── AddCustomizationFragment.java │ │ ├── AddMealFragment.java │ │ └── OrderFragment.java │ │ ├── restaurant │ │ └── RestaurantFragment.java │ │ └── settings │ │ └── PreferenceFragment.java │ ├── ctrl │ ├── AuthController.java │ ├── MenuController.java │ └── RestaurantController.java │ └── lib │ ├── AbstractActivity.java │ ├── AbstractController.java │ ├── AbstractFragment.java │ ├── AlertDialogManager.java │ ├── AsyncHTTPTask.java │ ├── FragmentFactory.java │ ├── SecureData.java │ └── SessionManager.java ├── office ├── .htaccess ├── .htpasswd ├── application │ ├── configs │ │ ├── application.ini │ │ └── translations.tmx │ ├── controllers │ │ ├── ErrorController.php │ │ ├── IndexController.php │ │ └── LoginController.php │ ├── layouts │ │ ├── ajax-context.php │ │ ├── form.php │ │ └── layout.php │ ├── modules │ │ ├── dashboard │ │ │ ├── controllers │ │ │ │ └── DefaultController.php │ │ │ └── views │ │ │ │ └── scripts │ │ │ │ └── default │ │ │ │ └── index.php │ │ └── manage │ │ │ ├── controllers │ │ │ ├── BookingsController.php │ │ │ ├── CustomersController.php │ │ │ ├── GalleryController.php │ │ │ ├── MenuController.php │ │ │ ├── OrdersController.php │ │ │ ├── ReservationController.php │ │ │ ├── RestaurantController.php │ │ │ └── UsersController.php │ │ │ └── views │ │ │ └── scripts │ │ │ ├── bookings │ │ │ ├── add-booking.php │ │ │ ├── add-room.php │ │ │ ├── add-table.php │ │ │ ├── delete-booking.php │ │ │ ├── delete-room.php │ │ │ ├── delete-table.php │ │ │ ├── get-available-objects.php │ │ │ ├── index.php │ │ │ ├── list-rooms.php │ │ │ └── list-tables.php │ │ │ ├── customers │ │ │ └── list-customers.php │ │ │ ├── gallery │ │ │ └── index.php │ │ │ ├── menu │ │ │ ├── add-category.php │ │ │ ├── add-item.php │ │ │ ├── add-menu.php │ │ │ ├── delete-category.php │ │ │ ├── delete-item.php │ │ │ ├── delete-menu.php │ │ │ ├── display-order.php │ │ │ ├── edit.php │ │ │ ├── index.php │ │ │ ├── list-categories.php │ │ │ ├── list-category.php │ │ │ ├── list-item.php │ │ │ ├── list-items.php │ │ │ ├── modify-category.php │ │ │ ├── modify-item.php │ │ │ ├── preview.php │ │ │ └── print.php │ │ │ ├── orders │ │ │ ├── delete-order.php │ │ │ ├── display-order.php │ │ │ ├── index.php │ │ │ ├── list-orders-table-content.php │ │ │ └── list-orders.php │ │ │ ├── pagination.phtml │ │ │ ├── restaurant │ │ │ ├── add-restaurant.php │ │ │ ├── company.php │ │ │ ├── delete-restaurant.php │ │ │ ├── index.php │ │ │ └── settings.php │ │ │ └── users │ │ │ ├── add-acl.php │ │ │ ├── add-user.php │ │ │ ├── delete-acl.php │ │ │ ├── delete-user.php │ │ │ ├── list-acl.php │ │ │ └── list-users.php │ └── views │ │ └── scripts │ │ ├── error │ │ └── error.php │ │ ├── index │ │ ├── denied.php │ │ └── index.php │ │ ├── login │ │ └── login.php │ │ └── pagination.phtml ├── index.html ├── library │ ├── AppLib │ ├── BackLib │ │ ├── AclCheck.php │ │ ├── AppMenu.php │ │ ├── Bootstrap.php │ │ ├── Controller │ │ │ ├── Action.php │ │ │ └── Plugin │ │ │ │ ├── AccessControl.php │ │ │ │ ├── Authentication.php │ │ │ │ └── Restaurant.php │ │ ├── Exception.php │ │ ├── Lang.php │ │ ├── User.php │ │ └── View │ │ │ └── Helper │ │ │ ├── ApplicationMenu.php │ │ │ ├── FilterForm.php │ │ │ ├── OrderTicket.php │ │ │ └── RestaurantSelector.php │ ├── Zend │ └── eVias └── public │ ├── favicon.ico │ ├── images │ ├── FOR_COMMIT │ ├── ajaxLoader.gif │ ├── arrow_for_selection.png │ ├── bottom_nav.png │ ├── btn-create-left.gif │ ├── btn-create-right.gif │ ├── close.gif │ ├── content-h1.gif │ ├── content.gif │ ├── dot.gif │ ├── e-restaurant.png │ ├── ico-delete.gif │ ├── ico-done.gif │ ├── ico-info.gif │ ├── ico-warning.gif │ ├── loadinfo.gif │ ├── menu-left.gif │ ├── menu-right.gif │ ├── menu.gif │ ├── new.wav │ ├── next.gif │ ├── plus-sign.png │ ├── prev.gif │ ├── separator.gif │ ├── submenu-active.gif │ ├── submenu-sub.gif │ ├── switcher-1col.gif │ ├── switcher-2col.gif │ ├── tabs-l.gif │ ├── tabs-r.gif │ ├── tray-logout.gif │ ├── tray.gif │ ├── ul-ul.gif │ └── ul.gif │ ├── index.php │ ├── js │ ├── e-menueditor.js │ ├── e-restaurant.js │ ├── e-roomorganisator.js │ ├── e-ui.js │ ├── include │ │ └── ui-1.10.0 │ │ │ ├── jquery.ui.core.min.js │ │ │ ├── jquery.ui.position.min.js │ │ │ ├── jquery.ui.tabs.min.js │ │ │ ├── jquery.ui.widget.min.js │ │ │ └── ui-lightness │ │ │ ├── images │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ └── jquery-ui-1.10.0.custom.min.css │ ├── jquery-ui.js │ ├── jquery.js │ ├── nyromodal.js │ ├── switcher.js │ ├── timepicker.js │ ├── toggle.js │ ├── ui.core.js │ └── ui.tabs.js │ └── styles │ ├── 1col.css │ ├── 2col.css │ ├── main-ie6.css │ ├── main.css │ ├── nyromodal.css │ ├── print.css │ ├── styles.css │ └── timepicker.css └── website ├── .htaccess ├── application ├── configs │ ├── application.ini │ └── translations.tmx ├── controllers │ ├── ErrorController.php │ ├── GraphController.php │ ├── ImageController.php │ └── IndexController.php ├── layouts │ ├── form.php │ └── layout.php ├── modules │ └── restaurant │ │ ├── controllers │ │ ├── InfoController.php │ │ ├── MenuController.php │ │ └── OrdersController.php │ │ └── views │ │ └── scripts │ │ ├── info │ │ └── index.php │ │ ├── menu │ │ ├── custom-meal.php │ │ ├── index.php │ │ └── print.php │ │ └── orders │ │ ├── confirm-order.php │ │ ├── display-cart.php │ │ ├── index.php │ │ ├── preview-order.php │ │ └── send-cart.php └── views │ └── scripts │ ├── error │ └── error.php │ ├── index │ ├── index.php │ └── login.php │ └── pagination.phtml ├── library ├── AppLib ├── FrontLib │ ├── Bootstrap.php │ ├── Controller │ │ ├── Action.php │ │ └── Plugin │ │ │ ├── ErrorHandler.php │ │ │ ├── Order.php │ │ │ └── User.php │ ├── Exception.php │ ├── Lang.php │ ├── User.php │ └── View │ │ └── Helper │ │ └── Cart.php ├── Zend └── eVias └── public ├── favicon.ico ├── images ├── 49.png ├── 50.png ├── 51.png ├── 52.png ├── 53.png ├── 54.png ├── 55.png ├── 56.png ├── 57.png ├── 58.png ├── FOR_COMMIT ├── add-to-cart.jpg ├── address-icon.png ├── address-input-left.png ├── address-input-middle.png ├── address-input-right.png ├── arrow_link.jpg ├── bckg_content.gif ├── bckg_footer_02.jpg ├── bckg_navigation.jpg ├── bigarrow-right.png ├── corner-bottomleft.png ├── corner-bottomright.png ├── deliver.png ├── error.png ├── french.png ├── gallery-img1.jpg ├── gallery-img2.jpg ├── gallery-img3.jpg ├── gallery-img4.jpg ├── gallery-img5.jpg ├── gallery-img6.jpg ├── german.png ├── header-wrapper-bg.png ├── highlight-bg.png ├── imeals.png ├── irepas.png ├── ispeisen.png ├── italy-flag-stretched.png ├── italy-map.png ├── logo-bg.png ├── logo_da-antonio.png ├── main-background-bg.png ├── minus-sign.png ├── nav_separator.jpg ├── order-deliver.png ├── order-online-de.png ├── order-online-fr.png ├── order.png ├── picto_warning.jpg ├── pizza-and-wine.png ├── pizza-offer-de.png ├── pizza-offer-fr.png ├── plus-sign.png ├── resources │ ├── category │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 16.png │ │ ├── 17.png │ │ ├── 18.png │ │ ├── 19.png │ │ ├── 2.png │ │ ├── 20.png │ │ ├── 21.png │ │ ├── 22.png │ │ ├── 23.png │ │ ├── 24.png │ │ ├── 25.png │ │ ├── 26.png │ │ ├── 27.png │ │ ├── 28.png │ │ ├── 29.png │ │ ├── 3.png │ │ ├── 30.png │ │ ├── 31.png │ │ ├── 32.png │ │ ├── 33.png │ │ ├── 34.png │ │ ├── 35.png │ │ ├── 36.png │ │ ├── 37.png │ │ ├── 38.png │ │ ├── 39.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 50.png │ │ ├── 51.png │ │ ├── 52.png │ │ ├── 53.png │ │ ├── 54.png │ │ ├── 55.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png │ ├── misc │ │ └── menu-splash.png │ └── restaurant │ │ ├── 1.png │ │ ├── 10.png │ │ ├── 11.png │ │ ├── 12.png │ │ ├── 13.png │ │ ├── 14.png │ │ ├── 15.png │ │ ├── 16.png │ │ ├── 17.png │ │ ├── 18.png │ │ ├── 19.png │ │ ├── 2.png │ │ ├── 20.png │ │ ├── 21.png │ │ ├── 22.png │ │ ├── 23.png │ │ ├── 24.png │ │ ├── 25.png │ │ ├── 26.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png ├── search.png ├── steps.png ├── thumb-gallery-img1.jpg ├── thumb-gallery-img2.jpg ├── thumb-gallery-img3.jpg ├── thumb-gallery-img4.jpg ├── thumb-gallery-img5.jpg ├── thumb-gallery-img6.jpg └── weekly_offer.png ├── index.php ├── js ├── e-ui.js ├── jquery-ui.js ├── jquery.js ├── lib │ ├── milkbox-yc.js │ ├── milkbox.js │ ├── mootools-1.4.5-core-yc.js │ ├── mootools-core-1.4.5-full-compat.js │ └── mootools-more-1.4.0.1.js ├── milkbox.js ├── mootools-more.js ├── mootools.js ├── nyromodal.js └── timepicker.js └── styles ├── close.gif ├── load.gif ├── loading.gif ├── loading.old.gif ├── menu.css ├── milkbox.css ├── next.gif ├── play-pause.gif ├── prev.gif ├── style.css └── styles.css /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/README.md -------------------------------------------------------------------------------- /api/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/api/.htaccess -------------------------------------------------------------------------------- /api/application/layouts/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/api/application/layouts/layout.php -------------------------------------------------------------------------------- /api/library/AppLib: -------------------------------------------------------------------------------- 1 | ../../library/AppLib -------------------------------------------------------------------------------- /api/library/Zend: -------------------------------------------------------------------------------- 1 | ../../library/Zend -------------------------------------------------------------------------------- /api/library/eVias: -------------------------------------------------------------------------------- 1 | ../../library/eVias -------------------------------------------------------------------------------- /api/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/api/public/favicon.ico -------------------------------------------------------------------------------- /api/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/api/public/index.php -------------------------------------------------------------------------------- /assets/ESlogo-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/assets/ESlogo-transparent.png -------------------------------------------------------------------------------- /assets/ESlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/assets/ESlogo.png -------------------------------------------------------------------------------- /library/AppLib/DbFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/AppLib/DbFilter.php -------------------------------------------------------------------------------- /library/AppLib/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/AppLib/Exception.php -------------------------------------------------------------------------------- /library/AppLib/Lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/AppLib/Lang.php -------------------------------------------------------------------------------- /library/AppLib/Model/AclConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/AppLib/Model/AclConfig.php -------------------------------------------------------------------------------- /library/AppLib/Model/Bookable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/AppLib/Model/Bookable.php -------------------------------------------------------------------------------- /library/AppLib/Model/Booking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/AppLib/Model/Booking.php -------------------------------------------------------------------------------- /library/AppLib/Model/Cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/AppLib/Model/Cart.php -------------------------------------------------------------------------------- /library/AppLib/Model/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/AppLib/Model/Category.php -------------------------------------------------------------------------------- /library/AppLib/Model/Company.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/AppLib/Model/Company.php -------------------------------------------------------------------------------- /library/AppLib/Model/Customer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/AppLib/Model/Customer.php -------------------------------------------------------------------------------- /library/AppLib/Model/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/AppLib/Model/Exception.php -------------------------------------------------------------------------------- /library/AppLib/Model/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/AppLib/Model/Item.php -------------------------------------------------------------------------------- /library/AppLib/Model/Menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/AppLib/Model/Menu.php -------------------------------------------------------------------------------- /library/AppLib/Model/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/AppLib/Model/Order.php -------------------------------------------------------------------------------- /library/AppLib/Model/Room.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/AppLib/Model/Room.php -------------------------------------------------------------------------------- /library/AppLib/Model/RoomTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/AppLib/Model/RoomTable.php -------------------------------------------------------------------------------- /library/AppLib/Model/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/AppLib/Model/User.php -------------------------------------------------------------------------------- /library/AppLib/Service/Booking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/AppLib/Service/Booking.php -------------------------------------------------------------------------------- /library/AppLib/Service/Cart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/AppLib/Service/Cart.php -------------------------------------------------------------------------------- /library/AppLib/Service/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/AppLib/Service/Factory.php -------------------------------------------------------------------------------- /library/AppLib/Service/Fault.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/AppLib/Service/Fault.php -------------------------------------------------------------------------------- /library/AppLib/Service/Menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/AppLib/Service/Menu.php -------------------------------------------------------------------------------- /library/AppLib/Service/Order.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/AppLib/Service/Order.php -------------------------------------------------------------------------------- /library/AppLib/Service/Proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/AppLib/Service/Proxy.php -------------------------------------------------------------------------------- /library/AppLib/Service/Search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/AppLib/Service/Search.php -------------------------------------------------------------------------------- /library/AppLib/Service/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/AppLib/Service/User.php -------------------------------------------------------------------------------- /library/AppLib/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/AppLib/Utils.php -------------------------------------------------------------------------------- /library/AppLib/VERSION: -------------------------------------------------------------------------------- 1 | 2.1.0 2 | -------------------------------------------------------------------------------- /library/Zend/.Acl.php.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/.Acl.php.swp -------------------------------------------------------------------------------- /library/Zend/.Pdf.php.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/.Pdf.php.swp -------------------------------------------------------------------------------- /library/Zend/Acl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Acl.php -------------------------------------------------------------------------------- /library/Zend/Acl/.Resource.php.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Acl/.Resource.php.swp -------------------------------------------------------------------------------- /library/Zend/Acl/.Role.php.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Acl/.Role.php.swp -------------------------------------------------------------------------------- /library/Zend/Acl/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Acl/Exception.php -------------------------------------------------------------------------------- /library/Zend/Acl/Resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Acl/Resource.php -------------------------------------------------------------------------------- /library/Zend/Acl/Role.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Acl/Role.php -------------------------------------------------------------------------------- /library/Zend/Acl/Role/Registry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Acl/Role/Registry.php -------------------------------------------------------------------------------- /library/Zend/Amf/Adobe/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Amf/Adobe/Auth.php -------------------------------------------------------------------------------- /library/Zend/Amf/Auth/Abstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Amf/Auth/Abstract.php -------------------------------------------------------------------------------- /library/Zend/Amf/Constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Amf/Constants.php -------------------------------------------------------------------------------- /library/Zend/Amf/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Amf/Exception.php -------------------------------------------------------------------------------- /library/Zend/Amf/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Amf/Request.php -------------------------------------------------------------------------------- /library/Zend/Amf/Request/Http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Amf/Request/Http.php -------------------------------------------------------------------------------- /library/Zend/Amf/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Amf/Response.php -------------------------------------------------------------------------------- /library/Zend/Amf/Response/Http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Amf/Response/Http.php -------------------------------------------------------------------------------- /library/Zend/Amf/Server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Amf/Server.php -------------------------------------------------------------------------------- /library/Zend/Application.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Application.php -------------------------------------------------------------------------------- /library/Zend/Auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Auth.php -------------------------------------------------------------------------------- /library/Zend/Auth/Adapter/Http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Auth/Adapter/Http.php -------------------------------------------------------------------------------- /library/Zend/Auth/Adapter/Ldap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Auth/Adapter/Ldap.php -------------------------------------------------------------------------------- /library/Zend/Auth/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Auth/Exception.php -------------------------------------------------------------------------------- /library/Zend/Auth/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Auth/Result.php -------------------------------------------------------------------------------- /library/Zend/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Cache.php -------------------------------------------------------------------------------- /library/Zend/Cache/Backend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Cache/Backend.php -------------------------------------------------------------------------------- /library/Zend/Cache/Backend/Apc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Cache/Backend/Apc.php -------------------------------------------------------------------------------- /library/Zend/Cache/Core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Cache/Core.php -------------------------------------------------------------------------------- /library/Zend/Cache/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Cache/Exception.php -------------------------------------------------------------------------------- /library/Zend/Captcha/Adapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Captcha/Adapter.php -------------------------------------------------------------------------------- /library/Zend/Captcha/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Captcha/Base.php -------------------------------------------------------------------------------- /library/Zend/Captcha/Dumb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Captcha/Dumb.php -------------------------------------------------------------------------------- /library/Zend/Captcha/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Captcha/Exception.php -------------------------------------------------------------------------------- /library/Zend/Captcha/Figlet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Captcha/Figlet.php -------------------------------------------------------------------------------- /library/Zend/Captcha/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Captcha/Image.php -------------------------------------------------------------------------------- /library/Zend/Captcha/ReCaptcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Captcha/ReCaptcha.php -------------------------------------------------------------------------------- /library/Zend/Captcha/Word.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Captcha/Word.php -------------------------------------------------------------------------------- /library/Zend/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Config.php -------------------------------------------------------------------------------- /library/Zend/Config/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Config/Exception.php -------------------------------------------------------------------------------- /library/Zend/Config/Ini.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Config/Ini.php -------------------------------------------------------------------------------- /library/Zend/Config/Writer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Config/Writer.php -------------------------------------------------------------------------------- /library/Zend/Config/Writer/Ini.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Config/Writer/Ini.php -------------------------------------------------------------------------------- /library/Zend/Config/Writer/Xml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Config/Writer/Xml.php -------------------------------------------------------------------------------- /library/Zend/Config/Xml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Config/Xml.php -------------------------------------------------------------------------------- /library/Zend/Console/Getopt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Console/Getopt.php -------------------------------------------------------------------------------- /library/Zend/Controller/Action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Controller/Action.php -------------------------------------------------------------------------------- /library/Zend/Controller/Front.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Controller/Front.php -------------------------------------------------------------------------------- /library/Zend/Crypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Crypt.php -------------------------------------------------------------------------------- /library/Zend/Crypt/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Crypt/Exception.php -------------------------------------------------------------------------------- /library/Zend/Crypt/Hmac.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Crypt/Hmac.php -------------------------------------------------------------------------------- /library/Zend/Crypt/Math.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Crypt/Math.php -------------------------------------------------------------------------------- /library/Zend/Crypt/Rsa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Crypt/Rsa.php -------------------------------------------------------------------------------- /library/Zend/Crypt/Rsa/Key.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Crypt/Rsa/Key.php -------------------------------------------------------------------------------- /library/Zend/Currency.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Currency.php -------------------------------------------------------------------------------- /library/Zend/Date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Date.php -------------------------------------------------------------------------------- /library/Zend/Date/Cities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Date/Cities.php -------------------------------------------------------------------------------- /library/Zend/Date/DateObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Date/DateObject.php -------------------------------------------------------------------------------- /library/Zend/Date/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Date/Exception.php -------------------------------------------------------------------------------- /library/Zend/Db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Db.php -------------------------------------------------------------------------------- /library/Zend/Db/Adapter/Db2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Db/Adapter/Db2.php -------------------------------------------------------------------------------- /library/Zend/Db/Adapter/Mysqli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Db/Adapter/Mysqli.php -------------------------------------------------------------------------------- /library/Zend/Db/Adapter/Oracle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Db/Adapter/Oracle.php -------------------------------------------------------------------------------- /library/Zend/Db/Adapter/Sqlsrv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Db/Adapter/Sqlsrv.php -------------------------------------------------------------------------------- /library/Zend/Db/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Db/Exception.php -------------------------------------------------------------------------------- /library/Zend/Db/Expr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Db/Expr.php -------------------------------------------------------------------------------- /library/Zend/Db/Profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Db/Profiler.php -------------------------------------------------------------------------------- /library/Zend/Db/Profiler/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Db/Profiler/Query.php -------------------------------------------------------------------------------- /library/Zend/Db/Select.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Db/Select.php -------------------------------------------------------------------------------- /library/Zend/Db/Statement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Db/Statement.php -------------------------------------------------------------------------------- /library/Zend/Db/Statement/Db2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Db/Statement/Db2.php -------------------------------------------------------------------------------- /library/Zend/Db/Statement/Pdo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Db/Statement/Pdo.php -------------------------------------------------------------------------------- /library/Zend/Db/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Db/Table.php -------------------------------------------------------------------------------- /library/Zend/Db/Table/Abstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Db/Table/Abstract.php -------------------------------------------------------------------------------- /library/Zend/Db/Table/Row.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Db/Table/Row.php -------------------------------------------------------------------------------- /library/Zend/Db/Table/Rowset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Db/Table/Rowset.php -------------------------------------------------------------------------------- /library/Zend/Db/Table/Select.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Db/Table/Select.php -------------------------------------------------------------------------------- /library/Zend/Debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Debug.php -------------------------------------------------------------------------------- /library/Zend/Dojo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Dojo.php -------------------------------------------------------------------------------- /library/Zend/Dojo/BuildLayer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Dojo/BuildLayer.php -------------------------------------------------------------------------------- /library/Zend/Dojo/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Dojo/Data.php -------------------------------------------------------------------------------- /library/Zend/Dojo/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Dojo/Exception.php -------------------------------------------------------------------------------- /library/Zend/Dojo/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Dojo/Form.php -------------------------------------------------------------------------------- /library/Zend/Dojo/Form/SubForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Dojo/Form/SubForm.php -------------------------------------------------------------------------------- /library/Zend/Dom/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Dom/Exception.php -------------------------------------------------------------------------------- /library/Zend/Dom/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Dom/Query.php -------------------------------------------------------------------------------- /library/Zend/Dom/Query/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Dom/Query/Result.php -------------------------------------------------------------------------------- /library/Zend/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Exception.php -------------------------------------------------------------------------------- /library/Zend/Feed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Feed.php -------------------------------------------------------------------------------- /library/Zend/Feed/Abstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Feed/Abstract.php -------------------------------------------------------------------------------- /library/Zend/Feed/Atom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Feed/Atom.php -------------------------------------------------------------------------------- /library/Zend/Feed/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Feed/Builder.php -------------------------------------------------------------------------------- /library/Zend/Feed/Element.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Feed/Element.php -------------------------------------------------------------------------------- /library/Zend/Feed/Entry/Atom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Feed/Entry/Atom.php -------------------------------------------------------------------------------- /library/Zend/Feed/Entry/Rss.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Feed/Entry/Rss.php -------------------------------------------------------------------------------- /library/Zend/Feed/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Feed/Exception.php -------------------------------------------------------------------------------- /library/Zend/Feed/Reader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Feed/Reader.php -------------------------------------------------------------------------------- /library/Zend/Feed/Rss.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Feed/Rss.php -------------------------------------------------------------------------------- /library/Zend/File/Transfer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/File/Transfer.php -------------------------------------------------------------------------------- /library/Zend/Filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Filter.php -------------------------------------------------------------------------------- /library/Zend/Filter/Alnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Filter/Alnum.php -------------------------------------------------------------------------------- /library/Zend/Filter/Alpha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Filter/Alpha.php -------------------------------------------------------------------------------- /library/Zend/Filter/BaseName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Filter/BaseName.php -------------------------------------------------------------------------------- /library/Zend/Filter/Callback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Filter/Callback.php -------------------------------------------------------------------------------- /library/Zend/Filter/Decrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Filter/Decrypt.php -------------------------------------------------------------------------------- /library/Zend/Filter/Digits.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Filter/Digits.php -------------------------------------------------------------------------------- /library/Zend/Filter/Dir.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Filter/Dir.php -------------------------------------------------------------------------------- /library/Zend/Filter/Encrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Filter/Encrypt.php -------------------------------------------------------------------------------- /library/Zend/Filter/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Filter/Exception.php -------------------------------------------------------------------------------- /library/Zend/Filter/Inflector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Filter/Inflector.php -------------------------------------------------------------------------------- /library/Zend/Filter/Input.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Filter/Input.php -------------------------------------------------------------------------------- /library/Zend/Filter/Int.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Filter/Int.php -------------------------------------------------------------------------------- /library/Zend/Filter/Interface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Filter/Interface.php -------------------------------------------------------------------------------- /library/Zend/Filter/RealPath.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Filter/RealPath.php -------------------------------------------------------------------------------- /library/Zend/Filter/StringTrim.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Filter/StringTrim.php -------------------------------------------------------------------------------- /library/Zend/Filter/StripTags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Filter/StripTags.php -------------------------------------------------------------------------------- /library/Zend/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Form.php -------------------------------------------------------------------------------- /library/Zend/Form/DisplayGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Form/DisplayGroup.php -------------------------------------------------------------------------------- /library/Zend/Form/Element.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Form/Element.php -------------------------------------------------------------------------------- /library/Zend/Form/Element/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Form/Element/File.php -------------------------------------------------------------------------------- /library/Zend/Form/Element/Hash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Form/Element/Hash.php -------------------------------------------------------------------------------- /library/Zend/Form/Element/Text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Form/Element/Text.php -------------------------------------------------------------------------------- /library/Zend/Form/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Form/Exception.php -------------------------------------------------------------------------------- /library/Zend/Form/SubForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Form/SubForm.php -------------------------------------------------------------------------------- /library/Zend/Gdata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Gdata.php -------------------------------------------------------------------------------- /library/Zend/Gdata/App.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Gdata/App.php -------------------------------------------------------------------------------- /library/Zend/Gdata/App/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Gdata/App/Base.php -------------------------------------------------------------------------------- /library/Zend/Gdata/App/Entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Gdata/App/Entry.php -------------------------------------------------------------------------------- /library/Zend/Gdata/App/Feed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Gdata/App/Feed.php -------------------------------------------------------------------------------- /library/Zend/Gdata/App/Util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Gdata/App/Util.php -------------------------------------------------------------------------------- /library/Zend/Gdata/AuthSub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Gdata/AuthSub.php -------------------------------------------------------------------------------- /library/Zend/Gdata/Books.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Gdata/Books.php -------------------------------------------------------------------------------- /library/Zend/Gdata/Calendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Gdata/Calendar.php -------------------------------------------------------------------------------- /library/Zend/Gdata/ClientLogin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Gdata/ClientLogin.php -------------------------------------------------------------------------------- /library/Zend/Gdata/Docs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Gdata/Docs.php -------------------------------------------------------------------------------- /library/Zend/Gdata/Docs/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Gdata/Docs/Query.php -------------------------------------------------------------------------------- /library/Zend/Gdata/DublinCore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Gdata/DublinCore.php -------------------------------------------------------------------------------- /library/Zend/Gdata/Entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Gdata/Entry.php -------------------------------------------------------------------------------- /library/Zend/Gdata/Exif.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Gdata/Exif.php -------------------------------------------------------------------------------- /library/Zend/Gdata/Exif/Entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Gdata/Exif/Entry.php -------------------------------------------------------------------------------- /library/Zend/Gdata/Exif/Feed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Gdata/Exif/Feed.php -------------------------------------------------------------------------------- /library/Zend/Gdata/Extension.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Gdata/Extension.php -------------------------------------------------------------------------------- /library/Zend/Gdata/Feed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Gdata/Feed.php -------------------------------------------------------------------------------- /library/Zend/Gdata/Gapps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Gdata/Gapps.php -------------------------------------------------------------------------------- /library/Zend/Gdata/Gapps/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Gdata/Gapps/Error.php -------------------------------------------------------------------------------- /library/Zend/Gdata/Gapps/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Gdata/Gapps/Query.php -------------------------------------------------------------------------------- /library/Zend/Gdata/Gbase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Gdata/Gbase.php -------------------------------------------------------------------------------- /library/Zend/Gdata/Gbase/Entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Gdata/Gbase/Entry.php -------------------------------------------------------------------------------- /library/Zend/Gdata/Gbase/Feed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Gdata/Gbase/Feed.php -------------------------------------------------------------------------------- /library/Zend/Gdata/Gbase/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Gdata/Gbase/Query.php -------------------------------------------------------------------------------- /library/Zend/Gdata/Geo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Gdata/Geo.php -------------------------------------------------------------------------------- /library/Zend/Gdata/Geo/Entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Gdata/Geo/Entry.php -------------------------------------------------------------------------------- /library/Zend/Gdata/Geo/Feed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Gdata/Geo/Feed.php -------------------------------------------------------------------------------- /library/Zend/Gdata/Health.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Gdata/Health.php -------------------------------------------------------------------------------- /library/Zend/Gdata/HttpClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Gdata/HttpClient.php -------------------------------------------------------------------------------- /library/Zend/Gdata/Media.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Gdata/Media.php -------------------------------------------------------------------------------- /library/Zend/Gdata/Media/Entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Gdata/Media/Entry.php -------------------------------------------------------------------------------- /library/Zend/Gdata/Media/Feed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Gdata/Media/Feed.php -------------------------------------------------------------------------------- /library/Zend/Gdata/MimeFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Gdata/MimeFile.php -------------------------------------------------------------------------------- /library/Zend/Gdata/Photos.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Gdata/Photos.php -------------------------------------------------------------------------------- /library/Zend/Gdata/Query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Gdata/Query.php -------------------------------------------------------------------------------- /library/Zend/Gdata/YouTube.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Gdata/YouTube.php -------------------------------------------------------------------------------- /library/Zend/Http/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Http/Client.php -------------------------------------------------------------------------------- /library/Zend/Http/Cookie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Http/Cookie.php -------------------------------------------------------------------------------- /library/Zend/Http/CookieJar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Http/CookieJar.php -------------------------------------------------------------------------------- /library/Zend/Http/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Http/Exception.php -------------------------------------------------------------------------------- /library/Zend/Http/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Http/Response.php -------------------------------------------------------------------------------- /library/Zend/InfoCard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/InfoCard.php -------------------------------------------------------------------------------- /library/Zend/InfoCard/Cipher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/InfoCard/Cipher.php -------------------------------------------------------------------------------- /library/Zend/InfoCard/Claims.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/InfoCard/Claims.php -------------------------------------------------------------------------------- /library/Zend/Json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Json.php -------------------------------------------------------------------------------- /library/Zend/Json/Decoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Json/Decoder.php -------------------------------------------------------------------------------- /library/Zend/Json/Encoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Json/Encoder.php -------------------------------------------------------------------------------- /library/Zend/Json/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Json/Exception.php -------------------------------------------------------------------------------- /library/Zend/Json/Expr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Json/Expr.php -------------------------------------------------------------------------------- /library/Zend/Json/Server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Json/Server.php -------------------------------------------------------------------------------- /library/Zend/Json/Server/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Json/Server/Cache.php -------------------------------------------------------------------------------- /library/Zend/Json/Server/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Json/Server/Error.php -------------------------------------------------------------------------------- /library/Zend/Json/Server/Smd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Json/Server/Smd.php -------------------------------------------------------------------------------- /library/Zend/Layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Layout.php -------------------------------------------------------------------------------- /library/Zend/Layout/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Layout/Exception.php -------------------------------------------------------------------------------- /library/Zend/Ldap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Ldap.php -------------------------------------------------------------------------------- /library/Zend/Ldap/Attribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Ldap/Attribute.php -------------------------------------------------------------------------------- /library/Zend/Ldap/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Ldap/Collection.php -------------------------------------------------------------------------------- /library/Zend/Ldap/Converter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Ldap/Converter.php -------------------------------------------------------------------------------- /library/Zend/Ldap/Dn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Ldap/Dn.php -------------------------------------------------------------------------------- /library/Zend/Ldap/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Ldap/Exception.php -------------------------------------------------------------------------------- /library/Zend/Ldap/Filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Ldap/Filter.php -------------------------------------------------------------------------------- /library/Zend/Ldap/Filter/And.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Ldap/Filter/And.php -------------------------------------------------------------------------------- /library/Zend/Ldap/Filter/Mask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Ldap/Filter/Mask.php -------------------------------------------------------------------------------- /library/Zend/Ldap/Filter/Not.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Ldap/Filter/Not.php -------------------------------------------------------------------------------- /library/Zend/Ldap/Filter/Or.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Ldap/Filter/Or.php -------------------------------------------------------------------------------- /library/Zend/Ldap/Ldif/Encoder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Ldap/Ldif/Encoder.php -------------------------------------------------------------------------------- /library/Zend/Ldap/Node.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Ldap/Node.php -------------------------------------------------------------------------------- /library/Zend/Ldap/Node/RootDse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Ldap/Node/RootDse.php -------------------------------------------------------------------------------- /library/Zend/Ldap/Node/Schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Ldap/Node/Schema.php -------------------------------------------------------------------------------- /library/Zend/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Loader.php -------------------------------------------------------------------------------- /library/Zend/Loader/Autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Loader/Autoloader.php -------------------------------------------------------------------------------- /library/Zend/Loader/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Loader/Exception.php -------------------------------------------------------------------------------- /library/Zend/Locale.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale.php -------------------------------------------------------------------------------- /library/Zend/Locale/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data.php -------------------------------------------------------------------------------- /library/Zend/Locale/Data/aa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/aa.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/aa_DJ.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/aa_DJ.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/aa_ER.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/aa_ER.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/aa_ET.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/aa_ET.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/af.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/af.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/af_NA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/af_NA.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/af_ZA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/af_ZA.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ak.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ak.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ak_GH.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ak_GH.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/am.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/am.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/am_ET.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/am_ET.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ar.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ar_AE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ar_AE.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ar_BH.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ar_BH.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ar_DZ.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ar_DZ.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ar_EG.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ar_EG.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ar_IQ.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ar_IQ.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ar_JO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ar_JO.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ar_KW.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ar_KW.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ar_LB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ar_LB.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ar_LY.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ar_LY.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ar_MA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ar_MA.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ar_OM.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ar_OM.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ar_QA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ar_QA.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ar_SA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ar_SA.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ar_SD.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ar_SD.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ar_SY.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ar_SY.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ar_TN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ar_TN.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ar_YE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ar_YE.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/as.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/as.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/as_IN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/as_IN.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/az.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/az.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/az_AZ.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/az_AZ.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/be.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/be.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/be_BY.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/be_BY.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/bg.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/bg_BG.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/bg_BG.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/bn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/bn.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/bn_BD.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/bn_BD.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/bn_IN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/bn_IN.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/bo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/bo.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/bo_CN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/bo_CN.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/bo_IN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/bo_IN.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/bs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/bs.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/bs_BA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/bs_BA.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/byn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/byn.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ca.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ca.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ca_ES.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ca_ES.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/cch.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/cch.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/cop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/cop.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/cs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/cs.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/cs_CZ.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/cs_CZ.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/cy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/cy.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/cy_GB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/cy_GB.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/da.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/da.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/da_DK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/da_DK.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/de.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/de.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/de_AT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/de_AT.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/de_BE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/de_BE.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/de_CH.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/de_CH.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/de_DE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/de_DE.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/de_LI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/de_LI.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/de_LU.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/de_LU.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/dv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/dv.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/dv_MV.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/dv_MV.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/dz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/dz.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/dz_BT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/dz_BT.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ee.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ee.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ee_GH.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ee_GH.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ee_TG.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ee_TG.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/el.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/el.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/el_CY.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/el_CY.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/el_GR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/el_GR.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/en.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/en.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/en_AS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/en_AS.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/en_AU.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/en_AU.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/en_BE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/en_BE.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/en_BW.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/en_BW.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/en_BZ.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/en_BZ.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/en_CA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/en_CA.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/en_GB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/en_GB.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/en_GU.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/en_GU.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/en_HK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/en_HK.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/en_IE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/en_IE.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/en_IN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/en_IN.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/en_JM.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/en_JM.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/en_MH.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/en_MH.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/en_MP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/en_MP.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/en_MT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/en_MT.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/en_NA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/en_NA.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/en_NZ.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/en_NZ.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/en_PH.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/en_PH.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/en_PK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/en_PK.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/en_SG.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/en_SG.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/en_TT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/en_TT.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/en_UM.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/en_UM.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/en_US.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/en_US.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/en_VI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/en_VI.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/en_ZA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/en_ZA.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/en_ZW.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/en_ZW.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/eo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/eo.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/es.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/es.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/es_AR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/es_AR.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/es_BO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/es_BO.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/es_CL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/es_CL.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/es_CO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/es_CO.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/es_CR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/es_CR.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/es_DO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/es_DO.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/es_EC.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/es_EC.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/es_ES.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/es_ES.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/es_GT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/es_GT.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/es_HN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/es_HN.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/es_MX.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/es_MX.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/es_NI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/es_NI.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/es_PA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/es_PA.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/es_PE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/es_PE.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/es_PR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/es_PR.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/es_PY.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/es_PY.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/es_SV.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/es_SV.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/es_US.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/es_US.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/es_UY.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/es_UY.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/es_VE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/es_VE.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/et.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/et.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/et_EE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/et_EE.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/eu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/eu.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/eu_ES.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/eu_ES.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/fa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/fa.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/fa_AF.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/fa_AF.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/fa_IR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/fa_IR.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/fi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/fi.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/fi_FI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/fi_FI.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/fil.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/fil.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/fo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/fo.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/fo_FO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/fo_FO.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/fr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/fr.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/fr_BE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/fr_BE.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/fr_CA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/fr_CA.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/fr_CH.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/fr_CH.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/fr_FR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/fr_FR.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/fr_LU.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/fr_LU.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/fr_MC.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/fr_MC.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/fr_SN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/fr_SN.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/fur.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/fur.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ga.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ga.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ga_IE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ga_IE.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/gaa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/gaa.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/gez.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/gez.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/gl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/gl.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/gl_ES.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/gl_ES.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/gsw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/gsw.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/gu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/gu.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/gu_IN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/gu_IN.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/gv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/gv.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/gv_GB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/gv_GB.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ha.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ha.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ha_GH.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ha_GH.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ha_NE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ha_NE.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ha_NG.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ha_NG.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ha_SD.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ha_SD.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/haw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/haw.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/he.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/he.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/he_IL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/he_IL.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/hi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/hi.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/hi_IN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/hi_IN.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/hr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/hr.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/hr_HR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/hr_HR.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/hu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/hu.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/hu_HU.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/hu_HU.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/hy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/hy.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/hy_AM.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/hy_AM.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ia.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ia.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/id.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/id.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/id_ID.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/id_ID.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ig.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ig_NG.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ig_NG.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ii.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ii.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ii_CN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ii_CN.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/in.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/is.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/is.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/is_IS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/is_IS.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/it.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/it.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/it_CH.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/it_CH.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/it_IT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/it_IT.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/iu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/iu.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/iw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/iw.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ja.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ja.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ja_JP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ja_JP.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ka.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ka.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ka_GE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ka_GE.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/kaj.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/kaj.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/kam.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/kam.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/kcg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/kcg.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/kfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/kfo.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/kk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/kk.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/kk_KZ.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/kk_KZ.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/kl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/kl.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/kl_GL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/kl_GL.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/km.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/km.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/km_KH.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/km_KH.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/kn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/kn.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/kn_IN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/kn_IN.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ko.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ko.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ko_KR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ko_KR.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/kok.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/kok.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/kpe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/kpe.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ku.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ku.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ku_IQ.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ku_IQ.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ku_IR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ku_IR.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ku_SY.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ku_SY.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ku_TR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ku_TR.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/kw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/kw.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/kw_GB.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/kw_GB.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ky.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ky.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ky_KG.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ky_KG.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ln.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ln.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ln_CD.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ln_CD.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ln_CG.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ln_CG.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/lo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/lo.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/lo_LA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/lo_LA.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/lt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/lt.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/lt_LT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/lt_LT.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/lv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/lv.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/lv_LV.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/lv_LV.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/mk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/mk.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/mk_MK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/mk_MK.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ml.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ml_IN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ml_IN.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/mn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/mn.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/mn_CN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/mn_CN.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/mn_MN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/mn_MN.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/mo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/mo.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/mr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/mr.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/mr_IN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/mr_IN.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ms.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ms.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ms_BN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ms_BN.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ms_MY.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ms_MY.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/mt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/mt.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/mt_MT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/mt_MT.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/my.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/my.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/my_MM.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/my_MM.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/nb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/nb.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/nb_NO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/nb_NO.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/nds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/nds.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ne.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ne.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ne_IN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ne_IN.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ne_NP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ne_NP.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/nl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/nl.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/nl_BE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/nl_BE.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/nl_NL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/nl_NL.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/nn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/nn.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/nn_NO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/nn_NO.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/no.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/no.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/nr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/nr.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/nr_ZA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/nr_ZA.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/nso.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/nso.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ny.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ny.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ny_MW.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ny_MW.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/oc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/oc.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/oc_FR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/oc_FR.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/om.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/om.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/om_ET.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/om_ET.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/om_KE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/om_KE.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/or.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/or.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/or_IN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/or_IN.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/pa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/pa.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/pa_IN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/pa_IN.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/pa_PK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/pa_PK.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/pl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/pl.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/pl_PL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/pl_PL.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ps.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ps_AF.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ps_AF.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/pt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/pt.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/pt_BR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/pt_BR.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/pt_PT.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/pt_PT.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ro.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ro_MD.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ro_MD.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ro_RO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ro_RO.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/root.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/root.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ru.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ru.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ru_RU.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ru_RU.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ru_UA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ru_UA.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/rw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/rw.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/rw_RW.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/rw_RW.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/sa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/sa.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/sa_IN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/sa_IN.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/se.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/se.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/se_FI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/se_FI.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/se_NO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/se_NO.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/sh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/sh.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/sh_BA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/sh_BA.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/sh_CS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/sh_CS.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/sh_YU.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/sh_YU.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/si.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/si.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/si_LK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/si_LK.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/sid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/sid.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/sk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/sk.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/sk_SK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/sk_SK.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/sl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/sl.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/sl_SI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/sl_SI.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/so.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/so.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/so_DJ.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/so_DJ.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/so_ET.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/so_ET.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/so_KE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/so_KE.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/so_SO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/so_SO.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/sq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/sq.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/sq_AL.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/sq_AL.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/sr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/sr.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/sr_BA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/sr_BA.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/sr_CS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/sr_CS.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/sr_ME.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/sr_ME.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/sr_RS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/sr_RS.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/sr_YU.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/sr_YU.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ss.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ss.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ss_SZ.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ss_SZ.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ss_ZA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ss_ZA.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/st.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/st.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/st_LS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/st_LS.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/st_ZA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/st_ZA.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/sv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/sv.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/sv_FI.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/sv_FI.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/sv_SE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/sv_SE.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/sw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/sw.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/sw_KE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/sw_KE.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/sw_TZ.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/sw_TZ.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/syr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/syr.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ta.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ta_IN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ta_IN.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/te.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/te.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/te_IN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/te_IN.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/tg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/tg.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/tg_TJ.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/tg_TJ.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/th.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/th.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/th_TH.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/th_TH.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ti.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ti.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ti_ER.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ti_ER.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ti_ET.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ti_ET.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/tig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/tig.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/tl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/tl.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/tn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/tn.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/tn_ZA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/tn_ZA.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/to.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/to.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/to_TO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/to_TO.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/tr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/tr.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/tr_TR.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/tr_TR.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/trv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/trv.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ts.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ts_ZA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ts_ZA.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/tt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/tt.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/tt_RU.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/tt_RU.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ug.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ug.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ug_CN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ug_CN.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/uk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/uk.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/uk_UA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/uk_UA.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ur.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ur.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ur_IN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ur_IN.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ur_PK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ur_PK.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/uz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/uz.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/uz_AF.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/uz_AF.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/uz_UZ.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/uz_UZ.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ve.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ve.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/ve_ZA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/ve_ZA.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/vi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/vi.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/vi_VN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/vi_VN.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/wal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/wal.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/wo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/wo.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/wo_SN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/wo_SN.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/xh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/xh.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/xh_ZA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/xh_ZA.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/yo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/yo.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/yo_NG.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/yo_NG.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/zh.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/zh.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/zh_CN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/zh_CN.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/zh_HK.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/zh_HK.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/zh_MO.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/zh_MO.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/zh_SG.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/zh_SG.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/zh_TW.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/zh_TW.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/zu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/zu.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Data/zu_ZA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Data/zu_ZA.xml -------------------------------------------------------------------------------- /library/Zend/Locale/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Exception.php -------------------------------------------------------------------------------- /library/Zend/Locale/Format.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Format.php -------------------------------------------------------------------------------- /library/Zend/Locale/Math.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Locale/Math.php -------------------------------------------------------------------------------- /library/Zend/Log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Log.php -------------------------------------------------------------------------------- /library/Zend/Log/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Log/Exception.php -------------------------------------------------------------------------------- /library/Zend/Log/Formatter/Xml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Log/Formatter/Xml.php -------------------------------------------------------------------------------- /library/Zend/Log/Writer/Db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Log/Writer/Db.php -------------------------------------------------------------------------------- /library/Zend/Log/Writer/Mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Log/Writer/Mail.php -------------------------------------------------------------------------------- /library/Zend/Log/Writer/Mock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Log/Writer/Mock.php -------------------------------------------------------------------------------- /library/Zend/Log/Writer/Null.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Log/Writer/Null.php -------------------------------------------------------------------------------- /library/Zend/Log/Writer/Stream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Log/Writer/Stream.php -------------------------------------------------------------------------------- /library/Zend/Log/Writer/Syslog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Log/Writer/Syslog.php -------------------------------------------------------------------------------- /library/Zend/Mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Mail.php -------------------------------------------------------------------------------- /library/Zend/Mail/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Mail/Exception.php -------------------------------------------------------------------------------- /library/Zend/Mail/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Mail/Message.php -------------------------------------------------------------------------------- /library/Zend/Mail/Message/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Mail/Message/File.php -------------------------------------------------------------------------------- /library/Zend/Mail/Part.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Mail/Part.php -------------------------------------------------------------------------------- /library/Zend/Mail/Part/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Mail/Part/File.php -------------------------------------------------------------------------------- /library/Zend/Mail/Storage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Mail/Storage.php -------------------------------------------------------------------------------- /library/Zend/Mail/Storage/Imap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Mail/Storage/Imap.php -------------------------------------------------------------------------------- /library/Zend/Mail/Storage/Mbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Mail/Storage/Mbox.php -------------------------------------------------------------------------------- /library/Zend/Mail/Storage/Pop3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Mail/Storage/Pop3.php -------------------------------------------------------------------------------- /library/Zend/Measure/Angle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Measure/Angle.php -------------------------------------------------------------------------------- /library/Zend/Measure/Area.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Measure/Area.php -------------------------------------------------------------------------------- /library/Zend/Measure/Binary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Measure/Binary.php -------------------------------------------------------------------------------- /library/Zend/Measure/Energy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Measure/Energy.php -------------------------------------------------------------------------------- /library/Zend/Measure/Force.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Measure/Force.php -------------------------------------------------------------------------------- /library/Zend/Measure/Length.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Measure/Length.php -------------------------------------------------------------------------------- /library/Zend/Measure/Number.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Measure/Number.php -------------------------------------------------------------------------------- /library/Zend/Measure/Power.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Measure/Power.php -------------------------------------------------------------------------------- /library/Zend/Measure/Speed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Measure/Speed.php -------------------------------------------------------------------------------- /library/Zend/Measure/Time.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Measure/Time.php -------------------------------------------------------------------------------- /library/Zend/Measure/Torque.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Measure/Torque.php -------------------------------------------------------------------------------- /library/Zend/Measure/Volume.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Measure/Volume.php -------------------------------------------------------------------------------- /library/Zend/Measure/Weight.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Measure/Weight.php -------------------------------------------------------------------------------- /library/Zend/Memory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Memory.php -------------------------------------------------------------------------------- /library/Zend/Memory/Manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Memory/Manager.php -------------------------------------------------------------------------------- /library/Zend/Memory/Value.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Memory/Value.php -------------------------------------------------------------------------------- /library/Zend/Mime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Mime.php -------------------------------------------------------------------------------- /library/Zend/Mime/Decode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Mime/Decode.php -------------------------------------------------------------------------------- /library/Zend/Mime/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Mime/Exception.php -------------------------------------------------------------------------------- /library/Zend/Mime/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Mime/Message.php -------------------------------------------------------------------------------- /library/Zend/Mime/Part.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Mime/Part.php -------------------------------------------------------------------------------- /library/Zend/Navigation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Navigation.php -------------------------------------------------------------------------------- /library/Zend/OpenId.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/OpenId.php -------------------------------------------------------------------------------- /library/Zend/Paginator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Paginator.php -------------------------------------------------------------------------------- /library/Zend/Pdf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Pdf.php -------------------------------------------------------------------------------- /library/Zend/Pdf/.Page.php.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Pdf/.Page.php.swp -------------------------------------------------------------------------------- /library/Zend/Pdf/Action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Pdf/Action.php -------------------------------------------------------------------------------- /library/Zend/Pdf/Action/URI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Pdf/Action/URI.php -------------------------------------------------------------------------------- /library/Zend/Pdf/Annotation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Pdf/Annotation.php -------------------------------------------------------------------------------- /library/Zend/Pdf/Cmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Pdf/Cmap.php -------------------------------------------------------------------------------- /library/Zend/Pdf/Color.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Pdf/Color.php -------------------------------------------------------------------------------- /library/Zend/Pdf/Color/Cmyk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Pdf/Color/Cmyk.php -------------------------------------------------------------------------------- /library/Zend/Pdf/Color/Html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Pdf/Color/Html.php -------------------------------------------------------------------------------- /library/Zend/Pdf/Color/Rgb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Pdf/Color/Rgb.php -------------------------------------------------------------------------------- /library/Zend/Pdf/Element.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Pdf/Element.php -------------------------------------------------------------------------------- /library/Zend/Pdf/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Pdf/Exception.php -------------------------------------------------------------------------------- /library/Zend/Pdf/FileParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Pdf/FileParser.php -------------------------------------------------------------------------------- /library/Zend/Pdf/Font.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Pdf/Font.php -------------------------------------------------------------------------------- /library/Zend/Pdf/Image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Pdf/Image.php -------------------------------------------------------------------------------- /library/Zend/Pdf/NameTree.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Pdf/NameTree.php -------------------------------------------------------------------------------- /library/Zend/Pdf/Outline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Pdf/Outline.php -------------------------------------------------------------------------------- /library/Zend/Pdf/Page.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Pdf/Page.php -------------------------------------------------------------------------------- /library/Zend/Pdf/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Pdf/Parser.php -------------------------------------------------------------------------------- /library/Zend/Pdf/Resource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Pdf/Resource.php -------------------------------------------------------------------------------- /library/Zend/Pdf/Style.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Pdf/Style.php -------------------------------------------------------------------------------- /library/Zend/Pdf/Target.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Pdf/Target.php -------------------------------------------------------------------------------- /library/Zend/Pdf/Trailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Pdf/Trailer.php -------------------------------------------------------------------------------- /library/Zend/ProgressBar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/ProgressBar.php -------------------------------------------------------------------------------- /library/Zend/Queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Queue.php -------------------------------------------------------------------------------- /library/Zend/Queue/Message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Queue/Message.php -------------------------------------------------------------------------------- /library/Zend/Registry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Registry.php -------------------------------------------------------------------------------- /library/Zend/Rest/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Rest/Client.php -------------------------------------------------------------------------------- /library/Zend/Rest/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Rest/Exception.php -------------------------------------------------------------------------------- /library/Zend/Rest/Route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Rest/Route.php -------------------------------------------------------------------------------- /library/Zend/Rest/Server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Rest/Server.php -------------------------------------------------------------------------------- /library/Zend/Search/Lucene.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Search/Lucene.php -------------------------------------------------------------------------------- /library/Zend/Server/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Server/Cache.php -------------------------------------------------------------------------------- /library/Zend/Service/Amazon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Service/Amazon.php -------------------------------------------------------------------------------- /library/Zend/Service/Flickr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Service/Flickr.php -------------------------------------------------------------------------------- /library/Zend/Service/Simpy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Service/Simpy.php -------------------------------------------------------------------------------- /library/Zend/Service/Yahoo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Service/Yahoo.php -------------------------------------------------------------------------------- /library/Zend/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Session.php -------------------------------------------------------------------------------- /library/Zend/Soap/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Soap/Client.php -------------------------------------------------------------------------------- /library/Zend/Soap/Server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Soap/Server.php -------------------------------------------------------------------------------- /library/Zend/Soap/Wsdl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Soap/Wsdl.php -------------------------------------------------------------------------------- /library/Zend/Tag/Cloud.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Tag/Cloud.php -------------------------------------------------------------------------------- /library/Zend/Tag/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Tag/Exception.php -------------------------------------------------------------------------------- /library/Zend/Tag/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Tag/Item.php -------------------------------------------------------------------------------- /library/Zend/Tag/ItemList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Tag/ItemList.php -------------------------------------------------------------------------------- /library/Zend/Tag/Taggable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Tag/Taggable.php -------------------------------------------------------------------------------- /library/Zend/Test/DbAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Test/DbAdapter.php -------------------------------------------------------------------------------- /library/Zend/Text/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Text/Exception.php -------------------------------------------------------------------------------- /library/Zend/Text/Figlet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Text/Figlet.php -------------------------------------------------------------------------------- /library/Zend/Text/MultiByte.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Text/MultiByte.php -------------------------------------------------------------------------------- /library/Zend/Text/Table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Text/Table.php -------------------------------------------------------------------------------- /library/Zend/Text/Table/Row.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Text/Table/Row.php -------------------------------------------------------------------------------- /library/Zend/TimeSync.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/TimeSync.php -------------------------------------------------------------------------------- /library/Zend/TimeSync/Ntp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/TimeSync/Ntp.php -------------------------------------------------------------------------------- /library/Zend/TimeSync/Sntp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/TimeSync/Sntp.php -------------------------------------------------------------------------------- /library/Zend/Translate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Translate.php -------------------------------------------------------------------------------- /library/Zend/Uri.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Uri.php -------------------------------------------------------------------------------- /library/Zend/Uri/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Uri/Exception.php -------------------------------------------------------------------------------- /library/Zend/Uri/Http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Uri/Http.php -------------------------------------------------------------------------------- /library/Zend/Validate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Validate.php -------------------------------------------------------------------------------- /library/Zend/Validate/Alnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Validate/Alnum.php -------------------------------------------------------------------------------- /library/Zend/Validate/Alpha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Validate/Alpha.php -------------------------------------------------------------------------------- /library/Zend/Validate/Ccnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Validate/Ccnum.php -------------------------------------------------------------------------------- /library/Zend/Validate/Date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Validate/Date.php -------------------------------------------------------------------------------- /library/Zend/Validate/Float.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Validate/Float.php -------------------------------------------------------------------------------- /library/Zend/Validate/Hex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Validate/Hex.php -------------------------------------------------------------------------------- /library/Zend/Validate/Iban.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Validate/Iban.php -------------------------------------------------------------------------------- /library/Zend/Validate/Int.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Validate/Int.php -------------------------------------------------------------------------------- /library/Zend/Validate/Ip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Validate/Ip.php -------------------------------------------------------------------------------- /library/Zend/Validate/Regex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Validate/Regex.php -------------------------------------------------------------------------------- /library/Zend/Version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/Version.php -------------------------------------------------------------------------------- /library/Zend/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/View.php -------------------------------------------------------------------------------- /library/Zend/View/Abstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/View/Abstract.php -------------------------------------------------------------------------------- /library/Zend/View/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/View/Exception.php -------------------------------------------------------------------------------- /library/Zend/View/Interface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/View/Interface.php -------------------------------------------------------------------------------- /library/Zend/View/Stream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/View/Stream.php -------------------------------------------------------------------------------- /library/Zend/XmlRpc/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/XmlRpc/Client.php -------------------------------------------------------------------------------- /library/Zend/XmlRpc/Fault.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/XmlRpc/Fault.php -------------------------------------------------------------------------------- /library/Zend/XmlRpc/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/XmlRpc/Request.php -------------------------------------------------------------------------------- /library/Zend/XmlRpc/Server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/XmlRpc/Server.php -------------------------------------------------------------------------------- /library/Zend/XmlRpc/Value.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/Zend/XmlRpc/Value.php -------------------------------------------------------------------------------- /library/eVias/Bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/eVias/Bootstrap.php -------------------------------------------------------------------------------- /library/eVias/Catalogue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/eVias/Catalogue.php -------------------------------------------------------------------------------- /library/eVias/Catalogue/Article/Collection.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /library/eVias/Catalogue/Article/Exception.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /library/eVias/Catalogue/Category/Collection.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /library/eVias/Catalogue/Category/Exception.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /library/eVias/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/eVias/Collection.php -------------------------------------------------------------------------------- /library/eVias/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/eVias/Exception.php -------------------------------------------------------------------------------- /library/eVias/Mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/eVias/Mail.php -------------------------------------------------------------------------------- /library/eVias/Mail/Address.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/eVias/Mail/Address.php -------------------------------------------------------------------------------- /library/eVias/Routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/eVias/Routes.php -------------------------------------------------------------------------------- /library/eVias/Service/Member.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /library/eVias/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/library/eVias/View.php -------------------------------------------------------------------------------- /native/eRemote.imeals.apps/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | out/production/eRemote/ 3 | -------------------------------------------------------------------------------- /office/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/office/.htaccess -------------------------------------------------------------------------------- /office/.htpasswd: -------------------------------------------------------------------------------- 1 | admin:$apr1$Ji5EBxWb$YwSkdm5f97pnmkK6C9Hqf. 2 | -------------------------------------------------------------------------------- /office/application/modules/manage/controllers/ReservationController.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /office/application/modules/manage/views/scripts/gallery/index.php: -------------------------------------------------------------------------------- 1 |

view manage/gallery/index rendered

2 | -------------------------------------------------------------------------------- /office/application/modules/manage/views/scripts/menu/list-category.php: -------------------------------------------------------------------------------- 1 |

admin/manage/menu/list-category view rendered

-------------------------------------------------------------------------------- /office/application/modules/manage/views/scripts/menu/list-item.php: -------------------------------------------------------------------------------- 1 |

admin/manage/menu/list-item view rendered

-------------------------------------------------------------------------------- /office/application/modules/manage/views/scripts/menu/modify-category.php: -------------------------------------------------------------------------------- 1 |

admin/manage/menu/modify-category view rendered

-------------------------------------------------------------------------------- /office/application/modules/manage/views/scripts/menu/modify-item.php: -------------------------------------------------------------------------------- 1 |

admin/manage/menu/modify-item view rendered

-------------------------------------------------------------------------------- /office/application/modules/manage/views/scripts/orders/index.php: -------------------------------------------------------------------------------- 1 |

admin/manage/orders/index view rendered

2 | -------------------------------------------------------------------------------- /office/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/office/index.html -------------------------------------------------------------------------------- /office/library/AppLib: -------------------------------------------------------------------------------- 1 | ../../library/AppLib -------------------------------------------------------------------------------- /office/library/BackLib/Lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/office/library/BackLib/Lang.php -------------------------------------------------------------------------------- /office/library/BackLib/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/office/library/BackLib/User.php -------------------------------------------------------------------------------- /office/library/Zend: -------------------------------------------------------------------------------- 1 | ../../library/Zend -------------------------------------------------------------------------------- /office/library/eVias: -------------------------------------------------------------------------------- 1 | ../../library/eVias -------------------------------------------------------------------------------- /office/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/office/public/favicon.ico -------------------------------------------------------------------------------- /office/public/images/FOR_COMMIT: -------------------------------------------------------------------------------- 1 | ONLY FOR COMMIT 2 | -------------------------------------------------------------------------------- /office/public/images/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/office/public/images/close.gif -------------------------------------------------------------------------------- /office/public/images/dot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/office/public/images/dot.gif -------------------------------------------------------------------------------- /office/public/images/menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/office/public/images/menu.gif -------------------------------------------------------------------------------- /office/public/images/new.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/office/public/images/new.wav -------------------------------------------------------------------------------- /office/public/images/next.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/office/public/images/next.gif -------------------------------------------------------------------------------- /office/public/images/prev.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/office/public/images/prev.gif -------------------------------------------------------------------------------- /office/public/images/tabs-l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/office/public/images/tabs-l.gif -------------------------------------------------------------------------------- /office/public/images/tabs-r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/office/public/images/tabs-r.gif -------------------------------------------------------------------------------- /office/public/images/tray.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/office/public/images/tray.gif -------------------------------------------------------------------------------- /office/public/images/ul-ul.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/office/public/images/ul-ul.gif -------------------------------------------------------------------------------- /office/public/images/ul.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/office/public/images/ul.gif -------------------------------------------------------------------------------- /office/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/office/public/index.php -------------------------------------------------------------------------------- /office/public/js/e-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/office/public/js/e-ui.js -------------------------------------------------------------------------------- /office/public/js/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/office/public/js/jquery-ui.js -------------------------------------------------------------------------------- /office/public/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/office/public/js/jquery.js -------------------------------------------------------------------------------- /office/public/js/nyromodal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/office/public/js/nyromodal.js -------------------------------------------------------------------------------- /office/public/js/switcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/office/public/js/switcher.js -------------------------------------------------------------------------------- /office/public/js/timepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/office/public/js/timepicker.js -------------------------------------------------------------------------------- /office/public/js/toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/office/public/js/toggle.js -------------------------------------------------------------------------------- /office/public/js/ui.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/office/public/js/ui.core.js -------------------------------------------------------------------------------- /office/public/js/ui.tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/office/public/js/ui.tabs.js -------------------------------------------------------------------------------- /office/public/styles/1col.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/office/public/styles/1col.css -------------------------------------------------------------------------------- /office/public/styles/2col.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/office/public/styles/2col.css -------------------------------------------------------------------------------- /office/public/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/office/public/styles/main.css -------------------------------------------------------------------------------- /office/public/styles/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/office/public/styles/print.css -------------------------------------------------------------------------------- /office/public/styles/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/office/public/styles/styles.css -------------------------------------------------------------------------------- /website/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/website/.htaccess -------------------------------------------------------------------------------- /website/application/modules/restaurant/views/scripts/menu/index.php: -------------------------------------------------------------------------------- 1 |

2 | restaurant/menu/index view rendered 3 |

-------------------------------------------------------------------------------- /website/application/modules/restaurant/views/scripts/orders/index.php: -------------------------------------------------------------------------------- 1 |

2 | restaurant/orders/index view rendered 3 |

-------------------------------------------------------------------------------- /website/library/AppLib: -------------------------------------------------------------------------------- 1 | ../../library/AppLib -------------------------------------------------------------------------------- /website/library/Zend: -------------------------------------------------------------------------------- 1 | ../../library/Zend -------------------------------------------------------------------------------- /website/library/eVias: -------------------------------------------------------------------------------- 1 | ../../library/eVias -------------------------------------------------------------------------------- /website/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/website/public/favicon.ico -------------------------------------------------------------------------------- /website/public/images/49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/website/public/images/49.png -------------------------------------------------------------------------------- /website/public/images/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/website/public/images/50.png -------------------------------------------------------------------------------- /website/public/images/51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/website/public/images/51.png -------------------------------------------------------------------------------- /website/public/images/52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/website/public/images/52.png -------------------------------------------------------------------------------- /website/public/images/53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/website/public/images/53.png -------------------------------------------------------------------------------- /website/public/images/54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/website/public/images/54.png -------------------------------------------------------------------------------- /website/public/images/55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/website/public/images/55.png -------------------------------------------------------------------------------- /website/public/images/56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/website/public/images/56.png -------------------------------------------------------------------------------- /website/public/images/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/website/public/images/57.png -------------------------------------------------------------------------------- /website/public/images/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/website/public/images/58.png -------------------------------------------------------------------------------- /website/public/images/FOR_COMMIT: -------------------------------------------------------------------------------- 1 | ONLY FOR COMMIT 2 | -------------------------------------------------------------------------------- /website/public/images/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/website/public/images/error.png -------------------------------------------------------------------------------- /website/public/images/order.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/website/public/images/order.png -------------------------------------------------------------------------------- /website/public/images/steps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/website/public/images/steps.png -------------------------------------------------------------------------------- /website/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/website/public/index.php -------------------------------------------------------------------------------- /website/public/js/e-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/website/public/js/e-ui.js -------------------------------------------------------------------------------- /website/public/js/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/website/public/js/jquery-ui.js -------------------------------------------------------------------------------- /website/public/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/website/public/js/jquery.js -------------------------------------------------------------------------------- /website/public/js/milkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/website/public/js/milkbox.js -------------------------------------------------------------------------------- /website/public/js/mootools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/website/public/js/mootools.js -------------------------------------------------------------------------------- /website/public/js/nyromodal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/website/public/js/nyromodal.js -------------------------------------------------------------------------------- /website/public/js/timepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/website/public/js/timepicker.js -------------------------------------------------------------------------------- /website/public/styles/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/website/public/styles/close.gif -------------------------------------------------------------------------------- /website/public/styles/load.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/website/public/styles/load.gif -------------------------------------------------------------------------------- /website/public/styles/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/website/public/styles/menu.css -------------------------------------------------------------------------------- /website/public/styles/next.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/website/public/styles/next.gif -------------------------------------------------------------------------------- /website/public/styles/prev.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/website/public/styles/prev.gif -------------------------------------------------------------------------------- /website/public/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evias-services/imeals-project/HEAD/website/public/styles/style.css --------------------------------------------------------------------------------