Aklımda Kalası Kelimeler

* давайте работать вместе
* Zarf ve Mazruf, Zerafet(xHoyratlık) ile aynı kökten(za-ra-fe) gelir
* Bedesten
* Suç subuta ermiştir - Suç sabit olmuştur
XML etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster
XML etiketine sahip kayıtlar gösteriliyor. Tüm kayıtları göster

28 Nisan 2017 Cuma

Form serileştirme

Form içerisinde n tane element olan bir yapı. Form içinde topladığınız bilgileri sunucuya taşıyabilmek için HTTP paketleri kullanıyoruz. Buraya kadar hepimiz biliyoruz ;)
Bu paket başlık ve gövdeden oluşuyor ve aralarında sadece boş bir satır var. Genelde verileri gövde kısmına yükleriz. Sunucunun bu verileri parçalara ayırabilmesi(parse edebilmesi) gerekiyor. Bunu yapsın diye gövdeye yazacağımız bilgiyi iki tarafında (istemci ve sunucu) anlayabileceği şekilde oluşturmamız gerekiyor ki buna mesajın biçimi(formatı) diyoruz.
Mesaj formatlarımız neler:
  • XML
  • JSON
  • x-www-form-urlencoded
  • SOAP
  • multipart/form-data


application/x-www-form-urlencoded yapılan talebe text/html tipinde aldığımız cevap:

Encode ve Decode terimleri hep oldu hep olacak çünkü biz harf yazıyoruz ve bunu bilgisayara manyetik değer olarak kaydediyoruz. Ben bilgiyi dairesel ve çizgisel karakterler olarak ekranda görünecek şekilde kaydediyorum bir başkası video da havanın bükülerek ses dalgaları haline getirerek aktarıyor. Demek ki biz mesajları sürekli encode ediyoruz ve o mesajları okurken, dinlerken decode ediyoruz.

isim="Cem Topkaya" verisini internet ortamında transfer etmek için url'nin sonuna eklediğimizi düşünelim http://cemtopkaya.com/kullanici.php?isim=Cem Topkaya siz de farkettinizki soyisim bir boşlukla ayrıldığı için url'nin parçası olamıyor.

1 Nisan 2015 Çarşamba

Fiddler ile WCF servisini çağırmak

WSDL'ı parça parça aşağıdan okuyalım.

Çağıracağımız fonksiyonda iki farklı tipte iki parametre var QueryInboxInvoiceStatus(InvoiceLogin _invoiceLogin, string[] _invoiceIds)
İşte fonksiyonumuzun WSDL'daki ifadesi:
<xs:element name="QueryInboxInvoiceStatus">
 <xs:complexType>
  <xs:sequence>
   <xs:element xmlns:q29="http://schemas.datacontract.org/2004/07/FMC.Turkiye.Lib.EInvoice" minOccurs="0" name="_invoiceLogin" nillable="true" type="q29:InvoiceLogin"/>
   <xs:element xmlns:q30="http://schemas.microsoft.com/2003/10/Serialization/Arrays" minOccurs="0" name="_invoiceIds" nillable="true" type="q30:ArrayOfstring"/>
  </xs:sequence>
 </xs:complexType>
</xs:element>

_invoiceIds parametremiz string tipinde bir dizi. Bunda dikkat edeceğimiz husus xml namespace bilgisinin doğru yazılması. Karmaşık bir tip(complex type) olmadığı için detayı yok ama InvoiceLogin için var:
<xs:complexType name="InvoiceLogin">
 <xs:sequence>
  <xs:element minOccurs="0" name="Password" nillable="true" type="xs:string"/>
  <xs:element minOccurs="0" name="UserName" nillable="true" type="xs:string"/>
 </xs:sequence>
</xs:complexType>
2 tane string tipinde özelliği olan bir sınıf. Şuna benziyor olsa gerek:
class InvoiceLogin
{
  public string UserName;
  public string Password;
}
Şimdi xml namespace bilgileri fiddler ile talebimizi yaparken nasıl yer alıyor:


O halde bu web servis metodunu çağırdığımak için aşağıdaki http gövdesini kullanacağız:
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
 <s:Body>
  <QueryInboxInvoiceStatus xmlns="http://gib.fresenius.com.tr/FEFatura">
   <_invoiceLogin xmlns:a="http://schemas.datacontract.org/2004/07/FMC.Turkiye.Lib.EInvoice" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
    <a:Password>şifremiz</a:Password>
    <a:UserName>kullanıcıAdı</a:UserName>
   </_invoiceLogin>
   <_invoiceIds  xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
    <b:string>353d5faf-f227-4600-8efe-3fb5ab0f1f48</b:string>
   </_invoiceIds>
  </QueryInboxInvoiceStatus>
 </s:Body>
</s:Envelope>

Bu da fiddler üstünden çağırmak için kullanacağımız http talebi ve cevabı:
POST http://localhost:53644/FEInvoice.svc HTTP/1.1
Content-Type: text/xml; charset=utf-8
VsDebuggerCausalityData: uIDPoxWgzmMUISZHhT9DgBmdvzAAAAAAA/+at96K6Uq35zPRjKxBIsVGn2pZnrlOgakzi+yKWdsACQAA
SOAPAction: "http://gib.fresenius.com.tr/FEFatura/IFEInvoice/QueryInboxInvoiceStatus" 
Host: localhost:53644
Content-Length: 677
Expect: 100-continue
Accept-Encoding: gzip, deflate
Connection: Keep-Alive

<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
 <s:Body>
  <QueryInboxInvoiceStatus xmlns="http://gib.fresenius.com.tr/FEFatura">
   <_invoiceLogin xmlns:a="http://schemas.datacontract.org/2004/07/FMC.Turkiye.Lib.EInvoice" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
    <a:Password>şifremizBudur</a:Password>
    <a:UserName>kullaniciAdimizBuOlsun</a:UserName>
   </_invoiceLogin>
   <_invoiceIds  xmlns:b="http://schemas.microsoft.com/2003/10/Serialization/Arrays" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
    <b:string>353d5faf-f227-4600-8efe-3fb5ab0f1f48</b:string>
   </_invoiceIds>
  </QueryInboxInvoiceStatus>
 </s:Body>
</s:Envelope>

HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Vary: Accept-Encoding
Server: Microsoft-IIS/8.0
X-SourceFiles: =?UTF-8?B?QzpcUHJvamVsZXJcRk1DLlR1cmtpeWUuV2NmLkVGYXR1cmFcdHJ1bmtcRkVJbnZvaWNlLnN2Yw==?=
X-Powered-By: ASP.NET
Date: Wed, 01 Apr 2015 10:07:45 GMT
Content-Length: 929

<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
 <s:Body>
  <QueryInboxInvoiceStatusResponse xmlns="http://gib.fresenius.com.tr/FEFatura">
   <QueryInboxInvoiceStatusResult xmlns:a="http://schemas.datacontract.org/2004/07/FMC.Turkiye.Lib.EInvoice" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
    <a:Nesne i:nil="true"/>
    <a:hasError>false</a:hasError>
    <a:invoiceResult i:nil="true"/>
    <a:islem>QueryInboxInvoiceStatus Metodu</a:islem>
    <a:istisna i:nil="true"/>
    <a:lstWsResult>
     <a:WSResult>
      <a:Nesne i:nil="true"/>
      <a:hasError>false</a:hasError>
      <a:invoiceResult i:nil="true"/>
      <a:islem>QueryInboxInvoiceStatus Metodu</a:islem>
      <a:istisna i:nil="true"/>
      <a:lstWsResult/>
      <a:sonuc i:nil="true"/>
      <a:succeedTransaction>true</a:succeedTransaction>
     </a:WSResult>
    </a:lstWsResult>
    <a:sonuc i:nil="true"/>
    <a:succeedTransaction>false</a:succeedTransaction>
   </QueryInboxInvoiceStatusResult>
  </QueryInboxInvoiceStatusResponse>
 </s:Body>
</s:Envelope>

Uyumsoft WCF Servisine Talep

Şimdi bu talebi uyumsoft'un e-fatura servislerine nasıl yapabiliriz bakalım ve bilgimizi ikinci bir örnek ile ilerletelimki anlayışımız artsın.
Önce metodumuzu wsdl içinde bulalım:
soapAction servisi çağırırken hangi metodu çağıracağı bilgisini içeriyor.

input ile metoda verilecek parametreleri, output ile çıktı olarak üreteceği sonucu görüyorsunuz.

Peki parametrenin veri tipi ne?
ArrayOfString tipi olacak.

Şimdi talebimizi yapalım:
POST https://efatura.uyumsoft.com.tr/Services/Integration HTTP/1.1
Content-Type: text/xml; charset=utf-8
SOAPAction: "http://tempuri.org/IIntegration/QueryInboxInvoiceStatus"
Host: efatura.uyumsoft.com.tr
Expect: 100-continue
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
Content-Length: 937


 
  
   
    kullaniciAdimiz
    şifremiz
   
  
 
 
  
   
    353d5faf-f227-4600-8efe-3fb5ab0f1f48
   
  
 

Ve cevabımız:
HTTP/1.1 200 OK
Cache-Control: private
Content-Type: text/xml; charset=utf-8
Vary: Accept-Encoding
Server: Microsoft-IIS/7.5
Set-Cookie: ASP.NET_SessionId=giq1anjro5kiajmwxzar1t11; path=/; HttpOnly
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
Date: Wed, 01 Apr 2015 11:26:03 GMT
Content-Length: 845


 
  
   
    2015-04-01T11:26:04.353Z
    2015-04-01T11:31:04.353Z
   
  
 
 
  
   
    
   
  
 

Kolay gelsin....

20 Kasım 2013 Çarşamba

Xml Serileştirmede XmlArray, XmlArrayItem, XmlAttribute, XmlSerializer, XmlType, XmlEnum, XmlIgnore, XmlInclude, IsNullable vd. incelemesi

Kodun içinde notlarım var. Örnek msdn den.

using System.IO;
using System.Xml.Serialization;

public class Run
{
    public static void Main()
    {
        Run test = new Run();
        test.SerializeDocument("books.xml");
    }

    public void SerializeDocument(string filename)
    {
        // Creates a new XmlSerializer.
        XmlSerializer s =
        new XmlSerializer(typeof(MyRootClass));

        // Writing the file requires a StreamWriter.
        TextWriter myWriter = new StreamWriter(filename);

        // Creates an instance of the class to serialize. 
        MyRootClass myRootClass = new MyRootClass();

        /* Uses a basic method of creating an XML array: Create and 
        populate a string array, and assign it to the 
        MyStringArray property. */

        string[] myString = { "Hello", "world", "!" };
        myRootClass.MyStringArray = myString;

        /* Uses a more advanced method of creating an array:
           create instances of the Item and BookItem, where BookItem 
           is derived from Item. */
        Item item1 = new Item();
        BookItem item2 = new BookItem();

        // Sets the objects' properties.
        item1.ItemName = "Widget1";
        item1.ItemCode = "w1";
        item1.ItemPrice = 231;
        item1.ItemQuantity = 3;

        item2.ItemCode = "w2";
        item2.ItemPrice = 123;
        item2.ItemQuantity = 7;
        item2.ISBN = "34982333";
        item2.Title = "Book of Widgets";
        item2.Author = "John Smith";

        // Fills the array with the items.
        Item[] myItems = { item1, item2 };

        // Sets the class's Items property to the array.
        myRootClass.Items = myItems;

        /* Serializes the class, writes it to disk, and closes 
           the TextWriter. */
        s.Serialize(myWriter, myRootClass);
        myWriter.Close();
    }
}

// This is the class that will be serialized. 
public class MyRootClass
{
    private Item[] items;

    /* Here is a simple way to serialize the array as XML. Using the
       XmlArrayAttribute, assign an element name and namespace. The
       IsNullable property determines whether the element will be 
       generated if the field is set to a null value. If set to true,
       the default, setting it to a null value will cause the XML
       xsi:null attribute to be generated. */

    /* IsNullable = true 
            <NULLveOLUSTURULacak xsi:nil="true" xmlns="http://www.IsNullable.com" /> */
    [XmlElement(ElementName = "NULLveOLUSTURULacak", IsNullable = true, Namespace = "http://www.IsNullable.com")]
    public string IsNullable_true_ornegi;

    /* IsNullable = false (değer atanmazsa da false gibi çalışır) 
            'null değeri olduğu için xml elemanı oluşturulmadı' */
    [XmlElement(ElementName = "NULLveOLUSTURULMAYAcak", IsNullable = false, Namespace = "http://www.IsNullable.com")]
    public string IsNullable_false_ornegi;
    
    
    
    [XmlArray(ElementName = "bomBosDizi", Namespace = "http://www.nullDegerliDizi.com", IsNullable = true)]
    public string[] bosDizi;
    /* IsNullable = true olan XmlArray özellikli field sonucu:
            <bomBosDizi xsi:nil="true" xmlns="http://www.nullDegerliDizi.com" />
     */

    /// <summary>
    /// 
    /// XmlArray Özelliğinin BASİT şekli
    /// 
    /// </summary>
    [XmlArray(ElementName = "MyStrings", Namespace = "http://www.cpandl.com", IsNullable = true)]
    public string[] MyStringArray;
    /* En temel haliyle XmlArray aynı tip dizi elemanları için bir xml elemanı altında toplayacaktır.
       Sonuç:
        <MyStrings xmlns="http://www.cpandl.com">
          <string>Hello</string>
          <string>world</string>
          <string>!</string>
        </MyStrings>
     */


    [XmlArray(ElementName = "Dizi_Kok_Elemani")]
    [XmlArrayItem("Eleman_Etiketi")]
    public string[] stringDizi =  { "Hello", "world", "!" };
    /*
        <Dizi_Kok_Elemani>
          <Eleman_Etiketi>Hello</Eleman_Etiketi>
          <Eleman_Etiketi>world</Eleman_Etiketi>
          <Eleman_Etiketi>!</Eleman_Etiketi>
        </Dizi_Kok_Elemani>
     */


    /// <summary>
    /// 
    /// XmlArray Özelliğinin KARMAŞIK şekli
    /// 
    /// </summary>
    [XmlArrayItem(ElementName = "Item",     IsNullable = true, Type = typeof(Item),     Namespace = "http://www.cpandl.com"),
     XmlArrayItem(ElementName = "BookItem", IsNullable = true, Type = typeof(BookItem), Namespace = "http://www.cohowinery.com")]
    [XmlArray]
    public Item[] Items
    {
        get { return items; }
        set { items = value; }
    }
    /*
     Items propertysi Item cinsinden bir dizi alır.
     Yani hem Item, hem BookItem türü verileri alabilir.
     Serileştirilecek nesnenin Items elemanı hem Item hem de BookItem 
     türünde iki nesne alacağı için dizi içindeki eleman türüne göre serileştirme çalışacak
     Sonuç:
      <Items>
        <Item xmlns="http://www.cpandl.com">
          <OrderItem>Widget1</OrderItem>
          <ItemCode>w1</ItemCode>
          <ItemPrice>231</ItemPrice>
          <ItemQuantity>3</ItemQuantity>
        </Item>
        <BookItem xmlns="http://www.cohowinery.com">
          <ItemCode>w2</ItemCode>
          <ItemPrice>123</ItemPrice>
          <ItemQuantity>7</ItemQuantity>
          <Title>Book of Widgets</Title>
          <Author>John Smith</Author>
          <ISBN>34982333</ISBN>
        </BookItem>
      </Items> 
     */


    [
        XmlArrayItem(Type = typeof (BookItem)),
        XmlArrayItem(Type = typeof (string)),
        XmlArrayItem(Type = typeof (int))
    ] 
    public object[] KarisikTipler =
    {
        "Bu", 1, new BookItem()
                 {
                     Author = "Cem",
                     ISBN = "93845934",
                     ItemCode = "item kod 10",
                     ItemName = "item adı",
                     ItemPrice = 1.2m,
                     ItemQuantity = 10,
                     Title = "Başlık şu, bu, o"
                 }
    };
    /* Her dizi elemanı string, int ve BookItem tipindeyse serileştirilecek değilse istisna fırlatacak.
        <KarisikTipler>
          <string>Bu</string>
          <int>1</int>
          <BookItem>
            <OrderItem>item adı</OrderItem>
            <ItemCode>item kod 10</ItemCode>
            <ItemPrice>1.2</ItemPrice>
            <ItemQuantity>10</ItemQuantity>
            <Title>Başlık şu, bu, o</Title>
            <Author>Cem</Author>
            <ISBN>93845934</ISBN>
          </BookItem>
        </KarisikTipler>
     */

    /// 
    /// xml çıktısı:
    ///     <EmpStatus>Triple</EmpStatus>
    /// 
    public EmployeeStatus EmpStatus=EmployeeStatus.Three;
}

public enum EmployeeStatus
{
    [XmlEnum(Name = "Single")]
    One,
    [XmlEnum(Name = "Double")]
    Two,
    [XmlEnum(Name = "Triple")]
    Three
}


public class Item
{
    [XmlElement(ElementName = "OrderItem")]
    public string ItemName;
    public string ItemCode;
    public decimal ItemPrice;
    public int ItemQuantity;
}

public class BookItem : Item
{
    public string Title;
    public string Author;
    public string ISBN;
}


/// <summary>
/// Şu nesne için:
/// 
///    public KitapItem kit = new KitapItem()
///                           {
///                               Author = "Kitapçı Cem",
///                               ISBN = "---1---",
///                               ItemCode = "item kodum oldu",
///                               ItemName = "item adım yok oldu",
///                               ItemPrice = 10.2m,
///                               ItemQuantity = 23,
///                               Title = "illa başlık, hep başlık"
///                           };
/// 
/// 
/// xml sonucu:
/// 
///  <kit d2p1:baslik="illa başlık, hep başlık" xmlns:d2p1="attribute_nameSpeysi">
///    <OrderItem xmlns="kitapNameSpace">item adım yok oldu</OrderItem>
///    <ItemCode xmlns="kitapNameSpace">item kodum oldu</ItemCode>
///    <ItemPrice xmlns="kitapNameSpace">10.2</ItemPrice>
///    <ItemQuantity xmlns="kitapNameSpace">23</ItemQuantity>
///    <Author xmlns="kitapNameSpace">Kitapçı Cem</Author>
///    <ISBN xmlns="kitapNameSpace">---1---</ISBN>
///  </kit>
/// 
/// </summary>
[XmlType(TypeName = "KitapEleman", Namespace = "kitapNameSpace")]
public class KitapItem : Item
{
    [XmlAttribute(Namespace = "attribute_nameSpeysi", AttributeName = "baslik", DataType = "normalizedString")]
    public string Title;
    public string Author;
    public string ISBN;
}

<?xml version="1.0" encoding="utf-8"?>
<MyRootClass xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <NULLveOLUSTURULacak xsi:nil="true" xmlns="http://www.IsNullable.com" />
  <bomBosDizi xsi:nil="true" xmlns="http://www.nullDegerliDizi.com" />
  <MyStrings xmlns="http://www.cpandl.com">
    <string>Hello</string>
    <string>world</string>
    <string>!</string>
  </MyStrings>
  <Items>
    <Item xmlns="http://www.cpandl.com">
      <OrderItem>Widget1</OrderItem>
      <ItemCode>w1</ItemCode>
      <ItemPrice>231</ItemPrice>
      <ItemQuantity>3</ItemQuantity>
    </Item>
    <BookItem xmlns="http://www.cohowinery.com">
      <ItemCode>w2</ItemCode>
      <ItemPrice>123</ItemPrice>
      <ItemQuantity>7</ItemQuantity>
      <Title>Book of Widgets</Title>
      <Author>John Smith</Author>
      <ISBN>34982333</ISBN>
    </BookItem>
  </Items>
</MyRootClass>

XmlAttribute bir yerde tanımlıysa, o field ya da property nin tipindeki(class,struct vs.) [XmlType(......)] bir işe yaramaz.
KitapItem sınıfının Title fieldı için farklı bir namespace tanımladık (attribute_namepseysi) ve bunun için d2p1 oluşturulup özelliğin önüne konulduğuna dikkat edelim emi...

Enum gösterimi için [XmlEnum (Name = "enumGorunecekAdi")] kullanılır


XmlIgnore ile serileştirilmesini istemediğimiz field, prop vs. seçilir


XmlInclude ile hangi tiplerin serileştirilip serileştirilmeyeceği belirlenir

11 Kasım 2013 Pazartesi

XML tiplerinden NormalizedString ile String farkı

normalizedString

string veri elemanının tanımı:
   <xs:element name="customer" type="xs:string"/>
Veri taşırken:
   <customer>John Smith</customer>
ya da tab tuşu ile şu şekilde değeri olabilir
   <customer>       John Smith     </customer>
