├── .github └── workflows │ └── tests.yml ├── .gitignore ├── .htaccess ├── .travis.yml ├── .travis └── test_create.sh ├── 403.html ├── DB └── Sync.php ├── Dataface ├── ActionHandler.php ├── ActionTool.php ├── Admin │ ├── FieldForm.php │ ├── RelationshipForm.php │ └── TableForm.php ├── Application.php ├── Application │ └── blob.php ├── ApplicationDelegateClass.php ├── AuthenticationTool.php ├── CSSTool.php ├── Cache.php ├── Clipboard.php ├── CompositeForm.php ├── ConfigTool.php ├── ConfigTool │ ├── clearConfigParam.function.php │ ├── createConfigTable.function.php │ └── setConfigParam.function.php ├── ConfigWriter.php ├── ConversionTool.php ├── CopyTool.php ├── DB.php ├── DelegateClass.php ├── DeleteForm.php ├── Error.php ├── ExistingRelatedRecordForm.php ├── FeedTool.php ├── Field.php ├── FormTool.php ├── FormTool │ ├── WidgetHandler.php │ ├── advmultiselect.php │ ├── autocomplete.php │ ├── calendar.php │ ├── checkbox.php │ ├── date.php │ ├── file.php │ ├── grid.php │ ├── group.php │ ├── hidden.php │ ├── htmlarea.php │ ├── lookup.php │ ├── meta.php │ ├── portal.php │ ├── radio.php │ ├── select.php │ ├── table.php │ ├── time.php │ ├── webcam.php │ └── yui_autocomplete.php ├── GlanceList.php ├── Globals.php ├── HelpTool.php ├── HistoryTool.php ├── IO.php ├── ImportFilter.php ├── ImportFilter │ └── xml.php ├── ImportForm.php ├── ImportRecord.php ├── Index.php ├── Installer.php ├── JSON.php ├── JavascriptTool.php ├── LanguageTool.php ├── LinkTool.php ├── Logger.php ├── Menu.php ├── MetadataTool.php ├── ModuleTool.php ├── NavMenu.php ├── Ontology.php ├── Ontology │ ├── Event.php │ └── Person.php ├── OutputCache.php ├── PageCache.php ├── PermissionsTool.php ├── PreferencesTool.php ├── PreferencesTool │ └── _createPreferencesTable.php ├── QueryBuilder.php ├── QueryTool.php ├── QueryTranslator.php ├── QuickForm.php ├── Record.php ├── RecordGrid.php ├── RecordReader.php ├── RecordView.php ├── ReferenceBrowser.php ├── RelatedList.php ├── RelatedRecord.php ├── Relationship.php ├── RelationshipCheckboxForm.php ├── RelationshipTool.php ├── RemoveRelatedRecordForm.php ├── ResultController.php ├── ResultList.php ├── ResultReader.php ├── SearchForm.php ├── Serializer.php ├── ShortRelatedRecordForm.php ├── SkinTool.php ├── SortControl.php ├── SummaryList.php ├── Table.php ├── Table │ └── builder.php ├── TableTool.php ├── TranslationForm.php ├── TranslationTool.php ├── TreeTable.php ├── Utilities.php ├── ValuelistEditorForm.php ├── ValuelistTool.php ├── Vocabulary.php ├── XMLTool.php ├── XMLTool │ └── default.php ├── converters │ └── date.php └── templates │ ├── Dataface_ActionsMenu.html │ ├── Dataface_Add_Existing_Related_Record.html │ ├── Dataface_Add_New_Related_Record.html │ ├── Dataface_AjaxEventDetails.html │ ├── Dataface_AjaxRecordDetails.html │ ├── Dataface_Application_Menu.html │ ├── Dataface_Calendar.html │ ├── Dataface_Custom_Template.html │ ├── Dataface_DeleteForm.html │ ├── Dataface_Delete_Record.html │ ├── Dataface_Details_Controller.html │ ├── Dataface_Edit_Record.html │ ├── Dataface_Edit_Record_headless.html │ ├── Dataface_Edit_Record_inc.html │ ├── Dataface_FindForm.html │ ├── Dataface_Find_View.html │ ├── Dataface_Fineprint.html │ ├── Dataface_Form_Section_Template.html │ ├── Dataface_Form_Section_Template.xml │ ├── Dataface_Form_Template.html │ ├── Dataface_Form_Template.xml │ ├── Dataface_Form_single_field_template.html │ ├── Dataface_GlanceList.html │ ├── Dataface_HistoryRecordDetails.html │ ├── Dataface_Import_RelatedRecords.html │ ├── Dataface_List_View.html │ ├── Dataface_List_View_summary.html │ ├── Dataface_Login_Prompt.html │ ├── Dataface_Logo.html │ ├── Dataface_Main_Template.html │ ├── Dataface_MoveUpForm.html │ ├── Dataface_NavMenu.html │ ├── Dataface_New_Record.html │ ├── Dataface_New_Record_headless.html │ ├── Dataface_New_Record_inc.html │ ├── Dataface_Permission_Denied.html │ ├── Dataface_QuickForm_element.html │ ├── Dataface_Quickform_group.html │ ├── Dataface_Quickform_groupelement.html │ ├── Dataface_RecordGrid.html │ ├── Dataface_RecordHistory.html │ ├── Dataface_Record_Template.html │ ├── Dataface_Registration.html │ ├── Dataface_Related_Records_List.html │ ├── Dataface_Remove_Related_Record.html │ ├── Dataface_ResultListController.html │ ├── Dataface_Search_Instructions.html │ ├── Dataface_Search_Results.html │ ├── Dataface_Summary_List.html │ ├── Dataface_TableView_Error.html │ ├── Dataface_TableView_menus.html │ ├── Dataface_TableView_tabs.html │ ├── Dataface_Translate_Record.html │ ├── Dataface_TranslationForm_element.html │ ├── Dataface_TranslationForm_group.html │ ├── Dataface_TranslationForm_groupelement.html │ ├── Dataface_TreeTableFragment.html │ ├── Dataface_View_Record.html │ ├── Dataface_related_records_checkboxes.html │ ├── Dataface_set_translation_status.html │ ├── Dataface_single_record_search.html │ ├── Dataface_submit_translation.html │ ├── ImportForm_step2.html │ ├── RecordNavMenu.html │ ├── TranslationPageTemplate.html │ ├── actions_manage_migrate.html │ ├── change_password.html │ ├── copy_replace.html │ ├── copy_replace_quickform_element_template.html │ ├── global_footer.html │ ├── global_header.html │ ├── head_slot.html │ ├── left_slot.html │ ├── manage.html │ ├── manage_build_index.html │ ├── manage_output_cache.html │ └── xataface │ ├── RelatedList │ ├── forms │ │ └── search_form.html │ ├── list.html │ └── result_controller.html │ ├── actions │ ├── list │ │ ├── grid.html │ │ └── no_results_found.html │ ├── mobile_filter_dialog.html │ ├── mobile_sort_dialog.html │ ├── related_sort_dialog.html │ ├── show_hide_columns_iframe.html │ ├── show_hide_columns_page.html │ ├── show_hide_columns_panel.html │ ├── sync_bindings.html │ ├── view_related_record.html │ ├── xf_grouped_list.html │ ├── xf_grouped_list_content.html │ ├── xf_infinite_scroll.html │ ├── xf_infinite_scroll_related.html │ └── xf_mobile_app_menu.html │ ├── components │ └── Portlet.html │ ├── forgot_password │ ├── form.html │ └── password_has_been_reset.html │ ├── mobile │ ├── footer.html │ └── navmenu.html │ └── tests │ ├── test_Bootstrap.html │ ├── test_MasterDetailView.html │ ├── test_TableView.html │ └── test_View.html ├── HTML └── QuickForm │ ├── Renderer │ ├── ArrayDataface.php │ └── Dataface.php │ ├── calendar.php │ ├── grid-src.js │ ├── grid.php │ ├── htmlarea.php │ ├── lookup.php │ ├── optionalelement-src.js │ ├── optionalelement.js │ ├── optionalelement.php │ ├── portal.php │ ├── related_select.php │ ├── table-src.js │ ├── table.js │ ├── table.php │ ├── tests │ └── QuickForm_table_tests.php │ ├── time.php │ ├── webcam.php │ ├── yui_autocomplete.php │ └── yui_autocomplete │ ├── autocomplete-min.js │ ├── connection-min.js │ ├── df_yui_autocomplete-src.js │ ├── df_yui_autocomplete.js │ └── yahoo-dom-event.js ├── LICENSE.txt ├── PEAR.php ├── PEAR └── FixPHP5PEARWarnings.php ├── README.md ├── SQL └── Parser │ └── wrapper.php ├── actions.ini.php ├── actions ├── RecordBrowser_data.php ├── RecordBrowser_lookup_single.php ├── activate.php ├── ajax_count_results.php ├── ajax_form.php ├── ajax_get_event_details.php ├── ajax_get_permissions.php ├── ajax_insert.php ├── ajax_nav_tree_node.php ├── ajax_related_find_form.php ├── ajax_save.php ├── ajax_set_preference.php ├── ajax_sort_sections.php ├── ajax_valuelist_append.php ├── ajax_view_record_details.php ├── calendar.php ├── change_password.php ├── clear_cache.php ├── clear_templates_c.php ├── clear_views.php ├── commit.php ├── copy_replace.php ├── custom.php ├── default.php ├── delete.php ├── delete_file.php ├── delete_selected.php ├── disabled │ ├── load_grid.php │ ├── update_grid.php │ ├── xml_delete.php │ ├── xml_edit.php │ ├── xml_info.php │ ├── xml_list.php │ ├── xml_new.php │ └── xml_view.php ├── edit.php ├── existing_related_record.php ├── export_csv.php ├── export_json.php ├── export_xml.php ├── feed.php ├── field_vocab_value.php ├── find.php ├── forgot_password.php ├── getBlob.php ├── get_page_to_translate.php ├── help.php ├── history.php ├── history_restore_record.php ├── import.php ├── install.php ├── invalidate_translations.php ├── load_script.php ├── manage_build_index.php ├── manage_migrate.php ├── manage_output_cache.php ├── mobile_filter_dialog.php ├── mobile_sort_dialog.php ├── my_profile.php ├── new.php ├── new_related_record.php ├── register.php ├── related_filter_dialog.php ├── related_records_checkboxes.php ├── related_records_list.php ├── related_sort_dialog.php ├── remove_related_record.php ├── reorder_related_records.php ├── request_public_url.php ├── rest_delete.php ├── rest_form.php ├── rest_insert.php ├── rest_load.php ├── rest_update.php ├── search_index.php ├── set_translation_status.php ├── show_hide_columns.php ├── single_record_search.php ├── submit_translation.php ├── sync_bindings.php ├── test_Bootstrap.php ├── test_DocumentTest.php ├── test_MasterDetailView.php ├── test_TableView.php ├── test_View.php ├── translate.php ├── view_history_record_details.php ├── view_related_record.php ├── whoami.php ├── xf_email_login.php ├── xf_field_preview.php ├── xf_grouped_list.php ├── xf_grouped_list_content.php ├── xf_infinite_scroll.php ├── xf_infinite_scroll_related.php ├── xf_mobile_app_menu.php └── xf_my_profile.php ├── bin └── xataface ├── build.xml ├── changes.txt ├── composer.json ├── config.inc.php ├── css.php ├── css ├── RecordDialog │ └── RecordDialog.css ├── duDialog.min.css ├── find.css ├── jquery-ui │ ├── images │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_228ef1_256x240.png │ │ ├── ui-icons_ef8c08_256x240.png │ │ ├── ui-icons_ffd27a_256x240.png │ │ └── ui-icons_ffffff_256x240.png │ └── jquery-ui.css ├── jquery.tabs-ie.css ├── jquery.tabs.css ├── smoothness │ ├── images │ │ ├── text_align_center.png │ │ ├── text_align_justify.png │ │ ├── text_align_left.png │ │ ├── text_align_right.png │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ └── ui-icons_cd0a0a_256x240.png │ └── jquery-ui-1.7.2.custom.css └── xataface │ ├── actions │ ├── mobile_filter_dialog.css │ ├── mobile_sort_dialog.css │ ├── show_hide_columns.css │ ├── view_related_records.css │ └── xf_mobile_app_menu.css │ ├── components │ ├── ActionSheet.css │ └── Sheet.css │ ├── fab.css │ └── sidemenu.css ├── dataface-public-api.php ├── dataface_info.php ├── fonts ├── MaterialIcons-Regular.eot ├── MaterialIcons-Regular.ttf ├── MaterialIcons-Regular.woff └── MaterialIcons-Regular.woff2 ├── help └── update_records.html ├── iframe.css ├── images ├── Edit16.gif ├── Move-32x32.png ├── add_icon.gif ├── add_php.gif ├── arrowBlank.gif ├── arrowDown.gif ├── arrowDownAlternative.gif ├── arrowUp.gif ├── babelfish.gif ├── blue-gradient.jpg ├── blue-gradient.png ├── broken.gif ├── bullet.gif ├── dadada_40x100_textures_02_glass_75.png ├── delete.gif ├── delete_icon.gif ├── discussionitem_icon.gif ├── document_icon.gif ├── e6e6e6_40x100_textures_02_glass_75.png ├── edit.gif ├── error.png ├── exclamation.gif ├── feed-icon-14x14.png ├── feed-icon-28x28.png ├── ffffff_40x100_textures_01_flat_0.png ├── ffffff_40x100_textures_02_glass_65.png ├── file.gif ├── file_icon.gif ├── flags │ ├── afghanistan.gif │ ├── afghanistan_small.gif │ ├── albania.gif │ ├── albania_small.gif │ ├── algeria.gif │ ├── algeria_small.gif │ ├── andorra.gif │ ├── andorra_small.gif │ ├── angola.gif │ ├── angola_small.gif │ ├── antiguabarbuda.gif │ ├── antiguabarbuda_small.gif │ ├── argentina.gif │ ├── argentina_small.gif │ ├── armenia.gif │ ├── armenia_small.gif │ ├── australia.gif │ ├── australia_small.gif │ ├── austria.gif │ ├── austria_small.gif │ ├── azerbaijan.gif │ ├── azerbaijan_small.gif │ ├── bahamas.gif │ ├── bahamas_small.gif │ ├── bahrain.gif │ ├── bahrain_small.gif │ ├── bangladesh.gif │ ├── bangladesh_small.gif │ ├── barbados.gif │ ├── barbados_small.gif │ ├── belarus.gif │ ├── belarus_small.gif │ ├── belgium.gif │ ├── belgium_small.gif │ ├── belize.gif │ ├── belize_small.gif │ ├── benin.gif │ ├── benin_small.gif │ ├── bhutan.gif │ ├── bhutan_small.gif │ ├── bolivia.gif │ ├── bolivia_small.gif │ ├── bosnia_herzegovina.gif │ ├── bosnia_herzegovina_small.gif │ ├── botswana.gif │ ├── botswana_small.gif │ ├── brazil.gif │ ├── brazil_small.gif │ ├── brunei.gif │ ├── brunei_small.gif │ ├── bulgaria.gif │ ├── bulgaria_small.gif │ ├── burkina.gif │ ├── burkinafaso_small.gif │ ├── burma.gif │ ├── burma_small.gif │ ├── burundi.gif │ ├── burundi_small.gif │ ├── cambodia.gif │ ├── cambodia_small.gif │ ├── cameroon.gif │ ├── cameroon_small.gif │ ├── canada.gif │ ├── canada_small.gif │ ├── centralafricanrep.gif │ ├── centralafricanrep_small.gif │ ├── chad.gif │ ├── chad_small.gif │ ├── chile.gif │ ├── chile_small.gif │ ├── china.gif │ ├── china_small.gif │ ├── colombia.gif │ ├── colombia_small.gif │ ├── comoros.gif │ ├── comoros_small.gif │ ├── congo.gif │ ├── congo_small.gif │ ├── costarica.gif │ ├── costarica_small.gif │ ├── croatia.gif │ ├── croatia_small.gif │ ├── cuba.gif │ ├── cuba_small.gif │ ├── cyprus.gif │ ├── cyprus_small.gif │ ├── czechrepublic.gif │ ├── czechrepublic_small.gif │ ├── demrepcongo.gif │ ├── demrepcongo_small.gif │ ├── denmark.gif │ ├── denmark_small.gif │ ├── djibouti.gif │ ├── djibouti_small.gif │ ├── dominica.gif │ ├── dominica_small.gif │ ├── dominicanrep.gif │ ├── dominicanrep_small.gif │ ├── ecuador.gif │ ├── ecuador_small.gif │ ├── egypt.gif │ ├── egypt_small.gif │ ├── elsalvador.gif │ ├── elsalvador_small.gif │ ├── en_small.gif │ ├── eq_guinea.gif │ ├── eq_guinea_small.gif │ ├── eritrea.gif │ ├── eritrea_small.gif │ ├── estonia.gif │ ├── estonia_small.gif │ ├── ethiopia.gif │ ├── ethiopia_small.gif │ ├── fiji.gif │ ├── fiji_small.gif │ ├── finland.gif │ ├── finland_small.gif │ ├── fr_small.gif │ ├── france.gif │ ├── gabon.gif │ ├── gabon_small.gif │ ├── gambia.gif │ ├── gambia_small.gif │ ├── georgia.gif │ ├── georgia_small.gif │ ├── germany.gif │ ├── germany_small.gif │ ├── ghana.gif │ ├── ghana_small.gif │ ├── greece.gif │ ├── greece_small.gif │ ├── grenada.gif │ ├── grenada_small.gif │ ├── grenadines.gif │ ├── grenadines_small.gif │ ├── guatemala.gif │ ├── guatemala_small.gif │ ├── guinea.gif │ ├── guinea_small.gif │ ├── guineabissau.gif │ ├── guineabissau_small.gif │ ├── guyana.gif │ ├── guyana_small.gif │ ├── haiti.gif │ ├── haiti_small.gif │ ├── honduras.gif │ ├── honduras_small.gif │ ├── hong_kong.gif │ ├── hong_kong_small.gif │ ├── hungary.gif │ ├── hungary_small.gif │ ├── iceland.gif │ ├── iceland_small.gif │ ├── index.htm │ ├── india.gif │ ├── india_small.gif │ ├── indonesia.gif │ ├── indonesia_small.gif │ ├── iran.gif │ ├── iran_small.gif │ ├── iraq.gif │ ├── iraq_small.gif │ ├── ireland.gif │ ├── ireland_small.gif │ ├── israel.gif │ ├── israel_small.gif │ ├── italy.gif │ ├── italy_small.gif │ ├── ivorycoast.gif │ ├── ivorycoast_small.gif │ ├── jamaica.gif │ ├── jamaica_small.gif │ ├── japan.gif │ ├── japan_small.gif │ ├── jordan.gif │ ├── jordan_small.gif │ ├── kazakhstan.gif │ ├── kazakhstan_small.gif │ ├── kenya.gif │ ├── kenya_small.gif │ ├── kiribati.gif │ ├── kiribati_small.gif │ ├── kuwait.gif │ ├── kuwait_small.gif │ ├── kyrgyzstan.gif │ ├── kyrgyzstan_small.gif │ ├── laos.gif │ ├── laos_small.gif │ ├── latvia.gif │ ├── latvia_small.gif │ ├── lebanon.gif │ ├── lebanon_small.gif │ ├── liberia.gif │ ├── liberia_small.gif │ ├── libya.gif │ ├── libya_small.gif │ ├── liechtenstein.gif │ ├── liechtenstein_small.gif │ ├── lithuania.gif │ ├── lithuania_small.gif │ ├── luxembourg.gif │ ├── luxembourg_small.gif │ ├── macau.gif │ ├── macau_small.gif │ ├── macedonia.gif │ ├── macedonia_small.gif │ ├── madagascar.gif │ ├── madagascar_small.gif │ ├── malawi.gif │ ├── malawi_small.gif │ ├── malaysia.gif │ ├── malaysia_small.gif │ ├── maldives.gif │ ├── maldives_small.gif │ ├── mali.gif │ ├── mali_small.gif │ ├── malta.gif │ ├── malta_small.gif │ ├── mauritania.gif │ ├── mauritania_small.gif │ ├── mauritius.gif │ ├── mauritius_small.gif │ ├── mexico.gif │ ├── mexico_small.gif │ ├── micronesia.gif │ ├── micronesia_small.gif │ ├── moldova.gif │ ├── moldova_small.gif │ ├── monaco.gif │ ├── monaco_small.gif │ ├── mongolia.gif │ ├── mongolia_small.gif │ ├── morocco.gif │ ├── morocco_small.gif │ ├── mozambique.gif │ ├── mozambique_small.gif │ ├── namibia.gif │ ├── namibia_small.gif │ ├── nauru.gif │ ├── nauru_small.gif │ ├── nepal.gif │ ├── nepal_small.gif │ ├── neth_antilles.gif │ ├── neth_antilles_small.gif │ ├── netherlands.gif │ ├── netherlands_small.gif │ ├── newzealand.gif │ ├── newzealand_small.gif │ ├── nicaragua.gif │ ├── nicaragua_small.gif │ ├── niger.gif │ ├── niger_small.gif │ ├── nigeria.gif │ ├── nigeria_small.gif │ ├── north_korea.gif │ ├── north_korea_small.gif │ ├── norway.gif │ ├── norway_small.gif │ ├── oman.gif │ ├── oman_small.gif │ ├── pakistan.gif │ ├── pakistan_small.gif │ ├── panama.gif │ ├── panama_small.gif │ ├── papuanewguinea.gif │ ├── papuanewguinea_small.gif │ ├── paraguay.gif │ ├── paraguay_small.gif │ ├── peru.gif │ ├── peru_small.gif │ ├── philippines.gif │ ├── philippines_small.gif │ ├── poland.gif │ ├── poland_small.gif │ ├── portugal.gif │ ├── portugal_small.gif │ ├── puertorico.gif │ ├── puertorico_small.gif │ ├── qatar.gif │ ├── qatar_small.gif │ ├── rawanda.gif │ ├── rawanda_small.gif │ ├── romania.gif │ ├── romania_small.gif │ ├── russia.gif │ ├── russia_small.gif │ ├── sao_tome.gif │ ├── sao_tome_small.gif │ ├── saudiarabia.gif │ ├── saudiarabia_small.gif │ ├── senegal.gif │ ├── senegal_small.gif │ ├── serbia.gif │ ├── serbia_small.gif │ ├── seychelles.gif │ ├── seychelles_small.gif │ ├── sierraleone.gif │ ├── sierraleone_small.gif │ ├── singapore.gif │ ├── singapore_small.gif │ ├── slovakia.gif │ ├── slovakia_small.gif │ ├── slovenia.gif │ ├── slovenia_small.gif │ ├── solomon_islands.gif │ ├── solomon_islands_small.gif │ ├── somalia.gif │ ├── somalia_small.gif │ ├── south_korea.gif │ ├── south_korea_small.gif │ ├── southafrica.gif │ ├── southafrica_small.gif │ ├── spain.gif │ ├── spain_small.gif │ ├── srilanka.gif │ ├── srilanka_small.gif │ ├── stkitts_nevis.gif │ ├── stkitts_nevis_small.gif │ ├── stlucia.gif │ ├── stlucia_small.gif │ ├── sudan.gif │ ├── sudan_small.gif │ ├── suriname.gif │ ├── suriname_small.gif │ ├── sweden.gif │ ├── sweden_small.gif │ ├── switzerland.gif │ ├── switzerland_small.gif │ ├── syria.gif │ ├── syria_small.gif │ ├── taiwan.gif │ ├── taiwan_small.gif │ ├── tajikistan.gif │ ├── tajikistan_small.gif │ ├── tanzania.gif │ ├── tanzania_small.gif │ ├── thailand.gif │ ├── thailand_small.gif │ ├── togo.gif │ ├── togo_small.gif │ ├── tonga.gif │ ├── tonga_small.gif │ ├── trinidadandtobago.gif │ ├── trinidadandtobago_small.gif │ ├── tunisia.gif │ ├── tunisia_small.gif │ ├── turkey.gif │ ├── turkey_small.gif │ ├── turkmenistan.gif │ ├── turkmenistan_small.gif │ ├── tuvala.gif │ ├── tuvala_small.gif │ ├── uae.gif │ ├── uae_small.gif │ ├── uganda.gif │ ├── uganda_small.gif │ ├── uk.gif │ ├── ukraine.gif │ ├── ukraine_small.gif │ ├── uruguay.gif │ ├── uruguay_small.gif │ ├── usa.gif │ ├── usa_small.gif │ ├── ussr.gif │ ├── ussr_small.gif │ ├── uzbekistan.gif │ ├── uzbekistan_small.gif │ ├── vanuatu.gif │ ├── vanuatu_small.gif │ ├── venezuela.gif │ ├── venezuela_small.gif │ ├── vietnam.gif │ ├── vietnam_small.gif │ ├── western_samoa.gif │ ├── western_samoa_small.gif │ ├── yemen.gif │ ├── yemen_small.gif │ ├── yugoslavia.gif │ ├── yugoslavia_small.gif │ ├── zaire.gif │ ├── zaire_small.gif │ ├── zambia.gif │ ├── zambia_small.gif │ ├── zimbabwe.gif │ └── zimbabwe_small.gif ├── folder-closed.gif ├── folder-open.gif ├── folder_icon.gif ├── go-bottom.png ├── go-down.png ├── go-first.png ├── go-home.png ├── go-jump.png ├── go-last.png ├── go-next.png ├── go-previous.png ├── go-top.png ├── go-up.png ├── gray-gradient.png ├── help.png ├── horizontal.png ├── info-close.gif ├── info-open.gif ├── info.gif ├── info_icon.gif ├── insert_columns.png ├── invalidate_translation.gif ├── linkOpaque.gif ├── linkTransparent.gif ├── link_icon.gif ├── lock_icon.gif ├── logo-square.svg ├── mail_icon.gif ├── metal-grain.jpg ├── missing_logo.gif ├── next-btn.jpg ├── phone_icon.gif ├── preferences-system-windows.png ├── preferences-system.png ├── prev-btn.jpg ├── print_icon.gif ├── progress.gif ├── recycle.gif ├── required.gif ├── result-controller-background.jpg ├── rss.gif ├── search_icon.gif ├── squiggle.gif ├── system-installer.png ├── table.gif ├── topic_icon.gif ├── treeCollapsed.gif ├── treeExpanded.gif ├── undo_icon.gif ├── user.gif ├── vertical.png ├── vertical_resize.png ├── view.gif ├── workflow.gif ├── worklist.gif ├── xml.png └── zoom-out.gif ├── index.php ├── init.php ├── install ├── FTPExtractor.class.php ├── archive2app-results.inc.php ├── archive2app.inc.php ├── db2app.inc.php ├── dbconfig.sql ├── ftp.api.php ├── ftp.class.php ├── install_footer.inc.php ├── install_form.js.php ├── install_header.inc.php ├── mainMenu.inc.php └── styles.css ├── installer.disabled ├── installer.php ├── js.php ├── js ├── Dataface │ ├── Record-src.js │ ├── Record.js │ ├── RelatedList │ │ ├── changeOrder-src.js │ │ ├── changeOrder.js │ │ ├── search-src.js │ │ ├── search.js │ │ ├── search_form-src.js │ │ └── search_form.js │ ├── ResultList-src.js │ ├── ResultList.js │ └── edit.js ├── RecordBrowser │ ├── RecordBrowser.js │ ├── RecordBrowser.src.js │ └── templates │ │ └── RecordBrowser.html ├── RecordDialog │ ├── RecordDialog.js │ ├── RecordDialog.src.js │ └── templates │ │ └── dialog.html ├── TreeTable-src.js ├── TreeTable.js ├── addable-src.js ├── addable.js ├── ajax-src.js ├── ajax.js ├── ajaxgold-src.js ├── ajaxgold.js ├── change_password.js ├── delete_file.js ├── dfCalendar-src.js ├── dfCalendar.js ├── duDialog.min.js ├── editable-src.js ├── editable.js ├── find.js ├── forgot_password.js ├── jquery-ui-1.7.2.custom.min.js ├── jquery-ui.packed.js ├── jquery.floatheader.js ├── jquery.json.js ├── jquery.noty.js ├── jquery.packed.js ├── jsonPath.js ├── list.js ├── master_detail.js ├── nicEdit │ ├── nicEdit.js │ └── nicEditorIcons.gif ├── rest.js ├── scriptaculous │ ├── CHANGELOG │ ├── MIT-LICENSE │ ├── README │ ├── lib │ │ ├── prototype-src.js │ │ └── prototype.js │ └── src │ │ ├── builder-src.js │ │ ├── builder.js │ │ ├── controls-src.js │ │ ├── controls.js │ │ ├── dragdrop-src.js │ │ ├── dragdrop.js │ │ ├── effects-src.js │ │ ├── effects.js │ │ ├── scriptaculous-src.js │ │ ├── scriptaculous.js │ │ ├── slider-src.js │ │ ├── slider.js │ │ ├── unittest-src.js │ │ └── unittest.js ├── split.min.js ├── xataface │ ├── Application.js │ ├── ClassLoader.js │ ├── Comet.js │ ├── DOM.js │ ├── FormTool │ │ └── form.js │ ├── IO.js │ ├── Permissions.js │ ├── actions │ │ ├── add_existing_related_record.js │ │ ├── ajax_action_client.js │ │ ├── core.js │ │ ├── list.js │ │ ├── login_form.js │ │ ├── mobile_filter_dialog.js │ │ ├── register.js │ │ ├── related_list.js │ │ ├── show_hide_columns.js │ │ ├── sync_bindings.js │ │ ├── view_related_record.js │ │ └── xf_grouped_list.js │ ├── bootstrap.js │ ├── components │ │ ├── ActionSheet.js │ │ ├── InfiniteScroll.js │ │ ├── Portlet.js │ │ └── Sheet.js │ ├── copy_replace.js │ ├── data │ │ ├── DataModel.js │ │ └── EntityType.js │ ├── fab.js │ ├── form │ │ ├── Form.js │ │ ├── FormElement.js │ │ └── tests │ │ │ ├── FormElementTest.js │ │ │ └── FormTest.js │ ├── img_attribution.js │ ├── lang.js │ ├── model │ │ ├── Binding.js │ │ ├── ListModel.js │ │ ├── MasterDetailModel.js │ │ ├── Model.js │ │ └── tests │ │ │ ├── ListModelTest.js │ │ │ ├── MasterDetailModelTest.js │ │ │ └── ModelTest.js │ ├── search_field_header.js │ ├── store │ │ ├── Document.js │ │ ├── MasterDetailStore.js │ │ ├── ResultSet.js │ │ └── tests │ │ │ ├── DocumentTest.js │ │ │ ├── MasterDetailStoreTest.js │ │ │ └── ResultSetTest.js │ ├── tests │ │ ├── BootstrapTestApp.js │ │ ├── BootstrapTestApp │ │ │ └── TestForm.js │ │ ├── ClassLoaderTest.js │ │ ├── SampleLoadableClass.js │ │ ├── SampleRequiredClass1.js │ │ └── SampleRequiredClass2.js │ ├── view │ │ ├── ListView.js │ │ ├── MasterDetailView.js │ │ ├── SelectListView.js │ │ ├── TableView.js │ │ ├── View.js │ │ └── tests │ │ │ ├── test_MasterDetailView.js │ │ │ ├── test_TableView.js │ │ │ └── test_View.js │ └── widgets │ │ ├── checkbox.js │ │ ├── depends.js │ │ ├── grid.js │ │ └── lookup.js └── xmp-js │ └── xmp.iif.min.js ├── lang ├── ca.ini.php ├── de.ini.php ├── el.ini.php ├── en.ini.php ├── es.ini.php ├── fr.ini.php ├── it.ini.php ├── jp.ini.php ├── nl.ini.php ├── pl.ini.php ├── pt.ini.php ├── zh.ini.php └── zt.ini.php ├── lib ├── Archive │ └── Tar.php ├── GoogleTranslate.class.php ├── HTML │ ├── Common.php │ ├── QuickForm.php │ └── QuickForm │ │ ├── Renderer.php │ │ ├── Renderer │ │ ├── Array.php │ │ ├── ArraySmarty.php │ │ ├── Default.php │ │ ├── ITDynamic.php │ │ ├── ITStatic.php │ │ ├── Object.php │ │ ├── ObjectFlexy.php │ │ └── QuickHtml.php │ │ ├── Rule.php │ │ ├── Rule │ │ ├── Callback.php │ │ ├── Compare.php │ │ ├── Email.php │ │ ├── Range.php │ │ ├── Regex.php │ │ └── Required.php │ │ ├── RuleRegistry.php │ │ ├── advcheckbox.php │ │ ├── advmultiselect.php │ │ ├── autocomplete.php │ │ ├── button.php │ │ ├── checkbox.php │ │ ├── date.php │ │ ├── element.php │ │ ├── file.php │ │ ├── group.php │ │ ├── header.php │ │ ├── hidden.php │ │ ├── hiddenselect.php │ │ ├── hierselect.php │ │ ├── html.php │ │ ├── image.php │ │ ├── input.php │ │ ├── link.php │ │ ├── password.php │ │ ├── qfamsHandler.js │ │ ├── radio.php │ │ ├── reset.php │ │ ├── select.php │ │ ├── static.php │ │ ├── submit.php │ │ ├── text.php │ │ ├── textarea.php │ │ └── xbutton.php ├── HTTP │ ├── Request.php │ └── Request │ │ └── Listener.php ├── I18N │ └── UnicodeString.php ├── I18Nv2 │ ├── AreaCode.php │ ├── CommonList.php │ ├── Country.php │ ├── Country │ │ ├── aa.php │ │ ├── af.php │ │ ├── am.php │ │ ├── ar.php │ │ ├── as.php │ │ ├── az.php │ │ ├── be.php │ │ ├── bg.php │ │ ├── bn.php │ │ ├── ca.php │ │ ├── cs.php │ │ ├── cy.php │ │ ├── da.php │ │ ├── de.php │ │ ├── dv.php │ │ ├── dz.php │ │ ├── el.php │ │ ├── en.php │ │ ├── eo.php │ │ ├── es.php │ │ ├── et.php │ │ ├── eu.php │ │ ├── fa.php │ │ ├── fi.php │ │ ├── fo.php │ │ ├── fr.php │ │ ├── ga.php │ │ ├── gl.php │ │ ├── gu.php │ │ ├── gv.php │ │ ├── he.php │ │ ├── hi.php │ │ ├── hr.php │ │ ├── hu.php │ │ ├── hy.php │ │ ├── id.php │ │ ├── is.php │ │ ├── it.php │ │ ├── iu.php │ │ ├── ja.php │ │ ├── ka.php │ │ ├── kk.php │ │ ├── kl.php │ │ ├── km.php │ │ ├── kn.php │ │ ├── ko.php │ │ ├── kw.php │ │ ├── ky.php │ │ ├── lo.php │ │ ├── lt.php │ │ ├── lv.php │ │ ├── mk.php │ │ ├── ml.php │ │ ├── mn.php │ │ ├── mr.php │ │ ├── ms.php │ │ ├── mt.php │ │ ├── nb.php │ │ ├── nl.php │ │ ├── nn.php │ │ ├── om.php │ │ ├── or.php │ │ ├── pa.php │ │ ├── pl.php │ │ ├── ps.php │ │ ├── pt.php │ │ ├── ro.php │ │ ├── ru.php │ │ ├── sa.php │ │ ├── sh.php │ │ ├── sk.php │ │ ├── sl.php │ │ ├── so.php │ │ ├── sq.php │ │ ├── sr.php │ │ ├── sv.php │ │ ├── sw.php │ │ ├── ta.php │ │ ├── te.php │ │ ├── th.php │ │ ├── ti.php │ │ ├── tr.php │ │ ├── tt.php │ │ ├── uk.php │ │ ├── ur.php │ │ ├── uz.php │ │ ├── vi.php │ │ └── zh.php │ ├── Currency.php │ ├── Currency │ │ ├── aa.php │ │ ├── af.php │ │ ├── am.php │ │ ├── ar.php │ │ ├── as.php │ │ ├── az.php │ │ ├── be.php │ │ ├── bg.php │ │ ├── bn.php │ │ ├── ca.php │ │ ├── cs.php │ │ ├── cy.php │ │ ├── da.php │ │ ├── de.php │ │ ├── dv.php │ │ ├── dz.php │ │ ├── el.php │ │ ├── en.php │ │ ├── eo.php │ │ ├── es.php │ │ ├── et.php │ │ ├── eu.php │ │ ├── fa.php │ │ ├── fi.php │ │ ├── fo.php │ │ ├── fr.php │ │ ├── ga.php │ │ ├── gl.php │ │ ├── gu.php │ │ ├── gv.php │ │ ├── he.php │ │ ├── hi.php │ │ ├── hr.php │ │ ├── hu.php │ │ ├── hy.php │ │ ├── id.php │ │ ├── is.php │ │ ├── it.php │ │ ├── iu.php │ │ ├── ja.php │ │ ├── ka.php │ │ ├── kk.php │ │ ├── kl.php │ │ ├── km.php │ │ ├── kn.php │ │ ├── ko.php │ │ ├── kw.php │ │ ├── ky.php │ │ ├── lo.php │ │ ├── lt.php │ │ ├── lv.php │ │ ├── mk.php │ │ ├── ml.php │ │ ├── mn.php │ │ ├── mr.php │ │ ├── ms.php │ │ ├── mt.php │ │ ├── nb.php │ │ ├── nl.php │ │ ├── nn.php │ │ ├── om.php │ │ ├── or.php │ │ ├── pa.php │ │ ├── pl.php │ │ ├── ps.php │ │ ├── pt.php │ │ ├── ro.php │ │ ├── ru.php │ │ ├── sa.php │ │ ├── sh.php │ │ ├── sk.php │ │ ├── sl.php │ │ ├── so.php │ │ ├── sq.php │ │ ├── sr.php │ │ ├── sv.php │ │ ├── sw.php │ │ ├── ta.php │ │ ├── te.php │ │ ├── th.php │ │ ├── ti.php │ │ ├── tr.php │ │ ├── tt.php │ │ ├── uk.php │ │ ├── ur.php │ │ ├── uz.php │ │ ├── vi.php │ │ └── zh.php │ ├── DecoratedList.php │ ├── DecoratedList │ │ ├── AfricanCountries.php │ │ ├── AsianCountries.php │ │ ├── EuropeanCountries.php │ │ ├── Filter.php │ │ ├── HtmlEntities.php │ │ ├── HtmlSelect.php │ │ ├── HtmlSpecialchars.php │ │ ├── NorthAmericanCountries.php │ │ ├── OceanianCountries.php │ │ └── SouthAmericanCountries.php │ ├── Encoding.php │ ├── I18Nv2.php │ ├── Language.php │ ├── Language │ │ ├── aa.php │ │ ├── af.php │ │ ├── am.php │ │ ├── ar.php │ │ ├── as.php │ │ ├── az.php │ │ ├── be.php │ │ ├── bg.php │ │ ├── bn.php │ │ ├── ca.php │ │ ├── cs.php │ │ ├── cy.php │ │ ├── da.php │ │ ├── de.php │ │ ├── dv.php │ │ ├── dz.php │ │ ├── el.php │ │ ├── en.php │ │ ├── eo.php │ │ ├── es.php │ │ ├── et.php │ │ ├── eu.php │ │ ├── fa.php │ │ ├── fi.php │ │ ├── fo.php │ │ ├── fr.php │ │ ├── ga.php │ │ ├── gl.php │ │ ├── gu.php │ │ ├── gv.php │ │ ├── he.php │ │ ├── hi.php │ │ ├── hr.php │ │ ├── hu.php │ │ ├── hy.php │ │ ├── id.php │ │ ├── is.php │ │ ├── it.php │ │ ├── iu.php │ │ ├── ja.php │ │ ├── ka.php │ │ ├── kk.php │ │ ├── kl.php │ │ ├── km.php │ │ ├── kn.php │ │ ├── ko.php │ │ ├── kw.php │ │ ├── ky.php │ │ ├── lo.php │ │ ├── lt.php │ │ ├── lv.php │ │ ├── mk.php │ │ ├── ml.php │ │ ├── mn.php │ │ ├── mr.php │ │ ├── ms.php │ │ ├── mt.php │ │ ├── nb.php │ │ ├── nl.php │ │ ├── nn.php │ │ ├── om.php │ │ ├── or.php │ │ ├── pa.php │ │ ├── pl.php │ │ ├── ps.php │ │ ├── pt.php │ │ ├── ro.php │ │ ├── ru.php │ │ ├── sa.php │ │ ├── sh.php │ │ ├── sk.php │ │ ├── sl.php │ │ ├── so.php │ │ ├── sq.php │ │ ├── sr.php │ │ ├── sv.php │ │ ├── sw.php │ │ ├── ta.php │ │ ├── te.php │ │ ├── th.php │ │ ├── ti.php │ │ ├── tr.php │ │ ├── tt.php │ │ ├── uk.php │ │ ├── ur.php │ │ ├── uz.php │ │ ├── vi.php │ │ └── zh.php │ ├── Locale.php │ ├── Locale │ │ ├── EUR.php │ │ ├── Windows.php │ │ ├── af.php │ │ ├── cs.php │ │ ├── da.php │ │ ├── de.php │ │ ├── de_AT.php │ │ ├── de_DE.php │ │ ├── el_GR.php │ │ ├── en.php │ │ ├── en_IE.php │ │ ├── es.php │ │ ├── es_ES.php │ │ ├── fi_FI.php │ │ ├── fr.php │ │ ├── fr_BE.php │ │ ├── fr_FR.php │ │ ├── fr_LU.php │ │ ├── fr_MC.php │ │ ├── hu.php │ │ ├── it.php │ │ ├── it_IT.php │ │ ├── nb.php │ │ ├── nl.php │ │ ├── nl_BE.php │ │ ├── nl_NL.php │ │ ├── nn.php │ │ ├── no.php │ │ ├── pl.php │ │ ├── pt.php │ │ ├── pt_PT.php │ │ ├── ru.php │ │ ├── sl.php │ │ └── sv_FI.php │ ├── Negotiator.php │ ├── Timezone.php │ ├── docs │ │ └── examples │ │ │ ├── retrieving_locale_conventions.php │ │ │ ├── setting_a_locale.php │ │ │ ├── transform_output_charset.php │ │ │ ├── using_I18Nv2_Country.php │ │ │ ├── using_I18Nv2_DecoratedList.php │ │ │ ├── using_I18Nv2_Language.php │ │ │ ├── using_I18Nv2_Locale.php │ │ │ └── using_I18Nv2_Negotiator.php │ └── tests │ │ └── I18Nv2_Locale-PHPUnit_Testcase.php ├── Net │ ├── Socket.php │ └── URL.php ├── SQL │ ├── Compiler.php │ ├── Compiler │ │ └── mysql.php │ ├── Dialect_ANSI.php │ ├── Dialect_MySQL.php │ ├── Lexer.php │ ├── Parser.php │ ├── ctype.php │ └── tests │ │ ├── create.php │ │ ├── delete.php │ │ ├── drop.php │ │ ├── insert.php │ │ ├── mysql_select.php │ │ ├── parser_cases.php │ │ ├── select.php │ │ ├── test_parser.php │ │ └── update.php ├── Services │ ├── JSON.php │ └── LICENSE ├── 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.collapsible_sidebar.php │ │ ├── block.textformat.php │ │ ├── compiler.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 ├── Text │ ├── Diff.php │ ├── Diff │ │ ├── Engine │ │ │ ├── native.php │ │ │ ├── string.php │ │ │ └── xdiff.php │ │ ├── Renderer.php │ │ └── Renderer │ │ │ ├── inline.php │ │ │ └── unified.php │ ├── Diff3.php │ ├── Highlighter.php │ ├── Highlighter │ │ ├── CPP.php │ │ ├── CSS.php │ │ ├── DIFF.php │ │ ├── DTD.php │ │ ├── Generator.php │ │ ├── HTML.php │ │ ├── JAVA.php │ │ ├── JAVASCRIPT.php │ │ ├── MYSQL.php │ │ ├── PERL.php │ │ ├── PHP.php │ │ ├── PYTHON.php │ │ ├── RUBY.php │ │ ├── Renderer.php │ │ ├── Renderer │ │ │ ├── Console.php │ │ │ └── Html.php │ │ ├── SQL.php │ │ └── XML.php │ ├── Wiki.php │ ├── Wiki │ │ ├── Default.php │ │ ├── Parse.php │ │ ├── Parse │ │ │ └── Default │ │ │ │ ├── Anchor.php │ │ │ │ ├── Blockquote.php │ │ │ │ ├── Bold.php │ │ │ │ ├── Break.php │ │ │ │ ├── Center.php │ │ │ │ ├── Code.php │ │ │ │ ├── Colortext.php │ │ │ │ ├── Deflist.php │ │ │ │ ├── Delimiter.php │ │ │ │ ├── Embed.php │ │ │ │ ├── Emphasis.php │ │ │ │ ├── Freelink.php │ │ │ │ ├── Function.php │ │ │ │ ├── Heading.php │ │ │ │ ├── Horiz.php │ │ │ │ ├── Html.php │ │ │ │ ├── Image.php │ │ │ │ ├── Include.php │ │ │ │ ├── Interwiki.php │ │ │ │ ├── Italic.php │ │ │ │ ├── List.php │ │ │ │ ├── Newline.php │ │ │ │ ├── Paragraph.php │ │ │ │ ├── Phplookup.php │ │ │ │ ├── Prefilter.php │ │ │ │ ├── Raw.php │ │ │ │ ├── Revise.php │ │ │ │ ├── Smiley.php │ │ │ │ ├── Strong.php │ │ │ │ ├── Subscript.php │ │ │ │ ├── Superscript.php │ │ │ │ ├── Table.php │ │ │ │ ├── Tighten.php │ │ │ │ ├── Toc.php │ │ │ │ ├── Tt.php │ │ │ │ ├── Underline.php │ │ │ │ ├── Url.php │ │ │ │ └── Wikilink.php │ │ ├── Render.php │ │ └── Render │ │ │ ├── Latex.php │ │ │ ├── Latex │ │ │ ├── Anchor.php │ │ │ ├── Blockquote.php │ │ │ ├── Bold.php │ │ │ ├── Box.php │ │ │ ├── Break.php │ │ │ ├── Center.php │ │ │ ├── Code.php │ │ │ ├── Colortext.php │ │ │ ├── Deflist.php │ │ │ ├── Delimiter.php │ │ │ ├── Embed.php │ │ │ ├── Emphasis.php │ │ │ ├── Font.php │ │ │ ├── Freelink.php │ │ │ ├── Function.php │ │ │ ├── Heading.php │ │ │ ├── Horiz.php │ │ │ ├── Html.php │ │ │ ├── Image.php │ │ │ ├── Include.php │ │ │ ├── Interwiki.php │ │ │ ├── Italic.php │ │ │ ├── List.php │ │ │ ├── Newline.php │ │ │ ├── Page.php │ │ │ ├── Paragraph.php │ │ │ ├── Phplookup.php │ │ │ ├── Plugin.php │ │ │ ├── Prefilter.php │ │ │ ├── Preformatted.php │ │ │ ├── Raw.php │ │ │ ├── Revise.php │ │ │ ├── Smiley.php │ │ │ ├── Specialchar.php │ │ │ ├── Strong.php │ │ │ ├── Subscript.php │ │ │ ├── Superscript.php │ │ │ ├── Table.php │ │ │ ├── Tighten.php │ │ │ ├── Titlebar.php │ │ │ ├── Toc.php │ │ │ ├── Tt.php │ │ │ ├── Underline.php │ │ │ ├── Url.php │ │ │ └── Wikilink.php │ │ │ ├── Plain.php │ │ │ ├── Plain │ │ │ ├── Anchor.php │ │ │ ├── Blockquote.php │ │ │ ├── Bold.php │ │ │ ├── Box.php │ │ │ ├── Break.php │ │ │ ├── Center.php │ │ │ ├── Code.php │ │ │ ├── Colortext.php │ │ │ ├── Deflist.php │ │ │ ├── Delimiter.php │ │ │ ├── Embed.php │ │ │ ├── Emphasis.php │ │ │ ├── Font.php │ │ │ ├── Freelink.php │ │ │ ├── Function.php │ │ │ ├── Heading.php │ │ │ ├── Horiz.php │ │ │ ├── Html.php │ │ │ ├── Image.php │ │ │ ├── Include.php │ │ │ ├── Interwiki.php │ │ │ ├── Italic.php │ │ │ ├── List.php │ │ │ ├── Newline.php │ │ │ ├── Page.php │ │ │ ├── Paragraph.php │ │ │ ├── Phplookup.php │ │ │ ├── Plugin.php │ │ │ ├── Prefilter.php │ │ │ ├── Preformatted.php │ │ │ ├── Raw.php │ │ │ ├── Revise.php │ │ │ ├── Smiley.php │ │ │ ├── Specialchar.php │ │ │ ├── Strong.php │ │ │ ├── Subscript.php │ │ │ ├── Superscript.php │ │ │ ├── Table.php │ │ │ ├── Tighten.php │ │ │ ├── Titlebar.php │ │ │ ├── Toc.php │ │ │ ├── Tt.php │ │ │ ├── Underline.php │ │ │ ├── Url.php │ │ │ └── Wikilink.php │ │ │ ├── Xhtml.php │ │ │ └── Xhtml │ │ │ ├── Anchor.php │ │ │ ├── Blockquote.php │ │ │ ├── Bold.php │ │ │ ├── Box.php │ │ │ ├── Break.php │ │ │ ├── Center.php │ │ │ ├── Code.php │ │ │ ├── Colortext.php │ │ │ ├── Deflist.php │ │ │ ├── Delimiter.php │ │ │ ├── Embed.php │ │ │ ├── Emphasis.php │ │ │ ├── Font.php │ │ │ ├── Freelink.php │ │ │ ├── Function.php │ │ │ ├── Heading.php │ │ │ ├── Horiz.php │ │ │ ├── Html.php │ │ │ ├── Image.php │ │ │ ├── Include.php │ │ │ ├── Interwiki.php │ │ │ ├── Italic.php │ │ │ ├── List.php │ │ │ ├── Newline.php │ │ │ ├── Page.php │ │ │ ├── Paragraph.php │ │ │ ├── Phplookup.php │ │ │ ├── Plugin.php │ │ │ ├── Prefilter.php │ │ │ ├── Preformatted.php │ │ │ ├── Raw.php │ │ │ ├── Revise.php │ │ │ ├── Smiley.php │ │ │ ├── Specialchar.php │ │ │ ├── Strong.php │ │ │ ├── Subscript.php │ │ │ ├── Superscript.php │ │ │ ├── Table.php │ │ │ ├── Tighten.php │ │ │ ├── Titlebar.php │ │ │ ├── Toc.php │ │ │ ├── Tt.php │ │ │ ├── Underline.php │ │ │ ├── Url.php │ │ │ └── Wikilink.php │ ├── cpp.xml │ ├── css.xml │ ├── diff.xml │ ├── dtd.xml │ ├── generate │ ├── generate.bat │ ├── html.xml │ ├── java.xml │ ├── javascript.xml │ ├── mysql.xml │ ├── perl.xml │ ├── php.xml │ ├── python.xml │ ├── ruby.xml │ ├── sql.xml │ └── xml.xml ├── XML │ ├── DTD.php │ ├── DTD │ │ └── XmlValidator.php │ ├── Parser.php │ ├── Parser │ │ └── Simple.php │ ├── RSS.php │ ├── Serializer.php │ ├── Tree.php │ ├── Tree │ │ └── Node.php │ ├── Unserializer.php │ └── Util.php ├── babelfish.class.php ├── feedcreator.class.php ├── htmLawed.php ├── jscalendar │ ├── ChangeLog │ ├── README │ ├── bugtest-hidden-selects.html │ ├── calendar-blue.css │ ├── calendar-blue2.css │ ├── calendar-brown.css │ ├── calendar-green.css │ ├── calendar-setup.js │ ├── calendar-setup_stripped.js │ ├── calendar-system.css │ ├── calendar-tas.css │ ├── calendar-win2k-1.css │ ├── calendar-win2k-2.css │ ├── calendar-win2k-cold-1.css │ ├── calendar-win2k-cold-2.css │ ├── calendar.js │ ├── calendar.php │ ├── calendar_stripped.js │ ├── dayinfo.html │ ├── img.gif │ ├── index.html │ ├── lang │ │ ├── calendar-af.js │ │ ├── calendar-al.js │ │ ├── calendar-bg.js │ │ ├── calendar-big5-utf8.js │ │ ├── calendar-big5.js │ │ ├── calendar-br.js │ │ ├── calendar-ca.js │ │ ├── calendar-cs-utf8.js │ │ ├── calendar-cs-win.js │ │ ├── calendar-da.js │ │ ├── calendar-de.js │ │ ├── calendar-du.js │ │ ├── calendar-el.js │ │ ├── calendar-en.js │ │ ├── calendar-es.js │ │ ├── calendar-fi.js │ │ ├── calendar-fr.js │ │ ├── calendar-he-utf8.js │ │ ├── calendar-hr-utf8.js │ │ ├── calendar-hr.js │ │ ├── calendar-hu.js │ │ ├── calendar-it.js │ │ ├── calendar-jp.js │ │ ├── calendar-ko-utf8.js │ │ ├── calendar-ko.js │ │ ├── calendar-lt-utf8.js │ │ ├── calendar-lt.js │ │ ├── calendar-lv.js │ │ ├── calendar-nl.js │ │ ├── calendar-no.js │ │ ├── calendar-pl-utf8.js │ │ ├── calendar-pl.js │ │ ├── calendar-pt.js │ │ ├── calendar-ro.js │ │ ├── calendar-ru.js │ │ ├── calendar-ru_win_.js │ │ ├── calendar-si.js │ │ ├── calendar-sk.js │ │ ├── calendar-sp.js │ │ ├── calendar-sv.js │ │ ├── calendar-tr.js │ │ ├── calendar-zh.js │ │ └── cn_utf8.js │ ├── menuarrow.gif │ ├── menuarrow2.gif │ ├── multiple-dates.html │ ├── release-notes.html │ ├── simple-1.html │ ├── simple-2.html │ ├── simple-3.html │ ├── skins │ │ └── aqua │ │ │ ├── active-bg.gif │ │ │ ├── dark-bg.gif │ │ │ ├── hover-bg.gif │ │ │ ├── menuarrow.gif │ │ │ ├── normal-bg.gif │ │ │ ├── rowhover-bg.gif │ │ │ ├── status-bg.gif │ │ │ ├── theme.css │ │ │ ├── title-bg.gif │ │ │ └── today-bg.gif │ ├── test-position.html │ └── test.php ├── mysql_functions.php ├── str_tools.php ├── thumbnail.lib.php └── xml2array.php ├── logo-small.png ├── logo.png ├── makesite ├── metadata.ini.php ├── modules ├── XataJax │ ├── XataJax.php │ ├── actions │ │ ├── xatacard_layout_RecordSet_test.php │ │ ├── xatadoc.php │ │ ├── xatajax_delete.php │ │ ├── xatajax_doc_test.php │ │ ├── xatajax_new.php │ │ ├── xatajax_sample_application.php │ │ ├── xatajax_update.php │ │ ├── xf_schemabrowser_getschema.php │ │ └── xf_schemabrowser_preview_row.php │ ├── classes │ │ ├── JavascriptDocumentor.php │ │ └── xatacard │ │ │ └── layout │ │ │ ├── DataSource.php │ │ │ ├── Field.php │ │ │ ├── MySQLDataSource.php │ │ │ ├── MySQLRecord.php │ │ │ ├── Record.php │ │ │ ├── ResultSet.php │ │ │ └── Schema.php │ ├── css │ │ ├── jquery-treeview │ │ │ ├── images │ │ │ │ ├── ajax-loader.gif │ │ │ │ ├── file.gif │ │ │ │ ├── folder-closed.gif │ │ │ │ ├── folder.gif │ │ │ │ ├── minus.gif │ │ │ │ ├── plus.gif │ │ │ │ ├── treeview-black-line.gif │ │ │ │ ├── treeview-black.gif │ │ │ │ ├── treeview-default-line.gif │ │ │ │ ├── treeview-default.gif │ │ │ │ ├── treeview-famfamfam-line.gif │ │ │ │ ├── treeview-famfamfam.gif │ │ │ │ ├── treeview-gray-line.gif │ │ │ │ ├── treeview-gray.gif │ │ │ │ ├── treeview-red-line.gif │ │ │ │ └── treeview-red.gif │ │ │ └── jquery.treeview.css │ │ ├── jquery-ui │ │ │ ├── images │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ └── jquery-ui.css │ │ ├── jstree │ │ │ └── themes │ │ │ │ ├── apple │ │ │ │ ├── bg.jpg │ │ │ │ ├── d.png │ │ │ │ ├── dot_for_ie.gif │ │ │ │ ├── style.css │ │ │ │ └── throbber.gif │ │ │ │ ├── classic │ │ │ │ ├── d.gif │ │ │ │ ├── d.png │ │ │ │ ├── dot_for_ie.gif │ │ │ │ ├── style.css │ │ │ │ └── throbber.gif │ │ │ │ ├── default-rtl │ │ │ │ ├── d.gif │ │ │ │ ├── d.png │ │ │ │ ├── dots.gif │ │ │ │ ├── style.css │ │ │ │ └── throbber.gif │ │ │ │ └── default │ │ │ │ ├── d.gif │ │ │ │ ├── d.png │ │ │ │ ├── style.css │ │ │ │ └── throbber.gif │ │ ├── xatadoc │ │ │ └── tk │ │ │ │ ├── APIBrowser.css │ │ │ │ ├── ClassDetails.css │ │ │ │ ├── PackageDetails.css │ │ │ │ └── images │ │ │ │ ├── bg_gradient.gif │ │ │ │ ├── icons_2.png │ │ │ │ ├── splitpane_handle-ew.gif │ │ │ │ └── splitpane_handle-sn.gif │ │ ├── xataface │ │ │ └── ui │ │ │ │ ├── ComponentPalette.css │ │ │ │ ├── SchemaBrowser.css │ │ │ │ ├── UploadDialog.css │ │ │ │ └── loading.gif │ │ ├── xatajax.designer │ │ │ └── DesignCanvas.css │ │ ├── xatajax.ui.actions.css │ │ ├── xatajax.ui.application.css │ │ └── xatajax.ui.tk │ │ │ ├── Button.css │ │ │ ├── ButtonGroup.css │ │ │ ├── ToolBar.css │ │ │ └── layout │ │ │ ├── AbsoluteLayout.css │ │ │ ├── BorderLayout.css │ │ │ └── ColumnLayout.css │ ├── js │ │ ├── actions │ │ │ └── xatadoc.js │ │ ├── jquery-ui.min.js │ │ ├── jquery.address.min.js │ │ ├── jquery.jstree.js │ │ ├── jquery.packed.js │ │ ├── jquery.treeview.js │ │ ├── json │ │ │ ├── cycle.js │ │ │ └── json.js │ │ ├── stacktrace.min.js │ │ ├── tests │ │ │ ├── ComponentTest.js │ │ │ ├── TestRunner.js │ │ │ ├── doctest.js │ │ │ └── xatajax.ui.application.sample.js │ │ ├── xatacard │ │ │ ├── __init__.js │ │ │ └── layout │ │ │ │ ├── DataSource.js │ │ │ │ ├── DataSourceField.js │ │ │ │ ├── DataSourceRecord.js │ │ │ │ ├── DataSourceRecordSet.js │ │ │ │ ├── Field.js │ │ │ │ ├── Layout.js │ │ │ │ ├── LayoutField.js │ │ │ │ ├── LayoutRecord.js │ │ │ │ ├── LayoutRecordSet.js │ │ │ │ ├── Record.js │ │ │ │ ├── RecordEvent.js │ │ │ │ ├── RecordSet.js │ │ │ │ ├── RecordSetEvent.js │ │ │ │ ├── Schema.js │ │ │ │ ├── SchemaEvent.js │ │ │ │ ├── SchemaFieldEvent.js │ │ │ │ ├── SchemaSubSchemaEvent.js │ │ │ │ ├── ValidationEvent.js │ │ │ │ ├── __init__.js │ │ │ │ ├── database │ │ │ │ ├── DatabaseDataSource.js │ │ │ │ ├── DatabaseRecord.js │ │ │ │ ├── DatabaseRecordSet.js │ │ │ │ └── DatabaseSchema.js │ │ │ │ ├── io │ │ │ │ ├── RecordRequest.js │ │ │ │ ├── RecordResponse.js │ │ │ │ └── __init__.js │ │ │ │ └── tests │ │ │ │ └── RecordSetTest.js │ │ ├── xatadoc │ │ │ ├── __init__.js │ │ │ └── tk │ │ │ │ ├── APIBrowser.js │ │ │ │ ├── APIBrowser.tpl.html │ │ │ │ ├── ClassClickedEvent.js │ │ │ │ ├── ClassDetails.js │ │ │ │ ├── ClassDetails.tpl.html │ │ │ │ ├── PackageClickedEvent.js │ │ │ │ ├── PackageDetails.js │ │ │ │ ├── PackageDetails.tpl.html │ │ │ │ ├── PackageTree.js │ │ │ │ ├── PackageTree.tpl.html │ │ │ │ └── __init__.js │ │ ├── xataface │ │ │ └── ui │ │ │ │ ├── ComponentPalette.js │ │ │ │ ├── SchemaBrowser.js │ │ │ │ ├── UploadDialog.js │ │ │ │ └── schemabrowser │ │ │ │ └── template.html │ │ ├── xatajax.actions.js │ │ ├── xatajax.beans.core.js │ │ ├── xatajax.beans │ │ │ ├── PropertyChangeEvent.js │ │ │ ├── PropertyChangeListener.js │ │ │ ├── PropertyChangeSupport.js │ │ │ └── Subscribable.js │ │ ├── xatajax.core.js │ │ ├── xatajax.db.core.js │ │ ├── xatajax.db │ │ │ ├── Field.js │ │ │ ├── Layout.js │ │ │ └── Portal.js │ │ ├── xatajax.delete.js │ │ ├── xatajax.designer.core.js │ │ ├── xatajax.designer │ │ │ ├── DesignCanvas.js │ │ │ └── DesignElement.js │ │ ├── xatajax.doc.js │ │ ├── xatajax.form.core.js │ │ ├── xatajax.form │ │ │ └── FormElement.js │ │ ├── xatajax.io │ │ │ ├── Serializable.js │ │ │ └── __init__.js │ │ ├── xatajax.ui.actions.js │ │ ├── xatajax.ui.application.js │ │ ├── xatajax.ui.application │ │ │ ├── Container.js │ │ │ ├── Tool.js │ │ │ ├── ToolBar.js │ │ │ └── ToolGroup.js │ │ ├── xatajax.ui.core.js │ │ ├── xatajax.ui.delete.js │ │ ├── xatajax.ui.tk.js │ │ ├── xatajax.ui.tk │ │ │ ├── Button.js │ │ │ ├── ButtonGroup.js │ │ │ ├── Component.js │ │ │ ├── ComponentEvent.js │ │ │ ├── ComponentListener.js │ │ │ ├── HTMLComponent.js │ │ │ ├── LayoutManager.js │ │ │ ├── TextArea.js │ │ │ ├── TextComponent.js │ │ │ ├── TextField.js │ │ │ ├── ToolBar.js │ │ │ ├── __doc__.js │ │ │ └── layout │ │ │ │ ├── AbsoluteLayout.js │ │ │ │ ├── BorderLayout.js │ │ │ │ ├── ColumnLayout.js │ │ │ │ └── FlowLayout.js │ │ ├── xatajax.undo.js │ │ ├── xatajax.undo │ │ │ ├── UndoManager.js │ │ │ ├── UndoableEdit.js │ │ │ ├── UndoableEditEvent.js │ │ │ ├── UndoableEditListener.js │ │ │ ├── UndoableEditSupport.js │ │ │ └── __doc__.js │ │ ├── xatajax.update.js │ │ └── xatajax.util.js │ ├── permissions.ini.php │ ├── templates │ │ ├── tests │ │ │ ├── doctest.html │ │ │ ├── xatacard │ │ │ │ └── layout │ │ │ │ │ └── RecordSet │ │ │ │ │ └── RecordSetTest.html │ │ │ └── xatajax_sample_application.html │ │ └── xatadoc.html │ └── tests │ │ ├── JavascriptDocumentorTest.php │ │ └── JavascriptDocumentorTest │ │ └── js1 │ │ └── scriptA.js └── g2 │ ├── actions.ini.php │ ├── actions │ └── g2_advanced_find_form.php │ ├── changes.txt │ ├── css │ ├── images │ │ ├── Edit16.gif │ │ ├── add_icon.gif │ │ ├── add_php.gif │ │ ├── arrowBlank.gif │ │ ├── arrowDown.gif │ │ ├── arrowDownAlternative.gif │ │ ├── arrowUp.gif │ │ ├── babelfish.gif │ │ ├── back.png │ │ ├── blue-gradient.jpg │ │ ├── blue-gradient.png │ │ ├── broken.gif │ │ ├── bullet.gif │ │ ├── button-bg.png │ │ ├── dadada_40x100_textures_02_glass_75.png │ │ ├── delete.gif │ │ ├── delete_icon.gif │ │ ├── discussionitem_icon.gif │ │ ├── document_icon.gif │ │ ├── e6e6e6_40x100_textures_02_glass_75.png │ │ ├── edit.gif │ │ ├── error.png │ │ ├── exclamation.gif │ │ ├── feed-icon-14x14.png │ │ ├── feed-icon-28x28.png │ │ ├── ffffff_40x100_textures_01_flat_0.png │ │ ├── ffffff_40x100_textures_02_glass_65.png │ │ ├── file.gif │ │ ├── file_icon.gif │ │ ├── flags │ │ │ ├── afghanistan.gif │ │ │ ├── afghanistan_small.gif │ │ │ ├── albania.gif │ │ │ ├── albania_small.gif │ │ │ ├── algeria.gif │ │ │ ├── algeria_small.gif │ │ │ ├── andorra.gif │ │ │ ├── andorra_small.gif │ │ │ ├── angola.gif │ │ │ ├── angola_small.gif │ │ │ ├── antiguabarbuda.gif │ │ │ ├── antiguabarbuda_small.gif │ │ │ ├── argentina.gif │ │ │ ├── argentina_small.gif │ │ │ ├── armenia.gif │ │ │ ├── armenia_small.gif │ │ │ ├── australia.gif │ │ │ ├── australia_small.gif │ │ │ ├── austria.gif │ │ │ ├── austria_small.gif │ │ │ ├── azerbaijan.gif │ │ │ ├── azerbaijan_small.gif │ │ │ ├── bahamas.gif │ │ │ ├── bahamas_small.gif │ │ │ ├── bahrain.gif │ │ │ ├── bahrain_small.gif │ │ │ ├── bangladesh.gif │ │ │ ├── bangladesh_small.gif │ │ │ ├── barbados.gif │ │ │ ├── barbados_small.gif │ │ │ ├── belarus.gif │ │ │ ├── belarus_small.gif │ │ │ ├── belgium.gif │ │ │ ├── belgium_small.gif │ │ │ ├── belize.gif │ │ │ ├── belize_small.gif │ │ │ ├── benin.gif │ │ │ ├── benin_small.gif │ │ │ ├── bhutan.gif │ │ │ ├── bhutan_small.gif │ │ │ ├── bolivia.gif │ │ │ ├── bolivia_small.gif │ │ │ ├── bosnia_herzegovina.gif │ │ │ ├── bosnia_herzegovina_small.gif │ │ │ ├── botswana.gif │ │ │ ├── botswana_small.gif │ │ │ ├── brazil.gif │ │ │ ├── brazil_small.gif │ │ │ ├── brunei.gif │ │ │ ├── brunei_small.gif │ │ │ ├── bulgaria.gif │ │ │ ├── bulgaria_small.gif │ │ │ ├── burkina.gif │ │ │ ├── burkinafaso_small.gif │ │ │ ├── burma.gif │ │ │ ├── burma_small.gif │ │ │ ├── burundi.gif │ │ │ ├── burundi_small.gif │ │ │ ├── cambodia.gif │ │ │ ├── cambodia_small.gif │ │ │ ├── cameroon.gif │ │ │ ├── cameroon_small.gif │ │ │ ├── canada.gif │ │ │ ├── canada_small.gif │ │ │ ├── centralafricanrep.gif │ │ │ ├── centralafricanrep_small.gif │ │ │ ├── chad.gif │ │ │ ├── chad_small.gif │ │ │ ├── chile.gif │ │ │ ├── chile_small.gif │ │ │ ├── china.gif │ │ │ ├── china_small.gif │ │ │ ├── colombia.gif │ │ │ ├── colombia_small.gif │ │ │ ├── comoros.gif │ │ │ ├── comoros_small.gif │ │ │ ├── congo.gif │ │ │ ├── congo_small.gif │ │ │ ├── costarica.gif │ │ │ ├── costarica_small.gif │ │ │ ├── croatia.gif │ │ │ ├── croatia_small.gif │ │ │ ├── cuba.gif │ │ │ ├── cuba_small.gif │ │ │ ├── cyprus.gif │ │ │ ├── cyprus_small.gif │ │ │ ├── czechrepublic.gif │ │ │ ├── czechrepublic_small.gif │ │ │ ├── demrepcongo.gif │ │ │ ├── demrepcongo_small.gif │ │ │ ├── denmark.gif │ │ │ ├── denmark_small.gif │ │ │ ├── djibouti.gif │ │ │ ├── djibouti_small.gif │ │ │ ├── dominica.gif │ │ │ ├── dominica_small.gif │ │ │ ├── dominicanrep.gif │ │ │ ├── dominicanrep_small.gif │ │ │ ├── ecuador.gif │ │ │ ├── ecuador_small.gif │ │ │ ├── egypt.gif │ │ │ ├── egypt_small.gif │ │ │ ├── elsalvador.gif │ │ │ ├── elsalvador_small.gif │ │ │ ├── en_small.gif │ │ │ ├── eq_guinea.gif │ │ │ ├── eq_guinea_small.gif │ │ │ ├── eritrea.gif │ │ │ ├── eritrea_small.gif │ │ │ ├── estonia.gif │ │ │ ├── estonia_small.gif │ │ │ ├── ethiopia.gif │ │ │ ├── ethiopia_small.gif │ │ │ ├── fiji.gif │ │ │ ├── fiji_small.gif │ │ │ ├── finland.gif │ │ │ ├── finland_small.gif │ │ │ ├── fr_small.gif │ │ │ ├── france.gif │ │ │ ├── gabon.gif │ │ │ ├── gabon_small.gif │ │ │ ├── gambia.gif │ │ │ ├── gambia_small.gif │ │ │ ├── georgia.gif │ │ │ ├── georgia_small.gif │ │ │ ├── germany.gif │ │ │ ├── germany_small.gif │ │ │ ├── ghana.gif │ │ │ ├── ghana_small.gif │ │ │ ├── greece.gif │ │ │ ├── greece_small.gif │ │ │ ├── grenada.gif │ │ │ ├── grenada_small.gif │ │ │ ├── grenadines.gif │ │ │ ├── grenadines_small.gif │ │ │ ├── guatemala.gif │ │ │ ├── guatemala_small.gif │ │ │ ├── guinea.gif │ │ │ ├── guinea_small.gif │ │ │ ├── guineabissau.gif │ │ │ ├── guineabissau_small.gif │ │ │ ├── guyana.gif │ │ │ ├── guyana_small.gif │ │ │ ├── haiti.gif │ │ │ ├── haiti_small.gif │ │ │ ├── honduras.gif │ │ │ ├── honduras_small.gif │ │ │ ├── hong_kong.gif │ │ │ ├── hong_kong_small.gif │ │ │ ├── hungary.gif │ │ │ ├── hungary_small.gif │ │ │ ├── iceland.gif │ │ │ ├── iceland_small.gif │ │ │ ├── index.htm │ │ │ ├── india.gif │ │ │ ├── india_small.gif │ │ │ ├── indonesia.gif │ │ │ ├── indonesia_small.gif │ │ │ ├── iran.gif │ │ │ ├── iran_small.gif │ │ │ ├── iraq.gif │ │ │ ├── iraq_small.gif │ │ │ ├── ireland.gif │ │ │ ├── ireland_small.gif │ │ │ ├── israel.gif │ │ │ ├── israel_small.gif │ │ │ ├── italy.gif │ │ │ ├── italy_small.gif │ │ │ ├── ivorycoast.gif │ │ │ ├── ivorycoast_small.gif │ │ │ ├── jamaica.gif │ │ │ ├── jamaica_small.gif │ │ │ ├── japan.gif │ │ │ ├── japan_small.gif │ │ │ ├── jordan.gif │ │ │ ├── jordan_small.gif │ │ │ ├── kazakhstan.gif │ │ │ ├── kazakhstan_small.gif │ │ │ ├── kenya.gif │ │ │ ├── kenya_small.gif │ │ │ ├── kiribati.gif │ │ │ ├── kiribati_small.gif │ │ │ ├── kuwait.gif │ │ │ ├── kuwait_small.gif │ │ │ ├── kyrgyzstan.gif │ │ │ ├── kyrgyzstan_small.gif │ │ │ ├── laos.gif │ │ │ ├── laos_small.gif │ │ │ ├── latvia.gif │ │ │ ├── latvia_small.gif │ │ │ ├── lebanon.gif │ │ │ ├── lebanon_small.gif │ │ │ ├── liberia.gif │ │ │ ├── liberia_small.gif │ │ │ ├── libya.gif │ │ │ ├── libya_small.gif │ │ │ ├── liechtenstein.gif │ │ │ ├── liechtenstein_small.gif │ │ │ ├── lithuania.gif │ │ │ ├── lithuania_small.gif │ │ │ ├── luxembourg.gif │ │ │ ├── luxembourg_small.gif │ │ │ ├── macau.gif │ │ │ ├── macau_small.gif │ │ │ ├── macedonia.gif │ │ │ ├── macedonia_small.gif │ │ │ ├── madagascar.gif │ │ │ ├── madagascar_small.gif │ │ │ ├── malawi.gif │ │ │ ├── malawi_small.gif │ │ │ ├── malaysia.gif │ │ │ ├── malaysia_small.gif │ │ │ ├── maldives.gif │ │ │ ├── maldives_small.gif │ │ │ ├── mali.gif │ │ │ ├── mali_small.gif │ │ │ ├── malta.gif │ │ │ ├── malta_small.gif │ │ │ ├── mauritania.gif │ │ │ ├── mauritania_small.gif │ │ │ ├── mauritius.gif │ │ │ ├── mauritius_small.gif │ │ │ ├── mexico.gif │ │ │ ├── mexico_small.gif │ │ │ ├── micronesia.gif │ │ │ ├── micronesia_small.gif │ │ │ ├── moldova.gif │ │ │ ├── moldova_small.gif │ │ │ ├── monaco.gif │ │ │ ├── monaco_small.gif │ │ │ ├── mongolia.gif │ │ │ ├── mongolia_small.gif │ │ │ ├── morocco.gif │ │ │ ├── morocco_small.gif │ │ │ ├── mozambique.gif │ │ │ ├── mozambique_small.gif │ │ │ ├── namibia.gif │ │ │ ├── namibia_small.gif │ │ │ ├── nauru.gif │ │ │ ├── nauru_small.gif │ │ │ ├── nepal.gif │ │ │ ├── nepal_small.gif │ │ │ ├── neth_antilles.gif │ │ │ ├── neth_antilles_small.gif │ │ │ ├── netherlands.gif │ │ │ ├── netherlands_small.gif │ │ │ ├── newzealand.gif │ │ │ ├── newzealand_small.gif │ │ │ ├── nicaragua.gif │ │ │ ├── nicaragua_small.gif │ │ │ ├── niger.gif │ │ │ ├── niger_small.gif │ │ │ ├── nigeria.gif │ │ │ ├── nigeria_small.gif │ │ │ ├── north_korea.gif │ │ │ ├── north_korea_small.gif │ │ │ ├── norway.gif │ │ │ ├── norway_small.gif │ │ │ ├── oman.gif │ │ │ ├── oman_small.gif │ │ │ ├── pakistan.gif │ │ │ ├── pakistan_small.gif │ │ │ ├── panama.gif │ │ │ ├── panama_small.gif │ │ │ ├── papuanewguinea.gif │ │ │ ├── papuanewguinea_small.gif │ │ │ ├── paraguay.gif │ │ │ ├── paraguay_small.gif │ │ │ ├── peru.gif │ │ │ ├── peru_small.gif │ │ │ ├── philippines.gif │ │ │ ├── philippines_small.gif │ │ │ ├── poland.gif │ │ │ ├── poland_small.gif │ │ │ ├── portugal.gif │ │ │ ├── portugal_small.gif │ │ │ ├── puertorico.gif │ │ │ ├── puertorico_small.gif │ │ │ ├── qatar.gif │ │ │ ├── qatar_small.gif │ │ │ ├── rawanda.gif │ │ │ ├── rawanda_small.gif │ │ │ ├── romania.gif │ │ │ ├── romania_small.gif │ │ │ ├── russia.gif │ │ │ ├── russia_small.gif │ │ │ ├── sao_tome.gif │ │ │ ├── sao_tome_small.gif │ │ │ ├── saudiarabia.gif │ │ │ ├── saudiarabia_small.gif │ │ │ ├── senegal.gif │ │ │ ├── senegal_small.gif │ │ │ ├── serbia.gif │ │ │ ├── serbia_small.gif │ │ │ ├── seychelles.gif │ │ │ ├── seychelles_small.gif │ │ │ ├── sierraleone.gif │ │ │ ├── sierraleone_small.gif │ │ │ ├── singapore.gif │ │ │ ├── singapore_small.gif │ │ │ ├── slovakia.gif │ │ │ ├── slovakia_small.gif │ │ │ ├── slovenia.gif │ │ │ ├── slovenia_small.gif │ │ │ ├── solomon_islands.gif │ │ │ ├── solomon_islands_small.gif │ │ │ ├── somalia.gif │ │ │ ├── somalia_small.gif │ │ │ ├── south_korea.gif │ │ │ ├── south_korea_small.gif │ │ │ ├── southafrica.gif │ │ │ ├── southafrica_small.gif │ │ │ ├── spain.gif │ │ │ ├── spain_small.gif │ │ │ ├── srilanka.gif │ │ │ ├── srilanka_small.gif │ │ │ ├── stkitts_nevis.gif │ │ │ ├── stkitts_nevis_small.gif │ │ │ ├── stlucia.gif │ │ │ ├── stlucia_small.gif │ │ │ ├── sudan.gif │ │ │ ├── sudan_small.gif │ │ │ ├── suriname.gif │ │ │ ├── suriname_small.gif │ │ │ ├── sweden.gif │ │ │ ├── sweden_small.gif │ │ │ ├── switzerland.gif │ │ │ ├── switzerland_small.gif │ │ │ ├── syria.gif │ │ │ ├── syria_small.gif │ │ │ ├── taiwan.gif │ │ │ ├── taiwan_small.gif │ │ │ ├── tajikistan.gif │ │ │ ├── tajikistan_small.gif │ │ │ ├── tanzania.gif │ │ │ ├── tanzania_small.gif │ │ │ ├── thailand.gif │ │ │ ├── thailand_small.gif │ │ │ ├── togo.gif │ │ │ ├── togo_small.gif │ │ │ ├── tonga.gif │ │ │ ├── tonga_small.gif │ │ │ ├── trinidadandtobago.gif │ │ │ ├── trinidadandtobago_small.gif │ │ │ ├── tunisia.gif │ │ │ ├── tunisia_small.gif │ │ │ ├── turkey.gif │ │ │ ├── turkey_small.gif │ │ │ ├── turkmenistan.gif │ │ │ ├── turkmenistan_small.gif │ │ │ ├── tuvala.gif │ │ │ ├── tuvala_small.gif │ │ │ ├── uae.gif │ │ │ ├── uae_small.gif │ │ │ ├── uganda.gif │ │ │ ├── uganda_small.gif │ │ │ ├── uk.gif │ │ │ ├── ukraine.gif │ │ │ ├── ukraine_small.gif │ │ │ ├── uruguay.gif │ │ │ ├── uruguay_small.gif │ │ │ ├── usa.gif │ │ │ ├── usa_small.gif │ │ │ ├── ussr.gif │ │ │ ├── ussr_small.gif │ │ │ ├── uzbekistan.gif │ │ │ ├── uzbekistan_small.gif │ │ │ ├── vanuatu.gif │ │ │ ├── vanuatu_small.gif │ │ │ ├── venezuela.gif │ │ │ ├── venezuela_small.gif │ │ │ ├── vietnam.gif │ │ │ ├── vietnam_small.gif │ │ │ ├── western_samoa.gif │ │ │ ├── western_samoa_small.gif │ │ │ ├── yemen.gif │ │ │ ├── yemen_small.gif │ │ │ ├── yugoslavia.gif │ │ │ ├── yugoslavia_small.gif │ │ │ ├── zaire.gif │ │ │ ├── zaire_small.gif │ │ │ ├── zambia.gif │ │ │ ├── zambia_small.gif │ │ │ ├── zimbabwe.gif │ │ │ └── zimbabwe_small.gif │ │ ├── folder-closed.gif │ │ ├── folder-open.gif │ │ ├── horizontal.png │ │ ├── info_icon.gif │ │ ├── required.gif │ │ ├── search_icon.gif │ │ ├── small-xataface-logo.png │ │ └── vertical.png │ └── xataface-global.css │ ├── g2.php │ ├── inc │ └── simple_html_dom.php │ ├── js │ ├── xataface-global.js │ └── xataface │ │ ├── findwidgets │ │ ├── date.js │ │ └── select.js │ │ └── modules │ │ └── g2 │ │ ├── advanced-find.js │ │ └── global.js │ ├── lang │ ├── en.ini.php │ ├── fr.ini.php │ ├── it.ini.php │ └── pl.ini.php │ ├── nbproject │ ├── private │ │ └── private.properties │ ├── project.properties │ └── project.xml │ ├── templates │ ├── Dataface_Add_New_Related_Record.html │ ├── Dataface_Details_Controller.html │ ├── Dataface_Edit_Record.html │ ├── Dataface_List_View.html │ ├── Dataface_Login_Prompt.html │ ├── Dataface_Main_Template.html │ ├── Dataface_New_Record.html │ ├── Dataface_Record_Template.html │ ├── Dataface_Related_Records_List.html │ ├── Dataface_ResultListController.html │ ├── Dataface_View_Record.html │ ├── global_header.html │ └── xataface │ │ ├── RelatedList │ │ ├── list.html │ │ └── result_controller.html │ │ ├── forgot_password │ │ ├── form.html │ │ └── password_has_been_reset.html │ │ └── modules │ │ └── g2 │ │ └── advanced_find_form.html │ └── version.txt ├── nbproject ├── project.properties └── project.xml ├── permissions.ini.php ├── plone.css ├── plone_javascripts-src.js ├── plone_javascripts.js ├── plone_menu.js ├── public-api.php ├── scaffold_template ├── README.adoc ├── README.html ├── bin │ ├── add-user.sh │ ├── apachectl.sh │ ├── appctl.sh │ ├── create-app-delegate.sh │ ├── create-delegate.sh │ ├── create-fieldsini.sh │ ├── create-package.sh │ ├── inc │ │ ├── add-user.php │ │ ├── create-app-delegate.php │ │ ├── create-delegate.php │ │ ├── create-fieldsini.php │ │ ├── find_httpd.php │ │ ├── http-response-code.php │ │ ├── install-module.php │ │ ├── service.php │ │ └── setup-auth.php │ ├── install-module.sh │ ├── mysql.server.sh │ ├── mysql.sh │ ├── mysqldump.sh │ ├── php.sh │ ├── print_config_var.php │ └── setup-auth.sh ├── data │ └── index.txt ├── etc │ ├── httpd.conf │ └── my.cnf ├── log │ └── index.txt ├── tmp │ └── index.txt └── www │ ├── .htaccess │ ├── Web.config │ ├── conf.db.ini.php │ ├── conf.ini.php │ └── index.php ├── setup.php ├── site_skeleton ├── .htaccess ├── Web.config ├── conf.ini.php └── index.php ├── snippets └── functions.inc.php ├── tests ├── lib │ ├── PHPUnit.php │ ├── PHPUnit │ │ ├── Assert.php │ │ ├── GUI │ │ │ ├── Gtk.php │ │ │ ├── HTML.php │ │ │ ├── HTML.tpl │ │ │ └── SetupDecorator.php │ │ ├── RepeatedTest.php │ │ ├── Skeleton.php │ │ ├── TestCase.php │ │ ├── TestDecorator.php │ │ ├── TestFailure.php │ │ ├── TestListener.php │ │ ├── TestResult.php │ │ └── TestSuite.php │ ├── Var_Dump.php │ ├── Var_Dump │ │ ├── Renderer.php │ │ └── Renderer │ │ │ ├── Common.php │ │ │ ├── HTML4_Table.php │ │ │ ├── HTML4_Text.php │ │ │ ├── Table.php │ │ │ ├── Text.php │ │ │ ├── XHTML_Table.php │ │ │ ├── XHTML_Text.php │ │ │ └── XML.php │ └── simpletest │ │ ├── HELP_MY_TESTS_DONT_WORK_ANYMORE │ │ ├── LICENSE │ │ ├── README │ │ ├── VERSION │ │ ├── authentication.php │ │ ├── browser.php │ │ ├── collector.php │ │ ├── compatibility.php │ │ ├── cookies.php │ │ ├── detached.php │ │ ├── docs │ │ ├── en │ │ │ ├── authentication_documentation.html │ │ │ ├── browser_documentation.html │ │ │ ├── docs.css │ │ │ ├── expectation_documentation.html │ │ │ ├── form_testing_documentation.html │ │ │ ├── group_test_documentation.html │ │ │ ├── index.html │ │ │ ├── mock_objects_documentation.html │ │ │ ├── overview.html │ │ │ ├── partial_mocks_documentation.html │ │ │ ├── reporter_documentation.html │ │ │ ├── unit_test_documentation.html │ │ │ └── web_tester_documentation.html │ │ └── fr │ │ │ ├── authentication_documentation.html │ │ │ ├── browser_documentation.html │ │ │ ├── docs.css │ │ │ ├── expectation_documentation.html │ │ │ ├── form_testing_documentation.html │ │ │ ├── group_test_documentation.html │ │ │ ├── index.html │ │ │ ├── mock_objects_documentation.html │ │ │ ├── overview.html │ │ │ ├── partial_mocks_documentation.html │ │ │ ├── reporter_documentation.html │ │ │ ├── server_stubs_documentation.html │ │ │ ├── unit_test_documentation.html │ │ │ └── web_tester_documentation.html │ │ ├── dumper.php │ │ ├── encoding.php │ │ ├── errors.php │ │ ├── exceptions.php │ │ ├── expectation.php │ │ ├── extensions │ │ ├── pear_test_case.php │ │ └── phpunit_test_case.php │ │ ├── form.php │ │ ├── frames.php │ │ ├── http.php │ │ ├── invoker.php │ │ ├── mock_objects.php │ │ ├── page.php │ │ ├── parser.php │ │ ├── reflection_php4.php │ │ ├── reflection_php5.php │ │ ├── remote.php │ │ ├── reporter.php │ │ ├── scorer.php │ │ ├── selector.php │ │ ├── shell_tester.php │ │ ├── simpletest.php │ │ ├── socket.php │ │ ├── tag.php │ │ ├── test │ │ ├── acceptance_test.php │ │ ├── adapter_test.php │ │ ├── all_tests.php │ │ ├── authentication_test.php │ │ ├── browser_test.php │ │ ├── collector_test.php │ │ ├── compatibility_test.php │ │ ├── cookies_test.php │ │ ├── detached_test.php │ │ ├── dumper_test.php │ │ ├── encoding_test.php │ │ ├── errors_test.php │ │ ├── expectation_test.php │ │ ├── form_test.php │ │ ├── frames_test.php │ │ ├── http_test.php │ │ ├── interfaces_test.php │ │ ├── live_test.php │ │ ├── mock_objects_test.php │ │ ├── page_test.php │ │ ├── parse_error_test.php │ │ ├── parser_test.php │ │ ├── reflection_php4_test.php │ │ ├── reflection_php5_test.php │ │ ├── remote_test.php │ │ ├── shell_test.php │ │ ├── shell_tester_test.php │ │ ├── simpletest_test.php │ │ ├── socket_test.php │ │ ├── support │ │ │ ├── collector │ │ │ │ ├── collectable.1 │ │ │ │ └── collectable.2 │ │ │ ├── latin1_sample │ │ │ ├── spl_examples.php │ │ │ ├── supplementary_upload_sample.txt │ │ │ └── upload_sample.txt │ │ ├── tag_test.php │ │ ├── test_groups.php │ │ ├── test_with_parse_error.php │ │ ├── unit_tester_test.php │ │ ├── unit_tests.php │ │ ├── url_test.php │ │ ├── user_agent_test.php │ │ ├── visual_test.php │ │ ├── web_tester_test.php │ │ └── xml_test.php │ │ ├── test_case.php │ │ ├── unit_tester.php │ │ ├── url.php │ │ ├── user_agent.php │ │ ├── web_tester.php │ │ └── xml.php ├── runtests.sh ├── runtests_composer.sh ├── tables │ ├── Appointments │ │ └── Appointments.php │ ├── Courses │ │ └── Courses.php │ ├── GroupTest │ │ └── fields.ini │ ├── HistoryToolTest │ │ ├── container_field │ │ │ └── index.txt │ │ └── fields.ini │ ├── People │ │ ├── actions.ini │ │ ├── fields.ini │ │ ├── relationships.ini │ │ └── valuelists.ini │ ├── People2 │ │ └── relationships.ini │ ├── Profiles │ │ ├── Profiles.php │ │ ├── fields.ini │ │ ├── relationships.ini │ │ └── valuelists.ini │ ├── Publications │ │ └── Publications.php │ ├── Registrants │ │ ├── Registrants.php │ │ ├── fields.ini │ │ └── relationships.ini │ ├── RegistrationProducts │ │ └── RegistrationProducts.php │ ├── Registrations │ │ ├── Registrations.php │ │ └── relationships.ini │ ├── Test │ │ ├── fields.ini │ │ └── valuelists.ini │ ├── formula_ingredients │ │ ├── create.sql │ │ ├── fields.ini │ │ ├── formula_ingredients.php │ │ └── init.sql │ ├── formulas │ │ ├── create.sql │ │ ├── fields.ini │ │ ├── formulas.php │ │ ├── init.sql │ │ └── relationships.ini │ ├── fragrances │ │ ├── create.sql │ │ ├── init.sql │ │ └── relationships.ini │ ├── frameworks │ │ └── fields.ini │ ├── ingredients │ │ ├── create.sql │ │ └── init.sql │ ├── lesson_plans │ │ ├── fields.ini │ │ ├── lesson_plans.php │ │ ├── relationships.ini │ │ └── valuelists.ini │ ├── md_test1 │ │ └── metadata.ini │ ├── resources │ │ └── fields.ini │ ├── tables │ │ ├── Profiles │ │ │ ├── Profiles.php │ │ │ ├── fields.ini │ │ │ ├── forms │ │ │ │ └── form1.ini │ │ │ ├── relationships.ini │ │ │ └── valuelists.ini │ │ ├── Test │ │ │ ├── fields.ini │ │ │ └── valuelists.ini │ │ ├── frameworks │ │ │ └── fields.ini │ │ ├── lesson_plans │ │ │ ├── fields.ini │ │ │ ├── lesson_plans.php │ │ │ ├── relationships.ini │ │ │ └── valuelists.ini │ │ └── resources │ │ │ └── fields.ini │ ├── test683 │ │ ├── create.sql │ │ ├── fields.ini │ │ ├── init.sql │ │ └── valuelists.ini │ ├── test841 │ │ ├── create.sql │ │ ├── fields.ini │ │ └── init.sql │ ├── test841_join │ │ ├── create.sql │ │ ├── fields.ini │ │ └── init.sql │ ├── test_versions │ │ ├── create.sql │ │ ├── fields.ini │ │ └── init.sql │ └── units │ │ ├── create.sql │ │ └── init.sql └── tests │ ├── BaseTest.php │ ├── BaseTest2.php │ ├── CLIServerTest.php │ ├── CSSToolTest.php │ ├── CSSToolTest │ └── css1 │ │ ├── stylesheetA.css │ │ ├── stylesheetB.css │ │ └── stylesheetC.css │ ├── DB_Sync_Test.php │ ├── DB_Test.php │ ├── HistoryToolTest.php │ ├── IOTest.php │ ├── ImportFilterTest.php │ ├── JavascriptToolTest.php │ ├── JavascriptToolTest │ ├── css1 │ │ ├── styleA.css │ │ └── styleB.css │ └── js1 │ │ ├── scriptA.js │ │ ├── scriptB.js │ │ ├── scriptC.js │ │ ├── scriptD.js │ │ ├── scriptE.js │ │ └── scriptF.js │ ├── LinkToolTest.php │ ├── MetadataToolTest.php │ ├── Parser_wrapperTest.php │ ├── PermissionsTest.php │ ├── PermissionsToolTest.php │ ├── QueryBuilderTest.php │ ├── QueryToolTest.php │ ├── QueryTranslator_Test.php │ ├── RecordTest.php │ ├── RecordTest2.php │ ├── RelatedListTest.php │ ├── RelatedRecordTest.php │ ├── RelationshipTest.php │ ├── Sel_TestAddExistingRelatedRecord.html │ ├── Sel_TestAddNewRelatedRecord.html │ ├── Sel_TestDeleteFoundTrigger.html │ ├── Sel_TestDeleteRecord.html │ ├── Sel_TestDeleteTrigger.html │ ├── Sel_TestGroupedFields.html │ ├── Sel_TestInsertTrigger.html │ ├── Sel_TestListView.html │ ├── Sel_TestNewRecord.html │ ├── Sel_TestRemoveRelatedRecord.html │ ├── Sel_TestSaveTrigger.html │ ├── Sel_TestSuite.htm │ ├── Sel_TestUpdateTrigger.html │ ├── ServicesTest.php │ ├── TODO.txt │ ├── TableTest.php │ ├── Table_builderTest.php │ ├── TranslationToolTest.php │ ├── TreeTableTest.php │ ├── UtilitiesTest.php │ ├── ValuelistToolTest.php │ ├── XFProjectTest.php │ ├── conf.ini │ ├── conf.ini-sample │ ├── dhtmlxGridTest.php │ ├── dhtmlxGrid_testpage.php │ ├── index.php │ ├── metadata.ini │ ├── runTests.php │ ├── run_CompositeFormTest.php │ ├── run_DB_Sync_Test.php │ ├── run_DB_Test.php │ ├── run_HistoryToolTest.php │ ├── run_IOTest.php │ ├── run_ImportFilterTest.php │ ├── run_LinkToolTest.php │ ├── run_MetadataToolTest.php │ ├── run_Parser_wrapperTest.php │ ├── run_PermissionToolTest.php │ ├── run_QueryBuilderTest.php │ ├── run_QueryToolTest.php │ ├── run_QueryTranslator_Test.php │ ├── run_RecordTest.php │ ├── run_RecordTest2.php │ ├── run_RelatedRecordTest.php │ ├── run_RelationshipTest.php │ ├── run_SQL_Parser_test.php │ ├── run_TableTest.php │ ├── run_Table_builderTest.php │ ├── run_TranslationToolTest.php │ ├── run_TreeTableTest.php │ ├── run_UtilitiesTest.php │ ├── run_ValuelistEditorFormTest.php │ ├── run_ValuelistToolTest.php │ ├── run_dhtmlxGridTest.php │ ├── test2.php │ ├── test3.php │ ├── test4.php │ ├── testApp.php │ ├── test_Dataface_Record.php │ ├── test_HTML_QuickForm_select.php │ ├── test_Models.php │ ├── testconfig.php │ └── testconfig.php-sample ├── tools ├── clone.php ├── create.php ├── csv2ini.php ├── error_log.sh ├── fix-deprecated-mysql-ant-task.xml ├── ini2csv.php ├── install-pkg.php ├── lib │ ├── XFAppCommand.class.php │ ├── XFProject.class.php │ ├── XFServers.class.php │ └── XFServices.class.php ├── service.php ├── site_skeleton │ ├── .htaccess │ ├── Web.config │ ├── conf.ini.php │ └── index.php └── xataface.php ├── uilibs └── semantic-ui │ ├── LICENSE │ ├── README.md │ ├── components │ ├── accordion.css │ ├── accordion.js │ ├── accordion.min.css │ ├── accordion.min.js │ ├── ad.css │ ├── ad.min.css │ ├── api.js │ ├── api.min.js │ ├── breadcrumb.css │ ├── breadcrumb.min.css │ ├── button.css │ ├── button.min.css │ ├── card.css │ ├── card.min.css │ ├── checkbox.css │ ├── checkbox.js │ ├── checkbox.min.css │ ├── checkbox.min.js │ ├── colorize.js │ ├── colorize.min.js │ ├── comment.css │ ├── comment.min.css │ ├── container.css │ ├── container.min.css │ ├── dimmer.css │ ├── dimmer.js │ ├── dimmer.min.css │ ├── dimmer.min.js │ ├── divider.css │ ├── divider.min.css │ ├── dropdown.css │ ├── dropdown.js │ ├── dropdown.min.css │ ├── dropdown.min.js │ ├── embed.css │ ├── embed.js │ ├── embed.min.css │ ├── embed.min.js │ ├── feed.css │ ├── feed.min.css │ ├── flag.css │ ├── flag.min.css │ ├── form.css │ ├── form.js │ ├── form.min.css │ ├── form.min.js │ ├── grid.css │ ├── grid.min.css │ ├── header.css │ ├── header.min.css │ ├── icon.css │ ├── icon.min.css │ ├── image.css │ ├── image.min.css │ ├── input.css │ ├── input.min.css │ ├── item.css │ ├── item.min.css │ ├── label.css │ ├── label.min.css │ ├── list.css │ ├── list.min.css │ ├── loader.css │ ├── loader.min.css │ ├── menu.css │ ├── menu.min.css │ ├── message.css │ ├── message.min.css │ ├── modal.css │ ├── modal.js │ ├── modal.min.css │ ├── modal.min.js │ ├── nag.css │ ├── nag.js │ ├── nag.min.css │ ├── nag.min.js │ ├── placeholder.css │ ├── placeholder.min.css │ ├── popup.css │ ├── popup.js │ ├── popup.min.css │ ├── popup.min.js │ ├── progress.css │ ├── progress.js │ ├── progress.min.css │ ├── progress.min.js │ ├── rail.css │ ├── rail.min.css │ ├── rating.css │ ├── rating.js │ ├── rating.min.css │ ├── rating.min.js │ ├── reset.css │ ├── reset.min.css │ ├── reveal.css │ ├── reveal.min.css │ ├── search.css │ ├── search.js │ ├── search.min.css │ ├── search.min.js │ ├── segment.css │ ├── segment.min.css │ ├── shape.css │ ├── shape.js │ ├── shape.min.css │ ├── shape.min.js │ ├── sidebar.css │ ├── sidebar.js │ ├── sidebar.min.css │ ├── sidebar.min.js │ ├── site.css │ ├── site.js │ ├── site.min.css │ ├── site.min.js │ ├── state.js │ ├── state.min.js │ ├── statistic.css │ ├── statistic.min.css │ ├── step.css │ ├── step.min.css │ ├── sticky.css │ ├── sticky.js │ ├── sticky.min.css │ ├── sticky.min.js │ ├── tab.css │ ├── tab.js │ ├── tab.min.css │ ├── tab.min.js │ ├── table.css │ ├── table.min.css │ ├── transition.css │ ├── transition.js │ ├── transition.min.css │ ├── transition.min.js │ ├── video.css │ ├── video.js │ ├── video.min.css │ ├── video.min.js │ ├── visibility.js │ ├── visibility.min.js │ ├── visit.js │ └── visit.min.js │ ├── package.js │ ├── package.json │ ├── semantic-ui.uilib.html │ ├── semantic.css │ ├── semantic.js │ ├── semantic.min.css │ ├── semantic.min.js │ └── themes │ └── default │ └── assets │ ├── fonts │ ├── brand-icons.eot │ ├── brand-icons.svg │ ├── brand-icons.ttf │ ├── brand-icons.woff │ ├── brand-icons.woff2 │ ├── icons.eot │ ├── icons.otf │ ├── icons.svg │ ├── icons.ttf │ ├── icons.woff │ ├── icons.woff2 │ ├── outline-icons.eot │ ├── outline-icons.svg │ ├── outline-icons.ttf │ ├── outline-icons.woff │ └── outline-icons.woff2 │ └── images │ └── flags.png ├── version.txt └── xf ├── actions └── BaseAction.php ├── components └── Portlet.php ├── core ├── XFException.php ├── git └── status ├── db ├── Binding.php ├── Database.php ├── DynamicTable.php └── drivers │ ├── mysql.php │ └── mysqli.php ├── image ├── JPEG_ICC.php └── crop.php ├── io └── HttpClient.php ├── logging └── Log.php ├── registration ├── createActivationLink.func.php └── createRegistrationTable.func.php └── relationships └── RelatedQueryTool.php /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | /nbproject/private/ 3 | .idea 4 | /tests_output/ -------------------------------------------------------------------------------- /403.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | Access Restricted 4 | 403 Access Restricted. Go to installer 5 | -------------------------------------------------------------------------------- /Dataface/Admin/FieldForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/Dataface/Admin/FieldForm.php -------------------------------------------------------------------------------- /Dataface/Admin/RelationshipForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/Dataface/Admin/RelationshipForm.php -------------------------------------------------------------------------------- /Dataface/Admin/TableForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/Dataface/Admin/TableForm.php -------------------------------------------------------------------------------- /Dataface/templates/Dataface_Custom_Template.html: -------------------------------------------------------------------------------- 1 | {use_macro file="Dataface_Main_Template.html"} 2 | {fill_slot name="main_section"}{$content}{/fill_slot} 3 | {/use_macro} -------------------------------------------------------------------------------- /Dataface/templates/xataface/actions/xf_infinite_scroll.html: -------------------------------------------------------------------------------- 1 | {result_list} -------------------------------------------------------------------------------- /Dataface/templates/xataface/actions/xf_infinite_scroll_related.html: -------------------------------------------------------------------------------- 1 | {related_list} -------------------------------------------------------------------------------- /actions/disabled/xml_delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/actions/disabled/xml_delete.php -------------------------------------------------------------------------------- /actions/disabled/xml_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/actions/disabled/xml_edit.php -------------------------------------------------------------------------------- /actions/disabled/xml_new.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/actions/disabled/xml_new.php -------------------------------------------------------------------------------- /actions/disabled/xml_view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/actions/disabled/xml_view.php -------------------------------------------------------------------------------- /actions/help.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/actions/help.php -------------------------------------------------------------------------------- /actions/rest_update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/actions/rest_update.php -------------------------------------------------------------------------------- /bin/xataface: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | SCRIPTPATH="$( cd "$(dirname "$0")" ; pwd -P )" 4 | export XATAFACE="$SCRIPTPATH/.." 5 | php "$SCRIPTPATH/../tools/xataface.php" $@ -------------------------------------------------------------------------------- /css/smoothness/images/text_align_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/css/smoothness/images/text_align_left.png -------------------------------------------------------------------------------- /css/smoothness/images/text_align_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/css/smoothness/images/text_align_right.png -------------------------------------------------------------------------------- /dataface-public-api.php: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /installer.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/installer.disabled -------------------------------------------------------------------------------- /js/RecordDialog/templates/dialog.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /js/nicEdit/nicEditorIcons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/js/nicEdit/nicEditorIcons.gif -------------------------------------------------------------------------------- /js/scriptaculous/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/js/scriptaculous/CHANGELOG -------------------------------------------------------------------------------- /lib/I18Nv2/Locale/cs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/lib/I18Nv2/Locale/cs.php -------------------------------------------------------------------------------- /lib/I18Nv2/Locale/de_AT.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /lib/I18Nv2/Locale/de_DE.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /lib/I18Nv2/Locale/el_GR.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /lib/I18Nv2/Locale/en_IE.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /lib/I18Nv2/Locale/es_ES.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /lib/I18Nv2/Locale/fi_FI.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /lib/I18Nv2/Locale/fr_BE.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /lib/I18Nv2/Locale/fr_FR.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /lib/I18Nv2/Locale/fr_LU.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /lib/I18Nv2/Locale/fr_MC.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /lib/I18Nv2/Locale/hu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/lib/I18Nv2/Locale/hu.php -------------------------------------------------------------------------------- /lib/I18Nv2/Locale/it_IT.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /lib/I18Nv2/Locale/nb.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /lib/I18Nv2/Locale/nl_BE.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /lib/I18Nv2/Locale/nl_NL.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /lib/I18Nv2/Locale/nn.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /lib/I18Nv2/Locale/pt_PT.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /lib/I18Nv2/Locale/ru.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/lib/I18Nv2/Locale/ru.php -------------------------------------------------------------------------------- /lib/I18Nv2/Locale/sv_FI.php: -------------------------------------------------------------------------------- 1 | 8 | -------------------------------------------------------------------------------- /lib/Text/Diff/Engine/string.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/lib/Text/Diff/Engine/string.php -------------------------------------------------------------------------------- /lib/XML/Tree.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/lib/XML/Tree.php -------------------------------------------------------------------------------- /lib/XML/Tree/Node.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/lib/XML/Tree/Node.php -------------------------------------------------------------------------------- /lib/jscalendar/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/lib/jscalendar/img.gif -------------------------------------------------------------------------------- /lib/jscalendar/lang/calendar-bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/lib/jscalendar/lang/calendar-bg.js -------------------------------------------------------------------------------- /lib/jscalendar/lang/calendar-big5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/lib/jscalendar/lang/calendar-big5.js -------------------------------------------------------------------------------- /lib/jscalendar/lang/calendar-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/lib/jscalendar/lang/calendar-ca.js -------------------------------------------------------------------------------- /lib/jscalendar/lang/calendar-cs-win.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/lib/jscalendar/lang/calendar-cs-win.js -------------------------------------------------------------------------------- /lib/jscalendar/lang/calendar-es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/lib/jscalendar/lang/calendar-es.js -------------------------------------------------------------------------------- /lib/jscalendar/lang/calendar-fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/lib/jscalendar/lang/calendar-fr.js -------------------------------------------------------------------------------- /lib/jscalendar/lang/calendar-hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/lib/jscalendar/lang/calendar-hr.js -------------------------------------------------------------------------------- /lib/jscalendar/lang/calendar-hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/lib/jscalendar/lang/calendar-hu.js -------------------------------------------------------------------------------- /lib/jscalendar/lang/calendar-jp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/lib/jscalendar/lang/calendar-jp.js -------------------------------------------------------------------------------- /lib/jscalendar/lang/calendar-ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/lib/jscalendar/lang/calendar-ko.js -------------------------------------------------------------------------------- /lib/jscalendar/lang/calendar-lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/lib/jscalendar/lang/calendar-lt.js -------------------------------------------------------------------------------- /lib/jscalendar/lang/calendar-lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/lib/jscalendar/lang/calendar-lv.js -------------------------------------------------------------------------------- /lib/jscalendar/lang/calendar-ru_win_.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/lib/jscalendar/lang/calendar-ru_win_.js -------------------------------------------------------------------------------- /lib/jscalendar/lang/calendar-sp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/lib/jscalendar/lang/calendar-sp.js -------------------------------------------------------------------------------- /lib/jscalendar/lang/calendar-sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/lib/jscalendar/lang/calendar-sv.js -------------------------------------------------------------------------------- /lib/jscalendar/lang/calendar-tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/lib/jscalendar/lang/calendar-tr.js -------------------------------------------------------------------------------- /lib/jscalendar/lang/calendar-zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/lib/jscalendar/lang/calendar-zh.js -------------------------------------------------------------------------------- /lib/jscalendar/menuarrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/lib/jscalendar/menuarrow.gif -------------------------------------------------------------------------------- /lib/jscalendar/menuarrow2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/lib/jscalendar/menuarrow2.gif -------------------------------------------------------------------------------- /lib/jscalendar/skins/aqua/active-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/lib/jscalendar/skins/aqua/active-bg.gif -------------------------------------------------------------------------------- /lib/jscalendar/skins/aqua/dark-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/lib/jscalendar/skins/aqua/dark-bg.gif -------------------------------------------------------------------------------- /lib/jscalendar/skins/aqua/hover-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/lib/jscalendar/skins/aqua/hover-bg.gif -------------------------------------------------------------------------------- /lib/jscalendar/skins/aqua/menuarrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/lib/jscalendar/skins/aqua/menuarrow.gif -------------------------------------------------------------------------------- /lib/jscalendar/skins/aqua/normal-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/lib/jscalendar/skins/aqua/normal-bg.gif -------------------------------------------------------------------------------- /lib/jscalendar/skins/aqua/rowhover-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/lib/jscalendar/skins/aqua/rowhover-bg.gif -------------------------------------------------------------------------------- /lib/jscalendar/skins/aqua/status-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/lib/jscalendar/skins/aqua/status-bg.gif -------------------------------------------------------------------------------- /lib/jscalendar/skins/aqua/title-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/lib/jscalendar/skins/aqua/title-bg.gif -------------------------------------------------------------------------------- /lib/jscalendar/skins/aqua/today-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/lib/jscalendar/skins/aqua/today-bg.gif -------------------------------------------------------------------------------- /logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/logo-small.png -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/logo.png -------------------------------------------------------------------------------- /modules/XataJax/actions/xatajax_new.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/modules/XataJax/actions/xatajax_new.php -------------------------------------------------------------------------------- /modules/XataJax/actions/xatajax_update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/modules/XataJax/actions/xatajax_update.php -------------------------------------------------------------------------------- /modules/XataJax/css/xataface/ui/SchemaBrowser.css: -------------------------------------------------------------------------------- 1 | span.xf-preview { 2 | color: #ccc; 3 | size: 90%; 4 | font-style: italic; 5 | } -------------------------------------------------------------------------------- /modules/XataJax/js/xatacard/__init__.js: -------------------------------------------------------------------------------- 1 | var xatacard; 2 | 3 | /** 4 | * @package 5 | */ 6 | xatacard = {}; -------------------------------------------------------------------------------- /modules/XataJax/js/xatacard/layout/__init__.js: -------------------------------------------------------------------------------- 1 | //require 2 | (function(){ 3 | /** 4 | * @package 5 | */ 6 | xatacard.layout = {}; 7 | })(); -------------------------------------------------------------------------------- /modules/XataJax/js/xatadoc/__init__.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @package 3 | */ 4 | var xatadoc = {}; 5 | -------------------------------------------------------------------------------- /modules/XataJax/js/xatadoc/tk/__init__.js: -------------------------------------------------------------------------------- 1 | //require 2 | (function(){ 3 | 4 | /** 5 | * @package 6 | */ 7 | xatadoc.tk = {}; 8 | })(); -------------------------------------------------------------------------------- /modules/XataJax/js/xataface/ui/schemabrowser/template.html: -------------------------------------------------------------------------------- 1 |
2 | 3 |
4 | -------------------------------------------------------------------------------- /modules/XataJax/js/xatajax.beans.core.js: -------------------------------------------------------------------------------- 1 | //require 2 | (function(){ 3 | 4 | /** 5 | * @package 6 | */ 7 | XataJax.beans = {}; 8 | })(); -------------------------------------------------------------------------------- /modules/XataJax/js/xatajax.db/Portal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/modules/XataJax/js/xatajax.db/Portal.js -------------------------------------------------------------------------------- /modules/XataJax/js/xatajax.designer.core.js: -------------------------------------------------------------------------------- 1 | //require 2 | (function(){ 3 | XataJax.ui.designer = {}; 4 | 5 | })(); -------------------------------------------------------------------------------- /modules/XataJax/js/xatajax.io/__init__.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/modules/XataJax/js/xatajax.io/__init__.js -------------------------------------------------------------------------------- /modules/XataJax/js/xatajax.undo.js: -------------------------------------------------------------------------------- 1 | (function(){ 2 | /** 3 | * @package 4 | */ 5 | XataJax.undo = {}; 6 | })(); -------------------------------------------------------------------------------- /modules/XataJax/js/xatajax.undo/__doc__.js: -------------------------------------------------------------------------------- 1 | //require 2 | //require -------------------------------------------------------------------------------- /modules/XataJax/js/xatajax.update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/modules/XataJax/js/xatajax.update.js -------------------------------------------------------------------------------- /modules/XataJax/permissions.ini.php: -------------------------------------------------------------------------------- 1 | ; 7 | -------------------------------------------------------------------------------- /tests/tables/Registrants/fields.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/tests/tables/Registrants/fields.ini -------------------------------------------------------------------------------- /tests/tables/Registrants/relationships.ini: -------------------------------------------------------------------------------- 1 | [Registrations] 2 | Registrations.RegistrantID = "$RegistrantID" -------------------------------------------------------------------------------- /tests/tables/Registrations/relationships.ini: -------------------------------------------------------------------------------- 1 | [Products] 2 | Products.ProductID="RegistrationProducts.ProductID" 3 | RegistrationProducts.RegistrationID="$RegistrationID" -------------------------------------------------------------------------------- /tests/tables/Test/valuelists.ini: -------------------------------------------------------------------------------- 1 | [Colors] 2 | 1=Red 3 | 2=Blue 4 | 3=Green 5 | 6 | [Names] 7 | Tom = Tom 8 | John = John 9 | Samantha = Samantha -------------------------------------------------------------------------------- /tests/tables/fragrances/relationships.ini: -------------------------------------------------------------------------------- 1 | [formulas] 2 | formulas.fragrance_id="$fragrance_id" 3 | -------------------------------------------------------------------------------- /tests/tables/lesson_plans/relationships.ini: -------------------------------------------------------------------------------- 1 | [frameworks] 2 | __sql__ = "select * from frameworks where id='2'" -------------------------------------------------------------------------------- /tests/tables/md_test1/metadata.ini: -------------------------------------------------------------------------------- 1 | [translation_state] 2 | Type="int(5)" -------------------------------------------------------------------------------- /tests/tables/resources/fields.ini: -------------------------------------------------------------------------------- 1 | [authorized] 2 | widget:type = checkbox 3 | 4 | [created] 5 | widget:type = date -------------------------------------------------------------------------------- /tests/tables/tables/Profiles/valuelists.ini: -------------------------------------------------------------------------------- 1 | [Colors] 2 | red = Red 3 | blue = Blue 4 | green = Green 5 | __sql__ = "select * from Earthtones where value='brown'" -------------------------------------------------------------------------------- /tests/tables/tables/Test/valuelists.ini: -------------------------------------------------------------------------------- 1 | [Colors] 2 | 1=Red 3 | 2=Blue 4 | 3=Green 5 | 6 | [Names] 7 | Tom = Tom 8 | John = John 9 | Samantha = Samantha -------------------------------------------------------------------------------- /tests/tables/tables/lesson_plans/relationships.ini: -------------------------------------------------------------------------------- 1 | [frameworks] 2 | __sql__ = "select * from frameworks where id='2'" -------------------------------------------------------------------------------- /tests/tables/tables/resources/fields.ini: -------------------------------------------------------------------------------- 1 | [authorized] 2 | widget:type = checkbox 3 | 4 | [created] 5 | widget:type = date -------------------------------------------------------------------------------- /tests/tables/test683/create.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE `test683` (`test683_id` INT NOT NULL AUTO_INCREMENT PRIMARY KEY, `multifield` TEXT NULL) -------------------------------------------------------------------------------- /tests/tables/test683/fields.ini: -------------------------------------------------------------------------------- 1 | [multifield] 2 | widget:type=advmultiselect 3 | repeat=1 4 | vocabulary=test683multi 5 | -------------------------------------------------------------------------------- /tests/tables/test683/init.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `test683` (`test683_id`, `multifield`) VALUES 2 | (1, 'en\r\nes'), 3 | (2, 'es\r\nfr\r\n'); 4 | -------------------------------------------------------------------------------- /tests/tables/test683/valuelists.ini: -------------------------------------------------------------------------------- 1 | [test683multi] 2 | en=English 3 | fr=French 4 | es=Spanish 5 | pt=Portuguese -------------------------------------------------------------------------------- /tests/tables/test841/fields.ini: -------------------------------------------------------------------------------- 1 | [__join__] 2 | test841_join=Join Table -------------------------------------------------------------------------------- /tests/tables/test841/init.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `test841` (`test841_id`, `varchar_field`) VALUES 2 | (1, 'row1'), 3 | (2, 'row2'); -------------------------------------------------------------------------------- /tests/tables/test841_join/fields.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/tests/tables/test841_join/fields.ini -------------------------------------------------------------------------------- /tests/tables/test841_join/init.sql: -------------------------------------------------------------------------------- 1 | INSERT INTO `test841_join` (`test841_id`, `join_varchar_field`) VALUES 2 | (1, 'join value'); -------------------------------------------------------------------------------- /tests/tables/test_versions/fields.ini: -------------------------------------------------------------------------------- 1 | [version] 2 | version=1 -------------------------------------------------------------------------------- /tests/tests/CSSToolTest/css1/stylesheetB.css: -------------------------------------------------------------------------------- 1 | .divB { 2 | font-weight: bold; 3 | } -------------------------------------------------------------------------------- /tests/tests/CSSToolTest/css1/stylesheetC.css: -------------------------------------------------------------------------------- 1 | .divC { 2 | color: red; 3 | padding: 20px 10px; 4 | margin-top: 1px; 5 | margin-left: 30px; 6 | } -------------------------------------------------------------------------------- /tests/tests/JavascriptToolTest/css1/styleA.css: -------------------------------------------------------------------------------- 1 | .styleA { 2 | background-color: red; 3 | } -------------------------------------------------------------------------------- /tests/tests/JavascriptToolTest/css1/styleB.css: -------------------------------------------------------------------------------- 1 | .styleB { 2 | background-color: blue; 3 | } -------------------------------------------------------------------------------- /tests/tests/JavascriptToolTest/js1/scriptA.js: -------------------------------------------------------------------------------- 1 | alert('hello A'); 2 | //require -------------------------------------------------------------------------------- /tests/tests/JavascriptToolTest/js1/scriptB.js: -------------------------------------------------------------------------------- 1 | //require 2 | alert('hello B'); 3 | -------------------------------------------------------------------------------- /tests/tests/JavascriptToolTest/js1/scriptC.js: -------------------------------------------------------------------------------- 1 | alert('Hello C'); 2 | // require -------------------------------------------------------------------------------- /tests/tests/JavascriptToolTest/js1/scriptD.js: -------------------------------------------------------------------------------- 1 | //load 2 | //require 3 | alert('hello D'); 4 | -------------------------------------------------------------------------------- /tests/tests/JavascriptToolTest/js1/scriptE.js: -------------------------------------------------------------------------------- 1 | //require-css 2 | //load 3 | alert('script E'); -------------------------------------------------------------------------------- /tests/tests/JavascriptToolTest/js1/scriptF.js: -------------------------------------------------------------------------------- 1 | //require-css 2 | alert('script F'); -------------------------------------------------------------------------------- /tests/tests/metadata.ini: -------------------------------------------------------------------------------- 1 | [published_state] 2 | Type="int(11)" -------------------------------------------------------------------------------- /tools/error_log.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | awk "/${1}>/{flag=1}/<${1}/{flag=0}flag" $2 -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 3.0.2 5002 2 | -------------------------------------------------------------------------------- /xf/core/git: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/xf/core/git -------------------------------------------------------------------------------- /xf/core/status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shannah/xataface/d183f7be15b7000dbb30aa768c95f4772bd11bea/xf/core/status --------------------------------------------------------------------------------