Subversion Repositories Code-Repo

Compare Revisions

No changes between revisions

Ignore whitespace Rev 56 → Rev 57

/SWAT Office App/trunk/SWAT Office App/AboutBox.cs
15,7 → 15,7
InitializeComponent();
this.Text = "Program Info";
this.labelProductName.Text = "SWAT Office App";
this.labelVersion.Text = "Version 2.6";
this.labelVersion.Text = "Version 2.6.1";
this.labelCopyright.Text = "Copyright to Kevin Lee @ Virginia Tech";
this.labelCompanyName.Text = "Author: Kevin Lee";
this.textBoxDescription.Text = "This program has been written by Kevin Lee for use " +
/SWAT Office App/trunk/SWAT Office App/Main_Menu_Form.Designer.cs
90,19 → 90,18
this.btn_Reimage_USB_Drives.UseVisualStyleBackColor = true;
this.btn_Reimage_USB_Drives.Click += new System.EventHandler(this.btn_Reimage_USB_Drives_Click);
//
// Menu1_Main
// Menu_Main
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.SystemColors.Control;
this.ClientSize = new System.Drawing.Size(167, 233);
this.ControlBox = false;
this.Controls.Add(this.groupBox_Menu1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.KeyPreview = true;
this.MaximizeBox = false;
this.Name = "Menu1_Main";
this.Name = "Menu_Main";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "SWAT";
this.groupBox_Menu1.ResumeLayout(false);
/SWAT Office App/trunk/SWAT Office App/Main_Menu_Form.cs
14,11 → 14,17
public Menu_Main()
{
DebugText.startNewSession();
Settings_Form.ImportSettings();
StatLogging.ImportSettings();
InitializeComponent();
Settings_Form.ImportSettings();
this.KeyPress += new KeyPressEventHandler(Menu_Main_KeyPress);
this.FormClosing += new FormClosingEventHandler(Menu_Main_FormClosing);
}
 
void Menu_Main_FormClosing(object sender, FormClosingEventArgs e)
{
StatLogging.ExportSettings();
}
void Menu_Main_KeyPress(object sender, KeyPressEventArgs e)
{
// Monitors for keypresses
/SWAT Office App/trunk/SWAT Office App/Manage_User_Accounts.cs
57,6 → 57,7
studentGroup.Save();
}
DebugText.appendText("Account " + username + " has been created");
StatLogging.AccountsCreated += 1;
return true;
}
else
160,7 → 161,13
dSecurity.AddAccessRule(new FileSystemAccessRule("\\" + username, FileSystemRights.FullControl, InheritanceFlags.ObjectInherit, PropagationFlags.None, AccessControlType.Allow));
Directory.CreateDirectory(Settings_Form.sharedFolderLocation + @"\" + username, dSecurity);
DebugText.appendText("Shared folder for " + username + " has been created");
return SetSharePermissions(username);
if (SetSharePermissions(username))
{
StatLogging.SharesCreated += 1;
return true;
}
else
return false;
}
catch (Exception e)
{
/SWAT Office App/trunk/SWAT Office App/SWAT Office App.csproj
148,6 → 148,7
<Compile Include="Settings_Verify_Form.designer.cs">
<DependentUpon>Settings_Verify_Form.cs</DependentUpon>
</Compile>
<Compile Include="StatLogging.cs" />
<Compile Include="Toggle_User_Verify_Form.cs">
<SubType>Form</SubType>
</Compile>
/SWAT Office App/trunk/SWAT Office App/Settings_Form.cs
14,6 → 14,7
public partial class Settings_Form : Form
{
// Global static variables
private static string settingsLogLocation = "Settings.xml";
public static string globalAdminPassword = "tr33b3@rd";
public static bool defaultSettings { get; set; }
public static bool showFileSizes { get; set; }
70,10 → 71,10
// Imports settings from Settings.xml
try
{
if (File.Exists("Settings.xml"))
if (File.Exists(settingsLogLocation))
{
// XML Parsing using System.XML.Linq
XElement Settings = XElement.Load("Settings.xml");
XElement Settings = XElement.Load(settingsLogLocation);
 
showFileSizes = bool.Parse(Settings.Element("ProgramSettings").Element("ShowFileSizes").Value);
 
142,7 → 143,7
try
{
// XML Parsing using System.XML.Linq
XElement Settings = XElement.Load("Settings.xml");
XElement Settings = XElement.Load(settingsLogLocation);
 
string tempString = "";
foreach (string str in systemAccounts)
189,7 → 190,7
new XElement("DockDrivesToIgnore", "C:\\")
)
);
Settings.Save("Settings.xml");
Settings.Save(settingsLogLocation);
}
catch (Exception e)
{
225,7 → 226,7
{
if (MessageBox.Show("Reset configurations to the default settings?", "", MessageBoxButtons.YesNo) == DialogResult.Yes)
{
File.Delete("Settings.xml");
File.Delete(settingsLogLocation);
WriteDefaultConfigFile();
ImportSettings();
OpenUpdateSettings();
/SWAT Office App/trunk/SWAT Office App/StatLogging.cs
0,0 → 1,74
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.IO;
using System.Xml.Linq;
 
namespace SWAT_Office_App
{
class StatLogging
{
private static string logFileLocation = "StatLog.xml";
public static int AccountsCreated { get; set; }
public static int SharesCreated { get; set; }
 
public static void ImportSettings()
{
try
{
if (File.Exists(logFileLocation))
{
XElement Log = XElement.Load(logFileLocation);
AccountsCreated = int.Parse(Log.Element("AccountsCreated").Value);
SharesCreated = int.Parse(Log.Element("SharesCreated").Value);
}
else
{
DebugText.appendText("No existing stat logging file detected.");
WriteDefaultConfigFile();
}
}
catch (Exception e)
{
//MessageBox.Show(e.ToString(), "Error");
DebugText.appendText(e.ToString());
MessageBox.Show("An error has occured. Please notify a supervisor to debug.", "Error");
}
}
public static void ExportSettings()
{
try
{
XElement Log = XElement.Load(logFileLocation);
Log.SetElementValue("AccountsCreated", AccountsCreated);
Log.SetElementValue("SharesCreated", SharesCreated);
Log.Save(logFileLocation);
}
catch (Exception e)
{
//MessageBox.Show(e.ToString(), "Error");
DebugText.appendText(e.ToString());
MessageBox.Show("An error has occured. Please notify a supervisor to debug.", "Error");
}
}
private static void WriteDefaultConfigFile()
{
try
{
XElement Log = new XElement("StatLog",
new XElement("AccountsCreated", 0),
new XElement("SharesCreated", 0)
);
Log.Save(logFileLocation);
}
catch (Exception e)
{
//MessageBox.Show(e.ToString(), "Error");
DebugText.appendText(e.ToString());
MessageBox.Show("An error has occured. Please notify a supervisor to debug.", "Error");
}
}
}
}
/SWAT Office App/trunk/SWAT Office App/bin/Debug/SWAT Office App.exe
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/SWAT Office App/trunk/SWAT Office App/bin/Debug/SWAT Office App.pdb
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/SWAT Office App/trunk/SWAT Office App/bin/Debug/SWAT Office App.vshost.exe.manifest
0,0 → 1,11
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
<security>
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
<requestedExecutionLevel level="asInvoker" uiAccess="false"/>
</requestedPrivileges>
</security>
</trustInfo>
</assembly>
/SWAT Office App/trunk/SWAT Office App/bin/Debug/Settings.xml
4,7 → 4,7
<ShowFileSizes>true</ShowFileSizes>
<SystemAccounts>Administrators,Administrator</SystemAccounts>
<HiddenAccounts>Administrator,Guest</HiddenAccounts>
<SharedFolderLocation>C:\</SharedFolderLocation>
<SharedFolderLocation>C:\Users\Administrator\Desktop</SharedFolderLocation>
<USBMasterCopyx32Location>C:\</USBMasterCopyx32Location>
<USBMasterCopyx64Location>C:\</USBMasterCopyx64Location>
<DockLabels>Dock 1,Dock 2,Dock 3,External USB</DockLabels>
/SWAT Office App/trunk/SWAT Office App/bin/Debug/StatLog.xml
0,0 → 1,5
<?xml version="1.0" encoding="utf-8"?>
<StatLog>
<AccountsCreated>5</AccountsCreated>
<SharesCreated>3</SharesCreated>
</StatLog>
/SWAT Office App/trunk/SWAT Office App/bin/Debug/StatusLog.txt
22,3 → 22,119
[Wednesday, June 15, 2011 | 11:50:07 PM] -- Account D has been deleted
[Wednesday, June 15, 2011 | 11:50:09 PM] -- Starting instance of DriveLogger
[Wednesday, June 15, 2011 | 11:50:11 PM] -- Starting reimaging of USB drives
-- New Session --
[Saturday, June 18, 2011 | 12:15:06 PM] -- No existing stat logging file detected.
[Saturday, June 18, 2011 | 12:15:06 PM] -- System.Xml.XmlException: The ' ' character, hexadecimal value 0x20, cannot be included in a name.
at System.Xml.XmlConvert.VerifyNCName(String name, ExceptionType exceptionType)
at System.Xml.XmlConvert.VerifyNCName(String name)
at System.Xml.Linq.XName..ctor(XNamespace ns, String localName)
at System.Xml.Linq.XNamespace.GetName(String localName, Int32 index, Int32 count)
at System.Xml.Linq.XNamespace.GetName(String localName)
at System.Xml.Linq.XName.Get(String expandedName)
at System.Xml.Linq.XName.op_Implicit(String expandedName)
at SWAT_Office_App.StatLogging.WriteDefaultConfigFile() in C:\Users\Administrator\Documents\Visual Studio 2010\Projects\C#\SWAT Office App\SWAT Office App\StatLogging.cs:line 59
[Saturday, June 18, 2011 | 12:15:10 PM] -- System.IO.FileNotFoundException: Could not find file 'C:\Users\Administrator\Documents\Visual Studio 2010\Projects\C#\SWAT Office App\SWAT Office App\bin\Debug\StatLog.xml'.
File name: 'C:\Users\Administrator\Documents\Visual Studio 2010\Projects\C#\SWAT Office App\SWAT Office App\bin\Debug\StatLog.xml'
at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy, Boolean useLongPath)
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options, String msgPath, Boolean bFromProxy)
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize)
at System.Xml.XmlDownloadManager.GetStream(Uri uri, ICredentials credentials, IWebProxy proxy, RequestCachePolicy cachePolicy)
at System.Xml.XmlUrlResolver.GetEntity(Uri absoluteUri, String role, Type ofObjectToReturn)
at System.Xml.XmlReaderSettings.CreateReader(String inputUri, XmlParserContext inputContext)
at System.Xml.XmlReader.Create(String inputUri, XmlReaderSettings settings, XmlParserContext inputContext)
at System.Xml.XmlReader.Create(String inputUri, XmlReaderSettings settings)
at System.Xml.Linq.XElement.Load(String uri, LoadOptions options)
at System.Xml.Linq.XElement.Load(String uri)
at SWAT_Office_App.StatLogging.ExportSettings() in C:\Users\Administrator\Documents\Visual Studio 2010\Projects\C#\SWAT Office App\SWAT Office App\StatLogging.cs:line 44
-- New Session --
[Saturday, June 18, 2011 | 12:16:47 PM] -- No existing stat logging file detected.
[Saturday, June 18, 2011 | 12:17:05 PM] -- Account A has been created
[Saturday, June 18, 2011 | 12:17:05 PM] -- Shared folder for A has been created
[Saturday, June 18, 2011 | 12:17:05 PM] -- Share permissions for A has been set
[Saturday, June 18, 2011 | 12:17:08 PM] -- Account B has been created
[Saturday, June 18, 2011 | 12:17:08 PM] -- Shared folder for B has been created
[Saturday, June 18, 2011 | 12:17:08 PM] -- Share permissions for B has been set
[Saturday, June 18, 2011 | 12:17:46 PM] -- Shared folder for B has been created
[Saturday, June 18, 2011 | 12:17:46 PM] -- Share permissions for B has been set
[Saturday, June 18, 2011 | 12:17:53 PM] -- Shared folder for A has been created
[Saturday, June 18, 2011 | 12:17:53 PM] -- Share permissions for A has been set
[Saturday, June 18, 2011 | 12:18:19 PM] -- Account A has been deleted
[Saturday, June 18, 2011 | 12:18:19 PM] -- Share permissions for A has been removed
[Saturday, June 18, 2011 | 12:18:19 PM] -- Shared folder for A has been deleted
[Saturday, June 18, 2011 | 12:18:20 PM] -- Account B has been deleted
[Saturday, June 18, 2011 | 12:18:20 PM] -- Share permissions for B has been removed
[Saturday, June 18, 2011 | 12:18:20 PM] -- Shared folder for B has been deleted
[Saturday, June 18, 2011 | 12:18:23 PM] -- Account C has been created
[Saturday, June 18, 2011 | 12:18:23 PM] -- Shared folder for C has been created
[Saturday, June 18, 2011 | 12:18:23 PM] -- Share permissions for C has been set
[Saturday, June 18, 2011 | 12:18:24 PM] -- Account D has been created
[Saturday, June 18, 2011 | 12:18:24 PM] -- Shared folder for D has been created
[Saturday, June 18, 2011 | 12:18:24 PM] -- Share permissions for D has been set
[Saturday, June 18, 2011 | 12:18:27 PM] -- Account E has been created
[Saturday, June 18, 2011 | 12:18:27 PM] -- Shared folder for E has been created
[Saturday, June 18, 2011 | 12:18:27 PM] -- Share permissions for E has been set
[Saturday, June 18, 2011 | 12:18:31 PM] -- Account C has been deleted
[Saturday, June 18, 2011 | 12:18:31 PM] -- Share permissions for C has been removed
[Saturday, June 18, 2011 | 12:18:31 PM] -- Shared folder for C has been deleted
[Saturday, June 18, 2011 | 12:18:32 PM] -- Account D has been deleted
[Saturday, June 18, 2011 | 12:18:32 PM] -- Share permissions for D has been removed
[Saturday, June 18, 2011 | 12:18:32 PM] -- Shared folder for D has been deleted
[Saturday, June 18, 2011 | 12:18:32 PM] -- Account E has been deleted
[Saturday, June 18, 2011 | 12:18:32 PM] -- Share permissions for E has been removed
[Saturday, June 18, 2011 | 12:18:32 PM] -- Shared folder for E has been deleted
-- New Session --
[Saturday, June 18, 2011 | 12:20:18 PM] -- Account A has been created
[Saturday, June 18, 2011 | 12:20:18 PM] -- Shared folder for A has been created
[Saturday, June 18, 2011 | 12:20:18 PM] -- Share permissions for A has been set
[Saturday, June 18, 2011 | 12:20:20 PM] -- Account B has been created
[Saturday, June 18, 2011 | 12:20:20 PM] -- Shared folder for B has been created
[Saturday, June 18, 2011 | 12:20:20 PM] -- Share permissions for B has been set
[Saturday, June 18, 2011 | 12:20:22 PM] -- Account C has been created
[Saturday, June 18, 2011 | 12:20:22 PM] -- Shared folder for C has been created
[Saturday, June 18, 2011 | 12:20:22 PM] -- Share permissions for C has been set
[Saturday, June 18, 2011 | 12:20:30 PM] -- Account D has been created
[Saturday, June 18, 2011 | 12:20:33 PM] -- Account E has been created
[Saturday, June 18, 2011 | 12:20:47 PM] -- Account A has been deleted
[Saturday, June 18, 2011 | 12:20:47 PM] -- Share permissions for A has been removed
[Saturday, June 18, 2011 | 12:20:47 PM] -- Shared folder for A has been deleted
[Saturday, June 18, 2011 | 12:20:48 PM] -- Account B has been deleted
[Saturday, June 18, 2011 | 12:20:48 PM] -- Share permissions for B has been removed
[Saturday, June 18, 2011 | 12:20:48 PM] -- Shared folder for B has been deleted
[Saturday, June 18, 2011 | 12:20:48 PM] -- Account C has been deleted
[Saturday, June 18, 2011 | 12:20:48 PM] -- Share permissions for C has been removed
[Saturday, June 18, 2011 | 12:20:48 PM] -- Shared folder for C has been deleted
[Saturday, June 18, 2011 | 12:20:48 PM] -- Account D has been deleted
[Saturday, June 18, 2011 | 12:20:48 PM] -- Account E has been deleted
-- New Session --
-- New Session --
[Saturday, June 18, 2011 | 12:21:53 PM] -- Account A has been created
[Saturday, June 18, 2011 | 12:22:03 PM] -- Shared folder for A has been created
[Saturday, June 18, 2011 | 12:22:03 PM] -- Share permissions for A has been set
-- New Session --
[Saturday, June 18, 2011 | 12:23:21 PM] -- Account A has been deleted
[Saturday, June 18, 2011 | 12:23:21 PM] -- Share permissions for A has been removed
[Saturday, June 18, 2011 | 12:23:21 PM] -- Shared folder for A has been deleted
[Saturday, June 18, 2011 | 12:23:23 PM] -- Account A has been created
[Saturday, June 18, 2011 | 12:23:26 PM] -- Shared folder for A has been created
[Saturday, June 18, 2011 | 12:23:26 PM] -- Share permissions for A has been set
[Saturday, June 18, 2011 | 12:23:36 PM] -- Account B has been created
[Saturday, June 18, 2011 | 12:23:36 PM] -- Shared folder for B has been created
[Saturday, June 18, 2011 | 12:23:36 PM] -- Share permissions for B has been set
[Saturday, June 18, 2011 | 12:23:38 PM] -- Account C has been created
[Saturday, June 18, 2011 | 12:23:38 PM] -- Shared folder for C has been created
[Saturday, June 18, 2011 | 12:23:38 PM] -- Share permissions for C has been set
[Saturday, June 18, 2011 | 12:23:42 PM] -- Account D has been created
[Saturday, June 18, 2011 | 12:23:44 PM] -- Account E has been created
[Saturday, June 18, 2011 | 12:24:03 PM] -- Account A has been deleted
[Saturday, June 18, 2011 | 12:24:03 PM] -- Share permissions for A has been removed
[Saturday, June 18, 2011 | 12:24:03 PM] -- Shared folder for A has been deleted
[Saturday, June 18, 2011 | 12:24:03 PM] -- Account B has been deleted
[Saturday, June 18, 2011 | 12:24:04 PM] -- Share permissions for B has been removed
[Saturday, June 18, 2011 | 12:24:04 PM] -- Shared folder for B has been deleted
[Saturday, June 18, 2011 | 12:24:04 PM] -- Account C has been deleted
[Saturday, June 18, 2011 | 12:24:04 PM] -- Share permissions for C has been removed
[Saturday, June 18, 2011 | 12:24:04 PM] -- Shared folder for C has been deleted
[Saturday, June 18, 2011 | 12:24:04 PM] -- Account D has been deleted
[Saturday, June 18, 2011 | 12:24:04 PM] -- Account E has been deleted
-- New Session --
/SWAT Office App/trunk/SWAT Office App/bin/Release/DriveLogger Log.txt
0,0 → 1,2
-- New Session Started --
Initializing form details
/SWAT Office App/trunk/SWAT Office App/bin/Release/SWAT Office App.exe
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/SWAT Office App/trunk/SWAT Office App/bin/Release/SWAT Office App.pdb
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/SWAT Office App/trunk/SWAT Office App/bin/Release/SWAT Office App.zip
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/SWAT Office App/trunk/SWAT Office App/bin/Release/SWAT Office App.zip
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/SWAT Office App/trunk/SWAT Office App/bin/Release/Settings.xml
0,0 → 1,14
<?xml version="1.0" encoding="utf-8"?>
<Settings>
<ProgramSettings>
<ShowFileSizes>true</ShowFileSizes>
<SystemAccounts>Administrators,Administrator</SystemAccounts>
<HiddenAccounts>Administrator,Guest</HiddenAccounts>
<SharedFolderLocation>C:\</SharedFolderLocation>
<USBMasterCopyx32Location>C:\</USBMasterCopyx32Location>
<USBMasterCopyx64Location>C:\</USBMasterCopyx64Location>
<DockLabels>Dock 1,Dock 2,Dock 3,External USB</DockLabels>
<DockRefreshInterval>1000</DockRefreshInterval>
<DockDrivesToIgnore>C:\</DockDrivesToIgnore>
</ProgramSettings>
</Settings>
/SWAT Office App/trunk/SWAT Office App/bin/Release/StatusLog.txt
0,0 → 1,28
-- New Session --
[Wednesday, June 15, 2011 | 11:52:23 PM] -- No existing setting file detected. Using default settings
-- New Session --
[Wednesday, June 15, 2011 | 11:54:01 PM] -- Account ASDF has been created
[Wednesday, June 15, 2011 | 11:54:01 PM] -- Shared folder for ASDF has been created
[Wednesday, June 15, 2011 | 11:54:01 PM] -- Share permissions for ASDF has been set
[Wednesday, June 15, 2011 | 11:54:21 PM] -- Account ASDF has been deleted
[Wednesday, June 15, 2011 | 11:54:21 PM] -- Share permissions for ASDF has been removed
[Wednesday, June 15, 2011 | 11:54:21 PM] -- Shared folder for ASDF has been deleted
[Wednesday, June 15, 2011 | 11:54:26 PM] -- Account qwert has been created
[Wednesday, June 15, 2011 | 11:54:26 PM] -- Shared folder for qwert has been created
[Wednesday, June 15, 2011 | 11:54:26 PM] -- Share permissions for qwert has been set
[Wednesday, June 15, 2011 | 11:54:31 PM] -- Account qwert has been deleted
[Wednesday, June 15, 2011 | 11:54:31 PM] -- Share permissions for qwert has been removed
[Wednesday, June 15, 2011 | 11:54:31 PM] -- Shared folder for qwert has been deleted
[Wednesday, June 15, 2011 | 11:54:33 PM] -- Account ASDF has been created
[Wednesday, June 15, 2011 | 11:54:33 PM] -- Shared folder for ASDF has been created
[Wednesday, June 15, 2011 | 11:54:33 PM] -- Share permissions for ASDF has been set
[Wednesday, June 15, 2011 | 11:54:38 PM] -- Account ASDF has been deleted
[Wednesday, June 15, 2011 | 11:54:38 PM] -- Share permissions for ASDF has been removed
[Wednesday, June 15, 2011 | 11:54:38 PM] -- Shared folder for ASDF has been deleted
[Wednesday, June 15, 2011 | 11:54:46 PM] -- Account AAA has been created
[Wednesday, June 15, 2011 | 11:54:46 PM] -- Shared folder for AAA has been created
[Wednesday, June 15, 2011 | 11:54:46 PM] -- Share permissions for AAA has been set
[Wednesday, June 15, 2011 | 11:55:19 PM] -- Account AAA has been deleted
[Wednesday, June 15, 2011 | 11:55:19 PM] -- Share permissions for AAA has been removed
[Wednesday, June 15, 2011 | 11:55:19 PM] -- Shared folder for AAA has been deleted
[Wednesday, June 15, 2011 | 11:55:22 PM] -- Starting instance of DriveLogger
/SWAT Office App/trunk/SWAT Office App/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/SWAT Office App/trunk/SWAT Office App/obj/x86/Debug/DesignTimeResolveAssemblyReferences.cache
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/SWAT Office App/trunk/SWAT Office App/obj/x86/Debug/SWAT Office App.exe
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/SWAT Office App/trunk/SWAT Office App/obj/x86/Debug/SWAT Office App.pdb
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/SWAT Office App/trunk/SWAT Office App/obj/x86/Debug/TempPE/Properties.Resources.Designer.cs.dll
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/SWAT Office App/trunk/SWAT Office App/obj/x86/Debug/TempPE/Properties.Resources.Designer.cs.dll
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/SWAT Office App/trunk/SWAT Office App/obj/x86/Release/SWAT Office App.exe
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/SWAT Office App/trunk/SWAT Office App/obj/x86/Release/SWAT Office App.pdb
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/SWAT Office App/trunk/SWAT Office App.sln.docstates
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
/SWAT Office App/trunk/SWAT Office App.sln.docstates
Property changes:
Added: svn:mime-type
+application/octet-stream
\ No newline at end of property
/SWAT Office App/trunk/SWAT Office App.suo
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream