├── domain ├── .gitignore ├── team └── www │ ├── test.sh │ ├── run.sh │ └── fig.yml ├── phpmyadmin ├── js │ ├── openlayers │ │ ├── theme │ │ │ └── default │ │ │ │ ├── framedCloud.css │ │ │ │ ├── img │ │ │ │ ├── blank.gif │ │ │ │ ├── close.gif │ │ │ │ ├── ruler.png │ │ │ │ ├── pan_off.png │ │ │ │ ├── pan_on.png │ │ │ │ ├── pan-panel.png │ │ │ │ ├── zoom-panel.png │ │ │ │ ├── add_point_off.png │ │ │ │ ├── add_point_on.png │ │ │ │ ├── draw_line_off.png │ │ │ │ ├── draw_line_on.png │ │ │ │ ├── draw_point_on.png │ │ │ │ ├── view_next_off.png │ │ │ │ ├── view_next_on.png │ │ │ │ ├── draw_point_off.png │ │ │ │ ├── draw_polygon_on.png │ │ │ │ ├── move_feature_on.png │ │ │ │ ├── panning-hand-on.png │ │ │ │ ├── remove_point_on.png │ │ │ │ ├── drag-rectangle-off.png │ │ │ │ ├── drag-rectangle-on.png │ │ │ │ ├── draw_polygon_off.png │ │ │ │ ├── editing_tool_bar.png │ │ │ │ ├── move_feature_off.png │ │ │ │ ├── navigation_history.png │ │ │ │ ├── pan-panel-NOALPHA.png │ │ │ │ ├── panning-hand-off.png │ │ │ │ ├── remove_point_off.png │ │ │ │ ├── save_features_off.png │ │ │ │ ├── save_features_on.png │ │ │ │ ├── view_previous_off.png │ │ │ │ ├── view_previous_on.png │ │ │ │ ├── zoom-panel-NOALPHA.png │ │ │ │ └── overview_replacement.gif │ │ │ │ ├── google.css │ │ │ │ └── ie6-style.css │ │ ├── img │ │ │ ├── blank.gif │ │ │ ├── marker.png │ │ │ ├── slider.png │ │ │ ├── zoombar.png │ │ │ ├── east-mini.png │ │ │ ├── west-mini.png │ │ │ ├── marker-blue.png │ │ │ ├── marker-gold.png │ │ │ ├── marker-green.png │ │ │ ├── north-mini.png │ │ │ ├── south-mini.png │ │ │ ├── zoom-plus-mini.png │ │ │ ├── drag-rectangle-on.png │ │ │ ├── panning-hand-off.png │ │ │ ├── panning-hand-on.png │ │ │ ├── zoom-minus-mini.png │ │ │ ├── zoom-world-mini.png │ │ │ ├── drag-rectangle-off.png │ │ │ ├── measuring-stick-off.png │ │ │ ├── measuring-stick-on.png │ │ │ ├── cloud-popup-relative.png │ │ │ ├── layer-switcher-maximize.png │ │ │ └── layer-switcher-minimize.png │ │ └── src │ │ │ ├── openlayers │ │ │ └── lib │ │ │ │ ├── Firebug │ │ │ │ ├── errorIcon.png │ │ │ │ ├── infoIcon.png │ │ │ │ ├── warningIcon.png │ │ │ │ ├── firebugx.js │ │ │ │ ├── readme.txt │ │ │ │ └── firebug.html │ │ │ │ └── OpenLayers │ │ │ │ ├── Marker │ │ │ │ └── Box.js │ │ │ │ ├── SingleFile.js │ │ │ │ ├── Lang │ │ │ │ ├── io.js │ │ │ │ ├── el.js │ │ │ │ ├── te.js │ │ │ │ ├── km.js │ │ │ │ ├── en-CA.js │ │ │ │ ├── fi.js │ │ │ │ └── fur.js │ │ │ │ └── Geometry │ │ │ │ └── Surface.js │ │ │ └── README │ ├── jquery │ │ ├── jquery.event.drag-2.2.js │ │ └── src │ │ │ ├── jquery │ │ │ ├── outro.js │ │ │ ├── sizzle-jquery.js │ │ │ └── deprecated.js │ │ │ ├── README │ │ │ └── jquery-ui │ │ │ └── jquery.ui.effect-fade.js │ ├── cross_framing_protection.js │ └── pmd │ │ └── designer_objects.js ├── robots.txt ├── RELEASE-DATE-4.3.9 ├── favicon.ico ├── themes │ ├── dot.gif │ ├── original │ │ ├── screen.png │ │ ├── img │ │ │ ├── b_sql.png │ │ │ ├── error.ico │ │ │ ├── eye.png │ │ │ ├── more.png │ │ │ ├── pause.png │ │ │ ├── play.png │ │ │ ├── s_asc.png │ │ │ ├── s_cog.png │ │ │ ├── s_db.png │ │ │ ├── s_tbl.png │ │ │ ├── s_top.png │ │ │ ├── b_chart.png │ │ │ ├── b_close.png │ │ │ ├── b_docs.png │ │ │ ├── b_drop.png │ │ │ ├── b_edit.png │ │ │ ├── b_empty.png │ │ │ ├── b_ftext.png │ │ │ ├── b_globe.gif │ │ │ ├── b_group.png │ │ │ ├── b_help.png │ │ │ ├── b_home.png │ │ │ ├── b_index.png │ │ │ ├── b_info.png │ │ │ ├── b_minus.png │ │ │ ├── b_more.png │ │ │ ├── b_move.png │ │ │ ├── b_newdb.png │ │ │ ├── b_plus.png │ │ │ ├── b_print.png │ │ │ ├── b_props.png │ │ │ ├── b_save.png │ │ │ ├── b_tipp.png │ │ │ ├── b_undo.png │ │ │ ├── b_view.png │ │ │ ├── b_views.png │ │ │ ├── bd_drop.png │ │ │ ├── bd_edit.png │ │ │ ├── console.png │ │ │ ├── s_asci.png │ │ │ ├── s_desc.png │ │ │ ├── s_error.png │ │ │ ├── s_host.png │ │ │ ├── s_info.png │ │ │ ├── s_lang.png │ │ │ ├── s_link.png │ │ │ ├── s_lock.png │ │ │ ├── s_sync.png │ │ │ ├── s_theme.png │ │ │ ├── s_vars.png │ │ │ ├── s_views.png │ │ │ ├── spacer.png │ │ │ ├── sprites.png │ │ │ ├── arrow_ltr.png │ │ │ ├── arrow_rtl.png │ │ │ ├── b_bookmark.png │ │ │ ├── b_browse.png │ │ │ ├── b_calendar.png │ │ │ ├── b_comment.png │ │ │ ├── b_deltbl.png │ │ │ ├── b_engine.png │ │ │ ├── b_events.png │ │ │ ├── b_export.png │ │ │ ├── b_favorite.png │ │ │ ├── b_import.png │ │ │ ├── b_insrow.png │ │ │ ├── b_newtbl.png │ │ │ ├── b_nextpage.png │ │ │ ├── b_primary.png │ │ │ ├── b_routines.png │ │ │ ├── b_sbrowse.png │ │ │ ├── b_search.png │ │ │ ├── b_selboard.png │ │ │ ├── b_select.png │ │ │ ├── b_snewtbl.png │ │ │ ├── b_spatial.png │ │ │ ├── b_sqlhelp.png │ │ │ ├── b_tblops.png │ │ │ ├── b_triggers.png │ │ │ ├── b_unique.png │ │ │ ├── b_usradd.png │ │ │ ├── b_usrcheck.png │ │ │ ├── b_usrdrop.png │ │ │ ├── b_usredit.png │ │ │ ├── b_usrlist.png │ │ │ ├── b_view_add.png │ │ │ ├── bd_browse.png │ │ │ ├── bd_deltbl.png │ │ │ ├── bd_empty.png │ │ │ ├── bd_export.png │ │ │ ├── bd_ftext.png │ │ │ ├── bd_index.png │ │ │ ├── bd_insrow.png │ │ │ ├── bd_primary.png │ │ │ ├── bd_sbrowse.png │ │ │ ├── bd_select.png │ │ │ ├── bd_spatial.png │ │ │ ├── bd_unique.png │ │ │ ├── cleardot.gif │ │ │ ├── col_drop.png │ │ │ ├── east-mini.png │ │ │ ├── eye_grey.png │ │ │ ├── lightbulb.png │ │ │ ├── logo_left.png │ │ │ ├── logo_right.png │ │ │ ├── new_data.png │ │ │ ├── new_struct.png │ │ │ ├── normalize.png │ │ │ ├── north-mini.png │ │ │ ├── s_cancel.png │ │ │ ├── s_error2.png │ │ │ ├── s_fulltext.png │ │ │ ├── s_loggoff.png │ │ │ ├── s_notice.png │ │ │ ├── s_passwd.png │ │ │ ├── s_really.png │ │ │ ├── s_reload.png │ │ │ ├── s_rights.png │ │ │ ├── s_sortable.png │ │ │ ├── s_status.png │ │ │ ├── s_success.png │ │ │ ├── s_unlink.png │ │ │ ├── south-mini.png │ │ │ ├── toggle-ltr.png │ │ │ ├── toggle-rtl.png │ │ │ ├── west-mini.png │ │ │ ├── window-new.png │ │ │ ├── b_column_add.png │ │ │ ├── b_event_add.png │ │ │ ├── b_index_add.png │ │ │ ├── b_relations.png │ │ │ ├── b_saveimage.png │ │ │ ├── b_table_add.png │ │ │ ├── b_tblanalyse.png │ │ │ ├── b_tblexport.png │ │ │ ├── b_tblimport.png │ │ │ ├── bd_nextpage.png │ │ │ ├── col_pointer.png │ │ │ ├── s_attention.png │ │ │ ├── b_dbstatistics.png │ │ │ ├── b_find_replace.png │ │ │ ├── b_inline_edit.png │ │ │ ├── b_no_favorite.png │ │ │ ├── b_routine_add.png │ │ │ ├── b_tbloptimize.png │ │ │ ├── b_trigger_add.png │ │ │ ├── bd_routine_add.png │ │ │ ├── centralColumns.png │ │ │ ├── col_pointer_ver.png │ │ │ ├── lightbulb_off.png │ │ │ ├── s_collapseall.png │ │ │ ├── s_partialtext.png │ │ │ ├── s_replication.png │ │ │ ├── vertical_line.png │ │ │ ├── zoom-minus-mini.png │ │ │ ├── zoom-plus-mini.png │ │ │ ├── zoom-world-mini.png │ │ │ ├── ajax_clock_small.gif │ │ │ ├── new_data_hovered.png │ │ │ ├── new_data_selected.png │ │ │ ├── centralColumns_add.png │ │ │ ├── new_struct_hovered.png │ │ │ ├── new_struct_selected.png │ │ │ ├── centralColumns_delete.png │ │ │ ├── new_data_selected_hovered.png │ │ │ └── new_struct_selected_hovered.png │ │ ├── jquery │ │ │ └── images │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ └── info.inc.php │ └── pmahomme │ │ ├── screen.png │ │ ├── img │ │ ├── b_sdb.png │ │ ├── b_sql.png │ │ ├── error.ico │ │ ├── eye.png │ │ ├── item.png │ │ ├── more.png │ │ ├── pause.png │ │ ├── play.png │ │ ├── pmd │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ ├── def.png │ │ │ ├── pdf.png │ │ │ ├── Header.png │ │ │ ├── bord.png │ │ │ ├── bottom.png │ │ │ ├── exec.png │ │ │ ├── export.png │ │ │ ├── grid.png │ │ │ ├── help.png │ │ │ ├── minus.png │ │ │ ├── plus.png │ │ │ ├── reload.png │ │ │ ├── resize.png │ │ │ ├── save.png │ │ │ ├── table.png │ │ │ ├── and_icon.png │ │ │ ├── favicon.ico │ │ │ ├── or_icon.png │ │ │ ├── page_add.png │ │ │ ├── relation.png │ │ │ ├── save_as.png │ │ │ ├── 2leftarrow.png │ │ │ ├── 2rightarrow.png │ │ │ ├── Field_small.png │ │ │ ├── ang_direct.png │ │ │ ├── downarrow1.png │ │ │ ├── downarrow2.png │ │ │ ├── exec_small.png │ │ │ ├── page_delete.png │ │ │ ├── page_edit.png │ │ │ ├── rightarrow1.png │ │ │ ├── rightarrow2.png │ │ │ ├── small_tab.png │ │ │ ├── top_panel.png │ │ │ ├── uparrow2_m.png │ │ │ ├── 2leftarrow_m.png │ │ │ ├── 2rightarrow_m.png │ │ │ ├── Header_Linked.png │ │ │ ├── display_field.png │ │ │ ├── downarrow2_m.png │ │ │ ├── help_relation.png │ │ │ ├── query_builder.png │ │ │ ├── toggle_lines.png │ │ │ ├── FieldKey_small.png │ │ │ ├── Field_small_char.png │ │ │ ├── Field_small_date.png │ │ │ ├── Field_small_int.png │ │ │ ├── exitFullscreen.png │ │ │ ├── left_panel_butt.png │ │ │ ├── left_panel_tab.png │ │ │ └── viewInFullscreen.png │ │ ├── s_asc.png │ │ ├── s_cog.png │ │ ├── s_db.png │ │ ├── s_tbl.png │ │ ├── s_top.png │ │ ├── b_chart.png │ │ ├── b_close.png │ │ ├── b_docs.png │ │ ├── b_drop.png │ │ ├── b_edit.png │ │ ├── b_empty.png │ │ ├── b_ftext.png │ │ ├── b_globe.gif │ │ ├── b_group.png │ │ ├── b_help.png │ │ ├── b_home.png │ │ ├── b_index.png │ │ ├── b_info.png │ │ ├── b_minus.png │ │ ├── b_more.png │ │ ├── b_move.png │ │ ├── b_newdb.png │ │ ├── b_plus.png │ │ ├── b_print.png │ │ ├── b_props.png │ │ ├── b_save.png │ │ ├── b_tipp.png │ │ ├── b_undo.png │ │ ├── b_view.png │ │ ├── b_views.png │ │ ├── bd_drop.png │ │ ├── bd_edit.png │ │ ├── console.png │ │ ├── php_sym.png │ │ ├── s_asci.png │ │ ├── s_desc.png │ │ ├── s_error.png │ │ ├── s_host.png │ │ ├── s_info.png │ │ ├── s_lang.png │ │ ├── s_link.png │ │ ├── s_lock.png │ │ ├── s_okay.png │ │ ├── s_sync.png │ │ ├── s_theme.png │ │ ├── s_vars.png │ │ ├── s_views.png │ │ ├── spacer.png │ │ ├── sprites.png │ │ ├── arrow_ltr.png │ │ ├── arrow_rtl.png │ │ ├── asc_order.png │ │ ├── b_bookmark.png │ │ ├── b_browse.png │ │ ├── b_calendar.png │ │ ├── b_comment.png │ │ ├── b_deltbl.png │ │ ├── b_docsql.png │ │ ├── b_engine.png │ │ ├── b_events.png │ │ ├── b_export.png │ │ ├── b_favorite.png │ │ ├── b_import.png │ │ ├── b_insrow.png │ │ ├── b_lastpage.png │ │ ├── b_newtbl.png │ │ ├── b_nextpage.png │ │ ├── b_pdfdoc.png │ │ ├── b_prevpage.png │ │ ├── b_primary.png │ │ ├── b_routines.png │ │ ├── b_sbrowse.png │ │ ├── b_search.png │ │ ├── b_selboard.png │ │ ├── b_select.png │ │ ├── b_snewtbl.png │ │ ├── b_spatial.png │ │ ├── b_sqldoc.png │ │ ├── b_sqlhelp.png │ │ ├── b_tblops.png │ │ ├── b_triggers.png │ │ ├── b_unique.png │ │ ├── b_usradd.png │ │ ├── b_usrcheck.png │ │ ├── b_usrdrop.png │ │ ├── b_usredit.png │ │ ├── b_usrlist.png │ │ ├── b_view_add.png │ │ ├── bd_browse.png │ │ ├── bd_deltbl.png │ │ ├── bd_empty.png │ │ ├── bd_export.png │ │ ├── bd_ftext.png │ │ ├── bd_index.png │ │ ├── bd_insrow.png │ │ ├── bd_primary.png │ │ ├── bd_sbrowse.png │ │ ├── bd_select.png │ │ ├── bd_spatial.png │ │ ├── bd_unique.png │ │ ├── col_drop.png │ │ ├── database.png │ │ ├── east-mini.png │ │ ├── eye_grey.png │ │ ├── lightbulb.png │ │ ├── logo_left.png │ │ ├── logo_right.png │ │ ├── new_data.png │ │ ├── new_struct.png │ │ ├── normalize.png │ │ ├── north-mini.png │ │ ├── pma_logo2.png │ │ ├── s_cancel.png │ │ ├── s_cancel2.png │ │ ├── s_error2.png │ │ ├── s_fulltext.png │ │ ├── s_loggoff.png │ │ ├── s_notice.png │ │ ├── s_passwd.png │ │ ├── s_process.png │ │ ├── s_really.png │ │ ├── s_reload.png │ │ ├── s_rights.png │ │ ├── s_sortable.png │ │ ├── s_status.png │ │ ├── s_success.png │ │ ├── s_unlink.png │ │ ├── south-mini.png │ │ ├── toggle-ltr.png │ │ ├── toggle-rtl.png │ │ ├── west-mini.png │ │ ├── window-new.png │ │ ├── b_column_add.png │ │ ├── b_event_add.png │ │ ├── b_firstpage.png │ │ ├── b_index_add.png │ │ ├── b_relations.png │ │ ├── b_saveimage.png │ │ ├── b_table_add.png │ │ ├── b_tblanalyse.png │ │ ├── b_tblexport.png │ │ ├── b_tblimport.png │ │ ├── bd_firstpage.png │ │ ├── bd_lastpage.png │ │ ├── bd_nextpage.png │ │ ├── bd_prevpage.png │ │ ├── col_pointer.png │ │ ├── left_nav_bg.png │ │ ├── s_attention.png │ │ ├── b_dbstatistics.png │ │ ├── b_find_replace.png │ │ ├── b_inline_edit.png │ │ ├── b_no_favorite.png │ │ ├── b_routine_add.png │ │ ├── b_tbloptimize.png │ │ ├── b_trigger_add.png │ │ ├── bd_routine_add.png │ │ ├── centralColumns.png │ │ ├── col_pointer_ver.png │ │ ├── lightbulb_off.png │ │ ├── s_collapseall.png │ │ ├── s_partialtext.png │ │ ├── s_replication.png │ │ ├── vertical_line.png │ │ ├── zoom-minus-mini.png │ │ ├── zoom-plus-mini.png │ │ ├── zoom-world-mini.png │ │ ├── ajax_clock_small.gif │ │ ├── new_data_hovered.png │ │ ├── new_data_selected.png │ │ ├── centralColumns_add.png │ │ ├── new_struct_hovered.png │ │ ├── new_struct_selected.png │ │ ├── centralColumns_delete.png │ │ ├── new_data_selected_hovered.png │ │ └── new_struct_selected_hovered.png │ │ ├── jquery │ │ └── images │ │ │ ├── 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 │ │ │ ├── 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 │ │ ├── info.inc.php │ │ └── css │ │ └── rte.css.php ├── doc │ ├── html │ │ ├── objects.inv │ │ ├── _static │ │ │ ├── up.png │ │ │ ├── down.png │ │ │ ├── file.png │ │ │ ├── minus.png │ │ │ ├── plus.png │ │ │ ├── comment.png │ │ │ ├── up-pressed.png │ │ │ ├── ajax-loader.gif │ │ │ ├── comment-close.png │ │ │ ├── down-pressed.png │ │ │ └── comment-bright.png │ │ ├── _sources │ │ │ ├── user.txt │ │ │ ├── developers.txt │ │ │ ├── other.txt │ │ │ └── index.txt │ │ └── .buildinfo │ ├── doctrees │ │ ├── faq.doctree │ │ ├── index.doctree │ │ ├── intro.doctree │ │ ├── other.doctree │ │ ├── setup.doctree │ │ ├── user.doctree │ │ ├── config.doctree │ │ ├── credits.doctree │ │ ├── glossary.doctree │ │ ├── require.doctree │ │ ├── vendors.doctree │ │ ├── copyright.doctree │ │ ├── developers.doctree │ │ ├── environment.pickle │ │ ├── privileges.doctree │ │ └── transformations.doctree │ ├── user.rst │ ├── developers.rst │ ├── other.rst │ └── index.rst ├── .coveralls.yml ├── libraries │ ├── tcpdf │ │ └── fonts │ │ │ ├── dejavusans.z │ │ │ ├── dejavusansb.z │ │ │ ├── dejavusans.ctg.z │ │ │ └── dejavusansb.ctg.z │ ├── plugins │ │ ├── transformations │ │ │ ├── README │ │ │ └── generator_main_class.sh │ │ └── UploadInterface.int.php │ ├── engines │ │ ├── merge.lib.php │ │ ├── innobase.lib.php │ │ ├── berkeleydb.lib.php │ │ ├── binlog.lib.php │ │ ├── performance_schema.lib.php │ │ ├── mrg_myisam.lib.php │ │ └── memory.lib.php │ ├── logging.lib.php │ ├── db_printview.lib.php │ ├── mime.lib.php │ └── string.lib.php ├── locale │ ├── az │ │ └── LC_MESSAGES │ │ │ └── phpmyadmin.mo │ ├── bg │ │ └── LC_MESSAGES │ │ │ └── phpmyadmin.mo │ ├── bn │ │ └── LC_MESSAGES │ │ │ └── phpmyadmin.mo │ ├── ca │ │ └── LC_MESSAGES │ │ │ └── phpmyadmin.mo │ ├── cs │ │ └── LC_MESSAGES │ │ │ └── phpmyadmin.mo │ ├── da │ │ └── LC_MESSAGES │ │ │ └── phpmyadmin.mo │ ├── de │ │ └── LC_MESSAGES │ │ │ └── phpmyadmin.mo │ ├── el │ │ └── LC_MESSAGES │ │ │ └── phpmyadmin.mo │ ├── es │ │ └── LC_MESSAGES │ │ │ └── phpmyadmin.mo │ ├── et │ │ └── LC_MESSAGES │ │ │ └── phpmyadmin.mo │ ├── fi │ │ └── LC_MESSAGES │ │ │ └── phpmyadmin.mo │ ├── fr │ │ └── LC_MESSAGES │ │ │ └── phpmyadmin.mo │ ├── gl │ │ └── LC_MESSAGES │ │ │ └── phpmyadmin.mo │ ├── hi │ │ └── LC_MESSAGES │ │ │ └── phpmyadmin.mo │ ├── hu │ │ └── LC_MESSAGES │ │ │ └── phpmyadmin.mo │ ├── ia │ │ └── LC_MESSAGES │ │ │ └── phpmyadmin.mo │ ├── id │ │ └── LC_MESSAGES │ │ │ └── phpmyadmin.mo │ ├── it │ │ └── LC_MESSAGES │ │ │ └── phpmyadmin.mo │ ├── ja │ │ └── LC_MESSAGES │ │ │ └── phpmyadmin.mo │ ├── ko │ │ └── LC_MESSAGES │ │ │ └── phpmyadmin.mo │ ├── lt │ │ └── LC_MESSAGES │ │ │ └── phpmyadmin.mo │ ├── nb │ │ └── LC_MESSAGES │ │ │ └── phpmyadmin.mo │ ├── nl │ │ └── LC_MESSAGES │ │ │ └── phpmyadmin.mo │ ├── pl │ │ └── LC_MESSAGES │ │ │ └── phpmyadmin.mo │ ├── pt │ │ └── LC_MESSAGES │ │ │ └── phpmyadmin.mo │ ├── ro │ │ └── LC_MESSAGES │ │ │ └── phpmyadmin.mo │ ├── ru │ │ └── LC_MESSAGES │ │ │ └── phpmyadmin.mo │ ├── si │ │ └── LC_MESSAGES │ │ │ └── phpmyadmin.mo │ ├── sk │ │ └── LC_MESSAGES │ │ │ └── phpmyadmin.mo │ ├── sl │ │ └── LC_MESSAGES │ │ │ └── phpmyadmin.mo │ ├── sq │ │ └── LC_MESSAGES │ │ │ └── phpmyadmin.mo │ ├── sv │ │ └── LC_MESSAGES │ │ │ └── phpmyadmin.mo │ ├── tr │ │ └── LC_MESSAGES │ │ │ └── phpmyadmin.mo │ ├── uk │ │ └── LC_MESSAGES │ │ │ └── phpmyadmin.mo │ ├── en_GB │ │ └── LC_MESSAGES │ │ │ └── phpmyadmin.mo │ ├── pt_BR │ │ └── LC_MESSAGES │ │ │ └── phpmyadmin.mo │ ├── zh_CN │ │ └── LC_MESSAGES │ │ │ └── phpmyadmin.mo │ ├── zh_TW │ │ └── LC_MESSAGES │ │ │ └── phpmyadmin.mo │ └── sr@latin │ │ └── LC_MESSAGES │ │ └── phpmyadmin.mo ├── tbl_triggers.php ├── setup │ ├── ajax.js │ └── validate.php ├── db_triggers.php ├── phpinfo.php ├── chk_rel.php ├── db_events.php ├── tbl_recent_favorite.php ├── db_routines.php ├── server_import.php ├── db_import.php ├── .scrutinizer.yml ├── scripts │ └── line-counts.sh ├── db_sql_autocomplete.php ├── server_sql.php ├── tbl_import.php ├── version_check.php ├── server_engines.php ├── server_export.php ├── CONTRIBUTING.md ├── license.php ├── phpmyadmin.css.php └── server_collations.php ├── publish ├── ssh │ ├── config │ └── id_rsa.pub ├── test.sh ├── run.sh └── publish_api │ └── index.php ├── workspace ├── run.sh ├── www │ ├── www │ │ └── index.html │ └── codersyn.sh └── Dockerfile ├── socketlog └── Dockerfile └── fig.yml /domain: -------------------------------------------------------------------------------- 1 | env.com 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | code/ 3 | database/ 4 | -------------------------------------------------------------------------------- /team/www/test.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/php -q 2 | 'success', 5 | 'result'=>'' 6 | ); 7 | echo json_encode($arr); 8 | -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/img/drag-rectangle-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/js/openlayers/img/drag-rectangle-off.png -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/img/measuring-stick-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/js/openlayers/img/measuring-stick-off.png -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/img/measuring-stick-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/js/openlayers/img/measuring-stick-on.png -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/theme/default/img/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/js/openlayers/theme/default/img/blank.gif -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/theme/default/img/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/js/openlayers/theme/default/img/close.gif -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/theme/default/img/ruler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/js/openlayers/theme/default/img/ruler.png -------------------------------------------------------------------------------- /phpmyadmin/locale/sr@latin/LC_MESSAGES/phpmyadmin.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/locale/sr@latin/LC_MESSAGES/phpmyadmin.mo -------------------------------------------------------------------------------- /phpmyadmin/themes/original/img/ajax_clock_small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/original/img/ajax_clock_small.gif -------------------------------------------------------------------------------- /phpmyadmin/themes/original/img/new_data_hovered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/original/img/new_data_hovered.png -------------------------------------------------------------------------------- /phpmyadmin/themes/original/img/new_data_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/original/img/new_data_selected.png -------------------------------------------------------------------------------- /phpmyadmin/themes/pmahomme/img/ajax_clock_small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/pmahomme/img/ajax_clock_small.gif -------------------------------------------------------------------------------- /phpmyadmin/themes/pmahomme/img/new_data_hovered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/pmahomme/img/new_data_hovered.png -------------------------------------------------------------------------------- /phpmyadmin/themes/pmahomme/img/new_data_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/pmahomme/img/new_data_selected.png -------------------------------------------------------------------------------- /phpmyadmin/themes/pmahomme/img/pmd/2leftarrow_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/pmahomme/img/pmd/2leftarrow_m.png -------------------------------------------------------------------------------- /phpmyadmin/themes/pmahomme/img/pmd/2rightarrow_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/pmahomme/img/pmd/2rightarrow_m.png -------------------------------------------------------------------------------- /phpmyadmin/themes/pmahomme/img/pmd/Header_Linked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/pmahomme/img/pmd/Header_Linked.png -------------------------------------------------------------------------------- /phpmyadmin/themes/pmahomme/img/pmd/display_field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/pmahomme/img/pmd/display_field.png -------------------------------------------------------------------------------- /phpmyadmin/themes/pmahomme/img/pmd/downarrow2_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/pmahomme/img/pmd/downarrow2_m.png -------------------------------------------------------------------------------- /phpmyadmin/themes/pmahomme/img/pmd/help_relation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/pmahomme/img/pmd/help_relation.png -------------------------------------------------------------------------------- /phpmyadmin/themes/pmahomme/img/pmd/query_builder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/pmahomme/img/pmd/query_builder.png -------------------------------------------------------------------------------- /phpmyadmin/themes/pmahomme/img/pmd/toggle_lines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/pmahomme/img/pmd/toggle_lines.png -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/img/cloud-popup-relative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/js/openlayers/img/cloud-popup-relative.png -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/theme/default/img/pan_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/js/openlayers/theme/default/img/pan_off.png -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/theme/default/img/pan_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/js/openlayers/theme/default/img/pan_on.png -------------------------------------------------------------------------------- /phpmyadmin/themes/original/img/centralColumns_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/original/img/centralColumns_add.png -------------------------------------------------------------------------------- /phpmyadmin/themes/original/img/new_struct_hovered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/original/img/new_struct_hovered.png -------------------------------------------------------------------------------- /phpmyadmin/themes/original/img/new_struct_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/original/img/new_struct_selected.png -------------------------------------------------------------------------------- /phpmyadmin/themes/pmahomme/img/centralColumns_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/pmahomme/img/centralColumns_add.png -------------------------------------------------------------------------------- /phpmyadmin/themes/pmahomme/img/new_struct_hovered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/pmahomme/img/new_struct_hovered.png -------------------------------------------------------------------------------- /phpmyadmin/themes/pmahomme/img/new_struct_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/pmahomme/img/new_struct_selected.png -------------------------------------------------------------------------------- /phpmyadmin/themes/pmahomme/img/pmd/FieldKey_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/pmahomme/img/pmd/FieldKey_small.png -------------------------------------------------------------------------------- /phpmyadmin/themes/pmahomme/img/pmd/Field_small_char.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/pmahomme/img/pmd/Field_small_char.png -------------------------------------------------------------------------------- /phpmyadmin/themes/pmahomme/img/pmd/Field_small_date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/pmahomme/img/pmd/Field_small_date.png -------------------------------------------------------------------------------- /phpmyadmin/themes/pmahomme/img/pmd/Field_small_int.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/pmahomme/img/pmd/Field_small_int.png -------------------------------------------------------------------------------- /phpmyadmin/themes/pmahomme/img/pmd/exitFullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/pmahomme/img/pmd/exitFullscreen.png -------------------------------------------------------------------------------- /phpmyadmin/themes/pmahomme/img/pmd/left_panel_butt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/pmahomme/img/pmd/left_panel_butt.png -------------------------------------------------------------------------------- /phpmyadmin/themes/pmahomme/img/pmd/left_panel_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/pmahomme/img/pmd/left_panel_tab.png -------------------------------------------------------------------------------- /phpmyadmin/themes/pmahomme/img/pmd/viewInFullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/pmahomme/img/pmd/viewInFullscreen.png -------------------------------------------------------------------------------- /phpmyadmin/doc/user.rst: -------------------------------------------------------------------------------- 1 | User Guide 2 | ========== 3 | 4 | .. toctree:: 5 | :maxdepth: 2 6 | 7 | transformations 8 | privileges 9 | other 10 | -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/img/layer-switcher-maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/js/openlayers/img/layer-switcher-maximize.png -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/img/layer-switcher-minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/js/openlayers/img/layer-switcher-minimize.png -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/theme/default/img/pan-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/js/openlayers/theme/default/img/pan-panel.png -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/theme/default/img/zoom-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/js/openlayers/theme/default/img/zoom-panel.png -------------------------------------------------------------------------------- /phpmyadmin/themes/original/img/centralColumns_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/original/img/centralColumns_delete.png -------------------------------------------------------------------------------- /phpmyadmin/themes/pmahomme/img/centralColumns_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/pmahomme/img/centralColumns_delete.png -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/theme/default/img/add_point_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/js/openlayers/theme/default/img/add_point_off.png -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/theme/default/img/add_point_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/js/openlayers/theme/default/img/add_point_on.png -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/theme/default/img/draw_line_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/js/openlayers/theme/default/img/draw_line_off.png -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/theme/default/img/draw_line_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/js/openlayers/theme/default/img/draw_line_on.png -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/theme/default/img/draw_point_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/js/openlayers/theme/default/img/draw_point_on.png -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/theme/default/img/view_next_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/js/openlayers/theme/default/img/view_next_off.png -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/theme/default/img/view_next_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/js/openlayers/theme/default/img/view_next_on.png -------------------------------------------------------------------------------- /phpmyadmin/themes/original/img/new_data_selected_hovered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/original/img/new_data_selected_hovered.png -------------------------------------------------------------------------------- /phpmyadmin/themes/pmahomme/img/new_data_selected_hovered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/pmahomme/img/new_data_selected_hovered.png -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/theme/default/img/draw_point_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/js/openlayers/theme/default/img/draw_point_off.png -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/theme/default/img/draw_polygon_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/js/openlayers/theme/default/img/draw_polygon_on.png -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/theme/default/img/move_feature_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/js/openlayers/theme/default/img/move_feature_on.png -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/theme/default/img/panning-hand-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/js/openlayers/theme/default/img/panning-hand-on.png -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/theme/default/img/remove_point_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/js/openlayers/theme/default/img/remove_point_on.png -------------------------------------------------------------------------------- /phpmyadmin/themes/original/img/new_struct_selected_hovered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/original/img/new_struct_selected_hovered.png -------------------------------------------------------------------------------- /phpmyadmin/themes/pmahomme/img/new_struct_selected_hovered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/pmahomme/img/new_struct_selected_hovered.png -------------------------------------------------------------------------------- /phpmyadmin/doc/html/_sources/user.txt: -------------------------------------------------------------------------------- 1 | User Guide 2 | ========== 3 | 4 | .. toctree:: 5 | :maxdepth: 2 6 | 7 | transformations 8 | privileges 9 | other 10 | -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/src/openlayers/lib/Firebug/errorIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/js/openlayers/src/openlayers/lib/Firebug/errorIcon.png -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/src/openlayers/lib/Firebug/infoIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/js/openlayers/src/openlayers/lib/Firebug/infoIcon.png -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/theme/default/img/drag-rectangle-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/js/openlayers/theme/default/img/drag-rectangle-off.png -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/theme/default/img/drag-rectangle-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/js/openlayers/theme/default/img/drag-rectangle-on.png -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/theme/default/img/draw_polygon_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/js/openlayers/theme/default/img/draw_polygon_off.png -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/theme/default/img/editing_tool_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/js/openlayers/theme/default/img/editing_tool_bar.png -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/theme/default/img/move_feature_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/js/openlayers/theme/default/img/move_feature_off.png -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/theme/default/img/navigation_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/js/openlayers/theme/default/img/navigation_history.png -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/theme/default/img/pan-panel-NOALPHA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/js/openlayers/theme/default/img/pan-panel-NOALPHA.png -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/theme/default/img/panning-hand-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/js/openlayers/theme/default/img/panning-hand-off.png -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/theme/default/img/remove_point_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/js/openlayers/theme/default/img/remove_point_off.png -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/theme/default/img/save_features_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/js/openlayers/theme/default/img/save_features_off.png -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/theme/default/img/save_features_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/js/openlayers/theme/default/img/save_features_on.png -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/theme/default/img/view_previous_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/js/openlayers/theme/default/img/view_previous_off.png -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/theme/default/img/view_previous_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/js/openlayers/theme/default/img/view_previous_on.png -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/theme/default/img/zoom-panel-NOALPHA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/js/openlayers/theme/default/img/zoom-panel-NOALPHA.png -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/src/openlayers/lib/Firebug/warningIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/js/openlayers/src/openlayers/lib/Firebug/warningIcon.png -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/theme/default/img/overview_replacement.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/js/openlayers/theme/default/img/overview_replacement.gif -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/src/openlayers/lib/OpenLayers/Marker/Box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/js/openlayers/src/openlayers/lib/OpenLayers/Marker/Box.js -------------------------------------------------------------------------------- /phpmyadmin/themes/original/jquery/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/original/jquery/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /phpmyadmin/themes/original/jquery/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/original/jquery/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /phpmyadmin/themes/original/jquery/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/original/jquery/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /phpmyadmin/themes/original/jquery/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/original/jquery/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /phpmyadmin/themes/original/jquery/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/original/jquery/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /phpmyadmin/themes/pmahomme/jquery/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/pmahomme/jquery/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /phpmyadmin/themes/pmahomme/jquery/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/pmahomme/jquery/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /phpmyadmin/themes/pmahomme/jquery/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/pmahomme/jquery/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /phpmyadmin/themes/pmahomme/jquery/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/pmahomme/jquery/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /phpmyadmin/themes/pmahomme/jquery/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/pmahomme/jquery/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /workspace/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | chown www-data:www-data /app -R 3 | source /etc/apache2/envvars 4 | chown -R www-data:www-data /code 5 | /usr/sbin/sshd -D & 6 | exec apache2 -D FOREGROUND 7 | -------------------------------------------------------------------------------- /phpmyadmin/themes/original/jquery/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/original/jquery/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /phpmyadmin/themes/original/jquery/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/original/jquery/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /phpmyadmin/themes/original/jquery/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/original/jquery/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /phpmyadmin/themes/original/jquery/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/original/jquery/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /phpmyadmin/themes/original/jquery/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/original/jquery/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /phpmyadmin/themes/original/jquery/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/original/jquery/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /phpmyadmin/themes/original/jquery/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/original/jquery/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /phpmyadmin/themes/pmahomme/jquery/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/pmahomme/jquery/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /phpmyadmin/themes/pmahomme/jquery/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/pmahomme/jquery/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /phpmyadmin/themes/pmahomme/jquery/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/pmahomme/jquery/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /phpmyadmin/themes/pmahomme/jquery/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/pmahomme/jquery/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /phpmyadmin/themes/pmahomme/jquery/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/pmahomme/jquery/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /phpmyadmin/themes/pmahomme/jquery/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/pmahomme/jquery/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /phpmyadmin/themes/pmahomme/jquery/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/pmahomme/jquery/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /team/www/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | chown www-data:www-data /app -R 3 | env | grep S_ | sed "s/^/export /g" >> /etc/apache2/envvars 4 | source /etc/apache2/envvars 5 | exec apache2 -D FOREGROUND 6 | -------------------------------------------------------------------------------- /phpmyadmin/themes/original/jquery/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/original/jquery/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /phpmyadmin/themes/pmahomme/jquery/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luofei614/codeEnv/HEAD/phpmyadmin/themes/pmahomme/jquery/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /phpmyadmin/tbl_triggers.php: -------------------------------------------------------------------------------- 1 | 11 | -------------------------------------------------------------------------------- /phpmyadmin/libraries/plugins/transformations/README: -------------------------------------------------------------------------------- 1 | TRANSFORMATION USAGE (Garvin Hicking, ) 2 | ==================== 3 | 4 | See the documentation for complete instructions on how to use transformation plugins. 5 | -------------------------------------------------------------------------------- /team/www/fig.yml: -------------------------------------------------------------------------------- 1 | {CONTAINER_NAME}: 2 | build: ./team/www 3 | volumes: 4 | - {WORKDIR}:/app 5 | links: 6 | - db 7 | - memcache 8 | environment: 9 | - VIRTUAL_HOST={USERNAME}.{DIR}.{DOMAIN} 10 | -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/theme/default/google.css: -------------------------------------------------------------------------------- 1 | .olLayerGoogleCopyright { 2 | right: 3px; 3 | bottom: 2px; 4 | left: auto; 5 | } 6 | .olLayerGooglePoweredBy { 7 | left: 2px; 8 | bottom: 2px; 9 | } 10 | 11 | -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/theme/default/ie6-style.css: -------------------------------------------------------------------------------- 1 | .olControlZoomPanel div { 2 | background-image: url(img/zoom-panel-NOALPHA.png); 3 | } 4 | .olControlPanPanel div { 5 | background-image: url(img/pan-panel-NOALPHA.png); 6 | } 7 | 8 | -------------------------------------------------------------------------------- /publish/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | gearmand -d 3 | php /publish_api/worker.php > /dev/null & 4 | chown www-data:www-data /app -R 5 | env | grep S_ | sed "s/^/export /g" >> /etc/apache2/envvars 6 | source /etc/apache2/envvars 7 | exec apache2 -D FOREGROUND 8 | -------------------------------------------------------------------------------- /phpmyadmin/doc/html/.buildinfo: -------------------------------------------------------------------------------- 1 | # Sphinx build info version 1 2 | # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. 3 | config: 59678106018663de5462adcdde275d8b 4 | tags: fbb0d17656682115ca4d033fb2f83ba1 5 | -------------------------------------------------------------------------------- /phpmyadmin/js/jquery/src/jquery/outro.js: -------------------------------------------------------------------------------- 1 | // Expose jQuery and $ identifiers, even in 2 | // AMD (#7102#comment:10, https://github.com/jquery/jquery/pull/557) 3 | // and CommonJS for browser emulators (#13566) 4 | return (window.jQuery = window.$ = jQuery); 5 | 6 | })); 7 | -------------------------------------------------------------------------------- /phpmyadmin/js/jquery/src/jquery/sizzle-jquery.js: -------------------------------------------------------------------------------- 1 | jQuery.find = Sizzle; 2 | jQuery.expr = Sizzle.selectors; 3 | jQuery.expr[":"] = jQuery.expr.pseudos; 4 | jQuery.unique = Sizzle.uniqueSort; 5 | jQuery.text = Sizzle.getText; 6 | jQuery.isXMLDoc = Sizzle.isXML; 7 | jQuery.contains = Sizzle.contains; 8 | -------------------------------------------------------------------------------- /phpmyadmin/themes/original/info.inc.php: -------------------------------------------------------------------------------- 1 | 16 | -------------------------------------------------------------------------------- /phpmyadmin/setup/ajax.js: -------------------------------------------------------------------------------- 1 | /* vim: set expandtab sw=4 ts=4 sts=4: */ 2 | /** 3 | * Dummy implementation of the ajax page loader 4 | */ 5 | var AJAX = { 6 | registerOnload: function (idx, func) { 7 | $(document).ready(func); 8 | }, 9 | registerTeardown: function (idx, func) { 10 | } 11 | }; 12 | -------------------------------------------------------------------------------- /phpmyadmin/js/jquery/src/jquery/deprecated.js: -------------------------------------------------------------------------------- 1 | // Limit scope pollution from any deprecated API 2 | // (function() { 3 | 4 | // The number of elements contained in the matched element set 5 | jQuery.fn.size = function() { 6 | return this.length; 7 | }; 8 | 9 | jQuery.fn.andSelf = jQuery.fn.addBack; 10 | 11 | // })(); 12 | -------------------------------------------------------------------------------- /socketlog/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM ubuntu 2 | RUN apt-get update && \ 3 | apt-get -yq install \ 4 | git \ 5 | nodejs &&\ 6 | rm -rf /var/lib/apt/lists/* 7 | RUN git clone https://github.com/luofei614/SocketLog.git /socketlog 8 | EXPOSE 1229 1116 9 | WORKDIR /socketlog 10 | CMD nodejs /socketlog/server/index.js 11 | -------------------------------------------------------------------------------- /workspace/www/www/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 |

