Remove some files

0.4.6
Sergey Kalinin 2018-02-04 16:56:41 +03:00
parent 19cb0a69b0
commit 2206b153f3
7 changed files with 5 additions and 146 deletions

View File

@ -4,12 +4,12 @@
<title>about</title>
</head>
<body>
<center><h1>Документация</h1></center>
<p>Документация предоставлена компанией
<center><h1>Документация</h1></center>
<p>Документация предоставлена компанией
<b><a href="http://www.florin.ru">DataX/FLORIN, Inc.</a></b>
<P>&copy; Все права защищены 1992-2001.
<p>Разрешается не коммерческое использование документации как целиком так и отдельных частей с разрешения авторов и с обязательной ссылкой на
<b><a href="http://www.florin.ru">DataX/FLORIN, Inc.</a></b> и на
<P>&copy; Все права защищены 1992-2001.
<p>Разрешается не коммерческое использование документации как целиком так и отдельных частей с разрешения авторов и с обязательной ссылкой на
<b><a href="http://www.florin.ru">DataX/FLORIN, Inc.</a></b> и на
<b><a href="http://nuk-svk.ru">Sergey Kalinin</a></b>
</body>
</html>

View File

@ -1,14 +0,0 @@
<HTML>
<HEAD>
<META http-equiv=Content-Type content="text/html; charset=utf-8">
<META NAME="Author" CONTENT="Sergey Kalinin">
<META NAME="GENERATOR" CONTENT="Created by Tcl/Tk Project Manager - 0.3.8">
<TITLE></TITLE>
</HEAD>
<BODY>
<h3>Изменения по версиям</h3>
<br>1.0.0 - инициирован релиз программы
<br>1.0.1 - добавлен автоматический учёт изменений параметров в командых файлах но отсутствующих в файле fields (т.е. в файлах предыдущей версии), путём перегинерации файла fields. Необходимо для корректной работы с файлами новых версий (после обновления конфигурации MSOFTa)
</BODY>
</HTML>

View File

@ -1,82 +0,0 @@
######################################################
# Tk LaTeX Editor
# Distributed under GNU Public License
# Author: Sergey Kalinin banzaj28@yandex.ru
# Copyright (c) "Sergey Kalinin", 2002, http://nuk-svk.ru
######################################################
proc Latex2Html {} {
global tree module cmdString
set selFiles [$tree selection get]
if {[llength $selFiles] == 0} {
set answer [tk_messageBox\
-message "[::msgcat::mc "Don't selected file"]"\
-type ok -icon warning\
-title [::msgcat::mc "Warning"]]
case $answer {
ok {return 0}
}
}
if {[llength $selFiles] == 1} {
if {$selFiles != ""} {
set file [$tree itemcget $selFiles -data]
}
CommandStringDialog $file
}
#puts $command
}
proc CommandStringDialog {action file} {
global nb files font color cmdString module convert_cmd preview_cmd
set w .cmd
# destroy the find window if it already exists
if {[winfo exists $w]} {
destroy $w
}
toplevel $w
wm title $w [::msgcat::mc "Command options"]
wm resizable $w 0 0
wm transient $w .
frame $w.frmCombo -borderwidth 1 -background $color(bg)
frame $w.frmBtn -borderwidth 1 -background $color(bg)
pack $w.frmCombo $w.frmBtn -side top -fill x
# set combo [entry $w.frmCombo.entFind]
label $w.frmCombo.lblModule -text $module() -background $color(bg)
set combo [entry $w.frmCombo.txtString]
pack $w.frmCombo.lblModule $combo -fill x -padx 2 -pady 2 -side top
button $w.frmBtn.btnFind -text [::msgcat::mc "Run"]\
-font $font(normal) -width 12 -relief groove -background $color(bg)\
-command {
RunConverter [.cmd.frmCombo.txtString get]
}
button $w.frmBtn.btnCancel -text [::msgcat::mc "Close"]\
-relief groove -width 12 -font $font(normal) -background $color(bg)\
-command "destroy $w"
pack $w.frmBtn.btnFind $w.frmBtn.btnCancel -fill x -padx 2 -pady 2 -side left
bind $w <Return> {RunConverter [.cmd.frmCombo.txtString get]}
bind $w <Escape> "destroy $w"
if [info exists convert_cmd($m)] {
$combo insert end "$convert_cmd($action)"
}
if [info exists preview_cmd($m)] {
$combo insert end "$preview_cmd($action)"
} else {
$combo insert end "$module($action)"
}
focus -force $combo
}
proc RunConverter {string} {
global module
destroy .cmd
set pipe [open "|$module(latex2html) $string" "r"]
fileevent $pipe readable [list EndProc latex2html $pipe]
fconfigure $pipe -buffering none -blocking no
}

View File

@ -1,20 +0,0 @@
<h3>äÏÂÁ×ÉÔØ ÓÓÙÌËÕ</h3>
<form action="news_post.rvt">
<table>
<tbody>
<tr>
<td><b>úÁÇÏÌÏ×ÏË:</b></td>
<td><input type=text name="newsTitle"></td>
</tr>
<tr>
<td><b>ôÅÌÏ ÎÏ×ÏÓÔÉ:</b></td>
<td><textarea type=text name="newsBody" rows=5 cols=40></textarea></td>
</tr>
<tr>
<td><input type="submit"></td>
</tr>
</tbody>
</table>
</form>

View File

View File

@ -1,7 +0,0 @@
######################################################
# Terminal
# Distributed under GNU Public License
# Author: Sergey Kalinin svk@amur.dti.ru
# Copyright (c) "DTi", 2003, http://www.amur.dti.ru
######################################################

View File

@ -1,18 +0,0 @@
#!/usr/bin/tclsh
######################################################
# scripts
# Distributed under GNU Public License
# Author:
# Copyright (c) "", 2006,
######################################################
package require snodbc
database db PCS Administrator ",bkfqy+"
db tables sm_address_range
puts [ db "SELECT * from sm_address_range"]
db disconnect