mirror of https://github.com/apache/poi.git
removed unnecessary svn:executable flag from files in SVN trunk, see bugzilla 47734
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@814335 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
41d2b72f49
commit
3ee045c2a2
|
@ -33,6 +33,7 @@
|
|||
|
||||
<changes>
|
||||
<release version="3.5-beta7" date="2009-??-??">
|
||||
<action dev="POI-DEVELOPERS" type="fix">47734 - removed unnecessary svn:executable flag from files in SVN trunk</action>
|
||||
<action dev="POI-DEVELOPERS" type="fix">47543 - added javadoc how to avoid Excel crash when creating too many HSSFRichTextString cells</action>
|
||||
<action dev="POI-DEVELOPERS" type="fix">47813 - fixed problems with XSSFWorkbook.removeSheetAt when workbook contains chart</action>
|
||||
<action dev="POI-DEVELOPERS" type="fix">47737 - adjust sheet indices of named ranges when deleting sheets</action>
|
||||
|
|
|
@ -24,6 +24,17 @@ POI Release Guide
|
|||
<property name="version.id" value="3.1-beta1"/>
|
||||
{code}
|
||||
|
||||
|
||||
1a Check file permissions in SVN.
|
||||
There can be files in the SVN tree marked executable (have the
|
||||
svn:executable property set), but which should not be. Checking them out will cause
|
||||
the executable bit to be set for them on filesystems which support it.
|
||||
The flag can be removed in batch using
|
||||
|
||||
$ svn pd 'svn:executable' $(find -name .svn -prune -or -type f ! -name \*.sh \
|
||||
-print0 | xargs -0 svn pg 'svn:executable' | cut -d ' ' -f 1)
|
||||
|
||||
|
||||
2. Tag current version. Include the current revision number in the comment
|
||||
|
||||
{code}
|
||||
|
|
0
src/java/org/apache/poi/hssf/record/formula/eval/EvaluationException.java
Executable file → Normal file
0
src/java/org/apache/poi/hssf/record/formula/eval/EvaluationException.java
Executable file → Normal file
0
src/java/org/apache/poi/hssf/record/formula/eval/OperandResolver.java
Executable file → Normal file
0
src/java/org/apache/poi/hssf/record/formula/eval/OperandResolver.java
Executable file → Normal file
0
src/java/org/apache/poi/hssf/record/formula/eval/UserDefinedFunction.java
Executable file → Normal file
0
src/java/org/apache/poi/hssf/record/formula/eval/UserDefinedFunction.java
Executable file → Normal file
0
src/java/org/apache/poi/hssf/record/formula/functions/FreeRefFunction.java
Executable file → Normal file
0
src/java/org/apache/poi/hssf/record/formula/functions/FreeRefFunction.java
Executable file → Normal file
0
src/ooxml/java/org/apache/poi/openxml4j/exceptions/InvalidFormatException.java
Executable file → Normal file
0
src/ooxml/java/org/apache/poi/openxml4j/exceptions/InvalidFormatException.java
Executable file → Normal file
0
src/ooxml/java/org/apache/poi/openxml4j/exceptions/InvalidOperationException.java
Executable file → Normal file
0
src/ooxml/java/org/apache/poi/openxml4j/exceptions/InvalidOperationException.java
Executable file → Normal file
0
src/ooxml/java/org/apache/poi/openxml4j/exceptions/OpenXML4JException.java
Executable file → Normal file
0
src/ooxml/java/org/apache/poi/openxml4j/exceptions/OpenXML4JException.java
Executable file → Normal file
0
src/ooxml/java/org/apache/poi/openxml4j/exceptions/OpenXML4JRuntimeException.java
Executable file → Normal file
0
src/ooxml/java/org/apache/poi/openxml4j/exceptions/OpenXML4JRuntimeException.java
Executable file → Normal file
0
src/ooxml/java/org/apache/poi/openxml4j/opc/CertificateEmbeddingOption.java
Executable file → Normal file
0
src/ooxml/java/org/apache/poi/openxml4j/opc/CertificateEmbeddingOption.java
Executable file → Normal file
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue