├── .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 /attributes/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | -------------------------------------------------------------------------------- /attributes/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /attributes/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /attributes/ckeditor/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/ckeditor/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /attributes/ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /attributes/ckeditor/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/ckeditor/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /attributes/ckeditor/plugins/magicline/images/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/ckeditor/plugins/magicline/images/icon-rtl.png -------------------------------------------------------------------------------- /attributes/ckeditor/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/ckeditor/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /attributes/ckeditor/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/ckeditor/skins/moono/icons.png -------------------------------------------------------------------------------- /attributes/ckeditor/skins/moono/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/ckeditor/skins/moono/icons_hidpi.png -------------------------------------------------------------------------------- /attributes/ckeditor/skins/moono/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/ckeditor/skins/moono/images/arrow.png -------------------------------------------------------------------------------- /attributes/ckeditor/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/ckeditor/skins/moono/images/close.png -------------------------------------------------------------------------------- /attributes/ckeditor/skins/moono/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/ckeditor/skins/moono/images/hidpi/close.png -------------------------------------------------------------------------------- /attributes/ckeditor/skins/moono/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/ckeditor/skins/moono/images/hidpi/lock.png -------------------------------------------------------------------------------- /attributes/ckeditor/skins/moono/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/ckeditor/skins/moono/images/hidpi/refresh.png -------------------------------------------------------------------------------- /attributes/ckeditor/skins/moono/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/ckeditor/skins/moono/images/lock-open.png -------------------------------------------------------------------------------- /attributes/ckeditor/skins/moono/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/ckeditor/skins/moono/images/lock.png -------------------------------------------------------------------------------- /attributes/ckeditor/skins/moono/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/ckeditor/skins/moono/images/refresh.png -------------------------------------------------------------------------------- /attributes/fck/editor/css/images/block_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/css/images/block_address.png -------------------------------------------------------------------------------- /attributes/fck/editor/css/images/block_blockquote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/css/images/block_blockquote.png -------------------------------------------------------------------------------- /attributes/fck/editor/css/images/block_div.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/css/images/block_div.png -------------------------------------------------------------------------------- /attributes/fck/editor/css/images/block_h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/css/images/block_h1.png -------------------------------------------------------------------------------- /attributes/fck/editor/css/images/block_h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/css/images/block_h2.png -------------------------------------------------------------------------------- /attributes/fck/editor/css/images/block_h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/css/images/block_h3.png -------------------------------------------------------------------------------- /attributes/fck/editor/css/images/block_h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/css/images/block_h4.png -------------------------------------------------------------------------------- /attributes/fck/editor/css/images/block_h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/css/images/block_h5.png -------------------------------------------------------------------------------- /attributes/fck/editor/css/images/block_h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/css/images/block_h6.png -------------------------------------------------------------------------------- /attributes/fck/editor/css/images/block_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/css/images/block_p.png -------------------------------------------------------------------------------- /attributes/fck/editor/css/images/block_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/css/images/block_pre.png -------------------------------------------------------------------------------- /attributes/fck/editor/css/images/fck_anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/css/images/fck_anchor.gif -------------------------------------------------------------------------------- /attributes/fck/editor/css/images/fck_flashlogo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/css/images/fck_flashlogo.gif -------------------------------------------------------------------------------- /attributes/fck/editor/css/images/fck_hiddenfield.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/css/images/fck_hiddenfield.gif -------------------------------------------------------------------------------- /attributes/fck/editor/css/images/fck_pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/css/images/fck_pagebreak.gif -------------------------------------------------------------------------------- /attributes/fck/editor/css/images/fck_plugin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/css/images/fck_plugin.gif -------------------------------------------------------------------------------- /attributes/fck/editor/dialog/common/images/locked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/dialog/common/images/locked.gif -------------------------------------------------------------------------------- /attributes/fck/editor/dialog/common/images/reset.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/dialog/common/images/reset.gif -------------------------------------------------------------------------------- /attributes/fck/editor/dialog/common/images/unlocked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/dialog/common/images/unlocked.gif -------------------------------------------------------------------------------- /attributes/fck/editor/dialog/fck_about/logo_fredck.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/dialog/fck_about/logo_fredck.gif -------------------------------------------------------------------------------- /attributes/fck/editor/images/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/images/anchor.gif -------------------------------------------------------------------------------- /attributes/fck/editor/images/arrow_ltr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/images/arrow_ltr.gif -------------------------------------------------------------------------------- /attributes/fck/editor/images/arrow_rtl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/images/arrow_rtl.gif -------------------------------------------------------------------------------- /attributes/fck/editor/images/smiley/msn/angel_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/images/smiley/msn/angel_smile.gif -------------------------------------------------------------------------------- /attributes/fck/editor/images/smiley/msn/angry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/images/smiley/msn/angry_smile.gif -------------------------------------------------------------------------------- /attributes/fck/editor/images/smiley/msn/broken_heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/images/smiley/msn/broken_heart.gif -------------------------------------------------------------------------------- /attributes/fck/editor/images/smiley/msn/cake.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/images/smiley/msn/cake.gif -------------------------------------------------------------------------------- /attributes/fck/editor/images/smiley/msn/cry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/images/smiley/msn/cry_smile.gif -------------------------------------------------------------------------------- /attributes/fck/editor/images/smiley/msn/devil_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/images/smiley/msn/devil_smile.gif -------------------------------------------------------------------------------- /attributes/fck/editor/images/smiley/msn/envelope.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/images/smiley/msn/envelope.gif -------------------------------------------------------------------------------- /attributes/fck/editor/images/smiley/msn/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/images/smiley/msn/heart.gif -------------------------------------------------------------------------------- /attributes/fck/editor/images/smiley/msn/kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/images/smiley/msn/kiss.gif -------------------------------------------------------------------------------- /attributes/fck/editor/images/smiley/msn/lightbulb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/images/smiley/msn/lightbulb.gif -------------------------------------------------------------------------------- /attributes/fck/editor/images/smiley/msn/omg_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/images/smiley/msn/omg_smile.gif -------------------------------------------------------------------------------- /attributes/fck/editor/images/smiley/msn/sad_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/images/smiley/msn/sad_smile.gif -------------------------------------------------------------------------------- /attributes/fck/editor/images/smiley/msn/shades_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/images/smiley/msn/shades_smile.gif -------------------------------------------------------------------------------- /attributes/fck/editor/images/smiley/msn/teeth_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/images/smiley/msn/teeth_smile.gif -------------------------------------------------------------------------------- /attributes/fck/editor/images/smiley/msn/thumbs_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/images/smiley/msn/thumbs_down.gif -------------------------------------------------------------------------------- /attributes/fck/editor/images/smiley/msn/thumbs_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/images/smiley/msn/thumbs_up.gif -------------------------------------------------------------------------------- /attributes/fck/editor/images/smiley/msn/tounge_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/images/smiley/msn/tounge_smile.gif -------------------------------------------------------------------------------- /attributes/fck/editor/images/smiley/msn/wink_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/images/smiley/msn/wink_smile.gif -------------------------------------------------------------------------------- /attributes/fck/editor/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/images/spacer.gif -------------------------------------------------------------------------------- /attributes/fck/editor/skins/default/fck_strip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/skins/default/fck_strip.gif -------------------------------------------------------------------------------- /attributes/fck/editor/skins/default/images/sprites.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/skins/default/images/sprites.gif -------------------------------------------------------------------------------- /attributes/fck/editor/skins/default/images/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/skins/default/images/sprites.png -------------------------------------------------------------------------------- /attributes/fck/editor/skins/office2003/fck_strip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/skins/office2003/fck_strip.gif -------------------------------------------------------------------------------- /attributes/fck/editor/skins/silver/fck_strip.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/skins/silver/fck_strip.gif -------------------------------------------------------------------------------- /attributes/fck/editor/skins/silver/images/sprites.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/skins/silver/images/sprites.gif -------------------------------------------------------------------------------- /attributes/fck/editor/skins/silver/images/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/fck/editor/skins/silver/images/sprites.png -------------------------------------------------------------------------------- /attributes/wysiwyg/images/absmode.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/absmode.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/abspos.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/abspos.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/additem.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/additem.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/align_center_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/align_center_3.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/align_left_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/align_left_3.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/align_right_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/align_right_3.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/anchor_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/anchor_2.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/background_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/background_2.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/bgcolor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/bgcolor.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/bgcolor_focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/bgcolor_focus.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/bold.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/bold.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/bold_focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/bold_focus.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/borders.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/borders.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/break.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/break.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/bullist.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/bullist.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/bullist_focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/bullist_focus.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/center.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/center.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/center_focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/center_focus.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/copy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/copy.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/copy_focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/copy_focus.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/curs_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/curs_3.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/cut.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/cut.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/cut_focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/cut_focus.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/deindent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/deindent.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/deindent_focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/deindent_focus.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/delete.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/delete_cell.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/delete_cell.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/delete_cell_focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/delete_cell_focus.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/delete_col.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/delete_col.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/delete_col_focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/delete_col_focus.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/delete_row.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/delete_row.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/delete_row_focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/delete_row_focus.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/details.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/details.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/doc_bgcolor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/doc_bgcolor.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/doc_bgcolor_focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/doc_bgcolor_focus.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/end.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/end.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/enter_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/enter_3.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/estil_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/estil_3.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/fgcolor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/fgcolor.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/fgcolor_focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/fgcolor_focus.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/find.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/find.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/find_focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/find_focus.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/fullscrn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/fullscrn.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/hr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/hr.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/hr_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/hr_3.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/hr_focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/hr_focus.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/image.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/image_focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/image_focus.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/img_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/img_2.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/indent_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/indent_3.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/inindent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/inindent.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/inindent_focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/inindent_focus.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/insert_cell.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/insert_cell.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/insert_cell_focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/insert_cell_focus.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/insert_col.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/insert_col.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/insert_col_focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/insert_col_focus.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/insert_row.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/insert_row.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/insert_row_focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/insert_row_focus.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/insert_table.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/insert_table.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/insert_table_focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/insert_table_focus.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/italic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/italic.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/italic_focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/italic_focus.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/left.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/left_focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/left_focus.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/link.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/link.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/link_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/link_2.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/link_focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/link_focus.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/lock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/lock.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/merge_cell.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/merge_cell.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/merge_cell_focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/merge_cell_focus.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/nbsp_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/nbsp_3.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/neg_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/neg_3.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/new_doc_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/new_doc_2.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/newdoc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/newdoc.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/newdoc_focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/newdoc_focus.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/newproj.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/newproj.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/numb_list_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/numb_list_3.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/numlist.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/numlist.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/numlist_focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/numlist_focus.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/open.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/open_focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/open_focus.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/paleta_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/paleta_2.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/paste.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/paste.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/paste_focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/paste_focus.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/preview_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/preview_2.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/print.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/print.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/project.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/project.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/props.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/props.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/reddot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/reddot.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/redo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/redo.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/redo_focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/redo_focus.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/right.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/right_focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/right_focus.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/save.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/save.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/save_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/save_2.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/save_focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/save_focus.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/saveall.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/saveall.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/saveas.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/saveas.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/saveas_focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/saveas_focus.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/separator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/separator.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/set_estil_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/set_estil_3.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/snapgrid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/snapgrid.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/split_cell.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/split_cell.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/split_cell_focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/split_cell_focus.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/start.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/start.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/subry_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/subry_3.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/table_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/table_2.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/tasklist.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/tasklist.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/tipus_font_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/tipus_font_3.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/title_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/title_2.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/trans.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/under.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/under.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/under_focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/under_focus.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/undo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/undo.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/undo_focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/undo_focus.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/unindent_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/unindent_3.gif -------------------------------------------------------------------------------- /attributes/wysiwyg/images/unord_list_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/attributes/wysiwyg/images/unord_list_3.gif -------------------------------------------------------------------------------- /db/class.atki5ddl.inc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/languages/postgresql_en.lng: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /db/languages/postgresql_nl.lng: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/doc/COPYRIGHT -------------------------------------------------------------------------------- /ext/captcha/captcha_fonts/Vera.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/ext/captcha/captcha_fonts/Vera.ttf -------------------------------------------------------------------------------- /ext/captcha/captcha_fonts/VeraBI.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/ext/captcha/captcha_fonts/VeraBI.ttf -------------------------------------------------------------------------------- /ext/captcha/captcha_fonts/VeraBd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/ext/captcha/captcha_fonts/VeraBd.ttf -------------------------------------------------------------------------------- /ext/captcha/captcha_fonts/VeraIt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/ext/captcha/captcha_fonts/VeraIt.ttf -------------------------------------------------------------------------------- /ext/captcha/captcha_fonts/VeraMoBI.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/ext/captcha/captcha_fonts/VeraMoBI.ttf -------------------------------------------------------------------------------- /ext/captcha/captcha_fonts/VeraMoBd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/ext/captcha/captcha_fonts/VeraMoBd.ttf -------------------------------------------------------------------------------- /ext/captcha/captcha_fonts/VeraMoIt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/ext/captcha/captcha_fonts/VeraMoIt.ttf -------------------------------------------------------------------------------- /ext/captcha/captcha_fonts/VeraMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/ext/captcha/captcha_fonts/VeraMono.ttf -------------------------------------------------------------------------------- /ext/captcha/captcha_fonts/VeraSe.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/ext/captcha/captcha_fonts/VeraSe.ttf -------------------------------------------------------------------------------- /ext/captcha/captcha_fonts/VeraSeBd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/ext/captcha/captcha_fonts/VeraSeBd.ttf -------------------------------------------------------------------------------- /ext/captcha/img/captcha.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/ext/captcha/img/captcha.jpg -------------------------------------------------------------------------------- /ext/captcha/php-captcha.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/ext/captcha/php-captcha.inc.php -------------------------------------------------------------------------------- /ext/phpmailer/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/ext/phpmailer/README -------------------------------------------------------------------------------- /ext/phpmailer/docs/extending.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/ext/phpmailer/docs/extending.html -------------------------------------------------------------------------------- /ext/phpmailer/language/phpmailer.lang-br.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/ext/phpmailer/language/phpmailer.lang-br.php -------------------------------------------------------------------------------- /ext/phpmailer/language/phpmailer.lang-ca.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/ext/phpmailer/language/phpmailer.lang-ca.php -------------------------------------------------------------------------------- /ext/phpmailer/language/phpmailer.lang-cz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/ext/phpmailer/language/phpmailer.lang-cz.php -------------------------------------------------------------------------------- /ext/phpmailer/language/phpmailer.lang-dk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/ext/phpmailer/language/phpmailer.lang-dk.php -------------------------------------------------------------------------------- /ext/phpmailer/language/phpmailer.lang-es.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/ext/phpmailer/language/phpmailer.lang-es.php -------------------------------------------------------------------------------- /ext/phpmailer/language/phpmailer.lang-fo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/ext/phpmailer/language/phpmailer.lang-fo.php -------------------------------------------------------------------------------- /ext/phpmailer/language/phpmailer.lang-fr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/ext/phpmailer/language/phpmailer.lang-fr.php -------------------------------------------------------------------------------- /ext/phpmailer/language/phpmailer.lang-hu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/ext/phpmailer/language/phpmailer.lang-hu.php -------------------------------------------------------------------------------- /ext/phpmailer/language/phpmailer.lang-ja.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/ext/phpmailer/language/phpmailer.lang-ja.php -------------------------------------------------------------------------------- /ext/phpmailer/language/phpmailer.lang-no.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/ext/phpmailer/language/phpmailer.lang-no.php -------------------------------------------------------------------------------- /ext/phpmailer/language/phpmailer.lang-pl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/ext/phpmailer/language/phpmailer.lang-pl.php -------------------------------------------------------------------------------- /ext/phpmailer/language/phpmailer.lang-ru.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/ext/phpmailer/language/phpmailer.lang-ru.php -------------------------------------------------------------------------------- /ext/phpmailer/language/phpmailer.lang-se.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/ext/phpmailer/language/phpmailer.lang-se.php -------------------------------------------------------------------------------- /ext/phpmailer/language/phpmailer.lang-tr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/ext/phpmailer/language/phpmailer.lang-tr.php -------------------------------------------------------------------------------- /ext/phpmailer/test/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/ext/phpmailer/test/test.png -------------------------------------------------------------------------------- /images/arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/images/arrow.gif -------------------------------------------------------------------------------- /images/dummy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/images/dummy.gif -------------------------------------------------------------------------------- /images/lock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/images/lock.gif -------------------------------------------------------------------------------- /images/lock_expired.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/images/lock_expired.gif -------------------------------------------------------------------------------- /images/lock_head.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/images/lock_head.gif -------------------------------------------------------------------------------- /images/minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/images/minus.gif -------------------------------------------------------------------------------- /images/plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/images/plus.gif -------------------------------------------------------------------------------- /images/select_color_off.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/images/select_color_off.gif -------------------------------------------------------------------------------- /images/select_color_on.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/images/select_color_on.gif -------------------------------------------------------------------------------- /images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/images/spinner.gif -------------------------------------------------------------------------------- /images/up-down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/images/up-down.gif -------------------------------------------------------------------------------- /javascript/calendar/lang/calendar-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/calendar/lang/calendar-br.js -------------------------------------------------------------------------------- /javascript/calendar/lang/calendar-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/calendar/lang/calendar-ca.js -------------------------------------------------------------------------------- /javascript/calendar/lang/calendar-cs-win.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/calendar/lang/calendar-cs-win.js -------------------------------------------------------------------------------- /javascript/calendar/lang/calendar-da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/calendar/lang/calendar-da.js -------------------------------------------------------------------------------- /javascript/calendar/lang/calendar-de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/calendar/lang/calendar-de.js -------------------------------------------------------------------------------- /javascript/calendar/lang/calendar-el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/calendar/lang/calendar-el.js -------------------------------------------------------------------------------- /javascript/calendar/lang/calendar-es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/calendar/lang/calendar-es.js -------------------------------------------------------------------------------- /javascript/calendar/lang/calendar-fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/calendar/lang/calendar-fr.js -------------------------------------------------------------------------------- /javascript/calendar/lang/calendar-it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/calendar/lang/calendar-it.js -------------------------------------------------------------------------------- /javascript/calendar/lang/calendar-no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/calendar/lang/calendar-no.js -------------------------------------------------------------------------------- /javascript/calendar/lang/calendar-pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/calendar/lang/calendar-pl.js -------------------------------------------------------------------------------- /javascript/calendar/lang/calendar-pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/calendar/lang/calendar-pt.js -------------------------------------------------------------------------------- /javascript/calendar/lang/calendar-ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/calendar/lang/calendar-ro.js -------------------------------------------------------------------------------- /javascript/calendar/lang/calendar-sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/calendar/lang/calendar-sk.js -------------------------------------------------------------------------------- /javascript/calendar/lang/calendar-sp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/calendar/lang/calendar-sp.js -------------------------------------------------------------------------------- /javascript/calendar/lang/calendar-sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/calendar/lang/calendar-sv.js -------------------------------------------------------------------------------- /javascript/calendar/lang/calendar-tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/calendar/lang/calendar-tr.js -------------------------------------------------------------------------------- /javascript/class.atkvisualhtmlattribute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/class.atkvisualhtmlattribute.js -------------------------------------------------------------------------------- /javascript/crossbrowser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/crossbrowser.js -------------------------------------------------------------------------------- /javascript/outlook.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/outlook.js -------------------------------------------------------------------------------- /javascript/overlibmws/arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/overlibmws/arrow.gif -------------------------------------------------------------------------------- /javascript/overlibmws/calendarmws_lang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/overlibmws/calendarmws_lang.js -------------------------------------------------------------------------------- /javascript/overlibmws/cornerBL.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/overlibmws/cornerBL.gif -------------------------------------------------------------------------------- /javascript/overlibmws/cornerBR.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/overlibmws/cornerBR.gif -------------------------------------------------------------------------------- /javascript/overlibmws/cornerTL.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/overlibmws/cornerTL.gif -------------------------------------------------------------------------------- /javascript/overlibmws/cornerTR.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/overlibmws/cornerTR.gif -------------------------------------------------------------------------------- /javascript/overlibmws/edgeB.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/overlibmws/edgeB.gif -------------------------------------------------------------------------------- /javascript/overlibmws/edgeL.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/overlibmws/edgeL.gif -------------------------------------------------------------------------------- /javascript/overlibmws/edgeR.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/overlibmws/edgeR.gif -------------------------------------------------------------------------------- /javascript/overlibmws/edgeT.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/overlibmws/edgeT.gif -------------------------------------------------------------------------------- /javascript/overlibmws/exit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/overlibmws/exit.gif -------------------------------------------------------------------------------- /javascript/overlibmws/flower.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/overlibmws/flower.gif -------------------------------------------------------------------------------- /javascript/overlibmws/oval.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/overlibmws/oval.gif -------------------------------------------------------------------------------- /javascript/overlibmws/overlibmwslogo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/overlibmws/overlibmwslogo.gif -------------------------------------------------------------------------------- /javascript/overlibmws/print.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/overlibmws/print.gif -------------------------------------------------------------------------------- /javascript/overlibmws/pushpin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/overlibmws/pushpin.gif -------------------------------------------------------------------------------- /javascript/overlibmws/quotation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/overlibmws/quotation.gif -------------------------------------------------------------------------------- /javascript/overlibmws/semitrans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/overlibmws/semitrans.gif -------------------------------------------------------------------------------- /javascript/overlibmws/showCalendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/overlibmws/showCalendar.gif -------------------------------------------------------------------------------- /javascript/overlibmws/square.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/overlibmws/square.gif -------------------------------------------------------------------------------- /javascript/prototype-ui/window/themes/window/vista/t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/prototype-ui/window/themes/window/vista/t.png -------------------------------------------------------------------------------- /javascript/window/themes/alert/bottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/alert/bottom.gif -------------------------------------------------------------------------------- /javascript/window/themes/alert/bottom_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/alert/bottom_left.gif -------------------------------------------------------------------------------- /javascript/window/themes/alert/bottom_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/alert/bottom_right.gif -------------------------------------------------------------------------------- /javascript/window/themes/alert/left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/alert/left.gif -------------------------------------------------------------------------------- /javascript/window/themes/alert/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/alert/overlay.png -------------------------------------------------------------------------------- /javascript/window/themes/alert/progress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/alert/progress.gif -------------------------------------------------------------------------------- /javascript/window/themes/alert/right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/alert/right.gif -------------------------------------------------------------------------------- /javascript/window/themes/alert/top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/alert/top.gif -------------------------------------------------------------------------------- /javascript/window/themes/alert/top_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/alert/top_left.gif -------------------------------------------------------------------------------- /javascript/window/themes/alert/top_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/alert/top_right.gif -------------------------------------------------------------------------------- /javascript/window/themes/alphacube/bottom-left-c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/alphacube/bottom-left-c.gif -------------------------------------------------------------------------------- /javascript/window/themes/alphacube/bottom-middle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/alphacube/bottom-middle.gif -------------------------------------------------------------------------------- /javascript/window/themes/alphacube/bottom-right-c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/alphacube/bottom-right-c.gif -------------------------------------------------------------------------------- /javascript/window/themes/alphacube/button-max-focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/alphacube/button-max-focus.gif -------------------------------------------------------------------------------- /javascript/window/themes/alphacube/button-min-focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/alphacube/button-min-focus.gif -------------------------------------------------------------------------------- /javascript/window/themes/alphacube/frame-left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/alphacube/frame-left.gif -------------------------------------------------------------------------------- /javascript/window/themes/alphacube/frame-right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/alphacube/frame-right.gif -------------------------------------------------------------------------------- /javascript/window/themes/alphacube/left-top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/alphacube/left-top.gif -------------------------------------------------------------------------------- /javascript/window/themes/alphacube/right-top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/alphacube/right-top.gif -------------------------------------------------------------------------------- /javascript/window/themes/alphacube/top-middle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/alphacube/top-middle.gif -------------------------------------------------------------------------------- /javascript/window/themes/darkX/button-close-focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/darkX/button-close-focused.png -------------------------------------------------------------------------------- /javascript/window/themes/darkX/frame-left-focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/darkX/frame-left-focused.png -------------------------------------------------------------------------------- /javascript/window/themes/darkX/frame-right-focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/darkX/frame-right-focused.png -------------------------------------------------------------------------------- /javascript/window/themes/darkX/titlebar-left-focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/darkX/titlebar-left-focused.png -------------------------------------------------------------------------------- /javascript/window/themes/darkX/titlebar-mid-focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/darkX/titlebar-mid-focused.png -------------------------------------------------------------------------------- /javascript/window/themes/default/bottom_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/default/bottom_left.gif -------------------------------------------------------------------------------- /javascript/window/themes/default/bottom_mid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/default/bottom_mid.gif -------------------------------------------------------------------------------- /javascript/window/themes/default/bottom_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/default/bottom_right.gif -------------------------------------------------------------------------------- /javascript/window/themes/default/bottom_right_resize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/default/bottom_right_resize.gif -------------------------------------------------------------------------------- /javascript/window/themes/default/center_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/default/center_left.gif -------------------------------------------------------------------------------- /javascript/window/themes/default/center_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/default/center_right.gif -------------------------------------------------------------------------------- /javascript/window/themes/default/clear.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/default/clear.gif -------------------------------------------------------------------------------- /javascript/window/themes/default/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/default/close.gif -------------------------------------------------------------------------------- /javascript/window/themes/default/inspect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/default/inspect.gif -------------------------------------------------------------------------------- /javascript/window/themes/default/maximize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/default/maximize.gif -------------------------------------------------------------------------------- /javascript/window/themes/default/minimize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/default/minimize.gif -------------------------------------------------------------------------------- /javascript/window/themes/default/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/default/overlay.png -------------------------------------------------------------------------------- /javascript/window/themes/default/resize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/default/resize.gif -------------------------------------------------------------------------------- /javascript/window/themes/default/sizer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/default/sizer.gif -------------------------------------------------------------------------------- /javascript/window/themes/default/top_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/default/top_left.gif -------------------------------------------------------------------------------- /javascript/window/themes/default/top_mid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/default/top_mid.gif -------------------------------------------------------------------------------- /javascript/window/themes/default/top_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/default/top_right.gif -------------------------------------------------------------------------------- /javascript/window/themes/iefix/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/iefix/blank.gif -------------------------------------------------------------------------------- /javascript/window/themes/iefix/iepngfix.css: -------------------------------------------------------------------------------- 1 | /* PNG fix for all themes that uses PNG images on IE */ 2 | td, div { behavior: url(../themes/iefix/iepngfix.htc) } 3 | 4 | -------------------------------------------------------------------------------- /javascript/window/themes/lighting/background_buttons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/lighting/background_buttons.gif -------------------------------------------------------------------------------- /javascript/window/themes/lighting/bottom-left-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/lighting/bottom-left-blue.png -------------------------------------------------------------------------------- /javascript/window/themes/lighting/bottom-left-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/lighting/bottom-left-green.png -------------------------------------------------------------------------------- /javascript/window/themes/lighting/bottom-left-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/lighting/bottom-left-grey.png -------------------------------------------------------------------------------- /javascript/window/themes/lighting/bottom-middle-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/lighting/bottom-middle-blue.png -------------------------------------------------------------------------------- /javascript/window/themes/lighting/bottom-middle-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/lighting/bottom-middle-grey.png -------------------------------------------------------------------------------- /javascript/window/themes/lighting/bottom-right-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/lighting/bottom-right-blue.png -------------------------------------------------------------------------------- /javascript/window/themes/lighting/bottom-right-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/lighting/bottom-right-green.png -------------------------------------------------------------------------------- /javascript/window/themes/lighting/bottom-right-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/lighting/bottom-right-grey.png -------------------------------------------------------------------------------- /javascript/window/themes/lighting/button-close-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/lighting/button-close-blue.png -------------------------------------------------------------------------------- /javascript/window/themes/lighting/button-close-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/lighting/button-close-green.png -------------------------------------------------------------------------------- /javascript/window/themes/lighting/button-close-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/lighting/button-close-grey.png -------------------------------------------------------------------------------- /javascript/window/themes/lighting/left-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/lighting/left-blue.png -------------------------------------------------------------------------------- /javascript/window/themes/lighting/left-darkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/lighting/left-darkblue.png -------------------------------------------------------------------------------- /javascript/window/themes/lighting/left-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/lighting/left-green.png -------------------------------------------------------------------------------- /javascript/window/themes/lighting/left-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/lighting/left-grey.png -------------------------------------------------------------------------------- /javascript/window/themes/lighting/right-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/lighting/right-blue.png -------------------------------------------------------------------------------- /javascript/window/themes/lighting/right-darkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/lighting/right-darkblue.png -------------------------------------------------------------------------------- /javascript/window/themes/lighting/right-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/lighting/right-green.png -------------------------------------------------------------------------------- /javascript/window/themes/lighting/right-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/lighting/right-grey.png -------------------------------------------------------------------------------- /javascript/window/themes/lighting/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/lighting/spinner.gif -------------------------------------------------------------------------------- /javascript/window/themes/lighting/top-left-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/lighting/top-left-blue.png -------------------------------------------------------------------------------- /javascript/window/themes/lighting/top-left-darkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/lighting/top-left-darkblue.png -------------------------------------------------------------------------------- /javascript/window/themes/lighting/top-left-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/lighting/top-left-green.png -------------------------------------------------------------------------------- /javascript/window/themes/lighting/top-left-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/lighting/top-left-grey.png -------------------------------------------------------------------------------- /javascript/window/themes/lighting/top-middle-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/lighting/top-middle-blue.png -------------------------------------------------------------------------------- /javascript/window/themes/lighting/top-middle-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/lighting/top-middle-green.png -------------------------------------------------------------------------------- /javascript/window/themes/lighting/top-middle-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/lighting/top-middle-grey.png -------------------------------------------------------------------------------- /javascript/window/themes/lighting/top-right-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/lighting/top-right-blue.png -------------------------------------------------------------------------------- /javascript/window/themes/lighting/top-right-darkblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/lighting/top-right-darkblue.png -------------------------------------------------------------------------------- /javascript/window/themes/lighting/top-right-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/lighting/top-right-green.png -------------------------------------------------------------------------------- /javascript/window/themes/lighting/top-right-grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/lighting/top-right-grey.png -------------------------------------------------------------------------------- /javascript/window/themes/mac_os_x/B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/mac_os_x/B.png -------------------------------------------------------------------------------- /javascript/window/themes/mac_os_x/BL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/mac_os_x/BL.png -------------------------------------------------------------------------------- /javascript/window/themes/mac_os_x/BL_Main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/mac_os_x/BL_Main.png -------------------------------------------------------------------------------- /javascript/window/themes/mac_os_x/BR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/mac_os_x/BR.png -------------------------------------------------------------------------------- /javascript/window/themes/mac_os_x/BR_Main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/mac_os_x/BR_Main.png -------------------------------------------------------------------------------- /javascript/window/themes/mac_os_x/B_Main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/mac_os_x/B_Main.png -------------------------------------------------------------------------------- /javascript/window/themes/mac_os_x/L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/mac_os_x/L.png -------------------------------------------------------------------------------- /javascript/window/themes/mac_os_x/L_Main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/mac_os_x/L_Main.png -------------------------------------------------------------------------------- /javascript/window/themes/mac_os_x/R.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/mac_os_x/R.png -------------------------------------------------------------------------------- /javascript/window/themes/mac_os_x/R_Main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/mac_os_x/R_Main.png -------------------------------------------------------------------------------- /javascript/window/themes/mac_os_x/T.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/mac_os_x/T.png -------------------------------------------------------------------------------- /javascript/window/themes/mac_os_x/TL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/mac_os_x/TL.png -------------------------------------------------------------------------------- /javascript/window/themes/mac_os_x/TL_Main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/mac_os_x/TL_Main.png -------------------------------------------------------------------------------- /javascript/window/themes/mac_os_x/TR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/mac_os_x/TR.png -------------------------------------------------------------------------------- /javascript/window/themes/mac_os_x/TR_Main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/mac_os_x/TR_Main.png -------------------------------------------------------------------------------- /javascript/window/themes/mac_os_x/T_Main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/mac_os_x/T_Main.png -------------------------------------------------------------------------------- /javascript/window/themes/mac_os_x/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/mac_os_x/close.gif -------------------------------------------------------------------------------- /javascript/window/themes/mac_os_x/maximize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/mac_os_x/maximize.gif -------------------------------------------------------------------------------- /javascript/window/themes/mac_os_x/minimize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/mac_os_x/minimize.gif -------------------------------------------------------------------------------- /javascript/window/themes/mac_os_x_dialog/B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/mac_os_x_dialog/B.png -------------------------------------------------------------------------------- /javascript/window/themes/mac_os_x_dialog/BL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/mac_os_x_dialog/BL.png -------------------------------------------------------------------------------- /javascript/window/themes/mac_os_x_dialog/BR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/mac_os_x_dialog/BR.png -------------------------------------------------------------------------------- /javascript/window/themes/mac_os_x_dialog/L.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/mac_os_x_dialog/L.png -------------------------------------------------------------------------------- /javascript/window/themes/mac_os_x_dialog/R.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/mac_os_x_dialog/R.png -------------------------------------------------------------------------------- /javascript/window/themes/mac_os_x_dialog/T.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/mac_os_x_dialog/T.png -------------------------------------------------------------------------------- /javascript/window/themes/mac_os_x_dialog/TL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/mac_os_x_dialog/TL.png -------------------------------------------------------------------------------- /javascript/window/themes/mac_os_x_dialog/TR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/mac_os_x_dialog/TR.png -------------------------------------------------------------------------------- /javascript/window/themes/mac_os_x_dialog/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/mac_os_x_dialog/bg.gif -------------------------------------------------------------------------------- /javascript/window/themes/mac_os_x_dialog/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/mac_os_x_dialog/close.gif -------------------------------------------------------------------------------- /javascript/window/themes/mac_os_x_dialog/maximize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/mac_os_x_dialog/maximize.gif -------------------------------------------------------------------------------- /javascript/window/themes/mac_os_x_dialog/minimize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/mac_os_x_dialog/minimize.gif -------------------------------------------------------------------------------- /javascript/window/themes/nuncio/bottom_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/nuncio/bottom_left.png -------------------------------------------------------------------------------- /javascript/window/themes/nuncio/bottom_mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/nuncio/bottom_mid.png -------------------------------------------------------------------------------- /javascript/window/themes/nuncio/bottom_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/nuncio/bottom_right.png -------------------------------------------------------------------------------- /javascript/window/themes/nuncio/center_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/nuncio/center_left.png -------------------------------------------------------------------------------- /javascript/window/themes/nuncio/center_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/nuncio/center_right.png -------------------------------------------------------------------------------- /javascript/window/themes/nuncio/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/nuncio/close.png -------------------------------------------------------------------------------- /javascript/window/themes/nuncio/minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/nuncio/minimize.png -------------------------------------------------------------------------------- /javascript/window/themes/nuncio/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/nuncio/overlay.png -------------------------------------------------------------------------------- /javascript/window/themes/nuncio/top_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/nuncio/top_left.png -------------------------------------------------------------------------------- /javascript/window/themes/nuncio/top_mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/nuncio/top_mid.png -------------------------------------------------------------------------------- /javascript/window/themes/nuncio/top_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/nuncio/top_right.png -------------------------------------------------------------------------------- /javascript/window/themes/spread/.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/spread/.gif -------------------------------------------------------------------------------- /javascript/window/themes/spread/bottom-left-c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/spread/bottom-left-c.gif -------------------------------------------------------------------------------- /javascript/window/themes/spread/bottom-middle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/spread/bottom-middle.gif -------------------------------------------------------------------------------- /javascript/window/themes/spread/bottom-right-c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/spread/bottom-right-c.gif -------------------------------------------------------------------------------- /javascript/window/themes/spread/button-close-focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/spread/button-close-focus.gif -------------------------------------------------------------------------------- /javascript/window/themes/spread/button-max-focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/spread/button-max-focus.gif -------------------------------------------------------------------------------- /javascript/window/themes/spread/button-min-focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/spread/button-min-focus.gif -------------------------------------------------------------------------------- /javascript/window/themes/spread/frame-left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/spread/frame-left.gif -------------------------------------------------------------------------------- /javascript/window/themes/spread/frame-right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/spread/frame-right.gif -------------------------------------------------------------------------------- /javascript/window/themes/spread/left-top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/spread/left-top.gif -------------------------------------------------------------------------------- /javascript/window/themes/spread/right-top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/spread/right-top.gif -------------------------------------------------------------------------------- /javascript/window/themes/spread/top-middle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/spread/top-middle.gif -------------------------------------------------------------------------------- /javascript/window/themes/theme1/bottom_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/theme1/bottom_left.gif -------------------------------------------------------------------------------- /javascript/window/themes/theme1/bottom_mid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/theme1/bottom_mid.gif -------------------------------------------------------------------------------- /javascript/window/themes/theme1/bottom_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/theme1/bottom_right.gif -------------------------------------------------------------------------------- /javascript/window/themes/theme1/center_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/theme1/center_left.gif -------------------------------------------------------------------------------- /javascript/window/themes/theme1/center_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/theme1/center_right.gif -------------------------------------------------------------------------------- /javascript/window/themes/theme1/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/theme1/close.gif -------------------------------------------------------------------------------- /javascript/window/themes/theme1/maximize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/theme1/maximize.gif -------------------------------------------------------------------------------- /javascript/window/themes/theme1/minimize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/theme1/minimize.gif -------------------------------------------------------------------------------- /javascript/window/themes/theme1/sizer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/theme1/sizer.gif -------------------------------------------------------------------------------- /javascript/window/themes/theme1/top_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/theme1/top_left.gif -------------------------------------------------------------------------------- /javascript/window/themes/theme1/top_mid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/theme1/top_mid.gif -------------------------------------------------------------------------------- /javascript/window/themes/theme1/top_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/javascript/window/themes/theme1/top_right.gif -------------------------------------------------------------------------------- /languages/bp.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/languages/bp.lng -------------------------------------------------------------------------------- /languages/ca.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/languages/ca.lng -------------------------------------------------------------------------------- /languages/cf.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/languages/cf.lng -------------------------------------------------------------------------------- /languages/de_old.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/languages/de_old.lng -------------------------------------------------------------------------------- /languages/el.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/languages/el.lng -------------------------------------------------------------------------------- /languages/fi.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/languages/fi.lng -------------------------------------------------------------------------------- /languages/fr.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/languages/fr.lng -------------------------------------------------------------------------------- /languages/hu.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/languages/hu.lng -------------------------------------------------------------------------------- /languages/ja.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/languages/ja.lng -------------------------------------------------------------------------------- /languages/no.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/languages/no.lng -------------------------------------------------------------------------------- /languages/pl.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/languages/pl.lng -------------------------------------------------------------------------------- /languages/pt.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/languages/pt.lng -------------------------------------------------------------------------------- /languages/ru.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/languages/ru.lng -------------------------------------------------------------------------------- /languages/sk.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/languages/sk.lng -------------------------------------------------------------------------------- /languages/sv.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/languages/sv.lng -------------------------------------------------------------------------------- /languages/tr.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/languages/tr.lng -------------------------------------------------------------------------------- /languages/uk.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/languages/uk.lng -------------------------------------------------------------------------------- /languages/zh.lng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/languages/zh.lng -------------------------------------------------------------------------------- /scripts/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all 2 | -------------------------------------------------------------------------------- /skel/atktmp/compiled/tpl/README: -------------------------------------------------------------------------------- 1 | This is the dir where Smarty stores its compiled templates. 2 | Make sure this directory is writable by the webserver. 3 | -------------------------------------------------------------------------------- /skel/help/en/class.nodename.inc: -------------------------------------------------------------------------------- 1 | Please enter help information for your class here. -------------------------------------------------------------------------------- /skel/modules/config.modules.inc: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /skel/modules/test/install.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE test_test 2 | ( 3 | id INT NOT NULL, 4 | name VARCHAR(100) NOT NULL, 5 | description TEXT NOT NULL, 6 | PRIMARY KEY (id) 7 | ); 8 | -------------------------------------------------------------------------------- /skel/modules/test/languages/en.lng: -------------------------------------------------------------------------------- 1 | "Test module", 4 | "menu_test_admin" => "Test node admin", 5 | "test_test" => "Test node", 6 | ); 7 | ?> 8 | -------------------------------------------------------------------------------- /skel/server.php: -------------------------------------------------------------------------------- 1 | run(); 7 | ?> 8 | -------------------------------------------------------------------------------- /themes/achievo_modern/icons/recordlist/copy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/icons/recordlist/copy.gif -------------------------------------------------------------------------------- /themes/achievo_modern/icons/recordlist/default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/icons/recordlist/default.gif -------------------------------------------------------------------------------- /themes/achievo_modern/icons/recordlist/delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/icons/recordlist/delete.gif -------------------------------------------------------------------------------- /themes/achievo_modern/icons/recordlist/document.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/icons/recordlist/document.gif -------------------------------------------------------------------------------- /themes/achievo_modern/icons/recordlist/done.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/icons/recordlist/done.gif -------------------------------------------------------------------------------- /themes/achievo_modern/icons/recordlist/edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/icons/recordlist/edit.gif -------------------------------------------------------------------------------- /themes/achievo_modern/icons/recordlist/export.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/icons/recordlist/export.gif -------------------------------------------------------------------------------- /themes/achievo_modern/icons/recordlist/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/icons/recordlist/preview.gif -------------------------------------------------------------------------------- /themes/achievo_modern/icons/recordlist/select.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/icons/recordlist/select.gif -------------------------------------------------------------------------------- /themes/achievo_modern/icons/recordlist/view.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/icons/recordlist/view.gif -------------------------------------------------------------------------------- /themes/achievo_modern/images/arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/images/arrow.gif -------------------------------------------------------------------------------- /themes/achievo_modern/images/bannerBg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/images/bannerBg.jpg -------------------------------------------------------------------------------- /themes/achievo_modern/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/images/blank.gif -------------------------------------------------------------------------------- /themes/achievo_modern/images/bodyBg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/images/bodyBg.gif -------------------------------------------------------------------------------- /themes/achievo_modern/images/bodyPattern.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/images/bodyPattern.gif -------------------------------------------------------------------------------- /themes/achievo_modern/images/contentBlockBg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/images/contentBlockBg.gif -------------------------------------------------------------------------------- /themes/achievo_modern/images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/images/logo.jpg -------------------------------------------------------------------------------- /themes/achievo_modern/images/logoGrijs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/images/logoGrijs.png -------------------------------------------------------------------------------- /themes/achievo_modern/images/menu.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/images/menu.PNG -------------------------------------------------------------------------------- /themes/achievo_modern/images/menuBg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/images/menuBg.jpg -------------------------------------------------------------------------------- /themes/achievo_modern/images/menuBgBottom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/images/menuBgBottom.jpg -------------------------------------------------------------------------------- /themes/achievo_modern/images/menuLevel1Bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/images/menuLevel1Bg.jpg -------------------------------------------------------------------------------- /themes/achievo_modern/images/menuLevel2Bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/images/menuLevel2Bg.jpg -------------------------------------------------------------------------------- /themes/achievo_modern/images/menu_active_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/images/menu_active_bg.png -------------------------------------------------------------------------------- /themes/achievo_modern/images/menu_active_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/images/menu_active_bottom.png -------------------------------------------------------------------------------- /themes/achievo_modern/images/menu_active_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/images/menu_active_top.png -------------------------------------------------------------------------------- /themes/achievo_modern/images/menu_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/images/menu_bottom.png -------------------------------------------------------------------------------- /themes/achievo_modern/images/menu_bottom_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/images/menu_bottom_top.png -------------------------------------------------------------------------------- /themes/achievo_modern/images/menu_menuitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/images/menu_menuitem.png -------------------------------------------------------------------------------- /themes/achievo_modern/images/menu_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/images/menu_top.png -------------------------------------------------------------------------------- /themes/achievo_modern/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/images/search.png -------------------------------------------------------------------------------- /themes/achievo_modern/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/images/spinner.gif -------------------------------------------------------------------------------- /themes/achievo_modern/images/tabBg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/images/tabBg.gif -------------------------------------------------------------------------------- /themes/achievo_modern/images/tabBg2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/images/tabBg2.gif -------------------------------------------------------------------------------- /themes/achievo_modern/images/tabLeft.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/images/tabLeft.gif -------------------------------------------------------------------------------- /themes/achievo_modern/images/tabLeft_.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/images/tabLeft_.gif -------------------------------------------------------------------------------- /themes/achievo_modern/images/tabRight.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/images/tabRight.gif -------------------------------------------------------------------------------- /themes/achievo_modern/images/tabRight2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/images/tabRight2.gif -------------------------------------------------------------------------------- /themes/achievo_modern/images/tab_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/images/tab_back.png -------------------------------------------------------------------------------- /themes/achievo_modern/images/tab_back_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/images/tab_back_s.png -------------------------------------------------------------------------------- /themes/achievo_modern/images/tab_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/images/tab_left.png -------------------------------------------------------------------------------- /themes/achievo_modern/images/tab_left_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/images/tab_left_s.png -------------------------------------------------------------------------------- /themes/achievo_modern/images/tab_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/images/tab_right.png -------------------------------------------------------------------------------- /themes/achievo_modern/images/tab_right_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/images/tab_right_s.png -------------------------------------------------------------------------------- /themes/achievo_modern/images/top-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/images/top-right.png -------------------------------------------------------------------------------- /themes/achievo_modern/images/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/images/top.png -------------------------------------------------------------------------------- /themes/achievo_modern/templates/login_meta.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/achievo_modern/templates/login_meta.tpl -------------------------------------------------------------------------------- /themes/achievo_modern/templates/menu.tpl: -------------------------------------------------------------------------------- 1 |
2 | {$menu_javascript} 3 | {$menu} 4 |
-------------------------------------------------------------------------------- /themes/achievo_modern/templates/page.tpl: -------------------------------------------------------------------------------- 1 | {$content} 2 | -------------------------------------------------------------------------------- /themes/basic/styles/debugger.css: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /themes/basic/styles/style.css: -------------------------------------------------------------------------------- 1 | H1 2 | { 3 | font-size: 18px; 4 | } 5 | 6 | .atkAttrRowHidden 7 | { 8 | display: none !important; 9 | } 10 | -------------------------------------------------------------------------------- /themes/basic/templates/box.tpl: -------------------------------------------------------------------------------- 1 |
2 |