恭喜你,安装成功

10 | 11 | 12 | -------------------------------------------------------------------------------- /phpmyadmin/js/cross_framing_protection.js: -------------------------------------------------------------------------------- 1 | /* vim: set expandtab sw=4 ts=4 sts=4: */ 2 | /** 3 | * Conditionally included if framing is not allowed 4 | */ 5 | if (self == top) { 6 | var style_element = document.getElementById("cfs-style"); 7 | style_element.parentNode.removeChild(style_element); 8 | } else { 9 | top.location = self.location; 10 | } 11 | -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/src/openlayers/lib/OpenLayers/SingleFile.js: -------------------------------------------------------------------------------- 1 | /* Copyright (c) 2006-2010 by OpenLayers Contributors (see authors.txt for 2 | * full list of contributors). Published under the Clear BSD license. 3 | * See http://svn.openlayers.org/trunk/openlayers/license.txt for the 4 | * full text of the license. */ 5 | 6 | var OpenLayers = { 7 | singleFile: true 8 | }; 9 | 10 | 11 | -------------------------------------------------------------------------------- /publish/ssh/id_rsa.pub: -------------------------------------------------------------------------------- 1 | ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCoAQMp/lXj2yBSA+dRHXjMV2ig37zLQHVrzcW7WqVJ9E4kf1s53XWxeJamWdYs6tR4mdI0rUSefPJGf/zT0G6H2zuQA2GliWxD+LQPCiyGY4YJmyP5br+WJB6qh+XCCiSJVZPBuhVDI1xG9LDCFRCmGqPlaXS3L8RDNqAnDcjvMz3lFbzLwdprovdT96DfTluAlAhG6WPrLo+arnMBYeIopWEcsXEfeWcTPWVt08KZMTjRh2ftNdOLjD12BovNI/nCHOrRlsQO2D7fy1C6es6n2K3pEvY3+1CQ44zOuy/g/iNhJ0wgln0lNPtmX+MGvd81KSONRddY9I8Cex1urB6H luofei@luofeitekiMacBook-Air.local 2 | -------------------------------------------------------------------------------- /phpmyadmin/js/jquery/src/README: -------------------------------------------------------------------------------- 1 | jQuery and jQuery UI source 2 | =========================== 3 | 4 | This directory contains source code for jQuery and jQuery UI. 5 | 6 | phpMyAdmin Developers: When updating the minified/concatened version of 7 | jQuery one directory back (i.e., in js/jquery/), make certain that the 8 | material under this directory is the complete, corresponding source for the 9 | minified/concatenated version. 10 | -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/src/openlayers/lib/Firebug/firebugx.js: -------------------------------------------------------------------------------- 1 | 2 | if (!window.console || !console.firebug) { 3 | var names = ["log", "debug", "info", "warn", "error", "assert", "dir", "dirxml", 4 | "group", "groupEnd", "time", "timeEnd", "count", "trace", "profile", "profileEnd"]; 5 | 6 | window.console = {}; 7 | for (var i = 0; i < names.length; ++i) 8 | window.console[names[i]] = function() {} 9 | } 10 | -------------------------------------------------------------------------------- /phpmyadmin/libraries/engines/merge.lib.php: -------------------------------------------------------------------------------- 1 | 22 | -------------------------------------------------------------------------------- /publish/publish_api/index.php: -------------------------------------------------------------------------------- 1 | addServer('127.0.0.1', 4730); 4 | if(!extension_loaded('taint') || !ini_get('taint.enable')) 5 | { 6 | $client->doBackground('no_taint', 'no_taint'); 7 | } 8 | else 9 | { 10 | $input = file_get_contents('php://input'); 11 | if($input) 12 | { 13 | $client->doBackground('githook_coding',$input); 14 | } 15 | } 16 | 17 | echo "publish api"; 18 | -------------------------------------------------------------------------------- /phpmyadmin/doc/developers.rst: -------------------------------------------------------------------------------- 1 | .. _developers: 2 | 3 | Developers Information 4 | ====================== 5 | 6 | phpMyAdmin is Open Source, so you're invited to contribute to it. Many 7 | great features have been written by other people and you too can help 8 | to make phpMyAdmin a useful tool. 9 | 10 | You can check out all the possibilities to contribute in the 11 | `contribute section on our website 12 | `_. 13 | -------------------------------------------------------------------------------- /phpmyadmin/doc/html/_sources/developers.txt: -------------------------------------------------------------------------------- 1 | .. _developers: 2 | 3 | Developers Information 4 | ====================== 5 | 6 | phpMyAdmin is Open Source, so you're invited to contribute to it. Many 7 | great features have been written by other people and you too can help 8 | to make phpMyAdmin a useful tool. 9 | 10 | You can check out all the possibilities to contribute in the 11 | `contribute section on our website 12 | `_. 13 | -------------------------------------------------------------------------------- /phpmyadmin/js/pmd/designer_objects.js: -------------------------------------------------------------------------------- 1 | function PDFPage(db_name, page_descr, tbl_cords) 2 | { 3 | this.pg_nr; 4 | this.db_name = db_name; 5 | this.page_descr = page_descr; 6 | this.tbl_cords = tbl_cords; 7 | } 8 | 9 | function TableCoordinate(db_name, table_name, pdf_pg_nr, x, y) 10 | { 11 | this.id; 12 | this.db_name = db_name; 13 | this.table_name = table_name; 14 | this.pdf_pg_nr = pdf_pg_nr; 15 | this.x = x; 16 | this.y = y; 17 | } 18 | -------------------------------------------------------------------------------- /phpmyadmin/libraries/plugins/transformations/generator_main_class.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # Shell script that creates only the main class for a new transformation 4 | # plug-in, using a template 5 | # 6 | # $1: MIMEType 7 | # $2: MIMESubtype 8 | # $3: Transformation Name 9 | 10 | if [ $# != 3 ] 11 | then 12 | echo -e "Usage: ./generator_main_class.sh MIMEType MIMESubtype TransformationName\n" 13 | exit 65 14 | fi 15 | 16 | ./generator_plugin.sh "$1" "$2" "$3" "--generate_only_main_class" -------------------------------------------------------------------------------- /phpmyadmin/db_triggers.php: -------------------------------------------------------------------------------- 1 | 26 | -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/src/README: -------------------------------------------------------------------------------- 1 | OpenLayers 2 | ========== 3 | 4 | This directory contains the source code for OpenLayers. 5 | 6 | phpMyAdmin Developers: When updating the minified/concatened version of 7 | OpenLayers in js/openlayers under the main directory, make certain that the 8 | material under this directory is the complete, corresponding source for the 9 | minified/concatenated version. 10 | 11 | Last retrieved from: 12 | https://github.com/openlayers/openlayers/tree/release-2.10/lib 13 | -------------------------------------------------------------------------------- /phpmyadmin/phpinfo.php: -------------------------------------------------------------------------------- 1 | disable(); 14 | 15 | /** 16 | * Displays PHP information 17 | */ 18 | if ($GLOBALS['cfg']['ShowPhpInfo']) { 19 | phpinfo(); 20 | } 21 | ?> 22 | -------------------------------------------------------------------------------- /phpmyadmin/themes/pmahomme/info.inc.php: -------------------------------------------------------------------------------- 1 | 22 | -------------------------------------------------------------------------------- /phpmyadmin/libraries/engines/innobase.lib.php: -------------------------------------------------------------------------------- 1 | 26 | -------------------------------------------------------------------------------- /phpmyadmin/chk_rel.php: -------------------------------------------------------------------------------- 1 | addHTML( 18 | PMA_getRelationsParamDiagnostic(PMA_getRelationsParam()) 19 | ); 20 | 21 | ?> 22 | -------------------------------------------------------------------------------- /phpmyadmin/db_events.php: -------------------------------------------------------------------------------- 1 | 27 | -------------------------------------------------------------------------------- /phpmyadmin/libraries/engines/berkeleydb.lib.php: -------------------------------------------------------------------------------- 1 | 27 | -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/src/openlayers/lib/OpenLayers/Lang/io.js: -------------------------------------------------------------------------------- 1 | /* Translators (2009 onwards): 2 | * - Malafaya 3 | */ 4 | 5 | /** 6 | * @requires OpenLayers/Lang.js 7 | */ 8 | 9 | /** 10 | * Namespace: OpenLayers.Lang["io"] 11 | * Dictionary for Ido. Keys for entries are used in calls to 12 | * . Entry bodies are normal strings or 13 | * strings formatted for use with calls. 14 | */ 15 | OpenLayers.Lang["io"] = OpenLayers.Util.applyDefaults({ 16 | 17 | 'scale': "Skalo = 1 : ${scaleDenom}" 18 | 19 | }); 20 | -------------------------------------------------------------------------------- /phpmyadmin/tbl_recent_favorite.php: -------------------------------------------------------------------------------- 1 | removeIfInvalid($_REQUEST['db'], $_REQUEST['table']); 14 | 15 | PMA_RecentFavoriteTable::getInstance('favorite') 16 | ->removeIfInvalid($_REQUEST['db'], $_REQUEST['table']); 17 | 18 | require 'sql.php'; 19 | ?> -------------------------------------------------------------------------------- /workspace/www/codersyn.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | USER=username 3 | HOST=env.com 4 | PWD=$( pwd | sed "s/\//#/g") 5 | ssh-add ./rsync-key 6 | chmod 600 ./rsync-key 7 | fswatch -0 . | while read -d "" file ; do \ 8 | FILE_PATH=$(echo $file | sed "s/\//#/g") 9 | SHORT_FILE_PATH=$(echo $FILE_PATH | sed "s/$PWD//g") 10 | DIR=`echo $SHORT_FILE_PATH|awk -F '#' '{print $2}'` 11 | #如果是目录 12 | if [ -d "$DIR" ]; then 13 | date +%H:%M:%S && /usr/bin/rsync -iru --exclude .git --delete -e 'ssh -i ./rsync-key -p 222' $DIR/ www-data@$HOST:/code/$USER.$DIR 14 | fi 15 | done 16 | -------------------------------------------------------------------------------- /phpmyadmin/db_routines.php: -------------------------------------------------------------------------------- 1 | 28 | -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/src/openlayers/lib/OpenLayers/Lang/el.js: -------------------------------------------------------------------------------- 1 | /* Translators (2009 onwards): 2 | * - Omnipaedista 3 | */ 4 | 5 | /** 6 | * @requires OpenLayers/Lang.js 7 | */ 8 | 9 | /** 10 | * Namespace: OpenLayers.Lang["el"] 11 | * Dictionary for Ελληνικά. Keys for entries are used in calls to 12 | * . Entry bodies are normal strings or 13 | * strings formatted for use with calls. 14 | */ 15 | OpenLayers.Lang["el"] = OpenLayers.Util.applyDefaults({ 16 | 17 | 'scale': "Κλίμακα ~ 1 : ${scaleDenom}" 18 | 19 | }); 20 | -------------------------------------------------------------------------------- /phpmyadmin/server_import.php: -------------------------------------------------------------------------------- 1 | getHeader(); 16 | $scripts = $header->getScripts(); 17 | $scripts->addFile('import.js'); 18 | 19 | /** 20 | * Does the common work 21 | */ 22 | require 'libraries/server_common.inc.php'; 23 | 24 | $import_type = 'server'; 25 | require 'libraries/display_import.inc.php'; 26 | 27 | ?> 28 | -------------------------------------------------------------------------------- /phpmyadmin/db_import.php: -------------------------------------------------------------------------------- 1 | getHeader(); 13 | $scripts = $header->getScripts(); 14 | $scripts->addFile('import.js'); 15 | 16 | /** 17 | * Gets tables information and displays top links 18 | */ 19 | require 'libraries/db_common.inc.php'; 20 | require 'libraries/db_info.inc.php'; 21 | 22 | $import_type = 'database'; 23 | require 'libraries/display_import.inc.php'; 24 | 25 | ?> 26 | -------------------------------------------------------------------------------- /phpmyadmin/doc/other.rst: -------------------------------------------------------------------------------- 1 | Other sources of information 2 | ============================ 3 | 4 | Printed Book 5 | ------------ 6 | 7 | The definitive guide to using phpMyAdmin is the book Mastering phpMyAdmin for 8 | Effective MySQL Management by Marc Delisle. You can get information on that 9 | book and other officially endorsed `books at the phpMyAdmin site`_. 10 | 11 | .. _books at the phpMyAdmin site: http://www.phpmyadmin.net/home_page/docs.php?books 12 | 13 | Tutorials 14 | --------- 15 | 16 | Third party tutorials and articles are listed on our `wiki page`_. 17 | 18 | .. _wiki page: http://wiki.phpmyadmin.net/pma/Articles 19 | -------------------------------------------------------------------------------- /phpmyadmin/doc/html/_sources/other.txt: -------------------------------------------------------------------------------- 1 | Other sources of information 2 | ============================ 3 | 4 | Printed Book 5 | ------------ 6 | 7 | The definitive guide to using phpMyAdmin is the book Mastering phpMyAdmin for 8 | Effective MySQL Management by Marc Delisle. You can get information on that 9 | book and other officially endorsed `books at the phpMyAdmin site`_. 10 | 11 | .. _books at the phpMyAdmin site: http://www.phpmyadmin.net/home_page/docs.php?books 12 | 13 | Tutorials 14 | --------- 15 | 16 | Third party tutorials and articles are listed on our `wiki page`_. 17 | 18 | .. _wiki page: http://wiki.phpmyadmin.net/pma/Articles 19 | -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/src/openlayers/lib/Firebug/readme.txt: -------------------------------------------------------------------------------- 1 | This directory contains the source for Firebug Lite 2 | (http://www.getfirebug.com/lite.html). This code is distributed with a 3 | BSD License, Copyright (c) 2007, Parakey Inc. See the included license.txt 4 | for the full text of the license. 5 | 6 | This is a patched version of the trunk from 7 | http://fbug.googlecode.com/svn/trunk. 8 | 9 | Revision 36 was patched to resolve the issue described here 10 | http://code.google.com/p/fbug/issues/detail?id=85 11 | 12 | When this issue is resolved, Firebug Lite can be used directly - no further 13 | modifications are needed for OpenLayers. -------------------------------------------------------------------------------- /phpmyadmin/.scrutinizer.yml: -------------------------------------------------------------------------------- 1 | # scrutinizer-ci.com configuration 2 | imports: 3 | - javascript 4 | - php 5 | filter: 6 | excluded_paths: [libraries/php-gettext/*, libraries/tcpdf/*, libraries/bfShapeFiles/*, PMAStandard/*, libraries/phpseclib/*, libraries/plugins/auth/recaptchalib.php, libraries/plugins/auth/swekey/swekey.php, js/jquery/*, js/jqplot/*, js/openlayers/*, js/codemirror/*, js/canvg/*, js/tracekit/*, js/OpenStreetMap.js, test/libraries/php-gettext/*] 7 | tools: 8 | external_code_coverage: 9 | timeout: 3600 # Timeout in seconds. 10 | php_code_sniffer: 11 | config: 12 | standard: "PMAStandard" 13 | -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/src/openlayers/lib/OpenLayers/Geometry/Surface.js: -------------------------------------------------------------------------------- 1 | /* Copyright (c) 2006-2010 by OpenLayers Contributors (see authors.txt for 2 | * full list of contributors). Published under the Clear BSD license. 3 | * See http://svn.openlayers.org/trunk/openlayers/license.txt for the 4 | * full text of the license. */ 5 | 6 | /** 7 | * @requires OpenLayers/Geometry.js 8 | */ 9 | 10 | OpenLayers.Geometry.Surface = OpenLayers.Class(OpenLayers.Geometry, { 11 | 12 | initialize: function() { 13 | OpenLayers.Geometry.prototype.initialize.apply(this, arguments); 14 | }, 15 | 16 | CLASS_NAME: "OpenLayers.Geometry.Surface" 17 | }); 18 | -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/src/openlayers/lib/OpenLayers/Lang/te.js: -------------------------------------------------------------------------------- 1 | /* Translators (2009 onwards): 2 | * - Veeven 3 | */ 4 | 5 | /** 6 | * @requires OpenLayers/Lang.js 7 | */ 8 | 9 | /** 10 | * Namespace: OpenLayers.Lang["te"] 11 | * Dictionary for తెలుగు. Keys for entries are used in calls to 12 | * . Entry bodies are normal strings or 13 | * strings formatted for use with calls. 14 | */ 15 | OpenLayers.Lang["te"] = OpenLayers.Util.applyDefaults({ 16 | 17 | 'permalink': "స్థిరలింకు", 18 | 19 | 'W': "ప", 20 | 21 | 'E': "తూ", 22 | 23 | 'N': "ఉ", 24 | 25 | 'S': "ద" 26 | 27 | }); 28 | -------------------------------------------------------------------------------- /phpmyadmin/scripts/line-counts.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cat > js/line_counts.php <> js/line_counts.php 27 | -------------------------------------------------------------------------------- /phpmyadmin/db_sql_autocomplete.php: -------------------------------------------------------------------------------- 1 | getTables($db); 16 | foreach ($tableNames as $tableName) { 17 | $sql_autocomplete[$tableName] = $GLOBALS['dbi']->getColumnNames( 18 | $db, $tableName 19 | ); 20 | } 21 | } 22 | 23 | $response = PMA_Response::getInstance(); 24 | $response->addJSON("tables", json_encode($sql_autocomplete)); 25 | -------------------------------------------------------------------------------- /phpmyadmin/doc/index.rst: -------------------------------------------------------------------------------- 1 | .. phpMyAdmin documentation master file, created by 2 | sphinx-quickstart on Wed Sep 26 14:04:48 2012. 3 | You can adapt this file completely to your liking, but it should at least 4 | contain the root `toctree` directive. 5 | 6 | Welcome to phpMyAdmin's documentation! 7 | ====================================== 8 | 9 | Contents: 10 | 11 | .. toctree:: 12 | :maxdepth: 2 13 | 14 | intro 15 | require 16 | setup 17 | config 18 | user 19 | faq 20 | developers 21 | vendors 22 | copyright 23 | credits 24 | glossary 25 | 26 | 27 | Indices and tables 28 | ================== 29 | 30 | * :ref:`genindex` 31 | * :ref:`search` 32 | * :ref:`glossary` 33 | -------------------------------------------------------------------------------- /phpmyadmin/libraries/engines/binlog.lib.php: -------------------------------------------------------------------------------- 1 | 32 | -------------------------------------------------------------------------------- /phpmyadmin/libraries/logging.lib.php: -------------------------------------------------------------------------------- 1 | 31 | -------------------------------------------------------------------------------- /phpmyadmin/server_sql.php: -------------------------------------------------------------------------------- 1 | getHeader(); 19 | $scripts = $header->getScripts(); 20 | $scripts->addFile('makegrid.js'); 21 | $scripts->addFile('sql.js'); 22 | 23 | require_once 'libraries/server_common.inc.php'; 24 | require_once 'libraries/sql_query_form.lib.php'; 25 | 26 | /** 27 | * Query box, bookmark, insert data from textfile 28 | */ 29 | $response->addHTML(PMA_getHtmlForSqlQueryForm()); 30 | 31 | ?> 32 | -------------------------------------------------------------------------------- /phpmyadmin/doc/html/_sources/index.txt: -------------------------------------------------------------------------------- 1 | .. phpMyAdmin documentation master file, created by 2 | sphinx-quickstart on Wed Sep 26 14:04:48 2012. 3 | You can adapt this file completely to your liking, but it should at least 4 | contain the root `toctree` directive. 5 | 6 | Welcome to phpMyAdmin's documentation! 7 | ====================================== 8 | 9 | Contents: 10 | 11 | .. toctree:: 12 | :maxdepth: 2 13 | 14 | intro 15 | require 16 | setup 17 | config 18 | user 19 | faq 20 | developers 21 | vendors 22 | copyright 23 | credits 24 | glossary 25 | 26 | 27 | Indices and tables 28 | ================== 29 | 30 | * :ref:`genindex` 31 | * :ref:`search` 32 | * :ref:`glossary` 33 | -------------------------------------------------------------------------------- /phpmyadmin/tbl_import.php: -------------------------------------------------------------------------------- 1 | getHeader(); 16 | $scripts = $header->getScripts(); 17 | $scripts->addFile('import.js'); 18 | 19 | /** 20 | * Gets tables informations and displays top links 21 | */ 22 | require_once 'libraries/tbl_common.inc.php'; 23 | $url_query .= '&goto=tbl_import.php&back=tbl_import.php'; 24 | 25 | require_once 'libraries/tbl_info.inc.php'; 26 | 27 | $import_type = 'table'; 28 | require_once 'libraries/display_import.inc.php'; 29 | 30 | ?> 31 | -------------------------------------------------------------------------------- /phpmyadmin/js/jquery/src/jquery-ui/jquery.ui.effect-fade.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * jQuery UI Effects Fade @VERSION 3 | * http://jqueryui.com 4 | * 5 | * Copyright 2012 jQuery Foundation and other contributors 6 | * Released under the MIT license. 7 | * http://jquery.org/license 8 | * 9 | * http://api.jqueryui.com/fade-effect/ 10 | * 11 | * Depends: 12 | * jquery.ui.effect.js 13 | */ 14 | (function( $, undefined ) { 15 | 16 | $.effects.effect.fade = function( o, done ) { 17 | var el = $( this ), 18 | mode = $.effects.setMode( el, o.mode || "toggle" ); 19 | 20 | el.animate({ 21 | opacity: mode 22 | }, { 23 | queue: false, 24 | duration: o.duration, 25 | easing: o.easing, 26 | complete: done 27 | }); 28 | }; 29 | 30 | })( jQuery ); 31 | -------------------------------------------------------------------------------- /phpmyadmin/version_check.php: -------------------------------------------------------------------------------- 1 | (! empty($version->version) ? $version->version : ''), 22 | 'date' => (! empty($version->date) ? $version->date : ''), 23 | ) 24 | ); 25 | 26 | ?> 27 | -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/src/openlayers/lib/OpenLayers/Lang/km.js: -------------------------------------------------------------------------------- 1 | /* Translators (2009 onwards): 2 | * - វ័ណថារិទ្ធ 3 | */ 4 | 5 | /** 6 | * @requires OpenLayers/Lang.js 7 | */ 8 | 9 | /** 10 | * Namespace: OpenLayers.Lang["km"] 11 | * Dictionary for ភាសាខ្មែរ. Keys for entries are used in calls to 12 | * . Entry bodies are normal strings or 13 | * strings formatted for use with calls. 14 | */ 15 | OpenLayers.Lang["km"] = OpenLayers.Util.applyDefaults({ 16 | 17 | 'permalink': "តំណភ្ជាប់អចិន្ត្រៃយ៍", 18 | 19 | 'baseLayer': "ស្រទាប់បាត​", 20 | 21 | 'errorLoadingGML': "កំហុសកំឡុងពេលផ្ទុកឯកសារ GML ${url}", 22 | 23 | 'scale': "មាត្រដ្ឋាន = ១ ៖ ${scaleDenom}" 24 | 25 | }); 26 | -------------------------------------------------------------------------------- /phpmyadmin/libraries/db_printview.lib.php: -------------------------------------------------------------------------------- 1 | ' 23 | . '' . $title . '' 24 | . '' 25 | . PMA_Util::localisedDate(strtotime($date)) 26 | . '' 27 | . ''; 28 | return $html; 29 | } 30 | ?> 31 | -------------------------------------------------------------------------------- /phpmyadmin/libraries/engines/performance_schema.lib.php: -------------------------------------------------------------------------------- 1 | 32 | -------------------------------------------------------------------------------- /phpmyadmin/server_engines.php: -------------------------------------------------------------------------------- 1 | addHTML(PMA_getHtmlForSubPageHeader('engines')); 26 | 27 | /** 28 | * start output 29 | */ 30 | $response->addHTML(PMA_getHtmlForServerEngines()); 31 | 32 | exit; 33 | 34 | ?> 35 | -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/src/openlayers/lib/Firebug/firebug.html: -------------------------------------------------------------------------------- 1 | 3 | 4 | 5 | 6 | 7 | Firebug 8 | 9 | 10 | 11 | 12 |
13 | Clear 14 | 15 | Close 16 | 17 |
18 |
19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/src/openlayers/lib/OpenLayers/Lang/en-CA.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @requires OpenLayers/Lang/en.js 3 | */ 4 | 5 | /** 6 | * Namespace: OpenLayers.Lang["en-CA"] 7 | * Dictionary for English-CA. This dictionary inherits from the standard 8 | * English dictionary. Override only those entries with language specific 9 | * to the CA region. 10 | * 11 | * Keys for entries are used in calls to . Entry 12 | * bodies are normal strings or strings formatted for use with 13 | * calls. 14 | */ 15 | OpenLayers.Lang['en-CA'] = OpenLayers.Util.applyDefaults({ 16 | 17 | // add any entries specific for this region here 18 | // e.g. 19 | // "someKey": "Some regionally specific value" 20 | 21 | }, OpenLayers.Lang["en"]); 22 | -------------------------------------------------------------------------------- /phpmyadmin/libraries/engines/mrg_myisam.lib.php: -------------------------------------------------------------------------------- 1 | 37 | -------------------------------------------------------------------------------- /phpmyadmin/libraries/engines/memory.lib.php: -------------------------------------------------------------------------------- 1 | array( 28 | 'type' => PMA_ENGINE_DETAILS_TYPE_SIZE, 29 | ), 30 | ); 31 | } 32 | } 33 | 34 | ?> 35 | -------------------------------------------------------------------------------- /phpmyadmin/libraries/plugins/UploadInterface.int.php: -------------------------------------------------------------------------------- 1 | upload plugins 5 | * 6 | * @package PhpMyAdmin 7 | */ 8 | if (! defined('PHPMYADMIN')) { 9 | exit; 10 | } 11 | 12 | /** 13 | * Provides a common interface that will have to implemented by all of the 14 | * import->upload plugins. 15 | * 16 | * @package PhpMyAdmin 17 | */ 18 | interface UploadInterface 19 | { 20 | /** 21 | * Gets the specific upload ID Key 22 | * 23 | * @return string ID Key 24 | */ 25 | public static function getIdKey(); 26 | 27 | /** 28 | * Returns upload status. 29 | * 30 | * @param string $id upload id 31 | * 32 | * @return array|null 33 | */ 34 | public static function getUploadStatus($id); 35 | } 36 | ?> -------------------------------------------------------------------------------- /fig.yml: -------------------------------------------------------------------------------- 1 | workspace: 2 | build: ./workspace 3 | ports: 4 | - "222:22" 5 | volumes: 6 | - ./code:/code 7 | environment: 8 | - VIRTUAL_HOST=code.env.com 9 | db: 10 | image: tutum/mariadb 11 | environment: 12 | - MARIADB_PASS=123456 13 | volumes: 14 | - ./database:/var/lib/mysql 15 | memcache: 16 | image: memcached 17 | socketlog: 18 | build: ./socketlog 19 | ports: 20 | - "1229:1229" 21 | - "1116:1116" 22 | phpmyadmin: 23 | image: tutum/apache-php 24 | volumes: 25 | - ./phpmyadmin:/app 26 | links: 27 | - db 28 | environment: 29 | - VIRTUAL_HOST=phpmyadmin.env.com 30 | publish: 31 | build: ./publish/ 32 | volumes: 33 | - ./publish_codedir:/publish_codedir 34 | links: 35 | - db 36 | - memcache 37 | environment: 38 | - VIRTUAL_HOST=publish.env.com 39 | #[team-container] 40 | -------------------------------------------------------------------------------- /phpmyadmin/server_export.php: -------------------------------------------------------------------------------- 1 | getHeader(); 18 | $scripts = $header->getScripts(); 19 | $scripts->addFile('export.js'); 20 | 21 | $export_page_title = __('View dump (schema) of databases') . "\n"; 22 | 23 | $select_item = isset($tmp_select)? $tmp_select : ''; 24 | $multi_values = PMA_getHtmlForExportSelectOptions($select_item); 25 | 26 | $export_type = 'server'; 27 | require_once 'libraries/display_export.inc.php'; 28 | 29 | ?> 30 | -------------------------------------------------------------------------------- /phpmyadmin/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing to phpMyAdmin 2 | 3 | As an open source project, phpMyAdmin welcomes contributions of many forms. 4 | 5 | ## Bug reporting 6 | 7 | Please report [bugs on SourceForge.net][1]. 8 | 9 | [1]: https://sourceforge.net/p/phpmyadmin/bugs/new/ 10 | 11 | ## Patches submission 12 | 13 | Patches are welcome as [pull requests on GitHub][2]. Please include a 14 | Signed-off-by tag. Note that by submitting patches with the Signed-off-by 15 | tag, you are giving permission to license the patch as GPLv2-or-later. See 16 | [the DCO file][3] for details. 17 | 18 | [2]: https://github.com/phpmyadmin/phpmyadmin/pulls 19 | [3]: https://github.com/phpmyadmin/phpmyadmin/blob/master/DCO 20 | 21 | ## More information 22 | 23 | You can find more information on our website: 24 | 25 | http://www.phpmyadmin.net/home_page/improve.php 26 | -------------------------------------------------------------------------------- /workspace/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM tutum/apache-php 2 | RUN mkdir -p /var/www/.ssh 3 | # 如果有用window的同事可以设置www-data的密码, windows用户可以用sftp同步 4 | RUN echo 'www-data:123456' | chpasswd 5 | #将源地址修改为国内的 6 | RUN sed -i "s/archive\.ubuntu\.com/mirrors\.163\.com/g" /etc/apt/sources.list 7 | #设置www-data用户可以登录 8 | RUN sed -i "s/\/var\/www:\/usr\/sbin\/nologin/\/var\/www:\/bin\/bash/" /etc/passwd 9 | #设置ssh,本地生产key,环境变量填写key 10 | RUN apt-get update && apt-get install -y openssh-server zip rsync 11 | RUN mkdir /var/run/sshd && chmod 0755 /var/run/sshd 12 | #这里添加的目录会在docker run 指定 v 参数覆盖,所以无用 13 | ADD www /app 14 | ADD run.sh /run.sh 15 | RUN chmod +x /run.sh 16 | RUN cd /app && ssh-keygen -N "" -t dsa -b 1024 -f rsync-key && cp rsync-key.pub /var/www/.ssh/authorized_keys && zip -r code.zip * 17 | RUN locale-gen en_US.UTF-8 18 | EXPOSE 22 19 | VOLUME ["/code"] 20 | CMD /run.sh 21 | -------------------------------------------------------------------------------- /phpmyadmin/license.php: -------------------------------------------------------------------------------- 1 | 32 | -------------------------------------------------------------------------------- /phpmyadmin/setup/validate.php: -------------------------------------------------------------------------------- 1 | 31 | -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/src/openlayers/lib/OpenLayers/Lang/fi.js: -------------------------------------------------------------------------------- 1 | /* Translators (2009 onwards): 2 | * - Nike 3 | * - Str4nd 4 | */ 5 | 6 | /** 7 | * @requires OpenLayers/Lang.js 8 | */ 9 | 10 | /** 11 | * Namespace: OpenLayers.Lang["fi"] 12 | * Dictionary for Suomi. Keys for entries are used in calls to 13 | * . Entry bodies are normal strings or 14 | * strings formatted for use with calls. 15 | */ 16 | OpenLayers.Lang["fi"] = OpenLayers.Util.applyDefaults({ 17 | 18 | 'permalink': "Ikilinkki", 19 | 20 | 'overlays': "Kerrokset", 21 | 22 | 'baseLayer': "Peruskerros", 23 | 24 | 'sameProjection': "Yleiskuvakarttaa voi käyttää vain, kun sillä on sama projektio kuin pääkartalla.", 25 | 26 | 'W': "L", 27 | 28 | 'E': "I", 29 | 30 | 'N': "P", 31 | 32 | 'S': "E" 33 | 34 | }); 35 | -------------------------------------------------------------------------------- /phpmyadmin/phpmyadmin.css.php: -------------------------------------------------------------------------------- 1 | printCss(); 32 | ?> 33 | -------------------------------------------------------------------------------- /phpmyadmin/server_collations.php: -------------------------------------------------------------------------------- 1 | addHTML(PMA_getHtmlForSubPageHeader('collations')); 29 | $response->addHTML( 30 | PMA_getHtmlForCharsets( 31 | $mysql_charsets, 32 | $mysql_collations, 33 | $mysql_charsets_descriptions, 34 | $mysql_default_collations, 35 | $mysql_collations_available 36 | ) 37 | ); 38 | 39 | ?> 40 | -------------------------------------------------------------------------------- /phpmyadmin/libraries/mime.lib.php: -------------------------------------------------------------------------------- 1 | = 2 && $test[0] == chr(0xff) && $test[1] == chr(0xd8)) { 24 | return 'image/jpeg'; 25 | } 26 | if ($len >= 3 && substr($test, 0, 3) == 'GIF') { 27 | return 'image/gif'; 28 | } 29 | if ($len >= 4 && /*overload*/mb_substr($test, 0, 4) == "\x89PNG") { 30 | return 'image/png'; 31 | } 32 | return 'application/octet-stream'; 33 | } 34 | ?> 35 | -------------------------------------------------------------------------------- /phpmyadmin/js/openlayers/src/openlayers/lib/OpenLayers/Lang/fur.js: -------------------------------------------------------------------------------- 1 | /* Translators (2009 onwards): 2 | * - Klenje 3 | */ 4 | 5 | /** 6 | * @requires OpenLayers/Lang.js 7 | */ 8 | 9 | /** 10 | * Namespace: OpenLayers.Lang["fur"] 11 | * Dictionary for Furlan. Keys for entries are used in calls to 12 | * . Entry bodies are normal strings or 13 | * strings formatted for use with calls. 14 | */ 15 | OpenLayers.Lang["fur"] = OpenLayers.Util.applyDefaults({ 16 | 17 | 'permalink': "Leam Permanent", 18 | 19 | 'overlays': "Livei parsore", 20 | 21 | 'baseLayer': "Livel di base", 22 | 23 | 'browserNotSupported': "Il to sgarfadôr nol supuarte la renderizazion vetoriâl. Al moment a son supuartâts:\n${renderers}", 24 | 25 | 'scale': "Scjale = 1 : ${scaleDenom}", 26 | 27 | 'W': "O", 28 | 29 | 'E': "E", 30 | 31 | 'N': "N", 32 | 33 | 'S': "S" 34 | 35 | }); 36 | -------------------------------------------------------------------------------- /phpmyadmin/libraries/string.lib.php: -------------------------------------------------------------------------------- 1 | 16 | 17 | .rte_table { 18 | table-layout: fixed; 19 | } 20 | 21 | .rte_table td { 22 | vertical-align: middle; 23 | padding: 0.2em; 24 | } 25 | 26 | .rte_table tr td:nth-child(1) { 27 | font-weight: bold; 28 | } 29 | 30 | .rte_table input, 31 | .rte_table select, 32 | .rte_table textarea { 33 | width: 100%; 34 | margin: 0; 35 | box-sizing: border-box; 36 | -ms-box-sizing: border-box; 37 | -moz-box-sizing: border-box; 38 | -webkit-box-sizing: border-box; 39 | } 40 | 41 | .rte_table .routine_params_table { 42 | width: 100%; 43 | } 44 | --------------------------------------------------------------------------------