├── .gitignore ├── README.md ├── atkbrowsertools.inc ├── atkmenutools.inc ├── atknodetools.inc ├── atktools.inc ├── atktreetools.inc ├── attributes ├── ckeditor │ ├── CHANGES.md │ ├── LICENSE.md │ ├── README.md │ ├── adapters │ │ └── jquery.js │ ├── build-config.js │ ├── ckeditor.js │ ├── config.js │ ├── config_original.js │ ├── contents.css │ ├── lang │ │ ├── af.js │ │ ├── ar.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.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 │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ ├── plugins │ │ ├── a11yhelp │ │ │ └── dialogs │ │ │ │ ├── a11yhelp.js │ │ │ │ └── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── mn.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── tt.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ ├── about │ │ │ └── dialogs │ │ │ │ ├── about.js │ │ │ │ ├── hidpi │ │ │ │ └── logo_ckeditor.png │ │ │ │ └── logo_ckeditor.png │ │ ├── clipboard │ │ │ └── dialogs │ │ │ │ └── paste.js │ │ ├── dialog │ │ │ └── dialogDefinition.js │ │ ├── icons.png │ │ ├── icons_hidpi.png │ │ ├── image │ │ │ ├── dialogs │ │ │ │ └── image.js │ │ │ └── images │ │ │ │ └── noimage.png │ │ ├── link │ │ │ ├── dialogs │ │ │ │ ├── anchor.js │ │ │ │ └── link.js │ │ │ └── images │ │ │ │ ├── anchor.png │ │ │ │ └── hidpi │ │ │ │ └── anchor.png │ │ ├── magicline │ │ │ └── images │ │ │ │ ├── hidpi │ │ │ │ ├── icon-rtl.png │ │ │ │ └── icon.png │ │ │ │ ├── icon-rtl.png │ │ │ │ └── icon.png │ │ ├── pastefromword │ │ │ └── filter │ │ │ │ └── default.js │ │ ├── scayt │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ └── dialogs │ │ │ │ ├── options.js │ │ │ │ └── toolbar.css │ │ ├── specialchar │ │ │ └── dialogs │ │ │ │ ├── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── tt.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ │ └── specialchar.js │ │ ├── table │ │ │ └── dialogs │ │ │ │ └── table.js │ │ ├── tabletools │ │ │ └── dialogs │ │ │ │ └── tableCell.js │ │ └── wsc │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ └── dialogs │ │ │ ├── ciframe.html │ │ │ ├── tmpFrameset.html │ │ │ ├── wsc.css │ │ │ ├── wsc.js │ │ │ └── wsc_ie.js │ ├── skins │ │ └── moono │ │ │ ├── dialog.css │ │ │ ├── dialog_ie.css │ │ │ ├── dialog_ie7.css │ │ │ ├── dialog_ie8.css │ │ │ ├── dialog_iequirks.css │ │ │ ├── editor.css │ │ │ ├── editor_gecko.css │ │ │ ├── editor_ie.css │ │ │ ├── editor_ie7.css │ │ │ ├── editor_ie8.css │ │ │ ├── editor_iequirks.css │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── images │ │ │ ├── arrow.png │ │ │ ├── close.png │ │ │ ├── hidpi │ │ │ │ ├── close.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ └── refresh.png │ │ │ ├── lock-open.png │ │ │ ├── lock.png │ │ │ └── refresh.png │ │ │ └── readme.md │ └── styles.js ├── class.atkaggregatedcolumn.inc ├── class.atkagreementattribute.inc ├── class.atkattribute.inc ├── class.atkblobattribute.inc ├── class.atkboolattribute.inc ├── class.atkcalculatorattribute.inc ├── class.atkcaptchaattribute.inc ├── class.atkckeditorattribute.inc ├── class.atkcolorpickerattribute.inc ├── class.atkcountryattribute.inc ├── class.atkcreatedbyattribute.inc ├── class.atkcreatestampattribute.inc ├── class.atkcurrencyattribute.inc ├── class.atkdateattribute.inc ├── class.atkdatetime2attribute.inc ├── class.atkdatetimeattribute.inc ├── class.atkdocumentattribute.inc ├── class.atkdummyattribute.inc ├── class.atkdurationattribute.inc ├── class.atkemailattribute.inc ├── class.atkexpressionattribute.inc ├── class.atkfckattribute.inc ├── class.atkfieldset.inc ├── class.atkfileattribute.inc ├── class.atkfilewriterattribute.inc ├── class.atkflagattribute.inc ├── class.atkformatattribute.inc ├── class.atkfuzzysearchattribute.inc ├── class.atkhiddenattribute.inc ├── class.atkhtmlattribute.inc ├── class.atkipattribute.inc ├── class.atklistattribute.inc ├── class.atklivetextpreview.inc ├── class.atkmlattribute.inc ├── class.atkmlfckattribute.inc ├── class.atkmlhtmlattribute.inc ├── class.atkmlnumberattribute.inc ├── class.atkmlselectorattribute.inc ├── class.atkmltextattribute.inc ├── class.atkmlwrapper.inc ├── class.atkmultiplefileattribute.inc ├── class.atkmultiselectattribute.inc ├── class.atknumberattribute.inc ├── class.atkparserattribute.inc ├── class.atkpasswordattribute.inc ├── class.atkprofileattribute.inc ├── class.atkradioattribute.inc ├── class.atkradiodetailsattribute.inc ├── class.atkrowcounter.inc ├── class.atkstateattribute.inc ├── class.atktabbedpane.inc ├── class.atktagattribute.inc ├── class.atktextattribute.inc ├── class.atktimeattribute.inc ├── class.atktimezoneattribute.inc ├── class.atktoolbar.inc ├── class.atkupdatedbyattribute.inc ├── class.atkupdatestampattribute.inc ├── class.atkurlattribute.inc ├── class.atkweekdayattribute.inc ├── class.atkwysiwygattribute.inc ├── fck │ ├── _documentation.html │ ├── _upgrade.html │ ├── _whatsnew.html │ ├── _whatsnew_history.html │ ├── 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 │ │ │ │ │ └── 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_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_scayt.html │ │ │ ├── fck_scayt │ │ │ │ └── scayt_dialog.css │ │ │ ├── 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 │ │ ├── dtd │ │ │ ├── fck_dtd_test.html │ │ │ ├── fck_xhtml10strict.js │ │ │ └── fck_xhtml10transitional.js │ │ ├── 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 │ │ │ │ ├── asp │ │ │ │ ├── basexml.asp │ │ │ │ ├── class_upload.asp │ │ │ │ ├── commands.asp │ │ │ │ ├── config.asp │ │ │ │ ├── connector.asp │ │ │ │ ├── io.asp │ │ │ │ ├── upload.asp │ │ │ │ └── util.asp │ │ │ │ ├── aspx │ │ │ │ ├── config.ascx │ │ │ │ ├── connector.aspx │ │ │ │ └── upload.aspx │ │ │ │ ├── cfm │ │ │ │ ├── ImageObject.cfc │ │ │ │ ├── cf5_connector.cfm │ │ │ │ ├── cf5_upload.cfm │ │ │ │ ├── cf_basexml.cfm │ │ │ │ ├── cf_commands.cfm │ │ │ │ ├── cf_connector.cfm │ │ │ │ ├── cf_io.cfm │ │ │ │ ├── cf_upload.cfm │ │ │ │ ├── cf_util.cfm │ │ │ │ ├── config.cfm │ │ │ │ ├── connector.cfm │ │ │ │ ├── image.cfc │ │ │ │ └── upload.cfm │ │ │ │ ├── lasso │ │ │ │ ├── config.lasso │ │ │ │ ├── connector.lasso │ │ │ │ └── upload.lasso │ │ │ │ ├── perl │ │ │ │ ├── basexml.pl │ │ │ │ ├── commands.pl │ │ │ │ ├── config.pl │ │ │ │ ├── connector.cgi │ │ │ │ ├── io.pl │ │ │ │ ├── upload.cgi │ │ │ │ ├── upload_fck.pl │ │ │ │ └── util.pl │ │ │ │ ├── php │ │ │ │ ├── basexml.php │ │ │ │ ├── commands.php │ │ │ │ ├── config.php │ │ │ │ ├── connector.php │ │ │ │ ├── io.php │ │ │ │ ├── phpcompat.php │ │ │ │ ├── upload.php │ │ │ │ └── util.php │ │ │ │ ├── py │ │ │ │ ├── config.py │ │ │ │ ├── connector.py │ │ │ │ ├── fckcommands.py │ │ │ │ ├── fckconnector.py │ │ │ │ ├── fckoutput.py │ │ │ │ ├── fckutil.py │ │ │ │ ├── htaccess.txt │ │ │ │ ├── upload.py │ │ │ │ ├── wsgi.py │ │ │ │ └── zope.py │ │ │ │ ├── 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 │ │ │ ├── _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 │ │ │ ├── is.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 │ │ └── wsc │ │ │ ├── ciframe.html │ │ │ ├── tmpFrameset.html │ │ │ └── w.html │ ├── fckconfig.js │ ├── fckconfig_original.js │ ├── fckeditor.afp │ ├── fckeditor.asp │ ├── fckeditor.cfc │ ├── fckeditor.cfm │ ├── fckeditor.js │ ├── fckeditor.lasso │ ├── fckeditor.php │ ├── fckeditor.pl │ ├── fckeditor.py │ ├── fckeditor_php4.php │ ├── fckeditor_php5.php │ ├── fckpackager.xml │ ├── fckstyles.xml │ ├── fcktemplates.xml │ ├── fckutils.cfm │ └── license.txt └── wysiwyg │ ├── images │ ├── absmode.gif │ ├── abspos.gif │ ├── additem.gif │ ├── align_center_3.gif │ ├── align_left_3.gif │ ├── align_right_3.gif │ ├── anchor_2.gif │ ├── background_2.gif │ ├── bgcolor.gif │ ├── bgcolor_focus.gif │ ├── bold.gif │ ├── bold_focus.gif │ ├── borders.gif │ ├── break.gif │ ├── bullist.gif │ ├── bullist_focus.gif │ ├── center.gif │ ├── center_focus.gif │ ├── copy.gif │ ├── copy_focus.gif │ ├── curs_3.gif │ ├── cut.gif │ ├── cut_focus.gif │ ├── deindent.gif │ ├── deindent_focus.gif │ ├── delete.gif │ ├── delete_cell.gif │ ├── delete_cell_focus.gif │ ├── delete_col.gif │ ├── delete_col_focus.gif │ ├── delete_row.gif │ ├── delete_row_focus.gif │ ├── details.gif │ ├── doc_bgcolor.gif │ ├── doc_bgcolor_focus.gif │ ├── end.gif │ ├── enter_3.gif │ ├── estil_3.gif │ ├── fgcolor.gif │ ├── fgcolor_focus.gif │ ├── find.gif │ ├── find_focus.gif │ ├── fullscrn.gif │ ├── hr.gif │ ├── hr_3.gif │ ├── hr_focus.gif │ ├── image.gif │ ├── image_focus.gif │ ├── img_2.gif │ ├── indent_3.gif │ ├── inindent.gif │ ├── inindent_focus.gif │ ├── insert_cell.gif │ ├── insert_cell_focus.gif │ ├── insert_col.gif │ ├── insert_col_focus.gif │ ├── insert_row.gif │ ├── insert_row_focus.gif │ ├── insert_table.gif │ ├── insert_table_focus.gif │ ├── italic.gif │ ├── italic_focus.gif │ ├── left.gif │ ├── left_focus.gif │ ├── link.gif │ ├── link_2.gif │ ├── link_focus.gif │ ├── lock.gif │ ├── merge_cell.gif │ ├── merge_cell_focus.gif │ ├── nbsp_3.gif │ ├── neg_3.gif │ ├── new_doc_2.gif │ ├── newdoc.gif │ ├── newdoc_focus.gif │ ├── newproj.gif │ ├── numb_list_3.gif │ ├── numlist.gif │ ├── numlist_focus.gif │ ├── open.gif │ ├── open_focus.gif │ ├── paleta_2.gif │ ├── paste.gif │ ├── paste_focus.gif │ ├── preview_2.gif │ ├── print.gif │ ├── project.gif │ ├── props.gif │ ├── reddot.gif │ ├── redo.gif │ ├── redo_focus.gif │ ├── right.gif │ ├── right_focus.gif │ ├── save.gif │ ├── save_2.gif │ ├── save_focus.gif │ ├── saveall.gif │ ├── saveas.gif │ ├── saveas_focus.gif │ ├── separator.gif │ ├── set_estil_3.gif │ ├── snapgrid.gif │ ├── split_cell.gif │ ├── split_cell_focus.gif │ ├── start.gif │ ├── subry_3.gif │ ├── table_2.gif │ ├── tasklist.gif │ ├── tipus_font_3.gif │ ├── title_2.gif │ ├── trans.gif │ ├── under.gif │ ├── under_focus.gif │ ├── undo.gif │ ├── undo_focus.gif │ ├── unindent_3.gif │ └── unord_list_3.gif │ └── property_accessor.php ├── cache ├── class.atkcache.inc ├── class.atkcache_apc.inc ├── class.atkcache_eaccelerator.inc ├── class.atkcache_file.inc ├── class.atkcache_memcache.inc ├── class.atkcache_var.inc ├── class.atkcache_xcache.inc ├── class.atkcache_zp_disk.inc ├── class.atkcache_zp_output.inc └── class.atkcache_zp_shm.inc ├── class.atkconfig.inc ├── class.atkcontroller.inc ├── class.atkdatanode.inc ├── class.atkfileeditor.inc ├── class.atklanguage.inc ├── class.atkmetanode.inc ├── class.atknode.inc ├── class.atknodevalidator.inc ├── class.atktreenode.inc ├── class.layout.inc ├── console └── class.atkconsolecontroller.inc ├── datagrid ├── class.atkdatagrid.inc ├── class.atkdgcomponent.inc ├── class.atkdgeditcontrol.inc ├── class.atkdgevent.inc ├── class.atkdgindex.inc ├── class.atkdglimit.inc ├── class.atkdglist.inc ├── class.atkdglistener.inc ├── class.atkdgnorecordsfound.inc ├── class.atkdgpaginator.inc ├── class.atkdgrenderer.inc └── class.atkdgsummary.inc ├── datatypes ├── class.atkarraydt.inc ├── class.atkdatatype.inc ├── class.atkstringdt.inc └── class.atktimedt.inc ├── db ├── class.atkclusterdb.inc ├── class.atkclusterddl.inc ├── class.atkclusterquery.inc ├── class.atkdb.inc ├── class.atkdb2db.inc ├── class.atkdb2ddl.inc ├── class.atkdb2query.inc ├── class.atkddl.inc ├── class.atki5db.inc ├── class.atki5ddl.inc ├── class.atki5query.inc ├── class.atkmssqldb.inc ├── class.atkmssqlddl.inc ├── class.atkmssqlquery.inc ├── class.atkmysqldb.inc ├── class.atkmysqlddl.inc ├── class.atkmysqlidb.inc ├── class.atkmysqliddl.inc ├── class.atkmysqliquery.inc ├── class.atkmysqlquery.inc ├── class.atkoci805db.inc ├── class.atkoci805query.inc ├── class.atkoci8db.inc ├── class.atkoci8ddl.inc ├── class.atkoci8query.inc ├── class.atkoci9db.inc ├── class.atkoci9ddl.inc ├── class.atkoci9query.inc ├── class.atkpgsqldb.inc ├── class.atkpgsqlddl.inc ├── class.atkpgsqlquery.inc ├── class.atkquery.inc ├── languages │ ├── mysql_de.lng │ ├── mysql_en.lng │ ├── mysql_nl.lng │ ├── oracle_en.lng │ ├── oracle_nl.lng │ ├── postgresql_en.lng │ └── postgresql_nl.lng └── statement │ ├── class.atkcompatstatement.inc │ ├── class.atkmysqlistatement.inc │ ├── class.atkstatement.inc │ ├── class.atkstatementexception.inc │ ├── class.atkstatementiterator.inc │ └── class.atkstatementparser.inc ├── defaultconfig.inc.php ├── doc ├── AUTHORS ├── CHANGES ├── COPYRIGHT ├── FCK-CHANGES └── LICENSE ├── document ├── class.atkdocumentwriter.inc ├── class.atkdocxwriter.inc ├── class.atkopendocumentwriter.inc └── tbsooo │ ├── tbs_class.php │ └── tbsooo_class.php ├── errors ├── class.atkerrorhandlerbase.inc ├── class.atkmailerrorhandler.inc └── class.atkzendplatformerrorhandler.inc ├── ext ├── captcha │ ├── captcha_fonts │ │ ├── Vera.ttf │ │ ├── VeraBI.ttf │ │ ├── VeraBd.ttf │ │ ├── VeraIt.ttf │ │ ├── VeraMoBI.ttf │ │ ├── VeraMoBd.ttf │ │ ├── VeraMoIt.ttf │ │ ├── VeraMono.ttf │ │ ├── VeraSe.ttf │ │ └── VeraSeBd.ttf │ ├── img │ │ ├── captcha.jpg │ │ └── captcha.jpg.php │ └── php-captcha.inc.php ├── json │ └── json.php ├── phpmailer │ ├── ChangeLog.txt │ ├── LICENSE │ ├── README │ ├── class.phpmailer.php │ ├── class.smtp.php │ ├── docs │ │ ├── extending.html │ │ ├── faq.html │ │ └── timeoutfix.diff │ ├── language │ │ ├── phpmailer.lang-br.php │ │ ├── phpmailer.lang-ca.php │ │ ├── phpmailer.lang-cz.php │ │ ├── phpmailer.lang-de.php │ │ ├── phpmailer.lang-dk.php │ │ ├── phpmailer.lang-en.php │ │ ├── phpmailer.lang-es.php │ │ ├── phpmailer.lang-fi.php │ │ ├── phpmailer.lang-fo.php │ │ ├── phpmailer.lang-fr.php │ │ ├── phpmailer.lang-hu.php │ │ ├── phpmailer.lang-it.php │ │ ├── phpmailer.lang-ja.php │ │ ├── phpmailer.lang-nl.php │ │ ├── phpmailer.lang-no.php │ │ ├── phpmailer.lang-pl.php │ │ ├── phpmailer.lang-ro.php │ │ ├── phpmailer.lang-ru.php │ │ ├── phpmailer.lang-se.php │ │ └── phpmailer.lang-tr.php │ ├── phpdoc │ │ ├── PHPMailer │ │ │ ├── PHPMailer.html │ │ │ ├── SMTP.html │ │ │ ├── _class_phpmailer_php.html │ │ │ └── _class_smtp_php.html │ │ ├── blank.html │ │ ├── classtrees_PHPMailer.html │ │ ├── elementindex.html │ │ ├── elementindex_PHPMailer.html │ │ ├── errors.html │ │ ├── index.html │ │ ├── li_PHPMailer.html │ │ ├── media │ │ │ ├── banner.css │ │ │ └── stylesheet.css │ │ └── packages.html │ └── test │ │ ├── phpmailer_test.php │ │ ├── phpunit.php │ │ └── test.png └── spyc │ ├── README │ ├── spyc.php │ └── spyc.php5 ├── filters ├── class.atkdistinctfilter.inc ├── class.atkfilter.inc └── class.atkgroupbyfilter.inc ├── fixture ├── class.atkabstractfixtureloader.inc ├── class.atkfixturemanager.inc ├── class.atkphpfixtureloader.inc └── class.atkyamlfixtureloader.inc ├── front ├── class.atkfrontcontroller.inc └── class.atkfrontcontrollerbridge.inc ├── handlers ├── class.atkabstractsearchhandler.inc ├── class.atkactionhandler.inc ├── class.atkaddhandler.inc ├── class.atkaddorcopyhandler.inc ├── class.atkadminhandler.inc ├── class.atkattributeedithandler.inc ├── class.atkcopyhandler.inc ├── class.atkdeletehandler.inc ├── class.atkdocumenthandler.inc ├── class.atkeditcopyhandler.inc ├── class.atkedithandler.inc ├── class.atkexporthandler.inc ├── class.atkfeedbackhandler.inc ├── class.atkimporthandler.inc ├── class.atkmultiselecthandler.inc ├── class.atkmultiupdatehandler.inc ├── class.atksavehandler.inc ├── class.atksearchhandler.inc ├── class.atkselecthandler.inc ├── class.atksmartsearchhandler.inc ├── class.atkupdatehandler.inc ├── class.atkvieweditbase.inc ├── class.atkviewhandler.inc └── class.atkxmlhandler.inc ├── images ├── arrow.gif ├── dummy.gif ├── lock.gif ├── lock_expired.gif ├── lock_head.gif ├── minus.gif ├── plus.gif ├── select_color_off.gif ├── select_color_on.gif ├── spinner.gif └── up-down.gif ├── include ├── autoload.inc ├── basics.inc ├── compatibility.inc ├── configs.inc ├── debugging.inc ├── errorhandler.inc ├── globals.inc ├── initial.inc └── security.inc ├── interface ├── class.atkserver.inc ├── interface.atkserverinterface.inc └── soap │ └── class.atksoapserver.inc ├── javascript ├── atk_tabs.js ├── atkajaxfocus.js ├── atkbusy.js ├── calendar │ ├── calendar-runner.js │ ├── calendar.js │ └── lang │ │ ├── calendar-bp.js │ │ ├── calendar-br.js │ │ ├── calendar-ca.js │ │ ├── calendar-cs-win.js │ │ ├── calendar-da.js │ │ ├── calendar-de.js │ │ ├── calendar-du.js │ │ ├── calendar-el.js │ │ ├── calendar-en.js │ │ ├── calendar-es.js │ │ ├── calendar-fr.js │ │ ├── calendar-it.js │ │ ├── calendar-nl.js │ │ ├── calendar-no.js │ │ ├── calendar-pl.js │ │ ├── calendar-pt.js │ │ ├── calendar-ro.js │ │ ├── calendar-sk.js │ │ ├── calendar-sp.js │ │ ├── calendar-sv.js │ │ └── calendar-tr.js ├── class.atkattribute.js ├── class.atkattributeedithandler.js ├── class.atkdatagrid.js ├── class.atkdateattribute.js ├── class.atkdebug.js ├── class.atkdialog.js ├── class.atkextendableshuttlerelation.js ├── class.atkform.js ├── class.atkmanytomanyselectrelation.js ├── class.atkmanytoonerelation.js ├── class.atkmultilanguage.js.php ├── class.atkonetomanyrelation.js ├── class.atkprofileattribute.js.php ├── class.atkradiodetailsattribute.js ├── class.atkshuttlerelation.js ├── class.atksmartsearchhandler.js ├── class.atktabbedpane.js ├── class.atktagattribute.js ├── class.atktoolbar.js ├── class.atktools.js ├── class.atkunloadhelper.js ├── class.atkvisualhtmlattribute.js ├── class.atkwysiwygattribute.js ├── colorpicker.js ├── crossbrowser.js ├── dhtml_formtools.js ├── dhtml_tabs.js.php ├── dropdown_menu.js ├── formclear.js ├── formfocus.js ├── formselect.js ├── formsubmit.js ├── jscookmenu │ ├── JSCookMenu.js │ ├── effect.js │ └── theme.js ├── launcher.js ├── menuload.js ├── newwindow.js ├── outlook.js ├── overlib │ ├── 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 ├── overlibmws │ ├── BabelFish.js │ ├── ajaxcontentmws.js │ ├── arrow.gif │ ├── calendarmws.js │ ├── calendarmws_lang.js │ ├── cornerBL.gif │ ├── cornerBR.gif │ ├── cornerTL.gif │ ├── cornerTR.gif │ ├── edgeB.gif │ ├── edgeL.gif │ ├── edgeR.gif │ ├── edgeT.gif │ ├── exit.gif │ ├── flower.gif │ ├── iframecontentmws.js │ ├── license.html │ ├── objectcontentmws.js │ ├── oval.gif │ ├── overlibCompat.js │ ├── overlibConfig.txt │ ├── overlibmws.js │ ├── overlibmws_bubble.js │ ├── overlibmws_crossframe.js │ ├── overlibmws_debug.js │ ├── overlibmws_draggable.js │ ├── overlibmws_exclusive.js │ ├── overlibmws_filter.js │ ├── overlibmws_function.js │ ├── overlibmws_hide.js │ ├── overlibmws_iframe.js │ ├── overlibmws_overtwo.js │ ├── overlibmws_print.js │ ├── overlibmws_regCore.js │ ├── overlibmws_scroll.js │ ├── overlibmws_shadow.js │ ├── overlibmwslogo.gif │ ├── print.gif │ ├── pushpin.gif │ ├── quotation.gif │ ├── semitrans.gif │ ├── showCalendar.gif │ ├── sprintf.js │ └── square.gif ├── popup.js ├── prototype-ext.js ├── prototype-ui-ext.js ├── prototype-ui │ └── window │ │ ├── themes │ │ ├── shadow │ │ │ ├── drop_shadow.css │ │ │ ├── drop_shadow │ │ │ │ ├── e.png │ │ │ │ ├── n.png │ │ │ │ ├── ne.png │ │ │ │ ├── nw.png │ │ │ │ ├── s.png │ │ │ │ ├── se.png │ │ │ │ ├── sw.png │ │ │ │ └── w.png │ │ │ ├── leopard.css │ │ │ ├── leopard │ │ │ │ ├── e.png │ │ │ │ ├── n.png │ │ │ │ ├── ne.png │ │ │ │ ├── nw.png │ │ │ │ ├── s.png │ │ │ │ ├── se.png │ │ │ │ ├── sw.png │ │ │ │ └── w.png │ │ │ ├── mac_shadow.css │ │ │ └── mac_shadow │ │ │ │ ├── e.png │ │ │ │ ├── n.png │ │ │ │ ├── ne.png │ │ │ │ ├── nw.png │ │ │ │ ├── s.png │ │ │ │ ├── se.png │ │ │ │ ├── sw.png │ │ │ │ └── w.png │ │ └── window │ │ │ ├── alphacube.css │ │ │ ├── alphacube │ │ │ ├── buttons.gif │ │ │ ├── corners_bottom.gif │ │ │ ├── corners_top.gif │ │ │ └── sizer.gif │ │ │ ├── black_hud.css │ │ │ ├── black_hud │ │ │ ├── bottom.png │ │ │ ├── button_over.png │ │ │ ├── button_unactive.png │ │ │ ├── content.png │ │ │ └── top.png │ │ │ ├── leopard.css │ │ │ ├── leopard │ │ │ ├── bottom.gif │ │ │ ├── bottom_unactive.gif │ │ │ ├── button_unactive.gif │ │ │ ├── buttons.gif │ │ │ ├── buttons_over.gif │ │ │ ├── top.gif │ │ │ └── top_unactive.gif │ │ │ ├── lighting.css │ │ │ ├── lighting │ │ │ ├── background_buttons.gif │ │ │ ├── buttons-blue.gif │ │ │ ├── corners_bottom-blue.gif │ │ │ ├── corners_top-blue.gif │ │ │ └── sizer-blue.gif │ │ │ ├── mac_os_x.css │ │ │ ├── mac_os_x │ │ │ ├── bottom.gif │ │ │ ├── bottom_unactive.gif │ │ │ ├── button_unactive.gif │ │ │ ├── buttons.gif │ │ │ ├── buttons_over.gif │ │ │ ├── top.gif │ │ │ └── top_unactive.gif │ │ │ ├── vista.css │ │ │ ├── vista │ │ │ ├── border.gif │ │ │ ├── bottom.gif │ │ │ ├── buttons.gif │ │ │ ├── t.png │ │ │ └── top.gif │ │ │ ├── window.css │ │ │ └── window │ │ │ ├── bottom.gif │ │ │ ├── bottom_unactive.gif │ │ │ ├── button_unactive.gif │ │ │ ├── buttons.gif │ │ │ ├── buttons_over.gif │ │ │ ├── top.gif │ │ │ └── top_unactive.gif │ │ ├── window.js │ │ └── window.packed.js ├── prototype │ └── prototype.js ├── recordlist.js ├── scriptaculous-ext.js ├── scriptaculous │ ├── builder.js │ ├── controls.js │ ├── dragdrop.js │ ├── effects.js │ ├── scriptaculous.js │ ├── slider.js │ ├── sound.js │ └── unittest.js ├── tools.js ├── window │ ├── debug.js │ ├── extended_debug.js │ ├── themes │ │ ├── alert.css │ │ ├── alert │ │ │ ├── bottom.gif │ │ │ ├── bottom_left.gif │ │ │ ├── bottom_right.gif │ │ │ ├── left.gif │ │ │ ├── overlay.png │ │ │ ├── progress.gif │ │ │ ├── right.gif │ │ │ ├── top.gif │ │ │ ├── top_left.gif │ │ │ └── top_right.gif │ │ ├── alert_lite.css │ │ ├── alphacube.css │ │ ├── alphacube │ │ │ ├── bottom-left-c.gif │ │ │ ├── bottom-middle.gif │ │ │ ├── bottom-right-c.gif │ │ │ ├── button-close-focus.gif │ │ │ ├── button-max-focus.gif │ │ │ ├── button-min-focus.gif │ │ │ ├── frame-left.gif │ │ │ ├── frame-right.gif │ │ │ ├── left-top.gif │ │ │ ├── right-top.gif │ │ │ └── top-middle.gif │ │ ├── behavior.htc │ │ ├── darkX.css │ │ ├── darkX │ │ │ ├── button-close-focused.png │ │ │ ├── button-maximize-focused.png │ │ │ ├── button-minimize-focused.png │ │ │ ├── frame-bottom-left-focused.png │ │ │ ├── frame-bottom-mid-focused.png │ │ │ ├── frame-bottom-right-focused.png │ │ │ ├── frame-left-focused.png │ │ │ ├── frame-right-focused.png │ │ │ ├── titlebar-left-focused.png │ │ │ ├── titlebar-mid-focused.png │ │ │ └── titlebar-right-focused.png │ │ ├── debug.css │ │ ├── default.css │ │ ├── default │ │ │ ├── bottom_left.gif │ │ │ ├── bottom_mid.gif │ │ │ ├── bottom_right.gif │ │ │ ├── bottom_right_resize.gif │ │ │ ├── center_left.gif │ │ │ ├── center_right.gif │ │ │ ├── clear.gif │ │ │ ├── close.gif │ │ │ ├── inspect.gif │ │ │ ├── maximize.gif │ │ │ ├── minimize.gif │ │ │ ├── overlay.png │ │ │ ├── resize.gif │ │ │ ├── sizer.gif │ │ │ ├── top_left.gif │ │ │ ├── top_mid.gif │ │ │ └── top_right.gif │ │ ├── iefix │ │ │ ├── blank.gif │ │ │ ├── iepngfix.css │ │ │ └── iepngfix.htc │ │ ├── lighting.css │ │ ├── lighting │ │ │ ├── background_buttons.gif │ │ │ ├── bottom-left-blue.png │ │ │ ├── bottom-left-darkblue.png │ │ │ ├── bottom-left-green.png │ │ │ ├── bottom-left-grey.png │ │ │ ├── bottom-middle-blue.png │ │ │ ├── bottom-middle-darkblue.png │ │ │ ├── bottom-middle-green.png │ │ │ ├── bottom-middle-grey.png │ │ │ ├── bottom-right-blue.png │ │ │ ├── bottom-right-darkblue.png │ │ │ ├── bottom-right-green.png │ │ │ ├── bottom-right-grey.png │ │ │ ├── button-close-blue.png │ │ │ ├── button-close-darkblue.png │ │ │ ├── button-close-green.png │ │ │ ├── button-close-grey.png │ │ │ ├── button-maximize-blue.png │ │ │ ├── button-maximize-darkblue.png │ │ │ ├── button-maximize-green.png │ │ │ ├── button-maximize-grey.png │ │ │ ├── button-minimize-blue.png │ │ │ ├── button-minimize-darkblue.png │ │ │ ├── button-minimize-green.png │ │ │ ├── button-minimize-grey.png │ │ │ ├── left-blue.png │ │ │ ├── left-darkblue.png │ │ │ ├── left-green.png │ │ │ ├── left-grey.png │ │ │ ├── pngbehavior.htc │ │ │ ├── right-blue.png │ │ │ ├── right-darkblue.png │ │ │ ├── right-green.png │ │ │ ├── right-grey.png │ │ │ ├── spinner.gif │ │ │ ├── top-left-blue.png │ │ │ ├── top-left-darkblue.png │ │ │ ├── top-left-green.png │ │ │ ├── top-left-grey.png │ │ │ ├── top-middle-blue.png │ │ │ ├── top-middle-darkblue.png │ │ │ ├── top-middle-green.png │ │ │ ├── top-middle-grey.png │ │ │ ├── top-right-blue.png │ │ │ ├── top-right-darkblue.png │ │ │ ├── top-right-green.png │ │ │ └── top-right-grey.png │ │ ├── mac_os_x.css │ │ ├── mac_os_x │ │ │ ├── B.png │ │ │ ├── BL.png │ │ │ ├── BL_Main.png │ │ │ ├── BR.png │ │ │ ├── BR_Main.png │ │ │ ├── B_Main.png │ │ │ ├── L.png │ │ │ ├── L_Main.png │ │ │ ├── R.png │ │ │ ├── R_Main.png │ │ │ ├── T.png │ │ │ ├── TL.png │ │ │ ├── TL_Main.png │ │ │ ├── TR.png │ │ │ ├── TR_Main.png │ │ │ ├── T_Main.png │ │ │ ├── close.gif │ │ │ ├── maximize.gif │ │ │ └── minimize.gif │ │ ├── mac_os_x_dialog.css │ │ ├── mac_os_x_dialog │ │ │ ├── B.png │ │ │ ├── BL.png │ │ │ ├── BR.png │ │ │ ├── L.png │ │ │ ├── R.png │ │ │ ├── T.png │ │ │ ├── TL.png │ │ │ ├── TR.png │ │ │ ├── bg.gif │ │ │ ├── close.gif │ │ │ ├── maximize.gif │ │ │ └── minimize.gif │ │ ├── nuncio.css │ │ ├── nuncio │ │ │ ├── bottom_left.png │ │ │ ├── bottom_mid.png │ │ │ ├── bottom_right.png │ │ │ ├── center_left.png │ │ │ ├── center_right.png │ │ │ ├── close.png │ │ │ ├── minimize.png │ │ │ ├── overlay.png │ │ │ ├── top_left.png │ │ │ ├── top_mid.png │ │ │ └── top_right.png │ │ ├── spread.css │ │ ├── spread │ │ │ ├── .gif │ │ │ ├── bottom-left-c.gif │ │ │ ├── bottom-middle.gif │ │ │ ├── bottom-right-c.gif │ │ │ ├── button-close-focus.gif │ │ │ ├── button-max-focus.gif │ │ │ ├── button-min-focus.gif │ │ │ ├── frame-left.gif │ │ │ ├── frame-right.gif │ │ │ ├── left-top.gif │ │ │ ├── right-top.gif │ │ │ └── top-middle.gif │ │ ├── theme1.css │ │ └── theme1 │ │ │ ├── bottom_left.gif │ │ │ ├── bottom_mid.gif │ │ │ ├── bottom_right.gif │ │ │ ├── center_left.gif │ │ │ ├── center_right.gif │ │ │ ├── close.gif │ │ │ ├── maximize.gif │ │ │ ├── minimize.gif │ │ │ ├── sizer.gif │ │ │ ├── top_left.gif │ │ │ ├── top_mid.gif │ │ │ └── top_right.gif │ ├── tooltip.js │ ├── window.js │ ├── window_effects.js │ └── window_ext.js └── xml.js ├── keyboard ├── class.atkkeyboard.inc └── javascript │ ├── class.atkrlkeylistener.js │ └── keyboardhandler.js ├── languages ├── bp.lng ├── ca.lng ├── cf.lng ├── cs.lng ├── da.lng ├── de.lng ├── de_old.lng ├── el.lng ├── en.lng ├── es.lng ├── fi.lng ├── fr.lng ├── hu.lng ├── id.lng ├── it.lng ├── ja.lng ├── nl.lng ├── no.lng ├── pl.lng ├── pt.lng ├── ru.lng ├── sk.lng ├── sv.lng ├── tr.lng ├── uk.lng └── zh.lng ├── listeners └── class.atkrecyclebin.inc ├── lock ├── class.atkdblock.inc ├── class.atklock.inc ├── db │ ├── install-mysql.sql │ └── install-oracle.sql ├── lock.js.php └── lock.php ├── menu ├── class.atkcookmenu.inc ├── class.atkdhtmlmenu.inc ├── class.atkdropdownmenu.inc ├── class.atkframesmenu.inc ├── class.atkmenu.inc ├── class.atkmenuinterface.inc ├── class.atkmodernmenu.inc ├── class.atkoutlookmenu.inc └── class.atkplainmenu.inc ├── meta ├── class.atkmetaattributemodifier.inc ├── class.atkmetapolicy.inc ├── compiler │ └── class.atkmetacompiler.inc ├── grammar │ ├── class.atkdutchmetagrammar.inc │ └── class.atkmetagrammar.inc ├── module.inc └── relations │ ├── class.atkmetaextendableshuttlerelation.inc │ ├── class.atkmetamanyboolrelation.inc │ ├── class.atkmetamanytomanylistrelation.inc │ ├── class.atkmetamanytomanyselectrelation.inc │ ├── class.atkmetamanytoonerelation.inc │ ├── class.atkmetaonetomanyrelation.inc │ ├── class.atkmetaonetoonerelation.inc │ └── class.atkmetashuttlerelation.inc ├── modules ├── atkmoduletools.inc └── class.atkmodule.inc ├── popups ├── colorpicker.inc └── help.inc ├── recordlist ├── class.atkcolumnconfig.inc ├── class.atkcsvrecordlist.inc ├── class.atkcustomrecordlist.inc ├── class.atkexcelcsvrecordlist.inc ├── class.atkhtmlrecordlist.inc ├── class.atkprintablerecordlist.inc ├── class.atkrecordlist.inc ├── class.atkrecordlistcache.inc └── class.atktotalizer.inc ├── relations ├── class.atkextendableshuttlerelation.inc ├── class.atkmanyboolrelation.inc ├── class.atkmanytomanylistrelation.inc ├── class.atkmanytomanyrelation.inc ├── class.atkmanytomanyselectrelation.inc ├── class.atkmanytoonerelation.inc ├── class.atkmanytoonetreerelation.inc ├── class.atkmatrixrelation.inc ├── class.atkonetomanyrelation.inc ├── class.atkonetomanyrelationsessiongridhandler.inc ├── class.atkonetoonerelation.inc ├── class.atkpolymorphiconetoonerelation.inc ├── class.atkrelation.inc ├── class.atksecurerelation.inc ├── class.atkshuttlerelation.inc └── controls │ ├── class.atkshuttlecontrol.inc │ └── class.atkshuttlefilter.inc ├── scripts ├── .htaccess ├── db2yaml.php └── table2yaml.php ├── security ├── class.atkmocksecuritymanager.inc ├── class.atksecuritylistener.inc ├── class.atksecuritymanager.inc ├── class.atkurlvault.inc ├── class.auth_config.inc ├── class.auth_db.inc ├── class.auth_imap.inc ├── class.auth_interface.inc ├── class.auth_ldap.inc ├── class.auth_none.inc ├── class.auth_pop3.inc ├── class.auth_saml.inc ├── class.auth_server.inc ├── class.auth_sspi.inc ├── db │ ├── class.sql_whereclause_blacklist_checker.inc │ └── testcases │ │ └── class.test_sql_whereclause_blacklist_checker.inc └── encryption │ ├── class.atkbajusencryption.inc │ ├── class.atkbase64encryption.inc │ ├── class.atkencryption.inc │ └── class.atkopensslencryption.inc ├── session ├── class.atksessionmanager.inc ├── class.atksessionstore.inc └── class.atkstate.inc ├── skel-tests ├── AllTests.php ├── README ├── bootstrap.php └── phpunit.xml ├── skel ├── app.php ├── atk.inc ├── atktmp │ └── compiled │ │ └── tpl │ │ └── README ├── config.inc.php ├── configs │ └── README ├── console.php ├── debugger.php ├── dispatch.php ├── help │ └── en │ │ └── class.nodename.inc ├── include.php ├── index.php ├── init_mysql.sql ├── languages │ └── en.lng ├── menu.php ├── modules │ ├── config.modules.inc │ └── test │ │ ├── class.test.inc │ │ ├── install.sql │ │ ├── languages │ │ └── en.lng │ │ └── module.inc ├── server.php ├── top.php └── welcome.php ├── test ├── bootstrap.inc ├── class.atkattributetestcase.inc ├── class.atkcachetestcase.inc ├── class.atkplugintestcase.inc ├── class.atktestcase.inc └── mocks │ ├── class.atkmockdb.inc │ ├── class.atkmockddl.inc │ ├── class.atkmocknode.inc │ ├── class.atkmockquery.inc │ ├── class.atkmocksecuritymanager.inc │ └── class.atkmocksessionmanager.inc ├── themes ├── achievo_modern │ ├── icons │ │ └── recordlist │ │ │ ├── copy.gif │ │ │ ├── default.gif │ │ │ ├── delete.gif │ │ │ ├── document.gif │ │ │ ├── done.gif │ │ │ ├── edit.gif │ │ │ ├── export.gif │ │ │ ├── preview.gif │ │ │ ├── select.gif │ │ │ └── view.gif │ ├── images │ │ ├── arrow.gif │ │ ├── bannerBg.jpg │ │ ├── blank.gif │ │ ├── bodyBg.gif │ │ ├── bodyPattern.gif │ │ ├── contentBlockBg.gif │ │ ├── logo.jpg │ │ ├── logoGrijs.png │ │ ├── menu.PNG │ │ ├── menuBg.jpg │ │ ├── menuBgBottom.jpg │ │ ├── menuLevel1Bg.jpg │ │ ├── menuLevel2Bg.jpg │ │ ├── menu_active_bg.png │ │ ├── menu_active_bottom.png │ │ ├── menu_active_top.png │ │ ├── menu_bottom.png │ │ ├── menu_bottom_top.png │ │ ├── menu_menuitem.png │ │ ├── menu_top.png │ │ ├── search.png │ │ ├── spinner.gif │ │ ├── tabBg.gif │ │ ├── tabBg2.gif │ │ ├── tabLeft.gif │ │ ├── tabLeft_.gif │ │ ├── tabRight.gif │ │ ├── tabRight2.gif │ │ ├── tab_back.png │ │ ├── tab_back_s.png │ │ ├── tab_left.png │ │ ├── tab_left_s.png │ │ ├── tab_right.png │ │ ├── tab_right_s.png │ │ ├── top-right.png │ │ └── top.png │ ├── styles │ │ ├── menu.css │ │ ├── recordlist.css │ │ ├── style.css │ │ ├── tabs.css │ │ └── top.css │ ├── templates │ │ ├── action.tpl │ │ ├── body.tpl │ │ ├── box.tpl │ │ ├── dispatch.tpl │ │ ├── editform.tpl │ │ ├── editform_common.tpl │ │ ├── login.tpl │ │ ├── login_meta.tpl │ │ ├── menu.tpl │ │ ├── page.tpl │ │ ├── recordlist.tpl │ │ ├── simplesearch.tpl │ │ ├── tabs.tpl │ │ └── top.tpl │ └── themedef.inc ├── basic │ ├── styles │ │ ├── atkdateattribute.css │ │ ├── debugger.css │ │ ├── dhtmlmenu.css │ │ ├── fck_mcpuk_browser.css │ │ ├── recordlist.css │ │ ├── style.css │ │ └── tabs.css │ ├── templates │ │ ├── action.tpl │ │ ├── actionpage.tpl │ │ ├── box.tpl │ │ ├── dhtml_menu.tpl │ │ ├── editform.tpl │ │ ├── integratededitform.tpl │ │ ├── list.tpl │ │ ├── login.tpl │ │ ├── login_meta.tpl │ │ ├── menu.tpl │ │ ├── recordlist.tpl │ │ ├── searchform.tpl │ │ ├── smartcriterium.tpl │ │ ├── smartsearchform.tpl │ │ ├── statusbar.tpl │ │ ├── tabs.tpl │ │ ├── top.tpl │ │ └── viewform.tpl │ └── themedef.inc ├── default │ ├── icons │ │ ├── lock │ │ │ ├── lock_exclusive.gif │ │ │ ├── lock_exclusive_head.gif │ │ │ ├── lock_shared.gif │ │ │ └── lock_shared_head.gif │ │ ├── recordlist │ │ │ ├── canceled.gif │ │ │ ├── copy.gif │ │ │ ├── default.gif │ │ │ ├── delete.gif │ │ │ ├── document.gif │ │ │ ├── done.gif │ │ │ ├── edit.gif │ │ │ ├── export.gif │ │ │ ├── preview.gif │ │ │ ├── select.gif │ │ │ └── view.gif │ │ ├── toolbar │ │ │ ├── bold.gif │ │ │ ├── delimiter.gif │ │ │ ├── italic.gif │ │ │ ├── link.gif │ │ │ └── underline.gif │ │ └── tree │ │ │ ├── tree_collapse.gif │ │ │ ├── tree_end.gif │ │ │ ├── tree_end_minus.gif │ │ │ ├── tree_end_plus.gif │ │ │ ├── tree_expand.gif │ │ │ ├── tree_extfile.gif │ │ │ ├── tree_leaf.gif │ │ │ ├── tree_space.gif │ │ │ ├── tree_split.gif │ │ │ ├── tree_split_minus.gif │ │ │ ├── tree_split_plus.gif │ │ │ └── tree_vertline.gif │ ├── images │ │ ├── arrow.gif │ │ ├── arrowdown.gif │ │ ├── arrowup.gif │ │ ├── blank.gif │ │ ├── empty.gif │ │ ├── help.gif │ │ └── required_field.gif │ ├── styles │ │ ├── atkdateattribute.css │ │ ├── atkdebug.css │ │ ├── atkdropdownmenu.css │ │ ├── atkmanytomanyselectrelation.css │ │ ├── atkmanytoonerelation.css │ │ ├── cookmenu.css │ │ ├── debugger.css │ │ ├── dhtmlmenu.css │ │ ├── fck_mcpuk_browser.css │ │ ├── menu.css │ │ ├── recordlist.css │ │ ├── sections.css │ │ ├── style.css │ │ └── tabs.css │ ├── templates │ │ ├── action.tpl │ │ ├── actionpage.tpl │ │ ├── box.tpl │ │ ├── datagrid.tpl │ │ ├── dgindex.tpl │ │ ├── dglimit.tpl │ │ ├── dgpaginator.tpl │ │ ├── dhtml_menu.tpl │ │ ├── dialog.tpl │ │ ├── editform.tpl │ │ ├── extendableshuttle.tpl │ │ ├── field.tpl │ │ ├── integratededitform.tpl │ │ ├── list.tpl │ │ ├── lockinfo.tpl │ │ ├── login.tpl │ │ ├── login_meta.tpl │ │ ├── panetabs.tpl │ │ ├── recordlist.tpl │ │ ├── searchform.tpl │ │ ├── smartcriterium.tpl │ │ ├── smartsearchform.tpl │ │ ├── statusbar.tpl │ │ ├── tabbededitform.tpl │ │ ├── tabs.tpl │ │ ├── tooltip.tpl.php │ │ └── viewform.tpl │ └── themedef.inc ├── macoslike │ ├── images │ │ ├── blank.gif │ │ ├── button_back.gif │ │ ├── dark_back.gif │ │ ├── empty.gif │ │ ├── handvat.gif │ │ ├── help.gif │ │ ├── left.gif │ │ ├── logout.gif │ │ ├── main_structuur.gif │ │ ├── publixheader.gif │ │ ├── right.gif │ │ ├── tab_back.gif │ │ ├── tab_back_s.gif │ │ ├── tab_left.gif │ │ ├── tab_left_s.gif │ │ ├── tab_right.gif │ │ └── tab_right_s.gif │ ├── styles │ │ ├── atkdateattribute.css │ │ ├── recordlist.css │ │ ├── style.css │ │ └── tabs.css │ ├── templates │ │ ├── box.tpl │ │ ├── login.tpl │ │ ├── login_meta.tpl │ │ ├── tabs.tpl │ │ └── top.tpl │ └── themedef.inc ├── modern │ ├── images │ │ └── keys.gif │ ├── styles │ │ ├── atkdateattribute.css │ │ ├── recordlist.css │ │ ├── style.css │ │ └── tabs.css │ ├── templates │ │ ├── box.tpl │ │ ├── login.tpl │ │ ├── login_meta.tpl │ │ └── tabs.tpl │ └── themedef.inc ├── moronic │ ├── styles │ │ ├── atkdateattribute.css │ │ ├── recordlist.css │ │ └── style.css │ ├── templates │ │ ├── box.tpl │ │ └── login_meta.tpl │ └── themedef.inc ├── outlook │ ├── images │ │ ├── add.gif │ │ ├── admin.gif │ │ ├── arrowdown.gif │ │ ├── arrowup.gif │ │ ├── blank.gif │ │ ├── button_back.gif │ │ ├── dark_back.gif │ │ ├── delete.gif │ │ ├── edit.gif │ │ ├── empty.gif │ │ ├── handvat.gif │ │ ├── help.gif │ │ ├── keys.gif │ │ ├── left.gif │ │ ├── logout.gif │ │ ├── main_structuur.gif │ │ ├── publixheader.gif │ │ ├── right.gif │ │ ├── select.gif │ │ ├── tab_back.gif │ │ ├── tab_back_s.gif │ │ ├── tab_left.gif │ │ ├── tab_left_s.gif │ │ ├── tab_right.gif │ │ ├── tab_right_s.gif │ │ └── view.gif │ ├── styles │ │ ├── atkdateattribute.css │ │ ├── recordlist.css │ │ ├── style.css │ │ ├── tabs.css │ │ └── top.css │ ├── templates │ │ ├── box.tpl │ │ ├── login.tpl │ │ ├── login_meta.tpl │ │ ├── tabs.tpl │ │ └── top.tpl │ ├── themedef.inc │ └── tree_icons │ │ ├── tree_add.gif │ │ ├── tree_collapse.gif │ │ ├── tree_end.gif │ │ ├── tree_end_minus.gif │ │ ├── tree_end_plus.gif │ │ ├── tree_expand.gif │ │ ├── tree_extfile.gif │ │ ├── tree_leaf.gif │ │ ├── tree_leaf_link.gif │ │ ├── tree_space.gif │ │ ├── tree_split.gif │ │ ├── tree_split_minus.gif │ │ ├── tree_split_plus.gif │ │ └── tree_vertline.gif ├── steelblue │ ├── icons │ │ └── recordlist │ │ │ ├── copy.gif │ │ │ ├── default.gif │ │ │ ├── delete.gif │ │ │ ├── document.gif │ │ │ ├── done.gif │ │ │ ├── edit.gif │ │ │ ├── editcopy.gif │ │ │ ├── export.gif │ │ │ ├── preview.gif │ │ │ ├── select.gif │ │ │ └── view.gif │ ├── images │ │ ├── atkdialog_buttons.gif │ │ ├── atkdialog_corners_bottom.gif │ │ ├── atkdialog_corners_top.gif │ │ ├── atkdialog_sizer.gif │ │ ├── bannerBg.jpg │ │ ├── bannerTopLeft.jpg │ │ ├── bannercustomimage.gif │ │ ├── blank.gif │ │ ├── contentfooterleft.jpg │ │ ├── contentfooterright.jpg │ │ ├── contentheaderleft.jpg │ │ ├── contentheaderright.jpg │ │ ├── help.png │ │ ├── login_logo.jpg │ │ ├── loginheaderleft.jpg │ │ ├── logo.jpg │ │ ├── menubg.gif │ │ ├── spinner.gif │ │ ├── subtaboff.gif │ │ ├── subtabon.gif │ │ ├── tabLeft.gif │ │ ├── tabRight.gif │ │ └── tabbottom.gif │ ├── styles │ │ ├── atkmanytomanyselectrelation.css │ │ ├── menu.css │ │ ├── recordlist.css │ │ ├── style.css │ │ ├── tabs.css │ │ └── top.css │ ├── templates │ │ ├── action.tpl │ │ ├── action_view.tpl │ │ ├── actionpage.tpl │ │ ├── body.tpl │ │ ├── body_pda.tpl │ │ ├── box.tpl │ │ ├── editform.tpl │ │ ├── editform_common.tpl │ │ ├── editform_fields.tpl │ │ ├── field.tpl │ │ ├── login.tpl │ │ ├── login_meta.tpl │ │ ├── menu.tpl │ │ ├── recordlist.tpl │ │ ├── simplesearch.tpl │ │ ├── tabs.tpl │ │ ├── top.tpl │ │ └── viewform.tpl │ └── themedef.inc ├── stillblue │ ├── images │ │ └── logo.jpg │ ├── styles │ │ ├── atkdropdownmenu.css │ │ ├── style.css │ │ └── top.css │ ├── templates │ │ ├── actionpage.tpl │ │ ├── box.tpl │ │ ├── login_meta.tpl │ │ └── top.tpl │ └── themedef.inc ├── t3skin │ ├── icons │ │ └── recordlist │ │ │ ├── copy.gif │ │ │ ├── delete.gif │ │ │ ├── edit.gif │ │ │ └── view.gif │ ├── styles │ │ ├── recordlist.css │ │ └── style.css │ ├── templates │ │ ├── box.tpl │ │ ├── login_meta.tpl │ │ └── menu.tpl │ └── themedef.inc ├── win2k │ ├── images │ │ ├── barGradientBlue.gif │ │ ├── barGradientBlue300.gif │ │ ├── blank.gif │ │ ├── icoClose.gif │ │ ├── icoMsgKey.gif │ │ ├── logo.gif │ │ ├── password.png │ │ ├── tab_back.gif │ │ ├── tab_back_s.gif │ │ ├── tab_left.gif │ │ ├── tab_left_s.gif │ │ ├── tab_right.gif │ │ └── tab_right_s.gif │ ├── styles │ │ ├── atkdateattribute.css │ │ ├── recordlist.css │ │ ├── style.css │ │ ├── tabs.css │ │ └── top.css │ ├── templates │ │ ├── box.tpl │ │ ├── login.tpl │ │ ├── login_meta.tpl │ │ ├── tabs.tpl │ │ └── top.tpl │ └── themedef.inc └── winxp │ ├── icons │ ├── recordlist │ │ ├── copy.png │ │ ├── default.gif │ │ ├── delete.png │ │ ├── edit.png │ │ ├── print.png │ │ ├── select.png │ │ └── view.png │ ├── toolbar │ │ ├── bold.gif │ │ ├── delimiter.gif │ │ ├── italic.gif │ │ ├── link.gif │ │ └── underline.gif │ └── tree │ │ ├── tree_collapse.gif │ │ ├── tree_end.gif │ │ ├── tree_end_minus.gif │ │ ├── tree_end_plus.gif │ │ ├── tree_expand.gif │ │ ├── tree_extfile.gif │ │ ├── tree_leaf.gif │ │ ├── tree_space.gif │ │ ├── tree_split.gif │ │ ├── tree_split_minus.gif │ │ ├── tree_split_plus.gif │ │ └── tree_vertline.gif │ ├── images │ ├── arrow_down.gif │ ├── arrow_down_over.gif │ ├── arrow_up.gif │ ├── arrow_up_over.gif │ ├── barGradientBlue.gif │ ├── barGradientBlue300.gif │ ├── bg_pane_right.gif │ ├── bg_panel_top_right.gif │ ├── help.gif │ ├── icoClose.gif │ ├── icoMsgKey.gif │ ├── information.png │ ├── password.png │ ├── required_field.gif │ ├── tab_back_active.gif │ ├── tab_back_inactive.gif │ ├── tab_back_over.gif │ ├── tab_left_active.gif │ ├── tab_left_inactive.gif │ ├── tab_left_over.gif │ ├── tab_right_active.gif │ ├── tab_right_inactive.gif │ ├── tab_right_over.gif │ └── title_background.gif │ ├── javascript │ └── menu.js │ ├── styles │ ├── atkdateattribute.css │ ├── atkmanytoonerelation.css │ ├── recordlist.css │ ├── style.css │ ├── tabs.css │ └── top.css │ ├── templates │ ├── box.tpl │ ├── editform.tpl │ ├── editform_common.tpl │ ├── login.tpl │ ├── login_meta.tpl │ ├── menu.tpl │ ├── recordlist.tpl │ ├── tabs.tpl │ └── top.tpl │ └── themedef.inc ├── ui ├── class.atkactionboxbuilder.inc ├── class.atkdialog.inc ├── class.atkindexpage.inc ├── class.atkoutput.inc ├── class.atkpage.inc ├── class.atkpagebuilder.inc ├── class.atkphpview.inc ├── class.atksmarty.inc ├── class.atktheme.inc ├── class.atkthemecompiler.inc ├── class.atkui.inc ├── plugins │ ├── block.atknavigator.php │ ├── block.atknavigatorinfo.php │ ├── function.atkconf.php │ ├── function.atkconfig.php │ ├── function.atkdatefield.php │ ├── function.atkdispatchfile.php │ ├── function.atkfrontcontroller.php │ ├── function.atkloadscript.php │ ├── function.atkmessages.php │ ├── function.atkmoduledir.php │ ├── function.atkscript.php │ ├── function.atkstyle.php │ ├── function.atktext.php │ ├── function.atkthemeicon.php │ ├── function.atkthemeimg.php │ ├── function.stacktrace.php │ ├── modifier.atkjson.php │ ├── modifier.atkvardump.php │ ├── resource.string.php │ ├── resource.theme.php │ └── resource.ui.php └── smarty │ ├── Config_File.class.php │ ├── Smarty.class.php │ ├── Smarty_Compiler.class.php │ ├── debug.tpl │ ├── internals │ ├── core.assemble_plugin_filepath.php │ ├── core.assign_smarty_interface.php │ ├── core.create_dir_structure.php │ ├── core.display_debug_console.php │ ├── core.get_include_path.php │ ├── core.get_microtime.php │ ├── core.get_php_resource.php │ ├── core.is_secure.php │ ├── core.is_trusted.php │ ├── core.load_plugins.php │ ├── core.load_resource_plugin.php │ ├── core.process_cached_inserts.php │ ├── core.process_compiled_include.php │ ├── core.read_cache_file.php │ ├── core.rm_auto.php │ ├── core.rmdir.php │ ├── core.run_insert_handler.php │ ├── core.smarty_include_php.php │ ├── core.write_cache_file.php │ ├── core.write_compiled_include.php │ ├── core.write_compiled_resource.php │ └── core.write_file.php │ └── plugins │ ├── 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 ├── utils ├── adodb-time.inc.php ├── class.atkactionlistener.inc ├── class.atkclassloader.inc ├── class.atkcompatselector.inc ├── class.atkdataholder.inc ├── class.atkdebugger.inc ├── class.atkdirectorytraverser.inc ├── class.atkeditformmodifier.inc ├── class.atkeventlog.inc ├── class.atkfileexport.inc ├── class.atkfileutils.inc ├── class.atkframeset.inc ├── class.atkiputils.inc ├── class.atkjson.inc ├── class.atkmail.inc ├── class.atkmailer.inc ├── class.atkmessagequeue.inc ├── class.atkmlselector.inc ├── class.atkmlsplitter.inc ├── class.atkselector.inc ├── class.atkselectoriterator.inc ├── class.atkstring.inc ├── class.atkstringparser.inc ├── class.atktablerenderer.inc ├── class.atktablerenderergrouped.inc ├── class.atktextmarker.inc ├── class.atktmpfile.inc ├── class.atktriggerlistener.inc ├── class.atkyaml.inc ├── class.atkzip.inc └── langconvert.sh ├── version.inc └── wizard ├── class.atkwizard.inc ├── class.atkwizardactionloader.inc ├── class.atkwizardbase.inc └── class.atkwizardpanel.inc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/README.md -------------------------------------------------------------------------------- /atkbrowsertools.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/atkbrowsertools.inc -------------------------------------------------------------------------------- /atkmenutools.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/atkmenutools.inc -------------------------------------------------------------------------------- /atknodetools.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/atknodetools.inc -------------------------------------------------------------------------------- /atktools.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/atktools.inc -------------------------------------------------------------------------------- /atktreetools.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/atktreetools.inc -------------------------------------------------------------------------------- /attributes/ckeditor/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/CHANGES.md -------------------------------------------------------------------------------- /attributes/ckeditor/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/LICENSE.md -------------------------------------------------------------------------------- /attributes/ckeditor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/README.md -------------------------------------------------------------------------------- /attributes/ckeditor/adapters/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/adapters/jquery.js -------------------------------------------------------------------------------- /attributes/ckeditor/build-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/build-config.js -------------------------------------------------------------------------------- /attributes/ckeditor/ckeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/ckeditor.js -------------------------------------------------------------------------------- /attributes/ckeditor/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/config.js -------------------------------------------------------------------------------- /attributes/ckeditor/config_original.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/config_original.js -------------------------------------------------------------------------------- /attributes/ckeditor/contents.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/contents.css -------------------------------------------------------------------------------- /attributes/ckeditor/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/af.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/ar.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/bg.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/bn.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/bs.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/ca.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/cs.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/cy.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/da.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/de.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/el.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/en-au.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/en-ca.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/en-gb.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/en.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/eo.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/es.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/et.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/eu.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/fa.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/fi.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/fo.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/fr-ca.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/fr.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/gl.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/gu.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/he.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/hi.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/hr.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/hu.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/id.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/is.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/it.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/ja.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/ka.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/km.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/ko.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/ku.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/lt.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/lv.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/mk.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/mn.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/ms.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/nb.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/nl.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/no.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/pl.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/pt-br.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/pt.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/ro.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/ru.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/si.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/sk.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/sl.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/sq.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/sr-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/sr-latn.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/sr.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/sv.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/th.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/tr.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/tt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/tt.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/ug.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/uk.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/vi.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/zh-cn.js -------------------------------------------------------------------------------- /attributes/ckeditor/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/lang/zh.js -------------------------------------------------------------------------------- /attributes/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /attributes/ckeditor/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/ckeditor/styles.js -------------------------------------------------------------------------------- /attributes/class.atkattribute.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/class.atkattribute.inc -------------------------------------------------------------------------------- /attributes/class.atkblobattribute.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/class.atkblobattribute.inc -------------------------------------------------------------------------------- /attributes/class.atkboolattribute.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/class.atkboolattribute.inc -------------------------------------------------------------------------------- /attributes/class.atkdateattribute.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/class.atkdateattribute.inc -------------------------------------------------------------------------------- /attributes/class.atkdummyattribute.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/class.atkdummyattribute.inc -------------------------------------------------------------------------------- /attributes/class.atkemailattribute.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/class.atkemailattribute.inc -------------------------------------------------------------------------------- /attributes/class.atkfckattribute.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/class.atkfckattribute.inc -------------------------------------------------------------------------------- /attributes/class.atkfieldset.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/class.atkfieldset.inc -------------------------------------------------------------------------------- /attributes/class.atkfileattribute.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/class.atkfileattribute.inc -------------------------------------------------------------------------------- /attributes/class.atkflagattribute.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/class.atkflagattribute.inc -------------------------------------------------------------------------------- /attributes/class.atkformatattribute.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/class.atkformatattribute.inc -------------------------------------------------------------------------------- /attributes/class.atkhiddenattribute.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/class.atkhiddenattribute.inc -------------------------------------------------------------------------------- /attributes/class.atkhtmlattribute.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/class.atkhtmlattribute.inc -------------------------------------------------------------------------------- /attributes/class.atkipattribute.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/class.atkipattribute.inc -------------------------------------------------------------------------------- /attributes/class.atklistattribute.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/class.atklistattribute.inc -------------------------------------------------------------------------------- /attributes/class.atklivetextpreview.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/class.atklivetextpreview.inc -------------------------------------------------------------------------------- /attributes/class.atkmlattribute.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/class.atkmlattribute.inc -------------------------------------------------------------------------------- /attributes/class.atkmlfckattribute.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/class.atkmlfckattribute.inc -------------------------------------------------------------------------------- /attributes/class.atkmlhtmlattribute.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/class.atkmlhtmlattribute.inc -------------------------------------------------------------------------------- /attributes/class.atkmltextattribute.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/class.atkmltextattribute.inc -------------------------------------------------------------------------------- /attributes/class.atkmlwrapper.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/class.atkmlwrapper.inc -------------------------------------------------------------------------------- /attributes/class.atknumberattribute.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/class.atknumberattribute.inc -------------------------------------------------------------------------------- /attributes/class.atkparserattribute.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/class.atkparserattribute.inc -------------------------------------------------------------------------------- /attributes/class.atkradioattribute.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/class.atkradioattribute.inc -------------------------------------------------------------------------------- /attributes/class.atkrowcounter.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/class.atkrowcounter.inc -------------------------------------------------------------------------------- /attributes/class.atkstateattribute.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/class.atkstateattribute.inc -------------------------------------------------------------------------------- /attributes/class.atktabbedpane.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/class.atktabbedpane.inc -------------------------------------------------------------------------------- /attributes/class.atktagattribute.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/class.atktagattribute.inc -------------------------------------------------------------------------------- /attributes/class.atktoolbar.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/class.atktoolbar.inc -------------------------------------------------------------------------------- /attributes/class.atkurlattribute.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/class.atkurlattribute.inc -------------------------------------------------------------------------------- /attributes/fck/_documentation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/_documentation.html -------------------------------------------------------------------------------- /attributes/fck/_upgrade.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/_upgrade.html -------------------------------------------------------------------------------- /attributes/fck/_whatsnew.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/_whatsnew.html -------------------------------------------------------------------------------- /attributes/fck/editor/dialog/fck_spellerpages/spellerpages/blank.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /attributes/fck/editor/fckdebug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/fckdebug.html -------------------------------------------------------------------------------- /attributes/fck/editor/fckdialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/fckdialog.html -------------------------------------------------------------------------------- /attributes/fck/editor/fckeditor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/fckeditor.html -------------------------------------------------------------------------------- /attributes/fck/editor/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/af.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/ar.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/bg.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/bn.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/bs.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/ca.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/cs.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/da.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/de.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/el.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/en-au.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/en-ca.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/en-uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/en-uk.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/en.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/eo.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/es.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/et.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/eu.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/fa.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/fi.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/fo.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/fr-ca.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/fr.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/gl.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/gu.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/he.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/hi.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/hr.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/hu.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/is.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/it.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/ja.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/km.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/ko.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/lt.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/lv.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/mn.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/ms.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/nb.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/nl.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/no.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/pl.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/pt-br.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/pt.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/ro.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/ru.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/sk.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/sl.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/sr.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/sv.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/th.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/tr.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/uk.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/vi.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/zh-cn.js -------------------------------------------------------------------------------- /attributes/fck/editor/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/lang/zh.js -------------------------------------------------------------------------------- /attributes/fck/editor/wsc/w.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/editor/wsc/w.html -------------------------------------------------------------------------------- /attributes/fck/fckconfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/fckconfig.js -------------------------------------------------------------------------------- /attributes/fck/fckconfig_original.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/fckconfig_original.js -------------------------------------------------------------------------------- /attributes/fck/fckeditor.afp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/fckeditor.afp -------------------------------------------------------------------------------- /attributes/fck/fckeditor.asp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/fckeditor.asp -------------------------------------------------------------------------------- /attributes/fck/fckeditor.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/fckeditor.cfc -------------------------------------------------------------------------------- /attributes/fck/fckeditor.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/fckeditor.cfm -------------------------------------------------------------------------------- /attributes/fck/fckeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/fckeditor.js -------------------------------------------------------------------------------- /attributes/fck/fckeditor.lasso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/fckeditor.lasso -------------------------------------------------------------------------------- /attributes/fck/fckeditor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/fckeditor.php -------------------------------------------------------------------------------- /attributes/fck/fckeditor.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/fckeditor.pl -------------------------------------------------------------------------------- /attributes/fck/fckeditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/fckeditor.py -------------------------------------------------------------------------------- /attributes/fck/fckeditor_php4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/fckeditor_php4.php -------------------------------------------------------------------------------- /attributes/fck/fckeditor_php5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/fckeditor_php5.php -------------------------------------------------------------------------------- /attributes/fck/fckpackager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/fckpackager.xml -------------------------------------------------------------------------------- /attributes/fck/fckstyles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/fckstyles.xml -------------------------------------------------------------------------------- /attributes/fck/fcktemplates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/fcktemplates.xml -------------------------------------------------------------------------------- /attributes/fck/fckutils.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/fckutils.cfm -------------------------------------------------------------------------------- /attributes/fck/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/fck/license.txt -------------------------------------------------------------------------------- /attributes/wysiwyg/images/abspos.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/wysiwyg/images/abspos.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/bold.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/wysiwyg/images/bold.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/break.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/wysiwyg/images/break.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/center.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/wysiwyg/images/center.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/copy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/wysiwyg/images/copy.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/curs_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/wysiwyg/images/curs_3.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/cut.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/wysiwyg/images/cut.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/wysiwyg/images/delete.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/end.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/wysiwyg/images/end.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/find.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/wysiwyg/images/find.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/hr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/wysiwyg/images/hr.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/hr_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/wysiwyg/images/hr_3.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/wysiwyg/images/image.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/img_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/wysiwyg/images/img_2.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/italic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/wysiwyg/images/italic.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/wysiwyg/images/left.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/link.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/wysiwyg/images/link.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/link_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/wysiwyg/images/link_2.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/lock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/wysiwyg/images/lock.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/nbsp_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/wysiwyg/images/nbsp_3.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/neg_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/wysiwyg/images/neg_3.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/newdoc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/wysiwyg/images/newdoc.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/wysiwyg/images/open.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/paste.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/wysiwyg/images/paste.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/print.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/wysiwyg/images/print.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/props.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/wysiwyg/images/props.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/reddot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/wysiwyg/images/reddot.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/redo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/wysiwyg/images/redo.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/wysiwyg/images/right.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/save.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/wysiwyg/images/save.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/save_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/wysiwyg/images/save_2.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/saveas.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/wysiwyg/images/saveas.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/start.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/wysiwyg/images/start.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/wysiwyg/images/trans.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/under.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/wysiwyg/images/under.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/undo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/attributes/wysiwyg/images/undo.gif -------------------------------------------------------------------------------- /cache/class.atkcache.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/cache/class.atkcache.inc -------------------------------------------------------------------------------- /cache/class.atkcache_apc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/cache/class.atkcache_apc.inc -------------------------------------------------------------------------------- /cache/class.atkcache_file.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/cache/class.atkcache_file.inc -------------------------------------------------------------------------------- /cache/class.atkcache_memcache.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/cache/class.atkcache_memcache.inc -------------------------------------------------------------------------------- /cache/class.atkcache_var.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/cache/class.atkcache_var.inc -------------------------------------------------------------------------------- /cache/class.atkcache_xcache.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/cache/class.atkcache_xcache.inc -------------------------------------------------------------------------------- /cache/class.atkcache_zp_disk.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/cache/class.atkcache_zp_disk.inc -------------------------------------------------------------------------------- /cache/class.atkcache_zp_output.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/cache/class.atkcache_zp_output.inc -------------------------------------------------------------------------------- /cache/class.atkcache_zp_shm.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/cache/class.atkcache_zp_shm.inc -------------------------------------------------------------------------------- /class.atkconfig.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/class.atkconfig.inc -------------------------------------------------------------------------------- /class.atkcontroller.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/class.atkcontroller.inc -------------------------------------------------------------------------------- /class.atkdatanode.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/class.atkdatanode.inc -------------------------------------------------------------------------------- /class.atkfileeditor.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/class.atkfileeditor.inc -------------------------------------------------------------------------------- /class.atklanguage.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/class.atklanguage.inc -------------------------------------------------------------------------------- /class.atkmetanode.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/class.atkmetanode.inc -------------------------------------------------------------------------------- /class.atknode.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/class.atknode.inc -------------------------------------------------------------------------------- /class.atknodevalidator.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/class.atknodevalidator.inc -------------------------------------------------------------------------------- /class.atktreenode.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/class.atktreenode.inc -------------------------------------------------------------------------------- /class.layout.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/class.layout.inc -------------------------------------------------------------------------------- /datagrid/class.atkdatagrid.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/datagrid/class.atkdatagrid.inc -------------------------------------------------------------------------------- /datagrid/class.atkdgcomponent.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/datagrid/class.atkdgcomponent.inc -------------------------------------------------------------------------------- /datagrid/class.atkdgeditcontrol.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/datagrid/class.atkdgeditcontrol.inc -------------------------------------------------------------------------------- /datagrid/class.atkdgevent.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/datagrid/class.atkdgevent.inc -------------------------------------------------------------------------------- /datagrid/class.atkdgindex.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/datagrid/class.atkdgindex.inc -------------------------------------------------------------------------------- /datagrid/class.atkdglimit.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/datagrid/class.atkdglimit.inc -------------------------------------------------------------------------------- /datagrid/class.atkdglist.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/datagrid/class.atkdglist.inc -------------------------------------------------------------------------------- /datagrid/class.atkdglistener.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/datagrid/class.atkdglistener.inc -------------------------------------------------------------------------------- /datagrid/class.atkdgpaginator.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/datagrid/class.atkdgpaginator.inc -------------------------------------------------------------------------------- /datagrid/class.atkdgrenderer.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/datagrid/class.atkdgrenderer.inc -------------------------------------------------------------------------------- /datagrid/class.atkdgsummary.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/datagrid/class.atkdgsummary.inc -------------------------------------------------------------------------------- /datatypes/class.atkarraydt.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/datatypes/class.atkarraydt.inc -------------------------------------------------------------------------------- /datatypes/class.atkdatatype.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/datatypes/class.atkdatatype.inc -------------------------------------------------------------------------------- /datatypes/class.atkstringdt.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/datatypes/class.atkstringdt.inc -------------------------------------------------------------------------------- /datatypes/class.atktimedt.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/datatypes/class.atktimedt.inc -------------------------------------------------------------------------------- /db/class.atkclusterdb.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/db/class.atkclusterdb.inc -------------------------------------------------------------------------------- /db/class.atkclusterddl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/db/class.atkclusterddl.inc -------------------------------------------------------------------------------- /db/class.atkclusterquery.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/db/class.atkclusterquery.inc -------------------------------------------------------------------------------- /db/class.atkdb.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/db/class.atkdb.inc -------------------------------------------------------------------------------- /db/class.atkdb2db.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/db/class.atkdb2db.inc -------------------------------------------------------------------------------- /db/class.atkdb2ddl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/db/class.atkdb2ddl.inc -------------------------------------------------------------------------------- /db/class.atkdb2query.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/db/class.atkdb2query.inc -------------------------------------------------------------------------------- /db/class.atkddl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/db/class.atkddl.inc -------------------------------------------------------------------------------- /db/class.atki5db.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/db/class.atki5db.inc -------------------------------------------------------------------------------- /db/class.atki5ddl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/db/class.atki5ddl.inc -------------------------------------------------------------------------------- /db/class.atki5query.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/db/class.atki5query.inc -------------------------------------------------------------------------------- /db/class.atkmssqldb.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/db/class.atkmssqldb.inc -------------------------------------------------------------------------------- /db/class.atkmssqlddl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/db/class.atkmssqlddl.inc -------------------------------------------------------------------------------- /db/class.atkmssqlquery.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/db/class.atkmssqlquery.inc -------------------------------------------------------------------------------- /db/class.atkmysqldb.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/db/class.atkmysqldb.inc -------------------------------------------------------------------------------- /db/class.atkmysqlddl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/db/class.atkmysqlddl.inc -------------------------------------------------------------------------------- /db/class.atkmysqlidb.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/db/class.atkmysqlidb.inc -------------------------------------------------------------------------------- /db/class.atkmysqliddl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/db/class.atkmysqliddl.inc -------------------------------------------------------------------------------- /db/class.atkmysqliquery.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/db/class.atkmysqliquery.inc -------------------------------------------------------------------------------- /db/class.atkmysqlquery.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/db/class.atkmysqlquery.inc -------------------------------------------------------------------------------- /db/class.atkoci805db.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/db/class.atkoci805db.inc -------------------------------------------------------------------------------- /db/class.atkoci805query.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/db/class.atkoci805query.inc -------------------------------------------------------------------------------- /db/class.atkoci8db.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/db/class.atkoci8db.inc -------------------------------------------------------------------------------- /db/class.atkoci8ddl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/db/class.atkoci8ddl.inc -------------------------------------------------------------------------------- /db/class.atkoci8query.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/db/class.atkoci8query.inc -------------------------------------------------------------------------------- /db/class.atkoci9db.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/db/class.atkoci9db.inc -------------------------------------------------------------------------------- /db/class.atkoci9ddl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/db/class.atkoci9ddl.inc -------------------------------------------------------------------------------- /db/class.atkoci9query.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/db/class.atkoci9query.inc -------------------------------------------------------------------------------- /db/class.atkpgsqldb.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/db/class.atkpgsqldb.inc -------------------------------------------------------------------------------- /db/class.atkpgsqlddl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/db/class.atkpgsqlddl.inc -------------------------------------------------------------------------------- /db/class.atkpgsqlquery.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/db/class.atkpgsqlquery.inc -------------------------------------------------------------------------------- /db/class.atkquery.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/db/class.atkquery.inc -------------------------------------------------------------------------------- /db/languages/mysql_de.lng: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/languages/mysql_en.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/db/languages/mysql_en.lng -------------------------------------------------------------------------------- /db/languages/mysql_nl.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/db/languages/mysql_nl.lng -------------------------------------------------------------------------------- /db/languages/oracle_en.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/db/languages/oracle_en.lng -------------------------------------------------------------------------------- /db/languages/oracle_nl.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/db/languages/oracle_nl.lng -------------------------------------------------------------------------------- /db/languages/postgresql_en.lng: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/languages/postgresql_nl.lng: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/statement/class.atkstatement.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/db/statement/class.atkstatement.inc -------------------------------------------------------------------------------- /defaultconfig.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/defaultconfig.inc.php -------------------------------------------------------------------------------- /doc/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/doc/AUTHORS -------------------------------------------------------------------------------- /doc/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/doc/CHANGES -------------------------------------------------------------------------------- /doc/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/doc/COPYRIGHT -------------------------------------------------------------------------------- /doc/FCK-CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/doc/FCK-CHANGES -------------------------------------------------------------------------------- /doc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/doc/LICENSE -------------------------------------------------------------------------------- /document/class.atkdocumentwriter.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/document/class.atkdocumentwriter.inc -------------------------------------------------------------------------------- /document/class.atkdocxwriter.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/document/class.atkdocxwriter.inc -------------------------------------------------------------------------------- /document/tbsooo/tbs_class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/document/tbsooo/tbs_class.php -------------------------------------------------------------------------------- /document/tbsooo/tbsooo_class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/document/tbsooo/tbsooo_class.php -------------------------------------------------------------------------------- /errors/class.atkerrorhandlerbase.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/errors/class.atkerrorhandlerbase.inc -------------------------------------------------------------------------------- /errors/class.atkmailerrorhandler.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/errors/class.atkmailerrorhandler.inc -------------------------------------------------------------------------------- /ext/captcha/captcha_fonts/Vera.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ext/captcha/captcha_fonts/Vera.ttf -------------------------------------------------------------------------------- /ext/captcha/captcha_fonts/VeraBI.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ext/captcha/captcha_fonts/VeraBI.ttf -------------------------------------------------------------------------------- /ext/captcha/captcha_fonts/VeraBd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ext/captcha/captcha_fonts/VeraBd.ttf -------------------------------------------------------------------------------- /ext/captcha/captcha_fonts/VeraIt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ext/captcha/captcha_fonts/VeraIt.ttf -------------------------------------------------------------------------------- /ext/captcha/captcha_fonts/VeraSe.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ext/captcha/captcha_fonts/VeraSe.ttf -------------------------------------------------------------------------------- /ext/captcha/img/captcha.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ext/captcha/img/captcha.jpg -------------------------------------------------------------------------------- /ext/captcha/img/captcha.jpg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ext/captcha/img/captcha.jpg.php -------------------------------------------------------------------------------- /ext/captcha/php-captcha.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ext/captcha/php-captcha.inc.php -------------------------------------------------------------------------------- /ext/json/json.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ext/json/json.php -------------------------------------------------------------------------------- /ext/phpmailer/ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ext/phpmailer/ChangeLog.txt -------------------------------------------------------------------------------- /ext/phpmailer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ext/phpmailer/LICENSE -------------------------------------------------------------------------------- /ext/phpmailer/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ext/phpmailer/README -------------------------------------------------------------------------------- /ext/phpmailer/class.phpmailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ext/phpmailer/class.phpmailer.php -------------------------------------------------------------------------------- /ext/phpmailer/class.smtp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ext/phpmailer/class.smtp.php -------------------------------------------------------------------------------- /ext/phpmailer/docs/extending.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ext/phpmailer/docs/extending.html -------------------------------------------------------------------------------- /ext/phpmailer/docs/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ext/phpmailer/docs/faq.html -------------------------------------------------------------------------------- /ext/phpmailer/docs/timeoutfix.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ext/phpmailer/docs/timeoutfix.diff -------------------------------------------------------------------------------- /ext/phpmailer/phpdoc/blank.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ext/phpmailer/phpdoc/blank.html -------------------------------------------------------------------------------- /ext/phpmailer/phpdoc/errors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ext/phpmailer/phpdoc/errors.html -------------------------------------------------------------------------------- /ext/phpmailer/phpdoc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ext/phpmailer/phpdoc/index.html -------------------------------------------------------------------------------- /ext/phpmailer/phpdoc/packages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ext/phpmailer/phpdoc/packages.html -------------------------------------------------------------------------------- /ext/phpmailer/test/phpunit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ext/phpmailer/test/phpunit.php -------------------------------------------------------------------------------- /ext/phpmailer/test/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ext/phpmailer/test/test.png -------------------------------------------------------------------------------- /ext/spyc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ext/spyc/README -------------------------------------------------------------------------------- /ext/spyc/spyc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ext/spyc/spyc.php -------------------------------------------------------------------------------- /ext/spyc/spyc.php5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ext/spyc/spyc.php5 -------------------------------------------------------------------------------- /filters/class.atkdistinctfilter.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/filters/class.atkdistinctfilter.inc -------------------------------------------------------------------------------- /filters/class.atkfilter.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/filters/class.atkfilter.inc -------------------------------------------------------------------------------- /filters/class.atkgroupbyfilter.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/filters/class.atkgroupbyfilter.inc -------------------------------------------------------------------------------- /fixture/class.atkfixturemanager.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/fixture/class.atkfixturemanager.inc -------------------------------------------------------------------------------- /front/class.atkfrontcontroller.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/front/class.atkfrontcontroller.inc -------------------------------------------------------------------------------- /handlers/class.atkactionhandler.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/handlers/class.atkactionhandler.inc -------------------------------------------------------------------------------- /handlers/class.atkaddhandler.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/handlers/class.atkaddhandler.inc -------------------------------------------------------------------------------- /handlers/class.atkadminhandler.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/handlers/class.atkadminhandler.inc -------------------------------------------------------------------------------- /handlers/class.atkcopyhandler.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/handlers/class.atkcopyhandler.inc -------------------------------------------------------------------------------- /handlers/class.atkdeletehandler.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/handlers/class.atkdeletehandler.inc -------------------------------------------------------------------------------- /handlers/class.atkedithandler.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/handlers/class.atkedithandler.inc -------------------------------------------------------------------------------- /handlers/class.atkexporthandler.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/handlers/class.atkexporthandler.inc -------------------------------------------------------------------------------- /handlers/class.atkimporthandler.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/handlers/class.atkimporthandler.inc -------------------------------------------------------------------------------- /handlers/class.atksavehandler.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/handlers/class.atksavehandler.inc -------------------------------------------------------------------------------- /handlers/class.atksearchhandler.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/handlers/class.atksearchhandler.inc -------------------------------------------------------------------------------- /handlers/class.atkselecthandler.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/handlers/class.atkselecthandler.inc -------------------------------------------------------------------------------- /handlers/class.atkupdatehandler.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/handlers/class.atkupdatehandler.inc -------------------------------------------------------------------------------- /handlers/class.atkvieweditbase.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/handlers/class.atkvieweditbase.inc -------------------------------------------------------------------------------- /handlers/class.atkviewhandler.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/handlers/class.atkviewhandler.inc -------------------------------------------------------------------------------- /handlers/class.atkxmlhandler.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/handlers/class.atkxmlhandler.inc -------------------------------------------------------------------------------- /images/arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/images/arrow.gif -------------------------------------------------------------------------------- /images/dummy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/images/dummy.gif -------------------------------------------------------------------------------- /images/lock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/images/lock.gif -------------------------------------------------------------------------------- /images/lock_expired.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/images/lock_expired.gif -------------------------------------------------------------------------------- /images/lock_head.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/images/lock_head.gif -------------------------------------------------------------------------------- /images/minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/images/minus.gif -------------------------------------------------------------------------------- /images/plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/images/plus.gif -------------------------------------------------------------------------------- /images/select_color_off.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/images/select_color_off.gif -------------------------------------------------------------------------------- /images/select_color_on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/images/select_color_on.gif -------------------------------------------------------------------------------- /images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/images/spinner.gif -------------------------------------------------------------------------------- /images/up-down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/images/up-down.gif -------------------------------------------------------------------------------- /include/autoload.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/include/autoload.inc -------------------------------------------------------------------------------- /include/basics.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/include/basics.inc -------------------------------------------------------------------------------- /include/compatibility.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/include/compatibility.inc -------------------------------------------------------------------------------- /include/configs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/include/configs.inc -------------------------------------------------------------------------------- /include/debugging.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/include/debugging.inc -------------------------------------------------------------------------------- /include/errorhandler.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/include/errorhandler.inc -------------------------------------------------------------------------------- /include/globals.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/include/globals.inc -------------------------------------------------------------------------------- /include/initial.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/include/initial.inc -------------------------------------------------------------------------------- /include/security.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/include/security.inc -------------------------------------------------------------------------------- /interface/class.atkserver.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/interface/class.atkserver.inc -------------------------------------------------------------------------------- /javascript/atk_tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/atk_tabs.js -------------------------------------------------------------------------------- /javascript/atkajaxfocus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/atkajaxfocus.js -------------------------------------------------------------------------------- /javascript/atkbusy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/atkbusy.js -------------------------------------------------------------------------------- /javascript/calendar/calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/calendar/calendar.js -------------------------------------------------------------------------------- /javascript/class.atkattribute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/class.atkattribute.js -------------------------------------------------------------------------------- /javascript/class.atkdatagrid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/class.atkdatagrid.js -------------------------------------------------------------------------------- /javascript/class.atkdateattribute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/class.atkdateattribute.js -------------------------------------------------------------------------------- /javascript/class.atkdebug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/class.atkdebug.js -------------------------------------------------------------------------------- /javascript/class.atkdialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/class.atkdialog.js -------------------------------------------------------------------------------- /javascript/class.atkform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/class.atkform.js -------------------------------------------------------------------------------- /javascript/class.atktabbedpane.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/class.atktabbedpane.js -------------------------------------------------------------------------------- /javascript/class.atktagattribute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/class.atktagattribute.js -------------------------------------------------------------------------------- /javascript/class.atktoolbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/class.atktoolbar.js -------------------------------------------------------------------------------- /javascript/class.atktools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/class.atktools.js -------------------------------------------------------------------------------- /javascript/class.atkunloadhelper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/class.atkunloadhelper.js -------------------------------------------------------------------------------- /javascript/colorpicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/colorpicker.js -------------------------------------------------------------------------------- /javascript/crossbrowser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/crossbrowser.js -------------------------------------------------------------------------------- /javascript/dhtml_formtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/dhtml_formtools.js -------------------------------------------------------------------------------- /javascript/dhtml_tabs.js.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/dhtml_tabs.js.php -------------------------------------------------------------------------------- /javascript/dropdown_menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/dropdown_menu.js -------------------------------------------------------------------------------- /javascript/formclear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/formclear.js -------------------------------------------------------------------------------- /javascript/formfocus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/formfocus.js -------------------------------------------------------------------------------- /javascript/formselect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/formselect.js -------------------------------------------------------------------------------- /javascript/formsubmit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/formsubmit.js -------------------------------------------------------------------------------- /javascript/jscookmenu/JSCookMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/jscookmenu/JSCookMenu.js -------------------------------------------------------------------------------- /javascript/jscookmenu/effect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/jscookmenu/effect.js -------------------------------------------------------------------------------- /javascript/jscookmenu/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/jscookmenu/theme.js -------------------------------------------------------------------------------- /javascript/launcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/launcher.js -------------------------------------------------------------------------------- /javascript/menuload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/menuload.js -------------------------------------------------------------------------------- /javascript/newwindow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/newwindow.js -------------------------------------------------------------------------------- /javascript/outlook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/outlook.js -------------------------------------------------------------------------------- /javascript/overlib/overlib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/overlib/overlib.js -------------------------------------------------------------------------------- /javascript/overlib/overlib_anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/overlib/overlib_anchor.js -------------------------------------------------------------------------------- /javascript/overlib/overlib_debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/overlib/overlib_debug.js -------------------------------------------------------------------------------- /javascript/overlib/overlib_shadow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/overlib/overlib_shadow.js -------------------------------------------------------------------------------- /javascript/overlibmws/BabelFish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/overlibmws/BabelFish.js -------------------------------------------------------------------------------- /javascript/overlibmws/arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/overlibmws/arrow.gif -------------------------------------------------------------------------------- /javascript/overlibmws/calendarmws.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/overlibmws/calendarmws.js -------------------------------------------------------------------------------- /javascript/overlibmws/cornerBL.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/overlibmws/cornerBL.gif -------------------------------------------------------------------------------- /javascript/overlibmws/cornerBR.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/overlibmws/cornerBR.gif -------------------------------------------------------------------------------- /javascript/overlibmws/cornerTL.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/overlibmws/cornerTL.gif -------------------------------------------------------------------------------- /javascript/overlibmws/cornerTR.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/overlibmws/cornerTR.gif -------------------------------------------------------------------------------- /javascript/overlibmws/edgeB.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/overlibmws/edgeB.gif -------------------------------------------------------------------------------- /javascript/overlibmws/edgeL.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/overlibmws/edgeL.gif -------------------------------------------------------------------------------- /javascript/overlibmws/edgeR.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/overlibmws/edgeR.gif -------------------------------------------------------------------------------- /javascript/overlibmws/edgeT.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/overlibmws/edgeT.gif -------------------------------------------------------------------------------- /javascript/overlibmws/exit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/overlibmws/exit.gif -------------------------------------------------------------------------------- /javascript/overlibmws/flower.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/overlibmws/flower.gif -------------------------------------------------------------------------------- /javascript/overlibmws/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/overlibmws/license.html -------------------------------------------------------------------------------- /javascript/overlibmws/oval.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/overlibmws/oval.gif -------------------------------------------------------------------------------- /javascript/overlibmws/overlibmws.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/overlibmws/overlibmws.js -------------------------------------------------------------------------------- /javascript/overlibmws/print.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/overlibmws/print.gif -------------------------------------------------------------------------------- /javascript/overlibmws/pushpin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/overlibmws/pushpin.gif -------------------------------------------------------------------------------- /javascript/overlibmws/quotation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/overlibmws/quotation.gif -------------------------------------------------------------------------------- /javascript/overlibmws/semitrans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/overlibmws/semitrans.gif -------------------------------------------------------------------------------- /javascript/overlibmws/sprintf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/overlibmws/sprintf.js -------------------------------------------------------------------------------- /javascript/overlibmws/square.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/overlibmws/square.gif -------------------------------------------------------------------------------- /javascript/popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/popup.js -------------------------------------------------------------------------------- /javascript/prototype-ext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/prototype-ext.js -------------------------------------------------------------------------------- /javascript/prototype-ui-ext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/prototype-ui-ext.js -------------------------------------------------------------------------------- /javascript/prototype/prototype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/prototype/prototype.js -------------------------------------------------------------------------------- /javascript/recordlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/recordlist.js -------------------------------------------------------------------------------- /javascript/scriptaculous-ext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/scriptaculous-ext.js -------------------------------------------------------------------------------- /javascript/scriptaculous/builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/scriptaculous/builder.js -------------------------------------------------------------------------------- /javascript/scriptaculous/controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/scriptaculous/controls.js -------------------------------------------------------------------------------- /javascript/scriptaculous/dragdrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/scriptaculous/dragdrop.js -------------------------------------------------------------------------------- /javascript/scriptaculous/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/scriptaculous/effects.js -------------------------------------------------------------------------------- /javascript/scriptaculous/slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/scriptaculous/slider.js -------------------------------------------------------------------------------- /javascript/scriptaculous/sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/scriptaculous/sound.js -------------------------------------------------------------------------------- /javascript/scriptaculous/unittest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/scriptaculous/unittest.js -------------------------------------------------------------------------------- /javascript/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/tools.js -------------------------------------------------------------------------------- /javascript/window/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/window/debug.js -------------------------------------------------------------------------------- /javascript/window/extended_debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/window/extended_debug.js -------------------------------------------------------------------------------- /javascript/window/themes/alert.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/window/themes/alert.css -------------------------------------------------------------------------------- /javascript/window/themes/darkX.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/window/themes/darkX.css -------------------------------------------------------------------------------- /javascript/window/themes/debug.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/window/themes/debug.css -------------------------------------------------------------------------------- /javascript/window/themes/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/window/themes/default.css -------------------------------------------------------------------------------- /javascript/window/themes/nuncio.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/window/themes/nuncio.css -------------------------------------------------------------------------------- /javascript/window/themes/spread.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/window/themes/spread.css -------------------------------------------------------------------------------- /javascript/window/themes/spread/.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/window/themes/spread/.gif -------------------------------------------------------------------------------- /javascript/window/themes/theme1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/window/themes/theme1.css -------------------------------------------------------------------------------- /javascript/window/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/window/tooltip.js -------------------------------------------------------------------------------- /javascript/window/window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/window/window.js -------------------------------------------------------------------------------- /javascript/window/window_effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/window/window_effects.js -------------------------------------------------------------------------------- /javascript/window/window_ext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/window/window_ext.js -------------------------------------------------------------------------------- /javascript/xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/javascript/xml.js -------------------------------------------------------------------------------- /keyboard/class.atkkeyboard.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/keyboard/class.atkkeyboard.inc -------------------------------------------------------------------------------- /languages/bp.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/languages/bp.lng -------------------------------------------------------------------------------- /languages/ca.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/languages/ca.lng -------------------------------------------------------------------------------- /languages/cf.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/languages/cf.lng -------------------------------------------------------------------------------- /languages/cs.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/languages/cs.lng -------------------------------------------------------------------------------- /languages/da.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/languages/da.lng -------------------------------------------------------------------------------- /languages/de.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/languages/de.lng -------------------------------------------------------------------------------- /languages/de_old.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/languages/de_old.lng -------------------------------------------------------------------------------- /languages/el.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/languages/el.lng -------------------------------------------------------------------------------- /languages/en.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/languages/en.lng -------------------------------------------------------------------------------- /languages/es.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/languages/es.lng -------------------------------------------------------------------------------- /languages/fi.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/languages/fi.lng -------------------------------------------------------------------------------- /languages/fr.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/languages/fr.lng -------------------------------------------------------------------------------- /languages/hu.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/languages/hu.lng -------------------------------------------------------------------------------- /languages/id.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/languages/id.lng -------------------------------------------------------------------------------- /languages/it.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/languages/it.lng -------------------------------------------------------------------------------- /languages/ja.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/languages/ja.lng -------------------------------------------------------------------------------- /languages/nl.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/languages/nl.lng -------------------------------------------------------------------------------- /languages/no.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/languages/no.lng -------------------------------------------------------------------------------- /languages/pl.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/languages/pl.lng -------------------------------------------------------------------------------- /languages/pt.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/languages/pt.lng -------------------------------------------------------------------------------- /languages/ru.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/languages/ru.lng -------------------------------------------------------------------------------- /languages/sk.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/languages/sk.lng -------------------------------------------------------------------------------- /languages/sv.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/languages/sv.lng -------------------------------------------------------------------------------- /languages/tr.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/languages/tr.lng -------------------------------------------------------------------------------- /languages/uk.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/languages/uk.lng -------------------------------------------------------------------------------- /languages/zh.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/languages/zh.lng -------------------------------------------------------------------------------- /listeners/class.atkrecyclebin.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/listeners/class.atkrecyclebin.inc -------------------------------------------------------------------------------- /lock/class.atkdblock.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/lock/class.atkdblock.inc -------------------------------------------------------------------------------- /lock/class.atklock.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/lock/class.atklock.inc -------------------------------------------------------------------------------- /lock/db/install-mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/lock/db/install-mysql.sql -------------------------------------------------------------------------------- /lock/db/install-oracle.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/lock/db/install-oracle.sql -------------------------------------------------------------------------------- /lock/lock.js.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/lock/lock.js.php -------------------------------------------------------------------------------- /lock/lock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/lock/lock.php -------------------------------------------------------------------------------- /menu/class.atkcookmenu.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/menu/class.atkcookmenu.inc -------------------------------------------------------------------------------- /menu/class.atkdhtmlmenu.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/menu/class.atkdhtmlmenu.inc -------------------------------------------------------------------------------- /menu/class.atkdropdownmenu.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/menu/class.atkdropdownmenu.inc -------------------------------------------------------------------------------- /menu/class.atkframesmenu.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/menu/class.atkframesmenu.inc -------------------------------------------------------------------------------- /menu/class.atkmenu.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/menu/class.atkmenu.inc -------------------------------------------------------------------------------- /menu/class.atkmenuinterface.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/menu/class.atkmenuinterface.inc -------------------------------------------------------------------------------- /menu/class.atkmodernmenu.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/menu/class.atkmodernmenu.inc -------------------------------------------------------------------------------- /menu/class.atkoutlookmenu.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/menu/class.atkoutlookmenu.inc -------------------------------------------------------------------------------- /menu/class.atkplainmenu.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/menu/class.atkplainmenu.inc -------------------------------------------------------------------------------- /meta/class.atkmetapolicy.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/meta/class.atkmetapolicy.inc -------------------------------------------------------------------------------- /meta/module.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/meta/module.inc -------------------------------------------------------------------------------- /modules/atkmoduletools.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/modules/atkmoduletools.inc -------------------------------------------------------------------------------- /modules/class.atkmodule.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/modules/class.atkmodule.inc -------------------------------------------------------------------------------- /popups/colorpicker.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/popups/colorpicker.inc -------------------------------------------------------------------------------- /popups/help.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/popups/help.inc -------------------------------------------------------------------------------- /recordlist/class.atkcolumnconfig.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/recordlist/class.atkcolumnconfig.inc -------------------------------------------------------------------------------- /recordlist/class.atkrecordlist.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/recordlist/class.atkrecordlist.inc -------------------------------------------------------------------------------- /recordlist/class.atktotalizer.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/recordlist/class.atktotalizer.inc -------------------------------------------------------------------------------- /relations/class.atkrelation.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/relations/class.atkrelation.inc -------------------------------------------------------------------------------- /scripts/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /scripts/db2yaml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/scripts/db2yaml.php -------------------------------------------------------------------------------- /scripts/table2yaml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/scripts/table2yaml.php -------------------------------------------------------------------------------- /security/class.atkurlvault.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/security/class.atkurlvault.inc -------------------------------------------------------------------------------- /security/class.auth_config.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/security/class.auth_config.inc -------------------------------------------------------------------------------- /security/class.auth_db.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/security/class.auth_db.inc -------------------------------------------------------------------------------- /security/class.auth_imap.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/security/class.auth_imap.inc -------------------------------------------------------------------------------- /security/class.auth_interface.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/security/class.auth_interface.inc -------------------------------------------------------------------------------- /security/class.auth_ldap.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/security/class.auth_ldap.inc -------------------------------------------------------------------------------- /security/class.auth_none.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/security/class.auth_none.inc -------------------------------------------------------------------------------- /security/class.auth_pop3.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/security/class.auth_pop3.inc -------------------------------------------------------------------------------- /security/class.auth_saml.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/security/class.auth_saml.inc -------------------------------------------------------------------------------- /security/class.auth_server.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/security/class.auth_server.inc -------------------------------------------------------------------------------- /security/class.auth_sspi.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/security/class.auth_sspi.inc -------------------------------------------------------------------------------- /session/class.atksessionmanager.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/session/class.atksessionmanager.inc -------------------------------------------------------------------------------- /session/class.atksessionstore.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/session/class.atksessionstore.inc -------------------------------------------------------------------------------- /session/class.atkstate.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/session/class.atkstate.inc -------------------------------------------------------------------------------- /skel-tests/AllTests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/skel-tests/AllTests.php -------------------------------------------------------------------------------- /skel-tests/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/skel-tests/README -------------------------------------------------------------------------------- /skel-tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/skel-tests/bootstrap.php -------------------------------------------------------------------------------- /skel-tests/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/skel-tests/phpunit.xml -------------------------------------------------------------------------------- /skel/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/skel/app.php -------------------------------------------------------------------------------- /skel/atk.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/skel/atk.inc -------------------------------------------------------------------------------- /skel/atktmp/compiled/tpl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/skel/atktmp/compiled/tpl/README -------------------------------------------------------------------------------- /skel/config.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/skel/config.inc.php -------------------------------------------------------------------------------- /skel/configs/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/skel/configs/README -------------------------------------------------------------------------------- /skel/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/skel/console.php -------------------------------------------------------------------------------- /skel/debugger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/skel/debugger.php -------------------------------------------------------------------------------- /skel/dispatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/skel/dispatch.php -------------------------------------------------------------------------------- /skel/help/en/class.nodename.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/skel/help/en/class.nodename.inc -------------------------------------------------------------------------------- /skel/include.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/skel/include.php -------------------------------------------------------------------------------- /skel/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/skel/index.php -------------------------------------------------------------------------------- /skel/init_mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/skel/init_mysql.sql -------------------------------------------------------------------------------- /skel/languages/en.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/skel/languages/en.lng -------------------------------------------------------------------------------- /skel/menu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/skel/menu.php -------------------------------------------------------------------------------- /skel/modules/config.modules.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/skel/modules/config.modules.inc -------------------------------------------------------------------------------- /skel/modules/test/class.test.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/skel/modules/test/class.test.inc -------------------------------------------------------------------------------- /skel/modules/test/install.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/skel/modules/test/install.sql -------------------------------------------------------------------------------- /skel/modules/test/languages/en.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/skel/modules/test/languages/en.lng -------------------------------------------------------------------------------- /skel/modules/test/module.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/skel/modules/test/module.inc -------------------------------------------------------------------------------- /skel/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/skel/server.php -------------------------------------------------------------------------------- /skel/top.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/skel/top.php -------------------------------------------------------------------------------- /skel/welcome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/skel/welcome.php -------------------------------------------------------------------------------- /test/bootstrap.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/test/bootstrap.inc -------------------------------------------------------------------------------- /test/class.atkattributetestcase.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/test/class.atkattributetestcase.inc -------------------------------------------------------------------------------- /test/class.atkcachetestcase.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/test/class.atkcachetestcase.inc -------------------------------------------------------------------------------- /test/class.atkplugintestcase.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/test/class.atkplugintestcase.inc -------------------------------------------------------------------------------- /test/class.atktestcase.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/test/class.atktestcase.inc -------------------------------------------------------------------------------- /test/mocks/class.atkmockdb.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/test/mocks/class.atkmockdb.inc -------------------------------------------------------------------------------- /test/mocks/class.atkmockddl.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/test/mocks/class.atkmockddl.inc -------------------------------------------------------------------------------- /test/mocks/class.atkmocknode.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/test/mocks/class.atkmocknode.inc -------------------------------------------------------------------------------- /test/mocks/class.atkmockquery.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/test/mocks/class.atkmockquery.inc -------------------------------------------------------------------------------- /themes/achievo_modern/images/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/achievo_modern/images/top.png -------------------------------------------------------------------------------- /themes/achievo_modern/styles/top.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/achievo_modern/styles/top.css -------------------------------------------------------------------------------- /themes/achievo_modern/templates/login_meta.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/achievo_modern/templates/page.tpl: -------------------------------------------------------------------------------- 1 | {$content} 2 | -------------------------------------------------------------------------------- /themes/achievo_modern/themedef.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/achievo_modern/themedef.inc -------------------------------------------------------------------------------- /themes/basic/styles/debugger.css: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /themes/basic/styles/dhtmlmenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/basic/styles/dhtmlmenu.css -------------------------------------------------------------------------------- /themes/basic/styles/recordlist.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/basic/styles/recordlist.css -------------------------------------------------------------------------------- /themes/basic/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/basic/styles/style.css -------------------------------------------------------------------------------- /themes/basic/styles/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/basic/styles/tabs.css -------------------------------------------------------------------------------- /themes/basic/templates/action.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/basic/templates/action.tpl -------------------------------------------------------------------------------- /themes/basic/templates/box.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/basic/templates/box.tpl -------------------------------------------------------------------------------- /themes/basic/templates/editform.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/basic/templates/editform.tpl -------------------------------------------------------------------------------- /themes/basic/templates/list.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/basic/templates/list.tpl -------------------------------------------------------------------------------- /themes/basic/templates/login.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/basic/templates/login.tpl -------------------------------------------------------------------------------- /themes/basic/templates/login_meta.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/basic/templates/menu.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/basic/templates/menu.tpl -------------------------------------------------------------------------------- /themes/basic/templates/statusbar.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/basic/templates/statusbar.tpl -------------------------------------------------------------------------------- /themes/basic/templates/tabs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/basic/templates/tabs.tpl -------------------------------------------------------------------------------- /themes/basic/templates/top.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/basic/templates/top.tpl -------------------------------------------------------------------------------- /themes/basic/templates/viewform.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/basic/templates/viewform.tpl -------------------------------------------------------------------------------- /themes/basic/themedef.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/basic/themedef.inc -------------------------------------------------------------------------------- /themes/default/images/arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/default/images/arrow.gif -------------------------------------------------------------------------------- /themes/default/images/arrowdown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/default/images/arrowdown.gif -------------------------------------------------------------------------------- /themes/default/images/arrowup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/default/images/arrowup.gif -------------------------------------------------------------------------------- /themes/default/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/default/images/blank.gif -------------------------------------------------------------------------------- /themes/default/images/empty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/default/images/empty.gif -------------------------------------------------------------------------------- /themes/default/images/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/default/images/help.gif -------------------------------------------------------------------------------- /themes/default/styles/atkdebug.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/default/styles/atkdebug.css -------------------------------------------------------------------------------- /themes/default/styles/cookmenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/default/styles/cookmenu.css -------------------------------------------------------------------------------- /themes/default/styles/debugger.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/default/styles/debugger.css -------------------------------------------------------------------------------- /themes/default/styles/dhtmlmenu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/default/styles/dhtmlmenu.css -------------------------------------------------------------------------------- /themes/default/styles/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/default/styles/menu.css -------------------------------------------------------------------------------- /themes/default/styles/recordlist.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/default/styles/recordlist.css -------------------------------------------------------------------------------- /themes/default/styles/sections.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/default/styles/sections.css -------------------------------------------------------------------------------- /themes/default/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/default/styles/style.css -------------------------------------------------------------------------------- /themes/default/styles/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/default/styles/tabs.css -------------------------------------------------------------------------------- /themes/default/templates/action.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/default/templates/action.tpl -------------------------------------------------------------------------------- /themes/default/templates/box.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/default/templates/box.tpl -------------------------------------------------------------------------------- /themes/default/templates/dgindex.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/default/templates/dgindex.tpl -------------------------------------------------------------------------------- /themes/default/templates/dglimit.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/default/templates/dglimit.tpl -------------------------------------------------------------------------------- /themes/default/templates/dialog.tpl: -------------------------------------------------------------------------------- 1 |
2 | {$content} -------------------------------------------------------------------------------- /themes/default/templates/field.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/default/templates/field.tpl -------------------------------------------------------------------------------- /themes/default/templates/list.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/default/templates/list.tpl -------------------------------------------------------------------------------- /themes/default/templates/login.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/default/templates/login.tpl -------------------------------------------------------------------------------- /themes/default/templates/login_meta.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/default/templates/tabs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/default/templates/tabs.tpl -------------------------------------------------------------------------------- /themes/default/themedef.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/default/themedef.inc -------------------------------------------------------------------------------- /themes/macoslike/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/macoslike/images/blank.gif -------------------------------------------------------------------------------- /themes/macoslike/images/empty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/macoslike/images/empty.gif -------------------------------------------------------------------------------- /themes/macoslike/images/handvat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/macoslike/images/handvat.gif -------------------------------------------------------------------------------- /themes/macoslike/images/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/macoslike/images/help.gif -------------------------------------------------------------------------------- /themes/macoslike/images/left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/macoslike/images/left.gif -------------------------------------------------------------------------------- /themes/macoslike/images/logout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/macoslike/images/logout.gif -------------------------------------------------------------------------------- /themes/macoslike/images/right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/macoslike/images/right.gif -------------------------------------------------------------------------------- /themes/macoslike/images/tab_back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/macoslike/images/tab_back.gif -------------------------------------------------------------------------------- /themes/macoslike/images/tab_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/macoslike/images/tab_left.gif -------------------------------------------------------------------------------- /themes/macoslike/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/macoslike/styles/style.css -------------------------------------------------------------------------------- /themes/macoslike/styles/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/macoslike/styles/tabs.css -------------------------------------------------------------------------------- /themes/macoslike/templates/box.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/macoslike/templates/box.tpl -------------------------------------------------------------------------------- /themes/macoslike/templates/login.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/macoslike/templates/login.tpl -------------------------------------------------------------------------------- /themes/macoslike/templates/login_meta.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/macoslike/templates/tabs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/macoslike/templates/tabs.tpl -------------------------------------------------------------------------------- /themes/macoslike/templates/top.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/macoslike/templates/top.tpl -------------------------------------------------------------------------------- /themes/macoslike/themedef.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/macoslike/themedef.inc -------------------------------------------------------------------------------- /themes/modern/images/keys.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/modern/images/keys.gif -------------------------------------------------------------------------------- /themes/modern/styles/recordlist.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/modern/styles/recordlist.css -------------------------------------------------------------------------------- /themes/modern/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/modern/styles/style.css -------------------------------------------------------------------------------- /themes/modern/styles/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/modern/styles/tabs.css -------------------------------------------------------------------------------- /themes/modern/templates/box.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/modern/templates/box.tpl -------------------------------------------------------------------------------- /themes/modern/templates/login.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/modern/templates/login.tpl -------------------------------------------------------------------------------- /themes/modern/templates/login_meta.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/modern/templates/tabs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/modern/templates/tabs.tpl -------------------------------------------------------------------------------- /themes/modern/themedef.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/modern/themedef.inc -------------------------------------------------------------------------------- /themes/moronic/styles/recordlist.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/moronic/styles/recordlist.css -------------------------------------------------------------------------------- /themes/moronic/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/moronic/styles/style.css -------------------------------------------------------------------------------- /themes/moronic/templates/box.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/moronic/templates/box.tpl -------------------------------------------------------------------------------- /themes/moronic/templates/login_meta.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/moronic/themedef.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/moronic/themedef.inc -------------------------------------------------------------------------------- /themes/outlook/images/add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/outlook/images/add.gif -------------------------------------------------------------------------------- /themes/outlook/images/admin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/outlook/images/admin.gif -------------------------------------------------------------------------------- /themes/outlook/images/arrowdown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/outlook/images/arrowdown.gif -------------------------------------------------------------------------------- /themes/outlook/images/arrowup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/outlook/images/arrowup.gif -------------------------------------------------------------------------------- /themes/outlook/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/outlook/images/blank.gif -------------------------------------------------------------------------------- /themes/outlook/images/dark_back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/outlook/images/dark_back.gif -------------------------------------------------------------------------------- /themes/outlook/images/delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/outlook/images/delete.gif -------------------------------------------------------------------------------- /themes/outlook/images/edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/outlook/images/edit.gif -------------------------------------------------------------------------------- /themes/outlook/images/empty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/outlook/images/empty.gif -------------------------------------------------------------------------------- /themes/outlook/images/handvat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/outlook/images/handvat.gif -------------------------------------------------------------------------------- /themes/outlook/images/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/outlook/images/help.gif -------------------------------------------------------------------------------- /themes/outlook/images/keys.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/outlook/images/keys.gif -------------------------------------------------------------------------------- /themes/outlook/images/left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/outlook/images/left.gif -------------------------------------------------------------------------------- /themes/outlook/images/logout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/outlook/images/logout.gif -------------------------------------------------------------------------------- /themes/outlook/images/right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/outlook/images/right.gif -------------------------------------------------------------------------------- /themes/outlook/images/select.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/outlook/images/select.gif -------------------------------------------------------------------------------- /themes/outlook/images/tab_back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/outlook/images/tab_back.gif -------------------------------------------------------------------------------- /themes/outlook/images/tab_back_s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/outlook/images/tab_back_s.gif -------------------------------------------------------------------------------- /themes/outlook/images/tab_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/outlook/images/tab_left.gif -------------------------------------------------------------------------------- /themes/outlook/images/tab_left_s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/outlook/images/tab_left_s.gif -------------------------------------------------------------------------------- /themes/outlook/images/tab_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/outlook/images/tab_right.gif -------------------------------------------------------------------------------- /themes/outlook/images/view.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/outlook/images/view.gif -------------------------------------------------------------------------------- /themes/outlook/styles/recordlist.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/outlook/styles/recordlist.css -------------------------------------------------------------------------------- /themes/outlook/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/outlook/styles/style.css -------------------------------------------------------------------------------- /themes/outlook/styles/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/outlook/styles/tabs.css -------------------------------------------------------------------------------- /themes/outlook/styles/top.css: -------------------------------------------------------------------------------- 1 | form{ 2 | display: inline; 3 | } 4 | -------------------------------------------------------------------------------- /themes/outlook/templates/box.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/outlook/templates/box.tpl -------------------------------------------------------------------------------- /themes/outlook/templates/login.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/outlook/templates/login.tpl -------------------------------------------------------------------------------- /themes/outlook/templates/login_meta.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/outlook/templates/tabs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/outlook/templates/tabs.tpl -------------------------------------------------------------------------------- /themes/outlook/templates/top.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/outlook/templates/top.tpl -------------------------------------------------------------------------------- /themes/outlook/themedef.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/outlook/themedef.inc -------------------------------------------------------------------------------- /themes/steelblue/images/bannerBg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/steelblue/images/bannerBg.jpg -------------------------------------------------------------------------------- /themes/steelblue/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/steelblue/images/blank.gif -------------------------------------------------------------------------------- /themes/steelblue/images/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/steelblue/images/help.png -------------------------------------------------------------------------------- /themes/steelblue/images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/steelblue/images/logo.jpg -------------------------------------------------------------------------------- /themes/steelblue/images/menubg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/steelblue/images/menubg.gif -------------------------------------------------------------------------------- /themes/steelblue/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/steelblue/images/spinner.gif -------------------------------------------------------------------------------- /themes/steelblue/images/subtabon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/steelblue/images/subtabon.gif -------------------------------------------------------------------------------- /themes/steelblue/images/tabLeft.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/steelblue/images/tabLeft.gif -------------------------------------------------------------------------------- /themes/steelblue/images/tabRight.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/steelblue/images/tabRight.gif -------------------------------------------------------------------------------- /themes/steelblue/styles/menu.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/steelblue/styles/menu.css -------------------------------------------------------------------------------- /themes/steelblue/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/steelblue/styles/style.css -------------------------------------------------------------------------------- /themes/steelblue/styles/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/steelblue/styles/tabs.css -------------------------------------------------------------------------------- /themes/steelblue/styles/top.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/steelblue/styles/top.css -------------------------------------------------------------------------------- /themes/steelblue/templates/body.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/steelblue/templates/body.tpl -------------------------------------------------------------------------------- /themes/steelblue/templates/box.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/steelblue/templates/box.tpl -------------------------------------------------------------------------------- /themes/steelblue/templates/field.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/steelblue/templates/field.tpl -------------------------------------------------------------------------------- /themes/steelblue/templates/login.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/steelblue/templates/login.tpl -------------------------------------------------------------------------------- /themes/steelblue/templates/login_meta.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/steelblue/templates/menu.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/steelblue/templates/menu.tpl -------------------------------------------------------------------------------- /themes/steelblue/templates/tabs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/steelblue/templates/tabs.tpl -------------------------------------------------------------------------------- /themes/steelblue/templates/top.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/steelblue/templates/top.tpl -------------------------------------------------------------------------------- /themes/steelblue/themedef.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/steelblue/themedef.inc -------------------------------------------------------------------------------- /themes/stillblue/images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/stillblue/images/logo.jpg -------------------------------------------------------------------------------- /themes/stillblue/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/stillblue/styles/style.css -------------------------------------------------------------------------------- /themes/stillblue/styles/top.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/stillblue/styles/top.css -------------------------------------------------------------------------------- /themes/stillblue/templates/box.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/stillblue/templates/box.tpl -------------------------------------------------------------------------------- /themes/stillblue/templates/login_meta.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/stillblue/templates/top.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/stillblue/templates/top.tpl -------------------------------------------------------------------------------- /themes/stillblue/themedef.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/stillblue/themedef.inc -------------------------------------------------------------------------------- /themes/t3skin/styles/recordlist.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/t3skin/styles/recordlist.css -------------------------------------------------------------------------------- /themes/t3skin/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/t3skin/styles/style.css -------------------------------------------------------------------------------- /themes/t3skin/templates/box.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/t3skin/templates/box.tpl -------------------------------------------------------------------------------- /themes/t3skin/templates/login_meta.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/t3skin/templates/menu.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/t3skin/templates/menu.tpl -------------------------------------------------------------------------------- /themes/t3skin/themedef.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/t3skin/themedef.inc -------------------------------------------------------------------------------- /themes/win2k/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/win2k/images/blank.gif -------------------------------------------------------------------------------- /themes/win2k/images/icoClose.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/win2k/images/icoClose.gif -------------------------------------------------------------------------------- /themes/win2k/images/icoMsgKey.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/win2k/images/icoMsgKey.gif -------------------------------------------------------------------------------- /themes/win2k/images/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/win2k/images/logo.gif -------------------------------------------------------------------------------- /themes/win2k/images/password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/win2k/images/password.png -------------------------------------------------------------------------------- /themes/win2k/images/tab_back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/win2k/images/tab_back.gif -------------------------------------------------------------------------------- /themes/win2k/images/tab_back_s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/win2k/images/tab_back_s.gif -------------------------------------------------------------------------------- /themes/win2k/images/tab_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/win2k/images/tab_left.gif -------------------------------------------------------------------------------- /themes/win2k/images/tab_left_s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/win2k/images/tab_left_s.gif -------------------------------------------------------------------------------- /themes/win2k/images/tab_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/win2k/images/tab_right.gif -------------------------------------------------------------------------------- /themes/win2k/images/tab_right_s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/win2k/images/tab_right_s.gif -------------------------------------------------------------------------------- /themes/win2k/styles/recordlist.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/win2k/styles/recordlist.css -------------------------------------------------------------------------------- /themes/win2k/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/win2k/styles/style.css -------------------------------------------------------------------------------- /themes/win2k/styles/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/win2k/styles/tabs.css -------------------------------------------------------------------------------- /themes/win2k/styles/top.css: -------------------------------------------------------------------------------- 1 | form{ 2 | display: inline; 3 | } 4 | -------------------------------------------------------------------------------- /themes/win2k/templates/box.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/win2k/templates/box.tpl -------------------------------------------------------------------------------- /themes/win2k/templates/login.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/win2k/templates/login.tpl -------------------------------------------------------------------------------- /themes/win2k/templates/login_meta.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/win2k/templates/tabs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/win2k/templates/tabs.tpl -------------------------------------------------------------------------------- /themes/win2k/templates/top.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/win2k/templates/top.tpl -------------------------------------------------------------------------------- /themes/win2k/themedef.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/win2k/themedef.inc -------------------------------------------------------------------------------- /themes/winxp/icons/toolbar/bold.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/winxp/icons/toolbar/bold.gif -------------------------------------------------------------------------------- /themes/winxp/icons/toolbar/link.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/winxp/icons/toolbar/link.gif -------------------------------------------------------------------------------- /themes/winxp/icons/tree/tree_end.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/winxp/icons/tree/tree_end.gif -------------------------------------------------------------------------------- /themes/winxp/images/arrow_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/winxp/images/arrow_down.gif -------------------------------------------------------------------------------- /themes/winxp/images/arrow_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/winxp/images/arrow_up.gif -------------------------------------------------------------------------------- /themes/winxp/images/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/winxp/images/help.gif -------------------------------------------------------------------------------- /themes/winxp/images/icoClose.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/winxp/images/icoClose.gif -------------------------------------------------------------------------------- /themes/winxp/images/icoMsgKey.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/winxp/images/icoMsgKey.gif -------------------------------------------------------------------------------- /themes/winxp/images/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/winxp/images/information.png -------------------------------------------------------------------------------- /themes/winxp/images/password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/winxp/images/password.png -------------------------------------------------------------------------------- /themes/winxp/javascript/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/winxp/javascript/menu.js -------------------------------------------------------------------------------- /themes/winxp/styles/recordlist.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/winxp/styles/recordlist.css -------------------------------------------------------------------------------- /themes/winxp/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/winxp/styles/style.css -------------------------------------------------------------------------------- /themes/winxp/styles/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/winxp/styles/tabs.css -------------------------------------------------------------------------------- /themes/winxp/styles/top.css: -------------------------------------------------------------------------------- 1 | form{ 2 | display: inline; 3 | } 4 | -------------------------------------------------------------------------------- /themes/winxp/templates/box.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/winxp/templates/box.tpl -------------------------------------------------------------------------------- /themes/winxp/templates/editform.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/winxp/templates/editform.tpl -------------------------------------------------------------------------------- /themes/winxp/templates/login.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/winxp/templates/login.tpl -------------------------------------------------------------------------------- /themes/winxp/templates/login_meta.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /themes/winxp/templates/menu.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/winxp/templates/menu.tpl -------------------------------------------------------------------------------- /themes/winxp/templates/tabs.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/winxp/templates/tabs.tpl -------------------------------------------------------------------------------- /themes/winxp/templates/top.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/winxp/templates/top.tpl -------------------------------------------------------------------------------- /themes/winxp/themedef.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/themes/winxp/themedef.inc -------------------------------------------------------------------------------- /ui/class.atkactionboxbuilder.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/class.atkactionboxbuilder.inc -------------------------------------------------------------------------------- /ui/class.atkdialog.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/class.atkdialog.inc -------------------------------------------------------------------------------- /ui/class.atkindexpage.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/class.atkindexpage.inc -------------------------------------------------------------------------------- /ui/class.atkoutput.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/class.atkoutput.inc -------------------------------------------------------------------------------- /ui/class.atkpage.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/class.atkpage.inc -------------------------------------------------------------------------------- /ui/class.atkpagebuilder.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/class.atkpagebuilder.inc -------------------------------------------------------------------------------- /ui/class.atkphpview.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/class.atkphpview.inc -------------------------------------------------------------------------------- /ui/class.atksmarty.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/class.atksmarty.inc -------------------------------------------------------------------------------- /ui/class.atktheme.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/class.atktheme.inc -------------------------------------------------------------------------------- /ui/class.atkthemecompiler.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/class.atkthemecompiler.inc -------------------------------------------------------------------------------- /ui/class.atkui.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/class.atkui.inc -------------------------------------------------------------------------------- /ui/plugins/block.atknavigator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/plugins/block.atknavigator.php -------------------------------------------------------------------------------- /ui/plugins/function.atkconf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/plugins/function.atkconf.php -------------------------------------------------------------------------------- /ui/plugins/function.atkconfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/plugins/function.atkconfig.php -------------------------------------------------------------------------------- /ui/plugins/function.atkdatefield.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/plugins/function.atkdatefield.php -------------------------------------------------------------------------------- /ui/plugins/function.atkmessages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/plugins/function.atkmessages.php -------------------------------------------------------------------------------- /ui/plugins/function.atkmoduledir.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/plugins/function.atkmoduledir.php -------------------------------------------------------------------------------- /ui/plugins/function.atkscript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/plugins/function.atkscript.php -------------------------------------------------------------------------------- /ui/plugins/function.atkstyle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/plugins/function.atkstyle.php -------------------------------------------------------------------------------- /ui/plugins/function.atktext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/plugins/function.atktext.php -------------------------------------------------------------------------------- /ui/plugins/function.atkthemeicon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/plugins/function.atkthemeicon.php -------------------------------------------------------------------------------- /ui/plugins/function.atkthemeimg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/plugins/function.atkthemeimg.php -------------------------------------------------------------------------------- /ui/plugins/function.stacktrace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/plugins/function.stacktrace.php -------------------------------------------------------------------------------- /ui/plugins/modifier.atkjson.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/plugins/modifier.atkjson.php -------------------------------------------------------------------------------- /ui/plugins/modifier.atkvardump.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/plugins/modifier.atkvardump.php -------------------------------------------------------------------------------- /ui/plugins/resource.string.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/plugins/resource.string.php -------------------------------------------------------------------------------- /ui/plugins/resource.theme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/plugins/resource.theme.php -------------------------------------------------------------------------------- /ui/plugins/resource.ui.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/plugins/resource.ui.php -------------------------------------------------------------------------------- /ui/smarty/Config_File.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/smarty/Config_File.class.php -------------------------------------------------------------------------------- /ui/smarty/Smarty.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/smarty/Smarty.class.php -------------------------------------------------------------------------------- /ui/smarty/Smarty_Compiler.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/smarty/Smarty_Compiler.class.php -------------------------------------------------------------------------------- /ui/smarty/debug.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/smarty/debug.tpl -------------------------------------------------------------------------------- /ui/smarty/internals/core.rm_auto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/smarty/internals/core.rm_auto.php -------------------------------------------------------------------------------- /ui/smarty/internals/core.rmdir.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/smarty/internals/core.rmdir.php -------------------------------------------------------------------------------- /ui/smarty/plugins/function.cycle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/smarty/plugins/function.cycle.php -------------------------------------------------------------------------------- /ui/smarty/plugins/function.debug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/smarty/plugins/function.debug.php -------------------------------------------------------------------------------- /ui/smarty/plugins/function.eval.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/smarty/plugins/function.eval.php -------------------------------------------------------------------------------- /ui/smarty/plugins/function.fetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/smarty/plugins/function.fetch.php -------------------------------------------------------------------------------- /ui/smarty/plugins/function.math.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/smarty/plugins/function.math.php -------------------------------------------------------------------------------- /ui/smarty/plugins/function.popup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/smarty/plugins/function.popup.php -------------------------------------------------------------------------------- /ui/smarty/plugins/modifier.cat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/smarty/plugins/modifier.cat.php -------------------------------------------------------------------------------- /ui/smarty/plugins/modifier.lower.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/smarty/plugins/modifier.lower.php -------------------------------------------------------------------------------- /ui/smarty/plugins/modifier.nl2br.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/smarty/plugins/modifier.nl2br.php -------------------------------------------------------------------------------- /ui/smarty/plugins/modifier.strip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/smarty/plugins/modifier.strip.php -------------------------------------------------------------------------------- /ui/smarty/plugins/modifier.upper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/ui/smarty/plugins/modifier.upper.php -------------------------------------------------------------------------------- /utils/adodb-time.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/utils/adodb-time.inc.php -------------------------------------------------------------------------------- /utils/class.atkactionlistener.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/utils/class.atkactionlistener.inc -------------------------------------------------------------------------------- /utils/class.atkclassloader.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/utils/class.atkclassloader.inc -------------------------------------------------------------------------------- /utils/class.atkcompatselector.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/utils/class.atkcompatselector.inc -------------------------------------------------------------------------------- /utils/class.atkdataholder.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/utils/class.atkdataholder.inc -------------------------------------------------------------------------------- /utils/class.atkdebugger.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/utils/class.atkdebugger.inc -------------------------------------------------------------------------------- /utils/class.atkeditformmodifier.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/utils/class.atkeditformmodifier.inc -------------------------------------------------------------------------------- /utils/class.atkeventlog.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/utils/class.atkeventlog.inc -------------------------------------------------------------------------------- /utils/class.atkfileexport.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/utils/class.atkfileexport.inc -------------------------------------------------------------------------------- /utils/class.atkfileutils.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/utils/class.atkfileutils.inc -------------------------------------------------------------------------------- /utils/class.atkframeset.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/utils/class.atkframeset.inc -------------------------------------------------------------------------------- /utils/class.atkiputils.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/utils/class.atkiputils.inc -------------------------------------------------------------------------------- /utils/class.atkjson.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/utils/class.atkjson.inc -------------------------------------------------------------------------------- /utils/class.atkmail.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/utils/class.atkmail.inc -------------------------------------------------------------------------------- /utils/class.atkmailer.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/utils/class.atkmailer.inc -------------------------------------------------------------------------------- /utils/class.atkmessagequeue.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/utils/class.atkmessagequeue.inc -------------------------------------------------------------------------------- /utils/class.atkmlselector.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/utils/class.atkmlselector.inc -------------------------------------------------------------------------------- /utils/class.atkmlsplitter.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/utils/class.atkmlsplitter.inc -------------------------------------------------------------------------------- /utils/class.atkselector.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/utils/class.atkselector.inc -------------------------------------------------------------------------------- /utils/class.atkselectoriterator.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/utils/class.atkselectoriterator.inc -------------------------------------------------------------------------------- /utils/class.atkstring.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/utils/class.atkstring.inc -------------------------------------------------------------------------------- /utils/class.atkstringparser.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/utils/class.atkstringparser.inc -------------------------------------------------------------------------------- /utils/class.atktablerenderer.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/utils/class.atktablerenderer.inc -------------------------------------------------------------------------------- /utils/class.atktextmarker.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/utils/class.atktextmarker.inc -------------------------------------------------------------------------------- /utils/class.atktmpfile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/utils/class.atktmpfile.inc -------------------------------------------------------------------------------- /utils/class.atktriggerlistener.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/utils/class.atktriggerlistener.inc -------------------------------------------------------------------------------- /utils/class.atkyaml.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/utils/class.atkyaml.inc -------------------------------------------------------------------------------- /utils/class.atkzip.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/utils/class.atkzip.inc -------------------------------------------------------------------------------- /utils/langconvert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/utils/langconvert.sh -------------------------------------------------------------------------------- /version.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/version.inc -------------------------------------------------------------------------------- /wizard/class.atkwizard.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/wizard/class.atkwizard.inc -------------------------------------------------------------------------------- /wizard/class.atkwizardbase.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/wizard/class.atkwizardbase.inc -------------------------------------------------------------------------------- /wizard/class.atkwizardpanel.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/HEAD/wizard/class.atkwizardpanel.inc --------------------------------------------------------------------------------