{$title}

3 | {$content} 4 |
5 | -------------------------------------------------------------------------------- /themes/basic/templates/login_meta.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/basic/templates/login_meta.tpl -------------------------------------------------------------------------------- /themes/basic/templates/menu.tpl: -------------------------------------------------------------------------------- 1 |
2 |

{$title}

3 | {$content} 4 |
5 | -------------------------------------------------------------------------------- /themes/default/icons/lock/lock_exclusive.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/default/icons/lock/lock_exclusive.gif -------------------------------------------------------------------------------- /themes/default/icons/lock/lock_exclusive_head.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/default/icons/lock/lock_exclusive_head.gif -------------------------------------------------------------------------------- /themes/default/icons/lock/lock_shared.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/default/icons/lock/lock_shared.gif -------------------------------------------------------------------------------- /themes/default/icons/lock/lock_shared_head.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/default/icons/lock/lock_shared_head.gif -------------------------------------------------------------------------------- /themes/default/icons/recordlist/canceled.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/default/icons/recordlist/canceled.gif -------------------------------------------------------------------------------- /themes/default/icons/recordlist/copy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/default/icons/recordlist/copy.gif -------------------------------------------------------------------------------- /themes/default/icons/recordlist/default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/default/icons/recordlist/default.gif -------------------------------------------------------------------------------- /themes/default/icons/recordlist/delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/default/icons/recordlist/delete.gif -------------------------------------------------------------------------------- /themes/default/icons/recordlist/document.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/default/icons/recordlist/document.gif -------------------------------------------------------------------------------- /themes/default/icons/recordlist/done.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/default/icons/recordlist/done.gif -------------------------------------------------------------------------------- /themes/default/icons/recordlist/edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/default/icons/recordlist/edit.gif -------------------------------------------------------------------------------- /themes/default/icons/recordlist/export.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/default/icons/recordlist/export.gif -------------------------------------------------------------------------------- /themes/default/icons/recordlist/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/default/icons/recordlist/preview.gif -------------------------------------------------------------------------------- /themes/default/icons/recordlist/select.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/default/icons/recordlist/select.gif -------------------------------------------------------------------------------- /themes/default/icons/recordlist/view.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/default/icons/recordlist/view.gif -------------------------------------------------------------------------------- /themes/default/icons/toolbar/bold.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/default/icons/toolbar/bold.gif -------------------------------------------------------------------------------- /themes/default/icons/toolbar/delimiter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/default/icons/toolbar/delimiter.gif -------------------------------------------------------------------------------- /themes/default/icons/toolbar/italic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/default/icons/toolbar/italic.gif -------------------------------------------------------------------------------- /themes/default/icons/toolbar/link.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/default/icons/toolbar/link.gif -------------------------------------------------------------------------------- /themes/default/icons/toolbar/underline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/default/icons/toolbar/underline.gif -------------------------------------------------------------------------------- /themes/default/icons/tree/tree_collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/default/icons/tree/tree_collapse.gif -------------------------------------------------------------------------------- /themes/default/icons/tree/tree_end.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/default/icons/tree/tree_end.gif -------------------------------------------------------------------------------- /themes/default/icons/tree/tree_end_minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/default/icons/tree/tree_end_minus.gif -------------------------------------------------------------------------------- /themes/default/icons/tree/tree_end_plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/default/icons/tree/tree_end_plus.gif -------------------------------------------------------------------------------- /themes/default/icons/tree/tree_expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/default/icons/tree/tree_expand.gif -------------------------------------------------------------------------------- /themes/default/icons/tree/tree_extfile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/default/icons/tree/tree_extfile.gif -------------------------------------------------------------------------------- /themes/default/icons/tree/tree_leaf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/default/icons/tree/tree_leaf.gif -------------------------------------------------------------------------------- /themes/default/icons/tree/tree_space.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/default/icons/tree/tree_space.gif -------------------------------------------------------------------------------- /themes/default/icons/tree/tree_split.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/default/icons/tree/tree_split.gif -------------------------------------------------------------------------------- /themes/default/icons/tree/tree_split_minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/default/icons/tree/tree_split_minus.gif -------------------------------------------------------------------------------- /themes/default/icons/tree/tree_split_plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/default/icons/tree/tree_split_plus.gif -------------------------------------------------------------------------------- /themes/default/icons/tree/tree_vertline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/default/icons/tree/tree_vertline.gif -------------------------------------------------------------------------------- /themes/default/images/arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/default/images/arrow.gif -------------------------------------------------------------------------------- /themes/default/images/arrowdown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/default/images/arrowdown.gif -------------------------------------------------------------------------------- /themes/default/images/arrowup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/default/images/arrowup.gif -------------------------------------------------------------------------------- /themes/default/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/default/images/blank.gif -------------------------------------------------------------------------------- /themes/default/images/empty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/default/images/empty.gif -------------------------------------------------------------------------------- /themes/default/images/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/default/images/help.gif -------------------------------------------------------------------------------- /themes/default/images/required_field.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/default/images/required_field.gif -------------------------------------------------------------------------------- /themes/default/templates/dialog.tpl: -------------------------------------------------------------------------------- 1 |
2 | {$content} -------------------------------------------------------------------------------- /themes/default/templates/login_meta.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/default/templates/login_meta.tpl -------------------------------------------------------------------------------- /themes/macoslike/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/macoslike/images/blank.gif -------------------------------------------------------------------------------- /themes/macoslike/images/button_back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/macoslike/images/button_back.gif -------------------------------------------------------------------------------- /themes/macoslike/images/dark_back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/macoslike/images/dark_back.gif -------------------------------------------------------------------------------- /themes/macoslike/images/empty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/macoslike/images/empty.gif -------------------------------------------------------------------------------- /themes/macoslike/images/handvat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/macoslike/images/handvat.gif -------------------------------------------------------------------------------- /themes/macoslike/images/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/macoslike/images/help.gif -------------------------------------------------------------------------------- /themes/macoslike/images/left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/macoslike/images/left.gif -------------------------------------------------------------------------------- /themes/macoslike/images/logout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/macoslike/images/logout.gif -------------------------------------------------------------------------------- /themes/macoslike/images/main_structuur.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/macoslike/images/main_structuur.gif -------------------------------------------------------------------------------- /themes/macoslike/images/publixheader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/macoslike/images/publixheader.gif -------------------------------------------------------------------------------- /themes/macoslike/images/right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/macoslike/images/right.gif -------------------------------------------------------------------------------- /themes/macoslike/images/tab_back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/macoslike/images/tab_back.gif -------------------------------------------------------------------------------- /themes/macoslike/images/tab_back_s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/macoslike/images/tab_back_s.gif -------------------------------------------------------------------------------- /themes/macoslike/images/tab_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/macoslike/images/tab_left.gif -------------------------------------------------------------------------------- /themes/macoslike/images/tab_left_s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/macoslike/images/tab_left_s.gif -------------------------------------------------------------------------------- /themes/macoslike/images/tab_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/macoslike/images/tab_right.gif -------------------------------------------------------------------------------- /themes/macoslike/images/tab_right_s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/macoslike/images/tab_right_s.gif -------------------------------------------------------------------------------- /themes/macoslike/templates/login_meta.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/macoslike/templates/login_meta.tpl -------------------------------------------------------------------------------- /themes/modern/images/keys.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/modern/images/keys.gif -------------------------------------------------------------------------------- /themes/modern/templates/login_meta.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/modern/templates/login_meta.tpl -------------------------------------------------------------------------------- /themes/moronic/templates/login_meta.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/moronic/templates/login_meta.tpl -------------------------------------------------------------------------------- /themes/outlook/images/add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/outlook/images/add.gif -------------------------------------------------------------------------------- /themes/outlook/images/admin.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/outlook/images/admin.gif -------------------------------------------------------------------------------- /themes/outlook/images/arrowdown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/outlook/images/arrowdown.gif -------------------------------------------------------------------------------- /themes/outlook/images/arrowup.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/outlook/images/arrowup.gif -------------------------------------------------------------------------------- /themes/outlook/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/outlook/images/blank.gif -------------------------------------------------------------------------------- /themes/outlook/images/button_back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/outlook/images/button_back.gif -------------------------------------------------------------------------------- /themes/outlook/images/dark_back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/outlook/images/dark_back.gif -------------------------------------------------------------------------------- /themes/outlook/images/delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/outlook/images/delete.gif -------------------------------------------------------------------------------- /themes/outlook/images/edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/outlook/images/edit.gif -------------------------------------------------------------------------------- /themes/outlook/images/empty.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/outlook/images/empty.gif -------------------------------------------------------------------------------- /themes/outlook/images/handvat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/outlook/images/handvat.gif -------------------------------------------------------------------------------- /themes/outlook/images/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/outlook/images/help.gif -------------------------------------------------------------------------------- /themes/outlook/images/keys.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/outlook/images/keys.gif -------------------------------------------------------------------------------- /themes/outlook/images/left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/outlook/images/left.gif -------------------------------------------------------------------------------- /themes/outlook/images/logout.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/outlook/images/logout.gif -------------------------------------------------------------------------------- /themes/outlook/images/main_structuur.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/outlook/images/main_structuur.gif -------------------------------------------------------------------------------- /themes/outlook/images/publixheader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/outlook/images/publixheader.gif -------------------------------------------------------------------------------- /themes/outlook/images/right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/outlook/images/right.gif -------------------------------------------------------------------------------- /themes/outlook/images/select.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/outlook/images/select.gif -------------------------------------------------------------------------------- /themes/outlook/images/tab_back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/outlook/images/tab_back.gif -------------------------------------------------------------------------------- /themes/outlook/images/tab_back_s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/outlook/images/tab_back_s.gif -------------------------------------------------------------------------------- /themes/outlook/images/tab_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/outlook/images/tab_left.gif -------------------------------------------------------------------------------- /themes/outlook/images/tab_left_s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/outlook/images/tab_left_s.gif -------------------------------------------------------------------------------- /themes/outlook/images/tab_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/outlook/images/tab_right.gif -------------------------------------------------------------------------------- /themes/outlook/images/tab_right_s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/outlook/images/tab_right_s.gif -------------------------------------------------------------------------------- /themes/outlook/images/view.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/outlook/images/view.gif -------------------------------------------------------------------------------- /themes/outlook/styles/top.css: -------------------------------------------------------------------------------- 1 | form{ 2 | display: inline; 3 | } 4 | -------------------------------------------------------------------------------- /themes/outlook/templates/login_meta.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/outlook/templates/login_meta.tpl -------------------------------------------------------------------------------- /themes/outlook/tree_icons/tree_add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/outlook/tree_icons/tree_add.gif -------------------------------------------------------------------------------- /themes/outlook/tree_icons/tree_collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/outlook/tree_icons/tree_collapse.gif -------------------------------------------------------------------------------- /themes/outlook/tree_icons/tree_end.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/outlook/tree_icons/tree_end.gif -------------------------------------------------------------------------------- /themes/outlook/tree_icons/tree_end_minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/outlook/tree_icons/tree_end_minus.gif -------------------------------------------------------------------------------- /themes/outlook/tree_icons/tree_end_plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/outlook/tree_icons/tree_end_plus.gif -------------------------------------------------------------------------------- /themes/outlook/tree_icons/tree_expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/outlook/tree_icons/tree_expand.gif -------------------------------------------------------------------------------- /themes/outlook/tree_icons/tree_extfile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/outlook/tree_icons/tree_extfile.gif -------------------------------------------------------------------------------- /themes/outlook/tree_icons/tree_leaf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/outlook/tree_icons/tree_leaf.gif -------------------------------------------------------------------------------- /themes/outlook/tree_icons/tree_leaf_link.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/outlook/tree_icons/tree_leaf_link.gif -------------------------------------------------------------------------------- /themes/outlook/tree_icons/tree_space.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/outlook/tree_icons/tree_space.gif -------------------------------------------------------------------------------- /themes/outlook/tree_icons/tree_split.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/outlook/tree_icons/tree_split.gif -------------------------------------------------------------------------------- /themes/outlook/tree_icons/tree_split_minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/outlook/tree_icons/tree_split_minus.gif -------------------------------------------------------------------------------- /themes/outlook/tree_icons/tree_split_plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/outlook/tree_icons/tree_split_plus.gif -------------------------------------------------------------------------------- /themes/outlook/tree_icons/tree_vertline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/outlook/tree_icons/tree_vertline.gif -------------------------------------------------------------------------------- /themes/steelblue/icons/recordlist/copy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/steelblue/icons/recordlist/copy.gif -------------------------------------------------------------------------------- /themes/steelblue/icons/recordlist/default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/steelblue/icons/recordlist/default.gif -------------------------------------------------------------------------------- /themes/steelblue/icons/recordlist/delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/steelblue/icons/recordlist/delete.gif -------------------------------------------------------------------------------- /themes/steelblue/icons/recordlist/document.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/steelblue/icons/recordlist/document.gif -------------------------------------------------------------------------------- /themes/steelblue/icons/recordlist/done.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/steelblue/icons/recordlist/done.gif -------------------------------------------------------------------------------- /themes/steelblue/icons/recordlist/edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/steelblue/icons/recordlist/edit.gif -------------------------------------------------------------------------------- /themes/steelblue/icons/recordlist/editcopy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/steelblue/icons/recordlist/editcopy.gif -------------------------------------------------------------------------------- /themes/steelblue/icons/recordlist/export.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/steelblue/icons/recordlist/export.gif -------------------------------------------------------------------------------- /themes/steelblue/icons/recordlist/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/steelblue/icons/recordlist/preview.gif -------------------------------------------------------------------------------- /themes/steelblue/icons/recordlist/select.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/steelblue/icons/recordlist/select.gif -------------------------------------------------------------------------------- /themes/steelblue/icons/recordlist/view.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/steelblue/icons/recordlist/view.gif -------------------------------------------------------------------------------- /themes/steelblue/images/atkdialog_buttons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/steelblue/images/atkdialog_buttons.gif -------------------------------------------------------------------------------- /themes/steelblue/images/atkdialog_corners_bottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/steelblue/images/atkdialog_corners_bottom.gif -------------------------------------------------------------------------------- /themes/steelblue/images/atkdialog_corners_top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/steelblue/images/atkdialog_corners_top.gif -------------------------------------------------------------------------------- /themes/steelblue/images/atkdialog_sizer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/steelblue/images/atkdialog_sizer.gif -------------------------------------------------------------------------------- /themes/steelblue/images/bannerBg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/steelblue/images/bannerBg.jpg -------------------------------------------------------------------------------- /themes/steelblue/images/bannerTopLeft.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/steelblue/images/bannerTopLeft.jpg -------------------------------------------------------------------------------- /themes/steelblue/images/bannercustomimage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/steelblue/images/bannercustomimage.gif -------------------------------------------------------------------------------- /themes/steelblue/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/steelblue/images/blank.gif -------------------------------------------------------------------------------- /themes/steelblue/images/contentfooterleft.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/steelblue/images/contentfooterleft.jpg -------------------------------------------------------------------------------- /themes/steelblue/images/contentfooterright.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/steelblue/images/contentfooterright.jpg -------------------------------------------------------------------------------- /themes/steelblue/images/contentheaderleft.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/steelblue/images/contentheaderleft.jpg -------------------------------------------------------------------------------- /themes/steelblue/images/contentheaderright.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/steelblue/images/contentheaderright.jpg -------------------------------------------------------------------------------- /themes/steelblue/images/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/steelblue/images/help.png -------------------------------------------------------------------------------- /themes/steelblue/images/login_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/steelblue/images/login_logo.jpg -------------------------------------------------------------------------------- /themes/steelblue/images/loginheaderleft.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/steelblue/images/loginheaderleft.jpg -------------------------------------------------------------------------------- /themes/steelblue/images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/steelblue/images/logo.jpg -------------------------------------------------------------------------------- /themes/steelblue/images/menubg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/steelblue/images/menubg.gif -------------------------------------------------------------------------------- /themes/steelblue/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/steelblue/images/spinner.gif -------------------------------------------------------------------------------- /themes/steelblue/images/subtaboff.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/steelblue/images/subtaboff.gif -------------------------------------------------------------------------------- /themes/steelblue/images/subtabon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/steelblue/images/subtabon.gif -------------------------------------------------------------------------------- /themes/steelblue/images/tabLeft.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/steelblue/images/tabLeft.gif -------------------------------------------------------------------------------- /themes/steelblue/images/tabRight.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/steelblue/images/tabRight.gif -------------------------------------------------------------------------------- /themes/steelblue/images/tabbottom.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/steelblue/images/tabbottom.gif -------------------------------------------------------------------------------- /themes/steelblue/templates/editform_fields.tpl: -------------------------------------------------------------------------------- 1 | {foreach from=$fields item=field} 2 | {include file="theme:field.tpl" field=$field} 3 | {/foreach} -------------------------------------------------------------------------------- /themes/steelblue/templates/login_meta.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/steelblue/templates/login_meta.tpl -------------------------------------------------------------------------------- /themes/stillblue/images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/stillblue/images/logo.jpg -------------------------------------------------------------------------------- /themes/stillblue/templates/login_meta.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/stillblue/templates/login_meta.tpl -------------------------------------------------------------------------------- /themes/t3skin/icons/recordlist/copy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/t3skin/icons/recordlist/copy.gif -------------------------------------------------------------------------------- /themes/t3skin/icons/recordlist/delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/t3skin/icons/recordlist/delete.gif -------------------------------------------------------------------------------- /themes/t3skin/icons/recordlist/edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/t3skin/icons/recordlist/edit.gif -------------------------------------------------------------------------------- /themes/t3skin/icons/recordlist/view.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/t3skin/icons/recordlist/view.gif -------------------------------------------------------------------------------- /themes/t3skin/templates/box.tpl: -------------------------------------------------------------------------------- 1 |
2 |

