Skip to content

Commit

Permalink
0
Browse files Browse the repository at this point in the history
  • Loading branch information
jackletter committed Apr 12, 2017
1 parent 3a7885c commit 5661df3
Show file tree
Hide file tree
Showing 19 changed files with 1,817 additions and 169 deletions.
4 changes: 2 additions & 2 deletions JackTime2Run/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<job cron="0 0 0 ? * 4 *" logwhen="0" jobtype="1" searchpath=""
srccodepath="DynamicCodes\DeleteEqueueLog.cs" typename="JackSrc.Program"
method="DeleteLog" enable="1" name="每周三凌晨清理Equeue7天之前的日志">
<para value="G:\work\EQueueBrokerService\Log" />
<para value="G:\work\岳阳四全项目\LandSite2\EQueueBrokerService\Log" />
</job>
</JackTime2RunJobs>
<appSettings>
Expand Down Expand Up @@ -76,4 +76,4 @@
</serviceBehaviors>
</behaviors>
</system.serviceModel>
</configuration>
</configuration>
6 changes: 0 additions & 6 deletions JackTime2Run/JackTime2Run.csproj.user

This file was deleted.

6 changes: 6 additions & 0 deletions JackTime2Run/NamePipeSrv.cs
Original file line number Diff line number Diff line change
Expand Up @@ -362,6 +362,12 @@ public bool TriJob(string name)
}
}

[OperationContract]
public bool TestConn()
{
return true;
}

private XmlElement GeneJobEle(JackJob job, XmlDocument doc)
{
XmlElement ele = doc.CreateElement("job");
Expand Down
2 changes: 1 addition & 1 deletion JackTime2Run/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -96,4 +96,4 @@ public void Stop()
catch { };
}
}
}
}
Binary file modified JackTime2Run/lib/DynamicUtil.dll
Binary file not shown.
30 changes: 30 additions & 0 deletions Manager/About.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace Manager
{
public partial class About : Form
{
public About()
{
InitializeComponent();
}

private void button1_Click(object sender, EventArgs e)
{
this.Close();
}

private void About_Load(object sender, EventArgs e)
{
webBrowser1.Url = new Uri(System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "html/About.html"));
}
}
}
82 changes: 82 additions & 0 deletions Manager/About.designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 5661df3

Please sign in to comment.