ve string kullandığımız için XML işlemcisi elemanın değerini değiştirmeyecektir ve 
  * satır besleme (#xA) 
  * satırbaşı karakterlerini (#xD) 
  * sekme (#x9) karakterleri aynı kalacaktır...

Ama NormalizedString veri elemanını kullanırsak (#xA),(#xD),(#x9) karakterleri, boşluk karakterine(#x20) dönüştürülür...
normalizedString veri elemanının tanımı:
   <xs:element name="customer" type="xs:normalizedString"/>
Veri taşırken:
   <customer>John Smith</customer>
ya da tab tuşu(#x9) ile girilmiş değerler boşluk karakterine(#x20) ye dönüştürülüyor
   <customer>       John Smith     </customer>
Ref:
www.w3schools.com
http://support.microsoft.com


15 Ağustos 2011 Pazartesi

XSL Komutlarnın Örnekleri

Bana bir xslt için örnek kodların makalasi lazım. Bunuda karma yapacağım ama Burak Selim Şenyurt her zamanki gibi harika bir makale ile anlatmış ne nedir diye.

Bende gördüğüm güzel örnekleri parça parça burada toplayacağım.

XML verisi aşağıdaki gibi olsun demiş BSY:
<?xml version="1.0" encoding="utf-8" ?>

<Muzikler>
<Muzik ID="1">
<Soyleyen>Coldplay</Soyleyen>
<AlbumAdi>X and Y</AlbumAdi>
<CikisTarihi>2005</CikisTarihi>
<Fiyat>28</Fiyat>
<Tip>CD</Tip>
</Muzik>
<Muzik ID="2">
<Soyleyen>Depeche Mode</Soyleyen>
<AlbumAdi>Playing The Angel</AlbumAdi>
<CikisTarihi>2005</CikisTarihi>
<Fiyat>25</Fiyat>
<Tip>CD</Tip>
</Muzik>
.
.
.
<Muzikler>

TEMPLATE


<xsl:template match="/">

FOR-EACH & VALUE-OF


<?xml version="1.0" encoding="utf-8"?>

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body>
<h1>Müzik Dükkanım</h1>
<table border="1" borderColor="Black" cellpadding="0" cellspacing="0">
<tr bgcolor="#FFCC66">
<th>ID</th>
<th>Söyleyen</th>
<th>Albüm Adı</th>
<th>Çıkış Tarihi</th>
<th>Satış Fiyatı</th>
<th>Cd/Dvd/Kaset</th>
</tr>
<xsl:for-each select="Muzikler/Muzik">
<tr>
<td>
<xsl:value-of select="@ID"/>
</td>
<td>
<font size="2" color="Blue">
<xsl:value-of select="Soyleyen"/>
</font>
</td>
<td>
<b>
<xsl:value-of select="AlbumAdi"/>
</b>
</td>
<td align="right">
<xsl:value-of select="CikisTarihi"/>
</td>
<td>
<b>
<xsl:value-of select="Fiyat * 1.5"/> Ytl
</b>
</td>
<td>
<xsl:value-of select="Tip"/>
</td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>

SORT


<xsl:for-each select="Muzikler/Muzik">
<xsl:sort select="AlbumAdi" order="descending" data-type="text"/>

<xsl:for-each select="Muzikler/Muzik">

<xsl:sort select="AlbumAdi" order="descending" data-type="text"/>
<xsl:if test="Tip=’DVD’">
<tr>
<td><xsl:value-of select="@ID"/></td>
<td><font size="2" color="Blue"><xsl:value-of select="Soyleyen"/></font></td>
<td><b><xsl:value-of select="AlbumAdi"/></b></td>
<td align="right"><xsl:value-of select="CikisTarihi"/></td>
<td><b><xsl:value-of select="Fiyat * 1.5"/> Ytl</b></td>
<td><xsl:value-of select="Tip"/></td>
</tr>
</xsl:if>
</xsl:for-each>

IF & CHOOSE & WHEN & OTHERWISE


<xsl:if test="Tip=’DVD’ or Tip=’CD’ ">

<xsl:for-each select="Muzikler/Muzik">

<xsl:sort select="AlbumAdi" order="descending" data-type="text"/>
<xsl:if test="Tip=’DVD’ or Tip=’CD’ ">
<tr>
<td><xsl:value-of select="@ID"/></td>
<td><font size="2" color="Blue"><xsl:value-of select="Soyleyen"/></font></td>
<td><b><xsl:value-of select="AlbumAdi"/></b></td>
<td align="right"><xsl:value-of select="CikisTarihi"/></td>
<xsl:choose>
<xsl:when test="Fiyat >35 and Fiyat <55">
<td bgColor="Blue"><font color="White" size="3"><b><xsl:value-of select="Fiyat"/> ytl</b></font></td>
</xsl:when>
<xsl:when test="Fiyat <35">
<td bgColor="Green"><font color="White" size="3"><b><xsl:value-of select="Fiyat"/> ytl</b></font></td>
</xsl:when>
<xsl:otherwise>
<td bgColor="Red"><font color="White" size="3"><b><xsl:value-of select="Fiyat"/> ytl</b></font></td>
</xsl:otherwise>
</xsl:choose>
<td><xsl:value-of select="Tip"/></td>
</tr>
</xsl:if>
</xsl:for-each>


Sunucu tarafından XSL Transformation:
XslCompiledTransform xsltran = new XslCompiledTransform();

xsltran.Load(Server.MapPath("XsltForHtml.xsl"));
xsltran.Transform(Server.MapPath("MuzikDukkanim.xml"), null, Response.Output);


XslCompiledTransform xsltran = new XslCompiledTransform();

XPathDocument doc = new XPathDocument(Server.MapPath("MuzikDukkanim.xml"));
XPathDocument xslDoc = new XPathDocument(Server.MapPath("XsltForHtml.xsl"));
xsltran.Load(xslDoc);
xsltran.Transform(doc, null, Response.Output);

12 Ekim 2010 Salı

XML-XSLT açılır kapanır etiket




<?xml version="1.0" encoding="utf-8" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt">
<xsl:key name="ProjectKey" match="Event" use="@Project" />
<xsl:template match="Events" mode="createProjects">
<projects>
<xsl:for-each select="Event">
<!-- xsl:sort select="@Project" order="descending"/-->
<xsl:if test="(1=position()) or (preceding-sibling::*[1]/@Project != @Project)">
<xsl:variable name="ProjectName" select="@Project" />
<project>
<xsl:attribute name="name">
<xsl:value-of select="@Project" />
</xsl:attribute>
<xsl:if test="@Project=''">
<xsl:attribute name="solution">
<xsl:value-of select="@Solution" />
</xsl:attribute>
</xsl:if>
<xsl:for-each select="key('ProjectKey', $ProjectName)">
<!-- xsl:sort select="@Source" /-->
<xsl:if test="(1=position()) or (preceding-sibling::*[1]/@Source != @Source)">
<source>
<xsl:attribute name="name">
<xsl:value-of select="@Source" />
</xsl:attribute>
<xsl:variable name="Source">
<xsl:value-of select="@Source" />
</xsl:variable>
<xsl:for-each select="key('ProjectKey', $ProjectName)[ @Source = $Source ]">
<event>
<xsl:attribute name="error-level">
<xsl:value-of select="@ErrorLevel" />
</xsl:attribute>
<xsl:attribute name="description">
<xsl:value-of select="@Description" />
</xsl:attribute>
</event>
</xsl:for-each>
</source>
</xsl:if>
</xsl:for-each>
</project>
</xsl:if>
</xsl:for-each>
</projects>
</xsl:template>
<xsl:template match="projects">
<xsl:for-each select="project">
<xsl:sort select="@Name" order="ascending" />
<h2>
<xsl:if test="@solution">
<a _locID="Solution">Solution</a>
:
<xsl:value-of select="@solution" />
</xsl:if>
<xsl:if test="not(@solution)">
<a _locID="Project">Project</a>
:
<xsl:value-of select="@name" />
<xsl:for-each select="source">
<xsl:variable name="Hyperlink" select="@name" />
<xsl:for-each select="event[@error-level='4']">

<A class="note">
<xsl:attribute name="HREF">
<xsl:value-of select="$Hyperlink" />
</xsl:attribute>
<xsl:value-of select="@description" />
</A>
</xsl:for-each>
</xsl:for-each>
</xsl:if>
</h2>
<table cellpadding="2" cellspacing="0" width="98%" border="1" bordercolor="white" class="infotable">
<tr>
<td nowrap="1" class="header" _locID="Filename">Filename</td>
<td nowrap="1" class="header" _locID="Status">Status</td>
<td nowrap="1" class="header" _locID="Errors">Errors</td>
<td nowrap="1" class="header" _locID="Warnings">Warnings</td>
</tr>
<xsl:for-each select="source">
<xsl:sort select="@name" order="ascending" />
<xsl:variable name="source-id" select="generate-id(.)" />
<xsl:if test="count(event)!=count(event[@error-level='4'])">
<tr class="row">
<td class="content">
<A HREF="javascript:">
<xsl:attribute name="onClick">
javascript:document.images['
<xsl:value-of select="$source-id" />
'].click()
</xsl:attribute>
<IMG border="0" _locID="IMG.alt" _locAttrData="alt" alt="expand/collapse section" class="expandable" height="11" onclick="changepic()" src="_UpgradeReport_Files/UpgradeReport_Plus.gif" width="9">
<xsl:attribute name="name">
<xsl:value-of select="$source-id" />
</xsl:attribute>
<xsl:attribute name="child">
src
<xsl:value-of select="$source-id" />
</xsl:attribute>
</IMG>
</A>

<xsl:value-of select="@name" />
</td>
<td class="content">
<xsl:if test="count(event[@error-level='3'])=1">
<xsl:for-each select="event[@error-level='3']">
<xsl:if test="@description='Converted'">
<a _locID="Converted1">Converted</a>
</xsl:if>
<xsl:if test="@description!='Converted'">
<xsl:value-of select="@description" />
</xsl:if>
</xsl:for-each>
</xsl:if>
<xsl:if test="count(event[@error-level='3'])!=1 and count(event[@error-level='3' and @description='Converted'])!=0">
<a _locID="Converted2">Converted</a>
</xsl:if>
</td>
<td class="content">
<xsl:value-of select="count(event[@error-level='2'])" />
</td>
<td class="content">
<xsl:value-of select="count(event[@error-level='1'])" />
</td>
</tr>
<tr class="collapsed" bgcolor="#ffffff">
<xsl:attribute name="id">
src
<xsl:value-of select="$source-id" />
</xsl:attribute>
<td colspan="7">
<table width="97%" border="1" bordercolor="#dcdcdc" rules="cols" class="issuetable">
<tr>
<td colspan="7" class="issuetitle" _locID="ConversionIssues">
Conversion Report -
<xsl:value-of select="@name" />
:
</td>
</tr>
<xsl:for-each select="event[@error-level!='3']">
<xsl:if test="@error-level!='4'">
<tr>
<td class="issuenone" style="border-bottom:solid 1 lightgray">
<xsl:value-of select="@description" />
</td>
</tr>
</xsl:if>
</xsl:for-each>
</table>
</td>
</tr>
</xsl:if>
</xsl:for-each>
<tr valign="top">
<td class="foot">
<xsl:if test="count(source)!=1">
<xsl:value-of select="count(source)" />
<a _locID="file1">files</a>
</xsl:if>
<xsl:if test="count(source)=1">
<a _locID="file2">1 file</a>
</xsl:if>
</td>
<td class="foot">
<a _locID="Converted3">Converted</a>
:
<xsl:value-of select="count(source/event[@error-level='3' and @description='Converted'])" />
<BR />
<a _locID="NotConverted">Not converted</a>
:
<xsl:value-of select="count(source) - count(source/event[@error-level='3' and @description='Converted'])" />
</td>
<td class="foot">
<xsl:value-of select="count(source/event[@error-level='2'])" />
</td>
<td class="foot">
<xsl:value-of select="count(source/event[@error-level='1'])" />
</td>
</tr>
</table>
</xsl:for-each>
</xsl:template>
<xsl:template match="Property">
<xsl:if test="@Name!='Date' and @Name!='Time' and @Name!='LogNumber' and @Name!='Solution'">
<tr>
<td nowrap="1">
<b>
<xsl:value-of select="@Name" />
:
</b>
<xsl:value-of select="@Value" />
</td>
</tr>
</xsl:if>
</xsl:template>
<xsl:template match="UpgradeLog">
<html>
<head>
<META HTTP-EQUIV="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="_UpgradeReport_Files\UpgradeReport.css" />
<title _locID="ConversionReport0">
Conversion Report
<xsl:if test="Properties/Property[@Name='LogNumber']">
<xsl:value-of select="Properties/Property[@Name='LogNumber']/@Value" />
</xsl:if>
</title>
<script language="javascript">function outliner () { oMe = window.event.srcElement //get child element var child = document.all[event.srcElement.getAttribute("child",false)]; //if child element exists, expand or collapse it. if (null != child) child.className = child.className == "collapsed" ? "expanded" : "collapsed"; } function changepic() { uMe = window.event.srcElement; var check = uMe.src.toLowerCase(); if (check.lastIndexOf("upgradereport_plus.gif") != -1) { uMe.src = "_UpgradeReport_Files/UpgradeReport_Minus.gif" } else { uMe.src = "_UpgradeReport_Files/UpgradeReport_Plus.gif" } }</script>
</head>
<body topmargin="0" leftmargin="0" rightmargin="0" onclick="outliner();">
<h1 _locID="ConversionReport">
Conversion Report -
<xsl:value-of select="Properties/Property[@Name='Solution']/@Value" />
</h1>
<p>
<span class="note">
<b _locID="TimeOfConversion">Time of Conversion:</b>

<xsl:value-of select="Properties/Property[@Name='Date']/@Value" />

<xsl:value-of select="Properties/Property[@Name='Time']/@Value" />
<br />
</span>
</p>
<xsl:variable name="SortedEvents">
<Events>
<xsl:for-each select="Event">
<xsl:sort select="@Project" order="ascending" />
<xsl:sort select="@Source" order="ascending" />
<xsl:sort select="@ErrorLevel" order="ascending" />
<Event>
<xsl:attribute name="Project">
<xsl:value-of select="@Project" />
</xsl:attribute>
<xsl:attribute name="Solution">
<xsl:value-of select="/UpgradeLog/Properties/Property[@Name='Solution']/@Value" />
</xsl:attribute>
<xsl:attribute name="Source">
<xsl:value-of select="@Source" />
</xsl:attribute>
<xsl:attribute name="ErrorLevel">
<xsl:value-of select="@ErrorLevel" />
</xsl:attribute>
<xsl:attribute name="Description">
<xsl:value-of select="@Description" />
</xsl:attribute>
</Event>
</xsl:for-each>
</Events>
</xsl:variable>
<xsl:variable name="Projects">
<xsl:apply-templates select="msxsl:node-set($SortedEvents)/*" mode="createProjects" />
</xsl:variable>
<xsl:apply-templates select="msxsl:node-set($Projects)/*" />
<p />
<p>
<table class="note">
<tr>
<td nowrap="1">
<b _locID="ConversionSettings">Conversion Settings</b>
</td>
</tr>
<xsl:apply-templates select="Properties" />
</table>
</p>
</body>
</html>
</xsl:template>
</xsl:stylesheet>



<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type='text/xsl' href='_UpgradeReport_Files/UpgradeReport.xslt'?>
<UpgradeLog>
<Properties>
<Property Name="Solution" Value="huhu">
</Property>
<Property Name="Solution File" Value="C:\Projeler\waDataGrid\huhu.sln">
</Property>
<Property Name="Date" Value="12 Ekim 2010 Salı">
</Property>
<Property Name="Time" Value="16:43:27">
</Property>
</Properties>
<Event ErrorLevel="0" Project="huhu" Source="huhu.csproj" Description="Project file successfully backed up as C:\Projeler\waDataGrid\Backup\huhu.csproj">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="huhu.csproj.user" Description="Project user file successfully backed up as C:\Projeler\waDataGrid\Backup\huhu.csproj.user">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Albumler.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Albumler.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Albumler.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Albumler.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="CevreHaber.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\CevreHaber.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="CevreHaber.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\CevreHaber.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="CevreIcerik.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\CevreIcerik.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="CevreIcerik.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\CevreIcerik.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Classes\Album.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Classes\Album.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Classes\Context.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Classes\Context.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Classes\Video.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Classes\Video.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Classes\HaberDetay.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Classes\HaberDetay.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Classes\Mesaj.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Classes\Mesaj.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Classes\EkOzellik.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Classes\EkOzellik.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Classes\CTopkaya\CVideo\FFMpeg.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Classes\CTopkaya\CVideo\FFMpeg.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Classes\JsClasses\JsClasses.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Classes\JsClasses\JsClasses.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Classes\Puanlama.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Classes\Puanlama.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Classes\Reklam.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Classes\Reklam.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Classes\Yardimci.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Classes\Yardimci.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Classes\YetkiliKullanici.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Classes\YetkiliKullanici.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Classes\CTopkaya\CException\CException.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Classes\CTopkaya\CException\CException.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Classes\DosyaEki.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Classes\DosyaEki.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Classes\Ek.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Classes\Ek.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Classes\TabloEtiketi.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Classes\TabloEtiketi.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Classes\DAO.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Classes\DAO.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Classes\Editor.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Classes\Editor.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Classes\Enums.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Classes\Enums.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Classes\Etiket.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Classes\Etiket.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Classes\Extension.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Classes\Extension.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Classes\Haber.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Classes\Haber.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Classes\HaberEki.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Classes\HaberEki.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Classes\HaberKategori.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Classes\HaberKategori.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Classes\Hit.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Classes\Hit.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Classes\IBaseEntity.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Classes\IBaseEntity.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Classes\Ilan.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Classes\Ilan.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Classes\IlanEki.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Classes\IlanEki.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Classes\IlanKategori.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Classes\IlanKategori.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Classes\CTopkaya\CImage\ImageResize.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Classes\CTopkaya\CImage\ImageResize.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Classes\Member.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Classes\Member.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Classes\TabloEki.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Classes\TabloEki.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Classes\User.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Classes\User.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Classes\Yazar.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Classes\Yazar.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Classes\Yazi.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Classes\Yazi.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Classes\Yorum.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Classes\Yorum.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="CopVideoIzle.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\CopVideoIzle.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="CopVideoIzle.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\CopVideoIzle.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="BalikOltaHaber.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\BalikOltaHaber.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="BalikOltaHaber.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\BalikOltaHaber.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="BalikOltaIcerik.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\BalikOltaIcerik.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="BalikOltaIcerik.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\BalikOltaIcerik.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="KurumsalYabanNedir.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\KurumsalYabanNedir.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="KurumsalYabanNedir.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\KurumsalYabanNedir.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="KurumsalYaban4Yil.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\KurumsalYaban4Yil.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="KurumsalYaban4Yil.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\KurumsalYaban4Yil.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="KurumsalNedenYaban.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\KurumsalNedenYaban.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="KurumsalNedenYaban.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\KurumsalNedenYaban.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="KurumsalSSS.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\KurumsalSSS.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="KurumsalSSS.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\KurumsalSSS.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="KurumsalKKTC.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\KurumsalKKTC.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="KurumsalKKTC.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\KurumsalKKTC.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="KurumsalNasilIzleyebilirsiniz.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\KurumsalNasilIzleyebilirsiniz.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="KurumsalNasilIzleyebilirsiniz.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\KurumsalNasilIzleyebilirsiniz.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="IletisimUlasin.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\IletisimUlasin.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="IletisimUlasin.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\IletisimUlasin.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="IletisimKroki.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\IletisimKroki.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="IletisimKroki.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\IletisimKroki.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="IletisimKimiAramali.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\IletisimKimiAramali.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="IletisimKimiAramali.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\IletisimKimiAramali.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Iletisim.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Iletisim.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Iletisim.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Iletisim.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\FlashTutucu.ascx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\FlashTutucu.ascx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\FlashTutucu.ascx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\FlashTutucu.ascx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="YelkenDenizIcerik.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\YelkenDenizIcerik.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="YelkenDenizIcerik.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\YelkenDenizIcerik.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="YelkenDenizHaber.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\YelkenDenizHaber.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="YelkenDenizHaber.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\YelkenDenizHaber.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="PetClubHaber.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\PetClubHaber.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="PetClubHaber.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\PetClubHaber.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="PetClubIcerik.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\PetClubIcerik.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="PetClubIcerik.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\PetClubIcerik.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="KopekAvAticilikHaber.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\KopekAvAticilikHaber.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="KopekAvAticilikHaber.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\KopekAvAticilikHaber.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="KopekAvAticilikIcerik.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\KopekAvAticilikIcerik.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="KopekAvAticilikIcerik.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\KopekAvAticilikIcerik.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="DogaSporlariIcerik.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\DogaSporlariIcerik.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="DogaSporlariIcerik.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\DogaSporlariIcerik.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="DogaSporlariHaber.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\DogaSporlariHaber.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="DogaSporlariHaber.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\DogaSporlariHaber.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="DortXDortIcerik.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\DortXDortIcerik.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="DortXDortIcerik.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\DortXDortIcerik.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="TarimIcerik.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\TarimIcerik.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="TarimIcerik.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\TarimIcerik.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="TarimHaber.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\TarimHaber.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="TarimHaber.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\TarimHaber.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="DortXDortHaber.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\DortXDortHaber.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="DortXDortHaber.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\DortXDortHaber.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="RSS-SVN.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\RSS-SVN.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="RSS-SVN.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\RSS-SVN.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\AnaSayfaKutuHaberler.ascx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\AnaSayfaKutuHaberler.ascx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\AnaSayfaKutuHaberler.ascx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\AnaSayfaKutuHaberler.ascx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\AnaSayfaMansetHaberler.ascx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\AnaSayfaMansetHaberler.ascx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\AnaSayfaMansetHaberler.ascx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\AnaSayfaMansetHaberler.ascx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\Etiketler.ascx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\Etiketler.ascx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\Etiketler.ascx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\Etiketler.ascx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\HitArttir.ascx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\HitArttir.ascx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\HitArttir.ascx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\HitArttir.ascx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\KategoriHaberDigerBasliklar.ascx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\KategoriHaberDigerBasliklar.ascx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\KategoriHaberDigerBasliklar.ascx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\KategoriHaberDigerBasliklar.ascx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\ctrlYorumlar.ascx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\ctrlYorumlar.ascx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\ctrlYorumlar.ascx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\ctrlYorumlar.ascx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Default.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Default.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Default.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Default.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Default1.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Default1.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Default1.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Default1.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="DefaultMaster.Master.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\DefaultMaster.Master.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="DefaultMaster.Master.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\DefaultMaster.Master.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Global.asax.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Global.asax.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="IlanDetay.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\IlanDetay.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="IlanDetay.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\IlanDetay.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Ilanlar.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Ilanlar.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Ilanlar.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Ilanlar.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Properties\AssemblyInfo.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Properties\AssemblyInfo.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Settings.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Settings.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\KategoriHaberlerManset.ascx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\KategoriHaberlerManset.ascx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\KategoriHaberlerManset.ascx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\KategoriHaberlerManset.ascx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\ResimAlbumuViewer.ascx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\ResimAlbumuViewer.ascx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\ResimAlbumuViewer.ascx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\ResimAlbumuViewer.ascx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\ucPuanlama.ascx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\ucPuanlama.ascx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\ucPuanlama.ascx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\ucPuanlama.ascx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\ResimAlbumu.ascx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\ResimAlbumu.ascx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\ResimAlbumu.ascx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\ResimAlbumu.ascx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\VideoTutucu.ascx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\VideoTutucu.ascx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\VideoTutucu.ascx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\VideoTutucu.ascx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\YuklenmisResim.ascx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\YuklenmisResim.ascx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\YuklenmisResim.ascx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\YuklenmisResim.ascx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\YuklenmisResimVideo.ascx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\YuklenmisResimVideo.ascx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\YuklenmisResimVideo.ascx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\YuklenmisResimVideo.ascx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="WS\wsGenel.asmx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\WS\wsGenel.asmx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\AlbumDuzenle.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\AlbumDuzenle.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\AlbumDuzenle.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\AlbumDuzenle.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\AlbumEkle.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\AlbumEkle.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\AlbumEkle.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\AlbumEkle.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\ControlPanel.Master.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\ControlPanel.Master.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\ControlPanel.Master.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\ControlPanel.Master.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\CopDosyaYuklemeTest.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\CopDosyaYuklemeTest.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\CopDosyaYuklemeTest.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\CopDosyaYuklemeTest.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\FlashYukleBul.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\FlashYukleBul.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\FlashYukleBul.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\FlashYukleBul.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\HaberDuzenle.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\HaberDuzenle.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\HaberDuzenle.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\HaberDuzenle.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\DosyaYukle.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\DosyaYukle.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\DosyaYukle.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\DosyaYukle.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\IlanDuzenle.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\IlanDuzenle.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\IlanDuzenle.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\IlanDuzenle.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\IlanEkle.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\IlanEkle.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\IlanEkle.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\IlanEkle.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\KoseYazisiEkle.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\KoseYazisiEkle.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\KoseYazisiEkle.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\KoseYazisiEkle.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\ReklamEkle.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\ReklamEkle.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\ReklamEkle.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\ReklamEkle.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\ResimBul.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\ResimBul.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\ResimBul.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\ResimBul.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\ResimVideoBul.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\ResimVideoBul.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\ResimVideoBul.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\ResimVideoBul.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\ResimSec.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\ResimSec.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\ResimSec.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\ResimSec.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\TestYuklenmisResimler.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\TestYuklenmisResimler.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\TestYuklenmisResimler.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\TestYuklenmisResimler.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\UC\DosyaYukleme.ascx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\UC\DosyaYukleme.ascx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\UC\DosyaYukleme.ascx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\UC\DosyaYukleme.ascx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\UC\EtikettenBulunanFlash.ascx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\UC\EtikettenBulunanFlash.ascx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\UC\EtikettenBulunanFlash.ascx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\UC\EtikettenBulunanFlash.ascx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\UC\EtikettenBulunanResim.ascx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\UC\EtikettenBulunanResim.ascx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\UC\EtikettenBulunanResim.ascx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\UC\EtikettenBulunanResim.ascx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\UC\EtikettenBulunanResimVideo.ascx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\UC\EtikettenBulunanResimVideo.ascx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\UC\EtikettenBulunanResimVideo.ascx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\UC\EtikettenBulunanResimVideo.ascx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\UC\HaberKategorileriVeSirasi.ascx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\UC\HaberKategorileriVeSirasi.ascx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\UC\HaberKategorileriVeSirasi.ascx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\UC\HaberKategorileriVeSirasi.ascx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\ReklamTutucu.ascx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\ReklamTutucu.ascx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\ReklamTutucu.ascx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\ReklamTutucu.ascx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\VideoEkle.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\VideoEkle.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\VideoEkle.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\VideoEkle.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\EnCokHitAlanlar.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\EnCokHitAlanlar.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\EnCokHitAlanlar.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\EnCokHitAlanlar.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\YaziDuzenle.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\YaziDuzenle.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\YaziDuzenle.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\YaziDuzenle.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\YaziEkle.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\YaziEkle.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\YaziEkle.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\YaziEkle.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\_SablonEtiket.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\_SablonEtiket.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\_SablonEtiket.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\_SablonEtiket.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\FileUpload.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\FileUpload.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\FileUpload.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\FileUpload.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\HaberEkle.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\HaberEkle.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\HaberEkle.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\HaberEkle.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\KullaniciYetkilendirme.aspx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\KullaniciYetkilendirme.aspx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\KullaniciYetkilendirme.aspx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\KullaniciYetkilendirme.aspx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\UC\DizinlerTreeview.ascx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\UC\DizinlerTreeview.ascx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\UC\DizinlerTreeview.ascx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\UC\DizinlerTreeview.ascx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\UC\KonuyaYeniEtiket.ascx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\UC\KonuyaYeniEtiket.ascx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\UC\KonuyaYeniEtiket.ascx.designer.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\UC\KonuyaYeniEtiket.ascx.designer.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\WS\Yonetim.asmx.cs" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\WS\Yonetim.asmx.cs">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="css\_notes\css.css.mno" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\css\_notes\css.css.mno">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="embed\video\1750.flv" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\embed\video\1750.flv">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_spellerpages\spellerpages\server-scripts\spellchecker.cfm" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_spellerpages\spellerpages\server-scripts\spellchecker.cfm">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_spellerpages\spellerpages\server-scripts\spellchecker.php" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_spellerpages\spellerpages\server-scripts\spellchecker.php">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_spellerpages\spellerpages\server-scripts\spellchecker.pl" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_spellerpages\spellerpages\server-scripts\spellchecker.pl">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\cfm\cf5_connector.cfm" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\cfm\cf5_connector.cfm">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\cfm\cf5_upload.cfm" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\cfm\cf5_upload.cfm">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\cfm\cf_basexml.cfm" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\cfm\cf_basexml.cfm">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\cfm\cf_commands.cfm" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\cfm\cf_commands.cfm">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\cfm\cf_connector.cfm" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\cfm\cf_connector.cfm">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\cfm\cf_io.cfm" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\cfm\cf_io.cfm">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\cfm\cf_upload.cfm" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\cfm\cf_upload.cfm">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\cfm\cf_util.cfm" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\cfm\cf_util.cfm">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\cfm\config.cfm" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\cfm\config.cfm">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\cfm\connector.cfm" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\cfm\connector.cfm">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\cfm\image.cfc" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\cfm\image.cfc">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\cfm\ImageObject.cfc" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\cfm\ImageObject.cfc">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\cfm\upload.cfm" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\cfm\upload.cfm">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\lasso\config.lasso" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\lasso\config.lasso">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\lasso\connector.lasso" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\lasso\connector.lasso">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\lasso\upload.lasso" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\lasso\upload.lasso">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\perl\basexml.pl" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\perl\basexml.pl">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\perl\commands.pl" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\perl\commands.pl">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\perl\connector.cgi" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\perl\connector.cgi">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\perl\io.pl" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\perl\io.pl">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\perl\upload.cgi" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\perl\upload.cgi">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\perl\upload_fck.pl" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\perl\upload_fck.pl">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\perl\util.pl" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\perl\util.pl">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\php\basexml.php" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\php\basexml.php">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\php\commands.php" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\php\commands.php">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\php\config.php" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\php\config.php">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\php\connector.php" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\php\connector.php">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\php\io.php" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\php\io.php">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\php\phpcompat.php" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\php\phpcompat.php">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\php\upload.php" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\php\upload.php">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\php\util.php" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\php\util.php">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\py\config.py" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\py\config.py">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\py\connector.py" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\py\connector.py">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\py\fckcommands.py" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\py\fckcommands.py">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\py\fckconnector.py" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\py\fckconnector.py">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\py\fckoutput.py" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\py\fckoutput.py">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\py\fckutil.py" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\py\fckutil.py">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\py\upload.py" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\py\upload.py">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\py\wsgi.py" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\py\wsgi.py">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\py\zope.py" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\py\zope.py">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\fckeditor.afp" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\fckeditor.afp">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\fckeditor.cfc" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\fckeditor.cfc">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\fckeditor.cfm" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\fckeditor.cfm">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\fckeditor.lasso" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\fckeditor.lasso">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\fckeditor.php" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\fckeditor.php">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\fckeditor.pl" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\fckeditor.pl">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\fckeditor.py" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\fckeditor.py">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\fckeditor_php4.php" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\fckeditor_php4.php">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\fckeditor_php5.php" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\fckeditor_php5.php">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\fckutils.cfm" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\fckutils.cfm">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="ffmepg\Thumbs.db" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\ffmepg\Thumbs.db">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="ffmepg\vhook\drawtext.c" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\ffmepg\vhook\drawtext.c">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="ffmepg\vhook\fish.c" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\ffmepg\vhook\fish.c">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="ffmepg\vhook\imlib2.c" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\ffmepg\vhook\imlib2.c">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="ffmepg\vhook\Makefile" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\ffmepg\vhook\Makefile">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="ffmepg\vhook\null.c" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\ffmepg\vhook\null.c">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="ffmepg\vhook\ppm.c" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\ffmepg\vhook\ppm.c">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="ffmepg\vhook\watermark.c" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\ffmepg\vhook\watermark.c">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="css\css.css" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\css\css.css">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Default1.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Default1.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="embed\player.swf" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\embed\player.swf">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="embed\video\1750_video.jpg" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\embed\video\1750_video.jpg">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Global.asax" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Global.asax">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\4x4Caption.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\4x4Caption.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\aksam.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\aksam.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\anaMenuZemBckBeyazGri.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\anaMenuZemBckBeyazGri.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\avcilikAtcilik.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\avcilikAtcilik.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\backgroundCem.jpg" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\backgroundCem.jpg">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\balikOltaCaption.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\balikOltaCaption.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\bckGriBeyazTram.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\bckGriBeyazTram.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\bckSiyahGriTram.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\bckSiyahGriTram.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\bckTile.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\bckTile.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\btnAraBck.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\btnAraBck.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\btnGirisBck.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\btnGirisBck.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\bullet.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\bullet.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\bulletSonIlanlar.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\bulletSonIlanlar.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\canliYayin.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\canliYayin.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\cevreCaption.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\cevreCaption.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\copyrightAyrac.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\copyrightAyrac.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\dogaSporlariCaption.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\dogaSporlariCaption.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\dovizKurlari.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\dovizKurlari.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\dunyaninNeresinde.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\dunyaninNeresinde.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\haberlerTransBck324.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\haberlerTransBck324.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\hava_back.jpg" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\hava_back.jpg">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\hepsi.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\hepsi.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\kategoriBalikOlta.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\kategoriBalikOlta.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\kategoriHaberBg.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\kategoriHaberBg.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\logoSolUst.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\logoSolUst.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\ortaLinkler.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\ortaLinkler.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\ortaScreen.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\ortaScreen.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\oyunlar.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\oyunlar.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\sabah.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\sabah.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\solUstYabanStore.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\solUstYabanStore.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\tbl1BckBeyazGri.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\tbl1BckBeyazGri.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\tumAkis.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\tumAkis.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\tvdeBugun.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\tvdeBugun.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\tvdeBugundenSecmeler.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\tvdeBugundenSecmeler.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\txtAra_AnaSayfa_bck.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\txtAra_AnaSayfa_bck.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\txtUyeAdiBck.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\txtUyeAdiBck.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\ufukGuldemi.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\ufukGuldemi.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\ustIlkMenu.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\ustIlkMenu.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\video.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\video.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\yaban web background.jpg" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\yaban web background.jpg">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\yabandaBugun.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\yabandaBugun.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\yabanYeniler.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\yabanYeniler.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\yazarlarCaptionBck.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\yazarlarCaptionBck.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\yelkenDenizCaption.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\yelkenDenizCaption.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="js\bugun.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\js\bugun.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="js\2_jquery-1.3.2.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\js\2_jquery-1.3.2.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="js\yaban.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\js\yaban.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="js\yabanYeni.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\js\yabanYeni.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Referanslar\Microsoft.Practices.EnterpriseLibrary.Common.dll" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Referanslar\Microsoft.Practices.EnterpriseLibrary.Common.dll">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Referanslar\Microsoft.Practices.EnterpriseLibrary.Data.dll" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Referanslar\Microsoft.Practices.EnterpriseLibrary.Data.dll">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="resimler\hayvan\tiger.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\resimler\hayvan\tiger.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="resimler\tvden\canimKopegim.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\resimler\tvden\canimKopegim.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="resimler\yazarlar\yazarResim.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\resimler\yazarlar\yazarResim.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Web.config" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Web.config">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="WS\wsGenel.asmx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\WS\wsGenel.asmx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\KullaniciYetkilendirme.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\KullaniciYetkilendirme.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Albumler.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Albumler.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="CevreHaber.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\CevreHaber.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="CevreIcerik.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\CevreIcerik.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="CopVideoIzle.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\CopVideoIzle.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="BalikOltaHaber.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\BalikOltaHaber.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="BalikOltaIcerik.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\BalikOltaIcerik.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\bg\kurumsalSSSbg.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\bg\kurumsalSSSbg.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="KurumsalYabanNedir.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\KurumsalYabanNedir.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="KurumsalYaban4Yil.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\KurumsalYaban4Yil.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\nedenYaban\cokHeyecanli.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\nedenYaban\cokHeyecanli.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\nedenYaban\dogaEvrenseldir.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\nedenYaban\dogaEvrenseldir.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\nedenYaban\dogalHayatinGuvencesi.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\nedenYaban\dogalHayatinGuvencesi.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\nedenYaban\madeinTurkey.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\nedenYaban\madeinTurkey.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\nedenYaban\yabaniCokSeviyorum.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\nedenYaban\yabaniCokSeviyorum.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\nedenYaban\yabanKazandirir.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\nedenYaban\yabanKazandirir.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="KurumsalNedenYaban.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\KurumsalNedenYaban.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="KurumsalSSS.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\KurumsalSSS.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\asel-yaban.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\asel-yaban.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="KurumsalKKTC.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\KurumsalKKTC.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="css\kurumsal.css" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\css\kurumsal.css">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\beyazdanYesileOrtaBg.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\beyazdanYesileOrtaBg.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\kurumsalMesajUstuBg.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\kurumsalMesajUstuBg.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\kurumsalOrta625.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\kurumsalOrta625.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\kurumsalYabanHangiKanallarda.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\kurumsalYabanHangiKanallarda.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="KurumsalNasilIzleyebilirsiniz.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\KurumsalNasilIzleyebilirsiniz.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="IletisimUlasin.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\IletisimUlasin.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="IletisimKroki.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\IletisimKroki.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="IletisimKimiAramali.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\IletisimKimiAramali.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="css\BalikOltaIcerik.css" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\css\BalikOltaIcerik.css">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="css\btnPrimary.css" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\css\btnPrimary.css">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="css\DefaultMaster.css" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\css\DefaultMaster.css">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="css\iletisim.css" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\css\iletisim.css">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="css\one-column-emphasis.css" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\css\one-column-emphasis.css">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="css\Reklamlar.css" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\css\Reklamlar.css">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\beyazDikCizgi.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\beyazDikCizgi.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\btnMesajGonder.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\btnMesajGonder.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\DigerHaberler_BalikOlta.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\DigerHaberler_BalikOlta.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\DigerHaberler_PetClub.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\DigerHaberler_PetClub.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\DigerHaberler_YelkenDeniz.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\DigerHaberler_YelkenDeniz.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\HaberinDevami_BalikOlta.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\HaberinDevami_BalikOlta.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\HaberinDevami_KopekAvAticilik.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\HaberinDevami_KopekAvAticilik.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\HaberinDevami_PetClub.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\HaberinDevami_PetClub.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\HaberinDevami_YelkenDeniz.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\HaberinDevami_YelkenDeniz.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\iletisimMesajUstuBaglantiBg.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\iletisimMesajUstuBaglantiBg.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\iletisimMesajUstuBg.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\iletisimMesajUstuBg.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\iletisimOrtaBg.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\iletisimOrtaBg.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\iletisimOrtaSiyahBg.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\iletisimOrtaSiyahBg.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\iletisimSagBg.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\iletisimSagBg.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\iletisimSolBg.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\iletisimSolBg.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\kroki.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\kroki.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\sprite_chrome_v2.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\sprite_chrome_v2.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\tumGifArkaYahoo.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\tumGifArkaYahoo.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\txtAreaMesajBg.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\txtAreaMesajBg.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\txtBg.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\txtBg.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\yabanKurumsalEnUst.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\yabanKurumsalEnUst.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\yorumArkaPlan1.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\yorumArkaPlan1.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="js\jQuery.DateInput\date_input.css" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\js\jQuery.DateInput\date_input.css">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="js\jQuery.DateInput\jquery.date_input.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\js\jQuery.DateInput\jquery.date_input.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="js\jQuery.TimeInput\time_input.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\js\jQuery.TimeInput\time_input.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="js\jQuery.TimeInput\time_input.min.css" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\js\jQuery.TimeInput\time_input.min.css">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="js\jQuery.TimeInput\time_input.min.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\js\jQuery.TimeInput\time_input.min.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Iletisim.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Iletisim.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\FlashTutucu.ascx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\FlashTutucu.ascx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="YelkenDenizIcerik.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\YelkenDenizIcerik.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="css\YelkenDenizIcerik.css" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\css\YelkenDenizIcerik.css">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="YelkenDenizHaber.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\YelkenDenizHaber.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="PetClubHaber.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\PetClubHaber.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="css\PetClubIcerik.css" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\css\PetClubIcerik.css">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="PetClubIcerik.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\PetClubIcerik.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="KopekAvAticilikHaber.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\KopekAvAticilikHaber.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="css\KopekAvAticilikIcerik.css" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\css\KopekAvAticilikIcerik.css">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="KopekAvAticilikIcerik.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\KopekAvAticilikIcerik.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="css\DogaSporlariIcerik.css" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\css\DogaSporlariIcerik.css">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="DogaSporlariIcerik.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\DogaSporlariIcerik.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="DogaSporlariHaber.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\DogaSporlariHaber.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="css\DortXDortIcerik.css" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\css\DortXDortIcerik.css">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="DortXDortIcerik.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\DortXDortIcerik.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="css\TarimIcerik.css" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\css\TarimIcerik.css">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\DigerHaberler_DogaSporlari.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\DigerHaberler_DogaSporlari.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\DigerHaberler_Tarim.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\DigerHaberler_Tarim.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\HaberinDevami_DogaSporlari.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\HaberinDevami_DogaSporlari.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\HaberinDevami_Tarim.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\HaberinDevami_Tarim.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="TarimIcerik.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\TarimIcerik.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\balikOltaBarKategoriAdi.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\balikOltaBarKategoriAdi.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\balikOltaBarKategoriAdiBg.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\balikOltaBarKategoriAdiBg.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\DigerHaberler_4X4.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\DigerHaberler_4X4.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\DogaSporlariBarKategoriAdi.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\DogaSporlariBarKategoriAdi.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\DogaSporlariBarKategoriAdiBg.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\DogaSporlariBarKategoriAdiBg.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\HaberinDevami_4x4.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\HaberinDevami_4x4.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\kopekAvAticilikBarKategoriAdi.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\kopekAvAticilikBarKategoriAdi.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\kopekAvAticilikBarKategoriAdiBg.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\kopekAvAticilikBarKategoriAdiBg.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\petClubBarKategoriAdi.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\petClubBarKategoriAdi.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\petClubBarKategoriAdiBg.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\petClubBarKategoriAdiBg.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\TarimBarKategoriAdi.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\TarimBarKategoriAdi.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\TarimBarKategoriAdiBg.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\TarimBarKategoriAdiBg.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\YelkenDenizBarKategoriAdi.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\YelkenDenizBarKategoriAdi.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\YelkenDenizBarKategoriAdiBg.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\YelkenDenizBarKategoriAdiBg.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="TarimHaber.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\TarimHaber.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="DortXDortHaber.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\DortXDortHaber.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="css\CevreIcerik.css" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\css\CevreIcerik.css">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="css\colorbox.css" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\css\colorbox.css">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="css\Etiketler.css" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\css\Etiketler.css">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="css\HaberKategori.css" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\css\HaberKategori.css">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="css\IlanDetaylar.css" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\css\IlanDetaylar.css">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="css\Ilanlar.css" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\css\Ilanlar.css">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="css\KategoriHaberDigerBasliklar.css" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\css\KategoriHaberDigerBasliklar.css">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="css\MasterPage.css" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\css\MasterPage.css">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="css\Yorumlar.css" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\css\Yorumlar.css">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\css\behaviors\disablehandles.htc" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\css\behaviors\disablehandles.htc">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\css\behaviors\showtableborders.htc" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\css\behaviors\showtableborders.htc">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\css\fck_editorarea.css" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\css\fck_editorarea.css">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\css\fck_internal.css" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\css\fck_internal.css">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\css\fck_showtableborders_gecko.css" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\css\fck_showtableborders_gecko.css">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\css\images\block_address.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\css\images\block_address.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\css\images\block_blockquote.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\css\images\block_blockquote.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\css\images\block_div.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\css\images\block_div.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\css\images\block_h1.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\css\images\block_h1.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\css\images\block_h2.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\css\images\block_h2.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\css\images\block_h3.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\css\images\block_h3.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\css\images\block_h4.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\css\images\block_h4.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\css\images\block_h5.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\css\images\block_h5.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\css\images\block_h6.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\css\images\block_h6.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\css\images\block_p.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\css\images\block_p.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\css\images\block_pre.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\css\images\block_pre.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\css\images\fck_anchor.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\css\images\fck_anchor.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\css\images\fck_flashlogo.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\css\images\fck_flashlogo.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\css\images\fck_hiddenfield.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\css\images\fck_hiddenfield.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\css\images\fck_pagebreak.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\css\images\fck_pagebreak.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\common\fck_dialog_common.css" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\common\fck_dialog_common.css">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\common\fck_dialog_common.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\common\fck_dialog_common.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\common\images\locked.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\common\images\locked.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\common\images\reset.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\common\images\reset.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\common\images\unlocked.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\common\images\unlocked.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_about.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_about.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_about\logo_fckeditor.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_about\logo_fckeditor.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_about\logo_fredck.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_about\logo_fredck.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_anchor.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_anchor.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_button.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_button.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_checkbox.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_checkbox.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_colorselector.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_colorselector.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_docprops.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_docprops.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_docprops\fck_document_preview.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_docprops\fck_document_preview.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_flash.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_flash.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_flash\fck_flash.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_flash\fck_flash.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_flash\fck_flash_preview.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_flash\fck_flash_preview.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_form.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_form.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_hiddenfield.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_hiddenfield.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_image.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_image.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_image\fck_image.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_image\fck_image.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_image\fck_image_preview.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_image\fck_image_preview.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_link.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_link.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_link\fck_link.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_link\fck_link.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_listprop.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_listprop.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_paste.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_paste.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_radiobutton.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_radiobutton.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_replace.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_replace.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_select.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_select.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_select\fck_select.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_select\fck_select.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_smiley.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_smiley.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_source.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_source.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_specialchar.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_specialchar.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_spellerpages.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_spellerpages.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_spellerpages\spellerpages\blank.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_spellerpages\spellerpages\blank.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_spellerpages\spellerpages\controls.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_spellerpages\spellerpages\controls.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_spellerpages\spellerpages\controlWindow.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_spellerpages\spellerpages\controlWindow.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_spellerpages\spellerpages\spellchecker.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_spellerpages\spellerpages\spellchecker.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_spellerpages\spellerpages\spellChecker.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_spellerpages\spellerpages\spellChecker.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_spellerpages\spellerpages\spellerStyle.css" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_spellerpages\spellerpages\spellerStyle.css">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_spellerpages\spellerpages\wordWindow.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_spellerpages\spellerpages\wordWindow.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_table.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_table.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_tablecell.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_tablecell.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_template.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_template.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_template\images\template1.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_template\images\template1.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_template\images\template2.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_template\images\template2.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_template\images\template3.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_template\images\template3.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_textarea.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_textarea.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dialog\fck_textfield.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dialog\fck_textfield.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dtd\fck_dtd_test.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dtd\fck_dtd_test.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dtd\fck_xhtml10strict.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dtd\fck_xhtml10strict.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\dtd\fck_xhtml10transitional.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\dtd\fck_xhtml10transitional.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\fckdebug.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\fckdebug.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\fckdialog.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\fckdialog.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\fckeditor.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\fckeditor.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\fckeditor.original.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\fckeditor.original.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\browser.css" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\browser.css">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\browser.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\browser.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\frmactualfolder.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\frmactualfolder.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\frmcreatefolder.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\frmcreatefolder.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\frmfolders.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\frmfolders.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\frmresourceslist.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\frmresourceslist.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\frmresourcetype.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\frmresourcetype.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\frmupload.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\frmupload.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\ButtonArrow.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\ButtonArrow.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\Folder.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\Folder.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\Folder32.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\Folder32.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\FolderOpened.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\FolderOpened.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\FolderOpened32.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\FolderOpened32.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\FolderUp.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\FolderUp.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\32\ai.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\32\ai.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\32\avi.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\32\avi.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\32\bmp.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\32\bmp.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\32\cs.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\32\cs.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\32\default.icon.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\32\default.icon.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\32\dll.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\32\dll.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\32\doc.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\32\doc.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\32\exe.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\32\exe.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\32\fla.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\32\fla.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\32\gif.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\32\gif.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\32\htm.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\32\htm.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\32\html.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\32\html.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\32\jpg.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\32\jpg.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\32\js.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\32\js.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\32\mdb.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\32\mdb.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\32\mp3.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\32\mp3.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\32\pdf.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\32\pdf.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\32\png.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\32\png.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\32\ppt.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\32\ppt.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\32\rdp.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\32\rdp.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\32\swf.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\32\swf.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\32\swt.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\32\swt.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\32\txt.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\32\txt.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\32\vsd.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\32\vsd.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\32\xls.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\32\xls.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\32\xml.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\32\xml.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\32\zip.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\32\zip.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\ai.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\ai.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\avi.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\avi.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\bmp.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\bmp.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\cs.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\cs.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\default.icon.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\default.icon.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\dll.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\dll.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\doc.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\doc.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\exe.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\exe.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\fla.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\fla.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\gif.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\gif.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\htm.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\htm.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\html.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\html.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\jpg.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\jpg.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\js.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\js.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\mdb.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\mdb.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\mp3.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\mp3.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\pdf.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\pdf.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\png.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\png.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\ppt.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\ppt.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\rdp.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\rdp.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\swf.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\swf.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\swt.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\swt.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\txt.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\txt.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\vsd.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\vsd.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\xls.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\xls.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\xml.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\xml.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\icons\zip.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\icons\zip.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\images\spacer.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\images\spacer.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\js\common.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\js\common.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\browser\default\js\fckxml.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\browser\default\js\fckxml.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\aspx\config.ascx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\aspx\config.ascx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\aspx\connector.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\aspx\connector.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\aspx\upload.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\aspx\upload.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\asp\basexml.asp" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\asp\basexml.asp">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\asp\class_upload.asp" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\asp\class_upload.asp">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\asp\commands.asp" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\asp\commands.asp">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\asp\config.asp" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\asp\config.asp">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\asp\connector.asp" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\asp\connector.asp">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\asp\io.asp" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\asp\io.asp">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\asp\upload.asp" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\asp\upload.asp">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\asp\util.asp" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\asp\util.asp">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\py\htaccess.txt" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\py\htaccess.txt">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\test.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\test.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\filemanager\connectors\uploadtest.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\filemanager\connectors\uploadtest.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\images\anchor.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\images\anchor.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\images\arrow_ltr.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\images\arrow_ltr.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\images\arrow_rtl.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\images\arrow_rtl.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\images\smiley\msn\angel_smile.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\images\smiley\msn\angel_smile.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\images\smiley\msn\angry_smile.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\images\smiley\msn\angry_smile.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\images\smiley\msn\broken_heart.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\images\smiley\msn\broken_heart.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\images\smiley\msn\cake.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\images\smiley\msn\cake.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\images\smiley\msn\confused_smile.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\images\smiley\msn\confused_smile.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\images\smiley\msn\cry_smile.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\images\smiley\msn\cry_smile.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\images\smiley\msn\devil_smile.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\images\smiley\msn\devil_smile.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\images\smiley\msn\embaressed_smile.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\images\smiley\msn\embaressed_smile.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\images\smiley\msn\envelope.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\images\smiley\msn\envelope.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\images\smiley\msn\heart.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\images\smiley\msn\heart.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\images\smiley\msn\kiss.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\images\smiley\msn\kiss.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\images\smiley\msn\lightbulb.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\images\smiley\msn\lightbulb.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\images\smiley\msn\omg_smile.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\images\smiley\msn\omg_smile.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\images\smiley\msn\regular_smile.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\images\smiley\msn\regular_smile.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\images\smiley\msn\sad_smile.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\images\smiley\msn\sad_smile.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\images\smiley\msn\shades_smile.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\images\smiley\msn\shades_smile.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\images\smiley\msn\teeth_smile.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\images\smiley\msn\teeth_smile.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\images\smiley\msn\thumbs_down.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\images\smiley\msn\thumbs_down.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\images\smiley\msn\thumbs_up.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\images\smiley\msn\thumbs_up.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\images\smiley\msn\tounge_smile.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\images\smiley\msn\tounge_smile.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\images\smiley\msn\whatchutalkingabout_smile.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\images\smiley\msn\whatchutalkingabout_smile.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\images\smiley\msn\wink_smile.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\images\smiley\msn\wink_smile.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\images\spacer.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\images\spacer.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\js\fckeditorcode_gecko.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\js\fckeditorcode_gecko.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\js\fckeditorcode_ie.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\js\fckeditorcode_ie.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\af.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\af.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\ar.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\ar.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\bg.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\bg.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\bn.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\bn.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\bs.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\bs.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\ca.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\ca.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\cs.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\cs.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\da.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\da.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\de.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\de.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\el.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\el.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\en-au.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\en-au.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\en-ca.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\en-ca.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\en-uk.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\en-uk.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\en.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\en.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\eo.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\eo.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\es.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\es.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\et.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\et.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\eu.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\eu.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\fa.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\fa.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\fi.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\fi.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\fo.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\fo.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\fr.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\fr.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\gl.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\gl.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\he.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\he.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\hi.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\hi.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\hr.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\hr.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\hu.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\hu.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\it.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\it.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\ja.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\ja.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\km.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\km.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\ko.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\ko.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\lt.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\lt.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\lv.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\lv.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\mn.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\mn.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\ms.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\ms.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\nb.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\nb.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\nl.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\nl.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\no.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\no.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\pl.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\pl.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\pt-br.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\pt-br.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\pt.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\pt.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\ro.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\ro.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\ru.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\ru.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\sk.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\sk.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\sl.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\sl.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\sr-latn.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\sr-latn.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\sr.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\sr.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\sv.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\sv.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\th.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\th.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\tr.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\tr.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\uk.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\uk.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\vi.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\vi.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\zh-cn.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\zh-cn.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\zh.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\zh.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\lang\_translationstatus.txt" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\lang\_translationstatus.txt">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\plugins\autogrow\fckplugin.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\plugins\autogrow\fckplugin.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\plugins\bbcode\fckplugin.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\plugins\bbcode\fckplugin.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\plugins\bbcode\_sample\sample.config.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\plugins\bbcode\_sample\sample.config.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\plugins\bbcode\_sample\sample.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\plugins\bbcode\_sample\sample.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\plugins\dragresizetable\fckplugin.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\plugins\dragresizetable\fckplugin.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\plugins\placeholder\fckplugin.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\plugins\placeholder\fckplugin.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\plugins\placeholder\fck_placeholder.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\plugins\placeholder\fck_placeholder.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\plugins\placeholder\lang\de.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\plugins\placeholder\lang\de.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\plugins\placeholder\lang\en.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\plugins\placeholder\lang\en.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\plugins\placeholder\lang\fr.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\plugins\placeholder\lang\fr.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\plugins\placeholder\lang\it.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\plugins\placeholder\lang\it.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\plugins\placeholder\lang\pl.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\plugins\placeholder\lang\pl.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\plugins\placeholder\placeholder.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\plugins\placeholder\placeholder.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\plugins\simplecommands\fckplugin.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\plugins\simplecommands\fckplugin.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\plugins\tablecommands\fckplugin.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\plugins\tablecommands\fckplugin.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\skins\default\fck_dialog.css" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\skins\default\fck_dialog.css">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\skins\default\fck_editor.css" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\skins\default\fck_editor.css">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\skins\default\fck_strip.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\skins\default\fck_strip.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\skins\default\images\toolbar.arrowright.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\skins\default\images\toolbar.arrowright.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\skins\default\images\toolbar.buttonarrow.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\skins\default\images\toolbar.buttonarrow.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\skins\default\images\toolbar.collapse.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\skins\default\images\toolbar.collapse.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\skins\default\images\toolbar.end.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\skins\default\images\toolbar.end.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\skins\default\images\toolbar.expand.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\skins\default\images\toolbar.expand.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\skins\default\images\toolbar.separator.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\skins\default\images\toolbar.separator.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\skins\default\images\toolbar.start.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\skins\default\images\toolbar.start.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\skins\office2003\fck_dialog.css" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\skins\office2003\fck_dialog.css">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\skins\office2003\fck_editor.css" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\skins\office2003\fck_editor.css">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\skins\office2003\fck_strip.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\skins\office2003\fck_strip.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\skins\office2003\images\toolbar.arrowright.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\skins\office2003\images\toolbar.arrowright.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\skins\office2003\images\toolbar.bg.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\skins\office2003\images\toolbar.bg.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\skins\office2003\images\toolbar.buttonarrow.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\skins\office2003\images\toolbar.buttonarrow.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\skins\office2003\images\toolbar.collapse.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\skins\office2003\images\toolbar.collapse.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\skins\office2003\images\toolbar.end.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\skins\office2003\images\toolbar.end.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\skins\office2003\images\toolbar.expand.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\skins\office2003\images\toolbar.expand.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\skins\office2003\images\toolbar.separator.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\skins\office2003\images\toolbar.separator.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\skins\office2003\images\toolbar.start.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\skins\office2003\images\toolbar.start.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\skins\silver\fck_dialog.css" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\skins\silver\fck_dialog.css">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\skins\silver\fck_editor.css" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\skins\silver\fck_editor.css">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\skins\silver\fck_strip.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\skins\silver\fck_strip.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\skins\silver\images\toolbar.arrowright.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\skins\silver\images\toolbar.arrowright.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\skins\silver\images\toolbar.buttonarrow.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\skins\silver\images\toolbar.buttonarrow.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\skins\silver\images\toolbar.buttonbg.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\skins\silver\images\toolbar.buttonbg.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\skins\silver\images\toolbar.collapse.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\skins\silver\images\toolbar.collapse.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\skins\silver\images\toolbar.end.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\skins\silver\images\toolbar.end.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\skins\silver\images\toolbar.expand.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\skins\silver\images\toolbar.expand.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\skins\silver\images\toolbar.separator.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\skins\silver\images\toolbar.separator.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\skins\silver\images\toolbar.start.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\skins\silver\images\toolbar.start.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\skins\_fckviewstrips.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\skins\_fckviewstrips.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\classes\fckcontextmenu.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\classes\fckcontextmenu.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\classes\fckdataprocessor.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\classes\fckdataprocessor.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\classes\fckdocumentfragment_gecko.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\classes\fckdocumentfragment_gecko.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\classes\fckdocumentfragment_ie.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\classes\fckdocumentfragment_ie.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\classes\fckdomrange.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\classes\fckdomrange.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\classes\fckdomrangeiterator.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\classes\fckdomrangeiterator.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\classes\fckdomrange_gecko.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\classes\fckdomrange_gecko.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\classes\fckdomrange_ie.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\classes\fckdomrange_ie.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\classes\fckeditingarea.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\classes\fckeditingarea.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\classes\fckelementpath.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\classes\fckelementpath.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\classes\fckenterkey.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\classes\fckenterkey.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\classes\fckevents.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\classes\fckevents.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\classes\fckicon.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\classes\fckicon.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\classes\fckiecleanup.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\classes\fckiecleanup.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\classes\fckimagepreloader.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\classes\fckimagepreloader.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\classes\fckkeystrokehandler.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\classes\fckkeystrokehandler.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\classes\fckmenublock.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\classes\fckmenublock.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\classes\fckmenublockpanel.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\classes\fckmenublockpanel.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\classes\fckmenuitem.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\classes\fckmenuitem.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\classes\fckpanel.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\classes\fckpanel.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\classes\fckplugin.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\classes\fckplugin.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\classes\fckspecialcombo.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\classes\fckspecialcombo.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\classes\fckstyle.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\classes\fckstyle.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\classes\fcktoolbar.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\classes\fcktoolbar.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\classes\fcktoolbarbreak_gecko.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\classes\fcktoolbarbreak_gecko.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\classes\fcktoolbarbreak_ie.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\classes\fcktoolbarbreak_ie.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\classes\fcktoolbarbutton.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\classes\fcktoolbarbutton.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\classes\fcktoolbarbuttonui.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\classes\fcktoolbarbuttonui.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\classes\fcktoolbarfontformatcombo.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\classes\fcktoolbarfontformatcombo.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\classes\fcktoolbarfontscombo.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\classes\fcktoolbarfontscombo.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\classes\fcktoolbarfontsizecombo.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\classes\fcktoolbarfontsizecombo.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\classes\fcktoolbarpanelbutton.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\classes\fcktoolbarpanelbutton.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\classes\fcktoolbarspecialcombo.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\classes\fcktoolbarspecialcombo.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\classes\fcktoolbarstylecombo.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\classes\fcktoolbarstylecombo.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\classes\fckw3crange.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\classes\fckw3crange.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\classes\fckxml.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\classes\fckxml.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\classes\fckxml_gecko.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\classes\fckxml_gecko.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\classes\fckxml_ie.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\classes\fckxml_ie.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\commandclasses\fckblockquotecommand.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\commandclasses\fckblockquotecommand.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\commandclasses\fckcorestylecommand.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\commandclasses\fckcorestylecommand.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\commandclasses\fckfitwindow.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\commandclasses\fckfitwindow.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\commandclasses\fckindentcommands.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\commandclasses\fckindentcommands.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\commandclasses\fckjustifycommands.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\commandclasses\fckjustifycommands.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\commandclasses\fcklistcommands.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\commandclasses\fcklistcommands.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\commandclasses\fcknamedcommand.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\commandclasses\fcknamedcommand.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\commandclasses\fckpasteplaintextcommand.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\commandclasses\fckpasteplaintextcommand.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\commandclasses\fckpastewordcommand.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\commandclasses\fckpastewordcommand.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\commandclasses\fckremoveformatcommand.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\commandclasses\fckremoveformatcommand.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\commandclasses\fckshowblocks.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\commandclasses\fckshowblocks.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\commandclasses\fckspellcheckcommand_gecko.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\commandclasses\fckspellcheckcommand_gecko.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\commandclasses\fckspellcheckcommand_ie.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\commandclasses\fckspellcheckcommand_ie.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\commandclasses\fckstylecommand.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\commandclasses\fckstylecommand.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\commandclasses\fcktablecommand.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\commandclasses\fcktablecommand.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\commandclasses\fcktextcolorcommand.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\commandclasses\fcktextcolorcommand.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\commandclasses\fck_othercommands.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\commandclasses\fck_othercommands.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\fckconstants.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\fckconstants.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\fckeditorapi.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\fckeditorapi.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\fckjscoreextensions.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\fckjscoreextensions.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\fckscriptloader.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\fckscriptloader.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\internals\fck.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\internals\fck.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\internals\fckbrowserinfo.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\internals\fckbrowserinfo.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\internals\fckcodeformatter.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\internals\fckcodeformatter.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\internals\fckcommands.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\internals\fckcommands.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\internals\fckconfig.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\internals\fckconfig.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\internals\fckdebug.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\internals\fckdebug.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\internals\fckdialog.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\internals\fckdialog.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\internals\fckdialog_gecko.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\internals\fckdialog_gecko.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\internals\fckdialog_ie.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\internals\fckdialog_ie.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\internals\fckdocumentprocessor.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\internals\fckdocumentprocessor.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\internals\fckdomtools.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\internals\fckdomtools.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\internals\fcklanguagemanager.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\internals\fcklanguagemanager.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\internals\fcklisthandler.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\internals\fcklisthandler.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\internals\fcklistslib.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\internals\fcklistslib.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\internals\fckplugins.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\internals\fckplugins.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\internals\fckregexlib.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\internals\fckregexlib.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\internals\fckselection.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\internals\fckselection.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\internals\fckselection_gecko.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\internals\fckselection_gecko.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\internals\fckselection_ie.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\internals\fckselection_ie.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\internals\fckstyles.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\internals\fckstyles.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\internals\fcktablehandler.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\internals\fcktablehandler.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\internals\fcktablehandler_gecko.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\internals\fcktablehandler_gecko.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\internals\fcktablehandler_ie.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\internals\fcktablehandler_ie.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\internals\fcktoolbaritems.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\internals\fcktoolbaritems.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\internals\fcktoolbarset.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\internals\fcktoolbarset.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\internals\fcktools.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\internals\fcktools.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\internals\fcktools_gecko.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\internals\fcktools_gecko.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\internals\fcktools_ie.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\internals\fcktools_ie.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\internals\fckundo.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\internals\fckundo.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\internals\fckurlparams.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\internals\fckurlparams.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\internals\fckxhtml.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\internals\fckxhtml.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\internals\fckxhtmlentities.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\internals\fckxhtmlentities.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\internals\fckxhtml_gecko.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\internals\fckxhtml_gecko.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\internals\fckxhtml_ie.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\internals\fckxhtml_ie.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\internals\fck_contextmenu.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\internals\fck_contextmenu.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\internals\fck_gecko.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\internals\fck_gecko.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\editor\_source\internals\fck_ie.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\editor\_source\internals\fck_ie.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\fckconfig.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\fckconfig.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\fckeditor.asp" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\fckeditor.asp">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\fckeditor.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\fckeditor.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\fckpackager.xml" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\fckpackager.xml">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\fckstyles.xml" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\fckstyles.xml">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="fckeditor\fcktemplates.xml" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\fckeditor\fcktemplates.xml">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="ffmepg\avcodec-51.dll" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\ffmepg\avcodec-51.dll">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="ffmepg\avformat-51.dll" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\ffmepg\avformat-51.dll">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="ffmepg\avutil-49.dll" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\ffmepg\avutil-49.dll">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="ffmepg\doc\faq.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\ffmepg\doc\faq.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="ffmepg\doc\ffmpeg-doc.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\ffmepg\doc\ffmpeg-doc.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="ffmepg\doc\ffplay-doc.html" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\ffmepg\doc\ffplay-doc.html">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="ffmepg\ffmpeg.exe" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\ffmepg\ffmpeg.exe">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="ffmepg\ffplay.exe" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\ffmepg\ffplay.exe">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="ffmepg\GPL.txt" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\ffmepg\GPL.txt">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="ffmepg\imlib2\filters\bumpmap.dll" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\ffmepg\imlib2\filters\bumpmap.dll">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="ffmepg\imlib2\filters\colormod.dll" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\ffmepg\imlib2\filters\colormod.dll">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="ffmepg\imlib2\filters\testfilter.dll" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\ffmepg\imlib2\filters\testfilter.dll">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="ffmepg\imlib2\loaders\argb.dll" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\ffmepg\imlib2\loaders\argb.dll">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="ffmepg\imlib2\loaders\bmp.dll" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\ffmepg\imlib2\loaders\bmp.dll">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="ffmepg\imlib2\loaders\jpeg.dll" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\ffmepg\imlib2\loaders\jpeg.dll">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="ffmepg\imlib2\loaders\lbm.dll" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\ffmepg\imlib2\loaders\lbm.dll">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="ffmepg\imlib2\loaders\png.dll" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\ffmepg\imlib2\loaders\png.dll">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="ffmepg\imlib2\loaders\pnm.dll" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\ffmepg\imlib2\loaders\pnm.dll">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="ffmepg\imlib2\loaders\tiff.dll" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\ffmepg\imlib2\loaders\tiff.dll">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="ffmepg\imlib2\loaders\xpm.dll" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\ffmepg\imlib2\loaders\xpm.dll">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="ffmepg\libfreetype-6.dll" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\ffmepg\libfreetype-6.dll">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="ffmepg\libImlib2-1.dll" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\ffmepg\libImlib2-1.dll">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="ffmepg\libpng-3.dll" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\ffmepg\libpng-3.dll">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="ffmepg\libtiff-3.dll" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\ffmepg\libtiff-3.dll">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="ffmepg\libungif-4.dll" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\ffmepg\libungif-4.dll">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="ffmepg\pthreadGC2.dll" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\ffmepg\pthreadGC2.dll">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="ffmepg\README.txt" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\ffmepg\README.txt">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="ffmepg\SDL.dll" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\ffmepg\SDL.dll">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="ffmepg\swscale-0.dll" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\ffmepg\swscale-0.dll">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="ffmepg\vhook\drawtext.dll" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\ffmepg\vhook\drawtext.dll">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="ffmepg\vhook\fish.dll" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\ffmepg\vhook\fish.dll">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="ffmepg\vhook\imlib2.dll" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\ffmepg\vhook\imlib2.dll">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="ffmepg\vhook\null.dll" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\ffmepg\vhook\null.dll">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="ffmepg\vhook\watermark.dll" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\ffmepg\vhook\watermark.dll">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\4x4BarKategoriAdi.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\4x4BarKategoriAdi.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\4x4BarKategoriAdiBg.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\4x4BarKategoriAdiBg.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\colorbox\border.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\colorbox\border.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\colorbox\controls.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\colorbox\controls.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\colorbox\loading.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\colorbox\loading.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\colorbox\loading_background.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\colorbox\loading_background.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\colorbox\overlay.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\colorbox\overlay.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\delete.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\delete.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\icon-green-minus.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\icon-green-minus.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\icon-green-plus.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\icon-green-plus.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\mail_sendGreen30.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\mail_sendGreen30.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\MaviSil.gif" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\MaviSil.gif">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\upDown_Arrow_GreenW20.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\upDown_Arrow_GreenW20.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\upDown_Arrow_GreenW40.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\upDown_Arrow_GreenW40.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\yorumOrta.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\yorumOrta.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\yorumSag.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\yorumSag.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\yorumSol.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\yorumSol.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="js\4_AjaxErrorHandling.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\js\4_AjaxErrorHandling.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="js\1_jquery-1.4.2.min.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\js\1_jquery-1.4.2.min.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="js\6_jsSiniflar.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\js\6_jsSiniflar.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="js\7_ResimBul.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\js\7_ResimBul.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="js\classTabloEkleri.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\js\classTabloEkleri.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="js\classEkler.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\js\classEkler.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="js\DovizKurlari.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\js\DovizKurlari.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="js\dump.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\js\dump.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="js\HavaDurumu.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\js\HavaDurumu.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="js\istisnaYonetimi.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\js\istisnaYonetimi.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="js\jquery-jtemplates.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\js\jquery-jtemplates.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="js\9_etiketIslemleri.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\js\9_etiketIslemleri.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="js\3_jquery.colorbox-min.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\js\3_jquery.colorbox-min.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="js\jquery.json-2.2.min.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\js\jquery.json-2.2.min.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="js\jquery.simplyCountable.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\js\jquery.simplyCountable.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="js\jquery_dump.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\js\jquery_dump.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="js\json_parse.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\js\json_parse.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="js\classSecilenResim.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\js\classSecilenResim.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="js\7_ResimVideoBul.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\js\7_ResimVideoBul.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="js\json2_stringfy.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\js\json2_stringfy.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="js\KalanKarakter.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\js\KalanKarakter.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="js\toJson.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\js\toJson.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="js\YayinAkisi.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\js\YayinAkisi.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="js\_ortak.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\js\_ortak.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="js\_tumJsler.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\js\_tumJsler.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Notlar.txt" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Notlar.txt">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Referanslar\Microsoft.Practices.ObjectBuilder2.dll" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Referanslar\Microsoft.Practices.ObjectBuilder2.dll">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Referanslar\Newtonsoft.Json.Compact.dll" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Referanslar\Newtonsoft.Json.Compact.dll">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="RSS-SVN.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\RSS-SVN.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\AnaSayfaKutuHaberler.ascx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\AnaSayfaKutuHaberler.ascx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\AnaSayfaMansetHaberler.ascx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\AnaSayfaMansetHaberler.ascx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\Etiketler.ascx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\Etiketler.ascx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\HitArttir.ascx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\HitArttir.ascx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\KategoriHaberDigerBasliklar.ascx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\KategoriHaberDigerBasliklar.ascx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\ctrlYorumlar.ascx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\ctrlYorumlar.ascx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Default.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Default.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="DefaultMaster.Master" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\DefaultMaster.Master">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="embed\bitgravity\expressInstall.swf" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\embed\bitgravity\expressInstall.swf">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="embed\bitgravity\functions.js" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\embed\bitgravity\functions.js">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="IlanDetay.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\IlanDetay.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Ilanlar.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Ilanlar.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\cevreBarKategoriAdi.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\cevreBarKategoriAdi.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\cevreBarKategoriAdiBg.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\cevreBarKategoriAdiBg.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\DigerHaberler_Cevre.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\DigerHaberler_Cevre.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\dottedHr.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\dottedHr.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\HaberinDevami_Cevre.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\HaberinDevami_Cevre.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\haberUstBg.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\haberUstBg.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\ilanCaptionBg.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\ilanCaptionBg.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\ilanlarYesilBeyazCarpraz.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\ilanlarYesilBeyazCarpraz.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\ilanlarYesilBg.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\ilanlarYesilBg.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\ilanSariCarpraz.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\ilanSariCarpraz.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\ilgiliVideo.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\ilgiliVideo.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\kategoriHaberDigerListImage.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\kategoriHaberDigerListImage.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\yorumArkaPlan.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\yorumArkaPlan.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\yorumcuAvatar.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\yorumcuAvatar.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="images\yorumSolBas.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\images\yorumSolBas.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="reklam\resim\avciYelegi.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\reklam\resim\avciYelegi.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="reklam\resim\yabanStore1.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\reklam\resim\yabanStore1.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="resimler\cevre\cevreHaberResimOrnek.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\resimler\cevre\cevreHaberResimOrnek.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="resimler\ilan\kopekBuyuk.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\resimler\ilan\kopekBuyuk.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="resimler\ilan\kopekBuyuk1.png" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\resimler\ilan\kopekBuyuk1.png">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\KategoriHaberlerManset.ascx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\KategoriHaberlerManset.ascx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\ResimAlbumuViewer.ascx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\ResimAlbumuViewer.ascx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\ucPuanlama.ascx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\ucPuanlama.ascx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\ResimAlbumu.ascx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\ResimAlbumu.ascx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\VideoTutucu.ascx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\VideoTutucu.ascx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\YuklenmisResim.ascx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\YuklenmisResim.ascx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\YuklenmisResimVideo.ascx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\YuklenmisResimVideo.ascx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\AlbumDuzenle.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\AlbumDuzenle.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\AlbumEkle.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\AlbumEkle.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\CopDosyaYuklemeTest.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\CopDosyaYuklemeTest.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\FlashYukleBul.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\FlashYukleBul.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\HaberDuzenle.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\HaberDuzenle.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\DosyaYukle.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\DosyaYukle.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\IlanDuzenle.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\IlanDuzenle.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\IlanEkle.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\IlanEkle.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\KoseYazisiEkle.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\KoseYazisiEkle.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\ReklamEkle.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\ReklamEkle.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\ResimBul.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\ResimBul.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\ResimVideoBul.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\ResimVideoBul.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\ResimSec.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\ResimSec.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\TestYuklenmisResimler.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\TestYuklenmisResimler.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\UC\DosyaYukleme.ascx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\UC\DosyaYukleme.ascx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\UC\EtikettenBulunanFlash.ascx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\UC\EtikettenBulunanFlash.ascx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\UC\EtikettenBulunanResim.ascx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\UC\EtikettenBulunanResim.ascx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\UC\EtikettenBulunanResimVideo.ascx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\UC\EtikettenBulunanResimVideo.ascx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\UC\HaberKategorileriVeSirasi.ascx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\UC\HaberKategorileriVeSirasi.ascx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="UC\ReklamTutucu.ascx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\UC\ReklamTutucu.ascx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\VideoEkle.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\VideoEkle.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\EnCokHitAlanlar.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\EnCokHitAlanlar.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\YaziDuzenle.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\YaziDuzenle.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\YaziEkle.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\YaziEkle.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\_SablonEtiket.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\_SablonEtiket.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\FileUpload.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\FileUpload.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\HaberEkle.aspx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\HaberEkle.aspx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\UC\DizinlerTreeview.ascx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\UC\DizinlerTreeview.ascx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\UC\KonuyaYeniEtiket.ascx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\UC\KonuyaYeniEtiket.ascx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\ControlPanel.Master" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\ControlPanel.Master">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="Yonetim\WS\Yonetim.asmx" Description="File successfully backed up as C:\Projeler\waDataGrid\Backup\Yonetim\WS\Yonetim.asmx">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="huhu.csproj" Description="Project converted successfully">
</Event>
<Event ErrorLevel="3" Project="huhu" Source="huhu.csproj" Description="Converted">
</Event>
<Event ErrorLevel="0" Project="huhu" Source="huhu.csproj" Description="Scan complete: Upgrade not required for project files.">
</Event>
</UpgradeLog>