diff --git a/utils/api_demos/mainHomology.cpp b/utils/api_demos/mainHomology.cpp
index 201ca5a1941e45c12df33e5bc499c5e5eccb1c3a..a378b928b220a35b6a6322b2c9b1b6f22d5a4152 100644
--- a/utils/api_demos/mainHomology.cpp
+++ b/utils/api_demos/mainHomology.cpp
@@ -1,4 +1,4 @@
-// Gmsh - Copyright (C) 1997-2010 C. Geuzaine, J.-F. Remacle
+// Gmsh - Copyright (C) 1997-2011 C. Geuzaine, J.-F. Remacle
 // 
 // See the LICENSE.txt file for license information. Please report all
 // bugs and problems to <gmsh@geuz.org>.
diff --git a/utils/misc/update_copyright.sh b/utils/misc/update_copyright.sh
index 719830ce3563d728b816a83db38f61af02a53be7..d737efa272bf9a03554fb57172f6a861a4b2786c 100755
--- a/utils/misc/update_copyright.sh
+++ b/utils/misc/update_copyright.sh
@@ -1,12 +1,12 @@
 #!/bin/sh -
 
-files=`find ../.. -not -path "*.svn*" -and -not -path "*lib*" -and -not -path "*bin*" -and -not -name "update_copyright.sh" | xargs grep 'Copyright (C) 1997-2009 C. Geuzaine, J.-F. Remacle' -sl`
+files=`find ../.. -not -path "*.svn*" -and -not -path "*lib*" -and -not -path "*bin*" -and -not -name "update_copyright.sh" -print0 | xargs -0 grep 'Copyright (C) 1997-2010 C. Geuzaine, J.-F. Remacle' -sl`
 
-# echo $files
+#echo $files
 
 for file in $files 
 do
-sed "s|(C) 1997-2009 C|(C) 1997-2010 C|g" $file > $file.tmp
+sed "s|(C) 1997-2010 C|(C) 1997-2011 C|g" $file > $file.tmp
 echo modified $file
 rm -f $file
 mv $file.tmp $file
diff --git a/utils/nightly/linux.sh b/utils/nightly/linux.sh
index d56f5fa0353e5fc2232a84db0fa3c1292d0ee924..9e4cfc0bed2576c7dbd667d47bdaff456447051b 100755
--- a/utils/nightly/linux.sh
+++ b/utils/nightly/linux.sh
@@ -17,7 +17,9 @@ cd ${GMSH}/bin && \
   ${CMAKE} -DGMSH_EXTRA_VERSION:string="-svn"\
            -DCMAKE_PREFIX_PATH:path="/usr/local;/usr/local/opencascade"\
            -DENABLE_NATIVE_FILE_CHOOSER:bool=FALSE\
+           -DENABLE_SWIG:bool=FALSE\
   ${GMSH} >> ${LOG} 2>&1
+cd ${GMSH}/bin && make html >> ${LOG} 2>&1
 cd ${GMSH}/bin && make package >> ${LOG} 2>&1
 echo "BUILD END: `date`" >> ${LOG}
 scp -C ${GMSH}/bin/gmsh-*.tar.gz ${WEB_BIN}/gmsh-nightly-Linux.tgz
diff --git a/utils/nightly/mac.sh b/utils/nightly/mac.sh
index 50840902ca284fda5a581fbd2df072b1e95a4cea..3b130e236185d0fd2063603af90ecb76b6787644 100755
--- a/utils/nightly/mac.sh
+++ b/utils/nightly/mac.sh
@@ -16,7 +16,9 @@ mkdir ${GMSH}/bin
 cd ${GMSH}/bin &&\
   ${CMAKE} -DGMSH_EXTRA_VERSION:string="-svn"\
            -DCMAKE_PREFIX_PATH:path="/usr/local;/usr/local/opencascade"\
+           -DENABLE_SWIG:bool=FALSE\
   ${GMSH} >> ${LOG} 2>&1
+cd ${GMSH}/bin && make html >> ${LOG} 2>&1
 cd ${GMSH}/bin && make package -j 4 >> ${LOG} 2>&1
 echo "BUILD END: `date`" >> ${LOG}
 scp -C ${GMSH}/bin/gmsh-*.dmg ${WEB_BIN}/gmsh-nightly-MacOSX.dmg
diff --git a/utils/nightly/windows.sh b/utils/nightly/windows.sh
index 6b5d528a0638ce8125d61a0afaf9f0477b106f30..a5e1856ea9f07f92cd158196322152c80fb0f6fa 100755
--- a/utils/nightly/windows.sh
+++ b/utils/nightly/windows.sh
@@ -18,7 +18,9 @@ cd ${GMSH}/bin && \
            -DCMAKE_PREFIX_PATH:path="/usr/local;/usr/local/opencascade"\
            -DCMAKE_CXX_FLAGS:string="-mno-cygwin"\
            -DCMAKE_C_FLAGS:string="-mno-cygwin"\
+           -DENABLE_SWIG:bool=FALSE\
   ${GMSH} >> ${LOG} 2>&1
+cd ${GMSH}/bin && make html >> ${LOG} 2>&1
 cd ${GMSH}/bin && make package >> ${LOG} 2>&1
 echo "BUILD END: `date`" >> ${LOG}
 scp -C ${GMSH}/bin/gmsh-*.zip ${WEB_BIN}/gmsh-nightly-Windows.zip
diff --git a/utils/solvers/c++/GmshSocket.h b/utils/solvers/c++/GmshSocket.h
index 58caa9d4b2deef0fae0fe0eb3defb0d7364f78d4..0f67ad37b67730c14ba55b37f8efcd904a5d25ef 100644
--- a/utils/solvers/c++/GmshSocket.h
+++ b/utils/solvers/c++/GmshSocket.h
@@ -1,4 +1,4 @@
-// Gmsh - Copyright (C) 1997-2010 C. Geuzaine, J.-F. Remacle
+// Gmsh - Copyright (C) 1997-2011 C. Geuzaine, J.-F. Remacle
 //
 // Permission is hereby granted, free of charge, to any person
 // obtaining a copy of this software and associated documentation
diff --git a/utils/solvers/c/GmshClient.c b/utils/solvers/c/GmshClient.c
index b3e8326eabe99e152aef8197e8b3c6c94a5f19e3..8124d05d0b74a69ca97693fd984707203d3038dd 100644
--- a/utils/solvers/c/GmshClient.c
+++ b/utils/solvers/c/GmshClient.c
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 1997-2010 C. Geuzaine, J.-F. Remacle
+ * Copyright (C) 1997-2011 C. Geuzaine, J.-F. Remacle
  *
  * Permission is hereby granted, free of charge, to any person
  * obtaining a copy of this software and associated documentation
diff --git a/utils/solvers/c/GmshClient.h b/utils/solvers/c/GmshClient.h
index 377da9e19da6f1d0335cb0d79d5184da38d2ed3c..26eb36f39723e480547fbd461d1b411ed185767e 100644
--- a/utils/solvers/c/GmshClient.h
+++ b/utils/solvers/c/GmshClient.h
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 1997-2010 C. Geuzaine, J.-F. Remacle
+ * Copyright (C) 1997-2011 C. Geuzaine, J.-F. Remacle
  *
  * Permission is hereby granted, free of charge, to any person
  * obtaining a copy of this software and associated documentation