├── example ├── nodejs │ ├── views │ │ ├── login.jade │ │ ├── viewcal.jade │ │ ├── layout.jade │ │ └── index.jade │ ├── favicon.ico │ ├── note.md │ ├── static │ │ ├── image │ │ │ ├── bg │ │ │ │ ├── tbg.gif │ │ │ │ ├── text-bg.gif │ │ │ │ ├── top_bg.png │ │ │ │ ├── btn_file.png │ │ │ │ ├── panel_bg.gif │ │ │ │ ├── topmenu_bg.png │ │ │ │ ├── invalid_line.gif │ │ │ │ └── rightTitle_bg.png │ │ │ ├── favicon.ico │ │ │ ├── icon │ │ │ │ └── s.gif │ │ │ ├── checkmark.png │ │ │ ├── plugin │ │ │ │ ├── dp │ │ │ │ │ ├── cal.gif │ │ │ │ │ ├── btn-arrow.gif │ │ │ │ │ └── btn-arrow-light.gif │ │ │ │ ├── share │ │ │ │ │ ├── del.gif │ │ │ │ │ ├── glass-bg.gif │ │ │ │ │ ├── hd-sprite.gif │ │ │ │ │ ├── left-btn.gif │ │ │ │ │ ├── right-btn.gif │ │ │ │ │ └── tool-sprites.gif │ │ │ │ ├── dailog │ │ │ │ │ ├── headbg.gif │ │ │ │ │ ├── app-form.png │ │ │ │ │ ├── left-right.png │ │ │ │ │ ├── top-bottom.png │ │ │ │ │ ├── left-corners.png │ │ │ │ │ ├── right-corners.png │ │ │ │ │ └── tool-sprites.gif │ │ │ │ ├── dropdown │ │ │ │ │ ├── tbg.gif │ │ │ │ │ ├── dparrow.png │ │ │ │ │ ├── gridth.gif │ │ │ │ │ └── uquery.gif │ │ │ │ └── validate │ │ │ │ │ ├── accept.png │ │ │ │ │ ├── tooltop.gif │ │ │ │ │ ├── warning.gif │ │ │ │ │ ├── tooltop2.gif │ │ │ │ │ ├── up_arrow.gif │ │ │ │ │ └── exclamation.png │ │ │ └── combined_v40_vr.png │ │ └── js │ │ │ ├── seaconfig.js │ │ │ └── locales │ │ │ ├── datepicker_lang_zh_cn.js │ │ │ └── datepicker_lang_en_us.js │ ├── routes │ │ ├── install.js │ │ └── index.js │ ├── package.json │ ├── locales │ │ ├── zh-cn.json │ │ ├── en-us.json │ │ └── en.json │ ├── app.js │ └── libs │ │ ├── basedao.js │ │ └── viewhelper.js ├── python │ ├── update.bat │ ├── no data run.bat │ ├── images │ │ ├── bgs │ │ │ ├── ch.gif │ │ │ ├── plus1.gif │ │ │ ├── headbg.gif │ │ │ ├── minus1.gif │ │ │ ├── CardHeadbg.jpg │ │ │ └── CardHeadbg.png │ │ ├── home │ │ │ ├── logo.gif │ │ │ ├── top_bg.jpg │ │ │ └── toolbarbg.jpg │ │ └── icons │ │ │ ├── add.png │ │ │ ├── au.gif │ │ │ ├── cal.gif │ │ │ ├── cn.gif │ │ │ ├── us.gif │ │ │ ├── appt.gif │ │ │ ├── clndr.gif │ │ │ ├── date.png │ │ │ ├── edit.png │ │ │ ├── group.gif │ │ │ ├── ico1.gif │ │ │ ├── table.gif │ │ │ ├── tick.png │ │ │ ├── view.png │ │ │ ├── Item.Add.gif │ │ │ ├── cal-day.gif │ │ │ ├── cal-proc.gif │ │ │ ├── cal-week.gif │ │ │ ├── calendar.gif │ │ │ ├── calwrkwk.gif │ │ │ ├── canmtg.gif │ │ │ ├── date_add.png │ │ │ ├── delete.png │ │ │ ├── msg_im.gif │ │ │ ├── mtgreq.gif │ │ │ ├── pgrs-sm.gif │ │ │ ├── table_c.gif │ │ │ ├── table_r.png │ │ │ ├── turnback.png │ │ │ ├── Btn.Close.gif │ │ │ ├── Item.Edit.gif │ │ │ ├── Item.Input.gif │ │ │ ├── Item.Save.gif │ │ │ ├── cacheClear.png │ │ │ ├── cal-month.gif │ │ │ ├── clndrsmll.gif │ │ │ ├── group_add.gif │ │ │ ├── indicator.gif │ │ │ ├── msg_center.gif │ │ │ ├── msg_email.gif │ │ │ ├── msg_mobile.gif │ │ │ ├── rowdelete.png │ │ │ ├── table_copy.png │ │ │ ├── Item.Delete.gif │ │ │ ├── Item.Search.gif │ │ │ ├── cal-rsc-perm.gif │ │ │ ├── cal-wk-week.gif │ │ │ ├── date_reflash.png │ │ │ ├── folder_user.gif │ │ │ ├── mtgreq-cancel.gif │ │ │ ├── mtgrsp-accept.gif │ │ │ ├── mtgrsp-tent.gif │ │ │ ├── table_refresh.png │ │ │ ├── mtgrsp-decline.gif │ │ │ ├── resultset_next.png │ │ │ ├── circle_animation.gif │ │ │ └── resultset_previous.png │ ├── themes │ │ ├── Shared │ │ │ ├── images │ │ │ │ ├── sorry.jpg │ │ │ │ ├── blackbird_icons.png │ │ │ │ └── blackbird_panel.png │ │ │ └── Error.css │ │ └── Default │ │ │ ├── images │ │ │ ├── alert │ │ │ │ ├── bot.gif │ │ │ │ ├── close.gif │ │ │ │ ├── help.gif │ │ │ │ ├── info.gif │ │ │ │ ├── title.gif │ │ │ │ ├── corners.gif │ │ │ │ ├── title1.gif │ │ │ │ ├── important.gif │ │ │ │ └── cornersBlue.gif │ │ │ ├── share │ │ │ │ ├── tbg.gif │ │ │ │ ├── card.gif │ │ │ │ ├── table.gif │ │ │ │ ├── glass-bg.gif │ │ │ │ ├── headbg.gif │ │ │ │ ├── left-btn.gif │ │ │ │ ├── table_c.gif │ │ │ │ ├── hd-sprite.gif │ │ │ │ ├── right-btn.gif │ │ │ │ ├── information.png │ │ │ │ └── tool-sprites.gif │ │ │ ├── calendar │ │ │ │ ├── grid.png │ │ │ │ ├── tbg.gif │ │ │ │ ├── gridth.gif │ │ │ │ ├── headbg.gif │ │ │ │ ├── load-bg.png │ │ │ │ ├── combined.gif │ │ │ │ ├── bubble_combined.png │ │ │ │ └── indicator_web20_working.gif │ │ │ ├── dailog │ │ │ │ ├── headbg.gif │ │ │ │ ├── app-form.png │ │ │ │ ├── left-corners.png │ │ │ │ ├── left-right.png │ │ │ │ ├── tool-sprites.gif │ │ │ │ ├── top-bottom.png │ │ │ │ └── right-corners.png │ │ │ ├── dp │ │ │ │ ├── btn-arrow.gif │ │ │ │ └── btn-arrow-light.gif │ │ │ ├── dropdown │ │ │ │ ├── dropdown.gif │ │ │ │ └── dropdownhover.gif │ │ │ └── validation │ │ │ │ ├── accept.png │ │ │ │ ├── tooltop.gif │ │ │ │ ├── warning.gif │ │ │ │ └── exclamation.png │ │ │ ├── dropdown.css │ │ │ └── colorselect.css │ ├── app.yaml │ ├── home.py │ ├── index.yaml │ ├── javascripts │ │ ├── Plugins │ │ │ ├── datepicker_lang_zh_CN.js │ │ │ ├── datepicker_lang_en_AU.js │ │ │ └── datepicker_lang_en_US.js │ │ └── lib │ │ │ └── jquery.easydrag.js │ ├── model.py │ ├── dateaccess.py │ ├── main.py │ └── calendarviewhelp.py ├── aspnet │ ├── AzureCalendarMvcWeb │ │ ├── App_GlobalResources │ │ │ ├── lang.en-AU.designer.cs │ │ │ ├── lang.en-US.designer.cs │ │ │ └── lang.zh-CN.Designer.cs │ │ ├── Global.asax │ │ ├── Images │ │ │ ├── bgs │ │ │ │ ├── ch.gif │ │ │ │ ├── plus1.gif │ │ │ │ ├── headbg.gif │ │ │ │ ├── minus1.gif │ │ │ │ ├── CardHeadbg.jpg │ │ │ │ └── CardHeadbg.png │ │ │ ├── home │ │ │ │ ├── logo.gif │ │ │ │ ├── top_bg.jpg │ │ │ │ └── toolbarbg.jpg │ │ │ └── icons │ │ │ │ ├── add.png │ │ │ │ ├── au.gif │ │ │ │ ├── cal.gif │ │ │ │ ├── cn.gif │ │ │ │ ├── us.gif │ │ │ │ ├── appt.gif │ │ │ │ ├── clndr.gif │ │ │ │ ├── date.png │ │ │ │ ├── edit.png │ │ │ │ ├── group.gif │ │ │ │ ├── ico1.gif │ │ │ │ ├── table.gif │ │ │ │ ├── tick.png │ │ │ │ ├── view.png │ │ │ │ ├── Item.Add.gif │ │ │ │ ├── cal-day.gif │ │ │ │ ├── cal-proc.gif │ │ │ │ ├── cal-week.gif │ │ │ │ ├── calendar.gif │ │ │ │ ├── calwrkwk.gif │ │ │ │ ├── canmtg.gif │ │ │ │ ├── date_add.png │ │ │ │ ├── delete.png │ │ │ │ ├── msg_im.gif │ │ │ │ ├── mtgreq.gif │ │ │ │ ├── pgrs-sm.gif │ │ │ │ ├── table_c.gif │ │ │ │ ├── table_r.png │ │ │ │ ├── turnback.png │ │ │ │ ├── Btn.Close.gif │ │ │ │ ├── Item.Edit.gif │ │ │ │ ├── Item.Input.gif │ │ │ │ ├── Item.Save.gif │ │ │ │ ├── cacheClear.png │ │ │ │ ├── cal-month.gif │ │ │ │ ├── clndrsmll.gif │ │ │ │ ├── group_add.gif │ │ │ │ ├── indicator.gif │ │ │ │ ├── msg_center.gif │ │ │ │ ├── msg_email.gif │ │ │ │ ├── msg_mobile.gif │ │ │ │ ├── rowdelete.png │ │ │ │ ├── table_copy.png │ │ │ │ ├── Item.Delete.gif │ │ │ │ ├── Item.Search.gif │ │ │ │ ├── cal-rsc-perm.gif │ │ │ │ ├── cal-wk-week.gif │ │ │ │ ├── date_reflash.png │ │ │ │ ├── folder_user.gif │ │ │ │ ├── mtgreq-cancel.gif │ │ │ │ ├── mtgrsp-accept.gif │ │ │ │ ├── mtgrsp-tent.gif │ │ │ │ ├── table_refresh.png │ │ │ │ ├── mtgrsp-decline.gif │ │ │ │ ├── resultset_next.png │ │ │ │ ├── circle_animation.gif │ │ │ │ └── resultset_previous.png │ │ ├── bin │ │ │ ├── SubSonic.Core.dll │ │ │ ├── System.Web.Mvc.dll │ │ │ ├── AzureCalendarMvcWeb.dll │ │ │ ├── AzureCalendarMvcWeb.pdb │ │ │ ├── System.Web.Routing.dll │ │ │ └── System.Web.Abstractions.dll │ │ ├── Theme │ │ │ ├── Shared │ │ │ │ ├── images │ │ │ │ │ ├── sorry.jpg │ │ │ │ │ ├── blackbird_icons.png │ │ │ │ │ └── blackbird_panel.png │ │ │ │ └── Error.css │ │ │ └── Default │ │ │ │ ├── images │ │ │ │ ├── alert │ │ │ │ │ ├── bot.gif │ │ │ │ │ ├── help.gif │ │ │ │ │ ├── info.gif │ │ │ │ │ ├── close.gif │ │ │ │ │ ├── title.gif │ │ │ │ │ ├── title1.gif │ │ │ │ │ ├── corners.gif │ │ │ │ │ ├── important.gif │ │ │ │ │ └── cornersBlue.gif │ │ │ │ ├── share │ │ │ │ │ ├── card.gif │ │ │ │ │ ├── tbg.gif │ │ │ │ │ ├── headbg.gif │ │ │ │ │ ├── table.gif │ │ │ │ │ ├── glass-bg.gif │ │ │ │ │ ├── hd-sprite.gif │ │ │ │ │ ├── left-btn.gif │ │ │ │ │ ├── right-btn.gif │ │ │ │ │ ├── table_c.gif │ │ │ │ │ ├── information.png │ │ │ │ │ └── tool-sprites.gif │ │ │ │ ├── calendar │ │ │ │ │ ├── tbg.gif │ │ │ │ │ ├── grid.png │ │ │ │ │ ├── gridth.gif │ │ │ │ │ ├── headbg.gif │ │ │ │ │ ├── combined.gif │ │ │ │ │ ├── load-bg.png │ │ │ │ │ ├── bubble_combined.png │ │ │ │ │ └── indicator_web20_working.gif │ │ │ │ ├── dp │ │ │ │ │ ├── btn-arrow.gif │ │ │ │ │ └── btn-arrow-light.gif │ │ │ │ ├── dailog │ │ │ │ │ ├── app-form.png │ │ │ │ │ ├── headbg.gif │ │ │ │ │ ├── left-right.png │ │ │ │ │ ├── top-bottom.png │ │ │ │ │ ├── left-corners.png │ │ │ │ │ ├── right-corners.png │ │ │ │ │ └── tool-sprites.gif │ │ │ │ ├── dropdown │ │ │ │ │ ├── dropdown.gif │ │ │ │ │ └── dropdownhover.gif │ │ │ │ └── validation │ │ │ │ │ ├── accept.png │ │ │ │ │ ├── tooltop.gif │ │ │ │ │ ├── warning.gif │ │ │ │ │ └── exclamation.png │ │ │ │ ├── dropdown.css │ │ │ │ └── colorselect.css │ │ ├── obj │ │ │ └── Debug │ │ │ │ ├── AzureCalendarMvcWeb.dll │ │ │ │ ├── AzureCalendarMvcWeb.pdb │ │ │ │ ├── ResolveAssemblyReference.cache │ │ │ │ └── AzureCalendarMvcWeb.csproj.FileListAbsolute.txt │ │ ├── Default.aspx │ │ ├── Views │ │ │ ├── User │ │ │ │ ├── Login.aspx │ │ │ │ └── CreateUser.aspx │ │ │ ├── Home │ │ │ │ ├── Index.aspx │ │ │ │ └── Test.aspx │ │ │ ├── Shared │ │ │ │ └── Error.aspx │ │ │ ├── CM │ │ │ │ ├── ViewCalendar.aspx │ │ │ │ └── _CurrentCalData.ascx │ │ │ └── Web.config │ │ ├── Models │ │ │ ├── JsonError.cs │ │ │ ├── JsonReturnMessages.cs │ │ │ ├── JsonCalendarViewData.cs │ │ │ ├── ICalendarService.cs │ │ │ └── CalendarService.cs │ │ ├── UpdateFrom20091122.txt │ │ ├── Default.aspx.cs │ │ ├── Controllers │ │ │ ├── HomeController.cs │ │ │ └── BaseController.cs │ │ ├── Global.asax.cs │ │ ├── Javascripts │ │ │ └── Plugins │ │ │ │ ├── datepicker_lang_zh_CN..js │ │ │ │ ├── datepicker_lang_zh_Cn.js │ │ │ │ ├── datepicker_lang_en_AU.js │ │ │ │ └── datepicker_lang_en_US.js │ │ ├── AzureCalendarMvcWeb.csproj.user │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── Helps │ │ │ ├── LocalizationHelpers.cs │ │ │ └── TimeHelper.cs │ ├── REFDLL │ │ └── SubSonic.Core.dll │ └── AzureCalendarMvc.sln ├── php │ ├── includes │ │ ├── commons.inc │ │ ├── conf.inc │ │ └── db.php │ ├── createtable_mysql.sql │ ├── resources │ │ └── lang.it-IT.php │ ├── static │ │ ├── images │ │ │ ├── bgs │ │ │ │ ├── ch.gif │ │ │ │ ├── headbg.gif │ │ │ │ ├── minus1.gif │ │ │ │ ├── plus1.gif │ │ │ │ ├── CardHeadbg.jpg │ │ │ │ └── CardHeadbg.png │ │ │ ├── home │ │ │ │ ├── logo.gif │ │ │ │ ├── top_bg.jpg │ │ │ │ └── toolbarbg.jpg │ │ │ ├── icons │ │ │ │ ├── add.png │ │ │ │ ├── appt.gif │ │ │ │ ├── au.gif │ │ │ │ ├── cal.gif │ │ │ │ ├── cn.gif │ │ │ │ ├── date.png │ │ │ │ ├── edit.png │ │ │ │ ├── ico1.gif │ │ │ │ ├── tick.png │ │ │ │ ├── us.gif │ │ │ │ ├── view.png │ │ │ │ ├── canmtg.gif │ │ │ │ ├── clndr.gif │ │ │ │ ├── delete.png │ │ │ │ ├── group.gif │ │ │ │ ├── msg_im.gif │ │ │ │ ├── mtgreq.gif │ │ │ │ ├── table.gif │ │ │ │ ├── Btn.Close.gif │ │ │ │ ├── Item.Add.gif │ │ │ │ ├── Item.Edit.gif │ │ │ │ ├── Item.Save.gif │ │ │ │ ├── cal-day.gif │ │ │ │ ├── cal-month.gif │ │ │ │ ├── cal-proc.gif │ │ │ │ ├── cal-week.gif │ │ │ │ ├── calendar.gif │ │ │ │ ├── calwrkwk.gif │ │ │ │ ├── clndrsmll.gif │ │ │ │ ├── date_add.png │ │ │ │ ├── group_add.gif │ │ │ │ ├── indicator.gif │ │ │ │ ├── msg_email.gif │ │ │ │ ├── pgrs-sm.gif │ │ │ │ ├── rowdelete.png │ │ │ │ ├── table_c.gif │ │ │ │ ├── table_r.png │ │ │ │ ├── turnback.png │ │ │ │ ├── Item.Delete.gif │ │ │ │ ├── Item.Input.gif │ │ │ │ ├── Item.Search.gif │ │ │ │ ├── cacheClear.png │ │ │ │ ├── cal-wk-week.gif │ │ │ │ ├── folder_user.gif │ │ │ │ ├── msg_center.gif │ │ │ │ ├── msg_mobile.gif │ │ │ │ ├── mtgrsp-tent.gif │ │ │ │ ├── table_copy.png │ │ │ │ ├── cal-rsc-perm.gif │ │ │ │ ├── date_reflash.png │ │ │ │ ├── mtgreq-cancel.gif │ │ │ │ ├── mtgrsp-accept.gif │ │ │ │ ├── mtgrsp-decline.gif │ │ │ │ ├── resultset_next.png │ │ │ │ ├── table_refresh.png │ │ │ │ ├── circle_animation.gif │ │ │ │ └── resultset_previous.png │ │ │ └── btn_donate_LG.gif │ │ ├── theme │ │ │ ├── Shared │ │ │ │ ├── images │ │ │ │ │ ├── sorry.jpg │ │ │ │ │ ├── blackbird_icons.png │ │ │ │ │ └── blackbird_panel.png │ │ │ │ └── Error.css │ │ │ └── Default │ │ │ │ ├── images │ │ │ │ ├── alert │ │ │ │ │ ├── bot.gif │ │ │ │ │ ├── close.gif │ │ │ │ │ ├── help.gif │ │ │ │ │ ├── info.gif │ │ │ │ │ ├── title.gif │ │ │ │ │ ├── corners.gif │ │ │ │ │ ├── title1.gif │ │ │ │ │ ├── important.gif │ │ │ │ │ └── cornersBlue.gif │ │ │ │ ├── share │ │ │ │ │ ├── card.gif │ │ │ │ │ ├── table.gif │ │ │ │ │ ├── tbg.gif │ │ │ │ │ ├── headbg.gif │ │ │ │ │ ├── table_c.gif │ │ │ │ │ ├── glass-bg.gif │ │ │ │ │ ├── hd-sprite.gif │ │ │ │ │ ├── left-btn.gif │ │ │ │ │ ├── right-btn.gif │ │ │ │ │ ├── information.png │ │ │ │ │ └── tool-sprites.gif │ │ │ │ ├── calendar │ │ │ │ │ ├── grid.png │ │ │ │ │ ├── tbg.gif │ │ │ │ │ ├── gridth.gif │ │ │ │ │ ├── headbg.gif │ │ │ │ │ ├── load-bg.png │ │ │ │ │ ├── combined.gif │ │ │ │ │ ├── bubble_combined.png │ │ │ │ │ └── indicator_web20_working.gif │ │ │ │ ├── dailog │ │ │ │ │ ├── headbg.gif │ │ │ │ │ ├── app-form.png │ │ │ │ │ ├── left-right.png │ │ │ │ │ ├── top-bottom.png │ │ │ │ │ ├── left-corners.png │ │ │ │ │ ├── right-corners.png │ │ │ │ │ └── tool-sprites.gif │ │ │ │ ├── dp │ │ │ │ │ ├── btn-arrow.gif │ │ │ │ │ └── btn-arrow-light.gif │ │ │ │ ├── dropdown │ │ │ │ │ ├── dropdown.gif │ │ │ │ │ └── dropdownhover.gif │ │ │ │ └── validation │ │ │ │ │ ├── accept.png │ │ │ │ │ ├── tooltop.gif │ │ │ │ │ ├── warning.gif │ │ │ │ │ └── exclamation.png │ │ │ │ ├── dropdown.css │ │ │ │ └── colorselect.css │ │ └── javascripts │ │ │ ├── Plugins │ │ │ ├── datepicker_lang_zh_CN.js │ │ │ ├── datepicker_lang_en_AU.js │ │ │ └── datepicker_lang_en_US.js │ │ │ └── lib │ │ │ └── jquery.easydrag.js │ └── _part.php └── php-newstyle │ ├── includes │ ├── commons.inc │ ├── conf.inc │ └── db.php │ ├── resources │ ├── test.php │ └── lang.it-it.php │ ├── createtable_mysql.sql │ ├── static │ ├── image │ │ ├── bg │ │ │ ├── tbg.gif │ │ │ ├── top_bg.png │ │ │ ├── btn_file.png │ │ │ ├── panel_bg.gif │ │ │ ├── text-bg.gif │ │ │ ├── topmenu_bg.png │ │ │ ├── invalid_line.gif │ │ │ └── rightTitle_bg.png │ │ ├── favicon.ico │ │ ├── icon │ │ │ └── s.gif │ │ ├── checkmark.png │ │ ├── plugin │ │ │ ├── dp │ │ │ │ ├── cal.gif │ │ │ │ ├── btn-arrow.gif │ │ │ │ └── btn-arrow-light.gif │ │ │ ├── share │ │ │ │ ├── del.gif │ │ │ │ ├── glass-bg.gif │ │ │ │ ├── hd-sprite.gif │ │ │ │ ├── left-btn.gif │ │ │ │ ├── right-btn.gif │ │ │ │ └── tool-sprites.gif │ │ │ ├── dropdown │ │ │ │ ├── tbg.gif │ │ │ │ ├── gridth.gif │ │ │ │ ├── uquery.gif │ │ │ │ └── dparrow.png │ │ │ ├── dailog │ │ │ │ ├── app-form.png │ │ │ │ ├── headbg.gif │ │ │ │ ├── left-right.png │ │ │ │ ├── top-bottom.png │ │ │ │ ├── left-corners.png │ │ │ │ ├── right-corners.png │ │ │ │ └── tool-sprites.gif │ │ │ └── validate │ │ │ │ ├── accept.png │ │ │ │ ├── tooltop.gif │ │ │ │ ├── tooltop2.gif │ │ │ │ ├── up_arrow.gif │ │ │ │ ├── warning.gif │ │ │ │ └── exclamation.png │ │ └── combined_v40_vr.png │ └── js │ │ ├── seaconfig.js │ │ └── locales │ │ ├── datepicker_lang_zh_cn.js │ │ └── datepicker_lang_en_us.js │ ├── config.yaml │ └── _part.php ├── doc └── images │ ├── Screenshot1.jpg │ └── Screenshot2.jpg ├── .gitignore └── LICENSE /example/nodejs/views/login.jade: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/nodejs/views/viewcal.jade: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/python/update.bat: -------------------------------------------------------------------------------- 1 | appcfg.py update ../xgcalendar -------------------------------------------------------------------------------- /example/python/no data run.bat: -------------------------------------------------------------------------------- 1 | dev_appserver.py -c ..\xgcalendar -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/App_GlobalResources/lang.en-AU.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/App_GlobalResources/lang.en-US.designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/App_GlobalResources/lang.zh-CN.Designer.cs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/php/includes/commons.inc: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /example/php-newstyle/includes/commons.inc: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /example/php-newstyle/resources/test.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /doc/images/Screenshot1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/doc/images/Screenshot1.jpg -------------------------------------------------------------------------------- /doc/images/Screenshot2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/doc/images/Screenshot2.jpg -------------------------------------------------------------------------------- /example/nodejs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/nodejs/favicon.ico -------------------------------------------------------------------------------- /example/python/images/bgs/ch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/bgs/ch.gif -------------------------------------------------------------------------------- /example/nodejs/note.md: -------------------------------------------------------------------------------- 1 | ## 调试 2 | node --debug-brk=5858 app && node-inspector 3 | 4 | ## TOLIST 5 | 国际化 6 | 登录验证 -------------------------------------------------------------------------------- /example/php/createtable_mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/createtable_mysql.sql -------------------------------------------------------------------------------- /example/python/images/bgs/plus1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/bgs/plus1.gif -------------------------------------------------------------------------------- /example/python/images/home/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/home/logo.gif -------------------------------------------------------------------------------- /example/python/images/icons/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/add.png -------------------------------------------------------------------------------- /example/python/images/icons/au.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/au.gif -------------------------------------------------------------------------------- /example/python/images/icons/cal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/cal.gif -------------------------------------------------------------------------------- /example/python/images/icons/cn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/cn.gif -------------------------------------------------------------------------------- /example/python/images/icons/us.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/us.gif -------------------------------------------------------------------------------- /example/php/resources/lang.it-IT.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/resources/lang.it-IT.php -------------------------------------------------------------------------------- /example/php/static/images/bgs/ch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/bgs/ch.gif -------------------------------------------------------------------------------- /example/python/images/bgs/headbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/bgs/headbg.gif -------------------------------------------------------------------------------- /example/python/images/bgs/minus1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/bgs/minus1.gif -------------------------------------------------------------------------------- /example/python/images/home/top_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/home/top_bg.jpg -------------------------------------------------------------------------------- /example/python/images/icons/appt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/appt.gif -------------------------------------------------------------------------------- /example/python/images/icons/clndr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/clndr.gif -------------------------------------------------------------------------------- /example/python/images/icons/date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/date.png -------------------------------------------------------------------------------- /example/python/images/icons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/edit.png -------------------------------------------------------------------------------- /example/python/images/icons/group.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/group.gif -------------------------------------------------------------------------------- /example/python/images/icons/ico1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/ico1.gif -------------------------------------------------------------------------------- /example/python/images/icons/table.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/table.gif -------------------------------------------------------------------------------- /example/python/images/icons/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/tick.png -------------------------------------------------------------------------------- /example/python/images/icons/view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/view.png -------------------------------------------------------------------------------- /example/aspnet/REFDLL/SubSonic.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/REFDLL/SubSonic.Core.dll -------------------------------------------------------------------------------- /example/nodejs/static/image/bg/tbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/nodejs/static/image/bg/tbg.gif -------------------------------------------------------------------------------- /example/nodejs/static/image/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/nodejs/static/image/favicon.ico -------------------------------------------------------------------------------- /example/nodejs/static/image/icon/s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/nodejs/static/image/icon/s.gif -------------------------------------------------------------------------------- /example/php/static/images/bgs/headbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/bgs/headbg.gif -------------------------------------------------------------------------------- /example/php/static/images/bgs/minus1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/bgs/minus1.gif -------------------------------------------------------------------------------- /example/php/static/images/bgs/plus1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/bgs/plus1.gif -------------------------------------------------------------------------------- /example/php/static/images/home/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/home/logo.gif -------------------------------------------------------------------------------- /example/php/static/images/icons/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/add.png -------------------------------------------------------------------------------- /example/php/static/images/icons/appt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/appt.gif -------------------------------------------------------------------------------- /example/php/static/images/icons/au.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/au.gif -------------------------------------------------------------------------------- /example/php/static/images/icons/cal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/cal.gif -------------------------------------------------------------------------------- /example/php/static/images/icons/cn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/cn.gif -------------------------------------------------------------------------------- /example/php/static/images/icons/date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/date.png -------------------------------------------------------------------------------- /example/php/static/images/icons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/edit.png -------------------------------------------------------------------------------- /example/php/static/images/icons/ico1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/ico1.gif -------------------------------------------------------------------------------- /example/php/static/images/icons/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/tick.png -------------------------------------------------------------------------------- /example/php/static/images/icons/us.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/us.gif -------------------------------------------------------------------------------- /example/php/static/images/icons/view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/view.png -------------------------------------------------------------------------------- /example/python/images/bgs/CardHeadbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/bgs/CardHeadbg.jpg -------------------------------------------------------------------------------- /example/python/images/bgs/CardHeadbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/bgs/CardHeadbg.png -------------------------------------------------------------------------------- /example/python/images/home/toolbarbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/home/toolbarbg.jpg -------------------------------------------------------------------------------- /example/python/images/icons/Item.Add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/Item.Add.gif -------------------------------------------------------------------------------- /example/python/images/icons/cal-day.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/cal-day.gif -------------------------------------------------------------------------------- /example/python/images/icons/cal-proc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/cal-proc.gif -------------------------------------------------------------------------------- /example/python/images/icons/cal-week.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/cal-week.gif -------------------------------------------------------------------------------- /example/python/images/icons/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/calendar.gif -------------------------------------------------------------------------------- /example/python/images/icons/calwrkwk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/calwrkwk.gif -------------------------------------------------------------------------------- /example/python/images/icons/canmtg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/canmtg.gif -------------------------------------------------------------------------------- /example/python/images/icons/date_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/date_add.png -------------------------------------------------------------------------------- /example/python/images/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/delete.png -------------------------------------------------------------------------------- /example/python/images/icons/msg_im.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/msg_im.gif -------------------------------------------------------------------------------- /example/python/images/icons/mtgreq.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/mtgreq.gif -------------------------------------------------------------------------------- /example/python/images/icons/pgrs-sm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/pgrs-sm.gif -------------------------------------------------------------------------------- /example/python/images/icons/table_c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/table_c.gif -------------------------------------------------------------------------------- /example/python/images/icons/table_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/table_r.png -------------------------------------------------------------------------------- /example/python/images/icons/turnback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/turnback.png -------------------------------------------------------------------------------- /example/nodejs/static/image/bg/text-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/nodejs/static/image/bg/text-bg.gif -------------------------------------------------------------------------------- /example/nodejs/static/image/bg/top_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/nodejs/static/image/bg/top_bg.png -------------------------------------------------------------------------------- /example/nodejs/static/image/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/nodejs/static/image/checkmark.png -------------------------------------------------------------------------------- /example/php-newstyle/createtable_mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php-newstyle/createtable_mysql.sql -------------------------------------------------------------------------------- /example/php/static/images/home/top_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/home/top_bg.jpg -------------------------------------------------------------------------------- /example/php/static/images/icons/canmtg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/canmtg.gif -------------------------------------------------------------------------------- /example/php/static/images/icons/clndr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/clndr.gif -------------------------------------------------------------------------------- /example/php/static/images/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/delete.png -------------------------------------------------------------------------------- /example/php/static/images/icons/group.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/group.gif -------------------------------------------------------------------------------- /example/php/static/images/icons/msg_im.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/msg_im.gif -------------------------------------------------------------------------------- /example/php/static/images/icons/mtgreq.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/mtgreq.gif -------------------------------------------------------------------------------- /example/php/static/images/icons/table.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/table.gif -------------------------------------------------------------------------------- /example/python/images/icons/Btn.Close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/Btn.Close.gif -------------------------------------------------------------------------------- /example/python/images/icons/Item.Edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/Item.Edit.gif -------------------------------------------------------------------------------- /example/python/images/icons/Item.Input.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/Item.Input.gif -------------------------------------------------------------------------------- /example/python/images/icons/Item.Save.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/Item.Save.gif -------------------------------------------------------------------------------- /example/python/images/icons/cacheClear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/cacheClear.png -------------------------------------------------------------------------------- /example/python/images/icons/cal-month.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/cal-month.gif -------------------------------------------------------------------------------- /example/python/images/icons/clndrsmll.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/clndrsmll.gif -------------------------------------------------------------------------------- /example/python/images/icons/group_add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/group_add.gif -------------------------------------------------------------------------------- /example/python/images/icons/indicator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/indicator.gif -------------------------------------------------------------------------------- /example/python/images/icons/msg_center.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/msg_center.gif -------------------------------------------------------------------------------- /example/python/images/icons/msg_email.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/msg_email.gif -------------------------------------------------------------------------------- /example/python/images/icons/msg_mobile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/msg_mobile.gif -------------------------------------------------------------------------------- /example/python/images/icons/rowdelete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/rowdelete.png -------------------------------------------------------------------------------- /example/python/images/icons/table_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/table_copy.png -------------------------------------------------------------------------------- /example/nodejs/static/image/bg/btn_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/nodejs/static/image/bg/btn_file.png -------------------------------------------------------------------------------- /example/nodejs/static/image/bg/panel_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/nodejs/static/image/bg/panel_bg.gif -------------------------------------------------------------------------------- /example/nodejs/static/image/bg/topmenu_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/nodejs/static/image/bg/topmenu_bg.png -------------------------------------------------------------------------------- /example/nodejs/static/image/plugin/dp/cal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/nodejs/static/image/plugin/dp/cal.gif -------------------------------------------------------------------------------- /example/php-newstyle/resources/lang.it-it.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php-newstyle/resources/lang.it-it.php -------------------------------------------------------------------------------- /example/php-newstyle/static/image/bg/tbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php-newstyle/static/image/bg/tbg.gif -------------------------------------------------------------------------------- /example/php-newstyle/static/image/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php-newstyle/static/image/favicon.ico -------------------------------------------------------------------------------- /example/php-newstyle/static/image/icon/s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php-newstyle/static/image/icon/s.gif -------------------------------------------------------------------------------- /example/php/static/images/bgs/CardHeadbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/bgs/CardHeadbg.jpg -------------------------------------------------------------------------------- /example/php/static/images/bgs/CardHeadbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/bgs/CardHeadbg.png -------------------------------------------------------------------------------- /example/php/static/images/btn_donate_LG.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/btn_donate_LG.gif -------------------------------------------------------------------------------- /example/php/static/images/home/toolbarbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/home/toolbarbg.jpg -------------------------------------------------------------------------------- /example/php/static/images/icons/Btn.Close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/Btn.Close.gif -------------------------------------------------------------------------------- /example/php/static/images/icons/Item.Add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/Item.Add.gif -------------------------------------------------------------------------------- /example/php/static/images/icons/Item.Edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/Item.Edit.gif -------------------------------------------------------------------------------- /example/php/static/images/icons/Item.Save.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/Item.Save.gif -------------------------------------------------------------------------------- /example/php/static/images/icons/cal-day.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/cal-day.gif -------------------------------------------------------------------------------- /example/php/static/images/icons/cal-month.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/cal-month.gif -------------------------------------------------------------------------------- /example/php/static/images/icons/cal-proc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/cal-proc.gif -------------------------------------------------------------------------------- /example/php/static/images/icons/cal-week.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/cal-week.gif -------------------------------------------------------------------------------- /example/php/static/images/icons/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/calendar.gif -------------------------------------------------------------------------------- /example/php/static/images/icons/calwrkwk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/calwrkwk.gif -------------------------------------------------------------------------------- /example/php/static/images/icons/clndrsmll.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/clndrsmll.gif -------------------------------------------------------------------------------- /example/php/static/images/icons/date_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/date_add.png -------------------------------------------------------------------------------- /example/php/static/images/icons/group_add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/group_add.gif -------------------------------------------------------------------------------- /example/php/static/images/icons/indicator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/indicator.gif -------------------------------------------------------------------------------- /example/php/static/images/icons/msg_email.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/msg_email.gif -------------------------------------------------------------------------------- /example/php/static/images/icons/pgrs-sm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/pgrs-sm.gif -------------------------------------------------------------------------------- /example/php/static/images/icons/rowdelete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/rowdelete.png -------------------------------------------------------------------------------- /example/php/static/images/icons/table_c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/table_c.gif -------------------------------------------------------------------------------- /example/php/static/images/icons/table_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/table_r.png -------------------------------------------------------------------------------- /example/php/static/images/icons/turnback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/turnback.png -------------------------------------------------------------------------------- /example/python/images/icons/Item.Delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/Item.Delete.gif -------------------------------------------------------------------------------- /example/python/images/icons/Item.Search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/Item.Search.gif -------------------------------------------------------------------------------- /example/python/images/icons/cal-rsc-perm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/cal-rsc-perm.gif -------------------------------------------------------------------------------- /example/python/images/icons/cal-wk-week.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/cal-wk-week.gif -------------------------------------------------------------------------------- /example/python/images/icons/date_reflash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/date_reflash.png -------------------------------------------------------------------------------- /example/python/images/icons/folder_user.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/folder_user.gif -------------------------------------------------------------------------------- /example/python/images/icons/mtgreq-cancel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/mtgreq-cancel.gif -------------------------------------------------------------------------------- /example/python/images/icons/mtgrsp-accept.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/mtgrsp-accept.gif -------------------------------------------------------------------------------- /example/python/images/icons/mtgrsp-tent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/mtgrsp-tent.gif -------------------------------------------------------------------------------- /example/python/images/icons/table_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/table_refresh.png -------------------------------------------------------------------------------- /example/python/themes/Shared/images/sorry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Shared/images/sorry.jpg -------------------------------------------------------------------------------- /example/nodejs/static/image/bg/invalid_line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/nodejs/static/image/bg/invalid_line.gif -------------------------------------------------------------------------------- /example/nodejs/static/image/combined_v40_vr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/nodejs/static/image/combined_v40_vr.png -------------------------------------------------------------------------------- /example/php-newstyle/static/image/bg/top_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php-newstyle/static/image/bg/top_bg.png -------------------------------------------------------------------------------- /example/php-newstyle/static/image/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php-newstyle/static/image/checkmark.png -------------------------------------------------------------------------------- /example/php/static/images/icons/Item.Delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/Item.Delete.gif -------------------------------------------------------------------------------- /example/php/static/images/icons/Item.Input.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/Item.Input.gif -------------------------------------------------------------------------------- /example/php/static/images/icons/Item.Search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/Item.Search.gif -------------------------------------------------------------------------------- /example/php/static/images/icons/cacheClear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/cacheClear.png -------------------------------------------------------------------------------- /example/php/static/images/icons/cal-wk-week.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/cal-wk-week.gif -------------------------------------------------------------------------------- /example/php/static/images/icons/folder_user.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/folder_user.gif -------------------------------------------------------------------------------- /example/php/static/images/icons/msg_center.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/msg_center.gif -------------------------------------------------------------------------------- /example/php/static/images/icons/msg_mobile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/msg_mobile.gif -------------------------------------------------------------------------------- /example/php/static/images/icons/mtgrsp-tent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/mtgrsp-tent.gif -------------------------------------------------------------------------------- /example/php/static/images/icons/table_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/table_copy.png -------------------------------------------------------------------------------- /example/python/images/icons/mtgrsp-decline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/mtgrsp-decline.gif -------------------------------------------------------------------------------- /example/python/images/icons/resultset_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/resultset_next.png -------------------------------------------------------------------------------- /example/nodejs/static/image/bg/rightTitle_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/nodejs/static/image/bg/rightTitle_bg.png -------------------------------------------------------------------------------- /example/nodejs/static/image/plugin/share/del.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/nodejs/static/image/plugin/share/del.gif -------------------------------------------------------------------------------- /example/php-newstyle/static/image/bg/btn_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php-newstyle/static/image/bg/btn_file.png -------------------------------------------------------------------------------- /example/php-newstyle/static/image/bg/panel_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php-newstyle/static/image/bg/panel_bg.gif -------------------------------------------------------------------------------- /example/php-newstyle/static/image/bg/text-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php-newstyle/static/image/bg/text-bg.gif -------------------------------------------------------------------------------- /example/php/includes/conf.inc: -------------------------------------------------------------------------------- 1 | 7 | -------------------------------------------------------------------------------- /example/php/static/images/icons/cal-rsc-perm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/cal-rsc-perm.gif -------------------------------------------------------------------------------- /example/php/static/images/icons/date_reflash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/date_reflash.png -------------------------------------------------------------------------------- /example/php/static/images/icons/mtgreq-cancel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/mtgreq-cancel.gif -------------------------------------------------------------------------------- /example/php/static/images/icons/mtgrsp-accept.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/mtgrsp-accept.gif -------------------------------------------------------------------------------- /example/php/static/images/icons/mtgrsp-decline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/mtgrsp-decline.gif -------------------------------------------------------------------------------- /example/php/static/images/icons/resultset_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/resultset_next.png -------------------------------------------------------------------------------- /example/php/static/images/icons/table_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/table_refresh.png -------------------------------------------------------------------------------- /example/php/static/theme/Shared/images/sorry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Shared/images/sorry.jpg -------------------------------------------------------------------------------- /example/python/images/icons/circle_animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/circle_animation.gif -------------------------------------------------------------------------------- /example/python/images/icons/resultset_previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/images/icons/resultset_previous.png -------------------------------------------------------------------------------- /example/python/themes/Default/images/alert/bot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Default/images/alert/bot.gif -------------------------------------------------------------------------------- /example/python/themes/Default/images/share/tbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Default/images/share/tbg.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="AzureCalendarMvcWeb.MvcApplication" Language="C#" %> 2 | -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/bgs/ch.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/bgs/ch.gif -------------------------------------------------------------------------------- /example/nodejs/static/image/plugin/dailog/headbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/nodejs/static/image/plugin/dailog/headbg.gif -------------------------------------------------------------------------------- /example/nodejs/static/image/plugin/dp/btn-arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/nodejs/static/image/plugin/dp/btn-arrow.gif -------------------------------------------------------------------------------- /example/nodejs/static/image/plugin/dropdown/tbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/nodejs/static/image/plugin/dropdown/tbg.gif -------------------------------------------------------------------------------- /example/php-newstyle/static/image/bg/topmenu_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php-newstyle/static/image/bg/topmenu_bg.png -------------------------------------------------------------------------------- /example/php-newstyle/static/image/plugin/dp/cal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php-newstyle/static/image/plugin/dp/cal.gif -------------------------------------------------------------------------------- /example/php/static/images/icons/circle_animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/circle_animation.gif -------------------------------------------------------------------------------- /example/python/themes/Default/images/alert/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Default/images/alert/close.gif -------------------------------------------------------------------------------- /example/python/themes/Default/images/alert/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Default/images/alert/help.gif -------------------------------------------------------------------------------- /example/python/themes/Default/images/alert/info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Default/images/alert/info.gif -------------------------------------------------------------------------------- /example/python/themes/Default/images/alert/title.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Default/images/alert/title.gif -------------------------------------------------------------------------------- /example/python/themes/Default/images/share/card.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Default/images/share/card.gif -------------------------------------------------------------------------------- /example/python/themes/Default/images/share/table.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Default/images/share/table.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/bgs/plus1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/bgs/plus1.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/home/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/home/logo.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/add.png -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/au.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/au.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/cal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/cal.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/cn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/cn.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/us.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/us.gif -------------------------------------------------------------------------------- /example/nodejs/static/image/plugin/dailog/app-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/nodejs/static/image/plugin/dailog/app-form.png -------------------------------------------------------------------------------- /example/nodejs/static/image/plugin/dropdown/dparrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/nodejs/static/image/plugin/dropdown/dparrow.png -------------------------------------------------------------------------------- /example/nodejs/static/image/plugin/dropdown/gridth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/nodejs/static/image/plugin/dropdown/gridth.gif -------------------------------------------------------------------------------- /example/nodejs/static/image/plugin/dropdown/uquery.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/nodejs/static/image/plugin/dropdown/uquery.gif -------------------------------------------------------------------------------- /example/nodejs/static/image/plugin/share/glass-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/nodejs/static/image/plugin/share/glass-bg.gif -------------------------------------------------------------------------------- /example/nodejs/static/image/plugin/share/hd-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/nodejs/static/image/plugin/share/hd-sprite.gif -------------------------------------------------------------------------------- /example/nodejs/static/image/plugin/share/left-btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/nodejs/static/image/plugin/share/left-btn.gif -------------------------------------------------------------------------------- /example/nodejs/static/image/plugin/share/right-btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/nodejs/static/image/plugin/share/right-btn.gif -------------------------------------------------------------------------------- /example/nodejs/static/image/plugin/validate/accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/nodejs/static/image/plugin/validate/accept.png -------------------------------------------------------------------------------- /example/nodejs/static/image/plugin/validate/tooltop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/nodejs/static/image/plugin/validate/tooltop.gif -------------------------------------------------------------------------------- /example/nodejs/static/image/plugin/validate/warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/nodejs/static/image/plugin/validate/warning.gif -------------------------------------------------------------------------------- /example/php-newstyle/static/image/bg/invalid_line.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php-newstyle/static/image/bg/invalid_line.gif -------------------------------------------------------------------------------- /example/php-newstyle/static/image/bg/rightTitle_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php-newstyle/static/image/bg/rightTitle_bg.png -------------------------------------------------------------------------------- /example/php-newstyle/static/image/combined_v40_vr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php-newstyle/static/image/combined_v40_vr.png -------------------------------------------------------------------------------- /example/php-newstyle/static/image/plugin/share/del.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php-newstyle/static/image/plugin/share/del.gif -------------------------------------------------------------------------------- /example/php/static/images/icons/resultset_previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/images/icons/resultset_previous.png -------------------------------------------------------------------------------- /example/php/static/theme/Default/images/alert/bot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Default/images/alert/bot.gif -------------------------------------------------------------------------------- /example/php/static/theme/Default/images/alert/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Default/images/alert/close.gif -------------------------------------------------------------------------------- /example/php/static/theme/Default/images/alert/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Default/images/alert/help.gif -------------------------------------------------------------------------------- /example/php/static/theme/Default/images/alert/info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Default/images/alert/info.gif -------------------------------------------------------------------------------- /example/php/static/theme/Default/images/alert/title.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Default/images/alert/title.gif -------------------------------------------------------------------------------- /example/php/static/theme/Default/images/share/card.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Default/images/share/card.gif -------------------------------------------------------------------------------- /example/php/static/theme/Default/images/share/table.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Default/images/share/table.gif -------------------------------------------------------------------------------- /example/php/static/theme/Default/images/share/tbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Default/images/share/tbg.gif -------------------------------------------------------------------------------- /example/python/themes/Default/images/alert/corners.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Default/images/alert/corners.gif -------------------------------------------------------------------------------- /example/python/themes/Default/images/alert/title1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Default/images/alert/title1.gif -------------------------------------------------------------------------------- /example/python/themes/Default/images/calendar/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Default/images/calendar/grid.png -------------------------------------------------------------------------------- /example/python/themes/Default/images/calendar/tbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Default/images/calendar/tbg.gif -------------------------------------------------------------------------------- /example/python/themes/Default/images/dailog/headbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Default/images/dailog/headbg.gif -------------------------------------------------------------------------------- /example/python/themes/Default/images/dp/btn-arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Default/images/dp/btn-arrow.gif -------------------------------------------------------------------------------- /example/python/themes/Default/images/share/glass-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Default/images/share/glass-bg.gif -------------------------------------------------------------------------------- /example/python/themes/Default/images/share/headbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Default/images/share/headbg.gif -------------------------------------------------------------------------------- /example/python/themes/Default/images/share/left-btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Default/images/share/left-btn.gif -------------------------------------------------------------------------------- /example/python/themes/Default/images/share/table_c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Default/images/share/table_c.gif -------------------------------------------------------------------------------- /example/python/themes/Shared/images/blackbird_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Shared/images/blackbird_icons.png -------------------------------------------------------------------------------- /example/python/themes/Shared/images/blackbird_panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Shared/images/blackbird_panel.png -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/bgs/headbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/bgs/headbg.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/bgs/minus1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/bgs/minus1.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/home/top_bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/home/top_bg.jpg -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/appt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/appt.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/clndr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/clndr.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/date.png -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/edit.png -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/group.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/group.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/ico1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/ico1.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/table.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/table.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/tick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/tick.png -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/view.png -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/bin/SubSonic.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/bin/SubSonic.Core.dll -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/bin/System.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/bin/System.Web.Mvc.dll -------------------------------------------------------------------------------- /example/nodejs/static/image/plugin/dailog/left-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/nodejs/static/image/plugin/dailog/left-right.png -------------------------------------------------------------------------------- /example/nodejs/static/image/plugin/dailog/top-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/nodejs/static/image/plugin/dailog/top-bottom.png -------------------------------------------------------------------------------- /example/nodejs/static/image/plugin/dp/btn-arrow-light.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/nodejs/static/image/plugin/dp/btn-arrow-light.gif -------------------------------------------------------------------------------- /example/nodejs/static/image/plugin/share/tool-sprites.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/nodejs/static/image/plugin/share/tool-sprites.gif -------------------------------------------------------------------------------- /example/nodejs/static/image/plugin/validate/tooltop2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/nodejs/static/image/plugin/validate/tooltop2.gif -------------------------------------------------------------------------------- /example/nodejs/static/image/plugin/validate/up_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/nodejs/static/image/plugin/validate/up_arrow.gif -------------------------------------------------------------------------------- /example/php-newstyle/static/image/plugin/dp/btn-arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php-newstyle/static/image/plugin/dp/btn-arrow.gif -------------------------------------------------------------------------------- /example/php-newstyle/static/image/plugin/dropdown/tbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php-newstyle/static/image/plugin/dropdown/tbg.gif -------------------------------------------------------------------------------- /example/php/static/theme/Default/images/alert/corners.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Default/images/alert/corners.gif -------------------------------------------------------------------------------- /example/php/static/theme/Default/images/alert/title1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Default/images/alert/title1.gif -------------------------------------------------------------------------------- /example/php/static/theme/Default/images/calendar/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Default/images/calendar/grid.png -------------------------------------------------------------------------------- /example/php/static/theme/Default/images/calendar/tbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Default/images/calendar/tbg.gif -------------------------------------------------------------------------------- /example/php/static/theme/Default/images/dailog/headbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Default/images/dailog/headbg.gif -------------------------------------------------------------------------------- /example/php/static/theme/Default/images/dp/btn-arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Default/images/dp/btn-arrow.gif -------------------------------------------------------------------------------- /example/php/static/theme/Default/images/share/headbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Default/images/share/headbg.gif -------------------------------------------------------------------------------- /example/php/static/theme/Default/images/share/table_c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Default/images/share/table_c.gif -------------------------------------------------------------------------------- /example/python/themes/Default/images/alert/important.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Default/images/alert/important.gif -------------------------------------------------------------------------------- /example/python/themes/Default/images/calendar/gridth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Default/images/calendar/gridth.gif -------------------------------------------------------------------------------- /example/python/themes/Default/images/calendar/headbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Default/images/calendar/headbg.gif -------------------------------------------------------------------------------- /example/python/themes/Default/images/calendar/load-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Default/images/calendar/load-bg.png -------------------------------------------------------------------------------- /example/python/themes/Default/images/dailog/app-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Default/images/dailog/app-form.png -------------------------------------------------------------------------------- /example/python/themes/Default/images/share/hd-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Default/images/share/hd-sprite.gif -------------------------------------------------------------------------------- /example/python/themes/Default/images/share/right-btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Default/images/share/right-btn.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/bgs/CardHeadbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/bgs/CardHeadbg.jpg -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/bgs/CardHeadbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/bgs/CardHeadbg.png -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/home/toolbarbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/home/toolbarbg.jpg -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/Item.Add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/Item.Add.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/cal-day.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/cal-day.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/cal-proc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/cal-proc.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/cal-week.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/cal-week.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/calendar.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/calwrkwk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/calwrkwk.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/canmtg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/canmtg.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/date_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/date_add.png -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/delete.png -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/msg_im.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/msg_im.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/mtgreq.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/mtgreq.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/pgrs-sm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/pgrs-sm.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/table_c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/table_c.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/table_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/table_r.png -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/turnback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/turnback.png -------------------------------------------------------------------------------- /example/nodejs/static/image/plugin/dailog/left-corners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/nodejs/static/image/plugin/dailog/left-corners.png -------------------------------------------------------------------------------- /example/nodejs/static/image/plugin/dailog/right-corners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/nodejs/static/image/plugin/dailog/right-corners.png -------------------------------------------------------------------------------- /example/nodejs/static/image/plugin/dailog/tool-sprites.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/nodejs/static/image/plugin/dailog/tool-sprites.gif -------------------------------------------------------------------------------- /example/nodejs/static/image/plugin/validate/exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/nodejs/static/image/plugin/validate/exclamation.png -------------------------------------------------------------------------------- /example/php-newstyle/static/image/plugin/dailog/app-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php-newstyle/static/image/plugin/dailog/app-form.png -------------------------------------------------------------------------------- /example/php-newstyle/static/image/plugin/dailog/headbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php-newstyle/static/image/plugin/dailog/headbg.gif -------------------------------------------------------------------------------- /example/php-newstyle/static/image/plugin/dropdown/gridth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php-newstyle/static/image/plugin/dropdown/gridth.gif -------------------------------------------------------------------------------- /example/php-newstyle/static/image/plugin/dropdown/uquery.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php-newstyle/static/image/plugin/dropdown/uquery.gif -------------------------------------------------------------------------------- /example/php-newstyle/static/image/plugin/share/glass-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php-newstyle/static/image/plugin/share/glass-bg.gif -------------------------------------------------------------------------------- /example/php-newstyle/static/image/plugin/share/hd-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php-newstyle/static/image/plugin/share/hd-sprite.gif -------------------------------------------------------------------------------- /example/php-newstyle/static/image/plugin/share/left-btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php-newstyle/static/image/plugin/share/left-btn.gif -------------------------------------------------------------------------------- /example/php-newstyle/static/image/plugin/share/right-btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php-newstyle/static/image/plugin/share/right-btn.gif -------------------------------------------------------------------------------- /example/php-newstyle/static/image/plugin/validate/accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php-newstyle/static/image/plugin/validate/accept.png -------------------------------------------------------------------------------- /example/php/static/theme/Default/images/alert/important.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Default/images/alert/important.gif -------------------------------------------------------------------------------- /example/php/static/theme/Default/images/calendar/gridth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Default/images/calendar/gridth.gif -------------------------------------------------------------------------------- /example/php/static/theme/Default/images/calendar/headbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Default/images/calendar/headbg.gif -------------------------------------------------------------------------------- /example/php/static/theme/Default/images/calendar/load-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Default/images/calendar/load-bg.png -------------------------------------------------------------------------------- /example/php/static/theme/Default/images/dailog/app-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Default/images/dailog/app-form.png -------------------------------------------------------------------------------- /example/php/static/theme/Default/images/share/glass-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Default/images/share/glass-bg.gif -------------------------------------------------------------------------------- /example/php/static/theme/Default/images/share/hd-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Default/images/share/hd-sprite.gif -------------------------------------------------------------------------------- /example/php/static/theme/Default/images/share/left-btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Default/images/share/left-btn.gif -------------------------------------------------------------------------------- /example/php/static/theme/Default/images/share/right-btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Default/images/share/right-btn.gif -------------------------------------------------------------------------------- /example/php/static/theme/Shared/images/blackbird_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Shared/images/blackbird_icons.png -------------------------------------------------------------------------------- /example/php/static/theme/Shared/images/blackbird_panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Shared/images/blackbird_panel.png -------------------------------------------------------------------------------- /example/python/themes/Default/images/alert/cornersBlue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Default/images/alert/cornersBlue.gif -------------------------------------------------------------------------------- /example/python/themes/Default/images/calendar/combined.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Default/images/calendar/combined.gif -------------------------------------------------------------------------------- /example/python/themes/Default/images/dailog/left-corners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Default/images/dailog/left-corners.png -------------------------------------------------------------------------------- /example/python/themes/Default/images/dailog/left-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Default/images/dailog/left-right.png -------------------------------------------------------------------------------- /example/python/themes/Default/images/dailog/tool-sprites.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Default/images/dailog/tool-sprites.gif -------------------------------------------------------------------------------- /example/python/themes/Default/images/dailog/top-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Default/images/dailog/top-bottom.png -------------------------------------------------------------------------------- /example/python/themes/Default/images/dp/btn-arrow-light.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Default/images/dp/btn-arrow-light.gif -------------------------------------------------------------------------------- /example/python/themes/Default/images/dropdown/dropdown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Default/images/dropdown/dropdown.gif -------------------------------------------------------------------------------- /example/python/themes/Default/images/share/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Default/images/share/information.png -------------------------------------------------------------------------------- /example/python/themes/Default/images/share/tool-sprites.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Default/images/share/tool-sprites.gif -------------------------------------------------------------------------------- /example/python/themes/Default/images/validation/accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Default/images/validation/accept.png -------------------------------------------------------------------------------- /example/python/themes/Default/images/validation/tooltop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Default/images/validation/tooltop.gif -------------------------------------------------------------------------------- /example/python/themes/Default/images/validation/warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Default/images/validation/warning.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/Btn.Close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/Btn.Close.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/Item.Edit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/Item.Edit.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/Item.Input.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/Item.Input.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/Item.Save.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/Item.Save.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/cacheClear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/cacheClear.png -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/cal-month.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/cal-month.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/clndrsmll.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/clndrsmll.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/group_add.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/group_add.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/indicator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/indicator.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/msg_center.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/msg_center.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/msg_email.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/msg_email.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/msg_mobile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/msg_mobile.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/rowdelete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/rowdelete.png -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/table_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/table_copy.png -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/bin/AzureCalendarMvcWeb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/bin/AzureCalendarMvcWeb.dll -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/bin/AzureCalendarMvcWeb.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/bin/AzureCalendarMvcWeb.pdb -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/bin/System.Web.Routing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/bin/System.Web.Routing.dll -------------------------------------------------------------------------------- /example/php-newstyle/static/image/plugin/dailog/left-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php-newstyle/static/image/plugin/dailog/left-right.png -------------------------------------------------------------------------------- /example/php-newstyle/static/image/plugin/dailog/top-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php-newstyle/static/image/plugin/dailog/top-bottom.png -------------------------------------------------------------------------------- /example/php-newstyle/static/image/plugin/dropdown/dparrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php-newstyle/static/image/plugin/dropdown/dparrow.png -------------------------------------------------------------------------------- /example/php-newstyle/static/image/plugin/validate/tooltop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php-newstyle/static/image/plugin/validate/tooltop.gif -------------------------------------------------------------------------------- /example/php-newstyle/static/image/plugin/validate/tooltop2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php-newstyle/static/image/plugin/validate/tooltop2.gif -------------------------------------------------------------------------------- /example/php-newstyle/static/image/plugin/validate/up_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php-newstyle/static/image/plugin/validate/up_arrow.gif -------------------------------------------------------------------------------- /example/php-newstyle/static/image/plugin/validate/warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php-newstyle/static/image/plugin/validate/warning.gif -------------------------------------------------------------------------------- /example/php/static/theme/Default/images/alert/cornersBlue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Default/images/alert/cornersBlue.gif -------------------------------------------------------------------------------- /example/php/static/theme/Default/images/calendar/combined.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Default/images/calendar/combined.gif -------------------------------------------------------------------------------- /example/php/static/theme/Default/images/dailog/left-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Default/images/dailog/left-right.png -------------------------------------------------------------------------------- /example/php/static/theme/Default/images/dailog/top-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Default/images/dailog/top-bottom.png -------------------------------------------------------------------------------- /example/php/static/theme/Default/images/dp/btn-arrow-light.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Default/images/dp/btn-arrow-light.gif -------------------------------------------------------------------------------- /example/php/static/theme/Default/images/dropdown/dropdown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Default/images/dropdown/dropdown.gif -------------------------------------------------------------------------------- /example/php/static/theme/Default/images/share/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Default/images/share/information.png -------------------------------------------------------------------------------- /example/php/static/theme/Default/images/share/tool-sprites.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Default/images/share/tool-sprites.gif -------------------------------------------------------------------------------- /example/php/static/theme/Default/images/validation/accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Default/images/validation/accept.png -------------------------------------------------------------------------------- /example/php/static/theme/Default/images/validation/tooltop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Default/images/validation/tooltop.gif -------------------------------------------------------------------------------- /example/php/static/theme/Default/images/validation/warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Default/images/validation/warning.gif -------------------------------------------------------------------------------- /example/python/themes/Default/images/dailog/right-corners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Default/images/dailog/right-corners.png -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/Item.Delete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/Item.Delete.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/Item.Search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/Item.Search.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/cal-rsc-perm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/cal-rsc-perm.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/cal-wk-week.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/cal-wk-week.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/date_reflash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/date_reflash.png -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/folder_user.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/folder_user.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/mtgreq-cancel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/mtgreq-cancel.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/mtgrsp-accept.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/mtgrsp-accept.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/mtgrsp-tent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/mtgrsp-tent.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/table_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/table_refresh.png -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Shared/images/sorry.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Shared/images/sorry.jpg -------------------------------------------------------------------------------- /example/php-newstyle/static/image/plugin/dailog/left-corners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php-newstyle/static/image/plugin/dailog/left-corners.png -------------------------------------------------------------------------------- /example/php-newstyle/static/image/plugin/dailog/right-corners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php-newstyle/static/image/plugin/dailog/right-corners.png -------------------------------------------------------------------------------- /example/php-newstyle/static/image/plugin/dailog/tool-sprites.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php-newstyle/static/image/plugin/dailog/tool-sprites.gif -------------------------------------------------------------------------------- /example/php-newstyle/static/image/plugin/dp/btn-arrow-light.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php-newstyle/static/image/plugin/dp/btn-arrow-light.gif -------------------------------------------------------------------------------- /example/php-newstyle/static/image/plugin/share/tool-sprites.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php-newstyle/static/image/plugin/share/tool-sprites.gif -------------------------------------------------------------------------------- /example/php-newstyle/static/image/plugin/validate/exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php-newstyle/static/image/plugin/validate/exclamation.png -------------------------------------------------------------------------------- /example/php/static/theme/Default/images/dailog/left-corners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Default/images/dailog/left-corners.png -------------------------------------------------------------------------------- /example/php/static/theme/Default/images/dailog/right-corners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Default/images/dailog/right-corners.png -------------------------------------------------------------------------------- /example/php/static/theme/Default/images/dailog/tool-sprites.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Default/images/dailog/tool-sprites.gif -------------------------------------------------------------------------------- /example/python/themes/Default/images/calendar/bubble_combined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Default/images/calendar/bubble_combined.png -------------------------------------------------------------------------------- /example/python/themes/Default/images/dropdown/dropdownhover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Default/images/dropdown/dropdownhover.gif -------------------------------------------------------------------------------- /example/python/themes/Default/images/validation/exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Default/images/validation/exclamation.png -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/mtgrsp-decline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/mtgrsp-decline.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/resultset_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/resultset_next.png -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/bin/System.Web.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/bin/System.Web.Abstractions.dll -------------------------------------------------------------------------------- /example/php/static/theme/Default/images/dropdown/dropdownhover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Default/images/dropdown/dropdownhover.gif -------------------------------------------------------------------------------- /example/php/static/theme/Default/images/validation/exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Default/images/validation/exclamation.png -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/circle_animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/circle_animation.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Images/icons/resultset_previous.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Images/icons/resultset_previous.png -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/alert/bot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/alert/bot.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/alert/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/alert/help.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/alert/info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/alert/info.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/share/card.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/share/card.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/share/tbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/share/tbg.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/obj/Debug/AzureCalendarMvcWeb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/obj/Debug/AzureCalendarMvcWeb.dll -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/obj/Debug/AzureCalendarMvcWeb.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/obj/Debug/AzureCalendarMvcWeb.pdb -------------------------------------------------------------------------------- /example/php/static/theme/Default/images/calendar/bubble_combined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Default/images/calendar/bubble_combined.png -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/alert/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/alert/close.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/alert/title.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/alert/title.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/alert/title1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/alert/title1.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/calendar/tbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/calendar/tbg.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/dp/btn-arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/dp/btn-arrow.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/share/headbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/share/headbg.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/share/table.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/share/table.gif -------------------------------------------------------------------------------- /example/php-newstyle/config.yaml: -------------------------------------------------------------------------------- 1 | name: xgcalendar 2 | version: 1 3 | #cron: 4 | # - description: cron test 5 | # url: index.php 6 | # schedule: every 43 mins 7 | # timezone: Beijing -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/alert/corners.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/alert/corners.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/alert/important.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/alert/important.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/calendar/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/calendar/grid.png -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/calendar/gridth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/calendar/gridth.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/calendar/headbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/calendar/headbg.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/dailog/app-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/dailog/app-form.png -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/dailog/headbg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/dailog/headbg.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/share/glass-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/share/glass-bg.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/share/hd-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/share/hd-sprite.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/share/left-btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/share/left-btn.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/share/right-btn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/share/right-btn.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/share/table_c.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/share/table_c.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Shared/images/blackbird_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Shared/images/blackbird_icons.png -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Shared/images/blackbird_panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Shared/images/blackbird_panel.png -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/obj/Debug/ResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/obj/Debug/ResolveAssemblyReference.cache -------------------------------------------------------------------------------- /example/nodejs/routes/install.js: -------------------------------------------------------------------------------- 1 | var installdb = require('../libs/installdb'); 2 | 3 | exports.index = function(req, res){ 4 | installdb.installdb(); 5 | res.send("db setup complete!"); 6 | }; -------------------------------------------------------------------------------- /example/python/themes/Default/images/calendar/indicator_web20_working.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/python/themes/Default/images/calendar/indicator_web20_working.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/alert/cornersBlue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/alert/cornersBlue.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/calendar/combined.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/calendar/combined.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/calendar/load-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/calendar/load-bg.png -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/dailog/left-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/dailog/left-right.png -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/dailog/top-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/dailog/top-bottom.png -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/dropdown/dropdown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/dropdown/dropdown.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/share/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/share/information.png -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/validation/accept.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/validation/accept.png -------------------------------------------------------------------------------- /example/php/static/theme/Default/images/calendar/indicator_web20_working.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/php/static/theme/Default/images/calendar/indicator_web20_working.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/dailog/left-corners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/dailog/left-corners.png -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/dailog/right-corners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/dailog/right-corners.png -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/dailog/tool-sprites.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/dailog/tool-sprites.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/dp/btn-arrow-light.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/dp/btn-arrow-light.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/share/tool-sprites.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/share/tool-sprites.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/validation/tooltop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/validation/tooltop.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/validation/warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/validation/warning.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/dropdown/dropdownhover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/dropdown/dropdownhover.gif -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/validation/exclamation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/validation/exclamation.png -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/calendar/bubble_combined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/calendar/bubble_combined.png -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/calendar/indicator_web20_working.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanye/xgcalendar/HEAD/example/aspnet/AzureCalendarMvcWeb/Theme/Default/images/calendar/indicator_web20_working.gif -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Windows image file caches 2 | Thumbs.db 3 | ehthumbs.db 4 | 5 | # Folder config file 6 | Desktop.ini 7 | 8 | # Recycle Bin used on file shares 9 | $RECYCLE.BIN/ 10 | 11 | 12 | .DS_Store 13 | node_modules 14 | *.sublime-project 15 | *.sublime-workspace -------------------------------------------------------------------------------- /example/nodejs/views/layout.jade: -------------------------------------------------------------------------------- 1 | doctype 5 2 | html 3 | head 4 | title= title 5 | meta(http-equiv='Content-Type',content='text/html; charset=UTF-8') 6 | link(rel='stylesheet', href='/css/main.css') 7 | block headcontent 8 | body 9 | block content 10 | block jscontent -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Default.aspx: -------------------------------------------------------------------------------- 1 | <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="AzureCalendarMvcWeb._Default" %> 2 | 3 | <%-- Please do not delete this file. It is used to ensure that ASP.NET MVC is activated by IIS when a user makes a "/" request to the server. --%> 4 | -------------------------------------------------------------------------------- /example/php-newstyle/includes/conf.inc: -------------------------------------------------------------------------------- 1 | 12 | -------------------------------------------------------------------------------- /example/nodejs/routes/index.js: -------------------------------------------------------------------------------- 1 | 2 | /* 3 | * GET home page. 4 | */ 5 | var util = require('util'); 6 | exports.index = function(req, res){ 7 | //res.send(util.format("\\/(Date(%d))\\/",new Date().getTime())); 8 | res.redirect("/calendar"); 9 | //res.render('index', { title: 'Cloud Foundry',data:'new world coming!' }); 10 | }; -------------------------------------------------------------------------------- /example/nodejs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "xgcalendar", 3 | "version": "0.0.1", 4 | "private": true, 5 | "scripts": { 6 | "start": "node app" 7 | }, 8 | "dependencies": { 9 | "express": "3.0.6", 10 | "jade": "*", 11 | "mysql":"*", 12 | "date-utils":"*", 13 | "express-validator":"*", 14 | "i18n":"*" 15 | } 16 | } -------------------------------------------------------------------------------- /example/php/static/theme/Shared/Error.css: -------------------------------------------------------------------------------- 1 | body 2 | { 3 | background:#fff; 4 | font-size:12px; 5 | } 6 | 7 | .Error 8 | { 9 | padding-left:180px; 10 | background:url("images/sorry.jpg") no-repeat left top; 11 | height:400px; 12 | } 13 | .Error .head 14 | { 15 | font-size:18px; 16 | font-weight:bold; 17 | } 18 | .Error .detail 19 | { 20 | color:Red; 21 | padding-top:10px; 22 | font-size:14px; 23 | } -------------------------------------------------------------------------------- /example/python/themes/Shared/Error.css: -------------------------------------------------------------------------------- 1 | body 2 | { 3 | background:#fff; 4 | font-size:12px; 5 | } 6 | 7 | .Error 8 | { 9 | padding-left:180px; 10 | background:url("images/sorry.jpg") no-repeat left top; 11 | height:400px; 12 | } 13 | .Error .head 14 | { 15 | font-size:18px; 16 | font-weight:bold; 17 | } 18 | .Error .detail 19 | { 20 | color:Red; 21 | padding-top:10px; 22 | font-size:14px; 23 | } -------------------------------------------------------------------------------- /example/aspnet/AzureCalendarMvcWeb/Views/User/Login.aspx: -------------------------------------------------------------------------------- 1 | <%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage" %> 2 | 3 | 4 | 5 | 6 |
7 |