% '################################################################################# '## Copyright (c) 2001 Sean McGivern '## '## This program is free software; you can redistribute it and/or '## modify it under the terms of the GNU General Public License '## as published by the Free Software Foundation; either version 2 '## of the License, or any later version. '## '## All copyright notices regarding smNews must remain intact in the '## scripts and in the outputted HTML. The "powered by" text with a '## link back to http://www.tombstone.org.uk/sm/news/ in the footer '## of the pages MUST remain visible when the pages are viewed on '## the internet or intranet. '## '## This program 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 General Public License for more details. '## '## You should have received a copy of the GNU General Public License '## along with this program; if not, write to the Free Software '## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. '## '## Correspondence and Questions can be sent to: '## sean@tombstone.org.uk '## '################################################################################# Option Explicit Dim strDatabasePath, cnpath, strLoginPassword, iPageSize, strTableName, strTableNameComment, strTitle ' **************************************** ' CONFIG VARIABLES ' **************************************** 'strDatabasePath = Server.MapPath("/natan19/news/sm.mdb") 'strDatabasePath = Server.MapPath("/news/sm.mdb") ' The physical path to the database for ' this smNews system. To use a virtual ' path, use Server.MapPath. Default is ' Server.MapPath("/fpdb/smnews.mdb") set strDatabasePath = Server.CreateObject("adodb.connection") cnpath=server.mappath("/") cnpath=left(cnpath, len(cnpath)-3) & "dados\release.mdb" strDatabasePath.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & cnpath ' Set gb_text = Server.CreateObject("ADODB.Recordset") strLoginPassword = "fati2mile8" ' The admin password for this smNews ' system. Default is "cheese". iPageSize = 50 ' The number of news items to display on ' each page. Default is 10. strTableName = "News" ' The name of the database table which ' this smNews system will store its news ' items in. Default is "News". strTableNameComment = "NewsComments" ' The name of the database table which ' this smNews system will store its ' comments in. Default is "NewsComments". strTitle = "Release da Fatima Guedes" ' The name of your site. Default is ' "smNews BETA 0.2". ' **************************************** ' END OF CONFIG VARIABLES ' **************************************** Dim objConn Set objConn = Server.CreateObject("ADODB.Connection") Dim objRS Set objRS = Server.CreateObject("ADODB.Recordset") Dim iAdminFlag, strConnectionString, strRootURL, strSQL, strText, strUserTitle iAdminFlag = False strRootURL = LCase(Request.ServerVariables("SCRIPT_NAME")) strSQL = "" strText = "" strUserTitle = Trim(Request.Cookies("smNews")("UserTitle")) If Trim(Request.Cookies("smNews")("Password")) = strLoginPassword Then iAdminFlag = True End If strConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & strDatabasePath & ";" objConn.Open strConnectionString Const adOpenStatic = 3 Dim qMode, qNewsID qMode = LCase(Trim(Request.QueryString("mode"))) qNewsID = Trim(Request.QueryString("newsid")) If qMode = "" Then qMode = "display" End If If qNewsID = "" Then qNewsID = Null End If ' strText = strText & "
" Select Case UCase(qMode) Case "ADMIN": Call Admin() Case "ARCHIVE": Call Archive() Case "DELETE": Call Delete() Case "DELETECOMMENT": Call DeleteComment() Case "DISPLAY": Call Display() Case "EDIT": Call Edit() Case "EDITCOMMENT": Call EditComment() Case "LOGOUT": Call Logout() End Select ' **************************************** ' ADMIN ' **************************************** Sub Admin() Dim qAction qAction = LCase(Trim(Request.QueryString("action"))) If iAdminFlag = False And qAction = "login" Then Dim fLoginPassword, fUserTitle fLoginPassword = Trim(Request.Form("password")) fUserTitle = Trim(Request.Form("title")) If fLoginPassword = strLoginPassword Then Response.Cookies("smNews")("UserTitle") = fUserTitle Response.Cookies("smNews")("Password") = fLoginPassword Response.Cookies("smNews").Expires = Now() + 9999 strText = strText & "Tem certeza que deseja este Release " & qNewsID & "? Aps deletar no tem como recuperar.
" & vbCrLf strText = strText & "" & vbCrLf End Sub ' **************************************** ' END OF DELETE ' **************************************** ' **************************************** ' DELETECOMMENT ' **************************************** Sub DeleteComment() If iAdminFlag = False Then strText = strText & Error("Access denied.") Exit Sub End If Dim qCommentID qCommentID = Trim(Request.QueryString("commentid")) If qCommentID = "" Then strText = strText & Error("No CommentID specified.") Exit Sub End If Dim qAction qAction = LCase(Trim(Request.QueryString("action"))) If qAction = "sql" Then Dim fCommentID, strSQL, fTool fCommentID = Trim(Request.Form("commentid")) fTool = Trim(Request.Form("tool")) If fNewsID = "" Or fTool = "" Then strText = strText & Error("There was a problem processing the form input. Please check all required fields are correctly filled in and try again.") Exit Sub End If Select Case UCase(fTool) Case "DELETE": strSQL = "DELETE FROM " & strTableNameComment & " " &_ "WHERE CommentID = " & fCommentID & ";" objRS.Open strSQL, objConn strText = strText & Success("CommentID " & fCommentID & " was deleted.") Exit Sub Case "NODELETE": strText = strText & Success("CommentID " & fCommentID & " was not deleted.") Exit Sub End Select End If strText = strText & "Are you absolutely sure you want to delete CommentID " & qCommentID & "? There is no way to get it back once you do this.
" & vbCrLf strText = strText & "" & vbCrLf End Sub ' **************************************** ' END OF DELETECOMMENT ' **************************************** ' **************************************** ' DISPLAY ' **************************************** Sub Display() Dim strNewsID, strNewsPosted, strUserTitle, strUserURL, strNewsTitle, strNewsText If qNewsID <> "" Then strSQL = "SELECT NewsID, NewsPosted, UserTitle, UserURL, NewsTitle, NewsText FROM " & strTableName & " WHERE NewsID = " & qNewsID & ";" objRS.Open strSQL, objConn, adOpenStatic strNewsID = objRS.Fields("NewsID") strNewsPosted = objRS.Fields("NewsPosted") strUserTitle = objRS.Fields("UserTitle") strUserURL = objRS.Fields("UserURL") strNewsTitle = objRS.Fields("NewsTitle") strNewsText = objRS.Fields("NewsText") 'strText = strText & "" & strErrorMessage & "
" End Function ' Formats errors in a nice way. Function FormMemo(strFormMemo) If strFormMemo <> "" Then strFormMemo = Replace(strFormMemo, "''", "'") strFormMemo = Replace(strFormMemo, "", Chr(10) & Chr(10))
strFormMemo = Replace(strFormMemo, "
", Chr(10))
strFormMemo = Replace(strFormMemo, "
", "") strFormMemo = Replace(strFormMemo, "
", "") FormMemo = strFormMemo End If End Function ' Formats a memo field from the database ' for use in a form field. Function FormText(strFormText) If strFormText <> "" Then strFormText = Replace(strFormText, "''", "'") strFormText = Replace(strFormText, "<", "<") strFormText = Replace(strFormText, ">", ">") FormText = strFormText End If End Function ' Formats a text field from the database for use ' in a form field. Function Input(strInputType, strInputName, strInputWidth, strInputHeight, strInputValue) Dim strInput strInputType = LCase(strInputType) strInputName = LCase(strInputName) Select Case UCase(strInputType) Case "TEXTAREA": strInput = "" Case Else: strInput = " "hidden" And strInputType <> "submit" And strInputType <> "radio" And strInputType <> "checkbox" Then strInput = strInput & "size=""" & strInputWidth & """ " End If If strInputType = "text" Or strInputType = "password" Then strInput = strInput & "maxlength=""50"" " End If If strInputValue <> "" Then strInput = strInput & "value=""" & strInputValue & """ " End If strInput = strInput & "/>" End Select Input = strInput End Function ' Creates a form field. Function SQLText(strSQLText) strSQLText = Replace(strSQLText, "'", "''") strSQLText = Replace(strSQLText, "<", "<") strSQLText = Replace(strSQLText, ">", ">") SQLText = strSQLText End Function ' Formats text for use in UPDATE and ' INSERT INTO statements. Function SQLMemo(strSQLMemo) strSQLMemo = Replace(strSQLMemo, "'", "''") strSQLMemo = Replace(strSQLMemo, Chr(13), "") strSQLMemo = Replace(strSQLMemo, Chr(10) & Chr(10), "")
strSQLMemo = Replace(strSQLMemo, Chr(10), "
")
strSQLMemo = "
" & strSQLMemo & "
" SQLMemo = strSQLMemo End Function ' Formats textareas for use in UPDATE and ' INSERT INTO statements. Function Success(strSuccessMessage) Success = "" & strSuccessMessage & "
" End Function ' Formats success messages in a nice way. ' **************************************** ' END OF FUNCTIONS ' **************************************** ' Isto abaixo estava no final da pgina 'strText = strText & "