{$title}

3 | {$content} 4 |
5 | -------------------------------------------------------------------------------- /themes/t3skin/templates/login_meta.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/t3skin/templates/login_meta.tpl -------------------------------------------------------------------------------- /themes/t3skin/templates/menu.tpl: -------------------------------------------------------------------------------- 1 |
2 | {$content}     3 |
4 | -------------------------------------------------------------------------------- /themes/win2k/images/barGradientBlue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/win2k/images/barGradientBlue.gif -------------------------------------------------------------------------------- /themes/win2k/images/barGradientBlue300.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/win2k/images/barGradientBlue300.gif -------------------------------------------------------------------------------- /themes/win2k/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/win2k/images/blank.gif -------------------------------------------------------------------------------- /themes/win2k/images/icoClose.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/win2k/images/icoClose.gif -------------------------------------------------------------------------------- /themes/win2k/images/icoMsgKey.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/win2k/images/icoMsgKey.gif -------------------------------------------------------------------------------- /themes/win2k/images/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/win2k/images/logo.gif -------------------------------------------------------------------------------- /themes/win2k/images/password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/win2k/images/password.png -------------------------------------------------------------------------------- /themes/win2k/images/tab_back.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/win2k/images/tab_back.gif -------------------------------------------------------------------------------- /themes/win2k/images/tab_back_s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/win2k/images/tab_back_s.gif -------------------------------------------------------------------------------- /themes/win2k/images/tab_left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/win2k/images/tab_left.gif -------------------------------------------------------------------------------- /themes/win2k/images/tab_left_s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/win2k/images/tab_left_s.gif -------------------------------------------------------------------------------- /themes/win2k/images/tab_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/win2k/images/tab_right.gif -------------------------------------------------------------------------------- /themes/win2k/images/tab_right_s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/win2k/images/tab_right_s.gif -------------------------------------------------------------------------------- /themes/win2k/styles/top.css: -------------------------------------------------------------------------------- 1 | form{ 2 | display: inline; 3 | } 4 | -------------------------------------------------------------------------------- /themes/win2k/templates/login_meta.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/win2k/templates/login_meta.tpl -------------------------------------------------------------------------------- /themes/winxp/icons/recordlist/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/icons/recordlist/copy.png -------------------------------------------------------------------------------- /themes/winxp/icons/recordlist/default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/icons/recordlist/default.gif -------------------------------------------------------------------------------- /themes/winxp/icons/recordlist/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/icons/recordlist/delete.png -------------------------------------------------------------------------------- /themes/winxp/icons/recordlist/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/icons/recordlist/edit.png -------------------------------------------------------------------------------- /themes/winxp/icons/recordlist/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/icons/recordlist/print.png -------------------------------------------------------------------------------- /themes/winxp/icons/recordlist/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/icons/recordlist/select.png -------------------------------------------------------------------------------- /themes/winxp/icons/recordlist/view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/icons/recordlist/view.png -------------------------------------------------------------------------------- /themes/winxp/icons/toolbar/bold.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/icons/toolbar/bold.gif -------------------------------------------------------------------------------- /themes/winxp/icons/toolbar/delimiter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/icons/toolbar/delimiter.gif -------------------------------------------------------------------------------- /themes/winxp/icons/toolbar/italic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/icons/toolbar/italic.gif -------------------------------------------------------------------------------- /themes/winxp/icons/toolbar/link.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/icons/toolbar/link.gif -------------------------------------------------------------------------------- /themes/winxp/icons/toolbar/underline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/icons/toolbar/underline.gif -------------------------------------------------------------------------------- /themes/winxp/icons/tree/tree_collapse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/icons/tree/tree_collapse.gif -------------------------------------------------------------------------------- /themes/winxp/icons/tree/tree_end.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/icons/tree/tree_end.gif -------------------------------------------------------------------------------- /themes/winxp/icons/tree/tree_end_minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/icons/tree/tree_end_minus.gif -------------------------------------------------------------------------------- /themes/winxp/icons/tree/tree_end_plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/icons/tree/tree_end_plus.gif -------------------------------------------------------------------------------- /themes/winxp/icons/tree/tree_expand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/icons/tree/tree_expand.gif -------------------------------------------------------------------------------- /themes/winxp/icons/tree/tree_extfile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/icons/tree/tree_extfile.gif -------------------------------------------------------------------------------- /themes/winxp/icons/tree/tree_leaf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/icons/tree/tree_leaf.gif -------------------------------------------------------------------------------- /themes/winxp/icons/tree/tree_space.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/icons/tree/tree_space.gif -------------------------------------------------------------------------------- /themes/winxp/icons/tree/tree_split.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/icons/tree/tree_split.gif -------------------------------------------------------------------------------- /themes/winxp/icons/tree/tree_split_minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/icons/tree/tree_split_minus.gif -------------------------------------------------------------------------------- /themes/winxp/icons/tree/tree_split_plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/icons/tree/tree_split_plus.gif -------------------------------------------------------------------------------- /themes/winxp/icons/tree/tree_vertline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/icons/tree/tree_vertline.gif -------------------------------------------------------------------------------- /themes/winxp/images/arrow_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/images/arrow_down.gif -------------------------------------------------------------------------------- /themes/winxp/images/arrow_down_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/images/arrow_down_over.gif -------------------------------------------------------------------------------- /themes/winxp/images/arrow_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/images/arrow_up.gif -------------------------------------------------------------------------------- /themes/winxp/images/arrow_up_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/images/arrow_up_over.gif -------------------------------------------------------------------------------- /themes/winxp/images/barGradientBlue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/images/barGradientBlue.gif -------------------------------------------------------------------------------- /themes/winxp/images/barGradientBlue300.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/images/barGradientBlue300.gif -------------------------------------------------------------------------------- /themes/winxp/images/bg_pane_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/images/bg_pane_right.gif -------------------------------------------------------------------------------- /themes/winxp/images/bg_panel_top_right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/images/bg_panel_top_right.gif -------------------------------------------------------------------------------- /themes/winxp/images/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/images/help.gif -------------------------------------------------------------------------------- /themes/winxp/images/icoClose.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/images/icoClose.gif -------------------------------------------------------------------------------- /themes/winxp/images/icoMsgKey.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/images/icoMsgKey.gif -------------------------------------------------------------------------------- /themes/winxp/images/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/images/information.png -------------------------------------------------------------------------------- /themes/winxp/images/password.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/images/password.png -------------------------------------------------------------------------------- /themes/winxp/images/required_field.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/images/required_field.gif -------------------------------------------------------------------------------- /themes/winxp/images/tab_back_active.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/images/tab_back_active.gif -------------------------------------------------------------------------------- /themes/winxp/images/tab_back_inactive.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/images/tab_back_inactive.gif -------------------------------------------------------------------------------- /themes/winxp/images/tab_back_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/images/tab_back_over.gif -------------------------------------------------------------------------------- /themes/winxp/images/tab_left_active.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/images/tab_left_active.gif -------------------------------------------------------------------------------- /themes/winxp/images/tab_left_inactive.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/images/tab_left_inactive.gif -------------------------------------------------------------------------------- /themes/winxp/images/tab_left_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/images/tab_left_over.gif -------------------------------------------------------------------------------- /themes/winxp/images/tab_right_active.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/images/tab_right_active.gif -------------------------------------------------------------------------------- /themes/winxp/images/tab_right_inactive.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/images/tab_right_inactive.gif -------------------------------------------------------------------------------- /themes/winxp/images/tab_right_over.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/images/tab_right_over.gif -------------------------------------------------------------------------------- /themes/winxp/images/title_background.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/images/title_background.gif -------------------------------------------------------------------------------- /themes/winxp/styles/top.css: -------------------------------------------------------------------------------- 1 | form{ 2 | display: inline; 3 | } 4 | -------------------------------------------------------------------------------- /themes/winxp/templates/login_meta.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atkphpframework/atk-community/16985d2fbe48098bc7b17f45514f213f2d172069/themes/winxp/templates/login_meta.tpl --------------------------------------------------------------------------------