diff -u -r LocalFS.org/LocalFS.py LocalFS/LocalFS.py --- LocalFS.org/LocalFS.py Thu Aug 22 09:16:47 2002 +++ LocalFS/LocalFS.py Mon Sep 9 16:54:47 2002 @@ -37,14 +37,28 @@ # (http://www.zope.org/)." # ############################################################################## +# Write By Kiyoharu Ueno +# No.1 2002/07/10 Chage LocalFS Products (for LocalFS-0.10.1) +# 1. LocalDirectory.manege_upload +# 2. LocalDirectory._write_file +# +# Write By Fukuoka Zope User Group (http://fzug.com/) +# 2002/09/09 For LocalFS-1.0.0(LocalFS-1.0.0-000jp) +# +############################################################################## """Local File System product""" -__version__='$Revision: 1.1 $'[11:-2] +__version__='$Revision: 1.8 $'[11:-2] +kconvYes=0 +try: + import kconv + kconvYes=1 +except ImportError: pass import sys, os, string, re, stat, urllib, glob, errno, time, tempfile import App, Globals, Acquisition, Persistence, OFS -import AccessControl, re +import AccessControl, re, ts_regex from App.Extensions import getObject from webdav.NullResource import NullResource from ZPublisher.HTTPResponse import HTTPResponse @@ -66,7 +80,7 @@ import re unc_expr = re.compile(r'(\\\\[^\\]+\\[^\\]+)(.*)') -_test_read = 1024 * 8 +_test_read = 1024 _unknown = '(unknown)' ############################################################################ @@ -402,6 +416,7 @@ return 1 bad_id=re.compile('[^a-zA-Z0-9-_~,. ]').search #TS +badjp_id=ts_regex.compile('[^a-zA-Z0-9-_~,. ]').search #TS def absattr(attr): if callable(attr): return attr() @@ -471,6 +486,10 @@ except 'NotFound': raise AttributeError, attr def _getpath(self, id): + if kconvYes: +# toId = kconv.Kconv(kconv.EUC,kconv.AUTO,kconv.ZENKAKU,kconv.TABLE) + toId = kconv.Kconv() + id = toId.convert(id) return os.path.join(self.basepath, id) def _getfileob(self, id, spec=None): @@ -554,7 +573,7 @@ # only check that the id string contains no illegal chars. if not id: raise 'Bad Request', 'No id was specified' - if bad_id(id): + if bad_id(id) and badjp_id(id): raise 'Bad Request', ( 'The id %s contains characters illegal in filenames.' % id) if id[0]=='_': raise 'Bad Request', ( @@ -624,20 +643,38 @@ def _verifyObjectPaste(self, ob, REQUEST): pass - def _write_file(self, file, path): + def _write_file(self, rfile, chkbtn, ftype, path): try: - if type(file) is StringType: - outfile=open(path,'wb') - outfile.write(file) - outfile.close() + if ftype == 0: + if chkbtn == 'a': + outfile = open(path, 'ab') + rfile.seek(0,os.path.getsize(path)) + else: + outfile = open(path, 'wb') else: - blocksize=8*1024 - outfile=open(path,'wb') - data=file.read(blocksize) - while data: - outfile.write(data) - data=file.read(blocksize) - outfile.close() + if chkbtn == 'a': + outfile = open(path, 'a') + rfile.seek(0,os.path.getsize(path)) + else: + outfile = open(path, 'w') + data = rfile.read(_test_read) + while data: + outfile.write(data) + data = rfile.read(_test_read) + outfile.close() +# try: +# if type(file) is StringType: +# outfile=open(path,'wb') +# outfile.write(file) +# outfile.close() +# else: +# blocksize=8 * 1024 +# outfile=open(path,'wb') +# data=file.read(blocksize) +# while data: +# outfile.write(data) +# data=file.read(blocksize) +# outfile.close() except EnvironmentError, err: if (err[0] == errno.EACCES): raise 'Forbidden', HTTPResponse()._error_html( @@ -671,13 +708,24 @@ message='The directory has been created.', action=action) - def manage_upload(self, file, id='', action='manage_workspace', REQUEST=None): + def manage_upload(self, file, frb, id='', action='manage_workspace', REQUEST=None): """Upload a file to the local file system. The 'file' parameter is a FileUpload instance representing the uploaded file.""" + if hasattr(file,'filename'): filename=file.filename else: filename=file.name + + chkbtn=frb + mes='

