├── README.md ├── data.sql ├── graduation ├── admin │ ├── .htaccess │ ├── a_list.php │ ├── ajaxApi │ │ ├── checkLogin.php │ │ ├── checkRegist.php │ │ ├── check_thx.php │ │ ├── checkpsw.php │ │ ├── delete.php │ │ ├── lglog.txt │ │ ├── m_reset.php │ │ ├── reset_lost.php │ │ └── u_reset.php │ ├── exit.php │ ├── index.php │ ├── isLogin.php │ ├── l_edit.php │ ├── leave_list.php │ ├── list.php │ ├── m_add.php │ ├── m_edit.php │ ├── m_list.php │ ├── m_login.php │ ├── n_edit.php │ ├── n_list.php │ ├── p_note.php │ ├── pull_list.php │ ├── rl_list.php │ ├── t_list.php │ ├── u_edit.php │ ├── u_list.php │ ├── utf8.php │ └── validatorCode.php ├── common │ ├── Smarty │ │ ├── Config_File.class.php │ │ ├── Smarty.class.php │ │ ├── Smarty_Compiler.class.php │ │ ├── debug.tpl │ │ ├── internals │ │ │ ├── core.assemble_plugin_filepath.php │ │ │ ├── core.assign_smarty_interface.php │ │ │ ├── core.create_dir_structure.php │ │ │ ├── core.display_debug_console.php │ │ │ ├── core.get_include_path.php │ │ │ ├── core.get_microtime.php │ │ │ ├── core.get_php_resource.php │ │ │ ├── core.is_secure.php │ │ │ ├── core.is_trusted.php │ │ │ ├── core.load_plugins.php │ │ │ ├── core.load_resource_plugin.php │ │ │ ├── core.process_cached_inserts.php │ │ │ ├── core.process_compiled_include.php │ │ │ ├── core.read_cache_file.php │ │ │ ├── core.rm_auto.php │ │ │ ├── core.rmdir.php │ │ │ ├── core.run_insert_handler.php │ │ │ ├── core.smarty_include_php.php │ │ │ ├── core.write_cache_file.php │ │ │ ├── core.write_compiled_include.php │ │ │ ├── core.write_compiled_resource.php │ │ │ └── core.write_file.php │ │ └── plugins │ │ │ ├── block.textformat.php │ │ │ ├── compiler.assign.php │ │ │ ├── function.assign_debug_info.php │ │ │ ├── function.config_load.php │ │ │ ├── function.counter.php │ │ │ ├── function.cycle.php │ │ │ ├── function.debug.php │ │ │ ├── function.eval.php │ │ │ ├── function.fetch.php │ │ │ ├── function.html_checkboxes.php │ │ │ ├── function.html_image.php │ │ │ ├── function.html_options.php │ │ │ ├── function.html_radios.php │ │ │ ├── function.html_select_date.php │ │ │ ├── function.html_select_time.php │ │ │ ├── function.html_table.php │ │ │ ├── function.mailto.php │ │ │ ├── function.math.php │ │ │ ├── function.popup.php │ │ │ ├── function.popup_init.php │ │ │ ├── modifier.capitalize.php │ │ │ ├── modifier.cat.php │ │ │ ├── modifier.count_characters.php │ │ │ ├── modifier.count_paragraphs.php │ │ │ ├── modifier.count_sentences.php │ │ │ ├── modifier.count_words.php │ │ │ ├── modifier.date_format.php │ │ │ ├── modifier.debug_print_var.php │ │ │ ├── modifier.default.php │ │ │ ├── modifier.escape.php │ │ │ ├── modifier.indent.php │ │ │ ├── modifier.lower.php │ │ │ ├── modifier.nl2br.php │ │ │ ├── modifier.regex_replace.php │ │ │ ├── modifier.replace.php │ │ │ ├── modifier.smartTruncate.php │ │ │ ├── modifier.spacify.php │ │ │ ├── modifier.string_format.php │ │ │ ├── modifier.strip.php │ │ │ ├── modifier.strip_tags.php │ │ │ ├── modifier.truncate.php │ │ │ ├── modifier.upper.php │ │ │ ├── modifier.wordwrap.php │ │ │ ├── outputfilter.trimwhitespace.php │ │ │ ├── shared.escape_special_chars.php │ │ │ └── shared.make_timestamp.php │ ├── class │ │ ├── ajaxguolv.php │ │ ├── checkSimilar.php │ │ ├── db.php │ │ ├── dblog.txt │ │ ├── guolv.php │ │ ├── pscws4 │ │ │ ├── etc │ │ │ │ ├── dict.utf8.xdb │ │ │ │ ├── rules.ini │ │ │ │ ├── rules.utf8.ini │ │ │ │ └── rules_cht.utf8.ini │ │ │ ├── pscws4.php │ │ │ └── xdb_r.class.php │ │ ├── resizeimage.php │ │ ├── scws.php │ │ ├── sepPage.php │ │ └── smarty.php │ ├── configs │ │ ├── config.db.php │ │ └── config.upload.php │ ├── templates │ │ ├── admin │ │ │ ├── a_list.tpl │ │ │ ├── css │ │ │ │ └── mstyle.css │ │ │ ├── index.tpl │ │ │ ├── js │ │ │ │ ├── Date │ │ │ │ │ ├── WdatePicker.js │ │ │ │ │ ├── calendar.js │ │ │ │ │ ├── lang │ │ │ │ │ │ └── zh-cn.js │ │ │ │ │ └── skin │ │ │ │ │ │ ├── WdatePicker.css │ │ │ │ │ │ ├── datePicker.gif │ │ │ │ │ │ └── default │ │ │ │ │ │ ├── datepicker.css │ │ │ │ │ │ └── img.gif │ │ │ │ ├── a_list.js │ │ │ │ ├── jquery-1.7.2.min.js │ │ │ │ ├── l_edit.js │ │ │ │ ├── leave_list.js │ │ │ │ ├── list.js │ │ │ │ ├── login.js │ │ │ │ ├── m_add.js │ │ │ │ ├── m_edit.js │ │ │ │ ├── m_list.js │ │ │ │ ├── n_edit.js │ │ │ │ ├── n_list.js │ │ │ │ ├── p_note.js │ │ │ │ ├── pull_list.js │ │ │ │ ├── rl_list.js │ │ │ │ ├── t_list.js │ │ │ │ ├── u_edit.js │ │ │ │ └── u_list.js │ │ │ ├── l_edit.tpl │ │ │ ├── leave_list.tpl │ │ │ ├── list.tpl │ │ │ ├── m_add.tpl │ │ │ ├── m_edit.tpl │ │ │ ├── m_list.tpl │ │ │ ├── m_login.tpl │ │ │ ├── n_edit.tpl │ │ │ ├── n_list.tpl │ │ │ ├── p_note.tpl │ │ │ ├── pull_list.tpl │ │ │ ├── rl_list.tpl │ │ │ ├── sideBar.tpl │ │ │ ├── t_list.tpl │ │ │ ├── u_edit.tpl │ │ │ └── u_list.tpl │ │ ├── font │ │ │ └── Elephant.ttf │ │ ├── images │ │ │ ├── Thumbs.db │ │ │ ├── a_more.png │ │ │ ├── aa.jpg │ │ │ ├── admin-group.png │ │ │ ├── announce-group.png │ │ │ ├── answer-group.png │ │ │ ├── avatar_default.jpg │ │ │ ├── bubble.png │ │ │ ├── close2.png │ │ │ ├── close_btn.png │ │ │ ├── detail_avatar.jpg │ │ │ ├── detail_bar.jpg │ │ │ ├── detail_bg1.jpg │ │ │ ├── detail_bg2.jpg │ │ │ ├── detail_bg3.jpg │ │ │ ├── detail_bg_l.jpg │ │ │ ├── detail_download.png │ │ │ ├── getintouch.png │ │ │ ├── guifan.jpg │ │ │ ├── head_icon.jpg │ │ │ ├── icon_mail.jpg │ │ │ ├── icon_mail1.jpg │ │ │ ├── icon_new.png │ │ │ ├── icon_qq.jpg │ │ │ ├── icon_tel.jpg │ │ │ ├── icon_wb.jpg │ │ │ ├── icon_wb1.jpg │ │ │ ├── icon_wx.jpg │ │ │ ├── icon_wx1.jpg │ │ │ ├── li1.jpg │ │ │ ├── li10.jpg │ │ │ ├── li2.jpg │ │ │ ├── li3.jpg │ │ │ ├── li4.jpg │ │ │ ├── li5.jpg │ │ │ ├── li6.jpg │ │ │ ├── li7.jpg │ │ │ ├── li8.jpg │ │ │ ├── li9.jpg │ │ │ ├── logo.png │ │ │ ├── match-group.png │ │ │ ├── message.png │ │ │ ├── nav_bg.png │ │ │ ├── notice-group.png │ │ │ ├── pager_bg.png │ │ │ ├── pager_hover.png │ │ │ ├── pager_next.png │ │ │ ├── pager_prev.png │ │ │ ├── search_bg.jpg │ │ │ ├── search_close.jpg │ │ │ ├── search_open.jpg │ │ │ ├── slider_next.png │ │ │ ├── slider_prev.png │ │ │ ├── subtitle_bg.jpg │ │ │ ├── tip_error.png │ │ │ ├── tip_right.png │ │ │ ├── title.jpg │ │ │ ├── title_bar.jpg │ │ │ ├── title_bar1(启事详情).jpg │ │ │ ├── title_bar1.jpg │ │ │ ├── title_bar2(两大厅).jpg │ │ │ ├── title_bar2.jpg │ │ │ ├── title_bar2_1.jpg │ │ │ ├── title_bar2_2.jpg │ │ │ ├── title_bar2_3.jpg │ │ │ ├── title_bar2_4.jpg │ │ │ ├── title_bar2_99.jpg │ │ │ ├── title_bar2__1.jpg │ │ │ ├── title_bar2__2.jpg │ │ │ ├── title_bar3.jpg │ │ │ ├── title_bar3_1.jpg │ │ │ ├── title_bar3_2.jpg │ │ │ ├── top.png │ │ │ ├── ucenter_bar.jpg │ │ │ ├── ucenter_bar_1.jpg │ │ │ ├── ucenter_edit.png │ │ │ ├── ucenter_nav1_0.png │ │ │ ├── ucenter_nav1_1.png │ │ │ ├── ucenter_nav2_0.png │ │ │ ├── ucenter_nav2_1.png │ │ │ ├── ucenter_nav3_0.png │ │ │ ├── ucenter_nav3_1.png │ │ │ ├── user-group.png │ │ │ ├── vote.png │ │ │ ├── vote1.jpg │ │ │ ├── vote2.jpg │ │ │ └── wutu.jpg │ │ └── user │ │ │ ├── about.tpl │ │ │ ├── css │ │ │ ├── basicstyle.css │ │ │ └── style.css │ │ │ ├── detail.tpl │ │ │ ├── edit_lost.tpl │ │ │ ├── footBar.tpl │ │ │ ├── index.tpl │ │ │ ├── js │ │ │ ├── Date │ │ │ │ ├── WdatePicker.js │ │ │ │ ├── calendar.js │ │ │ │ ├── lang │ │ │ │ │ └── zh-cn.js │ │ │ │ └── skin │ │ │ │ │ ├── WdatePicker.css │ │ │ │ │ ├── datePicker.gif │ │ │ │ │ └── default │ │ │ │ │ ├── datepicker.css │ │ │ │ │ └── img.gif │ │ │ ├── common.js │ │ │ ├── detail.js │ │ │ ├── edit_lost.js │ │ │ ├── index.js │ │ │ ├── jquery-1.7.2.min.js │ │ │ ├── list_found.js │ │ │ ├── list_lost.js │ │ │ ├── login.js │ │ │ ├── p_lost.js │ │ │ ├── regist.js │ │ │ ├── search.js │ │ │ └── ucenter.js │ │ │ ├── list_announce.tpl │ │ │ ├── list_found.tpl │ │ │ ├── list_lost.tpl │ │ │ ├── list_thank.tpl │ │ │ ├── login.tpl │ │ │ ├── p_lost.tpl │ │ │ ├── regist.tpl │ │ │ ├── search.tpl │ │ │ ├── topBar.tpl │ │ │ └── ucenter.tpl │ ├── templates_c │ │ ├── %%08^08B^08BD95DD%%u_list.tpl.php │ │ ├── %%0B^0B2^0B26B4D4%%n_edit.tpl.php │ │ ├── %%0F^0FD^0FD364E9%%l_edit.tpl.php │ │ ├── %%1C^1CD^1CDE0E80%%list_lost.tpl.php │ │ ├── %%26^26F^26F8B44F%%a_list.tpl.php │ │ ├── %%2E^2E0^2E0E7DD6%%index.html.php │ │ ├── %%3B^3BC^3BC45B57%%ucenter.tpl.php │ │ ├── %%3C^3CC^3CC454C1%%m_list.tpl.php │ │ ├── %%3E^3E9^3E9B6C10%%footBar.tpl.php │ │ ├── %%3F^3F3^3F3DDC43%%topBar.html.php │ │ ├── %%40^40A^40AEAAE2%%list_found.html.php │ │ ├── %%43^43F^43FC2EC0%%login.html.php │ │ ├── %%49^49B^49BD99C9%%edit_lost.tpl.php │ │ ├── %%55^554^55438A79%%list_announce.tpl.php │ │ ├── %%5A^5A5^5A5A0067%%index.tpl.php │ │ ├── %%61^618^6181D21C%%list.tpl.php │ │ ├── %%61^619^619A07C0%%pull_list.tpl.php │ │ ├── %%63^634^634DB8D7%%regist.tpl.php │ │ ├── %%67^67E^67EFB348%%ucenter.html.php │ │ ├── %%70^702^702A74C9%%edit_lost.html.php │ │ ├── %%72^720^720931DC%%rl_list.tpl.php │ │ ├── %%72^72A^72A58409%%m_add.tpl.php │ │ ├── %%78^789^789C5B26%%list_found.tpl.php │ │ ├── %%7A^7AF^7AFBCC69%%detail.tpl.php │ │ ├── %%7F^7F7^7F7FEE6A%%list_lost.html.php │ │ ├── %%81^81E^81E7416A%%topBar.tpl.php │ │ ├── %%89^89F^89FF6A42%%search.tpl.php │ │ ├── %%8D^8DD^8DD2169D%%m_login.tpl.php │ │ ├── %%8F^8F5^8F52384C%%footBar.html.php │ │ ├── %%8F^8FE^8FE4E254%%p_note.tpl.php │ │ ├── %%9B^9B1^9B1B8486%%about.tpl.php │ │ ├── %%9C^9CF^9CFA75A4%%login.tpl.php │ │ ├── %%A6^A6C^A6CF9174%%detail.html.php │ │ ├── %%B3^B34^B34D88B1%%index.tpl.php │ │ ├── %%D4^D46^D468CECB%%u_edit.tpl.php │ │ ├── %%D7^D7F^D7F3EFC2%%n_list.tpl.php │ │ ├── %%E0^E01^E0110FD7%%m_edit.tpl.php │ │ ├── %%E1^E1A^E1AE17C4%%list_thank.tpl.php │ │ ├── %%E2^E21^E21D0BCA%%p_lost.tpl.php │ │ ├── %%E7^E77^E77FFEE3%%t_list.tpl.php │ │ ├── %%EA^EA6^EA615B2A%%sideBar.tpl.php │ │ └── %%EE^EEF^EEFED2E4%%leave_list.tpl.php │ ├── uploadImg.php │ └── upload_img │ │ ├── 20160208085600631.jpg │ │ ├── 20160208085600631big.jpg │ │ ├── 20160228110426396.jpg │ │ ├── 20160228110426396big.jpg │ │ ├── 20160316012746121.jpg │ │ ├── 20160316012746121big.jpg │ │ ├── 20160316013014719.jpg │ │ ├── 20160316013014719big.jpg │ │ ├── 20160316013652491.jpg │ │ ├── 20160316013652491big.jpg │ │ ├── 20160316013818299.jpg │ │ ├── 20160316013818299big.jpg │ │ ├── 20160316020129840.jpg │ │ ├── 20160316020129840big.jpg │ │ ├── 20160316020303338.jpg │ │ ├── 20160316020303338big.jpg │ │ ├── 20160316020511274.jpg │ │ ├── 20160316020511274big.jpg │ │ ├── 20160316021256907.jpg │ │ ├── 20160316021256907big.jpg │ │ ├── 20160316021446428.jpg │ │ ├── 20160316021446428big.jpg │ │ ├── 20160316021617445.jpg │ │ ├── 20160316021617445big.jpg │ │ ├── 20160316022155474.jpg │ │ ├── 20160316022155474big.jpg │ │ ├── 20160316022433975.jpg │ │ ├── 20160316022433975big.jpg │ │ ├── 20160316022619301.jpg │ │ ├── 20160316022619301big.jpg │ │ ├── 20160316023411647.jpg │ │ ├── 20160316023411647big.jpg │ │ ├── 20160316023621847.jpg │ │ ├── 20160316023621847big.jpg │ │ ├── 20160316023825571.jpg │ │ ├── 20160316023825571big.jpg │ │ ├── 20160316024054330.jpg │ │ ├── 20160316024054330big.jpg │ │ ├── 20160316024557164.jpg │ │ ├── 20160316024557164big.jpg │ │ ├── 20160316025015630.jpg │ │ ├── 20160316025015630big.jpg │ │ ├── 20160316025243822.jpg │ │ ├── 20160316025243822big.jpg │ │ ├── 20160316025504141.jpg │ │ ├── 20160316025504141big.jpg │ │ ├── 20160316030016131.jpg │ │ ├── 20160316030016131big.jpg │ │ ├── 20160316030804727.png │ │ ├── 20160316030804727big.png │ │ ├── 20160316031226798.jpg │ │ ├── 20160316031226798big.jpg │ │ ├── 20160316032245485.jpg │ │ ├── 20160316032245485big.jpg │ │ ├── 20160316032900903.jpg │ │ ├── 20160316032900903big.jpg │ │ ├── 20160316033117959.jpg │ │ ├── 20160316033117959big.jpg │ │ ├── 20160316035059688.jpg │ │ ├── 20160316035059688big.jpg │ │ ├── 20160316035519321.jpg │ │ ├── 20160316035519321big.jpg │ │ ├── 20160316035727611.jpg │ │ ├── 20160316035727611big.jpg │ │ ├── 20160316040015766.jpg │ │ ├── 20160316040015766big.jpg │ │ ├── 20160316040131832.jpg │ │ ├── 20160316040131832big.jpg │ │ ├── 20160316040548749.jpg │ │ ├── 20160316040548749big.jpg │ │ ├── 20160316040858202.jpg │ │ ├── 20160316040858202big.jpg │ │ ├── 20160316041319351.jpg │ │ ├── 20160316041319351big.jpg │ │ ├── 20160316041707806.jpg │ │ ├── 20160316041707806big.jpg │ │ ├── 20160316041914749.jpg │ │ ├── 20160316041914749big.jpg │ │ ├── 20160316043948994.jpg │ │ ├── 20160316043948994big.jpg │ │ ├── 20160316050608996.jpg │ │ ├── 20160316050608996big.jpg │ │ ├── 20160316050924557.jpg │ │ ├── 20160316050924557big.jpg │ │ ├── 20160316052308924.jpg │ │ ├── 20160316052308924big.jpg │ │ ├── 20160316052532237.jpg │ │ ├── 20160316052532237big.jpg │ │ ├── 20160316052940389.jpg │ │ ├── 20160316052940389big.jpg │ │ ├── 20160316053112503.jpg │ │ ├── 20160316053112503big.jpg │ │ ├── 20160316053433460.jpg │ │ ├── 20160316053433460big.jpg │ │ ├── 20160316053935812.jpg │ │ ├── 20160316053935812big.jpg │ │ ├── 20160316054403793.jpg │ │ ├── 20160316054403793big.jpg │ │ ├── 20160316063140377.jpg │ │ ├── 20160316063140377big.jpg │ │ ├── 20160316065253692.jpg │ │ ├── 20160316065253692big.jpg │ │ ├── 20160316065625574.jpg │ │ ├── 20160316065625574big.jpg │ │ ├── 20160316070053191.jpg │ │ ├── 20160316070053191big.jpg │ │ ├── 20160316070417637.jpg │ │ ├── 20160316070417637big.jpg │ │ ├── 20160316070753468.jpg │ │ ├── 20160316070753468big.jpg │ │ ├── 20160316071046132.jpg │ │ ├── 20160316071046132big.jpg │ │ ├── 20160316071138349.jpg │ │ ├── 20160316071138349big.jpg │ │ ├── 20160316072706758.jpg │ │ ├── 20160316072706758big.jpg │ │ ├── 20160316094830402.jpg │ │ ├── 20160316094830402big.jpg │ │ ├── 20160316095059666.jpg │ │ ├── 20160316095059666big.jpg │ │ ├── 20160316095326289.jpg │ │ ├── 20160316095326289big.jpg │ │ ├── 20160316101901274.jpg │ │ ├── 20160316101901274big.jpg │ │ ├── 20160316102147907.jpg │ │ ├── 20160316102147907big.jpg │ │ ├── 20160316102452729.jpg │ │ ├── 20160316102452729big.jpg │ │ ├── 20160316102932464.jpg │ │ ├── 20160316102932464big.jpg │ │ ├── 20160316103417804.jpg │ │ ├── 20160316103417804big.jpg │ │ ├── 20160316104241977.jpg │ │ ├── 20160316104241977big.jpg │ │ ├── 20160316104508356.jpg │ │ ├── 20160316104508356big.jpg │ │ ├── 20160316105238900.jpg │ │ ├── 20160316105238900big.jpg │ │ ├── 20160316105717754.jpg │ │ ├── 20160316105717754big.jpg │ │ ├── 20160316110542771.jpg │ │ ├── 20160316110542771big.jpg │ │ ├── 20160316110947349.jpg │ │ ├── 20160316110947349big.jpg │ │ ├── 20160316111138620.jpg │ │ ├── 20160316111138620big.jpg │ │ ├── 20160316112142624.jpg │ │ ├── 20160316112142624big.jpg │ │ ├── 20160316112404772.jpg │ │ ├── 20160316112404772big.jpg │ │ ├── 20160316112548605.jpg │ │ ├── 20160316112548605big.jpg │ │ ├── 20160316112948932.jpg │ │ ├── 20160316112948932big.jpg │ │ ├── 20160316113145946.jpg │ │ ├── 20160316113145946big.jpg │ │ ├── 20160316113819559.jpg │ │ ├── 20160316113819559big.jpg │ │ ├── 20160424020008279.jpg │ │ ├── 20160424020008279big.jpg │ │ ├── 20160424020511606.jpg │ │ ├── 20160424020511606big.jpg │ │ ├── 20160424021328346.jpg │ │ ├── 20160424021328346big.jpg │ │ ├── 20160424022042403.jpg │ │ ├── 20160424022042403big.jpg │ │ ├── 20160424032344697.jpg │ │ ├── 20160424032344697big.jpg │ │ ├── 20160424032546106.jpg │ │ ├── 20160424032546106big.jpg │ │ ├── 20160424032719175.jpg │ │ ├── 20160424032719175big.jpg │ │ ├── 20160424033030296.jpg │ │ ├── 20160424033030296big.jpg │ │ ├── 20160424033304440.jpg │ │ ├── 20160424033304440big.jpg │ │ ├── 20160424033407760.jpg │ │ ├── 20160424033407760big.jpg │ │ ├── 20160424033622697.jpg │ │ ├── 20160424033622697big.jpg │ │ ├── 20160424034120164.jpg │ │ ├── 20160424034120164big.jpg │ │ ├── 20160424034510506.jpg │ │ ├── 20160424034510506big.jpg │ │ ├── 20160424034825828.jpg │ │ ├── 20160424034825828big.jpg │ │ ├── 20160424034929695.jpg │ │ ├── 20160424034929695big.jpg │ │ ├── 20160424035014252.jpg │ │ ├── 20160424035014252big.jpg │ │ ├── 20160424035314456.jpg │ │ ├── 20160424035314456big.jpg │ │ ├── 20160424035432587.jpg │ │ ├── 20160424035432587big.jpg │ │ ├── 20160424042157241.jpg │ │ ├── 20160424042157241big.jpg │ │ ├── 20160424042433430.jpg │ │ ├── 20160424042433430big.jpg │ │ ├── 20160425022534631.jpg │ │ ├── 20160425022534631big.jpg │ │ ├── 20160425105524694.jpg │ │ ├── 20160425105524694big.jpg │ │ ├── 20160425110051369.jpg │ │ ├── 20160425110051369big.jpg │ │ ├── 20160425110545743.jpg │ │ ├── 20160425110545743big.jpg │ │ ├── 20160425110854713.jpg │ │ ├── 20160425110854713big.jpg │ │ ├── 20160425111157251.jpg │ │ ├── 20160425111157251big.jpg │ │ ├── 20160425111345986.jpg │ │ ├── 20160425111345986big.jpg │ │ ├── 20160425111744355.jpg │ │ ├── 20160425111744355big.jpg │ │ ├── 20160425112258352.jpg │ │ ├── 20160425112258352big.jpg │ │ ├── 20160425113349891.jpg │ │ ├── 20160425113349891big.jpg │ │ ├── 20160425114245223.jpg │ │ ├── 20160425114245223big.jpg │ │ ├── 20160425120431425.jpg │ │ ├── 20160425120431425big.jpg │ │ ├── 20160426122355497.jpg │ │ ├── 20160426122355497big.jpg │ │ ├── 20160426122824826.jpg │ │ ├── 20160426122824826big.jpg │ │ ├── 20160427033618200.jpg │ │ ├── 20160427033618200big.jpg │ │ ├── 20160427033905326.jpg │ │ ├── 20160427033905326big.jpg │ │ ├── 20160427034548897.jpg │ │ ├── 20160427034548897big.jpg │ │ ├── 20160427035125214.jpg │ │ ├── 20160427035125214big.jpg │ │ ├── 20160427035715131.jpg │ │ ├── 20160427035715131big.jpg │ │ ├── 20160427040339711.jpg │ │ ├── 20160427040339711big.jpg │ │ ├── 20160427040922558.jpg │ │ ├── 20160427040922558big.jpg │ │ ├── 20160427041547947.jpg │ │ ├── 20160427041547947big.jpg │ │ ├── 20160427041958500.png │ │ ├── 20160427041958500big.png │ │ ├── 20160427042400839.jpg │ │ ├── 20160427042400839big.jpg │ │ ├── 20160427042710404.jpg │ │ ├── 20160427042710404big.jpg │ │ ├── 20160427042909140.jpg │ │ ├── 20160427042909140big.jpg │ │ ├── 20160427043159667.jpg │ │ ├── 20160427043159667big.jpg │ │ ├── 20160427043422112.jpg │ │ ├── 20160427043422112big.jpg │ │ ├── 20160427050149579.jpg │ │ ├── 20160427050149579big.jpg │ │ ├── 20160427053938260.jpg │ │ ├── 20160427053938260big.jpg │ │ ├── 20160427054432242.jpg │ │ └── 20160427054432242big.jpg └── user │ ├── .htaccess │ ├── about.php │ ├── ajaxApi │ ├── checkAnswer.php │ ├── checkLogin.php │ ├── checkRegist.php │ ├── check_message.php │ ├── check_p_lost.php │ ├── check_thx.php │ ├── check_xs.php │ ├── checkpsw.php │ ├── dblog.txt │ ├── delete_lost.php │ ├── getValidation.php │ ├── handle_vd.php │ ├── jianyi.php │ ├── lglog.txt │ ├── reset_lost.php │ ├── reset_user.php │ └── utf8.php │ ├── checkPull.php │ ├── check_rl.php │ ├── detail.php │ ├── edit_lost.php │ ├── exit.php │ ├── index.php │ ├── isLogin.php │ ├── list_announce.php │ ├── list_found.php │ ├── list_lost.php │ ├── list_thank.php │ ├── login.php │ ├── p_lost.php │ ├── regist.php │ ├── search.php │ ├── ucenter.php │ ├── utf8.php │ └── validatorCode.php ├── package.json └── 毕业答辩ppt.pptx /README.md: -------------------------------------------------------------------------------- 1 | 我的毕业设计:校园失物招领系统。 2 | 1、系统环境:php+mysql。 3 | 2、本地数据库data导入data.sql文件。 4 | 3、用户界面:/user。 5 | 4、管理员界面:/admin。 6 | 5、超级管理员账号:admin。 7 | 6、线上地址(用户:http://xiandean.com/graduation/user/ 管理员:http://xiandean.com/graduation/admin/) 8 | -------------------------------------------------------------------------------- /graduation/admin/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Options +FollowSymlinks 3 | RewriteEngine On 4 | 5 | RewriteCond %{REQUEST_FILENAME} !-d 6 | RewriteCond %{REQUEST_FILENAME} !-f 7 | RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L] 8 | -------------------------------------------------------------------------------- /graduation/admin/ajaxApi/checkLogin.php: -------------------------------------------------------------------------------- 1 | getip(); 12 | if(strcasecmp($code,$_SESSION['code'])!=0){ 13 | $data=array("error"=>2,"msg"=>"验证码不正确!"); 14 | echo json_encode($data); 15 | exit; 16 | } 17 | $sql="select id,name,img from admin where name='{$mname}' and password='{$password}'"; 18 | $rs=$db->query($sql); 19 | date_default_timezone_set('PRC'); 20 | if($db->num_rows($rs)<1){ 21 | $data=array("error"=>1,"msg"=>"账户名或密码错误!"); 22 | }else{ 23 | unset($_SESSION['code']); 24 | $userinfo=$db->fetch_array($rs); 25 | $_SESSION['mid']=$userinfo['id']; 26 | $_SESSION['mname']=$userinfo['name']; 27 | if(!$userinfo['img']){ 28 | $mheadImg="upload_img/default.jpg"; 29 | }else{ 30 | $mheadImg=$userinfo['img']; 31 | } 32 | $_SESSION['mheadImg']=$mheadImg; 33 | 34 | $data=array("error"=>0,"msg"=>"登陆成功!"); 35 | fwrite($log,"管理员:".$mname."账户IP:"." $cliendIp "."登录时间:".date("Y-m-d H:i:s")."\r\n"); 36 | } 37 | echo json_encode($data); 38 | /*header('Location:index.php');*/ 39 | 40 | 41 | ?> -------------------------------------------------------------------------------- /graduation/admin/ajaxApi/checkRegist.php: -------------------------------------------------------------------------------- 1 | query($sql); 15 | if($db->num_rows($rs)>0){ 16 | /*echo "";*/ 17 | $data=array("error"=>2,"msg"=>"该账户名已存在!"); 18 | echo json_encode($data); 19 | exit(); 20 | } 21 | if(isset($_SESSION['imgpath']) && $_SESSION['imgpath']){ 22 | unset($_SESSION['imgpath']); 23 | } 24 | $dataArray=array( 'name'=>$name, 'password'=>$password, 'phone'=>$mobile, 'email'=>$email, 'address'=>$address, 'img'=>$img ); 25 | $rs=$db->insert('admin',$dataArray); 26 | 27 | if($rs){ 28 | 29 | /*echo "";*/ 30 | /*header('Location:index.php');*/ 31 | $data=array("error"=>0,"msg"=>"新增成功!"); 32 | echo json_encode($data); 33 | }else{ 34 | /*echo "";*/ 35 | $data=array("error"=>1,"msg"=>"对不起!新增失败!"); 36 | echo json_encode($data); 37 | } 38 | 39 | ?> 40 | -------------------------------------------------------------------------------- /graduation/admin/ajaxApi/check_thx.php: -------------------------------------------------------------------------------- 1 | update('thanks',array("checked"=>1),"t_id in ($ids)"); 10 | if($rs){ 11 | $data=array("error"=>0,"msg"=>"审核成功!"); 12 | echo json_encode($data); 13 | }else{ 14 | $data=array("error"=>1,"msg"=>"审核失败!"); 15 | echo json_encode($data); 16 | } 17 | } 18 | 19 | ?> -------------------------------------------------------------------------------- /graduation/admin/ajaxApi/checkpsw.php: -------------------------------------------------------------------------------- 1 | 2,"msg"=>"请先登陆!"); 8 | }else if(isset($_POST['password'])){ 9 | $mid=$_SESSION['mid']; 10 | $password=md5($_POST['password']); 11 | $sql="select id,name,img from admin where id='{$mid}' and password='{$password}'"; 12 | $rs=$db->query($sql); 13 | if($db->num_rows($rs)<1){ 14 | $data=array("error"=>1,"msg"=>"密码错误!"); 15 | }else{ 16 | $data=array("error"=>0,"msg"=>"密码正确!"); 17 | } 18 | }else if(isset($_POST['password2'])){ 19 | $mid=$_SESSION['mid']; 20 | $password2=md5($_POST['password2']); 21 | $dataArray=array('password'=>$password2); 22 | $rs=$db->update('admin',$dataArray,"id=$mid"); 23 | if($rs){ 24 | $data=array("error"=>0,"msg"=>"修改成功!"); 25 | session_destroy(); 26 | }else{ 27 | $data=array("error"=>1,"msg"=>"修改失败!"); 28 | } 29 | } 30 | echo json_encode($data); 31 | /*header('Location:index.php');*/ 32 | 33 | 34 | ?> -------------------------------------------------------------------------------- /graduation/admin/ajaxApi/lglog.txt: -------------------------------------------------------------------------------- 1 | 管理员:admin账户IP: ::1 登录时间:2016-03-09 18:01:14 2 | 管理员:admin账户IP:::1 登录时间:2016-03-09 18:03:40 3 | 管理员:admin账户IP: ::1 登录时间:2016-03-09 18:44:14 4 | 管理员:admin账户IP: 127.0.0.1 登录时间:2016-03-09 21:52:10 5 | 管理员:admin账户IP: 127.0.0.1 登录时间:2016-03-10 02:24:54 6 | 管理员:admin账户IP: ::1 登录时间:2016-03-10 09:06:37 7 | 管理员:admin账户IP: 127.0.0.1 登录时间:2016-03-10 20:33:13 8 | 管理员:admin账户IP: 127.0.0.1 登录时间:2016-03-12 10:25:16 9 | 管理员:admin账户IP: 127.0.0.1 登录时间:2016-03-12 10:29:02 10 | 管理员:admin账户IP: 127.0.0.1 登录时间:2016-03-12 10:31:11 11 | 管理员:admin账户IP: 127.0.0.1 登录时间:2016-03-12 10:35:15 12 | 管理员:admin账户IP: 127.0.0.1 登录时间:2016-03-14 22:25:37 13 | 管理员:admin账户IP: 127.0.0.1 登录时间:2016-03-15 00:33:19 14 | 管理员:admin账户IP: 127.0.0.1 登录时间:2016-03-15 00:36:46 15 | 管理员:admin账户IP: 127.0.0.1 登录时间:2016-03-15 00:38:32 16 | 管理员:admin账户IP: 127.0.0.1 登录时间:2016-03-15 00:39:19 17 | 管理员:admin账户IP: 127.0.0.1 登录时间:2016-03-15 00:41:00 18 | 管理员:admin账户IP: 127.0.0.1 登录时间:2016-03-15 16:06:56 19 | 管理员:admin账户IP: 127.0.0.1 登录时间:2016-03-16 19:25:07 20 | 管理员:admin账户IP: 127.0.0.1 登录时间:2016-03-16 19:51:35 21 | 管理员:admin账户IP: 127.0.0.1 登录时间:2016-03-16 20:34:06 22 | 管理员:admin账户IP: 127.0.0.1 登录时间:2016-03-19 14:51:08 23 | 管理员:admin账户IP: 127.0.0.1 登录时间:2016-03-21 19:04:28 24 | 管理员:admin账户IP: 127.0.0.1 登录时间:2016-03-24 19:23:48 25 | 管理员:admin账户IP: 127.0.0.1 登录时间:2016-04-24 13:57:38 26 | 管理员:admin账户IP: 127.0.0.1 登录时间:2016-04-25 09:37:10 27 | 管理员:admin账户IP: 127.0.0.1 登录时间:2016-04-27 16:38:48 28 | 管理员:admin账户IP: 127.0.0.1 登录时间:2016-04-27 17:24:23 29 | 管理员:admin账户IP: 127.0.0.1 登录时间:2016-04-27 17:46:56 30 | 管理员:admin账户IP: 127.0.0.1 登录时间:2016-04-27 20:43:15 31 | 管理员:admin账户IP: 127.0.0.1 登录时间:2017-08-21 17:15:16 32 | -------------------------------------------------------------------------------- /graduation/admin/ajaxApi/m_reset.php: -------------------------------------------------------------------------------- 1 | $name, 'phone'=>$mobile, 'email'=>$email, 'address'=>$address, 'img'=>$img ); 17 | if(isset($_GET['id'])){ 18 | $mid=$_GET['id']; 19 | }else{ 20 | $mid=$_SESSION['mid']; 21 | } 22 | 23 | $rs=$db->update('admin',$dataArray,"id={$mid}"); 24 | 25 | if($rs){ 26 | /*echo "";*/ 27 | /*header('Location:index.php');*/ 28 | $data=array("error"=>0,"msg"=>"修改成功!"); 29 | if($mid==$_SESSION['mid']){ 30 | $_SESSION['mname']=$name; 31 | if($img) $_SESSION['mheadImg']=$img; 32 | } 33 | 34 | echo json_encode($data); 35 | }else{ 36 | /*echo "";*/ 37 | $data=array("error"=>1,"msg"=>"修改失败!"); 38 | echo json_encode($data); 39 | } 40 | 41 | ?> 42 | -------------------------------------------------------------------------------- /graduation/admin/ajaxApi/u_reset.php: -------------------------------------------------------------------------------- 1 | $name, 'phone'=>$mobile, 'email'=>$email, 'address'=>$address, 'img'=>$img ); 16 | $uid=$_GET['uid']; 17 | $rs=$db->update('user',$dataArray,"id={$uid}"); 18 | 19 | if($rs){ 20 | /*echo "";*/ 21 | /*header('Location:index.php');*/ 22 | $data=array("error"=>0,"msg"=>"修改成功!"); 23 | echo json_encode($data); 24 | }else{ 25 | /*echo "";*/ 26 | $data=array("error"=>1,"msg"=>"修改失败!"); 27 | echo json_encode($data); 28 | } 29 | 30 | ?> 31 | -------------------------------------------------------------------------------- /graduation/admin/exit.php: -------------------------------------------------------------------------------- 1 | 9 | -------------------------------------------------------------------------------- /graduation/admin/index.php: -------------------------------------------------------------------------------- 1 | assign('mid',$mid); 10 | $smarty->assign('mname',$mname); 11 | $smarty->assign('mheadImg',$mheadImg); 12 | $smarty->assign('title','index'); 13 | $smarty->display('admin/index.tpl'); 14 | ?> -------------------------------------------------------------------------------- /graduation/admin/isLogin.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graduation/admin/l_edit.php: -------------------------------------------------------------------------------- 1 | history.back(); "; 8 | exit; 9 | } 10 | require "../common/class/smarty.php"; 11 | require "../common/class/db.php"; 12 | $l_id=$_GET['l_id']; 13 | $type=$_GET['type']; 14 | if($type==0){ 15 | $table='found'; 16 | }else if($type==1){ 17 | $table='lost'; 18 | } 19 | $db=new DB; 20 | $sql="select l_name,l_class,l_feature,l_desc,l_place,l_img,l_date,u_id,u_name,u_phone,u_email,u_address,ct_state,p_date,question,answer,answer_type from $table left join validation on validation.l_id=$table.l_id where $table.l_id=$l_id"; 21 | $lostinfo=$db->get_all($sql); 22 | if(count($lostinfo)<1){ 23 | //echo ""; 24 | exit; 25 | } 26 | $smarty=new SmartyProject(); 27 | $smarty->assign('mid',$mid); 28 | $smarty->assign('l_id',$l_id); 29 | $smarty->assign('type',$type); 30 | $smarty->assign('mname',$mname); 31 | $smarty->assign('mheadImg',$mheadImg); 32 | $smarty->assign('lostinfo',$lostinfo); 33 | $smarty->assign('title','list'); 34 | $smarty->display('admin/l_edit.tpl'); 35 | ?> -------------------------------------------------------------------------------- /graduation/admin/m_add.php: -------------------------------------------------------------------------------- 1 | $table, #(必须) 18 | 'pageNow' =>$pageNow, #(必须) 19 | 'pageRows' =>10, #(可选) 默认为15 20 | 'order'=>'id' 21 | ); 22 | 23 | $sepPage = new page($params); 24 | $page=$sepPage->showData(); 25 | $smarty->assign('page',$page); 26 | $smarty->assign('title','m_list'); 27 | // print_r($page); 28 | $smarty->assign('mid',$mid); 29 | $smarty->assign('mname',$mname); 30 | $smarty->assign('mheadImg',$mheadImg); 31 | $smarty->display('admin/m_add.tpl'); 32 | ?> -------------------------------------------------------------------------------- /graduation/admin/m_edit.php: -------------------------------------------------------------------------------- 1 | get_one($sql); 15 | if($rs){ 16 | $m=$rs; 17 | }else{ 18 | $m=''; 19 | } 20 | $smarty=new SmartyProject(); 21 | $smarty->assign('mid',$mid); 22 | $smarty->assign('mname',$mname); 23 | $smarty->assign('mheadImg',$mheadImg); 24 | $smarty->assign('m',$m); 25 | $smarty->assign('title','m_list'); 26 | $smarty->display('admin/m_edit.tpl'); 27 | ?> -------------------------------------------------------------------------------- /graduation/admin/m_login.php: -------------------------------------------------------------------------------- 1 | assign('mid',$mid); 10 | // $smarty->assign('mname',$mname); 11 | // $smarty->assign('mheadImg',$mheadImg); 12 | $smarty->display('admin/m_login.tpl'); 13 | ?> -------------------------------------------------------------------------------- /graduation/admin/n_edit.php: -------------------------------------------------------------------------------- 1 | update('announce',array('title'=>$_POST['title'],'context'=>$_POST['content']),"a_id=$id"); 13 | } 14 | $sql="select * from announce where a_id=$id"; 15 | $rs=$db->get_one($sql); 16 | if($rs){ 17 | $a=$rs; 18 | }else{ 19 | $a=''; 20 | } 21 | $smarty=new SmartyProject(); 22 | $smarty->assign('mid',$mid); 23 | $smarty->assign('mname',$mname); 24 | $smarty->assign('mheadImg',$mheadImg); 25 | $smarty->assign('a',$a); 26 | $smarty->assign('title','note'); 27 | $smarty->display('admin/n_edit.tpl'); 28 | ?> -------------------------------------------------------------------------------- /graduation/admin/p_note.php: -------------------------------------------------------------------------------- 1 | insert('announce',array('title'=>$_POST['title'],'context'=>$_POST['content'],'p_date'=>$p_date,'u_name'=>$mname)); 11 | if($rs){ 12 | header('location: n_list.php'); 13 | } 14 | } 15 | $smarty=new SmartyProject(); 16 | $smarty->assign('mid',$mid); 17 | $smarty->assign('mname',$mname); 18 | $smarty->assign('mheadImg',$mheadImg); 19 | $smarty->assign('title','note'); 20 | $smarty->display('admin/p_note.tpl'); 21 | ?> -------------------------------------------------------------------------------- /graduation/admin/u_edit.php: -------------------------------------------------------------------------------- 1 | get_one($sql); 13 | if($rs){ 14 | $u=$rs; 15 | }else{ 16 | $u=''; 17 | } 18 | $smarty=new SmartyProject(); 19 | $smarty->assign('mid',$mid); 20 | $smarty->assign('mname',$mname); 21 | $smarty->assign('mheadImg',$mheadImg); 22 | $smarty->assign('u',$u); 23 | $smarty->assign('title','u_list'); 24 | $smarty->display('admin/u_edit.tpl'); 25 | ?> -------------------------------------------------------------------------------- /graduation/admin/utf8.php: -------------------------------------------------------------------------------- 1 | "; 22 | }else{ 23 | $dirname = $basedir."/".$file; 24 | checkdir($dirname); 25 | } 26 | } 27 | } 28 | closedir($dh); 29 | } 30 | } 31 | 32 | function checkBOM ($filename) { 33 | global $auto; 34 | $contents = file_get_contents($filename); 35 | $charset[1] = substr($contents, 0, 1); 36 | $charset[2] = substr($contents, 1, 1); 37 | $charset[3] = substr($contents, 2, 1); 38 | if (ord($charset[1]) == 239 && ord($charset[2]) == 187 && ord($charset[3]) == 191) { 39 | if ($auto == 1) { 40 | $rest = substr($contents, 3); 41 | rewrite ($filename, $rest); 42 | return ("BOM found, automatically removed."); 43 | } else { 44 | return ("BOM found."); 45 | } 46 | } 47 | else return ("BOM Not Found."); 48 | } 49 | 50 | function rewrite ($filename, $data) { 51 | $filenum = fopen($filename, "w"); 52 | flock($filenum, LOCK_EX); 53 | fwrite($filenum, $data); 54 | fclose($filenum); 55 | } 56 | ?> 57 | -------------------------------------------------------------------------------- /graduation/admin/validatorCode.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graduation/common/Smarty/internals/core.assign_smarty_interface.php: -------------------------------------------------------------------------------- 1 | 12 | * Name: assign_smarty_interface
13 | * Purpose: assign the $smarty interface variable 14 | * @param array Format: null 15 | * @param Smarty 16 | */ 17 | function smarty_core_assign_smarty_interface($params, &$smarty) 18 | { 19 | if (isset($smarty->_smarty_vars) && isset($smarty->_smarty_vars['request'])) { 20 | return; 21 | } 22 | 23 | $_globals_map = array('g' => 'HTTP_GET_VARS', 24 | 'p' => 'HTTP_POST_VARS', 25 | 'c' => 'HTTP_COOKIE_VARS', 26 | 's' => 'HTTP_SERVER_VARS', 27 | 'e' => 'HTTP_ENV_VARS'); 28 | 29 | $_smarty_vars_request = array(); 30 | 31 | foreach (preg_split('!!', strtolower($smarty->request_vars_order)) as $_c) { 32 | if (isset($_globals_map[$_c])) { 33 | $_smarty_vars_request = array_merge($_smarty_vars_request, $GLOBALS[$_globals_map[$_c]]); 34 | } 35 | } 36 | $_smarty_vars_request = @array_merge($_smarty_vars_request, $GLOBALS['HTTP_SESSION_VARS']); 37 | 38 | $smarty->_smarty_vars['request'] = $_smarty_vars_request; 39 | } 40 | 41 | /* vim: set expandtab: */ 42 | 43 | ?> 44 | -------------------------------------------------------------------------------- /graduation/common/Smarty/internals/core.get_include_path.php: -------------------------------------------------------------------------------- 1 | 45 | -------------------------------------------------------------------------------- /graduation/common/Smarty/internals/core.get_microtime.php: -------------------------------------------------------------------------------- 1 | 24 | -------------------------------------------------------------------------------- /graduation/common/Smarty/internals/core.is_trusted.php: -------------------------------------------------------------------------------- 1 | trusted_dir)) { 23 | $_rp = realpath($params['resource_name']); 24 | foreach ((array)$smarty->trusted_dir as $curr_dir) { 25 | if (!empty($curr_dir) && is_readable ($curr_dir)) { 26 | $_cd = realpath($curr_dir); 27 | if (strncmp($_rp, $_cd, strlen($_cd)) == 0 28 | && substr($_rp, strlen($_cd), 1) == DIRECTORY_SEPARATOR ) { 29 | $_smarty_trusted = true; 30 | break; 31 | } 32 | } 33 | } 34 | } 35 | 36 | } else { 37 | // resource is not on local file system 38 | $_smarty_trusted = call_user_func_array($smarty->_plugins['resource'][$params['resource_type']][0][3], 39 | array($params['resource_name'], $smarty)); 40 | } 41 | 42 | return $_smarty_trusted; 43 | } 44 | 45 | /* vim: set expandtab: */ 46 | 47 | ?> 48 | -------------------------------------------------------------------------------- /graduation/common/Smarty/internals/core.process_compiled_include.php: -------------------------------------------------------------------------------- 1 | _cache_including; 20 | $smarty->_cache_including = true; 21 | 22 | $_return = $params['results']; 23 | 24 | foreach ($smarty->_cache_info['cache_serials'] as $_include_file_path=>$_cache_serial) { 25 | $smarty->_include($_include_file_path, true); 26 | } 27 | 28 | foreach ($smarty->_cache_info['cache_serials'] as $_include_file_path=>$_cache_serial) { 29 | $_return = preg_replace_callback('!(\{nocache\:('.$_cache_serial.')#(\d+)\})!s', 30 | array(&$smarty, '_process_compiled_include_callback'), 31 | $_return); 32 | } 33 | $smarty->_cache_including = $_cache_including; 34 | return $_return; 35 | } 36 | 37 | ?> 38 | -------------------------------------------------------------------------------- /graduation/common/Smarty/internals/core.write_compiled_resource.php: -------------------------------------------------------------------------------- 1 | compile_dir)) { 18 | // compile_dir not writable, see if it exists 19 | if(!@is_dir($smarty->compile_dir)) { 20 | $smarty->trigger_error('the $compile_dir \'' . $smarty->compile_dir . '\' does not exist, or is not a directory.', E_USER_ERROR); 21 | return false; 22 | } 23 | $smarty->trigger_error('unable to write to $compile_dir \'' . realpath($smarty->compile_dir) . '\'. Be sure $compile_dir is writable by the web server user.', E_USER_ERROR); 24 | return false; 25 | } 26 | 27 | $_params = array('filename' => $params['compile_path'], 'contents' => $params['compiled_content'], 'create_dirs' => true); 28 | require_once(SMARTY_CORE_DIR . 'core.write_file.php'); 29 | smarty_core_write_file($_params, $smarty); 30 | return true; 31 | } 32 | 33 | /* vim: set expandtab: */ 34 | 35 | ?> 36 | -------------------------------------------------------------------------------- /graduation/common/Smarty/plugins/compiler.assign.php: -------------------------------------------------------------------------------- 1 | 12 | * Name: assign
13 | * Purpose: assign a value to a template variable 14 | * @link http://smarty.php.net/manual/en/language.custom.functions.php#LANGUAGE.FUNCTION.ASSIGN {assign} 15 | * (Smarty online manual) 16 | * @author Monte Ohrt (initial author) 17 | * @author messju mohr (conversion to compiler function) 18 | * @param string containing var-attribute and value-attribute 19 | * @param Smarty_Compiler 20 | */ 21 | function smarty_compiler_assign($tag_attrs, &$compiler) 22 | { 23 | $_params = $compiler->_parse_attrs($tag_attrs); 24 | 25 | if (!isset($_params['var'])) { 26 | $compiler->_syntax_error("assign: missing 'var' parameter", E_USER_WARNING); 27 | return; 28 | } 29 | 30 | if (!isset($_params['value'])) { 31 | $compiler->_syntax_error("assign: missing 'value' parameter", E_USER_WARNING); 32 | return; 33 | } 34 | 35 | return "\$this->assign({$_params['var']}, {$_params['value']});"; 36 | } 37 | 38 | /* vim: set expandtab: */ 39 | 40 | ?> 41 | -------------------------------------------------------------------------------- /graduation/common/Smarty/plugins/function.assign_debug_info.php: -------------------------------------------------------------------------------- 1 | 12 | * Name: assign_debug_info
13 | * Purpose: assign debug info to the template
14 | * @author Monte Ohrt 15 | * @param array unused in this plugin, this plugin uses {@link Smarty::$_config}, 16 | * {@link Smarty::$_tpl_vars} and {@link Smarty::$_smarty_debug_info} 17 | * @param Smarty 18 | */ 19 | function smarty_function_assign_debug_info($params, &$smarty) 20 | { 21 | $assigned_vars = $smarty->_tpl_vars; 22 | ksort($assigned_vars); 23 | if (@is_array($smarty->_config[0])) { 24 | $config_vars = $smarty->_config[0]; 25 | ksort($config_vars); 26 | $smarty->assign("_debug_config_keys", array_keys($config_vars)); 27 | $smarty->assign("_debug_config_vals", array_values($config_vars)); 28 | } 29 | 30 | $included_templates = $smarty->_smarty_debug_info; 31 | 32 | $smarty->assign("_debug_keys", array_keys($assigned_vars)); 33 | $smarty->assign("_debug_vals", array_values($assigned_vars)); 34 | 35 | $smarty->assign("_debug_tpls", $included_templates); 36 | } 37 | 38 | /* vim: set expandtab: */ 39 | 40 | ?> 41 | -------------------------------------------------------------------------------- /graduation/common/Smarty/plugins/function.debug.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: debug
14 | * Date: July 1, 2002
15 | * Purpose: popup debug window 16 | * @link http://smarty.php.net/manual/en/language.function.debug.php {debug} 17 | * (Smarty online manual) 18 | * @author Monte Ohrt 19 | * @version 1.0 20 | * @param array 21 | * @param Smarty 22 | * @return string output from {@link Smarty::_generate_debug_output()} 23 | */ 24 | function smarty_function_debug($params, &$smarty) 25 | { 26 | if (isset($params['output'])) { 27 | $smarty->assign('_smarty_debug_output', $params['output']); 28 | } 29 | require_once(SMARTY_CORE_DIR . 'core.display_debug_console.php'); 30 | return smarty_core_display_debug_console(null, $smarty); 31 | } 32 | 33 | /* vim: set expandtab: */ 34 | 35 | ?> 36 | -------------------------------------------------------------------------------- /graduation/common/Smarty/plugins/function.eval.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: eval
14 | * Purpose: evaluate a template variable as a template
15 | * @link http://smarty.php.net/manual/en/language.function.eval.php {eval} 16 | * (Smarty online manual) 17 | * @author Monte Ohrt 18 | * @param array 19 | * @param Smarty 20 | */ 21 | function smarty_function_eval($params, &$smarty) 22 | { 23 | 24 | if (!isset($params['var'])) { 25 | $smarty->trigger_error("eval: missing 'var' parameter"); 26 | return; 27 | } 28 | 29 | if($params['var'] == '') { 30 | return; 31 | } 32 | 33 | $smarty->_compile_source('evaluated template', $params['var'], $_var_compiled); 34 | 35 | ob_start(); 36 | $smarty->_eval('?>' . $_var_compiled); 37 | $_contents = ob_get_contents(); 38 | ob_end_clean(); 39 | 40 | if (!empty($params['assign'])) { 41 | $smarty->assign($params['assign'], $_contents); 42 | } else { 43 | return $_contents; 44 | } 45 | } 46 | 47 | /* vim: set expandtab: */ 48 | 49 | ?> 50 | -------------------------------------------------------------------------------- /graduation/common/Smarty/plugins/function.popup_init.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: popup_init
14 | * Purpose: initialize overlib 15 | * @link http://smarty.php.net/manual/en/language.function.popup.init.php {popup_init} 16 | * (Smarty online manual) 17 | * @author Monte Ohrt 18 | * @param array 19 | * @param Smarty 20 | * @return string 21 | */ 22 | function smarty_function_popup_init($params, &$smarty) 23 | { 24 | $zindex = 1000; 25 | 26 | if (!empty($params['zindex'])) { 27 | $zindex = $params['zindex']; 28 | } 29 | 30 | if (!empty($params['src'])) { 31 | return '' . "\n" 32 | . '' . "\n"; 33 | } else { 34 | $smarty->trigger_error("popup_init: missing src parameter"); 35 | } 36 | } 37 | 38 | /* vim: set expandtab: */ 39 | 40 | ?> 41 | -------------------------------------------------------------------------------- /graduation/common/Smarty/plugins/modifier.capitalize.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: capitalize
14 | * Purpose: capitalize words in the string 15 | * @link http://smarty.php.net/manual/en/language.modifiers.php#LANGUAGE.MODIFIER.CAPITALIZE 16 | * capitalize (Smarty online manual) 17 | * @author Monte Ohrt 18 | * @param string 19 | * @return string 20 | */ 21 | function smarty_modifier_capitalize($string, $uc_digits = false) 22 | { 23 | smarty_modifier_capitalize_ucfirst(null, $uc_digits); 24 | return preg_replace_callback('!\'?\b\w(\w|\')*\b!', 'smarty_modifier_capitalize_ucfirst', $string); 25 | } 26 | 27 | function smarty_modifier_capitalize_ucfirst($string, $uc_digits = null) 28 | { 29 | static $_uc_digits = false; 30 | 31 | if(isset($uc_digits)) { 32 | $_uc_digits = $uc_digits; 33 | return; 34 | } 35 | 36 | if(substr($string[0],0,1) != "'" && !preg_match("!\d!",$string[0]) || $_uc_digits) 37 | return ucfirst($string[0]); 38 | else 39 | return $string[0]; 40 | } 41 | 42 | 43 | ?> 44 | -------------------------------------------------------------------------------- /graduation/common/Smarty/plugins/modifier.cat.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: cat
14 | * Date: Feb 24, 2003 15 | * Purpose: catenate a value to a variable 16 | * Input: string to catenate 17 | * Example: {$var|cat:"foo"} 18 | * @link http://smarty.php.net/manual/en/language.modifier.cat.php cat 19 | * (Smarty online manual) 20 | * @author Monte Ohrt 21 | * @version 1.0 22 | * @param string 23 | * @param string 24 | * @return string 25 | */ 26 | function smarty_modifier_cat($string, $cat) 27 | { 28 | return $string . $cat; 29 | } 30 | 31 | /* vim: set expandtab: */ 32 | 33 | ?> 34 | -------------------------------------------------------------------------------- /graduation/common/Smarty/plugins/modifier.count_characters.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: count_characteres
14 | * Purpose: count the number of characters in a text 15 | * @link http://smarty.php.net/manual/en/language.modifier.count.characters.php 16 | * count_characters (Smarty online manual) 17 | * @author Monte Ohrt 18 | * @param string 19 | * @param boolean include whitespace in the character count 20 | * @return integer 21 | */ 22 | function smarty_modifier_count_characters($string, $include_spaces = false) 23 | { 24 | if ($include_spaces) 25 | return(strlen($string)); 26 | 27 | return preg_match_all("/[^\s]/",$string, $match); 28 | } 29 | 30 | /* vim: set expandtab: */ 31 | 32 | ?> 33 | -------------------------------------------------------------------------------- /graduation/common/Smarty/plugins/modifier.count_paragraphs.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: count_paragraphs
14 | * Purpose: count the number of paragraphs in a text 15 | * @link http://smarty.php.net/manual/en/language.modifier.count.paragraphs.php 16 | * count_paragraphs (Smarty online manual) 17 | * @author Monte Ohrt 18 | * @param string 19 | * @return integer 20 | */ 21 | function smarty_modifier_count_paragraphs($string) 22 | { 23 | // count \r or \n characters 24 | return count(preg_split('/[\r\n]+/', $string)); 25 | } 26 | 27 | /* vim: set expandtab: */ 28 | 29 | ?> 30 | -------------------------------------------------------------------------------- /graduation/common/Smarty/plugins/modifier.count_sentences.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: count_sentences 14 | * Purpose: count the number of sentences in a text 15 | * @link http://smarty.php.net/manual/en/language.modifier.count.paragraphs.php 16 | * count_sentences (Smarty online manual) 17 | * @author Monte Ohrt 18 | * @param string 19 | * @return integer 20 | */ 21 | function smarty_modifier_count_sentences($string) 22 | { 23 | // find periods with a word before but not after. 24 | return preg_match_all('/[^\s]\.(?!\w)/', $string, $match); 25 | } 26 | 27 | /* vim: set expandtab: */ 28 | 29 | ?> 30 | -------------------------------------------------------------------------------- /graduation/common/Smarty/plugins/modifier.count_words.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: count_words
14 | * Purpose: count the number of words in a text 15 | * @link http://smarty.php.net/manual/en/language.modifier.count.words.php 16 | * count_words (Smarty online manual) 17 | * @author Monte Ohrt 18 | * @param string 19 | * @return integer 20 | */ 21 | function smarty_modifier_count_words($string) 22 | { 23 | // split text by ' ',\r,\n,\f,\t 24 | $split_array = preg_split('/\s+/',$string); 25 | // count matches that contain alphanumerics 26 | $word_count = preg_grep('/[a-zA-Z0-9\\x80-\\xff]/', $split_array); 27 | 28 | return count($word_count); 29 | } 30 | 31 | /* vim: set expandtab: */ 32 | 33 | ?> 34 | -------------------------------------------------------------------------------- /graduation/common/Smarty/plugins/modifier.default.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: default
14 | * Purpose: designate default value for empty variables 15 | * @link http://smarty.php.net/manual/en/language.modifier.default.php 16 | * default (Smarty online manual) 17 | * @author Monte Ohrt 18 | * @param string 19 | * @param string 20 | * @return string 21 | */ 22 | function smarty_modifier_default($string, $default = '') 23 | { 24 | if (!isset($string) || $string === '') 25 | return $default; 26 | else 27 | return $string; 28 | } 29 | 30 | /* vim: set expandtab: */ 31 | 32 | ?> 33 | -------------------------------------------------------------------------------- /graduation/common/Smarty/plugins/modifier.indent.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: indent
14 | * Purpose: indent lines of text 15 | * @link http://smarty.php.net/manual/en/language.modifier.indent.php 16 | * indent (Smarty online manual) 17 | * @author Monte Ohrt 18 | * @param string 19 | * @param integer 20 | * @param string 21 | * @return string 22 | */ 23 | function smarty_modifier_indent($string,$chars=4,$char=" ") 24 | { 25 | return preg_replace('!^!m',str_repeat($char,$chars),$string); 26 | } 27 | 28 | ?> 29 | -------------------------------------------------------------------------------- /graduation/common/Smarty/plugins/modifier.lower.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: lower
14 | * Purpose: convert string to lowercase 15 | * @link http://smarty.php.net/manual/en/language.modifier.lower.php 16 | * lower (Smarty online manual) 17 | * @author Monte Ohrt 18 | * @param string 19 | * @return string 20 | */ 21 | function smarty_modifier_lower($string) 22 | { 23 | return strtolower($string); 24 | } 25 | 26 | ?> 27 | -------------------------------------------------------------------------------- /graduation/common/Smarty/plugins/modifier.nl2br.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: nl2br
14 | * Date: Feb 26, 2003 15 | * Purpose: convert \r\n, \r or \n to <
> 16 | * Input:
17 | * - contents = contents to replace 18 | * - preceed_test = if true, includes preceeding break tags 19 | * in replacement 20 | * Example: {$text|nl2br} 21 | * @link http://smarty.php.net/manual/en/language.modifier.nl2br.php 22 | * nl2br (Smarty online manual) 23 | * @version 1.0 24 | * @author Monte Ohrt 25 | * @param string 26 | * @return string 27 | */ 28 | function smarty_modifier_nl2br($string) 29 | { 30 | return nl2br($string); 31 | } 32 | 33 | /* vim: set expandtab: */ 34 | 35 | ?> 36 | -------------------------------------------------------------------------------- /graduation/common/Smarty/plugins/modifier.regex_replace.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: regex_replace
14 | * Purpose: regular expression search/replace 15 | * @link http://smarty.php.net/manual/en/language.modifier.regex.replace.php 16 | * regex_replace (Smarty online manual) 17 | * @author Monte Ohrt 18 | * @param string 19 | * @param string|array 20 | * @param string|array 21 | * @return string 22 | */ 23 | function smarty_modifier_regex_replace($string, $search, $replace) 24 | { 25 | if(is_array($search)) { 26 | foreach($search as $idx => $s) 27 | $search[$idx] = _smarty_regex_replace_check($s); 28 | } else { 29 | $search = _smarty_regex_replace_check($search); 30 | } 31 | 32 | return preg_replace($search, $replace, $string); 33 | } 34 | 35 | function _smarty_regex_replace_check($search) 36 | { 37 | if (($pos = strpos($search,"\0")) !== false) 38 | $search = substr($search,0,$pos); 39 | if (preg_match('!([a-zA-Z\s]+)$!s', $search, $match) && (strpos($match[1], 'e') !== false)) { 40 | /* remove eval-modifier from $search */ 41 | $search = substr($search, 0, -strlen($match[1])) . preg_replace('![e\s]+!', '', $match[1]); 42 | } 43 | return $search; 44 | } 45 | 46 | /* vim: set expandtab: */ 47 | 48 | ?> 49 | -------------------------------------------------------------------------------- /graduation/common/Smarty/plugins/modifier.replace.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: replace
14 | * Purpose: simple search/replace 15 | * @link http://smarty.php.net/manual/en/language.modifier.replace.php 16 | * replace (Smarty online manual) 17 | * @author Monte Ohrt 18 | * @param string 19 | * @param string 20 | * @param string 21 | * @return string 22 | */ 23 | function smarty_modifier_replace($string, $search, $replace) 24 | { 25 | return str_replace($search, $replace, $string); 26 | } 27 | 28 | /* vim: set expandtab: */ 29 | 30 | ?> 31 | -------------------------------------------------------------------------------- /graduation/common/Smarty/plugins/modifier.spacify.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: spacify
14 | * Purpose: add spaces between characters in a string 15 | * @link http://smarty.php.net/manual/en/language.modifier.spacify.php 16 | * spacify (Smarty online manual) 17 | * @author Monte Ohrt 18 | * @param string 19 | * @param string 20 | * @return string 21 | */ 22 | function smarty_modifier_spacify($string, $spacify_char = ' ') 23 | { 24 | return implode($spacify_char, 25 | preg_split('//', $string, -1, PREG_SPLIT_NO_EMPTY)); 26 | } 27 | 28 | /* vim: set expandtab: */ 29 | 30 | ?> 31 | -------------------------------------------------------------------------------- /graduation/common/Smarty/plugins/modifier.string_format.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: string_format
14 | * Purpose: format strings via sprintf 15 | * @link http://smarty.php.net/manual/en/language.modifier.string.format.php 16 | * string_format (Smarty online manual) 17 | * @author Monte Ohrt 18 | * @param string 19 | * @param string 20 | * @return string 21 | */ 22 | function smarty_modifier_string_format($string, $format) 23 | { 24 | return sprintf($format, $string); 25 | } 26 | 27 | /* vim: set expandtab: */ 28 | 29 | ?> 30 | -------------------------------------------------------------------------------- /graduation/common/Smarty/plugins/modifier.strip.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: strip
14 | * Purpose: Replace all repeated spaces, newlines, tabs 15 | * with a single space or supplied replacement string.
16 | * Example: {$var|strip} {$var|strip:" "} 17 | * Date: September 25th, 2002 18 | * @link http://smarty.php.net/manual/en/language.modifier.strip.php 19 | * strip (Smarty online manual) 20 | * @author Monte Ohrt 21 | * @version 1.0 22 | * @param string 23 | * @param string 24 | * @return string 25 | */ 26 | function smarty_modifier_strip($text, $replace = ' ') 27 | { 28 | return preg_replace('!\s+!', $replace, $text); 29 | } 30 | 31 | /* vim: set expandtab: */ 32 | 33 | ?> 34 | -------------------------------------------------------------------------------- /graduation/common/Smarty/plugins/modifier.strip_tags.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: strip_tags
14 | * Purpose: strip html tags from text 15 | * @link http://smarty.php.net/manual/en/language.modifier.strip.tags.php 16 | * strip_tags (Smarty online manual) 17 | * @author Monte Ohrt 18 | * @param string 19 | * @param boolean 20 | * @return string 21 | */ 22 | function smarty_modifier_strip_tags($string, $replace_with_space = true) 23 | { 24 | if ($replace_with_space) 25 | return preg_replace('!<[^>]*?>!', ' ', $string); 26 | else 27 | return strip_tags($string); 28 | } 29 | 30 | /* vim: set expandtab: */ 31 | 32 | ?> 33 | -------------------------------------------------------------------------------- /graduation/common/Smarty/plugins/modifier.truncate.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: truncate
14 | * Purpose: Truncate a string to a certain length if necessary, 15 | * optionally splitting in the middle of a word, and 16 | * appending the $etc string or inserting $etc into the middle. 17 | * @link http://smarty.php.net/manual/en/language.modifier.truncate.php 18 | * truncate (Smarty online manual) 19 | * @author Monte Ohrt 20 | * @param string 21 | * @param integer 22 | * @param string 23 | * @param boolean 24 | * @param boolean 25 | * @return string 26 | */ 27 | function smarty_modifier_truncate($string, $length = 80, $etc = '...', 28 | $break_words = false, $middle = false) 29 | { 30 | if ($length == 0) 31 | return ''; 32 | 33 | if (strlen($string) > $length) { 34 | $length -= min($length, strlen($etc)); 35 | if (!$break_words && !$middle) { 36 | $string = preg_replace('/\s+?(\S+)?$/', '', substr($string, 0, $length+1)); 37 | } 38 | if(!$middle) { 39 | return substr($string, 0, $length) . $etc; 40 | } else { 41 | return substr($string, 0, $length/2) . $etc . substr($string, -$length/2); 42 | } 43 | } else { 44 | return $string; 45 | } 46 | } 47 | 48 | /* vim: set expandtab: */ 49 | 50 | ?> 51 | -------------------------------------------------------------------------------- /graduation/common/Smarty/plugins/modifier.upper.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: upper
14 | * Purpose: convert string to uppercase 15 | * @link http://smarty.php.net/manual/en/language.modifier.upper.php 16 | * upper (Smarty online manual) 17 | * @author Monte Ohrt 18 | * @param string 19 | * @return string 20 | */ 21 | function smarty_modifier_upper($string) 22 | { 23 | return strtoupper($string); 24 | } 25 | 26 | ?> 27 | -------------------------------------------------------------------------------- /graduation/common/Smarty/plugins/modifier.wordwrap.php: -------------------------------------------------------------------------------- 1 | 13 | * Name: wordwrap
14 | * Purpose: wrap a string of text at a given length 15 | * @link http://smarty.php.net/manual/en/language.modifier.wordwrap.php 16 | * wordwrap (Smarty online manual) 17 | * @author Monte Ohrt 18 | * @param string 19 | * @param integer 20 | * @param string 21 | * @param boolean 22 | * @return string 23 | */ 24 | function smarty_modifier_wordwrap($string,$length=80,$break="\n",$cut=false) 25 | { 26 | return wordwrap($string,$length,$break,$cut); 27 | } 28 | 29 | ?> 30 | -------------------------------------------------------------------------------- /graduation/common/Smarty/plugins/shared.escape_special_chars.php: -------------------------------------------------------------------------------- 1 | 13 | * Purpose: used by other smarty functions to escape 14 | * special chars except for already escaped ones 15 | * @author Monte Ohrt 16 | * @param string 17 | * @return string 18 | */ 19 | function smarty_function_escape_special_chars($string) 20 | { 21 | if(!is_array($string)) { 22 | $string = preg_replace('!&(#?\w+);!', '%%%SMARTY_START%%%\\1%%%SMARTY_END%%%', $string); 23 | $string = htmlspecialchars($string); 24 | $string = str_replace(array('%%%SMARTY_START%%%','%%%SMARTY_END%%%'), array('&',';'), $string); 25 | } 26 | return $string; 27 | } 28 | 29 | /* vim: set expandtab: */ 30 | 31 | ?> 32 | -------------------------------------------------------------------------------- /graduation/common/Smarty/plugins/shared.make_timestamp.php: -------------------------------------------------------------------------------- 1 | 11 | * Purpose: used by other smarty functions to make a timestamp 12 | * from a string. 13 | * @author Monte Ohrt 14 | * @param string 15 | * @return string 16 | */ 17 | function smarty_make_timestamp($string) 18 | { 19 | if(empty($string)) { 20 | // use "now": 21 | $time = time(); 22 | 23 | } elseif (preg_match('/^\d{14}$/', $string)) { 24 | // it is mysql timestamp format of YYYYMMDDHHMMSS? 25 | $time = mktime(substr($string, 8, 2),substr($string, 10, 2),substr($string, 12, 2), 26 | substr($string, 4, 2),substr($string, 6, 2),substr($string, 0, 4)); 27 | 28 | } elseif (is_numeric($string)) { 29 | // it is a numeric string, we handle it as timestamp 30 | $time = (int)$string; 31 | 32 | } else { 33 | // strtotime should handle it 34 | $time = strtotime($string); 35 | if ($time == -1 || $time === false) { 36 | // strtotime() was not able to parse $string, use "now": 37 | $time = time(); 38 | } 39 | } 40 | return $time; 41 | 42 | } 43 | 44 | /* vim: set expandtab: */ 45 | 46 | ?> 47 | -------------------------------------------------------------------------------- /graduation/common/class/pscws4/etc/dict.utf8.xdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/class/pscws4/etc/dict.utf8.xdb -------------------------------------------------------------------------------- /graduation/common/class/pscws4/etc/rules.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/class/pscws4/etc/rules.ini -------------------------------------------------------------------------------- /graduation/common/class/scws.php: -------------------------------------------------------------------------------- 1 | set_charset('utf-8'); 20 | $cws -> set_dict('../common/class/pscws4/etc/dict.utf8.xdb'); 21 | $cws -> set_rule('../common/class/pscws4/etc/rules.utf8.ini'); 22 | //$cws->set_multi(3); 23 | $cws -> set_ignore(true); 24 | //$cws->set_debug(true); 25 | //$cws->set_duality(true); 26 | 27 | $cws -> send_text($text); 28 | 29 | $result = null; 30 | while($ret = $cws -> get_result()){ 31 | foreach ($ret as $value) { 32 | if (false === $return_array) { 33 | $result .= $sep . $value['word']; 34 | } else { 35 | $result[] = $value['word']; 36 | } 37 | } 38 | } 39 | 40 | return false === $return_array ? substr($result, 1) : $result; 41 | } 42 | // print_r(scws('iphone5手机')); -------------------------------------------------------------------------------- /graduation/common/class/smarty.php: -------------------------------------------------------------------------------- 1 | template_dir="../common/templates"; 8 | $this->compile_dir="../common/templates_c/"; 9 | $this->config_dir="../common/configs/"; 10 | $this->cache_dir="../common/cache"; 11 | } 12 | } 13 | ?> -------------------------------------------------------------------------------- /graduation/common/configs/config.db.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graduation/common/configs/config.upload.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /graduation/common/templates/admin/js/Date/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | var $lang={errAlertMsg:"\u4E0D\u5408\u6CD5\u7684\u65E5\u671F\u683C\u5F0F\u6216\u8005\u65E5\u671F\u8D85\u51FA\u9650\u5B9A\u8303\u56F4,\u9700\u8981\u64A4\u9500\u5417?",aWeekStr:["\u5468","\u65E5","\u4E00","\u4E8C","\u4E09","\u56DB","\u4E94","\u516D"],aLongWeekStr:["\u5468","\u661F\u671F\u65E5","\u661F\u671F\u4E00","\u661F\u671F\u4E8C","\u661F\u671F\u4E09","\u661F\u671F\u56DB","\u661F\u671F\u4E94","\u661F\u671F\u516D"],aMonStr:["\u4E00\u6708","\u4E8C\u6708","\u4E09\u6708","\u56DB\u6708","\u4E94\u6708","\u516D\u6708","\u4E03\u6708","\u516B\u6708","\u4E5D\u6708","\u5341\u6708","\u5341\u4E00","\u5341\u4E8C"],aLongMonStr:["\u4E00\u6708","\u4E8C\u6708","\u4E09\u6708","\u56DB\u6708","\u4E94\u6708","\u516D\u6708","\u4E03\u6708","\u516B\u6708","\u4E5D\u6708","\u5341\u6708","\u5341\u4E00\u6708","\u5341\u4E8C\u6708"],clearStr:"\u6E05\u7A7A",todayStr:"\u4ECA\u5929",okStr:"\u786E\u5B9A",updateStr:"\u786E\u5B9A",timeStr:"\u65F6\u95F4",quickStr:"\u5FEB\u901F\u9009\u62E9",err_1:'\u6700\u5C0F\u65E5\u671F\u4E0D\u80FD\u5927\u4E8E\u6700\u5927\u65E5\u671F!'} -------------------------------------------------------------------------------- /graduation/common/templates/admin/js/Date/skin/WdatePicker.css: -------------------------------------------------------------------------------- 1 | .Wdate{width:100px;border:#999 1px solid;height:20px;background:#fff url(datePicker.gif) no-repeat right;}.WdateFmtErr{font-weight:bold;color:red;} -------------------------------------------------------------------------------- /graduation/common/templates/admin/js/Date/skin/datePicker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/admin/js/Date/skin/datePicker.gif -------------------------------------------------------------------------------- /graduation/common/templates/admin/js/Date/skin/default/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/admin/js/Date/skin/default/img.gif -------------------------------------------------------------------------------- /graduation/common/templates/admin/js/a_list.js: -------------------------------------------------------------------------------- 1 | $(function(){ 2 | // 全选 3 | $(".selectall").bind("click", function () { 4 | $("[name = a[]]:checkbox").attr("checked", true); 5 | }); 6 | 7 | // 全不选 8 | $(".unselect").bind("click", function () { 9 | $("[name = a[]]:checkbox").attr("checked", false); 10 | }); 11 | $('.delete').click(function(){ 12 | var u=$("input:checked"); 13 | var arr=[]; 14 | u.each(function(i){ 15 | arr[i]=$(this).attr('data-mid'); 16 | }); 17 | if(arr.length>0&&(confirm('您确定要删除验证吗?'))){ 18 | var ids=arr.join(','); 19 | $.ajax({ 20 | type:"post", 21 | url:"ajaxApi/delete.php?action=a", 22 | data:{ids:ids}, 23 | dataType:'json', 24 | success:function(data){ 25 | if(data.error==0){ 26 | alert('删除成功!'); 27 | window.location.reload(); 28 | }else if(data.error==1){ 29 | alert('删除失败!'); 30 | 31 | }else if(data.error==10){ 32 | alert(data.msg); 33 | } 34 | }, 35 | error:function(data){ 36 | console.log(data); 37 | } 38 | }); 39 | } 40 | 41 | }); 42 | 43 | $('.submit').click(function(){ 44 | 45 | $('#type').val($("#select1 option:selected").val()); 46 | 47 | }); 48 | }); -------------------------------------------------------------------------------- /graduation/common/templates/admin/js/leave_list.js: -------------------------------------------------------------------------------- 1 | $(function(){ 2 | // 全选 3 | $(".selectall").bind("click", function () { 4 | $("[name = l[]]:checkbox").attr("checked", true); 5 | }); 6 | 7 | // 全不选 8 | $(".unselect").bind("click", function () { 9 | $("[name = l[]]:checkbox").attr("checked", false); 10 | }); 11 | $('.delete').click(function(){ 12 | var u=$("input:checked"); 13 | var arr=[]; 14 | u.each(function(i){ 15 | arr[i]=$(this).attr('data-mid'); 16 | }); 17 | if(arr.length>0&&(confirm('您确定要删除留言吗?'))){ 18 | var ids=arr.join(','); 19 | $.ajax({ 20 | type:"post", 21 | url:"ajaxApi/delete.php?action=leave", 22 | data:{ids:ids}, 23 | dataType:'json', 24 | success:function(data){ 25 | if(data.error==0){ 26 | alert('删除成功!'); 27 | window.location.reload(); 28 | }else if(data.error==1){ 29 | alert('删除失败!'); 30 | 31 | }else if(data.error==10){ 32 | alert(data.msg); 33 | } 34 | }, 35 | error:function(data){ 36 | console.log(data); 37 | } 38 | }); 39 | } 40 | 41 | }); 42 | 43 | $('.submit').click(function(){ 44 | 45 | $('#type').val($("#select1 option:selected").val()); 46 | 47 | }); 48 | }); -------------------------------------------------------------------------------- /graduation/common/templates/admin/js/m_list.js: -------------------------------------------------------------------------------- 1 | $(function(){ 2 | // 全选 3 | $(".selectall").bind("click", function () { 4 | $("[name = m[]]:checkbox").attr("checked", true); 5 | }); 6 | 7 | // 全不选 8 | $(".unselect").bind("click", function () { 9 | $("[name = m[]]:checkbox").attr("checked", false); 10 | }); 11 | $('.delete').click(function(){ 12 | var m=$("input:checked"); 13 | var arr=[]; 14 | m.each(function(i){ 15 | arr[i]=$(this).attr('data-mid'); 16 | }); 17 | if(arr.length>0&&(confirm('您确定要删除管理员吗?'))){ 18 | var ids=arr.join(','); 19 | $.ajax({ 20 | type:"post", 21 | url:"ajaxApi/delete.php?action=m", 22 | data:{ids:ids}, 23 | dataType:'json', 24 | success:function(data){ 25 | if(data.error==0){ 26 | alert('删除成功!'); 27 | window.location.reload(); 28 | }else if(data.error==1){ 29 | alert('删除失败!'); 30 | 31 | }else if(data.error==10){ 32 | alert(data.msg); 33 | } 34 | }, 35 | error:function(data){ 36 | console.log(data); 37 | } 38 | }); 39 | } 40 | 41 | }); 42 | $('.submit').click(function(){ 43 | 44 | $('#type').val($("#select1 option:selected").val()); 45 | 46 | }); 47 | }); -------------------------------------------------------------------------------- /graduation/common/templates/admin/js/n_edit.js: -------------------------------------------------------------------------------- 1 | $('#submit').click(function(){ 2 | var $title=$('input[name="title"]').val(); 3 | var $content=$('textarea[name="content"]').val(); 4 | if($title==''){ 5 | alert('请输入标题!'); 6 | return false; 7 | }else if($content==''){ 8 | alert('请输入内容!'); 9 | return false; 10 | }else if(!confirm('您确定要修改吗?')){ 11 | return false; 12 | } 13 | }); -------------------------------------------------------------------------------- /graduation/common/templates/admin/js/n_list.js: -------------------------------------------------------------------------------- 1 | $(function(){ 2 | // 全选 3 | $(".selectall").bind("click", function () { 4 | $("[name = a[]]:checkbox").attr("checked", true); 5 | }); 6 | 7 | // 全不选 8 | $(".unselect").bind("click", function () { 9 | $("[name = a[]]:checkbox").attr("checked", false); 10 | }); 11 | $('.delete').click(function(){ 12 | var u=$("input:checked"); 13 | var arr=[]; 14 | u.each(function(i){ 15 | arr[i]=$(this).attr('data-mid'); 16 | }); 17 | if(arr.length>0&&(confirm('您确定要删除公告吗?'))){ 18 | var ids=arr.join(','); 19 | $.ajax({ 20 | type:"post", 21 | url:"ajaxApi/delete.php?action=n", 22 | data:{ids:ids}, 23 | dataType:'json', 24 | success:function(data){ 25 | if(data.error==0){ 26 | alert('删除成功!'); 27 | window.location.reload(); 28 | }else if(data.error==1){ 29 | alert('删除失败!'); 30 | 31 | }else if(data.error==10){ 32 | alert(data.msg); 33 | } 34 | }, 35 | error:function(data){ 36 | console.log(data); 37 | } 38 | }); 39 | } 40 | 41 | }); 42 | 43 | $('.submit').click(function(){ 44 | 45 | $('#type').val($("#select1 option:selected").val()); 46 | 47 | }); 48 | }); -------------------------------------------------------------------------------- /graduation/common/templates/admin/js/p_note.js: -------------------------------------------------------------------------------- 1 | $('#submit').click(function(){ 2 | var $title=$('input[name="title"]').val(); 3 | var $content=$('textarea[name="content"]').val(); 4 | if($title==''){ 5 | alert('请输入标题!'); 6 | return false; 7 | }else if($content==''){ 8 | alert('请输入内容!'); 9 | return false; 10 | }else if(!confirm('您确定要发布吗?')){ 11 | return false; 12 | } 13 | }); -------------------------------------------------------------------------------- /graduation/common/templates/admin/js/u_list.js: -------------------------------------------------------------------------------- 1 | $(function(){ 2 | // 全选 3 | $(".selectall").bind("click", function () { 4 | $("[name = u[]]:checkbox").attr("checked", true); 5 | }); 6 | 7 | // 全不选 8 | $(".unselect").bind("click", function () { 9 | $("[name = u[]]:checkbox").attr("checked", false); 10 | }); 11 | $('.delete').click(function(){ 12 | var u=$("input:checked"); 13 | var arr=[]; 14 | u.each(function(i){ 15 | arr[i]=$(this).attr('data-mid'); 16 | }); 17 | if(arr.length>0&&(confirm('您确定要删除用户吗?'))){ 18 | var ids=arr.join(','); 19 | $.ajax({ 20 | type:"post", 21 | url:"ajaxApi/delete.php?action=u", 22 | data:{ids:ids}, 23 | dataType:'json', 24 | success:function(data){ 25 | if(data.error==0){ 26 | alert('删除成功!'); 27 | window.location.reload(); 28 | }else if(data.error==1){ 29 | alert('删除失败!'); 30 | 31 | }else if(data.error==10){ 32 | alert(data.msg); 33 | } 34 | }, 35 | error:function(data){ 36 | console.log(data); 37 | } 38 | }); 39 | } 40 | 41 | }); 42 | 43 | $('.submit').click(function(){ 44 | 45 | $('#type').val($("#select1 option:selected").val()); 46 | 47 | }); 48 | }); -------------------------------------------------------------------------------- /graduation/common/templates/admin/sideBar.tpl: -------------------------------------------------------------------------------- 1 |
2 |
3 | 4 | 8 |
9 |
10 | 23 | 24 |
25 |
-------------------------------------------------------------------------------- /graduation/common/templates/font/Elephant.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/font/Elephant.ttf -------------------------------------------------------------------------------- /graduation/common/templates/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/Thumbs.db -------------------------------------------------------------------------------- /graduation/common/templates/images/a_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/a_more.png -------------------------------------------------------------------------------- /graduation/common/templates/images/aa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/aa.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/admin-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/admin-group.png -------------------------------------------------------------------------------- /graduation/common/templates/images/announce-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/announce-group.png -------------------------------------------------------------------------------- /graduation/common/templates/images/answer-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/answer-group.png -------------------------------------------------------------------------------- /graduation/common/templates/images/avatar_default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/avatar_default.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/bubble.png -------------------------------------------------------------------------------- /graduation/common/templates/images/close2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/close2.png -------------------------------------------------------------------------------- /graduation/common/templates/images/close_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/close_btn.png -------------------------------------------------------------------------------- /graduation/common/templates/images/detail_avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/detail_avatar.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/detail_bar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/detail_bar.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/detail_bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/detail_bg1.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/detail_bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/detail_bg2.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/detail_bg3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/detail_bg3.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/detail_bg_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/detail_bg_l.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/detail_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/detail_download.png -------------------------------------------------------------------------------- /graduation/common/templates/images/getintouch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/getintouch.png -------------------------------------------------------------------------------- /graduation/common/templates/images/guifan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/guifan.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/head_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/head_icon.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/icon_mail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/icon_mail.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/icon_mail1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/icon_mail1.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/icon_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/icon_new.png -------------------------------------------------------------------------------- /graduation/common/templates/images/icon_qq.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/icon_qq.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/icon_tel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/icon_tel.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/icon_wb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/icon_wb.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/icon_wb1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/icon_wb1.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/icon_wx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/icon_wx.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/icon_wx1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/icon_wx1.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/li1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/li1.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/li10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/li10.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/li2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/li2.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/li3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/li3.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/li4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/li4.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/li5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/li5.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/li6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/li6.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/li7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/li7.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/li8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/li8.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/li9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/li9.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/logo.png -------------------------------------------------------------------------------- /graduation/common/templates/images/match-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/match-group.png -------------------------------------------------------------------------------- /graduation/common/templates/images/message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/message.png -------------------------------------------------------------------------------- /graduation/common/templates/images/nav_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/nav_bg.png -------------------------------------------------------------------------------- /graduation/common/templates/images/notice-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/notice-group.png -------------------------------------------------------------------------------- /graduation/common/templates/images/pager_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/pager_bg.png -------------------------------------------------------------------------------- /graduation/common/templates/images/pager_hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/pager_hover.png -------------------------------------------------------------------------------- /graduation/common/templates/images/pager_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/pager_next.png -------------------------------------------------------------------------------- /graduation/common/templates/images/pager_prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/pager_prev.png -------------------------------------------------------------------------------- /graduation/common/templates/images/search_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/search_bg.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/search_close.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/search_close.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/search_open.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/search_open.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/slider_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/slider_next.png -------------------------------------------------------------------------------- /graduation/common/templates/images/slider_prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/slider_prev.png -------------------------------------------------------------------------------- /graduation/common/templates/images/subtitle_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/subtitle_bg.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/tip_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/tip_error.png -------------------------------------------------------------------------------- /graduation/common/templates/images/tip_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/tip_right.png -------------------------------------------------------------------------------- /graduation/common/templates/images/title.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/title.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/title_bar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/title_bar.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/title_bar1(启事详情).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/title_bar1(启事详情).jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/title_bar1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/title_bar1.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/title_bar2(两大厅).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/title_bar2(两大厅).jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/title_bar2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/title_bar2.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/title_bar2_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/title_bar2_1.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/title_bar2_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/title_bar2_2.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/title_bar2_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/title_bar2_3.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/title_bar2_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/title_bar2_4.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/title_bar2_99.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/title_bar2_99.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/title_bar2__1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/title_bar2__1.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/title_bar2__2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/title_bar2__2.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/title_bar3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/title_bar3.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/title_bar3_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/title_bar3_1.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/title_bar3_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/title_bar3_2.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/top.png -------------------------------------------------------------------------------- /graduation/common/templates/images/ucenter_bar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/ucenter_bar.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/ucenter_bar_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/ucenter_bar_1.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/ucenter_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/ucenter_edit.png -------------------------------------------------------------------------------- /graduation/common/templates/images/ucenter_nav1_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/ucenter_nav1_0.png -------------------------------------------------------------------------------- /graduation/common/templates/images/ucenter_nav1_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/ucenter_nav1_1.png -------------------------------------------------------------------------------- /graduation/common/templates/images/ucenter_nav2_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/ucenter_nav2_0.png -------------------------------------------------------------------------------- /graduation/common/templates/images/ucenter_nav2_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/ucenter_nav2_1.png -------------------------------------------------------------------------------- /graduation/common/templates/images/ucenter_nav3_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/ucenter_nav3_0.png -------------------------------------------------------------------------------- /graduation/common/templates/images/ucenter_nav3_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/ucenter_nav3_1.png -------------------------------------------------------------------------------- /graduation/common/templates/images/user-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/user-group.png -------------------------------------------------------------------------------- /graduation/common/templates/images/vote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/vote.png -------------------------------------------------------------------------------- /graduation/common/templates/images/vote1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/vote1.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/vote2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/vote2.jpg -------------------------------------------------------------------------------- /graduation/common/templates/images/wutu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/images/wutu.jpg -------------------------------------------------------------------------------- /graduation/common/templates/user/footBar.tpl: -------------------------------------------------------------------------------- 1 | 32 | -------------------------------------------------------------------------------- /graduation/common/templates/user/js/Date/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | var $lang={errAlertMsg:"\u4E0D\u5408\u6CD5\u7684\u65E5\u671F\u683C\u5F0F\u6216\u8005\u65E5\u671F\u8D85\u51FA\u9650\u5B9A\u8303\u56F4,\u9700\u8981\u64A4\u9500\u5417?",aWeekStr:["\u5468","\u65E5","\u4E00","\u4E8C","\u4E09","\u56DB","\u4E94","\u516D"],aLongWeekStr:["\u5468","\u661F\u671F\u65E5","\u661F\u671F\u4E00","\u661F\u671F\u4E8C","\u661F\u671F\u4E09","\u661F\u671F\u56DB","\u661F\u671F\u4E94","\u661F\u671F\u516D"],aMonStr:["\u4E00\u6708","\u4E8C\u6708","\u4E09\u6708","\u56DB\u6708","\u4E94\u6708","\u516D\u6708","\u4E03\u6708","\u516B\u6708","\u4E5D\u6708","\u5341\u6708","\u5341\u4E00","\u5341\u4E8C"],aLongMonStr:["\u4E00\u6708","\u4E8C\u6708","\u4E09\u6708","\u56DB\u6708","\u4E94\u6708","\u516D\u6708","\u4E03\u6708","\u516B\u6708","\u4E5D\u6708","\u5341\u6708","\u5341\u4E00\u6708","\u5341\u4E8C\u6708"],clearStr:"\u6E05\u7A7A",todayStr:"\u4ECA\u5929",okStr:"\u786E\u5B9A",updateStr:"\u786E\u5B9A",timeStr:"\u65F6\u95F4",quickStr:"\u5FEB\u901F\u9009\u62E9",err_1:'\u6700\u5C0F\u65E5\u671F\u4E0D\u80FD\u5927\u4E8E\u6700\u5927\u65E5\u671F!'} -------------------------------------------------------------------------------- /graduation/common/templates/user/js/Date/skin/WdatePicker.css: -------------------------------------------------------------------------------- 1 | .Wdate{width:100px;border:#999 1px solid;height:20px;background:#fff url(datePicker.gif) no-repeat right;}.WdateFmtErr{font-weight:bold;color:red;} -------------------------------------------------------------------------------- /graduation/common/templates/user/js/Date/skin/datePicker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/user/js/Date/skin/datePicker.gif -------------------------------------------------------------------------------- /graduation/common/templates/user/js/Date/skin/default/img.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/templates/user/js/Date/skin/default/img.gif -------------------------------------------------------------------------------- /graduation/common/templates/user/js/list_found.js: -------------------------------------------------------------------------------- 1 | $(function(){ 2 | 3 | //页面初始化 4 | (function($){ 5 | 6 | $('.select-btn').click(function(){ 7 | // alert($("option:selected").val()); 8 | $('#type').val($("#select1 option:selected").val()); 9 | $('#class').val($("#select2 option:selected").val()); 10 | }); 11 | 12 | $('.usually .select a').click(function(){ 13 | $(this).attr('href','search.php?type='+$("option:selected").val()+'&keywords='+$(this).text()); 14 | }); 15 | 16 | $('.search-submit2').click(function(){ 17 | if($(this).hasClass('active')){ 18 | $(this).removeClass('active'); 19 | $('.sub-search').slideUp(); 20 | }else{ 21 | $(this).addClass('active'); 22 | $('.sub-search').slideDown(); 23 | } 24 | }) 25 | })(jQuery) 26 | 27 | 28 | 29 | }); -------------------------------------------------------------------------------- /graduation/common/templates/user/js/list_lost.js: -------------------------------------------------------------------------------- 1 | $(function(){ 2 | 3 | //页面初始化 4 | (function($){ 5 | 6 | $('.select-btn').click(function(){ 7 | // alert($("option:selected").val()); 8 | $('#type').val($("#select1 option:selected").val()); 9 | $('#class').val($("#select2 option:selected").val()); 10 | }); 11 | 12 | $('.usually .select a').click(function(){ 13 | $(this).attr('href','search.php?type='+$("option:selected").val()+'&keywords='+$(this).text()); 14 | }); 15 | $('.search-submit2').click(function(){ 16 | if($(this).hasClass('active')){ 17 | $(this).removeClass('active'); 18 | $('.sub-search').slideUp(); 19 | }else{ 20 | $(this).addClass('active'); 21 | $('.sub-search').slideDown(); 22 | } 23 | }) 24 | 25 | })(jQuery) 26 | 27 | }); -------------------------------------------------------------------------------- /graduation/common/templates/user/js/search.js: -------------------------------------------------------------------------------- 1 | $(function(){ 2 | 3 | //页面初始化 4 | (function($){ 5 | 6 | $('.select-btn').click(function(){ 7 | // alert($("option:selected").val()); 8 | $('#type').val($("#select1 option:selected").val()); 9 | $('#class').val($("#select2 option:selected").val()); 10 | }); 11 | 12 | $('.usually .select a').click(function(){ 13 | $(this).attr('href','search.php?type='+$("#select1 option:selected").val()+'&keywords='+$(this).text()); 14 | }); 15 | $('.search-submit2').click(function(){ 16 | if($(this).hasClass('active')){ 17 | $(this).removeClass('active'); 18 | $('.sub-search').slideUp(); 19 | }else{ 20 | $(this).addClass('active'); 21 | $('input[name="sub-keywords"]').val($('input[name="keywords"]').val()); 22 | $('.sub-search').slideDown(); 23 | } 24 | }) 25 | })(jQuery) 26 | 27 | 28 | 29 | }); -------------------------------------------------------------------------------- /graduation/common/templates_c/%%3E^3E9^3E9B6C10%%footBar.tpl.php: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /graduation/common/templates_c/%%8F^8F5^8F52384C%%footBar.html.php: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /graduation/common/upload_img/20160208085600631.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160208085600631.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160208085600631big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160208085600631big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160228110426396.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160228110426396.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160228110426396big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160228110426396big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316012746121.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316012746121.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316012746121big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316012746121big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316013014719.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316013014719.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316013014719big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316013014719big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316013652491.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316013652491.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316013652491big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316013652491big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316013818299.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316013818299.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316013818299big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316013818299big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316020129840.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316020129840.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316020129840big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316020129840big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316020303338.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316020303338.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316020303338big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316020303338big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316020511274.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316020511274.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316020511274big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316020511274big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316021256907.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316021256907.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316021256907big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316021256907big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316021446428.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316021446428.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316021446428big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316021446428big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316021617445.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316021617445.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316021617445big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316021617445big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316022155474.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316022155474.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316022155474big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316022155474big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316022433975.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316022433975.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316022433975big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316022433975big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316022619301.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316022619301.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316022619301big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316022619301big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316023411647.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316023411647.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316023411647big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316023411647big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316023621847.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316023621847.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316023621847big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316023621847big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316023825571.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316023825571.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316023825571big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316023825571big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316024054330.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316024054330.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316024054330big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316024054330big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316024557164.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316024557164.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316024557164big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316024557164big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316025015630.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316025015630.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316025015630big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316025015630big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316025243822.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316025243822.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316025243822big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316025243822big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316025504141.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316025504141.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316025504141big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316025504141big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316030016131.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316030016131.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316030016131big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316030016131big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316030804727.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316030804727.png -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316030804727big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316030804727big.png -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316031226798.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316031226798.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316031226798big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316031226798big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316032245485.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316032245485.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316032245485big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316032245485big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316032900903.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316032900903.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316032900903big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316032900903big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316033117959.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316033117959.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316033117959big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316033117959big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316035059688.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316035059688.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316035059688big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316035059688big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316035519321.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316035519321.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316035519321big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316035519321big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316035727611.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316035727611.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316035727611big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316035727611big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316040015766.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316040015766.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316040015766big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316040015766big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316040131832.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316040131832.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316040131832big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316040131832big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316040548749.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316040548749.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316040548749big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316040548749big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316040858202.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316040858202.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316040858202big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316040858202big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316041319351.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316041319351.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316041319351big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316041319351big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316041707806.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316041707806.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316041707806big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316041707806big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316041914749.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316041914749.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316041914749big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316041914749big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316043948994.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316043948994.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316043948994big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316043948994big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316050608996.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316050608996.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316050608996big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316050608996big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316050924557.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316050924557.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316050924557big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316050924557big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316052308924.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316052308924.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316052308924big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316052308924big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316052532237.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316052532237.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316052532237big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316052532237big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316052940389.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316052940389.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316052940389big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316052940389big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316053112503.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316053112503.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316053112503big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316053112503big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316053433460.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316053433460.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316053433460big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316053433460big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316053935812.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316053935812.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316053935812big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316053935812big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316054403793.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316054403793.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316054403793big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316054403793big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316063140377.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316063140377.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316063140377big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316063140377big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316065253692.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316065253692.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316065253692big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316065253692big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316065625574.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316065625574.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316065625574big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316065625574big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316070053191.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316070053191.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316070053191big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316070053191big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316070417637.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316070417637.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316070417637big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316070417637big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316070753468.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316070753468.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316070753468big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316070753468big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316071046132.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316071046132.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316071046132big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316071046132big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316071138349.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316071138349.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316071138349big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316071138349big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316072706758.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316072706758.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316072706758big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316072706758big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316094830402.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316094830402.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316094830402big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316094830402big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316095059666.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316095059666.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316095059666big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316095059666big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316095326289.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316095326289.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316095326289big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316095326289big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316101901274.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316101901274.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316101901274big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316101901274big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316102147907.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316102147907.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316102147907big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316102147907big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316102452729.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316102452729.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316102452729big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316102452729big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316102932464.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316102932464.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316102932464big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316102932464big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316103417804.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316103417804.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316103417804big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316103417804big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316104241977.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316104241977.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316104241977big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316104241977big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316104508356.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316104508356.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316104508356big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316104508356big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316105238900.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316105238900.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316105238900big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316105238900big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316105717754.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316105717754.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316105717754big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316105717754big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316110542771.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316110542771.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316110542771big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316110542771big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316110947349.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316110947349.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316110947349big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316110947349big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316111138620.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316111138620.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316111138620big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316111138620big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316112142624.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316112142624.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316112142624big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316112142624big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316112404772.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316112404772.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316112404772big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316112404772big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316112548605.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316112548605.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316112548605big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316112548605big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316112948932.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316112948932.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316112948932big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316112948932big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316113145946.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316113145946.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316113145946big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316113145946big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316113819559.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316113819559.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160316113819559big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160316113819559big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160424020008279.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160424020008279.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160424020008279big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160424020008279big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160424020511606.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160424020511606.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160424020511606big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160424020511606big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160424021328346.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160424021328346.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160424021328346big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160424021328346big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160424022042403.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160424022042403.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160424022042403big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160424022042403big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160424032344697.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160424032344697.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160424032344697big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160424032344697big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160424032546106.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160424032546106.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160424032546106big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160424032546106big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160424032719175.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160424032719175.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160424032719175big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160424032719175big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160424033030296.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160424033030296.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160424033030296big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160424033030296big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160424033304440.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160424033304440.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160424033304440big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160424033304440big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160424033407760.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160424033407760.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160424033407760big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160424033407760big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160424033622697.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160424033622697.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160424033622697big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160424033622697big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160424034120164.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160424034120164.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160424034120164big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160424034120164big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160424034510506.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160424034510506.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160424034510506big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160424034510506big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160424034825828.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160424034825828.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160424034825828big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160424034825828big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160424034929695.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160424034929695.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160424034929695big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160424034929695big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160424035014252.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160424035014252.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160424035014252big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160424035014252big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160424035314456.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160424035314456.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160424035314456big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160424035314456big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160424035432587.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160424035432587.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160424035432587big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160424035432587big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160424042157241.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160424042157241.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160424042157241big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160424042157241big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160424042433430.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160424042433430.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160424042433430big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160424042433430big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160425022534631.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160425022534631.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160425022534631big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160425022534631big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160425105524694.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160425105524694.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160425105524694big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160425105524694big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160425110051369.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160425110051369.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160425110051369big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160425110051369big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160425110545743.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160425110545743.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160425110545743big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160425110545743big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160425110854713.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160425110854713.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160425110854713big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160425110854713big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160425111157251.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160425111157251.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160425111157251big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160425111157251big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160425111345986.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160425111345986.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160425111345986big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160425111345986big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160425111744355.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160425111744355.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160425111744355big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160425111744355big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160425112258352.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160425112258352.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160425112258352big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160425112258352big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160425113349891.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160425113349891.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160425113349891big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160425113349891big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160425114245223.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160425114245223.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160425114245223big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160425114245223big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160425120431425.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160425120431425.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160425120431425big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160425120431425big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160426122355497.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160426122355497.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160426122355497big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160426122355497big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160426122824826.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160426122824826.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160426122824826big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160426122824826big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160427033618200.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160427033618200.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160427033618200big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160427033618200big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160427033905326.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160427033905326.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160427033905326big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160427033905326big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160427034548897.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160427034548897.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160427034548897big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160427034548897big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160427035125214.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160427035125214.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160427035125214big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160427035125214big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160427035715131.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160427035715131.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160427035715131big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160427035715131big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160427040339711.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160427040339711.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160427040339711big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160427040339711big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160427040922558.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160427040922558.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160427040922558big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160427040922558big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160427041547947.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160427041547947.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160427041547947big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160427041547947big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160427041958500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160427041958500.png -------------------------------------------------------------------------------- /graduation/common/upload_img/20160427041958500big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160427041958500big.png -------------------------------------------------------------------------------- /graduation/common/upload_img/20160427042400839.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160427042400839.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160427042400839big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160427042400839big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160427042710404.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160427042710404.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160427042710404big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160427042710404big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160427042909140.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160427042909140.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160427042909140big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160427042909140big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160427043159667.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160427043159667.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160427043159667big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160427043159667big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160427043422112.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160427043422112.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160427043422112big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160427043422112big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160427050149579.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160427050149579.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160427050149579big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160427050149579big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160427053938260.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160427053938260.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160427053938260big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160427053938260big.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160427054432242.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160427054432242.jpg -------------------------------------------------------------------------------- /graduation/common/upload_img/20160427054432242big.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/graduation/common/upload_img/20160427054432242big.jpg -------------------------------------------------------------------------------- /graduation/user/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | Options +FollowSymlinks 3 | RewriteEngine On 4 | 5 | RewriteCond %{REQUEST_FILENAME} !-d 6 | RewriteCond %{REQUEST_FILENAME} !-f 7 | RewriteRule ^(.*)$ index.php/$1 [QSA,PT,L] 8 | -------------------------------------------------------------------------------- /graduation/user/about.php: -------------------------------------------------------------------------------- 1 | assign('uid',$uid); 9 | $smarty->assign('username',$username); 10 | $smarty->assign('headImg',$headImg); 11 | $smarty->assign('title','about'); 12 | $smarty->display('user/about.tpl'); 13 | ?> -------------------------------------------------------------------------------- /graduation/user/ajaxApi/checkLogin.php: -------------------------------------------------------------------------------- 1 | getip(); 12 | if(strcasecmp($code,$_SESSION['code'])!=0){ 13 | $data=array("error"=>2,"msg"=>"验证码不正确!"); 14 | echo json_encode($data); 15 | exit; 16 | } 17 | $sql="select id,name,img from user where name='{$username}' and password='{$password}'"; 18 | $rs=$db->query($sql); 19 | date_default_timezone_set('PRC'); 20 | if($db->num_rows($rs)<1){ 21 | $data=array("error"=>1,"msg"=>"用户名或密码错误!"); 22 | }else{ 23 | unset($_SESSION['code']); 24 | $userinfo=$db->fetch_array($rs); 25 | $_SESSION['uid']=$userinfo['id']; 26 | $_SESSION['username']=$userinfo['name']; 27 | if(!$userinfo['img']){ 28 | $headImg="upload_img/default.jpg"; 29 | }else{ 30 | $headImg=$userinfo['img']; 31 | } 32 | $_SESSION['headImg']=$headImg; 33 | if(!empty($_POST['auto'])){ 34 | setcookie("username", $username, time()+3600*24*7); 35 | setcookie("password", $password, time()+3600*24*7); 36 | }else{ 37 | setcookie("username", "", time()-3600); 38 | setcookie("password", "", time()-3600); 39 | } 40 | $data=array("error"=>0,"msg"=>"登陆成功!"); 41 | fwrite($log,"用户名:".$username."用户IP:"." $cliendIp "."登录时间:".date("Y-m-d H:i:s")."\r\n"); 42 | } 43 | echo json_encode($data); 44 | /*header('Location:index.php');*/ 45 | 46 | 47 | ?> -------------------------------------------------------------------------------- /graduation/user/ajaxApi/checkRegist.php: -------------------------------------------------------------------------------- 1 | query($sql); 15 | if($db->num_rows($rs)>0){ 16 | /*echo "";*/ 17 | $data=array("error"=>2,"msg"=>"该用户名已被注册!"); 18 | echo json_encode($data); 19 | exit(); 20 | } 21 | if(isset($_SESSION['imgpath']) && $_SESSION['imgpath']){ 22 | unset($_SESSION['imgpath']); 23 | } 24 | $dataArray=array( 'name'=>$name, 'password'=>$password, 'phone'=>$mobile, 'email'=>$email, 'address'=>$address, 'img'=>$img ); 25 | $rs=$db->insert('user',$dataArray); 26 | 27 | if($rs){ 28 | 29 | /*echo "";*/ 30 | /*header('Location:index.php');*/ 31 | $data=array("error"=>0,"msg"=>"注册成功!"); 32 | echo json_encode($data); 33 | }else{ 34 | /*echo "";*/ 35 | $data=array("error"=>1,"msg"=>"对不起!注册失败!"); 36 | echo json_encode($data); 37 | } 38 | 39 | ?> 40 | -------------------------------------------------------------------------------- /graduation/user/ajaxApi/check_thx.php: -------------------------------------------------------------------------------- 1 | 2,"msg"=>"请先登陆!"); 8 | }else if(isset($_POST['title'])){ 9 | $u_name=$_SESSION['username']; 10 | $title=$_POST['title']; 11 | $content=$_POST['content']; 12 | date_default_timezone_set('PRC'); 13 | $p_date=date('Y-m-d'); 14 | $rs=$db->insert('thanks',array("title"=>$title,"context"=>$content,"u_name"=>$u_name,"p_date"=>$p_date,"checked"=>0)); 15 | if($rs){ 16 | $data=array("error"=>0,"msg"=>"发布成功!"); 17 | }else{ 18 | $data=array("error"=>1,"msg"=>"发布失败!"); 19 | } 20 | } 21 | echo json_encode($data); 22 | ?> 23 | -------------------------------------------------------------------------------- /graduation/user/ajaxApi/checkpsw.php: -------------------------------------------------------------------------------- 1 | 2,"msg"=>"请先登陆!"); 8 | }else if(isset($_POST['password'])){ 9 | $uid=$_SESSION['uid']; 10 | $password=md5($_POST['password']); 11 | $sql="select id,name,img from user where id='{$uid}' and password='{$password}'"; 12 | $rs=$db->query($sql); 13 | if($db->num_rows($rs)<1){ 14 | $data=array("error"=>1,"msg"=>"密码错误!"); 15 | }else{ 16 | $data=array("error"=>0,"msg"=>"密码正确!"); 17 | } 18 | }else if(isset($_POST['password2'])){ 19 | $uid=$_SESSION['uid']; 20 | $password2=md5($_POST['password2']); 21 | $dataArray=array('password'=>$password2); 22 | $rs=$db->update('user',$dataArray,"id=$uid"); 23 | if($rs){ 24 | $data=array("error"=>0,"msg"=>"修改成功!"); 25 | session_destroy(); 26 | }else{ 27 | $data=array("error"=>1,"msg"=>"修改失败!"); 28 | } 29 | } 30 | echo json_encode($data); 31 | /*header('Location:index.php');*/ 32 | 33 | 34 | ?> -------------------------------------------------------------------------------- /graduation/user/ajaxApi/delete_lost.php: -------------------------------------------------------------------------------- 1 | 2,"msg"=>"删除失败!"); 5 | echo json_encode($data); 6 | exit; 7 | } 8 | 9 | require "../../common/class/db.php"; 10 | require "../../common/class/ajaxguolv.php"; 11 | $db=new DB; 12 | $uid=$_SESSION['uid']; 13 | $type=$_GET['type']; 14 | $type2=$type==0?1:0; 15 | $table=$type==0?'found':'lost'; 16 | $l_id=$_GET['l_id']; 17 | $result=$db->get_one("select * from $table where l_id=$l_id and u_id=$uid"); 18 | $rs=$db->delete($table,"l_id=$l_id and u_id=$uid"); 19 | if($rs){ 20 | if($result['ct_state']==1){ 21 | $rs2=$db->delete('q_manage',"u_id=$uid and q_id in (select q_id from validation where l_type=$type and l_id=$l_id)"); 22 | $rs3=$db->delete('validation',"l_type=$type and l_id=$l_id"); 23 | } 24 | $rs4=$db->delete('result',"l_type=$type and l_id=$l_id"); 25 | $rs5=$db->delete('pull',"(l_type=$type and r_id=$l_id) or (l_type=$type2 and s_id=$l_id)"); 26 | $rs5=$db->delete('xiansuo',"l_type=$type and l_id=$l_id"); 27 | $data=array("error"=>0,"msg"=>"删除成功!"); 28 | echo json_encode($data); 29 | }else{ 30 | $data=array("error"=>1,"msg"=>"删除失败!"); 31 | echo json_encode($data); 32 | } 33 | 34 | 35 | ?> -------------------------------------------------------------------------------- /graduation/user/ajaxApi/jianyi.php: -------------------------------------------------------------------------------- 1 | 2,"msg"=>"请先登陆!"); 8 | }else if(isset($_POST['action'])&&$_POST['action']=='post'){ 9 | $uid=$_SESSION['uid']; 10 | $u_name=$_SESSION['username']; 11 | $content=$_POST['content']; 12 | date_default_timezone_set('PRC'); 13 | $p_date=date('Y-m-d'); 14 | $dataArray=array('u_name'=>$u_name,'content'=>$content,'p_date'=>$p_date); 15 | $rs=$db->insert('jianyi',$dataArray); 16 | if($rs) 17 | $data=array("error"=>0,"msg"=>"提交成功!"); 18 | else 19 | $data=array("error"=>1,"msg"=>"提交失败!"); 20 | } 21 | echo json_encode($data); 22 | ?> 23 | -------------------------------------------------------------------------------- /graduation/user/ajaxApi/reset_user.php: -------------------------------------------------------------------------------- 1 | $name, 'phone'=>$mobile, 'email'=>$email, 'address'=>$address, 'img'=>$img ); 17 | $uid=$_SESSION['uid']; 18 | $rs=$db->update('user',$dataArray,"id={$uid}"); 19 | 20 | if($rs){ 21 | /*echo "";*/ 22 | /*header('Location:index.php');*/ 23 | $data=array("error"=>0,"msg"=>"修改成功!"); 24 | $_SESSION['username']=$name; 25 | if($img) $_SESSION['headImg']=$img; 26 | echo json_encode($data); 27 | }else{ 28 | /*echo "";*/ 29 | $data=array("error"=>1,"msg"=>"修改失败!"); 30 | echo json_encode($data); 31 | } 32 | 33 | ?> 34 | -------------------------------------------------------------------------------- /graduation/user/checkPull.php: -------------------------------------------------------------------------------- 1 | 1); 12 | $rs=$db->update('pull',$dataArray,"pull_id=$pull_id"); 13 | if($rs){ 14 | header("Location:detail.php?type=$type&l_id=$l_id"); 15 | } 16 | } 17 | 18 | ?> -------------------------------------------------------------------------------- /graduation/user/check_rl.php: -------------------------------------------------------------------------------- 1 | update('renling',array("check_state"=>1),"(rl_uid=$uid and l_type=0 and check_state=0) or (u_id=$uid and l_type=1 and check_state=0)"); 11 | if($rs){ 12 | header("Location:ucenter.php?p=list&action=records"); 13 | } 14 | } 15 | ?> 16 | -------------------------------------------------------------------------------- /graduation/user/detail.php: -------------------------------------------------------------------------------- 1 | get_one($sql); 15 | 16 | if($list['ct_state']==1){ 17 | if(isset($_SESSION['uid'])){ 18 | $sql2="select validation.q_id,validation.question,validation.answer,q_manage.u_answer from validation left join q_manage on validation.q_id=q_manage.q_id and q_manage.u_id=$uid where validation.l_id=$l_id and validation.l_type=$l_type"; 19 | $question=$db->get_all($sql2); 20 | }else{ 21 | $sql2="select validation.q_id,validation.question,validation.answer from validation where validation.l_id=$l_id and validation.l_type=$l_type"; 22 | $question=$db->get_all($sql2); 23 | } 24 | 25 | // print_r($question); 26 | }else{ 27 | $question=''; 28 | } 29 | 30 | $smarty=new SmartyProject(); 31 | $smarty->assign('uid',$uid); 32 | $smarty->assign('username',$username); 33 | $smarty->assign('headImg',$headImg); 34 | $smarty->assign('list',$list); 35 | $smarty->assign('question',$question); 36 | $smarty->assign('type',$type); 37 | $smarty->assign('l_type',$l_type); 38 | $smarty->display('user/detail.tpl'); 39 | 40 | 41 | ?> 42 | -------------------------------------------------------------------------------- /graduation/user/edit_lost.php: -------------------------------------------------------------------------------- 1 | history.back(); "; 8 | exit; 9 | } 10 | require "../common/class/smarty.php"; 11 | require "../common/class/db.php"; 12 | $l_id=$_GET['l_id']; 13 | $type=$_GET['type']; 14 | if($type==0){ 15 | $table='found'; 16 | }else if($type==1){ 17 | $table='lost'; 18 | } 19 | $db=new DB; 20 | $sql="select l_name,l_class,l_feature,l_desc,l_place,l_img,l_date,u_name,u_phone,u_email,u_address,ct_state,p_date,question,answer,answer_type from $table left join validation on validation.l_id=$table.l_id where $table.l_id=$l_id and u_id=$uid"; 21 | $lostinfo=$db->get_all($sql); 22 | if(count($lostinfo)<1){ 23 | echo ""; 24 | exit; 25 | } 26 | $smarty=new SmartyProject(); 27 | $smarty->assign('uid',$uid); 28 | $smarty->assign('l_id',$l_id); 29 | $smarty->assign('type',$type); 30 | $smarty->assign('username',$username); 31 | $smarty->assign('headImg',$headImg); 32 | $smarty->assign('lostinfo',$lostinfo); 33 | 34 | $smarty->display('user/edit_lost.tpl'); 35 | ?> -------------------------------------------------------------------------------- /graduation/user/exit.php: -------------------------------------------------------------------------------- 1 | 10 | -------------------------------------------------------------------------------- /graduation/user/index.php: -------------------------------------------------------------------------------- 1 | get_all($sql); 8 | $sql2='select * from found order by p_date desc,l_id desc limit 4'; 9 | $found= $db->get_all($sql2); 10 | $sql3='select * from announce order by p_date desc,a_id desc limit 3'; 11 | $announce= $db->get_all($sql3); 12 | $sql4='select * from thanks where checked=1 order by p_date desc,t_id desc limit 7'; 13 | $thanks= $db->get_all($sql4); 14 | 15 | 16 | $smarty=new SmartyProject(); 17 | $smarty->assign('uid',$uid); 18 | $smarty->assign('username',$username); 19 | $smarty->assign('headImg',$headImg); 20 | $smarty->assign('lost',$lost); 21 | $smarty->assign('found',$found); 22 | $smarty->assign('announce',$announce); 23 | $smarty->assign('thanks',$thanks); 24 | $smarty->assign('title','index'); 25 | $smarty->display('user/index.tpl'); 26 | ?> -------------------------------------------------------------------------------- /graduation/user/isLogin.php: -------------------------------------------------------------------------------- 1 | query($sql); 15 | if($db->num_rows($rs)<1){ 16 | $uid=''; 17 | $username=''; 18 | $headImg='upload_img/default.jpg'; 19 | }else{ 20 | $userinfo=$db->fetch_array($rs); 21 | $uid=$userinfo['id']; 22 | if(!$userinfo['img']){ 23 | $headImg="upload_img/default.jpg"; 24 | }else{ 25 | $headImg=$userinfo['img']; 26 | } 27 | $_SESSION['uid']=$uid; 28 | $_SESSION['username']=$username; 29 | $_SESSION['headImg']=$headImg; 30 | 31 | } 32 | } 33 | 34 | }else{ 35 | $uid=$_SESSION['uid']; 36 | $username=$_SESSION['username']; 37 | $headImg=$_SESSION['headImg']; 38 | } 39 | 40 | 41 | ?> -------------------------------------------------------------------------------- /graduation/user/list_announce.php: -------------------------------------------------------------------------------- 1 | 'announce', #(必须) 14 | 'pageNow' =>$pageNow, #(必须) 15 | 'condition'=>"where (sign(locate('$keyword',title))+sign(locate('$keyword',context)))>0", 16 | 'pageRows' =>5 #(可选) 默认为15 17 | ); 18 | }else{ 19 | $keyword=''; 20 | $params = array( 21 | 'table'=>'announce', #(必须) 22 | 'pageNow' =>$pageNow, #(必须) 23 | 'pageRows' =>5 #(可选) 默认为15 24 | ); 25 | } 26 | // $table='announce'; 27 | $smarty=new SmartyProject(); 28 | $sepPage = new page($params); 29 | $page=$sepPage->showData(); 30 | if(isset($_GET['keyword'])&&!empty($_GET['keyword'])){ 31 | if($page['list']){ 32 | foreach($page['list'] as $key=>$value){ 33 | foreach($value as $key2=>$value2){ 34 | //print_r($value2."
"); 35 | if($key2!='l_img'){ 36 | $value2=str_ireplace($keyword, "".$keyword."", $value2); 37 | //echo $content."
"; 38 | $page['list'][$key][$key2]=$value2; 39 | } 40 | 41 | } 42 | } 43 | } 44 | } 45 | 46 | 47 | $smarty->assign('page',$page); 48 | $smarty->assign('keyword',$keyword); 49 | $smarty->assign('uid',$uid); 50 | $smarty->assign('username',$username); 51 | $smarty->assign('headImg',$headImg); 52 | 53 | $smarty->display('user/list_announce.tpl'); 54 | ?> -------------------------------------------------------------------------------- /graduation/user/list_found.php: -------------------------------------------------------------------------------- 1 | $table, #(必须) 24 | 'pageNow' =>$pageNow, #(必须) 25 | 'pageRows' =>12, #(可选) 默认为15 26 | 'condition'=>$condition 27 | ); 28 | 29 | $sepPage = new page($params); 30 | $page=$sepPage->showData(); 31 | $smarty->assign('page',$page); 32 | $smarty->assign('classPara',$classPara); 33 | $smarty->assign('classId',$classId); 34 | $smarty->assign('uid',$uid); 35 | $smarty->assign('username',$username); 36 | $smarty->assign('headImg',$headImg); 37 | $smarty->assign('title','list_found'); 38 | $smarty->display('user/list_found.tpl'); 39 | ?> -------------------------------------------------------------------------------- /graduation/user/list_lost.php: -------------------------------------------------------------------------------- 1 | $table, #(必须) 24 | 'pageNow' =>$pageNow, #(必须) 25 | 'pageRows' =>12, #(可选) 默认为15 26 | 'condition'=>$condition 27 | ); 28 | 29 | $sepPage = new page($params); 30 | $page=$sepPage->showData(); 31 | $smarty->assign('page',$page); 32 | $smarty->assign('classPara',$classPara); 33 | $smarty->assign('classId',$classId); 34 | $smarty->assign('uid',$uid); 35 | $smarty->assign('username',$username); 36 | $smarty->assign('headImg',$headImg); 37 | $smarty->assign('title','list_lost'); 38 | $smarty->display('user/list_lost.tpl'); 39 | ?> -------------------------------------------------------------------------------- /graduation/user/list_thank.php: -------------------------------------------------------------------------------- 1 | 'thanks', #(必须) 14 | 'pageNow' =>$pageNow, #(必须) 15 | 'condition'=>"where (sign(locate('$keyword',title))+sign(locate('$keyword',context))+sign(locate('$keyword',u_name)))>0 and checked=1", 16 | 'pageRows' =>5 #(可选) 默认为15 17 | ); 18 | }else{ 19 | $keyword=''; 20 | $params = array( 21 | 'table'=>'thanks', #(必须) 22 | 'pageNow' =>$pageNow, #(必须) 23 | 'condition'=>"where checked=1", 24 | 'pageRows' =>7 #(可选) 默认为15 25 | ); 26 | } 27 | $table='thanks'; 28 | $smarty=new SmartyProject(); 29 | $sepPage = new page($params); 30 | $page=$sepPage->showData(); 31 | if(isset($_GET['keyword'])&&!empty($_GET['keyword'])){ 32 | if($page['list']){ 33 | foreach($page['list'] as $key=>$value){ 34 | foreach($value as $key2=>$value2){ 35 | //print_r($value2."
"); 36 | if($key2!='l_img'){ 37 | $value2=str_ireplace($keyword, "".$keyword."", $value2); 38 | //echo $content."
"; 39 | $page['list'][$key][$key2]=$value2; 40 | } 41 | 42 | } 43 | } 44 | } 45 | } 46 | 47 | 48 | $smarty->assign('page',$page); 49 | $smarty->assign('keyword',$keyword); 50 | $smarty->assign('uid',$uid); 51 | $smarty->assign('username',$username); 52 | $smarty->assign('headImg',$headImg); 53 | 54 | $smarty->display('user/list_thank.tpl'); 55 | ?> -------------------------------------------------------------------------------- /graduation/user/login.php: -------------------------------------------------------------------------------- 1 | assign('uid',$uid); 9 | $smarty->assign('username',$username); 10 | $smarty->assign('headImg',$headImg); 11 | $smarty->display('user/login.tpl'); 12 | ?> -------------------------------------------------------------------------------- /graduation/user/p_lost.php: -------------------------------------------------------------------------------- 1 | alert('请先登陆!');window.location.href='login.php'; "; 6 | exit; 7 | } 8 | require "../common/class/db.php"; 9 | $db=new DB; 10 | $sql="select name,phone,email,address from user where id=$uid"; 11 | $rs=$db->get_one($sql); 12 | if($rs){ 13 | $userinfo=$rs; 14 | } 15 | $smarty=new SmartyProject(); 16 | $smarty->assign('uid',$uid); 17 | $smarty->assign('username',$username); 18 | $smarty->assign('headImg',$headImg); 19 | $smarty->assign('title','p_lost'); 20 | $smarty->assign('userinfo',$userinfo); 21 | $smarty->display('user/p_lost.tpl'); 22 | ?> -------------------------------------------------------------------------------- /graduation/user/regist.php: -------------------------------------------------------------------------------- 1 | assign('uid',$uid); 9 | $smarty->assign('username',$username); 10 | $smarty->assign('headImg',$headImg); 11 | $smarty->display('user/regist.tpl'); 12 | ?> -------------------------------------------------------------------------------- /graduation/user/validatorCode.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "design", 3 | "version": "1.0.0", 4 | "description": "my graduation design", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/xiandean/graduation-design.git" 12 | }, 13 | "keywords": [ 14 | "graduation", 15 | "design" 16 | ], 17 | "author": "xiandean", 18 | "license": "ISC", 19 | "bugs": { 20 | "url": "https://github.com/xiandean/graduation-design/issues" 21 | }, 22 | "homepage": "https://github.com/xiandean/graduation-design#readme" 23 | } 24 | -------------------------------------------------------------------------------- /毕业答辩ppt.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiandean/graduation-design/c79f260696083ca1d5e53fd0cfb6d606206a3694/毕业答辩ppt.pptx --------------------------------------------------------------------------------