ホームページ > 記事 > ウェブフロントエンド > GoogleCode の SVN 下の HTML ファイルが FireFox で通常どおり表示されるようにします。_javascript スキル
今日試してみたところ、GoogleCode が提供する SVN の HTML が Firefox で HTML ソースファイルとして表示されることがわかりました
Google で調べたところ、答えが見つかりました:
正常に表示される場合は、svn:mime- を設定する必要がありますファイルを SVN に送信するときに次のように入力します。text/html.(http://blog.pluskid.org/?p=70)
SVN クライアントは自動構成をサポートします。(http://www) .worldhello.net/wiki/SVN)
--------------------------------------
6.2 新しいファイルの属性設定を追加しますか?
Whodo SVN のフック スクリプトは、新しく追加されたファイルの属性をチェックします。svn:mime-type 属性や svn:eol-style 属性が設定されていない場合、送信は禁止されます。
しかし、ファイルを追加するたびに、「svn ps svn:eol-style...」のようなコマンドを実行する必要があり、非常に面倒です。幸いなことに、SVN クライアント (コマンド ラインまたは TortoiseSVN) は自動属性機能をサポートしています。新しく追加されたファイルには属性が自動的に追加されます。
6.2.1 config 構成ファイル
自動プロパティの有効化と設定は、config 構成ファイルで行われます。 config 構成ファイルの場所:
Unix プラットフォーム
グローバル構成ファイルの場所: /etc/subversion/config 各ユーザーのホーム ディレクトリには、グローバル構成ファイルの設定をオーバーライドする構成ファイルもあります。 /.subversion/config ;
Windows プラットフォーム
レジストリには、対応する設定 (HKLMSoftwareTigris.orgSubversionConfig および HKCUSoftwareTigris.orgSubversionConfig) が含まれる場合があります。 ただし、ファイルの方が優先されます。グローバル構成ファイル: %ALLUSERSPROFILE%Application DataSubversionconfig、ユーザー個人構成ファイル: %APPDATA%Subversionconfig
6.2.2 自動プロパティを有効にする
構成構成を変更し、自動プロパティを有効にします:
[miscellany]global-無視 = *.o *.lo *.la #*# .*.rej *.rej .*~ *~ .#* .DS_Store .cvsignore Thumbs.db CVSuse-commit-times = yesenable-auto-props = yes
6.2.3 ファイル名に基づく自動プロパティ設定
自動プロパティ設定はファイル名に基づいて照合されます。修改 config 文件,增添新的配置,如下:
### Section for configuring automatic properties.[auto-props]### The format of the entries is:### file-name-pattern = propname[=value][;propname[=value]...]### The file-name-pattern can contain wildcards (such as '*' and### '?'). All entries which match will be applied to the file.### Note that auto-props functionality must be enabled, which### is typically done by setting the 'enable-auto-props' option.##################################################### Binary files##################################################*.bmp = svn:mime-type=image/bmp*.gif = svn:mime-type=image/gif*.gz = svn:mime-type=application/x-gzip*.ico = svn:mime-type=image/x-icon*.jar = svn:mime-type=application/zip*.jpg = svn:mime-type=image/jpeg*.pdf = svn:mime-type=application/pdf*.png = svn:mime-type=image/png*.ps = svn:mime-type=application/postscript*.tif = svn:mime-type=image/tiff*.vsd = svn:mime-type=application/octet-stream*.zip = svn:mime-type=application/zip##################################################### Text files, OS dependent eol-style##################################################*.dsp = svn:eol-style=CRLF*.dsw = svn:eol-style=CRLF*.mm = svn:eol-style=LF;svn:mime-type=text/xml*.sh = svn:eol-style=LF;svn:executableMakefile = svn:eol-style=LF##################################################### Text files, eol-style is native##################################################*.c = svn:eol-style=native;svn:mime-type=text/plain*.cpp = svn:eol-style=native;svn:mime-type=text/plain*.css = svn:eol-style=native;svn:mime-type=text/css*.diff = svn:eol-style=native;svn:mime-type=text/plain*.dsl = svn:eol-style=native;svn:mime-type=text/sgml*.dtd = svn:eol-style=native;svn:mime-type=text/plain*.ent = svn:eol-style=native;svn:mime-type=text/plain*.gml = svn:eol-style=native;svn:mime-type=text/sgml*.h = svn:eol-style=native;svn:mime-type=text/plain*.htm = svn:eol-style=native;svn:mime-type=text/html*.html = svn:eol-style=native;svn:mime-type=text/html*.java = svn:eol-style=native;svn:mime-type=text/plain*.js = svn:eol-style=native;svn:mime-type=text/plain*.mod = svn:eol-style=native;svn:mime-type=text/plain*.patch = svn:eol-style=native;svn:mime-type=text/plain*.php = svn:eol-style=native*.pl = svn:eol-style=native*.py = svn:eol-style=native*.sgm = svn:eol-style=native;svn:mime-type=text/sgml*.sgml = svn:eol-style=native;svn:mime-type=text/sgml*.svg = svn:eol-style=native;svn:mime-type=text/xml*.txt = svn:mime-type=text/plain*.xml = svn:eol-style=native;svn:mime-type=text/xml*.xsl = svn:eol-style=native;svn:mime-type=text/xml*.xslt = svn:eol-style=native;svn:mime-type=text/xmlREADME = svn:eol-style=native文件添加后,在提交之前,可以通过如下命令查看新增文件的属性:
$ svn proplist -v *