ファイル名を選択して下さい。

' + if filename=='': + pass + else: + if kconvYes: + toEUC=kconv.Kconv() + filename = toEUC.convert(filename) + if not id: # Try to determine the filename without any path. # First check for a UNIX full path. There will be no UNIX path @@ -702,17 +750,44 @@ except: raise 'Upload Error', MessageDialog( title='Invalid Id', message=sys.exc_value, - action ='manage_main') + action ='manage_main') path = self._getpath(id) - if os.path.exists(path): self.manage_overwrite(file, path, REQUEST) - else: self._write_file(file, path) - + data = file.read(_test_read) + if (find_binary(data) >= 0): + ftype=0 + else: + ftype=1 + """ 読み込みbuff先頭へ """ + file.seek(0,0) + if os.path.exists(path): + if chkbtn=='s': + mes='

同名ファイルがあります。

処理を中止しました。

' + + elif chkbtn=='a': + #rbuff=file.tell() + file.seek(0,2) + rbuff= file.tell() + file.seek(0,0) + wbuff=os.path.getsize(path) + if rbuff > wbuff: + self._write_file(file, chkbtn, ftype, path) + mes='

(OK WriteBuff:%sbyte)

追加送信完了

' % (wbuff) + else: + mes='

(Not ReadBuff:%sbyte)

処理はすでに完了しています。

' % (rbuff) + + else: + self.manage_overwrite(file, chkbtn, ftype, path, REQUEST) + mes='

(OK Writen)

上書きが完了しました.

' + else: + self._write_file(file, chkbtn, ftype, path) + mes='

(OK Writen)

送信が完了しました。

' + if REQUEST: return MessageDialog( - title='Success!', - message='Your file has been uploaded.', + title='アップロード結果', + message='%s' % (mes), action=action) - def manage_overwrite(self, file, path, REQUEST=None): + def manage_overwrite(self, rfile, chkbtn, ftype, path, REQUEST=None): """Overwrite a local file.""" if REQUEST is None and hasattr(self, 'aq_acquire'): try: REQUEST=self.aq_acquire('REQUEST') @@ -723,7 +798,7 @@ raise 'Unauthorized', HTTPResponse()._error_html( 'Unauthorized', "Sorry, you are not authorized to overwrite files.

