├── .gitignore ├── LICENSE ├── README.md ├── api ├── alert.php ├── alerts.php ├── api.php ├── disambiguation.php ├── gcm.php ├── login.php ├── pin.php ├── register.php ├── social.php ├── status.php └── user.php ├── assembly ├── breadcrumb.php ├── menu.php └── section.php ├── class ├── Action.php ├── Ajax.php ├── AjaxLogon.php ├── AjaxPasswd.php ├── Alert.php ├── AnonymousUsageData.php ├── Api.php ├── ApiAuth.php ├── ApiEntity.php ├── ApiException.php ├── ApiList.php ├── Archive.php ├── Backup.php ├── BrowserDevice.php ├── Business.php ├── Cache.php ├── Database.php ├── DatabaseMaker.php ├── EncodeMedia.php ├── Facade.php ├── Form.php ├── GoogleMaps.php ├── Graph.php ├── Group.php ├── Icon.php ├── IconItem.php ├── Instance.php ├── Ldap.php ├── LdapClass.php ├── Locale.php ├── Localization.php ├── Log.php ├── Lucene.php ├── Mail.php ├── MakeSql.php ├── Manual.php ├── Menu.php ├── MenuItem.php ├── Message.php ├── MobileDevice.php ├── Pdf.php ├── Schedule.php ├── Search.php ├── Section.php ├── Security.php ├── Shopping.php ├── Skin.php ├── Social.php ├── SocialDriver.php ├── Template.php ├── Type.php ├── User.php ├── UserType.php ├── Version.php ├── VersionForm.php ├── VersionHelper.php ├── VersionSearch.php ├── VersionView.php ├── View.php ├── Xml.php ├── XmlMaker.php └── Xoad.php ├── composer.json ├── extra ├── Blowfish.php ├── Browscap.php ├── DatePicker │ ├── css │ │ ├── datepicker.css │ │ └── demo.css │ ├── disableDays.html │ ├── index.html │ ├── js │ │ ├── datepicker.js │ │ └── lang │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── de.js │ │ │ ├── du.js │ │ │ ├── en.js │ │ │ ├── es.js │ │ │ ├── fi.js │ │ │ ├── fr.js │ │ │ ├── gr.js │ │ │ ├── he.js │ │ │ ├── it.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sp.js │ │ │ ├── sv.js │ │ │ └── ua.js │ ├── media │ │ ├── backstripes.gif │ │ ├── bg_header.jpg │ │ ├── bullet1.gif │ │ ├── bullet2.gif │ │ ├── cal.gif │ │ └── gradient-e5e5e5-ffffff.gif │ ├── onUpdate.html │ ├── reservation.html │ └── unicode.html ├── Encoding.php ├── GoogleTranslate.php ├── QRCode │ ├── CHANGELOG │ ├── INSTALL │ ├── LICENSE │ ├── README │ ├── VERSION │ ├── bindings │ │ └── tcpdf │ │ │ └── qrcode.php │ ├── index.php │ ├── phpqrcode.php │ ├── qrbitstream.php │ ├── qrconfig.php │ ├── qrconst.php │ ├── qrencode.php │ ├── qrimage.php │ ├── qrinput.php │ ├── qrlib.php │ ├── qrmask.php │ ├── qrrscode.php │ ├── qrspec.php │ ├── qrsplit.php │ ├── qrtools.php │ └── tools │ │ ├── merge.bat │ │ ├── merge.php │ │ ├── merge.sh │ │ ├── merged_config.php │ │ └── merged_header.php ├── TypeFriendly │ ├── docs │ │ ├── input │ │ │ ├── en │ │ │ │ ├── appendix.development.txt │ │ │ │ ├── appendix.license.txt │ │ │ │ ├── appendix.txt │ │ │ │ ├── docs.chapters.txt │ │ │ │ ├── docs.directories.txt │ │ │ │ ├── docs.settings.txt │ │ │ │ ├── docs.syntax.advanced.txt │ │ │ │ ├── docs.syntax.blockquotes.txt │ │ │ │ ├── docs.syntax.codeblocks.txt │ │ │ │ ├── docs.syntax.codespans.txt │ │ │ │ ├── docs.syntax.deflists.txt │ │ │ │ ├── docs.syntax.emphasis.txt │ │ │ │ ├── docs.syntax.footnotes.txt │ │ │ │ ├── docs.syntax.headers.txt │ │ │ │ ├── docs.syntax.html.txt │ │ │ │ ├── docs.syntax.images.txt │ │ │ │ ├── docs.syntax.intro.txt │ │ │ │ ├── docs.syntax.links.txt │ │ │ │ ├── docs.syntax.lists.txt │ │ │ │ ├── docs.syntax.paragraphs.txt │ │ │ │ ├── docs.syntax.tables.txt │ │ │ │ ├── docs.syntax.txt │ │ │ │ ├── docs.tags.txt │ │ │ │ ├── docs.templates.txt │ │ │ │ ├── docs.txt │ │ │ │ ├── installation.txt │ │ │ │ ├── media │ │ │ │ │ └── graph.png │ │ │ │ ├── preface.txt │ │ │ │ ├── tf.cli.txt │ │ │ │ ├── tf.languages.txt │ │ │ │ ├── tf.outputs.txt │ │ │ │ └── tf.txt │ │ │ └── pl │ │ │ │ ├── appendix.development.txt │ │ │ │ ├── appendix.license.txt │ │ │ │ ├── appendix.txt │ │ │ │ ├── docs.chapters.txt │ │ │ │ ├── docs.directories.txt │ │ │ │ ├── docs.settings.txt │ │ │ │ ├── docs.syntax.advanced.txt │ │ │ │ ├── docs.syntax.blockquotes.txt │ │ │ │ ├── docs.syntax.codeblocks.txt │ │ │ │ ├── docs.syntax.codespans.txt │ │ │ │ ├── docs.syntax.deflists.txt │ │ │ │ ├── docs.syntax.emphasis.txt │ │ │ │ ├── docs.syntax.footnotes.txt │ │ │ │ ├── docs.syntax.headers.txt │ │ │ │ ├── docs.syntax.html.txt │ │ │ │ ├── docs.syntax.images.txt │ │ │ │ ├── docs.syntax.intro.txt │ │ │ │ ├── docs.syntax.links.txt │ │ │ │ ├── docs.syntax.lists.txt │ │ │ │ ├── docs.syntax.paragraphs.txt │ │ │ │ ├── docs.syntax.tables.txt │ │ │ │ ├── docs.syntax.txt │ │ │ │ ├── docs.tags.txt │ │ │ │ ├── docs.templates.txt │ │ │ │ ├── docs.txt │ │ │ │ ├── installation.txt │ │ │ │ ├── preface.txt │ │ │ │ ├── tf.cli.txt │ │ │ │ ├── tf.languages.txt │ │ │ │ ├── tf.outputs.txt │ │ │ │ └── tf.txt │ │ ├── settings.ini │ │ └── sort_hints.txt │ ├── includes │ │ ├── console.php │ │ ├── filesystem.php │ │ ├── i18n.php │ │ ├── markdown.php │ │ ├── output.php │ │ ├── parsers.php │ │ ├── php52.php │ │ ├── project.php │ │ ├── resources.php │ │ └── tags.php │ ├── info │ │ ├── COPYING │ │ ├── COPYING_GeSHi │ │ ├── COPYING_Tango │ │ ├── LICENSE_MARKDOWN.txt │ │ └── README.txt │ ├── languages │ │ ├── en │ │ │ ├── constructs.txt │ │ │ ├── general.txt │ │ │ ├── navigation.txt │ │ │ └── tags.txt │ │ ├── pl │ │ │ ├── constructs.txt │ │ │ ├── general.txt │ │ │ ├── navigation.txt │ │ │ └── tags.txt │ │ ├── pt-BR │ │ │ ├── constructs.txt │ │ │ ├── general.txt │ │ │ ├── navigation.txt │ │ │ └── tags.txt │ │ └── sk │ │ │ ├── constructs.txt │ │ │ ├── general.txt │ │ │ ├── navigation.txt │ │ │ └── tags.txt │ ├── main.php │ ├── media │ │ ├── xhtml │ │ │ └── design │ │ │ │ ├── body-bg.gif │ │ │ │ ├── generic.css │ │ │ │ ├── header-h1-bg.gif │ │ │ │ ├── icon-error.gif │ │ │ │ ├── icon-help.gif │ │ │ │ ├── icon-important.gif │ │ │ │ ├── icon-information.gif │ │ │ │ ├── icon-steps.gif │ │ │ │ ├── icon-stop.gif │ │ │ │ ├── icon-warning.gif │ │ │ │ ├── ie.css │ │ │ │ ├── ie7.css │ │ │ │ ├── jump.gif │ │ │ │ └── print.css │ │ └── xhtml_single │ │ │ └── design │ │ │ ├── body-bg.gif │ │ │ ├── generic.css │ │ │ ├── header-h1-bg.gif │ │ │ ├── icon-error.gif │ │ │ ├── icon-help.gif │ │ │ ├── icon-important.gif │ │ │ ├── icon-information.gif │ │ │ ├── icon-steps.gif │ │ │ ├── icon-stop.gif │ │ │ ├── icon-warning.gif │ │ │ ├── ie.css │ │ │ ├── ie7.css │ │ │ ├── jump.gif │ │ │ └── print.css │ ├── outputs │ │ ├── xhtml.php │ │ └── xhtml_single.php │ ├── typefriendly │ ├── typefriendly.php │ └── vendor │ │ ├── geshi │ │ ├── geshi.php │ │ └── geshi │ │ │ ├── abap.php │ │ │ ├── actionscript.php │ │ │ ├── actionscript3.php │ │ │ ├── ada.php │ │ │ ├── apache.php │ │ │ ├── applescript.php │ │ │ ├── apt_sources.php │ │ │ ├── asm.php │ │ │ ├── asp.php │ │ │ ├── autoit.php │ │ │ ├── avisynth.php │ │ │ ├── bash.php │ │ │ ├── basic4gl.php │ │ │ ├── bf.php │ │ │ ├── bibtex.php │ │ │ ├── blitzbasic.php │ │ │ ├── bnf.php │ │ │ ├── boo.php │ │ │ ├── c.php │ │ │ ├── c_mac.php │ │ │ ├── caddcl.php │ │ │ ├── cadlisp.php │ │ │ ├── cfdg.php │ │ │ ├── cfm.php │ │ │ ├── cil.php │ │ │ ├── cmake.php │ │ │ ├── cobol.php │ │ │ ├── cpp-qt.php │ │ │ ├── cpp.php │ │ │ ├── csharp.php │ │ │ ├── css.php │ │ │ ├── d.php │ │ │ ├── dcs.php │ │ │ ├── delphi.php │ │ │ ├── diff.php │ │ │ ├── div.php │ │ │ ├── dos.php │ │ │ ├── dot.php │ │ │ ├── eiffel.php │ │ │ ├── email.php │ │ │ ├── erlang.php │ │ │ ├── fo.php │ │ │ ├── fortran.php │ │ │ ├── freebasic.php │ │ │ ├── genero.php │ │ │ ├── gettext.php │ │ │ ├── glsl.php │ │ │ ├── gml.php │ │ │ ├── gnuplot.php │ │ │ ├── groovy.php │ │ │ ├── haskell.php │ │ │ ├── hq9plus.php │ │ │ ├── html4strict.php │ │ │ ├── idl.php │ │ │ ├── ini.php │ │ │ ├── inno.php │ │ │ ├── intercal.php │ │ │ ├── io.php │ │ │ ├── java.php │ │ │ ├── java5.php │ │ │ ├── javascript.php │ │ │ ├── kixtart.php │ │ │ ├── klonec.php │ │ │ ├── klonecpp.php │ │ │ ├── latex.php │ │ │ ├── lisp.php │ │ │ ├── locobasic.php │ │ │ ├── lolcode.php │ │ │ ├── lotusformulas.php │ │ │ ├── lotusscript.php │ │ │ ├── lscript.php │ │ │ ├── lsl2.php │ │ │ ├── lua.php │ │ │ ├── m68k.php │ │ │ ├── make.php │ │ │ ├── matlab.php │ │ │ ├── mirc.php │ │ │ ├── modula3.php │ │ │ ├── mpasm.php │ │ │ ├── mxml.php │ │ │ ├── mysql.php │ │ │ ├── nsis.php │ │ │ ├── oberon2.php │ │ │ ├── objc.php │ │ │ ├── ocaml-brief.php │ │ │ ├── ocaml.php │ │ │ ├── oobas.php │ │ │ ├── oracle11.php │ │ │ ├── oracle8.php │ │ │ ├── pascal.php │ │ │ ├── per.php │ │ │ ├── perl.php │ │ │ ├── php-brief.php │ │ │ ├── php.php │ │ │ ├── pic16.php │ │ │ ├── pixelbender.php │ │ │ ├── plsql.php │ │ │ ├── povray.php │ │ │ ├── powershell.php │ │ │ ├── progress.php │ │ │ ├── prolog.php │ │ │ ├── properties.php │ │ │ ├── providex.php │ │ │ ├── python.php │ │ │ ├── qbasic.php │ │ │ ├── rails.php │ │ │ ├── rebol.php │ │ │ ├── reg.php │ │ │ ├── robots.php │ │ │ ├── ruby.php │ │ │ ├── sas.php │ │ │ ├── scala.php │ │ │ ├── scheme.php │ │ │ ├── scilab.php │ │ │ ├── sdlbasic.php │ │ │ ├── smalltalk.php │ │ │ ├── smarty.php │ │ │ ├── sql.php │ │ │ ├── tcl.php │ │ │ ├── teraterm.php │ │ │ ├── text.php │ │ │ ├── thinbasic.php │ │ │ ├── tsql.php │ │ │ ├── typoscript.php │ │ │ ├── vb.php │ │ │ ├── vbnet.php │ │ │ ├── verilog.php │ │ │ ├── vhdl.php │ │ │ ├── vim.php │ │ │ ├── visualfoxpro.php │ │ │ ├── visualprolog.php │ │ │ ├── whitespace.php │ │ │ ├── whois.php │ │ │ ├── winbatch.php │ │ │ ├── xml.php │ │ │ ├── xorg_conf.php │ │ │ ├── xpp.php │ │ │ └── z80.php │ │ └── markdown │ │ └── markdown.php ├── Zend │ ├── Exception.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 │ │ ├── Header │ │ │ ├── Exception │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ └── RuntimeException.php │ │ │ └── SetCookie.php │ │ ├── Response.php │ │ ├── Response │ │ │ └── Stream.php │ │ ├── UserAgent.php │ │ └── UserAgent │ │ │ ├── AbstractDevice.php │ │ │ ├── Bot.php │ │ │ ├── Checker.php │ │ │ ├── Console.php │ │ │ ├── Desktop.php │ │ │ ├── Device.php │ │ │ ├── Email.php │ │ │ ├── Exception.php │ │ │ ├── Features │ │ │ ├── Adapter.php │ │ │ ├── Adapter │ │ │ │ ├── Browscap.php │ │ │ │ ├── DeviceAtlas.php │ │ │ │ └── TeraWurfl.php │ │ │ └── Exception.php │ │ │ ├── Feed.php │ │ │ ├── Mobile.php │ │ │ ├── Offline.php │ │ │ ├── Probe.php │ │ │ ├── Spam.php │ │ │ ├── Storage.php │ │ │ ├── Storage │ │ │ ├── Exception.php │ │ │ ├── NonPersistent.php │ │ │ └── Session.php │ │ │ ├── Text.php │ │ │ └── Validator.php │ ├── Loader.php │ ├── Oauth.php │ ├── Oauth │ │ ├── Client.php │ │ ├── Config.php │ │ ├── Config │ │ │ └── ConfigInterface.php │ │ ├── Consumer.php │ │ ├── Exception.php │ │ ├── Http.php │ │ ├── Http │ │ │ ├── AccessToken.php │ │ │ ├── RequestToken.php │ │ │ ├── UserAuthorization.php │ │ │ └── Utility.php │ │ ├── Signature │ │ │ ├── Hmac.php │ │ │ ├── Plaintext.php │ │ │ ├── Rsa.php │ │ │ └── SignatureAbstract.php │ │ ├── Token.php │ │ └── Token │ │ │ ├── Access.php │ │ │ ├── AuthorizedRequest.php │ │ │ └── Request.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 │ │ │ ├── Interface │ │ │ └── MultiSearcher.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 │ ├── Service │ │ ├── Abstract.php │ │ ├── Exception.php │ │ ├── Twitter.php │ │ └── Twitter │ │ │ ├── Exception.php │ │ │ └── Search.php │ ├── Uri.php │ ├── Uri │ │ ├── Exception.php │ │ └── Http.php │ └── Validate │ │ ├── Abstract.php │ │ ├── Alnum.php │ │ ├── Alpha.php │ │ ├── Barcode.php │ │ ├── Barcode │ │ ├── AdapterAbstract.php │ │ ├── AdapterInterface.php │ │ ├── Code25.php │ │ ├── Code25interleaved.php │ │ ├── Code39.php │ │ ├── Code39ext.php │ │ ├── Code93.php │ │ ├── Code93ext.php │ │ ├── Ean12.php │ │ ├── Ean13.php │ │ ├── Ean14.php │ │ ├── Ean18.php │ │ ├── Ean2.php │ │ ├── Ean5.php │ │ ├── Ean8.php │ │ ├── Gtin12.php │ │ ├── Gtin13.php │ │ ├── Gtin14.php │ │ ├── Identcode.php │ │ ├── Intelligentmail.php │ │ ├── Issn.php │ │ ├── Itf14.php │ │ ├── Leitcode.php │ │ ├── Planet.php │ │ ├── Postnet.php │ │ ├── Royalmail.php │ │ ├── Sscc.php │ │ ├── Upca.php │ │ └── Upce.php │ │ ├── Between.php │ │ ├── Callback.php │ │ ├── Ccnum.php │ │ ├── CreditCard.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 │ │ ├── Isbn.php │ │ ├── Ldap │ │ └── Dn.php │ │ ├── LessThan.php │ │ ├── NotEmpty.php │ │ ├── PostCode.php │ │ ├── Regex.php │ │ ├── Sitemap │ │ ├── Changefreq.php │ │ ├── Lastmod.php │ │ ├── Loc.php │ │ └── Priority.php │ │ └── StringLength.php ├── access │ └── .htaccess ├── captcha │ ├── captcha.php │ └── wordlist ├── composer.phar ├── cssTidy │ ├── COPYING │ ├── Docs │ │ ├── __filesource │ │ │ ├── fsource_csstidy__class.csstidy.php.html │ │ │ ├── fsource_csstidy__class.csstidy_optimise.php.html │ │ │ ├── fsource_csstidy__class.csstidy_print.php.html │ │ │ └── fsource_csstidy__data.inc.php.html │ │ ├── classtrees_csstidy.html │ │ ├── csstidy │ │ │ ├── _class_csstidy_optimise_php.html │ │ │ ├── _class_csstidy_php.html │ │ │ ├── _class_csstidy_print_php.html │ │ │ ├── _data_inc_php.html │ │ │ ├── csstidy.html │ │ │ ├── csstidy_optimise.html │ │ │ └── csstidy_print.html │ │ ├── elementindex.html │ │ ├── elementindex_csstidy.html │ │ ├── errors.html │ │ ├── index.html │ │ ├── li_csstidy.html │ │ ├── media │ │ │ ├── background.png │ │ │ ├── empty.png │ │ │ └── style.css │ │ └── todolist.html │ ├── README │ ├── class.csstidy.php │ ├── class.csstidy_optimise.php │ ├── class.csstidy_print.php │ ├── css_optimiser.php │ ├── cssparse.css │ ├── data.inc.php │ ├── lang.inc.php │ ├── template.tpl │ ├── template1.tpl │ ├── template2.tpl │ ├── template3.tpl │ └── testing │ │ ├── auto-testing.php │ │ ├── base.css │ │ ├── css_results.php │ │ └── fisubsilver.css ├── dragable-boxes │ ├── images │ │ ├── arrow_down.gif │ │ ├── arrow_right.gif │ │ ├── bg_heading.gif │ │ ├── refresh.gif │ │ └── small_arrow.gif │ ├── magpierss │ │ ├── AUTHORS │ │ ├── CHANGES │ │ ├── ChangeLog │ │ ├── INSTALL │ │ ├── NEWS │ │ ├── README │ │ ├── TROUBLESHOOTING │ │ ├── cookbook │ │ ├── extlib │ │ │ └── Snoopy.class.inc │ │ ├── htdocs │ │ │ ├── cookbook.html │ │ │ └── index.html │ │ ├── rss_cache.inc │ │ ├── rss_fetch.inc │ │ ├── rss_parse.inc │ │ ├── rss_utils.inc │ │ └── scripts │ │ │ ├── README │ │ │ ├── magpie_debug.php │ │ │ ├── magpie_simple.php │ │ │ ├── magpie_slashbox.php │ │ │ ├── simple_smarty.php │ │ │ ├── smarty_plugin │ │ │ └── modifier.rss_date_parse.php │ │ │ └── templates │ │ │ └── simple.smarty │ └── readRSS.php ├── fckEditor │ ├── editor │ │ ├── css │ │ │ ├── behaviors │ │ │ │ ├── disablehandles.htc │ │ │ │ └── showtableborders.htc │ │ │ ├── fck_editorarea.css │ │ │ ├── fck_internal.css │ │ │ ├── fck_showtableborders_gecko.css │ │ │ └── images │ │ │ │ ├── block_address.png │ │ │ │ ├── block_blockquote.png │ │ │ │ ├── block_div.png │ │ │ │ ├── block_h1.png │ │ │ │ ├── block_h2.png │ │ │ │ ├── block_h3.png │ │ │ │ ├── block_h4.png │ │ │ │ ├── block_h5.png │ │ │ │ ├── block_h6.png │ │ │ │ ├── block_p.png │ │ │ │ ├── block_pre.png │ │ │ │ ├── fck_anchor.gif │ │ │ │ ├── fck_flashlogo.gif │ │ │ │ ├── fck_hiddenfield.gif │ │ │ │ ├── fck_pagebreak.gif │ │ │ │ └── fck_plugin.gif │ │ ├── dialog │ │ │ ├── common │ │ │ │ ├── fck_dialog_common.css │ │ │ │ ├── fck_dialog_common.js │ │ │ │ └── images │ │ │ │ │ ├── locked.gif │ │ │ │ │ ├── reset.gif │ │ │ │ │ └── unlocked.gif │ │ │ ├── fck_about.html │ │ │ ├── fck_about │ │ │ │ ├── logo_fckeditor.gif │ │ │ │ ├── logo_fredck.gif │ │ │ │ └── sponsors │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ └── spellchecker_net.gif │ │ │ ├── fck_anchor.html │ │ │ ├── fck_button.html │ │ │ ├── fck_checkbox.html │ │ │ ├── fck_colorselector.html │ │ │ ├── fck_div.html │ │ │ ├── fck_docprops.html │ │ │ ├── fck_docprops │ │ │ │ └── fck_document_preview.html │ │ │ ├── fck_find.html │ │ │ ├── fck_flash.html │ │ │ ├── fck_flash │ │ │ │ ├── fck_flash.js │ │ │ │ └── fck_flash_preview.html │ │ │ ├── fck_form.html │ │ │ ├── fck_hiddenfield.html │ │ │ ├── fck_image.html │ │ │ ├── fck_image │ │ │ │ ├── fck_image.js │ │ │ │ └── fck_image_preview.html │ │ │ ├── fck_link.html │ │ │ ├── fck_link │ │ │ │ └── fck_link.js │ │ │ ├── fck_listprop.html │ │ │ ├── fck_paste.html │ │ │ ├── fck_radiobutton.html │ │ │ ├── fck_replace.html │ │ │ ├── fck_select.html │ │ │ ├── fck_select │ │ │ │ └── fck_select.js │ │ │ ├── fck_smiley.html │ │ │ ├── fck_source.html │ │ │ ├── fck_specialchar.html │ │ │ ├── fck_spellerpages.html │ │ │ ├── fck_spellerpages │ │ │ │ └── spellerpages │ │ │ │ │ ├── blank.html │ │ │ │ │ ├── controlWindow.js │ │ │ │ │ ├── controls.html │ │ │ │ │ ├── server-scripts │ │ │ │ │ ├── spellchecker.cfm │ │ │ │ │ ├── spellchecker.php │ │ │ │ │ └── spellchecker.pl │ │ │ │ │ ├── spellChecker.js │ │ │ │ │ ├── spellchecker.html │ │ │ │ │ ├── spellerStyle.css │ │ │ │ │ └── wordWindow.js │ │ │ ├── fck_table.html │ │ │ ├── fck_tablecell.html │ │ │ ├── fck_template.html │ │ │ ├── fck_template │ │ │ │ └── images │ │ │ │ │ ├── template1.gif │ │ │ │ │ ├── template2.gif │ │ │ │ │ └── template3.gif │ │ │ ├── fck_textarea.html │ │ │ └── fck_textfield.html │ │ ├── fckdebug.html │ │ ├── fckdialog.html │ │ ├── fckeditor.html │ │ ├── fckeditor.original.html │ │ ├── filemanager │ │ │ ├── browser │ │ │ │ └── default │ │ │ │ │ ├── browser.css │ │ │ │ │ ├── browser.html │ │ │ │ │ ├── frmactualfolder.html │ │ │ │ │ ├── frmcreatefolder.html │ │ │ │ │ ├── frmfolders.html │ │ │ │ │ ├── frmresourceslist.html │ │ │ │ │ ├── frmresourcetype.html │ │ │ │ │ ├── frmupload.html │ │ │ │ │ ├── images │ │ │ │ │ ├── ButtonArrow.gif │ │ │ │ │ ├── Folder.gif │ │ │ │ │ ├── Folder32.gif │ │ │ │ │ ├── FolderOpened.gif │ │ │ │ │ ├── FolderOpened32.gif │ │ │ │ │ ├── FolderUp.gif │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── 32 │ │ │ │ │ │ │ ├── ai.gif │ │ │ │ │ │ │ ├── avi.gif │ │ │ │ │ │ │ ├── bmp.gif │ │ │ │ │ │ │ ├── cs.gif │ │ │ │ │ │ │ ├── default.icon.gif │ │ │ │ │ │ │ ├── dll.gif │ │ │ │ │ │ │ ├── doc.gif │ │ │ │ │ │ │ ├── exe.gif │ │ │ │ │ │ │ ├── fla.gif │ │ │ │ │ │ │ ├── gif.gif │ │ │ │ │ │ │ ├── htm.gif │ │ │ │ │ │ │ ├── html.gif │ │ │ │ │ │ │ ├── jpg.gif │ │ │ │ │ │ │ ├── js.gif │ │ │ │ │ │ │ ├── mdb.gif │ │ │ │ │ │ │ ├── mp3.gif │ │ │ │ │ │ │ ├── pdf.gif │ │ │ │ │ │ │ ├── png.gif │ │ │ │ │ │ │ ├── ppt.gif │ │ │ │ │ │ │ ├── rdp.gif │ │ │ │ │ │ │ ├── swf.gif │ │ │ │ │ │ │ ├── swt.gif │ │ │ │ │ │ │ ├── txt.gif │ │ │ │ │ │ │ ├── vsd.gif │ │ │ │ │ │ │ ├── xls.gif │ │ │ │ │ │ │ ├── xml.gif │ │ │ │ │ │ │ └── zip.gif │ │ │ │ │ │ ├── ai.gif │ │ │ │ │ │ ├── avi.gif │ │ │ │ │ │ ├── bmp.gif │ │ │ │ │ │ ├── cs.gif │ │ │ │ │ │ ├── default.icon.gif │ │ │ │ │ │ ├── dll.gif │ │ │ │ │ │ ├── doc.gif │ │ │ │ │ │ ├── exe.gif │ │ │ │ │ │ ├── fla.gif │ │ │ │ │ │ ├── gif.gif │ │ │ │ │ │ ├── htm.gif │ │ │ │ │ │ ├── html.gif │ │ │ │ │ │ ├── jpg.gif │ │ │ │ │ │ ├── js.gif │ │ │ │ │ │ ├── mdb.gif │ │ │ │ │ │ ├── mp3.gif │ │ │ │ │ │ ├── pdf.gif │ │ │ │ │ │ ├── png.gif │ │ │ │ │ │ ├── ppt.gif │ │ │ │ │ │ ├── rdp.gif │ │ │ │ │ │ ├── swf.gif │ │ │ │ │ │ ├── swt.gif │ │ │ │ │ │ ├── txt.gif │ │ │ │ │ │ ├── vsd.gif │ │ │ │ │ │ ├── xls.gif │ │ │ │ │ │ ├── xml.gif │ │ │ │ │ │ └── zip.gif │ │ │ │ │ └── spacer.gif │ │ │ │ │ └── js │ │ │ │ │ ├── common.js │ │ │ │ │ └── fckxml.js │ │ │ └── connectors │ │ │ │ ├── php │ │ │ │ ├── basexml.php │ │ │ │ ├── commands.php │ │ │ │ ├── config.php │ │ │ │ ├── connector.php │ │ │ │ ├── io.php │ │ │ │ ├── phpcompat.php │ │ │ │ ├── upload.php │ │ │ │ └── util.php │ │ │ │ ├── test.html │ │ │ │ └── uploadtest.html │ │ ├── images │ │ │ ├── anchor.gif │ │ │ ├── arrow_ltr.gif │ │ │ ├── arrow_rtl.gif │ │ │ ├── smiley │ │ │ │ └── msn │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ ├── cake.gif │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ ├── envelope.gif │ │ │ │ │ ├── heart.gif │ │ │ │ │ ├── kiss.gif │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ └── wink_smile.gif │ │ │ └── spacer.gif │ │ ├── js │ │ │ ├── fckadobeair.js │ │ │ ├── fckeditorcode_gecko.js │ │ │ └── fckeditorcode_ie.js │ │ ├── lang │ │ │ ├── _getfontformat.html │ │ │ ├── _translationstatus.txt │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-uk.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mn.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sr-latn.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh.js │ │ ├── plugins │ │ │ ├── autogrow │ │ │ │ └── fckplugin.js │ │ │ ├── bbcode │ │ │ │ ├── _sample │ │ │ │ │ ├── sample.config.js │ │ │ │ │ └── sample.html │ │ │ │ └── fckplugin.js │ │ │ ├── dragresizetable │ │ │ │ └── fckplugin.js │ │ │ ├── placeholder │ │ │ │ ├── fck_placeholder.html │ │ │ │ ├── fckplugin.js │ │ │ │ ├── lang │ │ │ │ │ ├── de.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── it.js │ │ │ │ │ └── pl.js │ │ │ │ └── placeholder.gif │ │ │ ├── simplecommands │ │ │ │ └── fckplugin.js │ │ │ └── tablecommands │ │ │ │ └── fckplugin.js │ │ └── skins │ │ │ ├── _fckviewstrips.html │ │ │ ├── default │ │ │ ├── fck_dialog.css │ │ │ ├── fck_dialog_ie6.js │ │ │ ├── fck_editor.css │ │ │ ├── fck_strip.gif │ │ │ └── images │ │ │ │ ├── dialog.sides.gif │ │ │ │ ├── dialog.sides.png │ │ │ │ ├── dialog.sides.rtl.png │ │ │ │ ├── sprites.gif │ │ │ │ ├── sprites.png │ │ │ │ ├── toolbar.arrowright.gif │ │ │ │ ├── toolbar.buttonarrow.gif │ │ │ │ ├── toolbar.collapse.gif │ │ │ │ ├── toolbar.end.gif │ │ │ │ ├── toolbar.expand.gif │ │ │ │ ├── toolbar.separator.gif │ │ │ │ └── toolbar.start.gif │ │ │ ├── office2003 │ │ │ ├── fck_dialog.css │ │ │ ├── fck_dialog_ie6.js │ │ │ ├── fck_editor.css │ │ │ ├── fck_strip.gif │ │ │ └── images │ │ │ │ ├── dialog.sides.gif │ │ │ │ ├── dialog.sides.png │ │ │ │ ├── dialog.sides.rtl.png │ │ │ │ ├── sprites.gif │ │ │ │ ├── sprites.png │ │ │ │ ├── toolbar.arrowright.gif │ │ │ │ ├── toolbar.bg.gif │ │ │ │ ├── toolbar.buttonarrow.gif │ │ │ │ ├── toolbar.collapse.gif │ │ │ │ ├── toolbar.end.gif │ │ │ │ ├── toolbar.expand.gif │ │ │ │ ├── toolbar.separator.gif │ │ │ │ └── toolbar.start.gif │ │ │ └── silver │ │ │ ├── fck_dialog.css │ │ │ ├── fck_dialog_ie6.js │ │ │ ├── fck_editor.css │ │ │ ├── fck_strip.gif │ │ │ └── images │ │ │ ├── dialog.sides.gif │ │ │ ├── dialog.sides.png │ │ │ ├── dialog.sides.rtl.png │ │ │ ├── sprites.gif │ │ │ ├── sprites.png │ │ │ ├── toolbar.arrowright.gif │ │ │ ├── toolbar.buttonarrow.gif │ │ │ ├── toolbar.buttonbg.gif │ │ │ ├── toolbar.collapse.gif │ │ │ ├── toolbar.end.gif │ │ │ ├── toolbar.expand.gif │ │ │ ├── toolbar.separator.gif │ │ │ └── toolbar.start.gif │ ├── fckconfig.js │ ├── fckeditor.js │ ├── fckeditor.php │ ├── fckeditor.pl │ ├── fckpackager.xml │ ├── fckstyles.xml │ ├── fcktemplates.xml │ ├── htaccess.txt │ ├── license.txt │ └── scripts │ │ ├── fck_image.php │ │ ├── fck_image_preview.php │ │ └── fck_link.php ├── fonts │ ├── GeosansLight.ttf │ ├── MankSans.ttf │ ├── Silkscreen.ttf │ ├── Trebuchet MS Bold Italic.ttf │ ├── Trebuchet MS.ttf │ ├── TrebuchetMSItalic.ttf │ ├── Vera.ttf │ ├── VeraBI.ttf │ ├── VeraBd.ttf │ ├── VeraIt.ttf │ ├── VeraMoBI.ttf │ ├── VeraMoBd.ttf │ ├── VeraMoIt.ttf │ ├── VeraMono.ttf │ ├── VeraSe.ttf │ ├── VeraSeBd.ttf │ ├── Verdana.ttf │ ├── automatic.gdf │ ├── bubblebath.gdf │ ├── caveman.gdf │ ├── courier.php │ ├── courierb.php │ ├── courierbi.php │ ├── courieri.php │ ├── crass.gdf │ ├── elephant.ttf │ ├── helvetica.php │ ├── helveticab.php │ ├── helveticabi.php │ ├── helveticai.php │ ├── local.conf │ ├── makefont │ │ ├── cp1250.map │ │ ├── cp1251.map │ │ ├── cp1252.map │ │ ├── cp1253.map │ │ ├── cp1254.map │ │ ├── cp1255.map │ │ ├── cp1257.map │ │ ├── cp1258.map │ │ ├── cp874.map │ │ ├── iso-8859-1.map │ │ ├── iso-8859-11.map │ │ ├── iso-8859-15.map │ │ ├── iso-8859-16.map │ │ ├── iso-8859-2.map │ │ ├── iso-8859-4.map │ │ ├── iso-8859-5.map │ │ ├── iso-8859-7.map │ │ ├── iso-8859-9.map │ │ ├── koi8-r.map │ │ ├── koi8-u.map │ │ ├── makefont.php │ │ └── ttfparser.php │ ├── pf_arma_five.ttf │ ├── symbol.php │ ├── tahoma.ttf │ ├── times.php │ ├── timesb.php │ ├── timesbi.php │ ├── timesi.php │ ├── trebuc.ttf │ ├── trebucbd.ttf │ ├── trebucbi.ttf │ ├── verdanab.ttf │ └── zapfdingbats.php ├── fpdf.php ├── freeChat │ ├── AUTHORS.txt │ ├── COPYING.txt │ ├── checkmd5.php │ ├── data │ │ └── public │ │ │ └── js │ │ │ ├── activity.js │ │ │ ├── compat.js │ │ │ ├── cookie.js │ │ │ ├── createstylerule.js │ │ │ ├── image_preloader.js │ │ │ ├── md5.js │ │ │ ├── mousepos.js │ │ │ ├── myprototype.js │ │ │ ├── pfcclient.js │ │ │ ├── pfcgui.js │ │ │ ├── pfcprompt.js │ │ │ ├── pfcresource.js │ │ │ ├── regex.js │ │ │ ├── sprintf2.js │ │ │ ├── utf8.js │ │ │ └── xajax.js │ ├── debug │ │ ├── console.php │ │ ├── info.php │ │ └── log.php │ ├── i18n │ │ ├── ar_LB │ │ │ └── main.php │ │ ├── ba_BA │ │ │ └── main.php │ │ ├── bg_BG │ │ │ └── main.php │ │ ├── bn_BD │ │ │ └── main.php │ │ ├── da_DK │ │ │ ├── admin.php │ │ │ └── main.php │ │ ├── de_DE-formal │ │ │ └── main.php │ │ ├── de_DE-informal │ │ │ └── main.php │ │ ├── el_GR │ │ │ └── main.php │ │ ├── en_US │ │ │ ├── admin.php │ │ │ └── main.php │ │ ├── eo │ │ │ └── main.php │ │ ├── es_ES │ │ │ └── main.php │ │ ├── fr_FR │ │ │ ├── admin.php │ │ │ └── main.php │ │ ├── hu_HU │ │ │ ├── admin.php │ │ │ └── main.php │ │ ├── hy_AM │ │ │ └── main.php │ │ ├── id_ID │ │ │ └── main.php │ │ ├── it_IT │ │ │ ├── admin.php │ │ │ └── main.php │ │ ├── ja_JP │ │ │ ├── admin.php │ │ │ └── main.php │ │ ├── ko_KR │ │ │ └── main.php │ │ ├── nb_NO │ │ │ └── main.php │ │ ├── nl_NL │ │ │ └── main.php │ │ ├── nn_NO │ │ │ └── main.php │ │ ├── pl_PL │ │ │ ├── admin.php │ │ │ └── main.php │ │ ├── pt_BR │ │ │ └── main.php │ │ ├── pt_PT │ │ │ └── main.php │ │ ├── ru_RU │ │ │ ├── admin.php │ │ │ └── main.php │ │ ├── sr_CS │ │ │ └── main.php │ │ ├── sv_SE │ │ │ └── main.php │ │ ├── tr_TR │ │ │ └── main.php │ │ ├── uk_RO │ │ │ ├── admin.php │ │ │ └── main.php │ │ ├── uk_UA │ │ │ └── main.php │ │ ├── zh_CN │ │ │ └── main.php │ │ └── zh_TW │ │ │ └── main.php │ ├── index.php │ ├── lib │ │ ├── csstidy-1.2 │ │ │ ├── COPYING │ │ │ ├── README │ │ │ ├── class.csstidy.php │ │ │ ├── class.csstidy_optimise.php │ │ │ ├── class.csstidy_print.php │ │ │ ├── css_optimiser.php │ │ │ ├── cssparse.css │ │ │ ├── data.inc.php │ │ │ ├── lang.inc.php │ │ │ ├── template.tpl │ │ │ ├── template1.tpl │ │ │ ├── template2.tpl │ │ │ └── template3.tpl │ │ ├── ctype │ │ │ └── ctype.php │ │ ├── json │ │ │ ├── JSON.php │ │ │ └── LICENSE │ │ ├── pear │ │ │ ├── PHPUnit.php │ │ │ ├── PHPUnit │ │ │ │ ├── Assert.php │ │ │ │ ├── GUI │ │ │ │ │ ├── Gtk.php │ │ │ │ │ ├── HTML.php │ │ │ │ │ ├── HTML.tpl │ │ │ │ │ └── SetupDecorator.php │ │ │ │ ├── RepeatedTest.php │ │ │ │ ├── Skeleton.php │ │ │ │ ├── TestCase.php │ │ │ │ ├── TestDecorator.php │ │ │ │ ├── TestFailure.php │ │ │ │ ├── TestListener.php │ │ │ │ ├── TestResult.php │ │ │ │ └── TestSuite.php │ │ │ ├── System │ │ │ │ ├── SharedMemory.php │ │ │ │ └── SharedMemory │ │ │ │ │ ├── Apachenote.php │ │ │ │ │ ├── Apc.php │ │ │ │ │ ├── Common.php │ │ │ │ │ ├── Eaccelerator.php │ │ │ │ │ ├── File.php │ │ │ │ │ ├── Memcache.php │ │ │ │ │ ├── Mmcache.php │ │ │ │ │ ├── PEAR.php │ │ │ │ │ ├── Sharedance.php │ │ │ │ │ ├── Shmop.php │ │ │ │ │ ├── Sqlite.php │ │ │ │ │ └── Systemv.php │ │ │ ├── pear.sh │ │ │ └── pearrc │ │ ├── utf8 │ │ │ ├── utf8_char2byte_pos.php │ │ │ ├── utf8_strlen.php │ │ │ └── utf8_substr.php │ │ └── xajax_0.5_beta1 │ │ │ ├── LICENSE.txt │ │ │ ├── xajax_core │ │ │ ├── legacy.inc.php │ │ │ ├── plugin_layer │ │ │ │ ├── xajaxDefaultIncludePlugin.inc.php │ │ │ │ ├── xajaxDefaultRequestProcessorPlugin.inc.php │ │ │ │ ├── xajaxIncludePlugin.inc.php │ │ │ │ ├── xajaxPluginManager.inc.php │ │ │ │ ├── xajaxRequestProcessorPlugin.inc.php │ │ │ │ └── xajaxResponsePlugin.inc.php │ │ │ ├── xajax.inc.php │ │ │ ├── xajaxCompress.inc.php │ │ │ └── xajaxResponse.inc.php │ │ │ └── xajax_js │ │ │ ├── xajax.js │ │ │ └── xajax_uncompressed.js │ ├── misc │ │ ├── bulle.png │ │ ├── checkmd5 │ │ ├── clock-off.png │ │ ├── clock-on.png │ │ ├── color-off.png │ │ ├── color-on.png │ │ ├── createwebinstaller.php │ │ ├── doc-archi1.svg │ │ ├── i18n_update.php │ │ ├── login.png │ │ ├── login.svg │ │ ├── logo.svg │ │ ├── logo_80x15.gif │ │ ├── logo_80x15.png │ │ ├── logo_88x31.gif │ │ ├── logo_88x31.png │ │ ├── logout.png │ │ ├── logout.svg │ │ ├── png2gif.sh │ │ ├── sendSource │ │ ├── tabs.svg │ │ └── tarSource │ ├── src │ │ ├── commands │ │ │ ├── asknick.class.php │ │ │ ├── ban.class.php │ │ │ ├── banlist.class.php │ │ │ ├── clear.class.php │ │ │ ├── connect.class.php │ │ │ ├── debug.class.php │ │ │ ├── deop.class.php │ │ │ ├── error.class.php │ │ │ ├── getnewmsg.class.php │ │ │ ├── help.class.php │ │ │ ├── identify.class.php │ │ │ ├── init.class.php │ │ │ ├── invite.class.php │ │ │ ├── join.class.php │ │ │ ├── join2.class.php │ │ │ ├── kick.class.php │ │ │ ├── leave.class.php │ │ │ ├── me.class.php │ │ │ ├── nick.class.php │ │ │ ├── notice.class.php │ │ │ ├── op.class.php │ │ │ ├── privmsg.class.php │ │ │ ├── privmsg2.class.php │ │ │ ├── quit.class.php │ │ │ ├── redirect.class.php │ │ │ ├── rehash.class.php │ │ │ ├── send.class.php │ │ │ ├── unban.class.php │ │ │ ├── update.class.php │ │ │ ├── updatemynick.class.php │ │ │ ├── version.class.php │ │ │ ├── who.class.php │ │ │ ├── who2.class.php │ │ │ ├── whois.class.php │ │ │ └── whois2.class.php │ │ ├── containers │ │ │ ├── file.class.php │ │ │ └── mysql.class.php │ │ ├── pfccommand.class.php │ │ ├── pfccontainer.class.php │ │ ├── pfccontainerinterface.class.php │ │ ├── pfcglobalconfig.class.php │ │ ├── pfci18n.class.php │ │ ├── pfcinfo.class.php │ │ ├── pfcjson.class.php │ │ ├── pfcproxycommand.class.php │ │ ├── pfctemplate.class.php │ │ ├── pfctools.php │ │ ├── pfcuserconfig.class.php │ │ ├── phpfreechat.class.php │ │ └── proxies │ │ │ ├── auth.class.php │ │ │ ├── censor.class.php │ │ │ ├── checknickchange.class.php │ │ │ ├── checktimeout.class.php │ │ │ ├── lock.class.php │ │ │ ├── log.class.php │ │ │ └── noflood.class.php │ ├── style │ │ ├── bulle.gif │ │ ├── bulle.png │ │ ├── check_off.png │ │ ├── check_on.png │ │ ├── content.css │ │ ├── footer.css │ │ ├── generic.css │ │ ├── header.css │ │ ├── logo_88x31.gif │ │ ├── menu.css │ │ ├── show.js │ │ ├── valid-css.png │ │ └── valid-xhtml.png │ ├── testcase │ │ ├── container_file.php │ │ ├── container_generic.php │ │ ├── container_mysql.php │ │ ├── ctype.php │ │ └── parsecommand.php │ ├── themes │ │ ├── blune │ │ │ ├── images │ │ │ │ ├── online-off.gif │ │ │ │ ├── online-on.gif │ │ │ │ ├── shade.gif │ │ │ │ ├── smiley-off.gif │ │ │ │ └── smiley-on.gif │ │ │ ├── info.php │ │ │ └── style.css.php │ │ ├── cerutti │ │ │ ├── info.php │ │ │ └── smileys │ │ │ │ ├── caca.png │ │ │ │ ├── confused.png │ │ │ │ ├── cry.png │ │ │ │ ├── dizzy.png │ │ │ │ ├── happy.png │ │ │ │ ├── lol.png │ │ │ │ ├── neutral.png │ │ │ │ ├── omg.png │ │ │ │ ├── sad.png │ │ │ │ ├── smile.png │ │ │ │ ├── theme.txt │ │ │ │ ├── tongue.png │ │ │ │ └── wink.png │ │ ├── default │ │ │ ├── chat.html.tpl.php │ │ │ ├── chat.js.tpl.php │ │ │ ├── customize.js.php │ │ │ ├── images │ │ │ │ ├── background.gif │ │ │ │ ├── bt_color.gif │ │ │ │ ├── bt_del.gif │ │ │ │ ├── bt_em.gif │ │ │ │ ├── bt_ins.gif │ │ │ │ ├── bt_mail.gif │ │ │ │ ├── bt_pre.gif │ │ │ │ ├── bt_strong.gif │ │ │ │ ├── ch-active.gif │ │ │ │ ├── ch.gif │ │ │ │ ├── clock-off.gif │ │ │ │ ├── clock-on.gif │ │ │ │ ├── close-whoisbox.gif │ │ │ │ ├── color-off.gif │ │ │ │ ├── color-on.gif │ │ │ │ ├── color_transparent.gif │ │ │ │ ├── login.gif │ │ │ │ ├── logout.gif │ │ │ │ ├── maximize.gif │ │ │ │ ├── minimize.gif │ │ │ │ ├── newmsg.gif │ │ │ │ ├── oldmsg.gif │ │ │ │ ├── online-off.gif │ │ │ │ ├── online-on.gif │ │ │ │ ├── online-separator.gif │ │ │ │ ├── openpv.gif │ │ │ │ ├── pv-active.gif │ │ │ │ ├── pv.gif │ │ │ │ ├── smiley-off.gif │ │ │ │ ├── smiley-on.gif │ │ │ │ ├── sound-off.gif │ │ │ │ ├── sound-on.gif │ │ │ │ ├── tab_remove.gif │ │ │ │ ├── user-admin.gif │ │ │ │ ├── user-me.gif │ │ │ │ └── user.gif │ │ │ ├── info.php │ │ │ ├── smileys │ │ │ │ ├── arrow_left.png │ │ │ │ ├── arrow_right.png │ │ │ │ ├── emoticon_evilgrin.png │ │ │ │ ├── emoticon_grin.png │ │ │ │ ├── emoticon_happy.png │ │ │ │ ├── emoticon_smile.png │ │ │ │ ├── emoticon_surprised.png │ │ │ │ ├── emoticon_tongue.png │ │ │ │ ├── emoticon_unhappy.png │ │ │ │ ├── emoticon_waii.png │ │ │ │ ├── emoticon_wink.png │ │ │ │ ├── exclamation.png │ │ │ │ ├── lightbulb.png │ │ │ │ ├── theme.txt │ │ │ │ ├── weather_clouds.png │ │ │ │ ├── weather_cloudy.png │ │ │ │ ├── weather_lightning.png │ │ │ │ ├── weather_rain.png │ │ │ │ ├── weather_snow.png │ │ │ │ └── weather_sun.png │ │ │ ├── sound.swf │ │ │ └── style.css.php │ │ ├── green │ │ │ ├── images │ │ │ │ ├── ch-active.gif │ │ │ │ ├── ch.gif │ │ │ │ ├── pv-active.gif │ │ │ │ ├── pv.gif │ │ │ │ └── shade.gif │ │ │ ├── info.php │ │ │ └── style.css.php │ │ ├── msn │ │ │ └── smileys │ │ │ │ ├── gnu.gif │ │ │ │ ├── msn_angel.gif │ │ │ │ ├── msn_angry.gif │ │ │ │ ├── msn_away.gif │ │ │ │ ├── msn_bat.gif │ │ │ │ ├── msn_beer.gif │ │ │ │ ├── msn_bowl.gif │ │ │ │ ├── msn_boy.gif │ │ │ │ ├── msn_brb.gif │ │ │ │ ├── msn_brheart.gif │ │ │ │ ├── msn_cake.gif │ │ │ │ ├── msn_car.gif │ │ │ │ ├── msn_cat.gif │ │ │ │ ├── msn_cellphone.gif │ │ │ │ ├── msn_cigarette.gif │ │ │ │ ├── msn_clock.gif │ │ │ │ ├── msn_coffee.gif │ │ │ │ ├── msn_coins.gif │ │ │ │ ├── msn_computer.gif │ │ │ │ ├── msn_cry.gif │ │ │ │ ├── msn_deadflower.gif │ │ │ │ ├── msn_devil.gif │ │ │ │ ├── msn_dog.gif │ │ │ │ ├── msn_dontknow.gif │ │ │ │ ├── msn_donttell.gif │ │ │ │ ├── msn_drink.gif │ │ │ │ ├── msn_email.gif │ │ │ │ ├── msn_embarrassed.gif │ │ │ │ ├── msn_eyeroll.gif │ │ │ │ ├── msn_film.gif │ │ │ │ ├── msn_fingerscrossed.gif │ │ │ │ ├── msn_flower.gif │ │ │ │ ├── msn_gift.gif │ │ │ │ ├── msn_girl.gif │ │ │ │ ├── msn_handcuffs.gif │ │ │ │ ├── msn_heart.gif │ │ │ │ ├── msn_highfive.gif │ │ │ │ ├── msn_hot.gif │ │ │ │ ├── msn_icon.gif │ │ │ │ ├── msn_idea.gif │ │ │ │ ├── msn_island.gif │ │ │ │ ├── msn_kiss.gif │ │ │ │ ├── msn_laugh.gif │ │ │ │ ├── msn_lightning.gif │ │ │ │ ├── msn_nerd.gif │ │ │ │ ├── msn_neutral.gif │ │ │ │ ├── msn_note.gif │ │ │ │ ├── msn_occ.gif │ │ │ │ ├── msn_online.gif │ │ │ │ ├── msn_ooooh.gif │ │ │ │ ├── msn_party.gif │ │ │ │ ├── msn_phone.gif │ │ │ │ ├── msn_photo.gif │ │ │ │ ├── msn_pizza.gif │ │ │ │ ├── msn_plane.gif │ │ │ │ ├── msn_plate.gif │ │ │ │ ├── msn_question.gif │ │ │ │ ├── msn_rainbow.gif │ │ │ │ ├── msn_run.gif │ │ │ │ ├── msn_runback.gif │ │ │ │ ├── msn_sad.gif │ │ │ │ ├── msn_sarcastic.gif │ │ │ │ ├── msn_secret.gif │ │ │ │ ├── msn_sheep.gif │ │ │ │ ├── msn_sick.gif │ │ │ │ ├── msn_sleep.gif │ │ │ │ ├── msn_sleepy.gif │ │ │ │ ├── msn_smiley.gif │ │ │ │ ├── msn_snail.gif │ │ │ │ ├── msn_soccer.gif │ │ │ │ ├── msn_star.gif │ │ │ │ ├── msn_stormy.gif │ │ │ │ ├── msn_sun.gif │ │ │ │ ├── msn_sunglasses.gif │ │ │ │ ├── msn_teeth.gif │ │ │ │ ├── msn_think.gif │ │ │ │ ├── msn_thumbdown.gif │ │ │ │ ├── msn_thumbup.gif │ │ │ │ ├── msn_tongue.gif │ │ │ │ ├── msn_turtle.gif │ │ │ │ ├── msn_umbrella.gif │ │ │ │ ├── msn_weird.gif │ │ │ │ ├── msn_wink.gif │ │ │ │ ├── msn_xbox.gif │ │ │ │ ├── theme.txt │ │ │ │ ├── tux1.gif │ │ │ │ └── tux2.gif │ │ ├── phoenity │ │ │ └── smileys │ │ │ │ ├── alien.gif │ │ │ │ ├── angry.gif │ │ │ │ ├── arrow.gif │ │ │ │ ├── author.txt │ │ │ │ ├── confused.gif │ │ │ │ ├── cool.gif │ │ │ │ ├── cry.gif │ │ │ │ ├── dizzy.gif │ │ │ │ ├── eek.gif │ │ │ │ ├── evil.gif │ │ │ │ ├── exclam.gif │ │ │ │ ├── idea.gif │ │ │ │ ├── laugh.gif │ │ │ │ ├── lol.gif │ │ │ │ ├── mrgreen.gif │ │ │ │ ├── normal.gif │ │ │ │ ├── question.gif │ │ │ │ ├── razz.gif │ │ │ │ ├── redface.gif │ │ │ │ ├── rolleyes.gif │ │ │ │ ├── sad.gif │ │ │ │ ├── smile.gif │ │ │ │ ├── surprised.gif │ │ │ │ ├── theme.txt │ │ │ │ └── wink.gif │ │ ├── phpbb2 │ │ │ └── smileys │ │ │ │ ├── eusa_angel.gif │ │ │ │ ├── eusa_boohoo.gif │ │ │ │ ├── eusa_clap.gif │ │ │ │ ├── eusa_dance.gif │ │ │ │ ├── eusa_doh.gif │ │ │ │ ├── eusa_drool.gif │ │ │ │ ├── eusa_eh.gif │ │ │ │ ├── eusa_hand.gif │ │ │ │ ├── eusa_liar.gif │ │ │ │ ├── eusa_naughty.gif │ │ │ │ ├── eusa_pray.gif │ │ │ │ ├── eusa_shhh.gif │ │ │ │ ├── eusa_shifty.gif │ │ │ │ ├── eusa_sick.gif │ │ │ │ ├── eusa_silenced.gif │ │ │ │ ├── eusa_snooty.gif │ │ │ │ ├── eusa_think.gif │ │ │ │ ├── eusa_wall.gif │ │ │ │ ├── eusa_whistle.gif │ │ │ │ ├── icon_arrow.gif │ │ │ │ ├── icon_biggrin.gif │ │ │ │ ├── icon_confused.gif │ │ │ │ ├── icon_cool.gif │ │ │ │ ├── icon_cry.gif │ │ │ │ ├── icon_eek.gif │ │ │ │ ├── icon_evil.gif │ │ │ │ ├── icon_exclaim.gif │ │ │ │ ├── icon_frown.gif │ │ │ │ ├── icon_idea.gif │ │ │ │ ├── icon_lol.gif │ │ │ │ ├── icon_mad.gif │ │ │ │ ├── icon_mrgreen.gif │ │ │ │ ├── icon_neutral.gif │ │ │ │ ├── icon_question.gif │ │ │ │ ├── icon_razz.gif │ │ │ │ ├── icon_redface.gif │ │ │ │ ├── icon_rolleyes.gif │ │ │ │ ├── icon_sad.gif │ │ │ │ ├── icon_smile.gif │ │ │ │ ├── icon_surprised.gif │ │ │ │ ├── icon_twisted.gif │ │ │ │ ├── icon_wink.gif │ │ │ │ └── theme.txt │ │ └── zilveer │ │ │ ├── images │ │ │ ├── channels_content_bg.png │ │ │ ├── newmsg.png │ │ │ ├── oldmsg.png │ │ │ ├── pfc_message1.png │ │ │ ├── pfc_message2.png │ │ │ ├── pfc_online.png │ │ │ ├── pfc_send.png │ │ │ ├── pfc_words.png │ │ │ ├── tab_off.png │ │ │ ├── tab_on.png │ │ │ ├── tab_remove.gif │ │ │ ├── user-me.gif │ │ │ └── user.gif │ │ │ ├── info.php │ │ │ └── style.css.php │ └── version.txt ├── htmlPurifier │ ├── HTMLPurifier.standalone.php │ └── standalone │ │ └── HTMLPurifier │ │ ├── ConfigSchema │ │ ├── Builder │ │ │ ├── ConfigSchema.php │ │ │ └── Xml.php │ │ ├── Exception.php │ │ ├── Interchange.php │ │ ├── Interchange │ │ │ ├── Directive.php │ │ │ └── Id.php │ │ ├── InterchangeBuilder.php │ │ ├── Validator.php │ │ ├── ValidatorAtom.php │ │ ├── schema.ser │ │ └── schema │ │ │ ├── Attr.AllowedClasses.txt │ │ │ ├── Attr.AllowedFrameTargets.txt │ │ │ ├── Attr.AllowedRel.txt │ │ │ ├── Attr.AllowedRev.txt │ │ │ ├── Attr.ClassUseCDATA.txt │ │ │ ├── Attr.DefaultImageAlt.txt │ │ │ ├── Attr.DefaultInvalidImage.txt │ │ │ ├── Attr.DefaultInvalidImageAlt.txt │ │ │ ├── Attr.DefaultTextDir.txt │ │ │ ├── Attr.EnableID.txt │ │ │ ├── Attr.ForbiddenClasses.txt │ │ │ ├── Attr.ID.HTML5.txt │ │ │ ├── Attr.IDBlacklist.txt │ │ │ ├── Attr.IDBlacklistRegexp.txt │ │ │ ├── Attr.IDPrefix.txt │ │ │ ├── Attr.IDPrefixLocal.txt │ │ │ ├── AutoFormat.AutoParagraph.txt │ │ │ ├── AutoFormat.Custom.txt │ │ │ ├── AutoFormat.DisplayLinkURI.txt │ │ │ ├── AutoFormat.Linkify.txt │ │ │ ├── AutoFormat.PurifierLinkify.DocURL.txt │ │ │ ├── AutoFormat.PurifierLinkify.txt │ │ │ ├── AutoFormat.RemoveEmpty.Predicate.txt │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.Exceptions.txt │ │ │ ├── AutoFormat.RemoveEmpty.RemoveNbsp.txt │ │ │ ├── AutoFormat.RemoveEmpty.txt │ │ │ ├── AutoFormat.RemoveSpansWithoutAttributes.txt │ │ │ ├── CSS.AllowDuplicates.txt │ │ │ ├── CSS.AllowImportant.txt │ │ │ ├── CSS.AllowTricky.txt │ │ │ ├── CSS.AllowedFonts.txt │ │ │ ├── CSS.AllowedProperties.txt │ │ │ ├── CSS.DefinitionRev.txt │ │ │ ├── CSS.ForbiddenProperties.txt │ │ │ ├── CSS.MaxImgLength.txt │ │ │ ├── CSS.Proprietary.txt │ │ │ ├── CSS.Trusted.txt │ │ │ ├── Cache.DefinitionImpl.txt │ │ │ ├── Cache.SerializerPath.txt │ │ │ ├── Cache.SerializerPermissions.txt │ │ │ ├── Core.AggressivelyFixLt.txt │ │ │ ├── Core.AllowHostnameUnderscore.txt │ │ │ ├── Core.CollectErrors.txt │ │ │ ├── Core.ColorKeywords.txt │ │ │ ├── Core.ConvertDocumentToFragment.txt │ │ │ ├── Core.DirectLexLineNumberSyncInterval.txt │ │ │ ├── Core.DisableExcludes.txt │ │ │ ├── Core.EnableIDNA.txt │ │ │ ├── Core.Encoding.txt │ │ │ ├── Core.EscapeInvalidChildren.txt │ │ │ ├── Core.EscapeInvalidTags.txt │ │ │ ├── Core.EscapeNonASCIICharacters.txt │ │ │ ├── Core.HiddenElements.txt │ │ │ ├── Core.Language.txt │ │ │ ├── Core.LexerImpl.txt │ │ │ ├── Core.MaintainLineNumbers.txt │ │ │ ├── Core.NormalizeNewlines.txt │ │ │ ├── Core.RemoveInvalidImg.txt │ │ │ ├── Core.RemoveProcessingInstructions.txt │ │ │ ├── Core.RemoveScriptContents.txt │ │ │ ├── Filter.Custom.txt │ │ │ ├── Filter.ExtractStyleBlocks.Escaping.txt │ │ │ ├── Filter.ExtractStyleBlocks.Scope.txt │ │ │ ├── Filter.ExtractStyleBlocks.TidyImpl.txt │ │ │ ├── Filter.ExtractStyleBlocks.txt │ │ │ ├── Filter.YouTube.txt │ │ │ ├── HTML.Allowed.txt │ │ │ ├── HTML.AllowedAttributes.txt │ │ │ ├── HTML.AllowedComments.txt │ │ │ ├── HTML.AllowedCommentsRegexp.txt │ │ │ ├── HTML.AllowedElements.txt │ │ │ ├── HTML.AllowedModules.txt │ │ │ ├── HTML.Attr.Name.UseCDATA.txt │ │ │ ├── HTML.BlockWrapper.txt │ │ │ ├── HTML.CoreModules.txt │ │ │ ├── HTML.CustomDoctype.txt │ │ │ ├── HTML.DefinitionID.txt │ │ │ ├── HTML.DefinitionRev.txt │ │ │ ├── HTML.Doctype.txt │ │ │ ├── HTML.FlashAllowFullScreen.txt │ │ │ ├── HTML.ForbiddenAttributes.txt │ │ │ ├── HTML.ForbiddenElements.txt │ │ │ ├── HTML.MaxImgLength.txt │ │ │ ├── HTML.Nofollow.txt │ │ │ ├── HTML.Parent.txt │ │ │ ├── HTML.Proprietary.txt │ │ │ ├── HTML.SafeEmbed.txt │ │ │ ├── HTML.SafeIframe.txt │ │ │ ├── HTML.SafeObject.txt │ │ │ ├── HTML.SafeScripting.txt │ │ │ ├── HTML.Strict.txt │ │ │ ├── HTML.TargetBlank.txt │ │ │ ├── HTML.TargetNoreferrer.txt │ │ │ ├── HTML.TidyAdd.txt │ │ │ ├── HTML.TidyLevel.txt │ │ │ ├── HTML.TidyRemove.txt │ │ │ ├── HTML.Trusted.txt │ │ │ ├── HTML.XHTML.txt │ │ │ ├── Output.CommentScriptContents.txt │ │ │ ├── Output.FixInnerHTML.txt │ │ │ ├── Output.FlashCompat.txt │ │ │ ├── Output.Newline.txt │ │ │ ├── Output.SortAttr.txt │ │ │ ├── Output.TidyFormat.txt │ │ │ ├── Test.ForceNoIconv.txt │ │ │ ├── URI.AllowedSchemes.txt │ │ │ ├── URI.Base.txt │ │ │ ├── URI.DefaultScheme.txt │ │ │ ├── URI.DefinitionID.txt │ │ │ ├── URI.DefinitionRev.txt │ │ │ ├── URI.Disable.txt │ │ │ ├── URI.DisableExternal.txt │ │ │ ├── URI.DisableExternalResources.txt │ │ │ ├── URI.DisableResources.txt │ │ │ ├── URI.Host.txt │ │ │ ├── URI.HostBlacklist.txt │ │ │ ├── URI.MakeAbsolute.txt │ │ │ ├── URI.Munge.txt │ │ │ ├── URI.MungeResources.txt │ │ │ ├── URI.MungeSecretKey.txt │ │ │ ├── URI.OverrideAllowedSchemes.txt │ │ │ ├── URI.SafeIframeRegexp.txt │ │ │ └── info.ini │ │ ├── EntityLookup │ │ └── entities.ser │ │ ├── Filter │ │ ├── ExtractStyleBlocks.php │ │ └── YouTube.php │ │ ├── Language │ │ ├── classes │ │ │ └── en-x-test.php │ │ └── messages │ │ │ ├── en-x-test.php │ │ │ ├── en-x-testmini.php │ │ │ └── en.php │ │ ├── Lexer │ │ └── PH5P.php │ │ ├── Printer.php │ │ └── Printer │ │ ├── CSSDefinition.php │ │ ├── ConfigForm.css │ │ ├── ConfigForm.js │ │ ├── ConfigForm.php │ │ └── HTMLDefinition.php ├── jpGraph │ ├── README │ ├── VERSION │ ├── barcode │ │ ├── demoapp │ │ │ ├── barcode_image.php │ │ │ ├── barcode_menu.php │ │ │ └── index.html │ │ ├── examples │ │ │ ├── barcode_errhandling_ex0.php │ │ │ ├── barcode_ex0.php │ │ │ ├── barcode_ex1.php │ │ │ ├── barcode_ex2.php │ │ │ ├── barcode_ex3.php │ │ │ ├── barcode_ex4.php │ │ │ └── barcode_usps_example.php │ │ └── mkbarcode.php │ ├── flag_mapping │ ├── flags.dat │ ├── flags_thumb100x100.dat │ ├── flags_thumb35x35.dat │ ├── flags_thumb60x60.dat │ ├── fonts │ │ ├── DejaVuSans-Bold.ttf │ │ ├── DejaVuSans-BoldOblique.ttf │ │ ├── DejaVuSans-Oblique.ttf │ │ ├── DejaVuSans.ttf │ │ ├── FF_FONT0-Bold.gdf │ │ ├── FF_FONT0.gdf │ │ ├── FF_FONT1-Bold.gdf │ │ ├── FF_FONT1.gdf │ │ ├── FF_FONT2-Bold.gdf │ │ └── FF_FONT2.gdf │ ├── gd_image.inc.php │ ├── imageSmoothArc.php │ ├── imgdata_balls.inc.php │ ├── imgdata_bevels.inc.php │ ├── imgdata_diamonds.inc.php │ ├── imgdata_pushpins.inc.php │ ├── imgdata_squares.inc.php │ ├── imgdata_stars.inc.php │ ├── jpg-config.inc.php │ ├── jpg-config.inc.php.orig │ ├── jpgraph.php │ ├── jpgraph_antispam-digits.php │ ├── jpgraph_antispam.php │ ├── jpgraph_bar.php │ ├── jpgraph_canvas.php │ ├── jpgraph_canvtools.php │ ├── jpgraph_contour.php │ ├── jpgraph_date.php │ ├── jpgraph_errhandler.inc.php │ ├── jpgraph_error.php │ ├── jpgraph_flags.php │ ├── jpgraph_gantt.php │ ├── jpgraph_gb2312.php │ ├── jpgraph_gradient.php │ ├── jpgraph_iconplot.php │ ├── jpgraph_imgtrans.php │ ├── jpgraph_led.php │ ├── jpgraph_legend.inc.php │ ├── jpgraph_line.php │ ├── jpgraph_log.php │ ├── jpgraph_meshinterpolate.inc.php │ ├── jpgraph_mgraph.php │ ├── jpgraph_pie.php │ ├── jpgraph_pie3d.php │ ├── jpgraph_plotband.php │ ├── jpgraph_plotline.php │ ├── jpgraph_plotmark.inc.php │ ├── jpgraph_polar.php │ ├── jpgraph_radar.php │ ├── jpgraph_regstat.php │ ├── jpgraph_rgb.inc.php │ ├── jpgraph_scatter.php │ ├── jpgraph_stock.php │ ├── jpgraph_table.php │ ├── jpgraph_text.inc.php │ ├── jpgraph_theme.inc.php │ ├── jpgraph_ttf.inc.php │ ├── jpgraph_utils.inc.php │ ├── jpgraph_windrose.php │ ├── lang │ │ ├── de.inc.php │ │ ├── en.inc.php │ │ └── prod.inc.php │ └── themes │ │ ├── AquaTheme.class.php │ │ ├── GreenTheme.class.php │ │ ├── OceanTheme.class.php │ │ ├── OrangeTheme.class.php │ │ ├── PastelTheme.class.php │ │ ├── RoseTheme.class.php │ │ ├── SoftyTheme.class.php │ │ ├── UniversalTheme.class.php │ │ └── VividTheme.class.php ├── jsColor │ ├── arrow.gif │ ├── cross.gif │ ├── hs.png │ ├── hv.png │ └── jscolor.js ├── lightbox │ ├── blank.gif │ ├── close.gif │ ├── closelabel.gif │ ├── image-1.jpg │ ├── loading.gif │ ├── next.gif │ ├── nextlabel.gif │ ├── prev.gif │ ├── prevlabel.gif │ └── thumb-1.jpg ├── pear.php ├── sAjax.php ├── yuicompressor-2.4.8.jar └── zip.php ├── function ├── general.php └── legacy.php ├── interface ├── alert │ ├── confirm.gif │ ├── info.gif │ ├── security.gif │ └── warning.gif ├── back │ ├── aba.gif │ ├── degrade.gif │ ├── degrade.grey.png │ ├── field.gif │ ├── gradient.png │ └── overlay.png ├── button │ ├── Checkout-en_US.png │ ├── Checkout-es_ES.png │ ├── Checkout-pt_BR.png │ ├── ClearShopCar-en_US.png │ ├── ClearShopCar-es_ES.png │ └── ClearShopCar-pt_BR.png ├── css │ ├── bug-report.css │ ├── dragable-boxes.css │ ├── empty.css │ ├── firefox.css │ ├── general-ie.css │ ├── general.css │ ├── instance-backup.css │ ├── lightbox.css │ ├── logon.css │ ├── menu.css │ ├── mobile.css │ ├── modal-message.css │ ├── modalbox.css │ ├── password.css │ ├── print.css │ └── top.css ├── file │ ├── 7zip.gif │ ├── ace.gif │ ├── ai.gif │ ├── aiff.gif │ ├── asp.gif │ ├── avi.gif │ ├── bat.gif │ ├── bin.gif │ ├── bmp.gif │ ├── ccd.gif │ ├── cmd.gif │ ├── com.gif │ ├── css.gif │ ├── dll.gif │ ├── doc.gif │ ├── document.gif │ ├── docx.gif │ ├── fh.gif │ ├── file.gif │ ├── fla.gif │ ├── gif.gif │ ├── hqx.gif │ ├── htm.gif │ ├── icon │ │ ├── ac3.png │ │ ├── ace.png │ │ ├── ade.png │ │ ├── adp.png │ │ ├── ai.png │ │ ├── aiff.png │ │ ├── au.png │ │ ├── avi.png │ │ ├── bat.png │ │ ├── bin.png │ │ ├── bmp.png │ │ ├── bup.png │ │ ├── cab.png │ │ ├── cat.png │ │ ├── chm.png │ │ ├── css.png │ │ ├── cue.png │ │ ├── dat.png │ │ ├── dcr.png │ │ ├── der.png │ │ ├── dic.png │ │ ├── divx.png │ │ ├── diz.png │ │ ├── dll.png │ │ ├── doc.png │ │ ├── docx.png │ │ ├── dos.png │ │ ├── dvd.png │ │ ├── dwg.png │ │ ├── dwt.png │ │ ├── emf.png │ │ ├── exc.png │ │ ├── file.png │ │ ├── fla.png │ │ ├── fon.png │ │ ├── gif.png │ │ ├── hlp.png │ │ ├── html.png │ │ ├── ifo.png │ │ ├── inf.png │ │ ├── ini.png │ │ ├── ins.png │ │ ├── ip.png │ │ ├── iso.png │ │ ├── isp.png │ │ ├── java.png │ │ ├── jfif.png │ │ ├── jpeg.png │ │ ├── jpg.png │ │ ├── log.png │ │ ├── m4a.png │ │ ├── mid.png │ │ ├── mmf.png │ │ ├── mmm.png │ │ ├── mov.png │ │ ├── movie.png │ │ ├── mp2.png │ │ ├── mp2v.png │ │ ├── mp3.png │ │ ├── mp4.png │ │ ├── mpe.png │ │ ├── mpeg.png │ │ ├── mpg.png │ │ ├── mpv2.png │ │ ├── nfo.png │ │ ├── pdd.png │ │ ├── pdf.png │ │ ├── php.png │ │ ├── png.png │ │ ├── ppt.png │ │ ├── pptx.png │ │ ├── preview.png │ │ ├── psd.png │ │ ├── rar.png │ │ ├── reg.png │ │ ├── rtf.png │ │ ├── scp.png │ │ ├── theme.png │ │ ├── tif.png │ │ ├── tiff.png │ │ ├── tlb.png │ │ ├── ttf.png │ │ ├── txt.png │ │ ├── uis.png │ │ ├── url.png │ │ ├── vbs.png │ │ ├── vcr.png │ │ ├── vob.png │ │ ├── wav.png │ │ ├── wba.png │ │ ├── wma.png │ │ ├── wmv.png │ │ ├── wpl.png │ │ ├── wri.png │ │ ├── wtx.png │ │ ├── xls.png │ │ ├── xlsx.png │ │ ├── xml.png │ │ ├── xsl.png │ │ ├── zap.png │ │ └── zip.png │ ├── img.gif │ ├── indd.gif │ ├── inf.gif │ ├── ini.gif │ ├── iso.gif │ ├── jpg.gif │ ├── mdf.gif │ ├── mds.gif │ ├── midi.gif │ ├── mov.gif │ ├── mp3.gif │ ├── mp4.gif │ ├── mpc.gif │ ├── mpg.gif │ ├── ogg.gif │ ├── pdf.gif │ ├── php.gif │ ├── png.gif │ ├── ppt.gif │ ├── pptx.gif │ ├── psd.gif │ ├── psp.gif │ ├── rar.gif │ ├── sit.gif │ ├── sitx.gif │ ├── swf.gif │ ├── sys.gif │ ├── tiff.gif │ ├── txt.gif │ ├── wav.gif │ ├── wma.gif │ ├── wmv.gif │ ├── xls.gif │ ├── xlsx.gif │ ├── xml.gif │ └── zip.gif ├── icon │ ├── alert.gif │ ├── alerts.gif │ ├── arrow.down.gif │ ├── arrow.left.gif │ ├── arrow.right.gif │ ├── arrow.up.gif │ ├── backup.alternative.gif │ ├── backup.gif │ ├── bug.gif │ ├── calendar.gif │ ├── camera.gif │ ├── cancel.gif │ ├── chat.gif │ ├── confirm.gif │ ├── confirmed.gif │ ├── copy.gif │ ├── create.gif │ ├── delete.gif │ ├── display.down.gif │ ├── display.up.gif │ ├── edit.gif │ ├── editable.gif │ ├── file.gif │ ├── form.gif │ ├── gallery.gif │ ├── grey │ │ ├── alerts.gif │ │ ├── camera.gif │ │ ├── cancel.gif │ │ ├── confirm.gif │ │ ├── confirmed.gif │ │ ├── copy.gif │ │ ├── create.gif │ │ ├── delete.gif │ │ ├── display.gif │ │ ├── edit.gif │ │ ├── file.gif │ │ ├── form.gif │ │ ├── gallery.gif │ │ ├── group.gif │ │ ├── manage.gif │ │ ├── pdf.gif │ │ ├── permission.gif │ │ ├── reply.gif │ │ ├── save.gif │ │ ├── shop.gif │ │ ├── special.gif │ │ ├── version.gif │ │ └── view.gif │ ├── group.gif │ ├── hand.gif │ ├── help.gif │ ├── home.gif │ ├── info.gif │ ├── logout.gif │ ├── manage.gif │ ├── manual.gif │ ├── memory.gif │ ├── ok.gif │ ├── pdf.gif │ ├── permission.gif │ ├── print.gif │ ├── profile.gif │ ├── qr.gif │ ├── refresh.gif │ ├── reply.gif │ ├── revert.gif │ ├── save.gif │ ├── search.gif │ ├── shop.gif │ ├── sort.gif │ ├── special.gif │ ├── upload.gif │ ├── version.gif │ ├── view.gif │ └── warning.gif ├── image │ ├── arrow.down.gif │ ├── arrow.down.large.png │ ├── arrow.green.png │ ├── arrow.left.gif │ ├── arrow.png │ ├── arrow.right.gif │ ├── arrow.up.gif │ ├── assign.titan.gif │ ├── assign.titan.png │ ├── backup.png │ ├── bar.png │ ├── cc.88x31.png │ ├── cc.png │ ├── cc.some_rights.png │ ├── close.gif │ ├── error.png │ ├── exclamation.png │ ├── firefox.png │ ├── firefox.portable.png │ ├── firefox.titan.png │ ├── get.firefox.png │ ├── google-play.png │ ├── graph.no_data.png │ ├── indicatormediumgb6.gif │ ├── info.gif │ ├── info.png │ ├── info_alert.png │ ├── loader.gif │ ├── lock_hot.png │ ├── login.png │ ├── logo.titan.gif │ ├── logo.titan.png │ ├── logo_80x15.gif │ ├── manual_generation.png │ ├── menu-black.png │ ├── menu-white.png │ ├── menu.jpg │ ├── menu_dialog_arrow.png │ ├── minilogo.titan.gif │ ├── no_photo.png │ ├── passwd.fair.gif │ ├── passwd.good.gif │ ├── passwd.strong.gif │ ├── passwd.very_fair.gif │ ├── passwd.very_weak.gif │ ├── passwd.weak.gif │ ├── qr.png │ ├── reload.png │ ├── rss.jpg │ ├── rss.png │ ├── spinner.gif │ ├── success.png │ ├── titan.ico │ ├── trash.gif │ ├── update.big.png │ ├── update.png │ └── warning.png ├── locale │ ├── en_US.gif │ ├── en_US.png │ ├── es_ES.gif │ ├── es_ES.png │ ├── pt_BR.gif │ └── pt_BR.png ├── menu │ ├── accept.png │ ├── book.png │ ├── calendar.png │ ├── close.png │ ├── configure.png │ ├── create.png │ ├── csv.png │ ├── delete.png │ ├── edit.png │ ├── email.png │ ├── forward.png │ ├── graph.png │ ├── grey │ │ ├── accept.png │ │ ├── book.png │ │ ├── calendar.png │ │ ├── close.png │ │ ├── configure.png │ │ ├── create.png │ │ ├── csv.png │ │ ├── delete.png │ │ ├── edit.png │ │ ├── email.png │ │ ├── forward.png │ │ ├── graph.png │ │ ├── group.png │ │ ├── home.png │ │ ├── list.png │ │ ├── mobile.png │ │ ├── notes.png │ │ ├── permission.png │ │ ├── personal.png │ │ ├── print.png │ │ ├── reject.png │ │ ├── reply.png │ │ ├── rewind.png │ │ ├── rss.png │ │ ├── save.png │ │ ├── search.png │ │ ├── social.png │ │ ├── sort.png │ │ ├── type.png │ │ ├── version.png │ │ └── view.png │ ├── group.png │ ├── home.png │ ├── list.png │ ├── mobile.png │ ├── notes.png │ ├── pdf.png │ ├── permission.png │ ├── personal.png │ ├── print.png │ ├── reject.png │ ├── reply.png │ ├── rewind.png │ ├── rss.png │ ├── save.png │ ├── search.png │ ├── social.png │ ├── sort.png │ ├── submenu.png │ ├── type.png │ ├── version.png │ └── view.png └── swf │ └── top.swf ├── job ├── daily.php └── minutely.php ├── js ├── actb.js ├── actb_fck.js ├── ajax-dynamic-content.js ├── ajax.js ├── boxover.js ├── builder.js ├── common.js ├── controls.js ├── dragable-ajax.js ├── dragable-boxes.js ├── dragdrop.js ├── effects.js ├── fly-to-basket.js ├── general.js ├── lightbox.js ├── logon.js ├── menu.js ├── modal-message.js ├── modalbox.js ├── multifile.js ├── protolimit.js ├── prototype.js ├── scriptaculous.js ├── sha1.js ├── slider.js ├── sound.js ├── spin.min.js ├── tooltip.js ├── top.js ├── type.js └── unittest.js ├── locale └── i18n │ ├── es_ES.xml │ └── pt_BR.xml ├── output ├── alert.php ├── body.php ├── csv.php ├── dompdf.php ├── error.php ├── inPlace.php ├── login.php ├── lucene.php ├── main.php ├── password.php ├── pdf.php ├── picture.php ├── print.php ├── register.php ├── rss.php ├── top.php └── upload.php ├── repos ├── auth │ ├── Embrapa.php │ └── Jwt.php ├── component │ ├── architect.creator │ │ ├── LICENSE │ │ ├── _ajax.php │ │ ├── _function.php │ │ ├── _image │ │ │ └── menu.swf │ │ ├── _js.php │ │ ├── _resource │ │ │ └── readme.txt │ │ ├── _script │ │ │ ├── configure.php │ │ │ ├── copyBase.php │ │ │ ├── getInstance.php │ │ │ └── make_xml_from_db.php │ │ ├── create.php │ │ ├── create.prepare.php │ │ ├── delete.commit.php │ │ ├── delete.php │ │ ├── delete.prepare.php │ │ ├── list.php │ │ ├── list.prepare.php │ │ ├── step_1.php │ │ ├── step_1.prepare.php │ │ ├── step_2.php │ │ ├── step_2.prepare.php │ │ ├── step_3.php │ │ ├── step_3.prepare.php │ │ ├── step_4.php │ │ ├── step_4.prepare.php │ │ ├── view.php │ │ └── view.prepare.php │ ├── global.archive │ │ ├── LICENSE │ │ ├── _ajax.php │ │ ├── _i18n │ │ │ ├── es_ES.xml │ │ │ └── pt_BR.xml │ │ ├── _js.php │ │ ├── create.commit.php │ │ ├── create.php │ │ ├── create.prepare.php │ │ ├── list.php │ │ └── list.prepare.php │ ├── global.contact │ │ ├── LICENSE │ │ ├── _js.php │ │ ├── _rss.php │ │ ├── _rss.prepare.php │ │ ├── delete.commit.php │ │ ├── delete.php │ │ ├── delete.prepare.php │ │ ├── list.php │ │ ├── list.prepare.php │ │ ├── reply.commit.php │ │ ├── reply.php │ │ ├── reply.prepare.php │ │ ├── view.php │ │ └── view.prepare.php │ ├── global.generic │ │ ├── LICENSE │ │ ├── _ajax.php │ │ ├── _api │ │ │ ├── active.php │ │ │ ├── delete.php │ │ │ ├── get.php │ │ │ ├── list.php │ │ │ ├── mine.php │ │ │ ├── patch.php │ │ │ ├── post.php │ │ │ └── put.php │ │ ├── _css.php │ │ ├── _doc │ │ │ ├── .en_US.txt │ │ │ ├── .es_ES.txt │ │ │ ├── .pt_BR.txt │ │ │ ├── calendar.en_US.txt │ │ │ ├── calendar.es_ES.txt │ │ │ ├── calendar.pt_BR.txt │ │ │ ├── create.en_US.txt │ │ │ ├── create.es_ES.txt │ │ │ ├── create.pt_BR.txt │ │ │ ├── csv.en_US.txt │ │ │ ├── csv.es_ES.txt │ │ │ ├── csv.pt_BR.txt │ │ │ ├── delete.en_US.txt │ │ │ ├── delete.es_ES.txt │ │ │ ├── delete.pt_BR.txt │ │ │ ├── edit.en_US.txt │ │ │ ├── edit.es_ES.txt │ │ │ ├── edit.pt_BR.txt │ │ │ ├── file.en_US.txt │ │ │ ├── file.es_ES.txt │ │ │ ├── file.pt_BR.txt │ │ │ ├── gallery.en_US.txt │ │ │ ├── gallery.es_ES.txt │ │ │ ├── gallery.pt_BR.txt │ │ │ ├── graph.en_US.txt │ │ │ ├── graph.es_ES.txt │ │ │ ├── graph.pt_BR.txt │ │ │ ├── list.en_US.txt │ │ │ ├── list.es_ES.txt │ │ │ ├── list.pt_BR.txt │ │ │ ├── relation.en_US.txt │ │ │ ├── relation.es_ES.txt │ │ │ ├── relation.pt_BR.txt │ │ │ ├── sort.en_US.txt │ │ │ ├── sort.es_ES.txt │ │ │ ├── sort.pt_BR.txt │ │ │ ├── version.en_US.txt │ │ │ ├── version.es_ES.txt │ │ │ ├── version.pt_BR.txt │ │ │ ├── view.en_US.txt │ │ │ ├── view.es_ES.txt │ │ │ └── view.pt_BR.txt │ │ ├── _function.php │ │ ├── _i18n │ │ │ ├── es_ES.xml │ │ │ └── pt_BR.xml │ │ ├── _js.php │ │ ├── _package │ │ │ └── net.ledes.news │ │ │ │ ├── db.sql │ │ │ │ ├── package.xml │ │ │ │ ├── readme.txt │ │ │ │ └── xml │ │ │ │ ├── all.xml │ │ │ │ ├── config.inc.xml │ │ │ │ ├── list.xml │ │ │ │ └── mail.xml │ │ ├── _resource │ │ │ ├── edit.png │ │ │ ├── left.gif │ │ │ ├── left_on.gif │ │ │ ├── photo.png │ │ │ ├── remove.png │ │ │ ├── right.gif │ │ │ ├── right_on.gif │ │ │ ├── tab.bmp │ │ │ └── view.png │ │ ├── _rss.php │ │ ├── _rss.prepare.php │ │ ├── _script │ │ │ ├── exportCsv.php │ │ │ ├── openPhoto.php │ │ │ ├── resize.php │ │ │ ├── thumb.php │ │ │ └── upload.php │ │ ├── calendar.php │ │ ├── calendar.prepare.php │ │ ├── create.commit.php │ │ ├── create.php │ │ ├── create.prepare.php │ │ ├── csv.php │ │ ├── csv.prepare.php │ │ ├── delete.commit.php │ │ ├── delete.php │ │ ├── delete.prepare.php │ │ ├── edit.commit.php │ │ ├── edit.php │ │ ├── edit.prepare.php │ │ ├── file.php │ │ ├── gallery.php │ │ ├── gallery.prepare.php │ │ ├── graph.php │ │ ├── graph.prepare.php │ │ ├── list.php │ │ ├── list.prepare.php │ │ ├── relation.commit.php │ │ ├── relation.php │ │ ├── relation.prepare.php │ │ ├── sort.php │ │ ├── sort.prepare.php │ │ ├── version.php │ │ ├── version.prepare.php │ │ ├── view.php │ │ └── view.prepare.php │ ├── global.group │ │ ├── LICENSE │ │ ├── _ajax.php │ │ ├── _class.php │ │ ├── _i18n │ │ │ └── pt_BR.xml │ │ ├── _js.php │ │ ├── _rss.php │ │ ├── _rss.prepare.php │ │ ├── create.commit.php │ │ ├── create.php │ │ ├── create.prepare.php │ │ ├── delete.commit.php │ │ ├── delete.php │ │ ├── delete.prepare.php │ │ ├── edit.commit.php │ │ ├── edit.php │ │ ├── edit.prepare.php │ │ ├── list.php │ │ ├── list.prepare.php │ │ ├── log.php │ │ ├── log.prepare.php │ │ ├── logView.php │ │ ├── logView.prepare.php │ │ ├── mailGroup.commit.php │ │ ├── mailGroup.php │ │ ├── mailGroup.prepare.php │ │ ├── permissionGroup.commit.php │ │ ├── permissionGroup.php │ │ ├── permissionGroup.prepare.php │ │ ├── typeGroup.commit.php │ │ ├── typeGroup.php │ │ ├── typeGroup.prepare.php │ │ ├── userGroup.commit.php │ │ ├── userGroup.php │ │ ├── userGroup.prepare.php │ │ ├── view.php │ │ └── view.prepare.php │ ├── global.home │ │ ├── LICENSE │ │ ├── _ajax.php │ │ ├── _css.php │ │ ├── _doc │ │ │ ├── .en_US.txt │ │ │ ├── .es_ES.txt │ │ │ ├── .pt_BR.txt │ │ │ ├── home.en_US.txt │ │ │ ├── home.es_ES.txt │ │ │ ├── home.pt_BR.txt │ │ │ ├── personal.en_US.txt │ │ │ ├── personal.es_ES.txt │ │ │ ├── personal.pt_BR.txt │ │ │ ├── profile.en_US.txt │ │ │ ├── profile.es_ES.txt │ │ │ └── profile.pt_BR.txt │ │ ├── _function.php │ │ ├── _i18n │ │ │ ├── es_ES.xml │ │ │ └── pt_BR.xml │ │ ├── _js.php │ │ ├── _script │ │ │ ├── qr.php │ │ │ └── update.php │ │ ├── home.php │ │ ├── home.prepare.php │ │ ├── personal.commit.php │ │ ├── personal.php │ │ ├── personal.prepare.php │ │ ├── profile.php │ │ ├── profile.prepare.php │ │ ├── status.php │ │ └── status.prepare.php │ ├── global.poller │ │ ├── LICENSE │ │ ├── _function.php │ │ ├── _js.php │ │ ├── _rss.php │ │ ├── _rss.prepare.php │ │ ├── _script │ │ │ ├── graphicPizza.php │ │ │ └── graphicPoint.php │ │ ├── answer.commit.php │ │ ├── answer.php │ │ ├── answer.prepare.php │ │ ├── create.commit.php │ │ ├── create.php │ │ ├── create.prepare.php │ │ ├── delete.commit.php │ │ ├── delete.php │ │ ├── delete.prepare.php │ │ ├── edit.commit.php │ │ ├── edit.php │ │ ├── edit.prepare.php │ │ ├── list.php │ │ ├── list.prepare.php │ │ ├── view.php │ │ └── view.prepare.php │ ├── global.simple │ │ ├── LICENSE │ │ ├── _class.php │ │ ├── _i18n │ │ │ └── pt_BR.xml │ │ ├── _js.php │ │ ├── edit.commit.php │ │ ├── edit.php │ │ ├── edit.prepare.php │ │ ├── view.php │ │ └── view.prepare.php │ ├── global.userPrivate │ │ ├── LICENSE │ │ ├── _ajax.php │ │ ├── _css.php │ │ ├── _function.php │ │ ├── _i18n │ │ │ ├── es_ES.xml │ │ │ └── pt_BR.xml │ │ ├── _js.php │ │ ├── _rss.php │ │ ├── _rss.prepare.php │ │ ├── _script │ │ │ └── exportCsv.php │ │ ├── create.commit.php │ │ ├── create.php │ │ ├── create.prepare.php │ │ ├── csv.php │ │ ├── csv.prepare.php │ │ ├── delete.commit.php │ │ ├── delete.php │ │ ├── delete.prepare.php │ │ ├── edit.commit.php │ │ ├── edit.php │ │ ├── edit.prepare.php │ │ ├── graph.php │ │ ├── graph.prepare.php │ │ ├── list.php │ │ ├── list.prepare.php │ │ ├── version.php │ │ ├── version.prepare.php │ │ ├── view.php │ │ └── view.prepare.php │ ├── global.userProtected │ │ ├── LICENSE │ │ ├── _ajax.php │ │ ├── _css.php │ │ ├── _i18n │ │ │ ├── es_ES.xml │ │ │ └── pt_BR.xml │ │ ├── _js.php │ │ ├── _register.commit.php │ │ ├── _register.php │ │ ├── _register.prepare.php │ │ ├── _rss.php │ │ ├── _rss.prepare.php │ │ ├── _script │ │ │ └── exportCsv.php │ │ ├── create.commit.php │ │ ├── create.php │ │ ├── create.prepare.php │ │ ├── csv.php │ │ ├── csv.prepare.php │ │ ├── delete.commit.php │ │ ├── delete.php │ │ ├── delete.prepare.php │ │ ├── edit.commit.php │ │ ├── edit.php │ │ ├── edit.prepare.php │ │ ├── graph.php │ │ ├── graph.prepare.php │ │ ├── list.php │ │ ├── list.prepare.php │ │ ├── version.php │ │ ├── version.prepare.php │ │ ├── view.php │ │ └── view.prepare.php │ └── global.userPublic │ │ ├── LICENSE │ │ ├── _ajax.php │ │ ├── _css.php │ │ ├── _i18n │ │ ├── es_ES.xml │ │ └── pt_BR.xml │ │ ├── _js.php │ │ ├── _register.commit.php │ │ ├── _register.php │ │ ├── _register.prepare.php │ │ ├── _rss.php │ │ ├── _rss.prepare.php │ │ ├── _script │ │ └── exportCsv.php │ │ ├── create.commit.php │ │ ├── create.php │ │ ├── create.prepare.php │ │ ├── csv.php │ │ ├── csv.prepare.php │ │ ├── delete.commit.php │ │ ├── delete.php │ │ ├── delete.prepare.php │ │ ├── edit.commit.php │ │ ├── edit.php │ │ ├── edit.prepare.php │ │ ├── graph.php │ │ ├── graph.prepare.php │ │ ├── list.php │ │ ├── list.prepare.php │ │ ├── version.php │ │ ├── version.prepare.php │ │ ├── view.php │ │ └── view.prepare.php ├── icon │ ├── Action │ │ ├── Action.php │ │ └── LICENSE │ ├── Copy │ │ ├── Copy.php │ │ └── LICENSE │ ├── InPlace │ │ ├── InPlace.php │ │ └── LICENSE │ ├── Js │ │ ├── Js.php │ │ └── LICENSE │ └── Status │ │ ├── LICENSE │ │ └── Status.php ├── ldap │ ├── inetOrgPerson │ │ ├── LICENSE │ │ └── inetOrgPerson.php │ ├── person │ │ ├── LICENSE │ │ └── person.php │ ├── posixAccount │ │ ├── LICENSE │ │ └── posixAccount.php │ ├── sambaSamAccount │ │ ├── LICENSE │ │ └── sambaSamAccount.php │ └── top │ │ ├── LICENSE │ │ └── top.php ├── menu │ ├── Action │ │ ├── Action.php │ │ └── LICENSE │ ├── Csv │ │ ├── Csv.php │ │ ├── LICENSE │ │ └── _doc │ │ │ ├── en_US.txt │ │ │ ├── es_ES.txt │ │ │ └── pt_BR.txt │ ├── Delete │ │ ├── Delete.php │ │ ├── LICENSE │ │ └── _doc │ │ │ ├── en_US.txt │ │ │ ├── es_ES.txt │ │ │ └── pt_BR.txt │ ├── Js │ │ ├── Js.php │ │ └── LICENSE │ ├── Pdf │ │ ├── LICENSE │ │ ├── Pdf.php │ │ └── _doc │ │ │ ├── en_US.txt │ │ │ ├── es_ES.txt │ │ │ └── pt_BR.txt │ ├── Print │ │ ├── LICENSE │ │ ├── Print.php │ │ └── _doc │ │ │ ├── en_US.txt │ │ │ ├── es_ES.txt │ │ │ └── pt_BR.txt │ ├── Rss │ │ ├── LICENSE │ │ ├── Rss.php │ │ └── _doc │ │ │ ├── en_US.txt │ │ │ ├── es_ES.txt │ │ │ └── pt_BR.txt │ ├── Save │ │ ├── LICENSE │ │ ├── Save.php │ │ └── _doc │ │ │ ├── en_US.txt │ │ │ ├── es_ES.txt │ │ │ └── pt_BR.txt │ ├── Search │ │ ├── LICENSE │ │ ├── Search.php │ │ └── _doc │ │ │ ├── en_US.txt │ │ │ ├── es_ES.txt │ │ │ └── pt_BR.txt │ └── Submenu │ │ ├── LICENSE │ │ └── Submenu.php ├── package │ ├── br.ufms.cpcx.user │ │ ├── LICENSE │ │ ├── config.inc.xml │ │ ├── create.xml │ │ ├── default.ini │ │ ├── default.xml │ │ ├── edit.xml │ │ ├── list.xml │ │ ├── modify.xml │ │ └── register.xml │ ├── net.ledes.about │ │ ├── LICENSE │ │ ├── all.xml │ │ ├── config.inc.xml │ │ ├── db.sql │ │ ├── list.xml │ │ └── readme.txt │ ├── net.ledes.access │ │ ├── LICENSE │ │ ├── alert.xml │ │ ├── all.xml │ │ ├── config.inc.xml │ │ ├── list.xml │ │ ├── permission.xml │ │ ├── readme.txt │ │ ├── type.xml │ │ └── user.xml │ ├── net.ledes.architect │ │ ├── LICENSE │ │ ├── config.inc.xml │ │ ├── list.xml │ │ └── readme.txt │ ├── net.ledes.archive │ │ ├── LICENSE │ │ ├── config.inc.xml │ │ ├── create.xml │ │ └── readme.txt │ ├── net.ledes.calendar │ │ ├── LICENSE │ │ ├── all.xml │ │ ├── config.inc.xml │ │ ├── db.sql │ │ ├── list.xml │ │ └── readme.txt │ ├── net.ledes.contact │ │ ├── LICENSE │ │ ├── all.xml │ │ ├── config.inc.xml │ │ ├── list.xml │ │ └── readme.txt │ ├── net.ledes.download │ │ ├── LICENSE │ │ ├── all.xml │ │ ├── config.inc.xml │ │ ├── db.sql │ │ ├── list.xml │ │ ├── mail.xml │ │ └── readme.txt │ ├── net.ledes.home │ │ ├── LICENSE │ │ ├── config.inc.xml │ │ └── readme.txt │ ├── net.ledes.link │ │ ├── LICENSE │ │ ├── all.xml │ │ ├── config.inc.xml │ │ ├── db.sql │ │ ├── list.xml │ │ ├── mail.xml │ │ └── readme.txt │ ├── net.ledes.manager │ │ ├── LICENSE │ │ ├── all.xml │ │ ├── config.inc.xml │ │ ├── list.xml │ │ ├── modify.xml │ │ └── readme.txt │ ├── net.ledes.news │ │ ├── LICENSE │ │ ├── all.xml │ │ ├── config.inc.xml │ │ ├── db.sql │ │ ├── list.xml │ │ ├── mail.xml │ │ └── readme.txt │ ├── net.ledes.poller │ │ ├── LICENSE │ │ ├── all.xml │ │ ├── answer.xml │ │ ├── config.inc.xml │ │ ├── db.sql │ │ ├── delete.xml │ │ ├── edit.xml │ │ ├── list.xml │ │ └── readme.txt │ ├── net.ledes.portal.link │ │ ├── LICENSE │ │ ├── all.xml │ │ ├── config.inc.xml │ │ ├── db.sql │ │ ├── list.xml │ │ └── readme.txt │ ├── net.ledes.portal.linkType │ │ ├── LICENSE │ │ ├── all.xml │ │ ├── config.inc.xml │ │ ├── db.sql │ │ ├── list.xml │ │ └── readme.txt │ ├── net.ledes.portal.news │ │ ├── LICENSE │ │ ├── all.xml │ │ ├── config.inc.xml │ │ ├── db.sql │ │ ├── list.xml │ │ └── readme.txt │ ├── net.ledes.text │ │ ├── LICENSE │ │ ├── all.xml │ │ ├── config.inc.xml │ │ ├── mail.xml │ │ └── readme.txt │ └── package.xml ├── social │ ├── Facebook │ │ ├── Facebook.php │ │ ├── LICENSE │ │ ├── _adapter │ │ │ ├── birthday.php │ │ │ ├── gender.php │ │ │ ├── picture.php │ │ │ ├── relationship_status.php │ │ │ ├── timezone.php │ │ │ └── username.php │ │ └── _resource │ │ │ ├── button.png │ │ │ ├── menu-grey.gif │ │ │ └── menu.gif │ └── Google │ │ ├── Google.php │ │ ├── LICENSE │ │ ├── _adapter │ │ ├── birthday.php │ │ ├── gender.php │ │ ├── locale.php │ │ └── picture.php │ │ ├── _library │ │ ├── Google_Client.php │ │ ├── auth │ │ │ ├── Google_AssertionCredentials.php │ │ │ ├── Google_Auth.php │ │ │ ├── Google_AuthNone.php │ │ │ ├── Google_LoginTicket.php │ │ │ ├── Google_OAuth2.php │ │ │ ├── Google_P12Signer.php │ │ │ ├── Google_PemVerifier.php │ │ │ ├── Google_Signer.php │ │ │ └── Google_Verifier.php │ │ ├── cache │ │ │ ├── Google_ApcCache.php │ │ │ ├── Google_Cache.php │ │ │ ├── Google_FileCache.php │ │ │ └── Google_MemcacheCache.php │ │ ├── config.php │ │ ├── contrib │ │ │ ├── Google_AdExchangeSellerService.php │ │ │ ├── Google_AdexchangebuyerService.php │ │ │ ├── Google_AdsenseService.php │ │ │ ├── Google_AdsensehostService.php │ │ │ ├── Google_AnalyticsService.php │ │ │ ├── Google_AndroidpublisherService.php │ │ │ ├── Google_AuditService.php │ │ │ ├── Google_BigqueryService.php │ │ │ ├── Google_BloggerService.php │ │ │ ├── Google_BooksService.php │ │ │ ├── Google_CalendarService.php │ │ │ ├── Google_ComputeService.php │ │ │ ├── Google_CustomsearchService.php │ │ │ ├── Google_DfareportingService.php │ │ │ ├── Google_DriveService.php │ │ │ ├── Google_FreebaseService.php │ │ │ ├── Google_FusiontablesService.php │ │ │ ├── Google_GamesService.php │ │ │ ├── Google_GanService.php │ │ │ ├── Google_GroupssettingsService.php │ │ │ ├── Google_LatitudeService.php │ │ │ ├── Google_LicensingService.php │ │ │ ├── Google_MirrorService.php │ │ │ ├── Google_ModeratorService.php │ │ │ ├── Google_Oauth2Service.php │ │ │ ├── Google_OrkutService.php │ │ │ ├── Google_PagespeedonlineService.php │ │ │ ├── Google_PlusService.php │ │ │ ├── Google_PredictionService.php │ │ │ ├── Google_ResellerService.php │ │ │ ├── Google_ShoppingService.php │ │ │ ├── Google_SiteVerificationService.php │ │ │ ├── Google_StorageService.php │ │ │ ├── Google_TaskqueueService.php │ │ │ ├── Google_TasksService.php │ │ │ ├── Google_TranslateService.php │ │ │ ├── Google_UrlshortenerService.php │ │ │ ├── Google_WebfontsService.php │ │ │ ├── Google_YouTubeAnalyticsService.php │ │ │ └── Google_YouTubeService.php │ │ ├── external │ │ │ └── URITemplateParser.php │ │ ├── io │ │ │ ├── Google_CacheParser.php │ │ │ ├── Google_CurlIO.php │ │ │ ├── Google_HttpRequest.php │ │ │ ├── Google_IO.php │ │ │ ├── Google_REST.php │ │ │ └── cacerts.pem │ │ └── service │ │ │ ├── Google_BatchRequest.php │ │ │ ├── Google_MediaFileUpload.php │ │ │ ├── Google_Model.php │ │ │ ├── Google_Service.php │ │ │ ├── Google_ServiceResource.php │ │ │ └── Google_Utils.php │ │ └── _resource │ │ ├── button.png │ │ ├── menu-grey.gif │ │ └── menu.gif ├── template │ ├── global.create.php │ ├── global.csv.php │ ├── global.delete.php │ ├── global.list.php │ ├── global.rss.php │ ├── global.search.php │ ├── global.version.php │ └── global.view.php ├── tool │ ├── global.ConvertFileToCloud │ │ └── bootstrap.php │ ├── global.ConvertToUtf8 │ │ └── bootstrap.php │ ├── global.DatabaseMaker │ │ └── bootstrap.php │ ├── global.FilesMimeType │ │ └── bootstrap.php │ ├── global.MobileSource │ │ ├── LICENSE │ │ ├── README │ │ ├── android │ │ │ ├── adapter.php │ │ │ ├── assets.php │ │ │ ├── contract.php │ │ │ ├── converter.php │ │ │ ├── dao.php │ │ │ ├── db.php │ │ │ ├── layoutRow.php │ │ │ ├── layoutView.php │ │ │ ├── model.php │ │ │ ├── task.php │ │ │ ├── view.php │ │ │ └── ws.php │ │ ├── bootstrap.php │ │ ├── function.php │ │ └── mobile-source.xml.sample │ └── global.Translate │ │ └── bootstrap.php └── type │ ├── global.Amount │ ├── Amount.php │ ├── LICENSE │ ├── _js.php │ ├── fromForm.php │ ├── toForm.php │ ├── toHtml.php │ └── toText.php │ ├── global.Boolean │ ├── Boolean.php │ ├── LICENSE │ ├── _js.php │ ├── fromDb.php │ ├── fromForm.php │ ├── toApi.php │ ├── toBind.php │ ├── toDbMaker.php │ ├── toForm.php │ ├── toHtml.php │ ├── toSearch.php │ ├── toText.php │ └── toValue.php │ ├── global.CKEditor │ ├── CKEditor.php │ ├── LICENSE │ ├── README │ ├── _ajax.php │ ├── _css.php │ ├── _js.php │ ├── _script │ │ ├── open.php │ │ ├── play.php │ │ ├── streaming.php │ │ └── upload.php │ ├── toApi.php │ └── toForm.php │ ├── global.Cascade │ ├── Cascade.php │ ├── LICENSE │ ├── _ajax.php │ ├── _js.php │ ├── toForm.php │ ├── toHtml.php │ ├── toList.php │ ├── toText.php │ └── toWhere.php │ ├── global.Cep │ ├── Cep.php │ ├── LICENSE │ ├── _js.php │ ├── fromForm.php │ ├── toDbMaker.php │ ├── toForm.php │ └── toHtml.php │ ├── global.CheckBox │ ├── CheckBox.php │ ├── LICENSE │ ├── _i18n │ │ └── pt_BR.xml │ ├── _js.php │ ├── fromDb.php │ ├── fromForm.php │ ├── toApi.php │ ├── toBind.php │ ├── toDbMaker.php │ ├── toForm.php │ ├── toHtml.php │ ├── toSearch.php │ ├── toSql.php │ ├── toText.php │ ├── toValue.php │ └── toWhere.php │ ├── global.City │ ├── City.php │ ├── LICENSE │ ├── _ajax.php │ ├── _js.php │ └── toForm.php │ ├── global.CloudFile │ ├── CloudFile.php │ ├── LICENSE │ ├── _ajax.php │ ├── _api │ │ ├── delete.php │ │ ├── get.php │ │ ├── metadata.php │ │ ├── patch.php │ │ └── put.php │ ├── _css.php │ ├── _i18n │ │ └── pt_BR.xml │ ├── _js.php │ ├── _resource │ │ ├── delete.png │ │ └── no-file.png │ ├── _script │ │ ├── encode.php │ │ ├── open.php │ │ ├── play.php │ │ ├── streaming.php │ │ ├── thumbnail.php │ │ └── upload.php │ ├── fromApi.php │ ├── toApi.php │ ├── toConstraint.php │ ├── toForm.php │ ├── toHtml.php │ ├── toList.php │ └── toText.php │ ├── global.Cnpj │ ├── Cnpj.php │ ├── LICENSE │ ├── _js.php │ ├── fromForm.php │ ├── toBind.php │ ├── toDbMaker.php │ ├── toForm.php │ ├── toHtml.php │ ├── toSearch.php │ ├── toText.php │ └── toValue.php │ ├── global.Collection │ ├── Collection.php │ ├── LICENSE │ ├── _ajax.php │ ├── _css.php │ ├── _i18n │ │ └── pt_BR.xml │ ├── _js.php │ ├── create.php │ ├── edit.php │ ├── toApi.php │ ├── toForm.php │ ├── toHtml.php │ └── toText.php │ ├── global.Color │ ├── Color.php │ ├── LICENSE │ ├── _js.php │ ├── fromForm.php │ ├── toApi.php │ ├── toDbMaker.php │ ├── toForm.php │ ├── toHtml.php │ ├── toSearch.php │ ├── toWhere.SQLite.php │ └── toWhere.php │ ├── global.Coordinate │ ├── Coordinate.php │ ├── LICENSE │ ├── fromDb.php │ ├── fromForm.php │ ├── toBind.php │ ├── toDbMaker.php │ ├── toForm.php │ ├── toHtml.php │ ├── toText.php │ └── toValue.php │ ├── global.Cpf │ ├── Cpf.php │ ├── LICENSE │ ├── _js.php │ ├── fromForm.php │ ├── toBind.php │ ├── toDbMaker.php │ ├── toForm.php │ ├── toHtml.php │ ├── toLdap.php │ ├── toText.php │ └── toValue.php │ ├── global.Date │ ├── Date.php │ ├── LICENSE │ ├── _css.php │ ├── _i18n │ │ └── pt_BR.xml │ ├── _js.php │ ├── _resource │ │ └── clear.png │ ├── fromApi.php │ ├── fromDb.php │ ├── fromForm.php │ ├── fromLdap.php │ ├── fromSearch.php │ ├── toApi.php │ ├── toBind.php │ ├── toDbMaker.php │ ├── toForm.php │ ├── toGroupBy.php │ ├── toHtml.php │ ├── toLdap.php │ ├── toOrder.php │ ├── toSearch.php │ ├── toSql.SQLite.php │ ├── toSql.php │ ├── toValue.php │ └── toWhere.php │ ├── global.Document │ ├── Document.php │ ├── LICENSE │ ├── _ajax.php │ ├── _i18n │ │ └── pt_BR.xml │ ├── _js.php │ ├── _resource │ │ └── QRCode.swf │ ├── _script │ │ ├── gen.php │ │ ├── info.php │ │ ├── qr.php │ │ ├── v.php │ │ └── view.php │ ├── template │ │ ├── badge.php │ │ ├── badge.xml │ │ ├── badge_trainee.php │ │ ├── badge_trainee.xml │ │ ├── certificate.php │ │ ├── certificate.xml │ │ ├── compromise.php │ │ ├── compromise.xml │ │ ├── hiring.php │ │ ├── hiring.xml │ │ ├── plan.php │ │ └── plan.xml │ ├── toForm.php │ ├── toHtml.php │ └── toText.php │ ├── global.Double │ ├── Double.php │ ├── LICENSE │ ├── _js.php │ ├── fromApi.php │ ├── fromForm.php │ ├── toApi.php │ ├── toBind.php │ ├── toDbMaker.php │ ├── toForm.php │ ├── toHtml.php │ └── toValue.php │ ├── global.Email │ ├── Email.php │ ├── LICENSE │ ├── _js.php │ └── toForm.php │ ├── global.Enum │ ├── Enum.php │ ├── LICENSE │ ├── toApi.php │ ├── toDbMaker.php │ ├── toForm.php │ ├── toHtml.php │ ├── toLdap.php │ ├── toSearch.php │ ├── toText.php │ ├── toValue.php │ └── toWhere.php │ ├── global.Fck │ ├── Fck.php │ ├── LICENSE │ ├── README │ ├── _ajax.php │ ├── _css.php │ ├── _js.php │ ├── _resource │ │ ├── iframedialog │ │ │ └── plugin.js │ │ └── mediaembed │ │ │ ├── icons │ │ │ ├── hidpi │ │ │ │ └── mediaembed.png │ │ │ └── mediaembed.png │ │ │ └── plugin.js │ ├── _script │ │ └── upload.php │ ├── fromForm.php │ ├── toApi.php │ ├── toDbMaker.php │ ├── toForm.php │ ├── toSearch.php │ └── toWhere.php │ ├── global.File │ ├── File.php │ ├── LICENSE │ ├── _ajax.php │ ├── _css.php │ ├── _i18n │ │ └── pt_BR.xml │ ├── _js.php │ ├── _resource │ │ ├── archive.png │ │ ├── delete.png │ │ ├── loading.png │ │ ├── no-file.png │ │ ├── sandglass.png │ │ └── search.png │ ├── _script │ │ ├── archive.php │ │ ├── encode.php │ │ ├── open.php │ │ ├── play.php │ │ ├── streaming.php │ │ ├── thumbnail.php │ │ └── upload.php │ ├── fromApi.php │ ├── toApi.php │ ├── toBind.php │ ├── toConstraint.php │ ├── toForm.php │ ├── toHtml.php │ ├── toList.php │ ├── toText.php │ └── toValue.php │ ├── global.Float │ ├── Float.php │ └── LICENSE │ ├── global.Integer │ ├── Integer.php │ ├── LICENSE │ ├── _js.php │ ├── fromForm.php │ ├── toApi.php │ ├── toBind.php │ ├── toDbMaker.php │ ├── toForm.php │ ├── toHtml.php │ ├── toText.php │ └── toValue.php │ ├── global.Login │ ├── LICENSE │ ├── Login.php │ ├── _js.php │ └── toForm.php │ ├── global.Map │ ├── Map.php │ ├── _css.php │ ├── _js.php │ ├── fromDb.php │ ├── toBind.php │ ├── toDbMaker.php │ ├── toForm.php │ ├── toHtml.php │ ├── toList.php │ └── toSql.php │ ├── global.Money │ ├── LICENSE │ ├── Money.php │ ├── fromDb.php │ └── toHtml.php │ ├── global.Multiply │ ├── LICENSE │ ├── Multiply.php │ ├── _js.php │ ├── toApi.php │ ├── toForm.php │ ├── toHtml.php │ ├── toList.php │ ├── toSearch.php │ ├── toText.php │ └── toWhere.php │ ├── global.Note │ ├── Note.php │ ├── _ajax.php │ ├── _api │ │ ├── delete.php │ │ ├── get.php │ │ └── put.php │ ├── _i18n │ │ └── pt_BR.xml │ ├── _js.php │ ├── _resource │ │ ├── audio.png │ │ ├── earth.png │ │ ├── information.png │ │ ├── oms.min.js │ │ ├── photo.png │ │ ├── play.png │ │ ├── sandglass.png │ │ └── video.png │ ├── _script │ │ └── kml.php │ ├── fromApi.php │ ├── fromForm.php │ ├── toApi.php │ ├── toForm.php │ └── toHtml.php │ ├── global.Passport │ ├── LICENSE │ ├── Passport.php │ ├── toBind.php │ ├── toText.php │ └── toValue.php │ ├── global.Password │ ├── LICENSE │ ├── Password.php │ ├── _js.php │ ├── toForm.php │ └── toHtml.php │ ├── global.Phone │ ├── LICENSE │ ├── Phone.php │ ├── _js.php │ ├── fromForm.php │ ├── toDbMaker.php │ ├── toForm.php │ ├── toHtml.php │ ├── toLdap.php │ └── toText.php │ ├── global.Phrase │ ├── LICENSE │ ├── Phrase.php │ ├── fromDb.php │ ├── fromForm.php │ ├── toBind.php │ ├── toDbMaker.php │ ├── toForm.php │ ├── toHtml.php │ ├── toLdap.php │ ├── toOrder.php │ ├── toSearch.php │ ├── toText.php │ ├── toValue.php │ ├── toWhere.SQLite.php │ └── toWhere.php │ ├── global.PlainText │ ├── LICENSE │ ├── PlainText.php │ ├── toDbMaker.php │ ├── toForm.php │ └── toHtml.php │ ├── global.Radio │ ├── LICENSE │ ├── Radio.php │ ├── toForm.php │ └── toSearch.php │ ├── global.Rga │ ├── LICENSE │ ├── Rga.php │ ├── _js.php │ ├── fromForm.php │ ├── toDbMaker.php │ ├── toForm.php │ └── toHtml.php │ ├── global.Select │ ├── LICENSE │ ├── Select.php │ ├── _css.php │ ├── _i18n │ │ └── pt_BR.xml │ ├── _js.php │ ├── _resource │ │ ├── chosen-sprite.png │ │ ├── chosen-sprite@2x.png │ │ ├── chosen.css │ │ └── chosen.proto.min.js │ ├── _script │ │ └── search.php │ ├── fromApi.php │ ├── toApi.php │ ├── toBind.php │ ├── toConstraint.php │ ├── toDbMaker.php │ ├── toForm.php │ ├── toHtml.php │ ├── toLdap.php │ ├── toList.php │ ├── toText.php │ └── toValue.php │ ├── global.ShoppingGateway │ ├── LICENSE │ ├── ShoppingGateway.php │ ├── toForm.php │ ├── toHtml.php │ └── toValue.php │ ├── global.Slider │ ├── Slider.php │ └── toForm.php │ ├── global.Slug │ ├── LICENSE │ ├── Slug.php │ ├── _ajax.php │ ├── _js.php │ ├── fromForm.php │ └── toForm.php │ ├── global.State │ ├── LICENSE │ ├── State.php │ ├── toDbMaker.php │ ├── toForm.php │ └── toLdap.php │ ├── global.String │ ├── LICENSE │ └── String.php │ ├── global.Text │ ├── LICENSE │ └── Text.php │ ├── global.Time │ ├── LICENSE │ ├── Time.php │ ├── _js.php │ ├── fromDb.php │ ├── fromForm.php │ ├── toBind.php │ ├── toDbMaker.php │ ├── toForm.php │ ├── toGroupBy.php │ ├── toHtml.php │ ├── toOrder.php │ ├── toSearch.php │ ├── toSql.php │ └── toValue.php │ ├── global.TimeZone │ ├── LICENSE │ ├── TimeZone.php │ └── toForm.php │ ├── global.Twitter │ ├── LICENSE │ ├── Twitter.php │ ├── toForm.php │ └── toHtml.php │ ├── global.Url │ ├── LICENSE │ ├── Url.php │ ├── fromForm.php │ ├── toBind.php │ ├── toForm.php │ ├── toHtml.php │ └── toValue.php │ └── type.xml ├── switch.php ├── system ├── backup.php ├── chat.php ├── commit.php ├── commitInPlace.php ├── connection.php ├── control.php ├── loadFile.php ├── loadResource.php ├── logoff.php ├── openFile.php └── viewThumb.php ├── titan.php ├── update ├── .htaccess ├── README ├── STABLE ├── VERSION ├── binary.php ├── core.php ├── db.php ├── function.php ├── git.php ├── install.php ├── svn.php └── update.php └── xoad ├── CHANGELOG ├── CREDITS ├── DESCRIPTION ├── INSTALL ├── LICENSE ├── LICENSE.cssQuery ├── README ├── TODO ├── TRASH ├── classes ├── Client.class.php ├── Meta.class.php ├── Observable.class.php ├── Observer.class.php ├── Serializer.class.php ├── Server.class.php ├── Utilities.class.php └── events │ ├── Storage.class.php │ └── storage │ ├── File.class.php │ └── PearDB.class.php ├── config ├── extensions.config.php └── xoad.config.php ├── extensions ├── cache │ ├── cache.ext.php │ └── classes │ │ ├── Cache.class.php │ │ ├── ServerObserver.class.php │ │ ├── Storage.class.php │ │ └── storage │ │ └── Files.class.php ├── controls │ ├── classes │ │ └── Controls.class.php │ ├── controls.ext.php │ └── js │ │ ├── controls.js │ │ ├── controls_optimized.js │ │ └── library │ │ ├── xoad.controls.js │ │ └── xoad.controls_optimized.js ├── html │ ├── classes │ │ ├── DOM │ │ │ ├── BaseElement.class.php │ │ │ ├── CssQuery.class.php │ │ │ ├── ElementById.class.php │ │ │ ├── ElementsByName.class.php │ │ │ ├── ElementsByTagName.class.php │ │ │ └── ScriptBlock.class.php │ │ ├── HTML.class.php │ │ └── ServerObserver.class.php │ ├── html.ext.php │ └── js │ │ ├── html.js │ │ └── html_optimized.js └── js │ └── cssQuery.js ├── js ├── xoad.js └── xoad_optimized.js ├── tests ├── cache │ └── lifetime.php ├── compress.php ├── controls │ └── clone.php └── timeout.php ├── var └── EVENTS └── xoad.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | composer.lock -------------------------------------------------------------------------------- /extra/Browscap.php: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /extra/fckEditor/editor/css/images/block_div.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/fckEditor/editor/css/images/block_div.png -------------------------------------------------------------------------------- /extra/fckEditor/editor/css/images/block_h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/fckEditor/editor/css/images/block_h1.png -------------------------------------------------------------------------------- /extra/fckEditor/editor/css/images/block_h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/fckEditor/editor/css/images/block_h2.png -------------------------------------------------------------------------------- /extra/fckEditor/editor/css/images/block_h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/fckEditor/editor/css/images/block_h3.png -------------------------------------------------------------------------------- /extra/fckEditor/editor/css/images/block_h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/fckEditor/editor/css/images/block_h4.png -------------------------------------------------------------------------------- /extra/fckEditor/editor/css/images/block_h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/fckEditor/editor/css/images/block_h5.png -------------------------------------------------------------------------------- /extra/fckEditor/editor/css/images/block_h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/fckEditor/editor/css/images/block_h6.png -------------------------------------------------------------------------------- /extra/fckEditor/editor/css/images/block_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/fckEditor/editor/css/images/block_p.png -------------------------------------------------------------------------------- /extra/fckEditor/editor/css/images/block_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/fckEditor/editor/css/images/block_pre.png -------------------------------------------------------------------------------- /extra/fckEditor/editor/css/images/fck_anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/fckEditor/editor/css/images/fck_anchor.gif -------------------------------------------------------------------------------- /extra/fckEditor/editor/css/images/fck_plugin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/fckEditor/editor/css/images/fck_plugin.gif -------------------------------------------------------------------------------- /extra/fckEditor/editor/images/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/fckEditor/editor/images/anchor.gif -------------------------------------------------------------------------------- /extra/fckEditor/editor/images/arrow_ltr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/fckEditor/editor/images/arrow_ltr.gif -------------------------------------------------------------------------------- /extra/fckEditor/editor/images/arrow_rtl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/fckEditor/editor/images/arrow_rtl.gif -------------------------------------------------------------------------------- /extra/fckEditor/editor/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/fckEditor/editor/images/spacer.gif -------------------------------------------------------------------------------- /extra/fonts/GeosansLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/fonts/GeosansLight.ttf -------------------------------------------------------------------------------- /extra/fonts/MankSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/fonts/MankSans.ttf -------------------------------------------------------------------------------- /extra/fonts/Silkscreen.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/fonts/Silkscreen.ttf -------------------------------------------------------------------------------- /extra/fonts/Trebuchet MS Bold Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/fonts/Trebuchet MS Bold Italic.ttf -------------------------------------------------------------------------------- /extra/fonts/Trebuchet MS.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/fonts/Trebuchet MS.ttf -------------------------------------------------------------------------------- /extra/fonts/TrebuchetMSItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/fonts/TrebuchetMSItalic.ttf -------------------------------------------------------------------------------- /extra/fonts/Vera.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/fonts/Vera.ttf -------------------------------------------------------------------------------- /extra/fonts/VeraBI.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/fonts/VeraBI.ttf -------------------------------------------------------------------------------- /extra/fonts/VeraBd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/fonts/VeraBd.ttf -------------------------------------------------------------------------------- /extra/fonts/VeraIt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/fonts/VeraIt.ttf -------------------------------------------------------------------------------- /extra/fonts/VeraMoBI.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/fonts/VeraMoBI.ttf -------------------------------------------------------------------------------- /extra/fonts/VeraMoBd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/fonts/VeraMoBd.ttf -------------------------------------------------------------------------------- /extra/fonts/VeraMoIt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/fonts/VeraMoIt.ttf -------------------------------------------------------------------------------- /extra/fonts/VeraMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/fonts/VeraMono.ttf -------------------------------------------------------------------------------- /extra/fonts/VeraSe.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/fonts/VeraSe.ttf -------------------------------------------------------------------------------- /extra/fonts/VeraSeBd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/fonts/VeraSeBd.ttf -------------------------------------------------------------------------------- /extra/fonts/Verdana.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/fonts/Verdana.ttf -------------------------------------------------------------------------------- /extra/fonts/courier.php: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /extra/fonts/courierb.php: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /extra/fonts/courierbi.php: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /extra/fonts/courieri.php: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /extra/fonts/elephant.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/fonts/elephant.ttf -------------------------------------------------------------------------------- /extra/fonts/pf_arma_five.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/fonts/pf_arma_five.ttf -------------------------------------------------------------------------------- /extra/fonts/tahoma.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/fonts/tahoma.ttf -------------------------------------------------------------------------------- /extra/fonts/trebuc.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/fonts/trebuc.ttf -------------------------------------------------------------------------------- /extra/fonts/trebucbd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/fonts/trebucbd.ttf -------------------------------------------------------------------------------- /extra/fonts/trebucbi.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/fonts/trebucbi.ttf -------------------------------------------------------------------------------- /extra/fonts/verdanab.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/fonts/verdanab.ttf -------------------------------------------------------------------------------- /extra/freeChat/AUTHORS.txt: -------------------------------------------------------------------------------- 1 | Stephane Gully 2 | -------------------------------------------------------------------------------- /extra/freeChat/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/COPYING.txt -------------------------------------------------------------------------------- /extra/freeChat/lib/pear/pear.sh: -------------------------------------------------------------------------------- 1 | pear -c ./pearrc $1 $2 $3 $4 2 | -------------------------------------------------------------------------------- /extra/freeChat/misc/bulle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/misc/bulle.png -------------------------------------------------------------------------------- /extra/freeChat/misc/clock-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/misc/clock-off.png -------------------------------------------------------------------------------- /extra/freeChat/misc/clock-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/misc/clock-on.png -------------------------------------------------------------------------------- /extra/freeChat/misc/color-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/misc/color-off.png -------------------------------------------------------------------------------- /extra/freeChat/misc/color-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/misc/color-on.png -------------------------------------------------------------------------------- /extra/freeChat/misc/i18n_update.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra/freeChat/misc/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/misc/login.png -------------------------------------------------------------------------------- /extra/freeChat/misc/logo_80x15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/misc/logo_80x15.gif -------------------------------------------------------------------------------- /extra/freeChat/misc/logo_80x15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/misc/logo_80x15.png -------------------------------------------------------------------------------- /extra/freeChat/misc/logo_88x31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/misc/logo_88x31.gif -------------------------------------------------------------------------------- /extra/freeChat/misc/logo_88x31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/misc/logo_88x31.png -------------------------------------------------------------------------------- /extra/freeChat/misc/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/misc/logout.png -------------------------------------------------------------------------------- /extra/freeChat/misc/png2gif.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | for img in `ls *.png` 4 | do 5 | imgbase=`echo $img | sed "s/\.png//g"` 6 | convert $img $imgbase.gif 7 | done -------------------------------------------------------------------------------- /extra/freeChat/src/commands/invite.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/src/commands/invite.class.php -------------------------------------------------------------------------------- /extra/freeChat/src/containers/file.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/src/containers/file.class.php -------------------------------------------------------------------------------- /extra/freeChat/src/pfccontainer.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/src/pfccontainer.class.php -------------------------------------------------------------------------------- /extra/freeChat/src/pfci18n.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/src/pfci18n.class.php -------------------------------------------------------------------------------- /extra/freeChat/src/pfctemplate.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/src/pfctemplate.class.php -------------------------------------------------------------------------------- /extra/freeChat/src/pfctools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/src/pfctools.php -------------------------------------------------------------------------------- /extra/freeChat/style/bulle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/style/bulle.gif -------------------------------------------------------------------------------- /extra/freeChat/style/bulle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/style/bulle.png -------------------------------------------------------------------------------- /extra/freeChat/style/check_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/style/check_off.png -------------------------------------------------------------------------------- /extra/freeChat/style/check_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/style/check_on.png -------------------------------------------------------------------------------- /extra/freeChat/style/logo_88x31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/style/logo_88x31.gif -------------------------------------------------------------------------------- /extra/freeChat/style/valid-css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/style/valid-css.png -------------------------------------------------------------------------------- /extra/freeChat/style/valid-xhtml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/style/valid-xhtml.png -------------------------------------------------------------------------------- /extra/freeChat/themes/blune/images/online-on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/blune/images/online-on.gif -------------------------------------------------------------------------------- /extra/freeChat/themes/blune/images/shade.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/blune/images/shade.gif -------------------------------------------------------------------------------- /extra/freeChat/themes/blune/images/smiley-on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/blune/images/smiley-on.gif -------------------------------------------------------------------------------- /extra/freeChat/themes/cerutti/info.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra/freeChat/themes/cerutti/smileys/caca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/cerutti/smileys/caca.png -------------------------------------------------------------------------------- /extra/freeChat/themes/cerutti/smileys/cry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/cerutti/smileys/cry.png -------------------------------------------------------------------------------- /extra/freeChat/themes/cerutti/smileys/dizzy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/cerutti/smileys/dizzy.png -------------------------------------------------------------------------------- /extra/freeChat/themes/cerutti/smileys/happy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/cerutti/smileys/happy.png -------------------------------------------------------------------------------- /extra/freeChat/themes/cerutti/smileys/lol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/cerutti/smileys/lol.png -------------------------------------------------------------------------------- /extra/freeChat/themes/cerutti/smileys/omg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/cerutti/smileys/omg.png -------------------------------------------------------------------------------- /extra/freeChat/themes/cerutti/smileys/sad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/cerutti/smileys/sad.png -------------------------------------------------------------------------------- /extra/freeChat/themes/cerutti/smileys/smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/cerutti/smileys/smile.png -------------------------------------------------------------------------------- /extra/freeChat/themes/cerutti/smileys/tongue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/cerutti/smileys/tongue.png -------------------------------------------------------------------------------- /extra/freeChat/themes/cerutti/smileys/wink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/cerutti/smileys/wink.png -------------------------------------------------------------------------------- /extra/freeChat/themes/default/images/bt_del.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/default/images/bt_del.gif -------------------------------------------------------------------------------- /extra/freeChat/themes/default/images/bt_em.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/default/images/bt_em.gif -------------------------------------------------------------------------------- /extra/freeChat/themes/default/images/bt_ins.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/default/images/bt_ins.gif -------------------------------------------------------------------------------- /extra/freeChat/themes/default/images/bt_mail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/default/images/bt_mail.gif -------------------------------------------------------------------------------- /extra/freeChat/themes/default/images/bt_pre.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/default/images/bt_pre.gif -------------------------------------------------------------------------------- /extra/freeChat/themes/default/images/ch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/default/images/ch.gif -------------------------------------------------------------------------------- /extra/freeChat/themes/default/images/login.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/default/images/login.gif -------------------------------------------------------------------------------- /extra/freeChat/themes/default/images/logout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/default/images/logout.gif -------------------------------------------------------------------------------- /extra/freeChat/themes/default/images/newmsg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/default/images/newmsg.gif -------------------------------------------------------------------------------- /extra/freeChat/themes/default/images/oldmsg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/default/images/oldmsg.gif -------------------------------------------------------------------------------- /extra/freeChat/themes/default/images/openpv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/default/images/openpv.gif -------------------------------------------------------------------------------- /extra/freeChat/themes/default/images/pv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/default/images/pv.gif -------------------------------------------------------------------------------- /extra/freeChat/themes/default/images/user-me.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/default/images/user-me.gif -------------------------------------------------------------------------------- /extra/freeChat/themes/default/images/user.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/default/images/user.gif -------------------------------------------------------------------------------- /extra/freeChat/themes/default/info.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra/freeChat/themes/default/sound.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/default/sound.swf -------------------------------------------------------------------------------- /extra/freeChat/themes/green/images/ch-active.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/green/images/ch-active.gif -------------------------------------------------------------------------------- /extra/freeChat/themes/green/images/ch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/green/images/ch.gif -------------------------------------------------------------------------------- /extra/freeChat/themes/green/images/pv-active.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/green/images/pv-active.gif -------------------------------------------------------------------------------- /extra/freeChat/themes/green/images/pv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/green/images/pv.gif -------------------------------------------------------------------------------- /extra/freeChat/themes/green/images/shade.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/green/images/shade.gif -------------------------------------------------------------------------------- /extra/freeChat/themes/green/info.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra/freeChat/themes/msn/smileys/gnu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/msn/smileys/gnu.gif -------------------------------------------------------------------------------- /extra/freeChat/themes/msn/smileys/msn_angel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/msn/smileys/msn_angel.gif -------------------------------------------------------------------------------- /extra/freeChat/themes/msn/smileys/msn_angry.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/msn/smileys/msn_angry.gif -------------------------------------------------------------------------------- /extra/freeChat/themes/msn/smileys/msn_away.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/msn/smileys/msn_away.gif -------------------------------------------------------------------------------- /extra/freeChat/themes/msn/smileys/msn_bat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/msn/smileys/msn_bat.gif -------------------------------------------------------------------------------- /extra/freeChat/themes/msn/smileys/msn_beer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/msn/smileys/msn_beer.gif -------------------------------------------------------------------------------- /extra/freeChat/themes/msn/smileys/msn_bowl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/msn/smileys/msn_bowl.gif -------------------------------------------------------------------------------- /extra/freeChat/themes/msn/smileys/msn_boy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/msn/smileys/msn_boy.gif -------------------------------------------------------------------------------- /extra/freeChat/themes/msn/smileys/msn_brb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/msn/smileys/msn_brb.gif -------------------------------------------------------------------------------- /extra/freeChat/themes/msn/smileys/msn_cake.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/msn/smileys/msn_cake.gif -------------------------------------------------------------------------------- /extra/freeChat/themes/msn/smileys/msn_car.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/msn/smileys/msn_car.gif -------------------------------------------------------------------------------- /extra/freeChat/themes/msn/smileys/msn_cat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/msn/smileys/msn_cat.gif -------------------------------------------------------------------------------- /extra/freeChat/themes/msn/smileys/msn_cry.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/msn/smileys/msn_cry.gif -------------------------------------------------------------------------------- /extra/freeChat/themes/msn/smileys/msn_dog.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/msn/smileys/msn_dog.gif -------------------------------------------------------------------------------- /extra/freeChat/themes/msn/smileys/msn_hot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/msn/smileys/msn_hot.gif -------------------------------------------------------------------------------- /extra/freeChat/themes/msn/smileys/msn_occ.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/msn/smileys/msn_occ.gif -------------------------------------------------------------------------------- /extra/freeChat/themes/msn/smileys/msn_run.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/msn/smileys/msn_run.gif -------------------------------------------------------------------------------- /extra/freeChat/themes/msn/smileys/msn_sad.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/msn/smileys/msn_sad.gif -------------------------------------------------------------------------------- /extra/freeChat/themes/msn/smileys/msn_sun.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/msn/smileys/msn_sun.gif -------------------------------------------------------------------------------- /extra/freeChat/themes/msn/smileys/tux1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/msn/smileys/tux1.gif -------------------------------------------------------------------------------- /extra/freeChat/themes/msn/smileys/tux2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/msn/smileys/tux2.gif -------------------------------------------------------------------------------- /extra/freeChat/themes/zilveer/images/user.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/freeChat/themes/zilveer/images/user.gif -------------------------------------------------------------------------------- /extra/freeChat/themes/zilveer/info.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra/freeChat/version.txt: -------------------------------------------------------------------------------- 1 | 1.0-beta10 -------------------------------------------------------------------------------- /extra/htmlPurifier/standalone/HTMLPurifier/ConfigSchema/schema/info.ini: -------------------------------------------------------------------------------- 1 | name = "HTML Purifier" 2 | 3 | ; vim: et sw=4 sts=4 4 | -------------------------------------------------------------------------------- /extra/jpGraph/VERSION: -------------------------------------------------------------------------------- 1 | Version: v4.0.2 2 | -------------------------------------------------------------------------------- /extra/jpGraph/flags.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/jpGraph/flags.dat -------------------------------------------------------------------------------- /extra/jpGraph/flags_thumb100x100.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/jpGraph/flags_thumb100x100.dat -------------------------------------------------------------------------------- /extra/jpGraph/flags_thumb35x35.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/jpGraph/flags_thumb35x35.dat -------------------------------------------------------------------------------- /extra/jpGraph/flags_thumb60x60.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/jpGraph/flags_thumb60x60.dat -------------------------------------------------------------------------------- /extra/jpGraph/fonts/DejaVuSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/jpGraph/fonts/DejaVuSans-Bold.ttf -------------------------------------------------------------------------------- /extra/jpGraph/fonts/DejaVuSans-Oblique.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/jpGraph/fonts/DejaVuSans-Oblique.ttf -------------------------------------------------------------------------------- /extra/jpGraph/fonts/DejaVuSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/jpGraph/fonts/DejaVuSans.ttf -------------------------------------------------------------------------------- /extra/jpGraph/fonts/FF_FONT0-Bold.gdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/jpGraph/fonts/FF_FONT0-Bold.gdf -------------------------------------------------------------------------------- /extra/jpGraph/fonts/FF_FONT0.gdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/jpGraph/fonts/FF_FONT0.gdf -------------------------------------------------------------------------------- /extra/jpGraph/fonts/FF_FONT1-Bold.gdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/jpGraph/fonts/FF_FONT1-Bold.gdf -------------------------------------------------------------------------------- /extra/jpGraph/fonts/FF_FONT1.gdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/jpGraph/fonts/FF_FONT1.gdf -------------------------------------------------------------------------------- /extra/jpGraph/fonts/FF_FONT2-Bold.gdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/jpGraph/fonts/FF_FONT2-Bold.gdf -------------------------------------------------------------------------------- /extra/jpGraph/fonts/FF_FONT2.gdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/jpGraph/fonts/FF_FONT2.gdf -------------------------------------------------------------------------------- /extra/jsColor/arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/jsColor/arrow.gif -------------------------------------------------------------------------------- /extra/jsColor/cross.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/jsColor/cross.gif -------------------------------------------------------------------------------- /extra/jsColor/hs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/jsColor/hs.png -------------------------------------------------------------------------------- /extra/jsColor/hv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/jsColor/hv.png -------------------------------------------------------------------------------- /extra/lightbox/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/lightbox/blank.gif -------------------------------------------------------------------------------- /extra/lightbox/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/lightbox/close.gif -------------------------------------------------------------------------------- /extra/lightbox/closelabel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/lightbox/closelabel.gif -------------------------------------------------------------------------------- /extra/lightbox/image-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/lightbox/image-1.jpg -------------------------------------------------------------------------------- /extra/lightbox/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/lightbox/loading.gif -------------------------------------------------------------------------------- /extra/lightbox/next.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/lightbox/next.gif -------------------------------------------------------------------------------- /extra/lightbox/nextlabel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/lightbox/nextlabel.gif -------------------------------------------------------------------------------- /extra/lightbox/prev.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/lightbox/prev.gif -------------------------------------------------------------------------------- /extra/lightbox/prevlabel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/lightbox/prevlabel.gif -------------------------------------------------------------------------------- /extra/lightbox/thumb-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/lightbox/thumb-1.jpg -------------------------------------------------------------------------------- /extra/yuicompressor-2.4.8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/extra/yuicompressor-2.4.8.jar -------------------------------------------------------------------------------- /interface/alert/confirm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/alert/confirm.gif -------------------------------------------------------------------------------- /interface/alert/info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/alert/info.gif -------------------------------------------------------------------------------- /interface/alert/security.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/alert/security.gif -------------------------------------------------------------------------------- /interface/alert/warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/alert/warning.gif -------------------------------------------------------------------------------- /interface/back/aba.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/back/aba.gif -------------------------------------------------------------------------------- /interface/back/degrade.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/back/degrade.gif -------------------------------------------------------------------------------- /interface/back/degrade.grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/back/degrade.grey.png -------------------------------------------------------------------------------- /interface/back/field.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/back/field.gif -------------------------------------------------------------------------------- /interface/back/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/back/gradient.png -------------------------------------------------------------------------------- /interface/back/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/back/overlay.png -------------------------------------------------------------------------------- /interface/button/Checkout-en_US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/button/Checkout-en_US.png -------------------------------------------------------------------------------- /interface/button/Checkout-es_ES.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/button/Checkout-es_ES.png -------------------------------------------------------------------------------- /interface/button/Checkout-pt_BR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/button/Checkout-pt_BR.png -------------------------------------------------------------------------------- /interface/button/ClearShopCar-en_US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/button/ClearShopCar-en_US.png -------------------------------------------------------------------------------- /interface/button/ClearShopCar-es_ES.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/button/ClearShopCar-es_ES.png -------------------------------------------------------------------------------- /interface/button/ClearShopCar-pt_BR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/button/ClearShopCar-pt_BR.png -------------------------------------------------------------------------------- /interface/css/empty.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/css/empty.css -------------------------------------------------------------------------------- /interface/file/7zip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/7zip.gif -------------------------------------------------------------------------------- /interface/file/ace.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/ace.gif -------------------------------------------------------------------------------- /interface/file/ai.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/ai.gif -------------------------------------------------------------------------------- /interface/file/aiff.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/aiff.gif -------------------------------------------------------------------------------- /interface/file/asp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/asp.gif -------------------------------------------------------------------------------- /interface/file/avi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/avi.gif -------------------------------------------------------------------------------- /interface/file/bat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/bat.gif -------------------------------------------------------------------------------- /interface/file/bin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/bin.gif -------------------------------------------------------------------------------- /interface/file/bmp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/bmp.gif -------------------------------------------------------------------------------- /interface/file/ccd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/ccd.gif -------------------------------------------------------------------------------- /interface/file/cmd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/cmd.gif -------------------------------------------------------------------------------- /interface/file/com.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/com.gif -------------------------------------------------------------------------------- /interface/file/css.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/css.gif -------------------------------------------------------------------------------- /interface/file/dll.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/dll.gif -------------------------------------------------------------------------------- /interface/file/doc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/doc.gif -------------------------------------------------------------------------------- /interface/file/document.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/document.gif -------------------------------------------------------------------------------- /interface/file/docx.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/docx.gif -------------------------------------------------------------------------------- /interface/file/fh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/fh.gif -------------------------------------------------------------------------------- /interface/file/file.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/file.gif -------------------------------------------------------------------------------- /interface/file/fla.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/fla.gif -------------------------------------------------------------------------------- /interface/file/gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/gif.gif -------------------------------------------------------------------------------- /interface/file/hqx.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/hqx.gif -------------------------------------------------------------------------------- /interface/file/htm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/htm.gif -------------------------------------------------------------------------------- /interface/file/icon/ac3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/ac3.png -------------------------------------------------------------------------------- /interface/file/icon/ace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/ace.png -------------------------------------------------------------------------------- /interface/file/icon/ade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/ade.png -------------------------------------------------------------------------------- /interface/file/icon/adp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/adp.png -------------------------------------------------------------------------------- /interface/file/icon/ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/ai.png -------------------------------------------------------------------------------- /interface/file/icon/aiff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/aiff.png -------------------------------------------------------------------------------- /interface/file/icon/au.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/au.png -------------------------------------------------------------------------------- /interface/file/icon/avi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/avi.png -------------------------------------------------------------------------------- /interface/file/icon/bat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/bat.png -------------------------------------------------------------------------------- /interface/file/icon/bin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/bin.png -------------------------------------------------------------------------------- /interface/file/icon/bmp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/bmp.png -------------------------------------------------------------------------------- /interface/file/icon/bup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/bup.png -------------------------------------------------------------------------------- /interface/file/icon/cab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/cab.png -------------------------------------------------------------------------------- /interface/file/icon/cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/cat.png -------------------------------------------------------------------------------- /interface/file/icon/chm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/chm.png -------------------------------------------------------------------------------- /interface/file/icon/css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/css.png -------------------------------------------------------------------------------- /interface/file/icon/cue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/cue.png -------------------------------------------------------------------------------- /interface/file/icon/dat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/dat.png -------------------------------------------------------------------------------- /interface/file/icon/dcr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/dcr.png -------------------------------------------------------------------------------- /interface/file/icon/der.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/der.png -------------------------------------------------------------------------------- /interface/file/icon/dic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/dic.png -------------------------------------------------------------------------------- /interface/file/icon/divx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/divx.png -------------------------------------------------------------------------------- /interface/file/icon/diz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/diz.png -------------------------------------------------------------------------------- /interface/file/icon/dll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/dll.png -------------------------------------------------------------------------------- /interface/file/icon/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/doc.png -------------------------------------------------------------------------------- /interface/file/icon/docx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/docx.png -------------------------------------------------------------------------------- /interface/file/icon/dos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/dos.png -------------------------------------------------------------------------------- /interface/file/icon/dvd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/dvd.png -------------------------------------------------------------------------------- /interface/file/icon/dwg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/dwg.png -------------------------------------------------------------------------------- /interface/file/icon/dwt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/dwt.png -------------------------------------------------------------------------------- /interface/file/icon/emf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/emf.png -------------------------------------------------------------------------------- /interface/file/icon/exc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/exc.png -------------------------------------------------------------------------------- /interface/file/icon/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/file.png -------------------------------------------------------------------------------- /interface/file/icon/fla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/fla.png -------------------------------------------------------------------------------- /interface/file/icon/fon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/fon.png -------------------------------------------------------------------------------- /interface/file/icon/gif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/gif.png -------------------------------------------------------------------------------- /interface/file/icon/hlp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/hlp.png -------------------------------------------------------------------------------- /interface/file/icon/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/html.png -------------------------------------------------------------------------------- /interface/file/icon/ifo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/ifo.png -------------------------------------------------------------------------------- /interface/file/icon/inf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/inf.png -------------------------------------------------------------------------------- /interface/file/icon/ini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/ini.png -------------------------------------------------------------------------------- /interface/file/icon/ins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/ins.png -------------------------------------------------------------------------------- /interface/file/icon/ip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/ip.png -------------------------------------------------------------------------------- /interface/file/icon/iso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/iso.png -------------------------------------------------------------------------------- /interface/file/icon/isp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/isp.png -------------------------------------------------------------------------------- /interface/file/icon/java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/java.png -------------------------------------------------------------------------------- /interface/file/icon/jfif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/jfif.png -------------------------------------------------------------------------------- /interface/file/icon/jpeg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/jpeg.png -------------------------------------------------------------------------------- /interface/file/icon/jpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/jpg.png -------------------------------------------------------------------------------- /interface/file/icon/log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/log.png -------------------------------------------------------------------------------- /interface/file/icon/m4a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/m4a.png -------------------------------------------------------------------------------- /interface/file/icon/mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/mid.png -------------------------------------------------------------------------------- /interface/file/icon/mmf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/mmf.png -------------------------------------------------------------------------------- /interface/file/icon/mmm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/mmm.png -------------------------------------------------------------------------------- /interface/file/icon/mov.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/mov.png -------------------------------------------------------------------------------- /interface/file/icon/movie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/movie.png -------------------------------------------------------------------------------- /interface/file/icon/mp2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/mp2.png -------------------------------------------------------------------------------- /interface/file/icon/mp2v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/mp2v.png -------------------------------------------------------------------------------- /interface/file/icon/mp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/mp3.png -------------------------------------------------------------------------------- /interface/file/icon/mp4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/mp4.png -------------------------------------------------------------------------------- /interface/file/icon/mpe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/mpe.png -------------------------------------------------------------------------------- /interface/file/icon/mpeg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/mpeg.png -------------------------------------------------------------------------------- /interface/file/icon/mpg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/mpg.png -------------------------------------------------------------------------------- /interface/file/icon/mpv2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/mpv2.png -------------------------------------------------------------------------------- /interface/file/icon/nfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/nfo.png -------------------------------------------------------------------------------- /interface/file/icon/pdd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/pdd.png -------------------------------------------------------------------------------- /interface/file/icon/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/pdf.png -------------------------------------------------------------------------------- /interface/file/icon/php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/php.png -------------------------------------------------------------------------------- /interface/file/icon/png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/png.png -------------------------------------------------------------------------------- /interface/file/icon/ppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/ppt.png -------------------------------------------------------------------------------- /interface/file/icon/pptx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/pptx.png -------------------------------------------------------------------------------- /interface/file/icon/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/preview.png -------------------------------------------------------------------------------- /interface/file/icon/psd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/psd.png -------------------------------------------------------------------------------- /interface/file/icon/rar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/rar.png -------------------------------------------------------------------------------- /interface/file/icon/reg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/reg.png -------------------------------------------------------------------------------- /interface/file/icon/rtf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/rtf.png -------------------------------------------------------------------------------- /interface/file/icon/scp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/scp.png -------------------------------------------------------------------------------- /interface/file/icon/theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/theme.png -------------------------------------------------------------------------------- /interface/file/icon/tif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/tif.png -------------------------------------------------------------------------------- /interface/file/icon/tiff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/tiff.png -------------------------------------------------------------------------------- /interface/file/icon/tlb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/tlb.png -------------------------------------------------------------------------------- /interface/file/icon/ttf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/ttf.png -------------------------------------------------------------------------------- /interface/file/icon/txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/txt.png -------------------------------------------------------------------------------- /interface/file/icon/uis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/uis.png -------------------------------------------------------------------------------- /interface/file/icon/url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/url.png -------------------------------------------------------------------------------- /interface/file/icon/vbs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/vbs.png -------------------------------------------------------------------------------- /interface/file/icon/vcr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/vcr.png -------------------------------------------------------------------------------- /interface/file/icon/vob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/vob.png -------------------------------------------------------------------------------- /interface/file/icon/wav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/wav.png -------------------------------------------------------------------------------- /interface/file/icon/wba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/wba.png -------------------------------------------------------------------------------- /interface/file/icon/wma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/wma.png -------------------------------------------------------------------------------- /interface/file/icon/wmv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/wmv.png -------------------------------------------------------------------------------- /interface/file/icon/wpl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/wpl.png -------------------------------------------------------------------------------- /interface/file/icon/wri.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/wri.png -------------------------------------------------------------------------------- /interface/file/icon/wtx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/wtx.png -------------------------------------------------------------------------------- /interface/file/icon/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/xls.png -------------------------------------------------------------------------------- /interface/file/icon/xlsx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/xlsx.png -------------------------------------------------------------------------------- /interface/file/icon/xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/xml.png -------------------------------------------------------------------------------- /interface/file/icon/xsl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/xsl.png -------------------------------------------------------------------------------- /interface/file/icon/zap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/zap.png -------------------------------------------------------------------------------- /interface/file/icon/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/icon/zip.png -------------------------------------------------------------------------------- /interface/file/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/img.gif -------------------------------------------------------------------------------- /interface/file/indd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/indd.gif -------------------------------------------------------------------------------- /interface/file/inf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/inf.gif -------------------------------------------------------------------------------- /interface/file/ini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/ini.gif -------------------------------------------------------------------------------- /interface/file/iso.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/iso.gif -------------------------------------------------------------------------------- /interface/file/jpg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/jpg.gif -------------------------------------------------------------------------------- /interface/file/mdf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/mdf.gif -------------------------------------------------------------------------------- /interface/file/mds.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/mds.gif -------------------------------------------------------------------------------- /interface/file/midi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/midi.gif -------------------------------------------------------------------------------- /interface/file/mov.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/mov.gif -------------------------------------------------------------------------------- /interface/file/mp3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/mp3.gif -------------------------------------------------------------------------------- /interface/file/mp4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/mp4.gif -------------------------------------------------------------------------------- /interface/file/mpc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/mpc.gif -------------------------------------------------------------------------------- /interface/file/mpg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/mpg.gif -------------------------------------------------------------------------------- /interface/file/ogg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/ogg.gif -------------------------------------------------------------------------------- /interface/file/pdf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/pdf.gif -------------------------------------------------------------------------------- /interface/file/php.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/php.gif -------------------------------------------------------------------------------- /interface/file/png.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/png.gif -------------------------------------------------------------------------------- /interface/file/ppt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/ppt.gif -------------------------------------------------------------------------------- /interface/file/pptx.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/pptx.gif -------------------------------------------------------------------------------- /interface/file/psd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/psd.gif -------------------------------------------------------------------------------- /interface/file/psp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/psp.gif -------------------------------------------------------------------------------- /interface/file/rar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/rar.gif -------------------------------------------------------------------------------- /interface/file/sit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/sit.gif -------------------------------------------------------------------------------- /interface/file/sitx.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/sitx.gif -------------------------------------------------------------------------------- /interface/file/swf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/swf.gif -------------------------------------------------------------------------------- /interface/file/sys.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/sys.gif -------------------------------------------------------------------------------- /interface/file/tiff.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/tiff.gif -------------------------------------------------------------------------------- /interface/file/txt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/txt.gif -------------------------------------------------------------------------------- /interface/file/wav.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/wav.gif -------------------------------------------------------------------------------- /interface/file/wma.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/wma.gif -------------------------------------------------------------------------------- /interface/file/wmv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/wmv.gif -------------------------------------------------------------------------------- /interface/file/xls.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/xls.gif -------------------------------------------------------------------------------- /interface/file/xlsx.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/xlsx.gif -------------------------------------------------------------------------------- /interface/file/xml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/xml.gif -------------------------------------------------------------------------------- /interface/file/zip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/file/zip.gif -------------------------------------------------------------------------------- /interface/icon/alert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/alert.gif -------------------------------------------------------------------------------- /interface/icon/alerts.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/alerts.gif -------------------------------------------------------------------------------- /interface/icon/arrow.down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/arrow.down.gif -------------------------------------------------------------------------------- /interface/icon/arrow.left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/arrow.left.gif -------------------------------------------------------------------------------- /interface/icon/arrow.right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/arrow.right.gif -------------------------------------------------------------------------------- /interface/icon/arrow.up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/arrow.up.gif -------------------------------------------------------------------------------- /interface/icon/backup.alternative.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/backup.alternative.gif -------------------------------------------------------------------------------- /interface/icon/backup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/backup.gif -------------------------------------------------------------------------------- /interface/icon/bug.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/bug.gif -------------------------------------------------------------------------------- /interface/icon/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/calendar.gif -------------------------------------------------------------------------------- /interface/icon/camera.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/camera.gif -------------------------------------------------------------------------------- /interface/icon/cancel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/cancel.gif -------------------------------------------------------------------------------- /interface/icon/chat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/chat.gif -------------------------------------------------------------------------------- /interface/icon/confirm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/confirm.gif -------------------------------------------------------------------------------- /interface/icon/confirmed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/confirmed.gif -------------------------------------------------------------------------------- /interface/icon/copy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/copy.gif -------------------------------------------------------------------------------- /interface/icon/create.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/create.gif -------------------------------------------------------------------------------- /interface/icon/delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/delete.gif -------------------------------------------------------------------------------- /interface/icon/display.down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/display.down.gif -------------------------------------------------------------------------------- /interface/icon/display.up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/display.up.gif -------------------------------------------------------------------------------- /interface/icon/edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/edit.gif -------------------------------------------------------------------------------- /interface/icon/editable.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/editable.gif -------------------------------------------------------------------------------- /interface/icon/file.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/file.gif -------------------------------------------------------------------------------- /interface/icon/form.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/form.gif -------------------------------------------------------------------------------- /interface/icon/gallery.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/gallery.gif -------------------------------------------------------------------------------- /interface/icon/grey/alerts.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/grey/alerts.gif -------------------------------------------------------------------------------- /interface/icon/grey/camera.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/grey/camera.gif -------------------------------------------------------------------------------- /interface/icon/grey/cancel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/grey/cancel.gif -------------------------------------------------------------------------------- /interface/icon/grey/confirm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/grey/confirm.gif -------------------------------------------------------------------------------- /interface/icon/grey/confirmed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/grey/confirmed.gif -------------------------------------------------------------------------------- /interface/icon/grey/copy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/grey/copy.gif -------------------------------------------------------------------------------- /interface/icon/grey/create.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/grey/create.gif -------------------------------------------------------------------------------- /interface/icon/grey/delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/grey/delete.gif -------------------------------------------------------------------------------- /interface/icon/grey/display.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/grey/display.gif -------------------------------------------------------------------------------- /interface/icon/grey/edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/grey/edit.gif -------------------------------------------------------------------------------- /interface/icon/grey/file.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/grey/file.gif -------------------------------------------------------------------------------- /interface/icon/grey/form.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/grey/form.gif -------------------------------------------------------------------------------- /interface/icon/grey/gallery.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/grey/gallery.gif -------------------------------------------------------------------------------- /interface/icon/grey/group.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/grey/group.gif -------------------------------------------------------------------------------- /interface/icon/grey/manage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/grey/manage.gif -------------------------------------------------------------------------------- /interface/icon/grey/pdf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/grey/pdf.gif -------------------------------------------------------------------------------- /interface/icon/grey/permission.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/grey/permission.gif -------------------------------------------------------------------------------- /interface/icon/grey/reply.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/grey/reply.gif -------------------------------------------------------------------------------- /interface/icon/grey/save.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/grey/save.gif -------------------------------------------------------------------------------- /interface/icon/grey/shop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/grey/shop.gif -------------------------------------------------------------------------------- /interface/icon/grey/special.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/grey/special.gif -------------------------------------------------------------------------------- /interface/icon/grey/version.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/grey/version.gif -------------------------------------------------------------------------------- /interface/icon/grey/view.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/grey/view.gif -------------------------------------------------------------------------------- /interface/icon/group.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/group.gif -------------------------------------------------------------------------------- /interface/icon/hand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/hand.gif -------------------------------------------------------------------------------- /interface/icon/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/help.gif -------------------------------------------------------------------------------- /interface/icon/home.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/home.gif -------------------------------------------------------------------------------- /interface/icon/info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/info.gif -------------------------------------------------------------------------------- /interface/icon/logout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/logout.gif -------------------------------------------------------------------------------- /interface/icon/manage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/manage.gif -------------------------------------------------------------------------------- /interface/icon/manual.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/manual.gif -------------------------------------------------------------------------------- /interface/icon/memory.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/memory.gif -------------------------------------------------------------------------------- /interface/icon/ok.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/ok.gif -------------------------------------------------------------------------------- /interface/icon/pdf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/pdf.gif -------------------------------------------------------------------------------- /interface/icon/permission.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/permission.gif -------------------------------------------------------------------------------- /interface/icon/print.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/print.gif -------------------------------------------------------------------------------- /interface/icon/profile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/profile.gif -------------------------------------------------------------------------------- /interface/icon/qr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/qr.gif -------------------------------------------------------------------------------- /interface/icon/refresh.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/refresh.gif -------------------------------------------------------------------------------- /interface/icon/reply.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/reply.gif -------------------------------------------------------------------------------- /interface/icon/revert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/revert.gif -------------------------------------------------------------------------------- /interface/icon/save.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/save.gif -------------------------------------------------------------------------------- /interface/icon/search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/search.gif -------------------------------------------------------------------------------- /interface/icon/shop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/shop.gif -------------------------------------------------------------------------------- /interface/icon/sort.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/sort.gif -------------------------------------------------------------------------------- /interface/icon/special.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/special.gif -------------------------------------------------------------------------------- /interface/icon/upload.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/upload.gif -------------------------------------------------------------------------------- /interface/icon/version.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/version.gif -------------------------------------------------------------------------------- /interface/icon/view.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/view.gif -------------------------------------------------------------------------------- /interface/icon/warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/icon/warning.gif -------------------------------------------------------------------------------- /interface/image/arrow.down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/arrow.down.gif -------------------------------------------------------------------------------- /interface/image/arrow.down.large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/arrow.down.large.png -------------------------------------------------------------------------------- /interface/image/arrow.green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/arrow.green.png -------------------------------------------------------------------------------- /interface/image/arrow.left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/arrow.left.gif -------------------------------------------------------------------------------- /interface/image/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/arrow.png -------------------------------------------------------------------------------- /interface/image/arrow.right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/arrow.right.gif -------------------------------------------------------------------------------- /interface/image/arrow.up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/arrow.up.gif -------------------------------------------------------------------------------- /interface/image/assign.titan.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/assign.titan.gif -------------------------------------------------------------------------------- /interface/image/assign.titan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/assign.titan.png -------------------------------------------------------------------------------- /interface/image/backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/backup.png -------------------------------------------------------------------------------- /interface/image/bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/bar.png -------------------------------------------------------------------------------- /interface/image/cc.88x31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/cc.88x31.png -------------------------------------------------------------------------------- /interface/image/cc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/cc.png -------------------------------------------------------------------------------- /interface/image/cc.some_rights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/cc.some_rights.png -------------------------------------------------------------------------------- /interface/image/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/close.gif -------------------------------------------------------------------------------- /interface/image/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/error.png -------------------------------------------------------------------------------- /interface/image/exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/exclamation.png -------------------------------------------------------------------------------- /interface/image/firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/firefox.png -------------------------------------------------------------------------------- /interface/image/firefox.portable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/firefox.portable.png -------------------------------------------------------------------------------- /interface/image/firefox.titan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/firefox.titan.png -------------------------------------------------------------------------------- /interface/image/get.firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/get.firefox.png -------------------------------------------------------------------------------- /interface/image/google-play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/google-play.png -------------------------------------------------------------------------------- /interface/image/graph.no_data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/graph.no_data.png -------------------------------------------------------------------------------- /interface/image/indicatormediumgb6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/indicatormediumgb6.gif -------------------------------------------------------------------------------- /interface/image/info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/info.gif -------------------------------------------------------------------------------- /interface/image/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/info.png -------------------------------------------------------------------------------- /interface/image/info_alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/info_alert.png -------------------------------------------------------------------------------- /interface/image/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/loader.gif -------------------------------------------------------------------------------- /interface/image/lock_hot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/lock_hot.png -------------------------------------------------------------------------------- /interface/image/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/login.png -------------------------------------------------------------------------------- /interface/image/logo.titan.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/logo.titan.gif -------------------------------------------------------------------------------- /interface/image/logo.titan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/logo.titan.png -------------------------------------------------------------------------------- /interface/image/logo_80x15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/logo_80x15.gif -------------------------------------------------------------------------------- /interface/image/manual_generation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/manual_generation.png -------------------------------------------------------------------------------- /interface/image/menu-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/menu-black.png -------------------------------------------------------------------------------- /interface/image/menu-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/menu-white.png -------------------------------------------------------------------------------- /interface/image/menu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/menu.jpg -------------------------------------------------------------------------------- /interface/image/menu_dialog_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/menu_dialog_arrow.png -------------------------------------------------------------------------------- /interface/image/minilogo.titan.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/minilogo.titan.gif -------------------------------------------------------------------------------- /interface/image/no_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/no_photo.png -------------------------------------------------------------------------------- /interface/image/passwd.fair.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/passwd.fair.gif -------------------------------------------------------------------------------- /interface/image/passwd.good.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/passwd.good.gif -------------------------------------------------------------------------------- /interface/image/passwd.strong.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/passwd.strong.gif -------------------------------------------------------------------------------- /interface/image/passwd.very_fair.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/passwd.very_fair.gif -------------------------------------------------------------------------------- /interface/image/passwd.very_weak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/passwd.very_weak.gif -------------------------------------------------------------------------------- /interface/image/passwd.weak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/passwd.weak.gif -------------------------------------------------------------------------------- /interface/image/qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/qr.png -------------------------------------------------------------------------------- /interface/image/reload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/reload.png -------------------------------------------------------------------------------- /interface/image/rss.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/rss.jpg -------------------------------------------------------------------------------- /interface/image/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/rss.png -------------------------------------------------------------------------------- /interface/image/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/spinner.gif -------------------------------------------------------------------------------- /interface/image/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/success.png -------------------------------------------------------------------------------- /interface/image/titan.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/titan.ico -------------------------------------------------------------------------------- /interface/image/trash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/trash.gif -------------------------------------------------------------------------------- /interface/image/update.big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/update.big.png -------------------------------------------------------------------------------- /interface/image/update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/update.png -------------------------------------------------------------------------------- /interface/image/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/image/warning.png -------------------------------------------------------------------------------- /interface/locale/en_US.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/locale/en_US.gif -------------------------------------------------------------------------------- /interface/locale/en_US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/locale/en_US.png -------------------------------------------------------------------------------- /interface/locale/es_ES.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/locale/es_ES.gif -------------------------------------------------------------------------------- /interface/locale/es_ES.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/locale/es_ES.png -------------------------------------------------------------------------------- /interface/locale/pt_BR.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/locale/pt_BR.gif -------------------------------------------------------------------------------- /interface/locale/pt_BR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/locale/pt_BR.png -------------------------------------------------------------------------------- /interface/menu/accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/accept.png -------------------------------------------------------------------------------- /interface/menu/book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/book.png -------------------------------------------------------------------------------- /interface/menu/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/calendar.png -------------------------------------------------------------------------------- /interface/menu/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/close.png -------------------------------------------------------------------------------- /interface/menu/configure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/configure.png -------------------------------------------------------------------------------- /interface/menu/create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/create.png -------------------------------------------------------------------------------- /interface/menu/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/csv.png -------------------------------------------------------------------------------- /interface/menu/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/delete.png -------------------------------------------------------------------------------- /interface/menu/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/edit.png -------------------------------------------------------------------------------- /interface/menu/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/email.png -------------------------------------------------------------------------------- /interface/menu/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/forward.png -------------------------------------------------------------------------------- /interface/menu/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/graph.png -------------------------------------------------------------------------------- /interface/menu/grey/accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/grey/accept.png -------------------------------------------------------------------------------- /interface/menu/grey/book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/grey/book.png -------------------------------------------------------------------------------- /interface/menu/grey/calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/grey/calendar.png -------------------------------------------------------------------------------- /interface/menu/grey/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/grey/close.png -------------------------------------------------------------------------------- /interface/menu/grey/configure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/grey/configure.png -------------------------------------------------------------------------------- /interface/menu/grey/create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/grey/create.png -------------------------------------------------------------------------------- /interface/menu/grey/csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/grey/csv.png -------------------------------------------------------------------------------- /interface/menu/grey/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/grey/delete.png -------------------------------------------------------------------------------- /interface/menu/grey/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/grey/edit.png -------------------------------------------------------------------------------- /interface/menu/grey/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/grey/email.png -------------------------------------------------------------------------------- /interface/menu/grey/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/grey/forward.png -------------------------------------------------------------------------------- /interface/menu/grey/graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/grey/graph.png -------------------------------------------------------------------------------- /interface/menu/grey/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/grey/group.png -------------------------------------------------------------------------------- /interface/menu/grey/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/grey/home.png -------------------------------------------------------------------------------- /interface/menu/grey/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/grey/list.png -------------------------------------------------------------------------------- /interface/menu/grey/mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/grey/mobile.png -------------------------------------------------------------------------------- /interface/menu/grey/notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/grey/notes.png -------------------------------------------------------------------------------- /interface/menu/grey/permission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/grey/permission.png -------------------------------------------------------------------------------- /interface/menu/grey/personal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/grey/personal.png -------------------------------------------------------------------------------- /interface/menu/grey/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/grey/print.png -------------------------------------------------------------------------------- /interface/menu/grey/reject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/grey/reject.png -------------------------------------------------------------------------------- /interface/menu/grey/reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/grey/reply.png -------------------------------------------------------------------------------- /interface/menu/grey/rewind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/grey/rewind.png -------------------------------------------------------------------------------- /interface/menu/grey/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/grey/rss.png -------------------------------------------------------------------------------- /interface/menu/grey/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/grey/save.png -------------------------------------------------------------------------------- /interface/menu/grey/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/grey/search.png -------------------------------------------------------------------------------- /interface/menu/grey/social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/grey/social.png -------------------------------------------------------------------------------- /interface/menu/grey/sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/grey/sort.png -------------------------------------------------------------------------------- /interface/menu/grey/type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/grey/type.png -------------------------------------------------------------------------------- /interface/menu/grey/version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/grey/version.png -------------------------------------------------------------------------------- /interface/menu/grey/view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/grey/view.png -------------------------------------------------------------------------------- /interface/menu/group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/group.png -------------------------------------------------------------------------------- /interface/menu/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/home.png -------------------------------------------------------------------------------- /interface/menu/list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/list.png -------------------------------------------------------------------------------- /interface/menu/mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/mobile.png -------------------------------------------------------------------------------- /interface/menu/notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/notes.png -------------------------------------------------------------------------------- /interface/menu/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/pdf.png -------------------------------------------------------------------------------- /interface/menu/permission.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/permission.png -------------------------------------------------------------------------------- /interface/menu/personal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/personal.png -------------------------------------------------------------------------------- /interface/menu/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/print.png -------------------------------------------------------------------------------- /interface/menu/reject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/reject.png -------------------------------------------------------------------------------- /interface/menu/reply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/reply.png -------------------------------------------------------------------------------- /interface/menu/rewind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/rewind.png -------------------------------------------------------------------------------- /interface/menu/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/rss.png -------------------------------------------------------------------------------- /interface/menu/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/save.png -------------------------------------------------------------------------------- /interface/menu/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/search.png -------------------------------------------------------------------------------- /interface/menu/social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/social.png -------------------------------------------------------------------------------- /interface/menu/sort.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/sort.png -------------------------------------------------------------------------------- /interface/menu/submenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/submenu.png -------------------------------------------------------------------------------- /interface/menu/type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/type.png -------------------------------------------------------------------------------- /interface/menu/version.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/version.png -------------------------------------------------------------------------------- /interface/menu/view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/menu/view.png -------------------------------------------------------------------------------- /interface/swf/top.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/interface/swf/top.swf -------------------------------------------------------------------------------- /job/minutely.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.contact/_rss.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.contact/delete.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.contact/list.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.contact/view.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.generic/_doc/create.en_US.txt: -------------------------------------------------------------------------------- 1 | In this action you can edit your personal data. -------------------------------------------------------------------------------- /repos/component/global.generic/_doc/create.es_ES.txt: -------------------------------------------------------------------------------- 1 | En esta acción puede editar sus datos personales. -------------------------------------------------------------------------------- /repos/component/global.generic/_doc/create.pt_BR.txt: -------------------------------------------------------------------------------- 1 | Nesta ação você pode editar seus dados pessoais. -------------------------------------------------------------------------------- /repos/component/global.generic/_doc/delete.en_US.txt: -------------------------------------------------------------------------------- 1 | This action show your personal data. -------------------------------------------------------------------------------- /repos/component/global.generic/_doc/delete.es_ES.txt: -------------------------------------------------------------------------------- 1 | Esta acción muestra sus datos personales. -------------------------------------------------------------------------------- /repos/component/global.generic/_doc/delete.pt_BR.txt: -------------------------------------------------------------------------------- 1 | Esta ação exibe seus dados pessoais. -------------------------------------------------------------------------------- /repos/component/global.generic/_doc/edit.en_US.txt: -------------------------------------------------------------------------------- 1 | This action show your personal data. -------------------------------------------------------------------------------- /repos/component/global.generic/_doc/edit.es_ES.txt: -------------------------------------------------------------------------------- 1 | Esta acción muestra sus datos personales. -------------------------------------------------------------------------------- /repos/component/global.generic/_doc/edit.pt_BR.txt: -------------------------------------------------------------------------------- 1 | Esta ação exibe seus dados pessoais. -------------------------------------------------------------------------------- /repos/component/global.generic/_rss.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.generic/create.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.generic/create.prepare.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.generic/csv.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.generic/csv.prepare.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.generic/delete.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.generic/edit.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.generic/list.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.generic/version.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.generic/view.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.group/_i18n/pt_BR.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /repos/component/global.group/_rss.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.group/create.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.group/delete.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.group/edit.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.group/list.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.group/logView.prepare.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.home/_doc/.en_US.txt: -------------------------------------------------------------------------------- 1 | In this section you can change your personal data, password and monitoring changes on other sections. -------------------------------------------------------------------------------- /repos/component/global.home/_doc/.es_ES.txt: -------------------------------------------------------------------------------- 1 | En esta sección usted puede cambiar sus datos personales, contraseñas, y monitoreo de los cambios en otras secciones. -------------------------------------------------------------------------------- /repos/component/global.home/_doc/.pt_BR.txt: -------------------------------------------------------------------------------- 1 | Por meio desta seção você pode alterar seus dados pessoais, sua senha e monitorar mudanças em diversas outras seções. -------------------------------------------------------------------------------- /repos/component/global.home/_doc/home.en_US.txt: -------------------------------------------------------------------------------- 1 | Use this action to access your profile, read RSS feeds and to monitoring changes on another sections of system. -------------------------------------------------------------------------------- /repos/component/global.home/_doc/home.es_ES.txt: -------------------------------------------------------------------------------- 1 | Utilice esta acción para acceder a tu perfil, leer los canales RSS y seguimiento de los cambios en otras secciones del sistema. -------------------------------------------------------------------------------- /repos/component/global.home/_doc/home.pt_BR.txt: -------------------------------------------------------------------------------- 1 | Use esta ação para acessar seus dados pessoais no sistema, ler feeds RSS e para monitorar mudanças em outras seções do sistema. -------------------------------------------------------------------------------- /repos/component/global.home/_doc/personal.en_US.txt: -------------------------------------------------------------------------------- 1 | In this action you can edit your personal data. -------------------------------------------------------------------------------- /repos/component/global.home/_doc/personal.es_ES.txt: -------------------------------------------------------------------------------- 1 | En esta acción puede editar sus datos personales. -------------------------------------------------------------------------------- /repos/component/global.home/_doc/personal.pt_BR.txt: -------------------------------------------------------------------------------- 1 | Nesta ação você pode editar seus dados pessoais. -------------------------------------------------------------------------------- /repos/component/global.home/_doc/profile.en_US.txt: -------------------------------------------------------------------------------- 1 | This action show your personal data. -------------------------------------------------------------------------------- /repos/component/global.home/_doc/profile.es_ES.txt: -------------------------------------------------------------------------------- 1 | Esta acción muestra sus datos personales. -------------------------------------------------------------------------------- /repos/component/global.home/_doc/profile.pt_BR.txt: -------------------------------------------------------------------------------- 1 | Esta ação exibe seus dados pessoais. -------------------------------------------------------------------------------- /repos/component/global.poller/_rss.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.poller/create.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.poller/delete.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.poller/edit.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.poller/list.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.simple/edit.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.simple/view.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.userPrivate/_rss.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.userPrivate/create.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.userPrivate/csv.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.userPrivate/csv.prepare.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.userPrivate/delete.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.userPrivate/edit.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.userPrivate/version.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.userPrivate/view.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.userProtected/_register.prepare.php: -------------------------------------------------------------------------------- 1 | getUserType ($section->getName ())->getRegister ()); 3 | ?> -------------------------------------------------------------------------------- /repos/component/global.userProtected/_rss.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.userProtected/create.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.userProtected/csv.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.userProtected/csv.prepare.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.userProtected/delete.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.userProtected/edit.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.userProtected/version.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.userProtected/view.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.userPublic/_register.prepare.php: -------------------------------------------------------------------------------- 1 | getUserType ($section->getName ())->getRegister ()); 3 | ?> -------------------------------------------------------------------------------- /repos/component/global.userPublic/_rss.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.userPublic/create.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.userPublic/csv.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.userPublic/csv.prepare.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.userPublic/delete.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.userPublic/edit.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.userPublic/version.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/component/global.userPublic/view.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/ldap/top/top.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/menu/Csv/_doc/en_US.txt: -------------------------------------------------------------------------------- 1 | It generates a CSV file (Comma-Separated Values) with the listed items. This file can be imported into Microsoft Excel or other spreadsheet programs. -------------------------------------------------------------------------------- /repos/menu/Delete/_doc/en_US.txt: -------------------------------------------------------------------------------- 1 | Will erase the data displayed. -------------------------------------------------------------------------------- /repos/menu/Delete/_doc/es_ES.txt: -------------------------------------------------------------------------------- 1 | Se eliminarán los datos que aparecen. -------------------------------------------------------------------------------- /repos/menu/Delete/_doc/pt_BR.txt: -------------------------------------------------------------------------------- 1 | Irá apagar permanentemente os dados exibidos. -------------------------------------------------------------------------------- /repos/menu/Pdf/_doc/en_US.txt: -------------------------------------------------------------------------------- 1 | Will generate a PDF document to download containing the data displayed. -------------------------------------------------------------------------------- /repos/menu/Pdf/_doc/es_ES.txt: -------------------------------------------------------------------------------- 1 | Va a generar un documento PDF para descargar que contiene los datos que aparecen. -------------------------------------------------------------------------------- /repos/menu/Pdf/_doc/pt_BR.txt: -------------------------------------------------------------------------------- 1 | Irá gerar um documento PDF para download contendo os dados exibidos. -------------------------------------------------------------------------------- /repos/menu/Print/_doc/en_US.txt: -------------------------------------------------------------------------------- 1 | Will generate a printable version of the data displayed. -------------------------------------------------------------------------------- /repos/menu/Print/_doc/es_ES.txt: -------------------------------------------------------------------------------- 1 | Generará una versión imprimible de los datos que aparecen. -------------------------------------------------------------------------------- /repos/menu/Print/_doc/pt_BR.txt: -------------------------------------------------------------------------------- 1 | Irá gerar uma versão para impressão dos dados exibidos. -------------------------------------------------------------------------------- /repos/menu/Save/_doc/en_US.txt: -------------------------------------------------------------------------------- 1 | Will save the form data after validating the fields. -------------------------------------------------------------------------------- /repos/menu/Save/_doc/es_ES.txt: -------------------------------------------------------------------------------- 1 | Guardará los datos del formulario después de la validación de los campos. -------------------------------------------------------------------------------- /repos/menu/Save/_doc/pt_BR.txt: -------------------------------------------------------------------------------- 1 | Irá salvar os dados do formulário após validar os campos necessários. -------------------------------------------------------------------------------- /repos/menu/Search/_doc/en_US.txt: -------------------------------------------------------------------------------- 1 | Allows to filter the items shown based on user-defined criteria. -------------------------------------------------------------------------------- /repos/menu/Search/_doc/es_ES.txt: -------------------------------------------------------------------------------- 1 | Permite filtrar los elementos basados en criterios definidos por el usuario. -------------------------------------------------------------------------------- /repos/menu/Search/_doc/pt_BR.txt: -------------------------------------------------------------------------------- 1 | Possibilita filtrar os itens mostrados com base em critérios definidos pelo usuário. -------------------------------------------------------------------------------- /repos/package/br.ufms.cpcx.user/register.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /repos/package/net.ledes.access/readme.txt: -------------------------------------------------------------------------------- 1 | Instancia uma seção de gerenciamento de grupos e controle de acesso. -------------------------------------------------------------------------------- /repos/package/net.ledes.archive/readme.txt: -------------------------------------------------------------------------------- 1 | Instancia uma seção de gerenciamento de arquivos (uploads). -------------------------------------------------------------------------------- /repos/package/net.ledes.home/readme.txt: -------------------------------------------------------------------------------- 1 | Edição de dados pessoais e monitoramento da aplicação (RSS). -------------------------------------------------------------------------------- /repos/package/net.ledes.link/readme.txt: -------------------------------------------------------------------------------- 1 | Pacote para gerência de links (URLs) 2 | 3 | - Ações: 4 | 5 | - Campos: -------------------------------------------------------------------------------- /repos/package/net.ledes.manager/readme.txt: -------------------------------------------------------------------------------- 1 | Instancia uma seção de gerencia de Usuários Gestores (cadastro privado). -------------------------------------------------------------------------------- /repos/package/net.ledes.poller/readme.txt: -------------------------------------------------------------------------------- 1 | Este pacote insere uma poller na instância. 2 | 3 | - Ações: 4 | 5 | - Campos: -------------------------------------------------------------------------------- /repos/package/net.ledes.portal.link/readme.txt: -------------------------------------------------------------------------------- 1 | Instancia a seção de Links (URLs) utilizada no Portal do LEDES. Esta seção de diferencia por ter um módulo (dependência) de Categorias. -------------------------------------------------------------------------------- /repos/package/net.ledes.portal.linkType/readme.txt: -------------------------------------------------------------------------------- 1 | Instancia uma seção de Categorização de Links. -------------------------------------------------------------------------------- /repos/social/Facebook/_adapter/gender.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/social/Google/_resource/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/repos/social/Google/_resource/button.png -------------------------------------------------------------------------------- /repos/social/Google/_resource/menu-grey.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/repos/social/Google/_resource/menu-grey.gif -------------------------------------------------------------------------------- /repos/social/Google/_resource/menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/repos/social/Google/_resource/menu.gif -------------------------------------------------------------------------------- /repos/type/global.Amount/fromForm.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/type/global.Amount/toHtml.php: -------------------------------------------------------------------------------- 1 | getValue ()) 3 | return '0'; 4 | 5 | return (string) number_format ($field->getValue (), 0, '', '.'); 6 | ?> -------------------------------------------------------------------------------- /repos/type/global.Amount/toText.php: -------------------------------------------------------------------------------- 1 | getValue (), 0, '', '.'); 3 | ?> -------------------------------------------------------------------------------- /repos/type/global.Boolean/fromDb.php: -------------------------------------------------------------------------------- 1 | setValue ($value ? TRUE : FALSE); 3 | 4 | return $field; 5 | ?> -------------------------------------------------------------------------------- /repos/type/global.Boolean/fromForm.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/type/global.Boolean/toApi.php: -------------------------------------------------------------------------------- 1 | getValue () ? TRUE : FALSE; 3 | ?> -------------------------------------------------------------------------------- /repos/type/global.Boolean/toBind.php: -------------------------------------------------------------------------------- 1 | getValue () ? "1" : "0"; 3 | ?> -------------------------------------------------------------------------------- /repos/type/global.Boolean/toDbMaker.php: -------------------------------------------------------------------------------- 1 | getColumn () ." BIT(1) DEFAULT ". Database::toValue ($field) ." NOT NULL"; 3 | ?> -------------------------------------------------------------------------------- /repos/type/global.Boolean/toHtml.php: -------------------------------------------------------------------------------- 1 | getValue () ? __ ('Yes') : __ ('No'); 3 | ?> -------------------------------------------------------------------------------- /repos/type/global.Boolean/toText.php: -------------------------------------------------------------------------------- 1 | getValue () ? __ ('Yes') : __ ('No'); 3 | ?> -------------------------------------------------------------------------------- /repos/type/global.Boolean/toValue.php: -------------------------------------------------------------------------------- 1 | getValue () ? "B'1'" : "B'0'"; 3 | ?> -------------------------------------------------------------------------------- /repos/type/global.Cep/fromForm.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/type/global.Cep/toHtml.php: -------------------------------------------------------------------------------- 1 | getValue ()); 3 | ?> -------------------------------------------------------------------------------- /repos/type/global.CheckBox/fromDb.php: -------------------------------------------------------------------------------- 1 | setValue (explode (';', $value)); 3 | 4 | return $field; 5 | ?> -------------------------------------------------------------------------------- /repos/type/global.CheckBox/fromForm.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/type/global.CheckBox/toBind.php: -------------------------------------------------------------------------------- 1 | isEmpty ()) 3 | return NULL; 4 | 5 | return '{ "'. implode ('", "', $field->getValue ()) .'" }'; 6 | ?> -------------------------------------------------------------------------------- /repos/type/global.CheckBox/toSql.php: -------------------------------------------------------------------------------- 1 | getTable () .".". $field->getColumn () .", ';', '') AS ". $field->getColumn (); 3 | ?> -------------------------------------------------------------------------------- /repos/type/global.CheckBox/toValue.php: -------------------------------------------------------------------------------- 1 | isEmpty ()) 3 | return "NULL"; 4 | 5 | return "'{ \"". implode ('", "', $field->getValue ()) ."\" }'"; 6 | ?> -------------------------------------------------------------------------------- /repos/type/global.CheckBox/toWhere.php: -------------------------------------------------------------------------------- 1 | getTable () .'.'. $field->getColumn () ." && '{ \"". implode ('", "', $field->getValue ()) ."\" }'" ?> -------------------------------------------------------------------------------- /repos/type/global.Cnpj/fromForm.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/type/global.Cnpj/toBind.php: -------------------------------------------------------------------------------- 1 | isEmpty ()) 3 | return NULL; 4 | 5 | return $field->getValue (); 6 | ?> -------------------------------------------------------------------------------- /repos/type/global.Cnpj/toHtml.php: -------------------------------------------------------------------------------- 1 | getValue ()); 3 | ?> -------------------------------------------------------------------------------- /repos/type/global.Cnpj/toText.php: -------------------------------------------------------------------------------- 1 | getValue ()); 3 | ?> -------------------------------------------------------------------------------- /repos/type/global.Cnpj/toValue.php: -------------------------------------------------------------------------------- 1 | isEmpty ()) 3 | return "NULL"; 4 | 5 | return "'". $field->getValue () ."'"; 6 | ?> -------------------------------------------------------------------------------- /repos/type/global.Color/_js.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/type/global.Color/fromForm.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/type/global.Color/toApi.php: -------------------------------------------------------------------------------- 1 | getValue (); 3 | ?> -------------------------------------------------------------------------------- /repos/type/global.Color/toWhere.SQLite.php: -------------------------------------------------------------------------------- 1 | getTable () .'.'. $field->getColumn () ." = '". $field->getValue () ."'" ?> -------------------------------------------------------------------------------- /repos/type/global.Color/toWhere.php: -------------------------------------------------------------------------------- 1 | getTable () .'.'. $field->getColumn () ." = '". $field->getValue () ."'" ?> -------------------------------------------------------------------------------- /repos/type/global.Cpf/fromForm.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/type/global.Cpf/toBind.php: -------------------------------------------------------------------------------- 1 | isEmpty ()) 3 | return NULL; 4 | 5 | return $field->getValue (); 6 | ?> -------------------------------------------------------------------------------- /repos/type/global.Cpf/toHtml.php: -------------------------------------------------------------------------------- 1 | getValue ()); 3 | ?> -------------------------------------------------------------------------------- /repos/type/global.Cpf/toLdap.php: -------------------------------------------------------------------------------- 1 | getValue (); 3 | ?> -------------------------------------------------------------------------------- /repos/type/global.Cpf/toText.php: -------------------------------------------------------------------------------- 1 | getValue ()); 3 | ?> -------------------------------------------------------------------------------- /repos/type/global.Cpf/toValue.php: -------------------------------------------------------------------------------- 1 | isEmpty ()) 3 | return "NULL"; 4 | 5 | return "'". $field->getValue () ."'"; 6 | ?> -------------------------------------------------------------------------------- /repos/type/global.Date/_resource/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/repos/type/global.Date/_resource/clear.png -------------------------------------------------------------------------------- /repos/type/global.Date/fromApi.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/type/global.Date/fromDb.php: -------------------------------------------------------------------------------- 1 | setValue ($value); 4 | else 5 | $field->setValue (array (0, 0, 0)); 6 | 7 | return $field; 8 | ?> -------------------------------------------------------------------------------- /repos/type/global.Date/toApi.php: -------------------------------------------------------------------------------- 1 | getUnixTime (); 3 | ?> -------------------------------------------------------------------------------- /repos/type/global.Date/toGroupBy.php: -------------------------------------------------------------------------------- 1 | getColumn ().'"'; 3 | ?> -------------------------------------------------------------------------------- /repos/type/global.Date/toHtml.php: -------------------------------------------------------------------------------- 1 | __toString (); 3 | ?> -------------------------------------------------------------------------------- /repos/type/global.Date/toOrder.php: -------------------------------------------------------------------------------- 1 | getColumn (); 3 | ?> -------------------------------------------------------------------------------- /repos/type/global.Double/fromApi.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/type/global.Double/toApi.php: -------------------------------------------------------------------------------- 1 | getValue (), $field->getPrecision (), '.', ''); 3 | ?> -------------------------------------------------------------------------------- /repos/type/global.Double/toBind.php: -------------------------------------------------------------------------------- 1 | getValue (), $field->getPrecision (), '.', ''); 3 | ?> -------------------------------------------------------------------------------- /repos/type/global.Double/toValue.php: -------------------------------------------------------------------------------- 1 | getValue (), $field->getPrecision (), '.', '') ."'"; 3 | ?> -------------------------------------------------------------------------------- /repos/type/global.Enum/toApi.php: -------------------------------------------------------------------------------- 1 | isEmpty ()) 3 | return ''; 4 | 5 | return (string) $field->getValue (); 6 | ?> -------------------------------------------------------------------------------- /repos/type/global.Enum/toLdap.php: -------------------------------------------------------------------------------- 1 | isEmpty ()) 3 | return ''; 4 | 5 | return (string) $field->getValue (); 6 | ?> -------------------------------------------------------------------------------- /repos/type/global.Enum/toValue.php: -------------------------------------------------------------------------------- 1 | isEmpty ()) 3 | return "NULL"; 4 | 5 | return "'". $field->getValue () ."'"; 6 | ?> -------------------------------------------------------------------------------- /repos/type/global.Enum/toWhere.php: -------------------------------------------------------------------------------- 1 | getTable () .'.'. $field->getColumn () ." = '". addslashes ($field->getValue ()) ."'" ?> -------------------------------------------------------------------------------- /repos/type/global.Fck/fromForm.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/type/global.File/_resource/archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/repos/type/global.File/_resource/archive.png -------------------------------------------------------------------------------- /repos/type/global.File/_resource/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/repos/type/global.File/_resource/delete.png -------------------------------------------------------------------------------- /repos/type/global.File/_resource/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/repos/type/global.File/_resource/loading.png -------------------------------------------------------------------------------- /repos/type/global.File/_resource/no-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/repos/type/global.File/_resource/no-file.png -------------------------------------------------------------------------------- /repos/type/global.File/_resource/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/repos/type/global.File/_resource/search.png -------------------------------------------------------------------------------- /repos/type/global.File/toApi.php: -------------------------------------------------------------------------------- 1 | isEmpty ()) 4 | return 0; 5 | 6 | return $field->getValue (); -------------------------------------------------------------------------------- /repos/type/global.File/toBind.php: -------------------------------------------------------------------------------- 1 | isEmpty ()) 4 | return NULL; 5 | 6 | return $field->getValue (); -------------------------------------------------------------------------------- /repos/type/global.File/toValue.php: -------------------------------------------------------------------------------- 1 | isEmpty ()) 3 | return "NULL"; 4 | 5 | return "'". $field->getValue () ."'"; 6 | ?> -------------------------------------------------------------------------------- /repos/type/global.Integer/fromForm.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/type/global.Integer/toApi.php: -------------------------------------------------------------------------------- 1 | getValue (); 3 | ?> -------------------------------------------------------------------------------- /repos/type/global.Integer/toBind.php: -------------------------------------------------------------------------------- 1 | isEmpty ()) 3 | return "0"; 4 | 5 | return $field->getValue (); 6 | ?> -------------------------------------------------------------------------------- /repos/type/global.Integer/toHtml.php: -------------------------------------------------------------------------------- 1 | getValue ()) 3 | return '0'; 4 | 5 | return (string) $field->getValue (); 6 | ?> -------------------------------------------------------------------------------- /repos/type/global.Integer/toText.php: -------------------------------------------------------------------------------- 1 | getValue (); 3 | ?> -------------------------------------------------------------------------------- /repos/type/global.Integer/toValue.php: -------------------------------------------------------------------------------- 1 | isEmpty ()) 3 | return "'0'"; 4 | 5 | return "'". $field->getValue () ."'"; 6 | ?> -------------------------------------------------------------------------------- /repos/type/global.Map/fromDb.php: -------------------------------------------------------------------------------- 1 | setValue (explode (';', $value)); 4 | 5 | return $field; -------------------------------------------------------------------------------- /repos/type/global.Map/toList.php: -------------------------------------------------------------------------------- 1 | __toString (); 3 | ?> -------------------------------------------------------------------------------- /repos/type/global.Map/toSql.php: -------------------------------------------------------------------------------- 1 | getTable () .".". $field->getColumn () .", ';', '') AS ". $field->getColumn (); -------------------------------------------------------------------------------- /repos/type/global.Note/_resource/audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/repos/type/global.Note/_resource/audio.png -------------------------------------------------------------------------------- /repos/type/global.Note/_resource/earth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/repos/type/global.Note/_resource/earth.png -------------------------------------------------------------------------------- /repos/type/global.Note/_resource/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/repos/type/global.Note/_resource/photo.png -------------------------------------------------------------------------------- /repos/type/global.Note/_resource/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/repos/type/global.Note/_resource/play.png -------------------------------------------------------------------------------- /repos/type/global.Note/_resource/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/repos/type/global.Note/_resource/video.png -------------------------------------------------------------------------------- /repos/type/global.Note/fromApi.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/type/global.Passport/toBind.php: -------------------------------------------------------------------------------- 1 | isEmpty ()) 3 | return NULL; 4 | 5 | return $field->getValue (); 6 | ?> -------------------------------------------------------------------------------- /repos/type/global.Passport/toText.php: -------------------------------------------------------------------------------- 1 | getValue (); 3 | ?> -------------------------------------------------------------------------------- /repos/type/global.Passport/toValue.php: -------------------------------------------------------------------------------- 1 | isEmpty ()) 3 | return "NULL"; 4 | 5 | return "'". $field->getValue () ."'"; 6 | ?> -------------------------------------------------------------------------------- /repos/type/global.Password/toHtml.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/type/global.Phone/fromForm.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/type/global.Phone/toHtml.php: -------------------------------------------------------------------------------- 1 | getValue ()) .' '; 3 | ?> -------------------------------------------------------------------------------- /repos/type/global.Phone/toLdap.php: -------------------------------------------------------------------------------- 1 | getValue ()); 3 | ?> -------------------------------------------------------------------------------- /repos/type/global.Phone/toText.php: -------------------------------------------------------------------------------- 1 | getValue ()); 3 | ?> -------------------------------------------------------------------------------- /repos/type/global.Phrase/fromDb.php: -------------------------------------------------------------------------------- 1 | setValue ($value); 3 | 4 | return $field; 5 | ?> -------------------------------------------------------------------------------- /repos/type/global.Phrase/fromForm.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/type/global.Phrase/toBind.php: -------------------------------------------------------------------------------- 1 | isUnique () && $field->isEmpty ()) 3 | return NULL; 4 | 5 | return $field->getValue (); 6 | ?> -------------------------------------------------------------------------------- /repos/type/global.Phrase/toLdap.php: -------------------------------------------------------------------------------- 1 | getValue ())); 3 | ?> -------------------------------------------------------------------------------- /repos/type/global.Phrase/toOrder.php: -------------------------------------------------------------------------------- 1 | getColumn () .")))"; 3 | ?> -------------------------------------------------------------------------------- /repos/type/global.Phrase/toText.php: -------------------------------------------------------------------------------- 1 | getValue ()); 3 | ?> -------------------------------------------------------------------------------- /repos/type/global.Phrase/toValue.php: -------------------------------------------------------------------------------- 1 | isUnique () && $field->isEmpty ()) 3 | return "NULL"; 4 | 5 | return "'". $field->getValue () ."'"; 6 | ?> -------------------------------------------------------------------------------- /repos/type/global.Phrase/toWhere.SQLite.php: -------------------------------------------------------------------------------- 1 | getTable () .'.'. $field->getColumn () ." LIKE '%". addslashes ($field->getValue ()) ."%'" ?> -------------------------------------------------------------------------------- /repos/type/global.Phrase/toWhere.php: -------------------------------------------------------------------------------- 1 | getTable () .'.'. $field->getColumn () .") ILIKE _no_accents ('%". addslashes ($field->getValue ()) ."%')" ?> -------------------------------------------------------------------------------- /repos/type/global.PlainText/toHtml.php: -------------------------------------------------------------------------------- 1 | getValue ()); 3 | ?> -------------------------------------------------------------------------------- /repos/type/global.Rga/fromForm.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/type/global.Rga/toHtml.php: -------------------------------------------------------------------------------- 1 | getValue ()); 3 | ?> -------------------------------------------------------------------------------- /repos/type/global.Select/_css.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/type/global.Select/toBind.php: -------------------------------------------------------------------------------- 1 | isEmpty ()) 3 | return NULL; 4 | 5 | return $field->getValue (); 6 | ?> -------------------------------------------------------------------------------- /repos/type/global.Select/toValue.php: -------------------------------------------------------------------------------- 1 | isEmpty ()) 3 | return "NULL"; 4 | 5 | return "'". $field->getValue () ."'"; 6 | ?> -------------------------------------------------------------------------------- /repos/type/global.ShoppingGateway/toValue.php: -------------------------------------------------------------------------------- 1 | getValue ()) == '') 3 | return NULL; 4 | 5 | return $field->getValue (); 6 | ?> -------------------------------------------------------------------------------- /repos/type/global.Slug/fromForm.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/type/global.State/toLdap.php: -------------------------------------------------------------------------------- 1 | getValue (); 3 | ?> -------------------------------------------------------------------------------- /repos/type/global.Time/toGroupBy.php: -------------------------------------------------------------------------------- 1 | getColumn ().'"'; 3 | ?> -------------------------------------------------------------------------------- /repos/type/global.Time/toOrder.php: -------------------------------------------------------------------------------- 1 | getColumn (); 3 | ?> -------------------------------------------------------------------------------- /repos/type/global.Twitter/toHtml.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /repos/type/global.Url/fromForm.php: -------------------------------------------------------------------------------- 1 | getPrefix () . Phrase::purify (trim ($value)); 3 | ?> -------------------------------------------------------------------------------- /repos/type/global.Url/toBind.php: -------------------------------------------------------------------------------- 1 | isEmpty ()) 3 | return NULL; 4 | 5 | return $field->getValue (); 6 | ?> -------------------------------------------------------------------------------- /repos/type/global.Url/toValue.php: -------------------------------------------------------------------------------- 1 | isEmpty ()) 3 | return "NULL"; 4 | 5 | return "'". $field->getValue () ."'"; 6 | ?> -------------------------------------------------------------------------------- /update/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /update/STABLE: -------------------------------------------------------------------------------- 1 | 786 -------------------------------------------------------------------------------- /update/VERSION: -------------------------------------------------------------------------------- 1 | 3.18.12 -------------------------------------------------------------------------------- /xoad/CREDITS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/xoad/CREDITS -------------------------------------------------------------------------------- /xoad/TRASH: -------------------------------------------------------------------------------- 1 | TRASH 2 | ------ 3 | 4 | This file contains source code that is old and was removed from the package, 5 | but can be used again in later versions. -------------------------------------------------------------------------------- /xoad/var/EVENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titan-framework/core/7e01ed99a346bacad35bda5624a7d35573538156/xoad/var/EVENTS --------------------------------------------------------------------------------