/// Displays archive list and allows publishing/unpublishing.
/// Calls RepoArchs.
/// Methods created or modified:
/// - Page_Load
/// - bind
/// - archUpload
/// - archiveDB_delete
/// - refresh
///
/// Copyright (c) 2002 Alexis Grandemange
/// Mail: alexis.grandemange@pagebox.net
/// This program is free software; you can redistribute it and/or
/// modify it under the terms of the GNU Lesser General Public
/// License as published by the Free Software Foundation; version
/// 2.1 of the License.
/// This library is distributed in the hope that it will be useful,
/// but WITHOUT ANY WARRANTY; without even the implied warranty of
/// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
/// GNU Lesser General Public License for more details.
/// A copy of the GNU Lesser General Public License lesser.txt should be
/// included in the distribution.
///
public class publisher : System.Web.UI.Page
{
protected System.Web.UI.WebControls.HyperLink logo;
protected System.Web.UI.WebControls.DataGrid archiveDB;
protected System.Web.UI.HtmlControls.HtmlInputFile archFile;
protected System.Web.UI.HtmlControls.HtmlInputButton btnUpload;
protected System.Web.UI.HtmlControls.HtmlInputText docURL;
protected System.Web.UI.WebControls.Label LabStatus;
protected System.Web.UI.HtmlControls.HtmlInputButton btnRefresh;
protected System.Web.UI.WebControls.Label PublisherLab;
protected System.Web.UI.WebControls.HyperLink Support;
public publisher()
{
Page.Init += new System.EventHandler(Page_Init);
}
///