") - self._write_file(file, path) + self._write_file(rfile, chkbtn, ftype, path) def manage_renameObject(self, id, new_id, REQUEST=None): """Rename a file or subdirectory.""" @@ -1043,6 +1118,8 @@ self.mtime = self._getTime() self.display_size = self._getDisplaySize() self.display_mtime = self._getDisplayTime() + self.display_jtime = self._getDisplayJTime() + self.display_jmtime = self._getDisplayJmTime() def getObject(self): """Return a Zope object representing this local file.""" @@ -1131,6 +1208,26 @@ if t is None: return _unknown return '%s %s' % (t.Time(), t.Date()) + def _getDisplayJTime(self): + """Return the last modified time of a file or directory formatted + for display.""" + t = self.mtime + wk_j=['日','月','火','水','木','金','土'] + if t is None: return _unknown + return '%s%s%s%s%s%s%s %s' % (t.year(), '年', t.mm(), '月',t.dd(), '日', '('+wk_j[t.dow()]+')', t.TimeMinutes()) + + + def _getDisplayJmTime(self): + """Return the last modified time of a file or directory formatted + for display.""" + t = self.mtime + wk_j=['日','月','火','水','木','金','土'] + if t is None: return _unknown + return '%s%s%s%s%s%s%s %s' % (t.year(), '年', t.mm(), '月',t.dd(), '日', '('+wk_j[t.dow()]+')', t.Time()) + + + + class FileMoniker: """A file moniker is a reference to an object in the file system.""" diff -u -r LocalFS.org/__init__.py LocalFS/__init__.py --- LocalFS.org/__init__.py Thu Aug 22 09:16:47 2002 +++ LocalFS/__init__.py Wed Aug 28 02:07:25 2002 @@ -39,7 +39,7 @@ ############################################################################## __doc__="""Local File System product initialization""" -__version__='$Revision: 1.1 $'[11:-2] +__version__='$Revision: 1.1.1.1 $'[11:-2] import os, LocalFS from Globals import ImageFile diff -u -r LocalFS.org/dtml/methodAdd.dtml LocalFS/dtml/methodAdd.dtml --- LocalFS.org/dtml/methodAdd.dtml Thu Aug 22 09:16:47 2002 +++ LocalFS/dtml/methodAdd.dtml Wed Aug 28 02:13:41 2002 @@ -8,45 +8,25 @@ -

Local File System objects allow you to serve files from -either the local file system or a remote network share as if they were regular -Zope documents.

+

+ローカル・ファイル・システム・オブジェクトは、あたかもそれらが通常のZopeドキュメントかのように、あなたがローカルのファイル・システム、あるいは遠隔のネットワーク・シェアのいずれかからのファイルを操作することを可能にします。

-This works by mapping a directory (called the 'base path') on the Zope server -machine to a folder-like object in Zope. All of the subdirectories and files -under this path are mapped to Zope objects by reading the contents of the file -from the file system each time the object is requested. (For many operations -this is optimized to speed up performance.)

+Zopeの中のフォルダ状のオブジェクトに、Zopeサーバマシンのディレクトリ(「base path」と呼ぶ)をマッピングする。このパスの下のサブディレクトリおよびファイルはすべて、オブジェクトが要求されるごとに、ファイル・システムからファイルの内容を読むことにより、Zopeオブジェクトにマッピングされます。(多くのオペレーションにおいて、これが速度の向上に最適化されます。)

-The Zope process must have permissions at minimum to read from the specified -directory, or to write to the directory to enable file uploads. All uploaded -files are initially owned by the same user as the Zope process. -

+Zopeプロセスが、指定されたディレクトリから読むか、あるいはアップロードを可能にするディレクトリへの書き込み可能な許可を行っている必要があります。アップロードされたファイルはすべて、Zopeプロセスと同じユーザによって最初に所有されます。

-

Specify remote shares using the UNC notation: -\\server\share\path. You may also need to enter a username and a password. -Note: When run as a service, Zope by default runs under -the System account, which does not have the permissions to map network -drives. You must specify a username with sufficient privileges to -use network shares unless you run Zope under a different account.

+

UNCの記法を使用して、リモート共有を指定してください。(\\server\share\path)さらに、ユーザー名およびパスワードを入力する必要があるかもしれません。注:サービスとして実行された時、デフォルトのZopeは、システム・アカウント(それはネットワーク・ドライブをマッピングする許可を行っていない)の下で走ります。もし異なるアカウントの下のZopeを実行しなければネットワーク共有を使用する十分な特権を備えたユーザー名を指定しなければなりません。

-

Local File System objects allow you to serve files from -the local file system as if they were regular Zope documents.

+

ローカル・ファイル・システム・オブジェクトは、あたかもそれらが通常のZopeドキュメントかのように、あなたがローカルのファイル・システム、あるいは遠隔のネットワーク・シェアのいずれかからのファイルを操作することを可能にします。

-This works by mapping a directory (called the 'base path') on the Zope server -machine to a folder-like object in Zope. All of the subdirectories and files -under this path are mapped to Zope objects by reading the contents of the file -from the file system each time the object is requested. (For many operations -this is optimized to speed up performance.)

+Zopeの中のフォルダ状のオブジェクトにZopeサーバマシンのディレクトリ(「base path」と呼ぶ)をマッピングする。このパスの下のサブディレクトリおよびファイルはすべて、オブジェクトが要求されるごとに、ファイル・システムからファイルの内容を読むことにより、Zopeオブジェクトにマッピングされます。(多くのオペレーションにおいて、これが速度の向上に最適化されます。)

-The Zope process must have permissions at minimum to read from the specified -directory, or to write to the directory to enable file uploads. All uploaded -files are initially owned by the same user as the Zope process. +Zopeプロセスが、指定されたディレクトリから読むか、あるいはアップロードを可能にするディレクトリへの書き込み可能な許可を行っている必要があります。アップロードされたファイルはすべて、Zopeプロセスと同じユーザによって最初に所有されます。

@@ -65,7 +45,7 @@
- Title + タイトル(Title)
@@ -75,7 +55,7 @@
- Base Path + 元パス(Base Path)
@@ -86,7 +66,7 @@
- Username + ユーザ名(Username)
@@ -96,7 +76,7 @@
- Password + パスワード(Password)
@@ -108,7 +88,7 @@
- + diff -u -r LocalFS.org/dtml/methodBrowse.dtml LocalFS/dtml/methodBrowse.dtml --- LocalFS.org/dtml/methodBrowse.dtml Thu Aug 22 09:16:47 2002 +++ LocalFS/dtml/methodBrowse.dtml Wed Aug 28 02:13:41 2002 @@ -1,18 +1,18 @@ -

Directory listing of

+

」のフォルダ一覧

- - - - + + + + - + @@ -21,15 +21,17 @@ - +
 NameLast Modified Size Typeファイル名最終更新 サイズ mimeタイプ
Parent Directory上位フォルダ      
>      
-

Upload a file +

ファイル追加 +


+日本語ファイル名も可能です。受信時に文字化けするブラウザーをお使いの場合は、保存画面で入力が必要です。 diff -u -r LocalFS.org/dtml/methodEdit.dtml LocalFS/dtml/methodEdit.dtml --- LocalFS.org/dtml/methodEdit.dtml Thu Aug 22 09:16:47 2002 +++ LocalFS/dtml/methodEdit.dtml Wed Aug 28 02:13:41 2002 @@ -8,7 +8,7 @@

- Title + タイトル
@@ -18,7 +18,7 @@
- Base Path + 元パス
@@ -29,7 +29,7 @@
- Username + ユーザー名
@@ -39,7 +39,7 @@
- Password + パスワード
@@ -50,7 +50,7 @@
- Default Document + 標準文書
@@ -60,7 +60,7 @@
- Display in Tree View + ツリー表示
@@ -74,7 +74,7 @@
- Include Objects in Catalog + カタログへの包含
@@ -88,7 +88,7 @@
- Type Map + mimeタイプ設定
@@ -98,7 +98,7 @@
- Icon Map + アイコン設定
diff -u -r LocalFS.org/dtml/methodUpload.dtml LocalFS/dtml/methodUpload.dtml --- LocalFS.org/dtml/methodUpload.dtml Thu Aug 22 09:16:47 2002 +++ LocalFS/dtml/methodUpload.dtml Tue Sep 3 20:52:18 2002 @@ -2,50 +2,56 @@

-You may upload a file using the form below. -Choose an existing file from your local computer by clicking the -Browse button. - + ファイル送信は下のフォームで +「参照」ボタンをクリック、あなたの手元のコンピュータからファイルを選択します。

- - + + + + + +
- File + 1. ファイル名
- +
-
- -
+
2. すでにファイルが存在する場合:
+
+ + + +
+
3. 「送信」ボタンクリック
+
+

-You can also create new directories relative to the base path of the file -system object using the form below. + 下記のフォームに新規フォルダ名を入力すると、現在の階層下にフォルダが作成されます。

-
- Path + フォルダ名
- + - +