├── .docker-compose ├── Dockerfile └── nginx.conf ├── .env ├── .eslintrc.json ├── .github └── workflows │ └── php.yml ├── .gitignore ├── CONTRIBUTING.md ├── COPYING ├── ChangeLog ├── LICENSE.md ├── README.md ├── base.php ├── classes ├── CustomFields.class.php ├── authenticator.class.php ├── csscolor.class.php ├── customfieldsparser.class.php ├── date.class.php ├── dp.class.php ├── event_queue.class.php ├── index.html ├── libmail.class.php ├── permissions.class.php ├── query.class.php ├── tree.class.php └── ui.class.php ├── db ├── README ├── dotproject.sql ├── index.html ├── upgrade_101_to_102.sql ├── upgrade_102_to_20alpha.sql ├── upgrade_201_to_202.sql ├── upgrade_204_to_21rc1.sql ├── upgrade_20_to_201.sql ├── upgrade_20alpha_to_20beta.sql ├── upgrade_20beta_to_20.sql ├── upgrade_211_to_212.sql ├── upgrade_212_to_213.sql ├── upgrade_213_to_214.sql ├── upgrade_214_to_215.sql ├── upgrade_215_to_216.sql ├── upgrade_217_to_218.sql ├── upgrade_21_to_211.sql ├── upgrade_21rc1_to_21rc2.sql ├── upgrade_21rc2_to_21.sql ├── upgrade_contacts.php ├── upgrade_contacts_company.php ├── upgrade_latest.php ├── upgrade_latest.sql ├── upgrade_permissions.php └── upgrade_project_color_identifier.sql ├── docker-compose.yml ├── favicon.ico ├── files ├── .cvsignore ├── .htaccess ├── index.html └── temp │ ├── .cvsignore │ ├── .htaccess │ └── index.html ├── fileviewer.php ├── functions ├── admin_func.php ├── forums_func.php ├── index.html ├── projects_func.php └── tasks_func.php ├── images ├── arrow-down.gif ├── arrow-right.gif ├── arrow-up.gif ├── block-end-16.png ├── block-start-16.png ├── calendar.gif ├── clip.png ├── colorchart.gif ├── corner-dots.gif ├── googlemaps.gif ├── googlemaps.svg ├── helpdesk.png ├── icons │ ├── 1.gif │ ├── admin.gif │ ├── birthday.png │ ├── calendar.gif │ ├── collapse.gif │ ├── companies.gif │ ├── customfields.png │ ├── dialog-warning5.png │ ├── dp.gif │ ├── expand.gif │ ├── graph.gif │ ├── index.html │ ├── low.gif │ ├── mail.gif │ ├── milestone.gif │ ├── pencil.gif │ ├── pin.gif │ ├── posticon.gif │ ├── priority_down_1.gif │ ├── priority_down_2.gif │ ├── priority_up_1.gif │ ├── priority_up_2.gif │ ├── rc-gui-status-downgr.png │ ├── shim.gif │ ├── stock_attach-16.png │ ├── stock_cancel-16.png │ ├── stock_delete-16.png │ ├── stock_edit-16.png │ ├── stock_help-16.png │ ├── stock_new.png │ ├── stock_new_small.png │ ├── stock_ok-16.png │ ├── stock_print-16.png │ ├── stock_trash_full-16.png │ ├── ticketsmith.gif │ ├── trash.gif │ ├── unpin.gif │ ├── updown.gif │ └── users.gif ├── index.html ├── log-error.gif ├── log-info.gif ├── log-notice.gif ├── logo │ ├── dProject-vector-logo.png │ ├── dotProject Vector Logo.png │ ├── dotProject Vector Logo.svg │ ├── dotProject Vector Logo@2x.png │ ├── dotProject Vector Logo@4x.png │ ├── dotProject-vector-logo.ai │ ├── dotProject.png │ ├── dotProject.svg │ ├── dotProject@2x.png │ ├── dotProject@4x.png │ └── dotproject_logo_large.png ├── navfirst.gif ├── navlast.gif ├── navleft.gif ├── navright.gif ├── next.gif ├── obj │ ├── alert.gif │ ├── contact.gif │ ├── dotgreen.gif │ ├── dotgrey.gif │ ├── dotredanim.gif │ ├── dotyellowanim.gif │ ├── email.gif │ ├── error.gif │ ├── event-attendees.gif │ ├── event.gif │ ├── folder-shared.gif │ ├── folder.gif │ ├── help.gif │ ├── index.html │ ├── lock.gif │ ├── palette.gif │ ├── phone.gif │ └── warning.gif ├── prev.gif ├── shim.gif ├── smartfolder.gif ├── trash_small.gif ├── view.week.gif └── week.gif ├── includes ├── .cvsignore ├── .htaccess ├── config-dist.php ├── dP_compat.php ├── db_adodb.php ├── db_connect.php ├── filter.php ├── gateway.pl ├── index.html ├── main_functions.php ├── permissions.php ├── sendpass.php ├── session.php ├── unicode.entities.inc.php └── version.php ├── index.php ├── install ├── check_upgrade.php ├── db.php ├── do_install_db.php ├── docs │ ├── about.html │ ├── check.php │ ├── index.html │ ├── main.css │ ├── nav.html │ ├── phpinfo.php │ └── rfc0001.00.html ├── dp.png ├── index.php ├── install.inc.php ├── versions.inc.php └── vw_idx_check.php ├── js ├── base.js └── collapse.js ├── lib ├── PEAR.php ├── PEAR │ ├── Contact_Vcard_Build.php │ ├── Contact_Vcard_Parse.php │ ├── Date.php │ ├── Date │ │ ├── Calc.php │ │ ├── Human.php │ │ ├── Span.php │ │ └── TimeZone.php │ └── FixPHP5PEARWarnings.php ├── PEAR5.php ├── adodb │ ├── .mailmap │ ├── LICENSE.md │ ├── README.md │ ├── adodb-active-record.inc.php │ ├── adodb-active-recordx.inc.php │ ├── adodb-csvlib.inc.php │ ├── adodb-datadict.inc.php │ ├── adodb-error.inc.php │ ├── adodb-errorhandler.inc.php │ ├── adodb-errorpear.inc.php │ ├── adodb-exceptions.inc.php │ ├── adodb-iterator.inc.php │ ├── adodb-lib.inc.php │ ├── adodb-memcache.lib.inc.php │ ├── adodb-pager.inc.php │ ├── adodb-pear.inc.php │ ├── adodb-perf.inc.php │ ├── adodb-php4.inc.php │ ├── adodb-time.inc.php │ ├── adodb-xmlschema.inc.php │ ├── adodb-xmlschema03.inc.php │ ├── adodb.inc.php │ ├── composer.json │ ├── contrib │ │ └── toxmlrpc.inc.php │ ├── cute_icons_for_site │ │ ├── adodb.gif │ │ └── adodb2.gif │ ├── datadict │ │ ├── datadict-access.inc.php │ │ ├── datadict-db2.inc.php │ │ ├── datadict-firebird.inc.php │ │ ├── datadict-generic.inc.php │ │ ├── datadict-ibase.inc.php │ │ ├── datadict-informix.inc.php │ │ ├── datadict-mssql.inc.php │ │ ├── datadict-mssqlnative.inc.php │ │ ├── datadict-mysql.inc.php │ │ ├── datadict-oci8.inc.php │ │ ├── datadict-postgres.inc.php │ │ ├── datadict-sapdb.inc.php │ │ ├── datadict-sqlite.inc.php │ │ └── datadict-sybase.inc.php │ ├── docs │ │ ├── README.md │ │ ├── adodb.gif │ │ ├── adodb2.gif │ │ ├── changelog.md │ │ ├── changelog_v2.x.md │ │ ├── changelog_v3.x.md │ │ ├── changelog_v4+5.md │ │ └── changelog_v4.x.md │ ├── drivers │ │ ├── adodb-access.inc.php │ │ ├── adodb-ado.inc.php │ │ ├── adodb-ado5.inc.php │ │ ├── adodb-ado_access.inc.php │ │ ├── adodb-ado_mssql.inc.php │ │ ├── adodb-ads.inc.php │ │ ├── adodb-borland_ibase.inc.php │ │ ├── adodb-csv.inc.php │ │ ├── adodb-db2.inc.php │ │ ├── adodb-db2oci.inc.php │ │ ├── adodb-db2ora.inc.php │ │ ├── adodb-fbsql.inc.php │ │ ├── adodb-firebird.inc.php │ │ ├── adodb-ibase.inc.php │ │ ├── adodb-informix.inc.php │ │ ├── adodb-informix72.inc.php │ │ ├── adodb-ldap.inc.php │ │ ├── adodb-mssql.inc.php │ │ ├── adodb-mssql_n.inc.php │ │ ├── adodb-mssqlnative.inc.php │ │ ├── adodb-mssqlpo.inc.php │ │ ├── adodb-mysql.inc.php │ │ ├── adodb-mysqli.inc.php │ │ ├── adodb-mysqlpo.inc.php │ │ ├── adodb-mysqlt.inc.php │ │ ├── adodb-netezza.inc.php │ │ ├── adodb-oci8.inc.php │ │ ├── adodb-oci805.inc.php │ │ ├── adodb-oci8po.inc.php │ │ ├── adodb-oci8quercus.inc.php │ │ ├── adodb-odbc.inc.php │ │ ├── adodb-odbc_db2.inc.php │ │ ├── adodb-odbc_mssql.inc.php │ │ ├── adodb-odbc_oracle.inc.php │ │ ├── adodb-odbtp.inc.php │ │ ├── adodb-odbtp_unicode.inc.php │ │ ├── adodb-oracle.inc.php │ │ ├── adodb-pdo.inc.php │ │ ├── adodb-pdo_mssql.inc.php │ │ ├── adodb-pdo_mysql.inc.php │ │ ├── adodb-pdo_oci.inc.php │ │ ├── adodb-pdo_pgsql.inc.php │ │ ├── adodb-pdo_sqlite.inc.php │ │ ├── adodb-pdo_sqlsrv.inc.php │ │ ├── adodb-postgres.inc.php │ │ ├── adodb-postgres64.inc.php │ │ ├── adodb-postgres7.inc.php │ │ ├── adodb-postgres8.inc.php │ │ ├── adodb-postgres9.inc.php │ │ ├── adodb-proxy.inc.php │ │ ├── adodb-sapdb.inc.php │ │ ├── adodb-sqlanywhere.inc.php │ │ ├── adodb-sqlite.inc.php │ │ ├── adodb-sqlite3.inc.php │ │ ├── adodb-sqlitepo.inc.php │ │ ├── adodb-sybase.inc.php │ │ ├── adodb-sybase_ase.inc.php │ │ └── adodb-vfp.inc.php │ ├── lang │ │ ├── adodb-ar.inc.php │ │ ├── adodb-bg.inc.php │ │ ├── adodb-ca.inc.php │ │ ├── adodb-cn.inc.php │ │ ├── adodb-cz.inc.php │ │ ├── adodb-da.inc.php │ │ ├── adodb-de.inc.php │ │ ├── adodb-en.inc.php │ │ ├── adodb-eo.inc.php │ │ ├── adodb-es.inc.php │ │ ├── adodb-fa.inc.php │ │ ├── adodb-fr.inc.php │ │ ├── adodb-hu.inc.php │ │ ├── adodb-it.inc.php │ │ ├── adodb-nl.inc.php │ │ ├── adodb-pl.inc.php │ │ ├── adodb-pt-br.inc.php │ │ ├── adodb-ro.inc.php │ │ ├── adodb-ru.inc.php │ │ ├── adodb-sv.inc.php │ │ ├── adodb-th.inc.php │ │ └── adodb-uk.inc.php │ ├── pear │ │ ├── Auth │ │ │ └── Container │ │ │ │ └── ADOdb.php │ │ ├── auth_adodb_example.php │ │ └── readme.Auth.txt │ ├── perf │ │ ├── perf-db2.inc.php │ │ ├── perf-informix.inc.php │ │ ├── perf-mssql.inc.php │ │ ├── perf-mssqlnative.inc.php │ │ ├── perf-mysql.inc.php │ │ ├── perf-oci8.inc.php │ │ └── perf-postgres.inc.php │ ├── pivottable.inc.php │ ├── rsfilter.inc.php │ ├── server.php │ ├── session │ │ ├── adodb-compress-bzip2.php │ │ ├── adodb-compress-gzip.php │ │ ├── adodb-cryptsession.php │ │ ├── adodb-cryptsession2.php │ │ ├── adodb-encrypt-mcrypt.php │ │ ├── adodb-encrypt-md5.php │ │ ├── adodb-encrypt-secret.php │ │ ├── adodb-encrypt-sha1.php │ │ ├── adodb-sess.txt │ │ ├── adodb-session-clob.php │ │ ├── adodb-session-clob2.php │ │ ├── adodb-session.php │ │ ├── adodb-session2.php │ │ ├── adodb-sessions.mysql.sql │ │ ├── adodb-sessions.oracle.clob.sql │ │ ├── adodb-sessions.oracle.sql │ │ ├── crypt.inc.php │ │ ├── old │ │ │ ├── adodb-cryptsession.php │ │ │ ├── adodb-session-clob.php │ │ │ ├── adodb-session.php │ │ │ └── crypt.inc.php │ │ ├── session_schema.xml │ │ └── session_schema2.xml │ ├── toexport.inc.php │ ├── tohtml.inc.php │ ├── xmlschema.dtd │ ├── xmlschema03.dtd │ └── xsl │ │ ├── convert-0.1-0.2.xsl │ │ ├── convert-0.1-0.3.xsl │ │ ├── convert-0.2-0.1.xsl │ │ ├── convert-0.2-0.3.xsl │ │ ├── remove-0.2.xsl │ │ └── remove-0.3.xsl ├── calendar │ ├── README │ ├── calendar-dp.css │ ├── calendar.js │ └── lang │ │ ├── calendar-br.js │ │ ├── calendar-ca.js │ │ ├── calendar-cs-win.js │ │ ├── calendar-da.js │ │ ├── calendar-du.js │ │ ├── calendar-el.js │ │ ├── calendar-en.js │ │ ├── calendar-es.js │ │ ├── calendar-fr.js │ │ ├── calendar-it.js │ │ ├── calendar-nl.js │ │ ├── calendar-ro.js │ │ ├── calendar-sp.js │ │ └── calendar-sw.js ├── ezpdf │ ├── class.ezpdf.php │ ├── class.pdf.php │ └── fonts │ │ ├── Helvetica-Bold.afm │ │ └── Helvetica.afm ├── fonts │ ├── AUTHORS │ ├── CREDITS │ ├── ChangeLog │ ├── FreeMono.ttf │ ├── FreeMonoBold.ttf │ ├── FreeMonoBoldOblique.ttf │ ├── FreeMonoOblique.ttf │ ├── FreeSans.ttf │ ├── FreeSansBold.ttf │ ├── FreeSansBoldOblique.ttf │ ├── FreeSansOblique.ttf │ ├── FreeSerif.ttf │ ├── FreeSerifBold.ttf │ ├── FreeSerifBoldItalic.ttf │ ├── FreeSerifItalic.ttf │ ├── INSTALL │ ├── README │ └── vera │ │ ├── COPYRIGHT.TXT │ │ ├── README.TXT │ │ ├── RELEASENOTES.TXT │ │ ├── Vera.ttf │ │ ├── VeraBI.ttf │ │ ├── VeraBd.ttf │ │ ├── VeraIt.ttf │ │ ├── VeraMoBI.ttf │ │ ├── VeraMoBd.ttf │ │ ├── VeraMoIt.ttf │ │ ├── VeraMono.ttf │ │ ├── VeraSe.ttf │ │ ├── VeraSeBd.ttf │ │ └── local.conf ├── htmlpurifier-standalone │ ├── 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.AggressivelyRemoveScript.txt │ │ │ ├── Core.AllowHostnameUnderscore.txt │ │ │ ├── Core.AllowParseManyTags.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.LegacyEntityDecoder.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.Forms.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.TargetNoopener.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 │ │ ├── DefinitionCache │ │ └── Serializer │ │ │ └── .git-find-me │ │ ├── EntityLookup │ │ └── entities.ser │ │ ├── Filter │ │ ├── ExtractStyleBlocks.php │ │ └── YouTube.php │ │ ├── Language │ │ └── messages │ │ │ └── en.php │ │ ├── Lexer │ │ └── PH5P.php │ │ ├── Printer.php │ │ └── Printer │ │ ├── CSSDefinition.php │ │ ├── ConfigForm.css │ │ ├── ConfigForm.js │ │ ├── ConfigForm.php │ │ └── HTMLDefinition.php ├── index.html ├── jpgraph │ ├── LICENSE.md │ ├── README.dotproject.md │ ├── VERSION │ └── src │ │ ├── README.md │ │ ├── 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 ├── overlib │ ├── Mini │ │ ├── overlib_anchor_mini.js │ │ ├── overlib_centerpopup_mini.js │ │ ├── overlib_crossframe_mini.js │ │ ├── overlib_csstyle_mini.js │ │ ├── overlib_debug_mini.js │ │ ├── overlib_exclusive_mini.js │ │ ├── overlib_followscroll_mini.js │ │ ├── overlib_hideform_mini.js │ │ ├── overlib_mini.js │ │ ├── overlib_setonoff_mini.js │ │ └── overlib_shadow_mini.js │ ├── makemini.pl │ ├── overlib.js │ ├── overlib_anchor.js │ ├── overlib_centerpopup.js │ ├── overlib_crossframe.js │ ├── overlib_cssstyle.js │ ├── overlib_debug.js │ ├── overlib_exclusive.js │ ├── overlib_followscroll.js │ ├── overlib_hideform.js │ ├── overlib_setonoff.js │ └── overlib_shadow.js ├── phpgacl │ ├── AUTHORS │ ├── CHANGELOG │ ├── COPYING.lib │ ├── CREDITS │ ├── Cache_Lite │ │ ├── Cache_Lite.php │ │ ├── Hashed_Cache_Lite.php │ │ └── LICENSE │ ├── FAQ │ ├── README │ ├── TODO │ ├── admin │ │ ├── about.php │ │ ├── acl_admin.php │ │ ├── acl_debug.php │ │ ├── acl_list.php │ │ ├── acl_test.php │ │ ├── admin.css │ │ ├── admin_functions.js │ │ ├── assign_group.php │ │ ├── edit_group.php │ │ ├── edit_object_sections.php │ │ ├── edit_objects.php │ │ ├── gacl_admin.inc.php │ │ ├── group_admin.php │ │ ├── images │ │ │ ├── bot-l.png │ │ │ ├── bot-r.png │ │ │ ├── div-l.png │ │ │ ├── div-r.png │ │ │ ├── logo.png │ │ │ ├── mid-l.png │ │ │ ├── mid-r.png │ │ │ ├── spacer.gif │ │ │ ├── tab-off-l.png │ │ │ ├── tab-off-r.png │ │ │ ├── tab-on-l.png │ │ │ ├── tab-on-r.png │ │ │ ├── top-l.png │ │ │ └── top-r.png │ │ ├── index.php │ │ ├── object_search.php │ │ ├── s.gif │ │ └── test.php │ ├── docs │ │ ├── manual.html │ │ ├── manual.pdf │ │ ├── manual.sxw │ │ ├── manual.txt │ │ ├── manual_html_7dced6ce.png │ │ ├── manual_html_m481ab4b3.png │ │ ├── manual_html_m48c2db5c.png │ │ ├── manual_html_m6a630ca2.png │ │ ├── manual_html_m770a5a15.png │ │ ├── phpgacl-db-schema.png │ │ └── phpgacl-db-schema.vsd │ ├── example.php │ ├── gacl.class.php │ ├── gacl_api.class.php │ ├── other_languages │ │ └── perl │ │ │ └── perlGACL-check-1.0.tar.gz │ ├── profiler.inc │ ├── schema.xml │ ├── setup.php │ ├── soap │ │ ├── clients │ │ │ ├── perl_client.pl │ │ │ ├── php_client.php │ │ │ └── python_client.py │ │ ├── nusoap.php │ │ └── server.php │ └── test_suite │ │ ├── acl_tests.php │ │ ├── phpunit │ │ ├── ChangeLog │ │ ├── README │ │ ├── phpunit.php │ │ ├── phpunit_test.php │ │ ├── runtests.php │ │ ├── runtests2.php │ │ └── stylesheet.css │ │ ├── random_acl_check.php │ │ ├── run.php │ │ ├── stress_test.php │ │ ├── styles.css │ │ └── unit_tests.php ├── quilljs │ ├── LICENSE │ ├── richedit.class.php │ ├── richedit.view.php │ └── src │ │ ├── examples │ │ ├── bubble.html │ │ ├── full.html │ │ └── snow.html │ │ ├── quill.bubble.css │ │ ├── quill.core.css │ │ ├── quill.core.js │ │ ├── quill.js │ │ ├── quill.min.js │ │ ├── quill.min.js.map │ │ └── quill.snow.css └── smarty │ ├── Config_File.class.php │ ├── Smarty.class.php │ ├── Smarty_Compiler.class.php │ ├── debug.tpl │ ├── plugins │ ├── block.strip.php │ ├── block.textformat.php │ ├── compiler.assign.php │ ├── function.assign.php │ ├── function.assign_debug_info.php │ ├── function.config_load.php │ ├── function.counter.php │ ├── function.cycle.php │ ├── function.debug.php │ ├── function.eval.php │ ├── function.fetch.php │ ├── function.html_checkboxes.php │ ├── function.html_image.php │ ├── function.html_options.php │ ├── function.html_radios.php │ ├── function.html_select_date.php │ ├── function.html_select_time.php │ ├── function.html_table.php │ ├── function.mailto.php │ ├── function.math.php │ ├── function.popup.php │ ├── function.popup_init.php │ ├── modifier.capitalize.php │ ├── modifier.cat.php │ ├── modifier.count_characters.php │ ├── modifier.count_paragraphs.php │ ├── modifier.count_sentences.php │ ├── modifier.count_words.php │ ├── modifier.date_format.php │ ├── modifier.debug_print_var.php │ ├── modifier.default.php │ ├── modifier.escape.php │ ├── modifier.indent.php │ ├── modifier.lower.php │ ├── modifier.nl2br.php │ ├── modifier.regex_replace.php │ ├── modifier.replace.php │ ├── modifier.spacify.php │ ├── modifier.string_format.php │ ├── modifier.strip.php │ ├── modifier.strip_tags.php │ ├── modifier.truncate.php │ ├── modifier.upper.php │ ├── modifier.wordwrap.php │ ├── outputfilter.trimwhitespace.php │ ├── shared.escape_special_chars.php │ └── shared.make_timestamp.php │ └── templates │ └── phpgacl │ ├── about.tpl │ ├── acl_admin.tpl │ ├── acl_admin_js.tpl │ ├── acl_debug.tpl │ ├── acl_list.tpl │ ├── acl_test.tpl │ ├── assign_group.tpl │ ├── debug.tpl │ ├── edit_group.tpl │ ├── edit_object_sections.tpl │ ├── edit_objects.tpl │ ├── footer.tpl │ ├── group_admin.tpl │ ├── header.tpl │ ├── navigation.tpl │ ├── object_search.tpl │ └── pager.tpl ├── locales ├── core.php ├── en │ ├── admin.inc │ ├── calendar.inc │ ├── common.inc │ ├── companies.inc │ ├── contacts.inc │ ├── departments.inc │ ├── files.inc │ ├── forums.inc │ ├── help.inc │ ├── history.inc │ ├── index.html │ ├── lang.php │ ├── links.inc │ ├── locales.php │ ├── projects.inc │ ├── public.inc │ ├── resources.inc │ ├── smartsearch.inc │ ├── styles.inc │ ├── system.inc │ ├── tasks.inc │ └── ticketsmith.inc └── index.html ├── misc ├── cvs2cl │ ├── README │ ├── cvs2cl.pl │ └── index.html ├── debug.php ├── holidays │ ├── fr │ └── uk ├── index.html ├── mime.types └── postnuke │ ├── README │ └── dplink │ ├── index.php │ ├── pnadmin.php │ ├── pninit.php │ ├── pnlang │ └── eng │ │ └── admin.php │ ├── pnuser.php │ └── pnversion.php ├── modules ├── admin │ ├── addedituser.php │ ├── admin.class.php │ ├── do_perms_aed.php │ ├── do_user_aed.php │ ├── do_user_transfer.php │ ├── do_userrole_aed.php │ ├── images │ │ ├── helix-setup-user.png │ │ ├── helix-setup-users.png │ │ ├── helix-setup-users2.png │ │ └── helix-setup-users3.png │ ├── index.html │ ├── index.php │ ├── viewuser.php │ ├── vw_active_usr.php │ ├── vw_inactive_usr.php │ ├── vw_usr.php │ ├── vw_usr_log.php │ ├── vw_usr_perms.php │ ├── vw_usr_roles.php │ ├── vw_usr_sessions.php │ └── vw_usr_transfer.php ├── calendar │ ├── addedit.php │ ├── calendar.class.php │ ├── clash.php │ ├── day_view.php │ ├── do_event_aed.php │ ├── images │ │ ├── event0.png │ │ ├── event1.png │ │ ├── event2.png │ │ ├── event3.png │ │ ├── event4.png │ │ ├── event5.png │ │ └── myevo-appointments.png │ ├── index.html │ ├── index.php │ ├── links_events.php │ ├── links_tasks.php │ ├── projects_tab.events.php │ ├── view.php │ ├── vw_day_events.php │ ├── vw_day_tasks.php │ └── week_view.php ├── companies │ ├── addedit.php │ ├── companies.class.php │ ├── do_company_aed.php │ ├── images │ │ └── handshake.png │ ├── index.html │ ├── index.php │ ├── view.php │ ├── vw_active.php │ ├── vw_archived.php │ ├── vw_companies.php │ ├── vw_contacts.php │ ├── vw_depts.php │ └── vw_users.php ├── contacts │ ├── addedit.php │ ├── contacts.class.php │ ├── csvexport.php │ ├── do_contact_aed.php │ ├── images │ │ └── monkeychat-48.png │ ├── index.html │ ├── index.php │ ├── select_contact_company.php │ ├── vcardexport.php │ ├── vcardimport.php │ └── view.php ├── departments │ ├── addedit.php │ ├── departments.class.php │ ├── do_dept_aed.php │ ├── index.html │ ├── index.php │ ├── view.php │ └── vw_contacts.php ├── files │ ├── addedit.php │ ├── addedit_folder.php │ ├── co.php │ ├── companies_tab.files.php │ ├── do_file_aed.php │ ├── do_file_co.php │ ├── do_files_bulk_aed.php │ ├── do_folder_aed.php │ ├── do_searchfiles.php │ ├── file_index_ignore.php │ ├── files.class.php │ ├── folders_table.php │ ├── functions.php │ ├── images │ │ ├── back.png │ │ ├── ci.png │ │ ├── co.png │ │ ├── down.png │ │ ├── duplicate.png │ │ ├── edit_add.png │ │ ├── filesaveas.png │ │ ├── folder5.png │ │ ├── folder5_small.png │ │ ├── folder_new.png │ │ ├── home.png │ │ ├── icons │ │ │ ├── ac3.png │ │ │ ├── aiff.png │ │ │ ├── application-certificate.png │ │ │ ├── application-x-executable.png │ │ │ ├── applix.png │ │ │ ├── arj.png │ │ │ ├── ascii.png │ │ │ ├── audio-x-generic.png │ │ │ ├── audio.png │ │ │ ├── binary.png │ │ │ ├── bmp.png │ │ │ ├── bz2.png │ │ │ ├── cbz.png │ │ │ ├── cdbo_list.png │ │ │ ├── cdimage.png │ │ │ ├── cdr.png │ │ │ ├── cdtrack.png │ │ │ ├── colorscm.png │ │ │ ├── deb.png │ │ │ ├── dia.png │ │ │ ├── documents.png │ │ │ ├── documents2.png │ │ │ ├── empty.png │ │ │ ├── encrypted.png │ │ │ ├── exec_wine.png │ │ │ ├── exec_wine1.png │ │ │ ├── file_locked.png │ │ │ ├── file_temporary.png │ │ │ ├── font-x-generic.png │ │ │ ├── font.png │ │ │ ├── font_truetype.png │ │ │ ├── ggnome-mime-application-x-class-file.png │ │ │ ├── gif.png │ │ │ ├── gnome-library.png │ │ │ ├── gnome-mime-application-magicpoint.png │ │ │ ├── gnome-mime-application-msword.png │ │ │ ├── gnome-mime-application-ogg.png │ │ │ ├── gnome-mime-application-par.png │ │ │ ├── gnome-mime-application-pdf.png │ │ │ ├── gnome-mime-application-pgp-encrypted.png │ │ │ ├── gnome-mime-application-pgp-keys.png │ │ │ ├── gnome-mime-application-pgp.png │ │ │ ├── gnome-mime-application-postscript.png │ │ │ ├── gnome-mime-application-rtf.png │ │ │ ├── gnome-mime-application-vnd.lotus-1-2-3.png │ │ │ ├── gnome-mime-application-vnd.ms-excel.png │ │ │ ├── gnome-mime-application-vnd.ms-powerpoint.png │ │ │ ├── gnome-mime-application-vnd.oasis.opendocument.chart.png │ │ │ ├── gnome-mime-application-vnd.oasis.opendocument.database.png │ │ │ ├── gnome-mime-application-vnd.oasis.opendocument.drawing.png │ │ │ ├── gnome-mime-application-vnd.oasis.opendocument.formula.png │ │ │ ├── gnome-mime-application-vnd.oasis.opendocument.graphics-template.png │ │ │ ├── gnome-mime-application-vnd.oasis.opendocument.image.png │ │ │ ├── gnome-mime-application-vnd.oasis.opendocument.presentation-template.png │ │ │ ├── gnome-mime-application-vnd.oasis.opendocument.presentation.png │ │ │ ├── gnome-mime-application-vnd.oasis.opendocument.spreadsheet-template.png │ │ │ ├── gnome-mime-application-vnd.oasis.opendocument.spreadsheet.png │ │ │ ├── gnome-mime-application-vnd.oasis.opendocument.text-template.png │ │ │ ├── gnome-mime-application-vnd.oasis.opendocument.text-web.png │ │ │ ├── gnome-mime-application-vnd.oasis.opendocument.text.png │ │ │ ├── gnome-mime-application-vnd.stardivision.calc.png │ │ │ ├── gnome-mime-application-vnd.stardivision.impress.png │ │ │ ├── gnome-mime-application-vnd.stardivision.writer.png │ │ │ ├── gnome-mime-application-vnd.sun.xml.calc.png │ │ │ ├── gnome-mime-application-vnd.sun.xml.draw.png │ │ │ ├── gnome-mime-application-vnd.sun.xml.impress.png │ │ │ ├── gnome-mime-application-vnd.sun.xml.writer.png │ │ │ ├── gnome-mime-application-vnd.sun.xml.writer.template.png │ │ │ ├── gnome-mime-application-wordperfect.png │ │ │ ├── gnome-mime-application-x-abiword.png │ │ │ ├── gnome-mime-application-x-applix-spreadsheet.png │ │ │ ├── gnome-mime-application-x-archive.png │ │ │ ├── gnome-mime-application-x-arj.png │ │ │ ├── gnome-mime-application-x-bittorrent.png │ │ │ ├── gnome-mime-application-x-bzip-compressed-tar.png │ │ │ ├── gnome-mime-application-x-bzip.png │ │ │ ├── gnome-mime-application-x-cd-image.png │ │ │ ├── gnome-mime-application-x-compress.png │ │ │ ├── gnome-mime-application-x-compressed-tar.png │ │ │ ├── gnome-mime-application-x-cpio-compressed.png │ │ │ ├── gnome-mime-application-x-cpio.png │ │ │ ├── gnome-mime-application-x-deb.png │ │ │ ├── gnome-mime-application-x-desktop.png │ │ │ ├── gnome-mime-application-x-dia-diagram.png │ │ │ ├── gnome-mime-application-x-extension-nfo.png │ │ │ ├── gnome-mime-application-x-extension-par2.png │ │ │ ├── gnome-mime-application-x-gnumeric.png │ │ │ ├── gnome-mime-application-x-gzip.png │ │ │ ├── gnome-mime-application-x-ipod-firmware.png │ │ │ ├── gnome-mime-application-x-jar.png │ │ │ ├── gnome-mime-application-x-java-byte-code.png │ │ │ ├── gnome-mime-application-x-lha.png │ │ │ ├── gnome-mime-application-x-lhz.png │ │ │ ├── gnome-mime-application-x-par2.png │ │ │ ├── gnome-mime-application-x-perl.png │ │ │ ├── gnome-mime-application-x-php.png │ │ │ ├── gnome-mime-application-x-python-bytecode.png │ │ │ ├── gnome-mime-application-x-python.png │ │ │ ├── gnome-mime-application-x-rar.png │ │ │ ├── gnome-mime-application-x-rpm.png │ │ │ ├── gnome-mime-application-x-sharedlib.png │ │ │ ├── gnome-mime-application-x-shellscript.png │ │ │ ├── gnome-mime-application-x-tar.png │ │ │ ├── gnome-mime-application-x-zip-compressed.png │ │ │ ├── gnome-mime-application-x-zip.png │ │ │ ├── gnome-mime-application-zip.png │ │ │ ├── gnome-mime-application.png │ │ │ ├── gnome-mime-audio-ac3.png │ │ │ ├── gnome-mime-audio-basic.png │ │ │ ├── gnome-mime-audio-midi.png │ │ │ ├── gnome-mime-audio-x-aiff.png │ │ │ ├── gnome-mime-audio-x-it.png │ │ │ ├── gnome-mime-audio-x-midi.png │ │ │ ├── gnome-mime-audio-x-mod.png │ │ │ ├── gnome-mime-audio-x-mp3.png │ │ │ ├── gnome-mime-audio-x-s3m.png │ │ │ ├── gnome-mime-audio-x-stm.png │ │ │ ├── gnome-mime-audio-x-ulaw.png │ │ │ ├── gnome-mime-audio-x-voc.png │ │ │ ├── gnome-mime-audio-x-wav.png │ │ │ ├── gnome-mime-audio-x-xi.png │ │ │ ├── gnome-mime-audio-x-xm.png │ │ │ ├── gnome-mime-audio.png │ │ │ ├── gnome-mime-image-bmp.png │ │ │ ├── gnome-mime-image-gif.png │ │ │ ├── gnome-mime-image-ief.png │ │ │ ├── gnome-mime-image-jpeg.png │ │ │ ├── gnome-mime-image-png.png │ │ │ ├── gnome-mime-image-svg+xml.png │ │ │ ├── gnome-mime-image-tiff.png │ │ │ ├── gnome-mime-image-x-psd.png │ │ │ ├── gnome-mime-image-x-rgb.png │ │ │ ├── gnome-mime-image-x-tga.png │ │ │ ├── gnome-mime-image-x-xbitmap.png │ │ │ ├── gnome-mime-image-x-xcf.png │ │ │ ├── gnome-mime-image-x-xfig.png │ │ │ ├── gnome-mime-image-x-xpixmap.png │ │ │ ├── gnome-mime-image.png │ │ │ ├── gnome-mime-text-css.png │ │ │ ├── gnome-mime-text-html.png │ │ │ ├── gnome-mime-text-plain.png │ │ │ ├── gnome-mime-text-x-authors.png │ │ │ ├── gnome-mime-text-x-c++src.png │ │ │ ├── gnome-mime-text-x-c-header.png │ │ │ ├── gnome-mime-text-x-c.png │ │ │ ├── gnome-mime-text-x-chdr.png │ │ │ ├── gnome-mime-text-x-credits.png │ │ │ ├── gnome-mime-text-x-csh.png │ │ │ ├── gnome-mime-text-x-csharp.png │ │ │ ├── gnome-mime-text-x-csrc.png │ │ │ ├── gnome-mime-text-x-haskell.png │ │ │ ├── gnome-mime-text-x-install.png │ │ │ ├── gnome-mime-text-x-java.png │ │ │ ├── gnome-mime-text-x-literate-haskell.png │ │ │ ├── gnome-mime-text-x-objcsrc.png │ │ │ ├── gnome-mime-text-x-python.png │ │ │ ├── gnome-mime-text-x-readme.png │ │ │ ├── gnome-mime-text-x-scheme.png │ │ │ ├── gnome-mime-text-x-tex.png │ │ │ ├── gnome-mime-text-x-txt.png │ │ │ ├── gnome-mime-text-xml.png │ │ │ ├── gnome-mime-text.png │ │ │ ├── gnome-mime-video-mpeg.png │ │ │ ├── gnome-mime-video-quicktime.png │ │ │ ├── gnome-mime-video-x-ms-asf.png │ │ │ ├── gnome-mime-video-x-ms-wmv.png │ │ │ ├── gnome-mime-video-x-msvideo.png │ │ │ ├── gnome-mime-video.png │ │ │ ├── gnome-mime-x-directory-smb-server.png │ │ │ ├── gnome-mime-x-directory-smb-share.png │ │ │ ├── gnome-package.png │ │ │ ├── gz.png │ │ │ ├── html.png │ │ │ ├── ief.png │ │ │ ├── image-x-generic.png │ │ │ ├── image.png │ │ │ ├── image2.png │ │ │ ├── info.png │ │ │ ├── jpeg.png │ │ │ ├── jpg.png │ │ │ ├── lha.png │ │ │ ├── lhz.png │ │ │ ├── message.png │ │ │ ├── midi.png │ │ │ ├── mime-colorset.png │ │ │ ├── mime-empty.png │ │ │ ├── mime-help.png │ │ │ ├── mime-postscript.png │ │ │ ├── mime_ascii.png │ │ │ ├── mime_cdr.png │ │ │ ├── mime_colorset.png │ │ │ ├── mime_empty.png │ │ │ ├── mime_koffice.png │ │ │ ├── misc.png │ │ │ ├── mod.png │ │ │ ├── mp3.png │ │ │ ├── package-x-generic.png │ │ │ ├── par.png │ │ │ ├── pdf.png │ │ │ ├── php.png │ │ │ ├── pix.png │ │ │ ├── png.png │ │ │ ├── ps.png │ │ │ ├── psd.png │ │ │ ├── quicktime.png │ │ │ ├── rar.png │ │ │ ├── recycled.png │ │ │ ├── rgb.png │ │ │ ├── rpm.png │ │ │ ├── s3m.png │ │ │ ├── schedule.png │ │ │ ├── shellscript.png │ │ │ ├── sound.png │ │ │ ├── source_c.png │ │ │ ├── source_cpp.png │ │ │ ├── source_h.png │ │ │ ├── source_java.png │ │ │ ├── source_php.png │ │ │ ├── source_py.png │ │ │ ├── source_pyc.png │ │ │ ├── spreadsheet.png │ │ │ ├── stm.png │ │ │ ├── svg.png │ │ │ ├── tar.png │ │ │ ├── template_source.png │ │ │ ├── tex.png │ │ │ ├── text-html.png │ │ │ ├── text-x-generic-template.png │ │ │ ├── text-x-generic.png │ │ │ ├── text-x-script.png │ │ │ ├── text.png │ │ │ ├── tga.png │ │ │ ├── tgz.png │ │ │ ├── tiff.png │ │ │ ├── txt.png │ │ │ ├── ulaw.png │ │ │ ├── unknown.png │ │ │ ├── vcalendar.png │ │ │ ├── video-x-generic.png │ │ │ ├── video.png │ │ │ ├── vmlinuz.png │ │ │ ├── voc.png │ │ │ ├── wav.png │ │ │ ├── x-office-address-book.png │ │ │ ├── x-office-calendar.png │ │ │ ├── x-office-document.png │ │ │ ├── x-office-presentation.png │ │ │ ├── x-office-spreadsheet.png │ │ │ ├── xcf.png │ │ │ ├── xfig.png │ │ │ ├── xi.png │ │ │ ├── xm.png │ │ │ └── zip.png │ │ ├── kedit.png │ │ ├── remove.png │ │ └── up.png │ ├── index.html │ ├── index.php │ ├── index_table.php │ ├── projects_tab.files.php │ ├── tasks_tab.files.php │ └── tasks_tab.view.files.php ├── forums │ ├── addedit.php │ ├── configure.php │ ├── do_forum_aed.php │ ├── do_post_aed.php │ ├── do_watch_forum.php │ ├── forums.class.php │ ├── images │ │ └── support.png │ ├── index.html │ ├── index.php │ ├── post_message.php │ ├── setup.php │ ├── view_messages.php │ ├── view_pdf.php │ ├── view_topics.php │ └── viewer.php ├── help │ ├── en │ │ ├── help.toc.hlp │ │ └── index.html │ ├── index.html │ └── index.php ├── history │ ├── addedit.php │ ├── images │ │ └── stock_book_blue_48.png │ ├── index.html │ ├── index.php │ ├── projects_tab.history.php │ └── setup.php ├── index.html ├── install │ └── images │ │ └── control-center.png ├── links │ ├── addedit.php │ ├── do_link_aed.php │ ├── images │ │ └── folder5.png │ ├── index.html │ ├── index.php │ ├── index_table.php │ ├── links.class.php │ ├── projects_tab.links.php │ ├── setup.php │ └── tasks_tab.links.php ├── projectdesigner │ ├── .cvsignore │ ├── config.php │ ├── configure.php │ ├── do_addtasks_aed.php │ ├── do_projectdesigner_aed.php │ ├── do_task_bulk_aed.php │ ├── gantt.php │ ├── images │ │ ├── add.png │ │ ├── down.png │ │ ├── filesave.png │ │ ├── printer.png │ │ ├── projectdesigner.jpg │ │ ├── projectdesigner.png │ │ ├── remove.png │ │ └── up.png │ ├── index.js │ ├── index.php │ ├── jscalendar │ │ ├── ChangeLog │ │ ├── README │ │ ├── bugtest-hidden-selects.html │ │ ├── calendar-blue.css │ │ ├── calendar-blue2.css │ │ ├── calendar-brown.css │ │ ├── calendar-green.css │ │ ├── calendar-setup.js │ │ ├── calendar-setup_stripped.js │ │ ├── calendar-system.css │ │ ├── calendar-tas.css │ │ ├── calendar-win2k-1.css │ │ ├── calendar-win2k-2.css │ │ ├── calendar-win2k-cold-1.css │ │ ├── calendar-win2k-cold-2.css │ │ ├── calendar.js │ │ ├── calendar.php │ │ ├── calendar_stripped.js │ │ ├── dayinfo.html │ │ ├── doc │ │ │ ├── html │ │ │ │ ├── field-button.jpg │ │ │ │ ├── reference-Z-S.css │ │ │ │ ├── reference.css │ │ │ │ └── reference.html │ │ │ └── reference.pdf │ │ ├── img.gif │ │ ├── index.html │ │ ├── lang │ │ │ ├── calendar-af.js │ │ │ ├── calendar-al.js │ │ │ ├── calendar-bg.js │ │ │ ├── calendar-big5-utf8.js │ │ │ ├── calendar-big5.js │ │ │ ├── calendar-br.js │ │ │ ├── calendar-ca.js │ │ │ ├── calendar-cs-utf8.js │ │ │ ├── calendar-cs-win.js │ │ │ ├── calendar-da.js │ │ │ ├── calendar-de.js │ │ │ ├── calendar-du.js │ │ │ ├── calendar-el.js │ │ │ ├── calendar-en.js │ │ │ ├── calendar-es.js │ │ │ ├── calendar-fi.js │ │ │ ├── calendar-fr.js │ │ │ ├── calendar-he-utf8.js │ │ │ ├── calendar-hr-utf8.js │ │ │ ├── calendar-hr.js │ │ │ ├── calendar-hu.js │ │ │ ├── calendar-it.js │ │ │ ├── calendar-jp.js │ │ │ ├── calendar-ko-utf8.js │ │ │ ├── calendar-ko.js │ │ │ ├── calendar-lt-utf8.js │ │ │ ├── calendar-lt.js │ │ │ ├── calendar-lv.js │ │ │ ├── calendar-nl.js │ │ │ ├── calendar-no.js │ │ │ ├── calendar-pl-utf8.js │ │ │ ├── calendar-pl.js │ │ │ ├── calendar-pt.js │ │ │ ├── calendar-ro.js │ │ │ ├── calendar-ru.js │ │ │ ├── calendar-ru_win_.js │ │ │ ├── calendar-si.js │ │ │ ├── calendar-sk.js │ │ │ ├── calendar-sp.js │ │ │ ├── calendar-sv.js │ │ │ ├── calendar-tr.js │ │ │ ├── calendar-zh.js │ │ │ └── cn_utf8.js │ │ ├── menuarrow.gif │ │ ├── menuarrow2.gif │ │ ├── multiple-dates.html │ │ ├── release-notes.html │ │ └── skins │ │ │ └── aqua │ │ │ ├── active-bg.gif │ │ │ ├── dark-bg.gif │ │ │ ├── hover-bg.gif │ │ │ ├── menuarrow.gif │ │ │ ├── normal-bg.gif │ │ │ ├── rowhover-bg.gif │ │ │ ├── status-bg.gif │ │ │ ├── theme.css │ │ │ ├── title-bg.gif │ │ │ └── today-bg.gif │ ├── locales │ │ ├── en.inc │ │ └── pt.inc │ ├── printproject.php │ ├── projectdesigner.class.php │ ├── setup.php │ ├── sponsor.txt │ ├── vw_actions.php │ ├── vw_addtasks.php │ ├── vw_files.php │ ├── vw_gantt.php │ ├── vw_project.php │ ├── vw_projecttask.php │ └── vw_tasks.php ├── projects │ ├── .vw_logs.php.swp │ ├── addedit.php │ ├── admin_tab.viewuser.projects.php │ ├── admin_tab.viewuser.projects_gantt.php │ ├── calendar_tab.projects.php │ ├── companies_tab.view.projects_gantt.php │ ├── departments_tab.view.projects.php │ ├── departments_tab.view.projects_gantt.php │ ├── do_project_aed.php │ ├── gantt.php │ ├── gantt2.php │ ├── images │ │ └── applet3-48.png │ ├── index.html │ ├── index.php │ ├── projects.class.php │ ├── reports.php │ ├── reports │ │ ├── allocateduserhours.en.txt │ │ ├── allocateduserhours.php │ │ ├── completed.en.txt │ │ ├── completed.php │ │ ├── overall.en.txt │ │ ├── overall.php │ │ ├── overdue.en.txt │ │ ├── overdue.php │ │ ├── stats.en.txt │ │ ├── stats.php │ │ ├── taskenddate.en.txt │ │ ├── taskenddate.php │ │ ├── tasklist.en.txt │ │ ├── tasklist.php │ │ ├── tasklogs.en.txt │ │ ├── tasklogs.php │ │ ├── tasksperuser.en.txt │ │ ├── tasksperuser.php │ │ ├── upcoming.en.txt │ │ ├── upcoming.php │ │ ├── userperformance.en.txt │ │ └── userperformance.php │ ├── view.php │ ├── viewgantt.php │ ├── vw_files.php │ ├── vw_forums.php │ ├── vw_idx_active.php │ ├── vw_idx_archived.php │ ├── vw_idx_complete.php │ ├── vw_idx_proposed.php │ └── vw_logs.php ├── public │ ├── access_denied.php │ ├── calendar.php │ ├── chpwd.php │ ├── color_selector.php │ ├── contact_selector.php │ ├── date_format.php │ ├── index.html │ ├── index.php │ └── selector.php ├── resources │ ├── addedit.js │ ├── addedit.php │ ├── do_resource_aed.php │ ├── images │ │ └── helpdesk.png │ ├── index.php │ ├── resources.class.php │ ├── setup.php │ ├── tabs.js │ ├── tasks_dosql.addedit.php │ ├── tasks_tab.addedit.other_resources.php │ ├── tasks_tab.view.other_resources.php │ ├── view.js │ ├── view.php │ └── vw_resources.php ├── risks │ ├── addedit.php │ ├── backbutton.php │ ├── checklist_risks_model.php │ ├── controller_wbs_items.class.php │ ├── do_checklist_analysis.php │ ├── do_risks_aed.php │ ├── do_risks_management_plan.php │ ├── ear.js │ ├── images │ │ ├── risks.png │ │ ├── stock_delete-16.png │ │ ├── stock_edit-16.png │ │ ├── stock_new_small.png │ │ └── view_icon.gif │ ├── index.php │ ├── index_table.php │ ├── locale.php │ ├── locales │ │ ├── en.inc │ │ └── pt_br.inc │ ├── projects_tab.risks.php │ ├── risk_management_plan.php │ ├── risks.class.php │ ├── risks.js │ ├── risks_controlling.php │ ├── risks_management_plan.class.php │ ├── setup.php │ ├── view.php │ ├── vw_lessons_learned_list.php │ ├── vw_near_term_responses_list.php │ ├── vw_strategys_list.php │ ├── vw_watchlist.php │ └── wbs_item.class.php ├── scope_and_schedule │ ├── activities_mdp.class.php │ ├── controller_activity_mdp.class.php │ ├── css │ │ ├── images │ │ │ ├── ui-icons_444444_256x240.png │ │ │ ├── ui-icons_555555_256x240.png │ │ │ ├── ui-icons_777620_256x240.png │ │ │ ├── ui-icons_777777_256x240.png │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ └── jquery-ui.css │ ├── do_activity_deletion.php │ ├── do_add_user_to_task.php │ ├── do_delete_user_to_task.php │ ├── do_move_activity.php │ ├── do_move_activity_to_wbs.php │ ├── do_new_activity.php │ ├── do_project_activity_add_dependency.php │ ├── do_project_activity_exclude_dependency.php │ ├── do_update_task.php │ ├── do_wbs_dictionary.php │ ├── do_wbs_item_aed.php │ ├── do_wbs_item_deletion.php │ ├── do_wbs_item_move.php │ ├── images │ │ ├── add_button-512.png │ │ ├── add_button_icon.png │ │ ├── add_green.png │ │ ├── applet-48.png │ │ ├── folder-512.png │ │ ├── reorder_icon-500.png │ │ ├── reorder_icon.png │ │ ├── save_icon.png │ │ ├── trash-icon.png │ │ └── work_package_icon.png │ ├── index.php │ ├── js │ │ ├── alertify │ │ │ ├── alertify.css │ │ │ └── alertify.js │ │ ├── jquery-3.2.1.min.js │ │ ├── jquery-datepicker-customizations.js │ │ ├── jquery-ui-contextmenu │ │ │ ├── .editorconfig │ │ │ ├── .gitattributes │ │ │ ├── .github │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ └── ISSUE_TEMPLATE.md │ │ │ ├── .gitignore │ │ │ ├── .jscsrc │ │ │ ├── .jshintrc │ │ │ ├── .travis.yml │ │ │ ├── CHANGELOG.md │ │ │ ├── Gruntfile.coffee │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── bin │ │ │ │ └── sync-pages.sh │ │ │ ├── bower.json │ │ │ ├── demo │ │ │ │ ├── application_firefox.gif │ │ │ │ ├── demo.css │ │ │ │ ├── index-1-10.html │ │ │ │ ├── index-1-11.html │ │ │ │ ├── index-1-12.html │ │ │ │ ├── index.html │ │ │ │ ├── index_local.html │ │ │ │ ├── sample.png │ │ │ │ ├── sample_1.png │ │ │ │ ├── teaser-1.11.png │ │ │ │ ├── teaser.png │ │ │ │ └── test-aim.html │ │ │ ├── jquery.ui-contextmenu.js │ │ │ ├── jquery.ui-contextmenu.min.js │ │ │ ├── jquery.ui-contextmenu.min.js.map │ │ │ ├── lib │ │ │ │ ├── Super-Theme-Switcher │ │ │ │ │ ├── README.md │ │ │ │ │ ├── images │ │ │ │ │ │ ├── buttonbg.png │ │ │ │ │ │ ├── icon_color_arrow.gif │ │ │ │ │ │ ├── menuhoverbg.png │ │ │ │ │ │ ├── theme_90_base.png │ │ │ │ │ │ ├── theme_90_black_matte.png │ │ │ │ │ │ ├── theme_90_black_tie.png │ │ │ │ │ │ ├── theme_90_blitzer.png │ │ │ │ │ │ ├── theme_90_cupertino.png │ │ │ │ │ │ ├── theme_90_dark_hive.png │ │ │ │ │ │ ├── theme_90_dot_luv.png │ │ │ │ │ │ ├── theme_90_eggplant.png │ │ │ │ │ │ ├── theme_90_excite_bike.png │ │ │ │ │ │ ├── theme_90_flick.png │ │ │ │ │ │ ├── theme_90_hot_sneaks.png │ │ │ │ │ │ ├── theme_90_humanity.png │ │ │ │ │ │ ├── theme_90_le_frog.png │ │ │ │ │ │ ├── theme_90_mint_choco.png │ │ │ │ │ │ ├── theme_90_overcast.png │ │ │ │ │ │ ├── theme_90_pepper_grinder.png │ │ │ │ │ │ ├── theme_90_smoothness.png │ │ │ │ │ │ ├── theme_90_south_street.png │ │ │ │ │ │ ├── theme_90_start_menu.png │ │ │ │ │ │ ├── theme_90_sunny.png │ │ │ │ │ │ ├── theme_90_swanky_purse.png │ │ │ │ │ │ ├── theme_90_trontastic.png │ │ │ │ │ │ ├── theme_90_ui_dark.png │ │ │ │ │ │ ├── theme_90_ui_light.png │ │ │ │ │ │ └── theme_90_windoze.png │ │ │ │ │ ├── jquery.themeswitcher.js │ │ │ │ │ ├── jquery.themeswitcher.min.js │ │ │ │ │ └── sample.htm │ │ │ │ ├── jquery-taphold │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── taphold.js │ │ │ │ ├── qunit-composite.css │ │ │ │ └── qunit-composite.js │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── index.html │ │ │ │ ├── server.js │ │ │ │ ├── test-jquery-1.11-ui-1.11.html │ │ │ │ ├── test-jquery-1.12-ui-1.12.html │ │ │ │ ├── test-jquery-1.9-ui-1.10.html │ │ │ │ ├── test-jquery-3-ui-1.12.html │ │ │ │ └── tests.js │ │ ├── jquery-ui.js │ │ ├── jquery.easing.1.3.js │ │ └── wbs-functions.js │ ├── locales │ │ ├── en_US.inc │ │ └── pt_br.inc │ ├── projects_activities_sequencing.php │ ├── projects_tab.scope_schedule.php │ ├── setup.php │ ├── task_user_assigment.class.php │ ├── view_project_wbs.php │ └── wbs_item.class.php ├── smartsearch │ ├── images │ │ └── kfind.png │ ├── index.html │ ├── index.php │ ├── searchobjects │ │ ├── companies.inc.php │ │ ├── contacts.inc.php │ │ ├── departments.inc.php │ │ ├── events.inc.php │ │ ├── files.inc.php │ │ ├── files_content.inc.php │ │ ├── forum_messages.inc.php │ │ ├── forums.inc.php │ │ ├── projects.inc.php │ │ ├── task_log.inc.php │ │ ├── tasks.inc.php │ │ ├── tickets.inc.php │ │ └── users.inc.php │ ├── setup.php │ └── smartsearch.class.php ├── system │ ├── addeditpref.php │ ├── billingcode.php │ ├── contacts_ldap.php │ ├── custom_field_addedit.php │ ├── custom_field_editor.php │ ├── do_billingcode_aed.php │ ├── do_custom_field_aed.php │ ├── do_preference_aed.php │ ├── do_systemconfig_aed.php │ ├── domodsql.php │ ├── images │ │ ├── 48_my_computer.png │ │ ├── control-center.png │ │ ├── index.html │ │ ├── main-settings.png │ │ ├── myevo-weather.png │ │ ├── power-management.png │ │ └── rdf2.png │ ├── index.html │ ├── index.php │ ├── roles │ │ ├── do_perms_aed.php │ │ ├── do_role_aed.php │ │ ├── index.html │ │ ├── index.php │ │ ├── roles.class.php │ │ ├── viewrole.php │ │ └── vw_role_perms.php │ ├── sendmail.php │ ├── syskeys │ │ ├── do_syskey_aed.php │ │ ├── do_sysval_aed.php │ │ ├── index.html │ │ ├── index.php │ │ ├── keys.php │ │ └── syskeys.class.php │ ├── system.class.php │ ├── systemconfig.php │ ├── systemconfig_help.php │ ├── translate.php │ ├── translate_save.php │ └── viewmods.php ├── tasks │ ├── addedit.js │ ├── addedit.php │ ├── ae_dates.php │ ├── ae_depend.php │ ├── ae_desc.php │ ├── ae_resource.php │ ├── do_task_aed.php │ ├── do_task_assign_aed.php │ ├── do_updatetask.php │ ├── gantt.php │ ├── images │ │ ├── add.png │ │ ├── applet-48.png │ │ ├── exchange.png │ │ └── remove.png │ ├── index.html │ ├── index.php │ ├── listtasks.php │ ├── organize.php │ ├── organizer.php │ ├── tasks.class.php │ ├── tasks.php │ ├── tasksperuser.php │ ├── tasksperuser_sub.php │ ├── todo.php │ ├── todo_gantt_sub.php │ ├── todo_tasks_sub.php │ ├── view.js │ ├── view.php │ ├── viewgantt.php │ ├── vw_log_update.php │ └── vw_logs.php └── ticketsmith │ ├── CHANGELOG │ ├── CREDITS │ ├── INSTALL │ ├── LICENSE │ ├── README │ ├── TODO │ ├── UPGRADE │ ├── attach.php │ ├── comment.php │ ├── common.inc.php │ ├── config.inc.php │ ├── do_ticket_aed.php │ ├── followup.php │ ├── images │ ├── gconf-app-icon.png │ ├── ltwt.gif │ ├── posticon.gif │ └── rtwt.gif │ ├── index.html │ ├── index.php │ ├── pdf.php │ ├── post_ticket.php │ ├── reattachticket.php │ ├── search.php │ ├── style.css │ └── view.php ├── queuescanner.php ├── robots.txt └── style ├── classic ├── css │ ├── main.css │ └── overrides.css ├── footer.php ├── header.php ├── images │ ├── bground.gif │ ├── favicon.ico │ └── index.html ├── index.html ├── login.php └── overrides.php ├── default ├── css │ ├── main.css │ └── overrides.css ├── footer.php ├── header.php ├── images │ ├── dp_icon.gif │ ├── favicon.ico │ ├── index.html │ ├── obj │ │ ├── index.html │ │ └── tick.gif │ ├── tabBg.png │ ├── tabLeft.png │ ├── tabRight.png │ ├── tabSelectedBg.png │ ├── tabSelectedLeft.png │ ├── tabSelectedRight.png │ └── titlegrad.jpg ├── index.html ├── login.php ├── lostpass.php └── overrides.php ├── dp-grey-theme ├── README.TXT ├── css │ ├── main.css │ └── overrides.css ├── footer.php ├── header.php ├── images │ ├── bar_top_Selectedleft.gif │ ├── bar_top_Selectedmiddle.gif │ ├── bar_top_Selectedright.gif │ ├── bar_top_left.gif │ ├── bar_top_middle.gif │ ├── bar_top_right.gif │ ├── dp_icon.gif │ ├── favicon.ico │ ├── index.html │ ├── lines_title_bar.gif │ ├── lines_title_shadow.gif │ ├── obj │ │ ├── index.html │ │ └── tick.gif │ └── titlegrad.jpg ├── index.html ├── login.php ├── lostpass.php ├── overrides.php ├── tabBg.png ├── tabLeft.png ├── tabRight.png ├── tabSelectedBg.png ├── tabSelectedLeft.png └── tabSelectedRight.png ├── index.html └── nord ├── css ├── main.css └── overrides.css ├── footer.php ├── header.php ├── images ├── dotProject-github-card.psd ├── dotProject.svg ├── favicons │ ├── README.md │ ├── android-chrome-144x144.png │ ├── android-chrome-192x192.png │ ├── android-chrome-256x256.png │ ├── android-chrome-36x36.png │ ├── android-chrome-384x384.png │ ├── android-chrome-48x48.png │ ├── android-chrome-512x512.png │ ├── android-chrome-72x72.png │ ├── android-chrome-96x96.png │ ├── apple-touch-icon-precomposed.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── html_code.html │ ├── mstile-144x144.png │ ├── mstile-150x150.png │ ├── mstile-310x310.png │ ├── mstile-70x70.png │ ├── safari-pinned-tab.svg │ └── site.webmanifest ├── index.html ├── obj │ ├── dotProject-github-card.psd │ ├── index.html │ └── tick.gif ├── tabBg.png ├── tabLeft.png ├── tabRight.png ├── tabSelectedBg.png ├── tabSelectedLeft.png ├── tabSelectedRight.png └── titlegrad.jpg ├── index.html ├── login.php ├── lostpass.php └── overrides.php /.docker-compose/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM phpdockerio/php74-fpm 2 | 3 | RUN apt update && \ 4 | apt install \ 5 | php7.4-mysql 6 | -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | DB_NAME=dotproject 2 | DB_USER=dotproject 3 | DB_PASSWORD=somepass 4 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "browser": true 4 | }, 5 | "extends": "eslint:recommended", 6 | "parserOptions": { 7 | "ecmaVersion": 12, 8 | "sourceType": "module" 9 | }, 10 | "rules": { 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /classes/index.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /db/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/upgrade_latest.sql: -------------------------------------------------------------------------------- 1 | # 2 | # $Id$ 3 | # 4 | # DO NOT USE THIS SCRIPT DIRECTLY - USE THE INSTALLER INSTEAD. 5 | # 6 | # All entries must be date stamped in the correct format. 7 | # 8 | 9 | -------------------------------------------------------------------------------- /db/upgrade_project_color_identifier.sql: -------------------------------------------------------------------------------- 1 | # DO NOT USE THIS SCRIPT DIRECTLY - USE THE INSTALLER INSTEAD. 2 | 3 | ALTER TABLE projects MODIFY project_color_identifier VARCHAR(7); -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/favicon.ico -------------------------------------------------------------------------------- /files/.cvsignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /files/.htaccess: -------------------------------------------------------------------------------- 1 | Options -All 2 | deny from all 3 | -------------------------------------------------------------------------------- /files/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/temp/.cvsignore: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /files/temp/.htaccess: -------------------------------------------------------------------------------- 1 | Options -All 2 | Order allow,deny 3 | Allow from all 4 | -------------------------------------------------------------------------------- /files/temp/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /functions/admin_func.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /functions/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/arrow-down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/arrow-down.gif -------------------------------------------------------------------------------- /images/arrow-right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/arrow-right.gif -------------------------------------------------------------------------------- /images/arrow-up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/arrow-up.gif -------------------------------------------------------------------------------- /images/block-end-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/block-end-16.png -------------------------------------------------------------------------------- /images/block-start-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/block-start-16.png -------------------------------------------------------------------------------- /images/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/calendar.gif -------------------------------------------------------------------------------- /images/clip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/clip.png -------------------------------------------------------------------------------- /images/colorchart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/colorchart.gif -------------------------------------------------------------------------------- /images/corner-dots.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/corner-dots.gif -------------------------------------------------------------------------------- /images/googlemaps.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/googlemaps.gif -------------------------------------------------------------------------------- /images/helpdesk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/helpdesk.png -------------------------------------------------------------------------------- /images/icons/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/icons/1.gif -------------------------------------------------------------------------------- /images/icons/admin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/icons/admin.gif -------------------------------------------------------------------------------- /images/icons/birthday.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/icons/birthday.png -------------------------------------------------------------------------------- /images/icons/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/icons/calendar.gif -------------------------------------------------------------------------------- /images/icons/collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/icons/collapse.gif -------------------------------------------------------------------------------- /images/icons/companies.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/icons/companies.gif -------------------------------------------------------------------------------- /images/icons/customfields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/icons/customfields.png -------------------------------------------------------------------------------- /images/icons/dialog-warning5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/icons/dialog-warning5.png -------------------------------------------------------------------------------- /images/icons/dp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/icons/dp.gif -------------------------------------------------------------------------------- /images/icons/expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/icons/expand.gif -------------------------------------------------------------------------------- /images/icons/graph.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/icons/graph.gif -------------------------------------------------------------------------------- /images/icons/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/icons/low.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/icons/low.gif -------------------------------------------------------------------------------- /images/icons/mail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/icons/mail.gif -------------------------------------------------------------------------------- /images/icons/milestone.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/icons/milestone.gif -------------------------------------------------------------------------------- /images/icons/pencil.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/icons/pencil.gif -------------------------------------------------------------------------------- /images/icons/pin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/icons/pin.gif -------------------------------------------------------------------------------- /images/icons/posticon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/icons/posticon.gif -------------------------------------------------------------------------------- /images/icons/priority_down_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/icons/priority_down_1.gif -------------------------------------------------------------------------------- /images/icons/priority_down_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/icons/priority_down_2.gif -------------------------------------------------------------------------------- /images/icons/priority_up_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/icons/priority_up_1.gif -------------------------------------------------------------------------------- /images/icons/priority_up_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/icons/priority_up_2.gif -------------------------------------------------------------------------------- /images/icons/rc-gui-status-downgr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/icons/rc-gui-status-downgr.png -------------------------------------------------------------------------------- /images/icons/shim.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/icons/shim.gif -------------------------------------------------------------------------------- /images/icons/stock_attach-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/icons/stock_attach-16.png -------------------------------------------------------------------------------- /images/icons/stock_cancel-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/icons/stock_cancel-16.png -------------------------------------------------------------------------------- /images/icons/stock_delete-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/icons/stock_delete-16.png -------------------------------------------------------------------------------- /images/icons/stock_edit-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/icons/stock_edit-16.png -------------------------------------------------------------------------------- /images/icons/stock_help-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/icons/stock_help-16.png -------------------------------------------------------------------------------- /images/icons/stock_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/icons/stock_new.png -------------------------------------------------------------------------------- /images/icons/stock_new_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/icons/stock_new_small.png -------------------------------------------------------------------------------- /images/icons/stock_ok-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/icons/stock_ok-16.png -------------------------------------------------------------------------------- /images/icons/stock_print-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/icons/stock_print-16.png -------------------------------------------------------------------------------- /images/icons/stock_trash_full-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/icons/stock_trash_full-16.png -------------------------------------------------------------------------------- /images/icons/ticketsmith.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/icons/ticketsmith.gif -------------------------------------------------------------------------------- /images/icons/trash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/icons/trash.gif -------------------------------------------------------------------------------- /images/icons/unpin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/icons/unpin.gif -------------------------------------------------------------------------------- /images/icons/updown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/icons/updown.gif -------------------------------------------------------------------------------- /images/icons/users.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/icons/users.gif -------------------------------------------------------------------------------- /images/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/log-error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/log-error.gif -------------------------------------------------------------------------------- /images/log-info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/log-info.gif -------------------------------------------------------------------------------- /images/log-notice.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/log-notice.gif -------------------------------------------------------------------------------- /images/logo/dProject-vector-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/logo/dProject-vector-logo.png -------------------------------------------------------------------------------- /images/logo/dotProject Vector Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/logo/dotProject Vector Logo.png -------------------------------------------------------------------------------- /images/logo/dotProject Vector Logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/logo/dotProject Vector Logo@2x.png -------------------------------------------------------------------------------- /images/logo/dotProject Vector Logo@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/logo/dotProject Vector Logo@4x.png -------------------------------------------------------------------------------- /images/logo/dotProject-vector-logo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/logo/dotProject-vector-logo.ai -------------------------------------------------------------------------------- /images/logo/dotProject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/logo/dotProject.png -------------------------------------------------------------------------------- /images/logo/dotProject@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/logo/dotProject@2x.png -------------------------------------------------------------------------------- /images/logo/dotProject@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/logo/dotProject@4x.png -------------------------------------------------------------------------------- /images/logo/dotproject_logo_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/logo/dotproject_logo_large.png -------------------------------------------------------------------------------- /images/navfirst.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/navfirst.gif -------------------------------------------------------------------------------- /images/navlast.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/navlast.gif -------------------------------------------------------------------------------- /images/navleft.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/navleft.gif -------------------------------------------------------------------------------- /images/navright.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/navright.gif -------------------------------------------------------------------------------- /images/next.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/next.gif -------------------------------------------------------------------------------- /images/obj/alert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/obj/alert.gif -------------------------------------------------------------------------------- /images/obj/contact.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/obj/contact.gif -------------------------------------------------------------------------------- /images/obj/dotgreen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/obj/dotgreen.gif -------------------------------------------------------------------------------- /images/obj/dotgrey.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/obj/dotgrey.gif -------------------------------------------------------------------------------- /images/obj/dotredanim.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/obj/dotredanim.gif -------------------------------------------------------------------------------- /images/obj/dotyellowanim.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/obj/dotyellowanim.gif -------------------------------------------------------------------------------- /images/obj/email.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/obj/email.gif -------------------------------------------------------------------------------- /images/obj/error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/obj/error.gif -------------------------------------------------------------------------------- /images/obj/event-attendees.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/obj/event-attendees.gif -------------------------------------------------------------------------------- /images/obj/event.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/obj/event.gif -------------------------------------------------------------------------------- /images/obj/folder-shared.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/obj/folder-shared.gif -------------------------------------------------------------------------------- /images/obj/folder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/obj/folder.gif -------------------------------------------------------------------------------- /images/obj/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/obj/help.gif -------------------------------------------------------------------------------- /images/obj/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/obj/lock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/obj/lock.gif -------------------------------------------------------------------------------- /images/obj/palette.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/obj/palette.gif -------------------------------------------------------------------------------- /images/obj/phone.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/obj/phone.gif -------------------------------------------------------------------------------- /images/obj/warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/obj/warning.gif -------------------------------------------------------------------------------- /images/prev.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/prev.gif -------------------------------------------------------------------------------- /images/shim.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/shim.gif -------------------------------------------------------------------------------- /images/smartfolder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/smartfolder.gif -------------------------------------------------------------------------------- /images/trash_small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/trash_small.gif -------------------------------------------------------------------------------- /images/view.week.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/view.week.gif -------------------------------------------------------------------------------- /images/week.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotproject/dotProject/aca232be48501c59ecb48d289ea5896c8d079a9b/images/week.gif -------------------------------------------------------------------------------- /includes/.cvsignore: -------------------------------------------------------------------------------- 1 | .cvsignore 2 | config.php 3 | -------------------------------------------------------------------------------- /includes/.htaccess: -------------------------------------------------------------------------------- 1 |