You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(22) |
Sep
(57) |
Oct
(39) |
Nov
(93) |
Dec
(72) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(15) |
Feb
(8) |
Mar
(12) |
Apr
(25) |
May
(2) |
Jun
|
Jul
(11) |
Aug
(32) |
Sep
(18) |
Oct
(53) |
Nov
|
Dec
(11) |
2004 |
Jan
(19) |
Feb
(1) |
Mar
(15) |
Apr
(17) |
May
(56) |
Jun
(19) |
Jul
(6) |
Aug
(16) |
Sep
(44) |
Oct
(31) |
Nov
(36) |
Dec
(13) |
2005 |
Jan
(2) |
Feb
(41) |
Mar
(304) |
Apr
(176) |
May
(19) |
Jun
(33) |
Jul
(14) |
Aug
(21) |
Sep
(4) |
Oct
(3) |
Nov
|
Dec
(8) |
2006 |
Jan
(18) |
Feb
(9) |
Mar
(5) |
Apr
(2) |
May
(2) |
Jun
(4) |
Jul
(2) |
Aug
|
Sep
(7) |
Oct
(10) |
Nov
|
Dec
|
2007 |
Jan
|
Feb
(3) |
Mar
(1) |
Apr
(4) |
May
(124) |
Jun
(59) |
Jul
(1) |
Aug
(13) |
Sep
(3) |
Oct
(11) |
Nov
(30) |
Dec
(35) |
2008 |
Jan
(31) |
Feb
(42) |
Mar
(4) |
Apr
(5) |
May
(2) |
Jun
(12) |
Jul
(8) |
Aug
(2) |
Sep
(4) |
Oct
(5) |
Nov
(89) |
Dec
(23) |
2009 |
Jan
(71) |
Feb
(5) |
Mar
(8) |
Apr
(7) |
May
(8) |
Jun
(7) |
Jul
|
Aug
(4) |
Sep
(58) |
Oct
(74) |
Nov
(53) |
Dec
(32) |
2010 |
Jan
(8) |
Feb
(13) |
Mar
(4) |
Apr
|
May
|
Jun
(10) |
Jul
(1) |
Aug
(2) |
Sep
(12) |
Oct
(17) |
Nov
(2) |
Dec
(24) |
2011 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(24) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2013 |
Jan
|
Feb
(20) |
Mar
(18) |
Apr
|
May
|
Jun
|
Jul
(5) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2014 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2016 |
Jan
|
Feb
|
Mar
|
Apr
(4) |
May
|
Jun
|
Jul
|
Aug
|
Sep
(12) |
Oct
|
Nov
|
Dec
|
2017 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(8) |
Jun
|
Jul
(7) |
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
(5) |
From: Hans U. N. <hu...@us...> - 2005-06-21 08:31:55
|
Update of /cvsroot/libexif/libexif-website In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17818 Modified Files: Makefile Log Message: more configurable stuff in Makefile Index: Makefile =================================================================== RCS file: /cvsroot/libexif/libexif-website/Makefile,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -d -r1.2 -r1.3 --- Makefile 21 Jun 2005 08:22:27 -0000 1.2 +++ Makefile 21 Jun 2005 08:31:46 -0000 1.3 @@ -1,4 +1,5 @@ SF_SSH_HOSTNAME = sf +HTDOCS_DIR = /home/users/h/hu/hun/libexif/htdocs .PHONY: all all: @@ -10,6 +11,11 @@ upload: upload-static.stamp upload-static.stamp: static $(wildcard static/*.html static/*.css static/*.png static/*.jpg) Makefile find static \( -type d -exec chmod a+rx,go-w,g+s {} \; \) \ -or \( -type f -exec chmod a+r {} \; \) - rsync -avz --progress --exclude="CVS" static/* "$(SF_SSH_HOSTNAME):/home/users/h/hu/hun/libexif/htdocs/" - ssh "$(SF_SSH_HOSTNAME)" "find /home/groups/l/li/libexif/htdocs \( -type d -exec chgrp libexif {} \; -exec chmod g+rwxs,a+rx {} \; \) -or \( -type f -exec chgrp libexif {} \; -exec chmod g+rw {} \; \( -name '*.html' -or -name '*.png' -or -name '*.php' -or -name '*.jpg' -or -name '*.css' -name '*.dot' -name '*.map' \) -exec chmod a+r {} \; \)" + rsync -avz --progress --exclude="CVS" static/* "$(SF_SSH_HOSTNAME):$(HTDOCS_DIR)/" + ssh "$(SF_SSH_HOSTNAME)" "find $(HTDOCS_DIR) \ + \( -type d -exec chgrp libexif {} \; -exec chmod g+rwxs,a+rx {} \; \) \ + -or \( -type f -exec chgrp libexif {} \; -exec chmod g+rw {} \; \ + \( -name '*.html' -or -name '*.png' -or -name '*.php' -or -name '*.jpg' \ + -or -name '*.css' -name '*.dot' -name '*.map' \) \ + -exec chmod a+r {} \; \)" date > $@ |
From: Hans U. N. <hu...@us...> - 2005-06-21 08:22:35
|
Update of /cvsroot/libexif/libexif-website In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13105 Modified Files: Makefile Log Message: made ssh host name one setting Index: Makefile =================================================================== RCS file: /cvsroot/libexif/libexif-website/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -d -r1.1 -r1.2 --- Makefile 19 Jun 2005 22:22:59 -0000 1.1 +++ Makefile 21 Jun 2005 08:22:27 -0000 1.2 @@ -1,3 +1,5 @@ +SF_SSH_HOSTNAME = sf + .PHONY: all all: @echo "Nothing to build." @@ -8,6 +10,6 @@ upload: upload-static.stamp upload-static.stamp: static $(wildcard static/*.html static/*.css static/*.png static/*.jpg) Makefile find static \( -type d -exec chmod a+rx,go-w,g+s {} \; \) \ -or \( -type f -exec chmod a+r {} \; \) - rsync -avz --progress --exclude="CVS" static/* sf:/home/users/h/hu/hun/libexif/htdocs/ - ssh "sf" "find /home/groups/l/li/libexif/htdocs \( -type d -exec chgrp libexif {} \; -exec chmod g+rwxs,a+rx {} \; \) -or \( -type f -exec chgrp libexif {} \; -exec chmod g+rw {} \; \( -name '*.html' -or -name '*.png' -or -name '*.php' -or -name '*.jpg' -or -name '*.css' -name '*.dot' -name '*.map' \) -exec chmod a+r {} \; \)" + rsync -avz --progress --exclude="CVS" static/* "$(SF_SSH_HOSTNAME):/home/users/h/hu/hun/libexif/htdocs/" + ssh "$(SF_SSH_HOSTNAME)" "find /home/groups/l/li/libexif/htdocs \( -type d -exec chgrp libexif {} \; -exec chmod g+rwxs,a+rx {} \; \) -or \( -type f -exec chgrp libexif {} \; -exec chmod g+rw {} \; \( -name '*.html' -or -name '*.png' -or -name '*.php' -or -name '*.jpg' -or -name '*.css' -name '*.dot' -name '*.map' \) -exec chmod a+r {} \; \)" date > $@ |
From: Hans U. N. <hu...@us...> - 2005-06-21 00:12:44
|
Update of /cvsroot/libexif/libexif-website/static In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9315/static Modified Files: index.html Log Message: fix internals docs link Index: index.html =================================================================== RCS file: /cvsroot/libexif/libexif-website/static/index.html,v retrieving revision 1.10 retrieving revision 1.11 diff -u -p -d -r1.10 -r1.11 --- index.html 21 Jun 2005 00:00:15 -0000 1.10 +++ index.html 21 Jun 2005 00:12:33 -0000 1.11 @@ -29,7 +29,7 @@ div.banners { <ul> <li><a href="https://sourceforge.net/projects/libexif">SF.net project page</a></li> <li><a href="api/">libexif API documentation</a> (preliminary)</li> -<li><a href="internals/">libexif API and internals documentation</a> (preliminary)</li> +<li><a href="internals/">libexif code internals documentation</a> (preliminary)</li> <li>Download <a href="https://sourceforge.net/project/showfiles.php?group_id=12272">libexif source tarballs</a> releases or get the source code from CVS: <pre> |
From: Hans U. N. <hu...@us...> - 2005-06-21 00:06:00
|
Update of /cvsroot/libexif/libexif/doc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5851 Modified Files: Doxyfile.in Log Message: no recursion into details for API docs Index: Doxyfile.in =================================================================== RCS file: /cvsroot/libexif/libexif/doc/Doxyfile.in,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -d -r1.6 -r1.7 --- Doxyfile.in 21 Jun 2005 00:03:56 -0000 1.6 +++ Doxyfile.in 21 Jun 2005 00:05:51 -0000 1.7 @@ -465,7 +465,7 @@ FILE_PATTERNS = *.h *.c # should be searched for input files as well. Possible values are YES and NO. # If left blank NO is used. -RECURSIVE = YES +RECURSIVE = NO # The EXCLUDE tag can be used to specify files and/or directories that should # excluded from the INPUT source files. This way you can easily exclude a |
From: Hans U. N. <hu...@us...> - 2005-06-21 00:04:05
|
Update of /cvsroot/libexif/libexif/doc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4900 Modified Files: Doxyfile-internals.in Doxyfile.in Log Message: mark difference between API and internals docs in document title Index: Doxyfile.in =================================================================== RCS file: /cvsroot/libexif/libexif/doc/Doxyfile.in,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -d -r1.5 -r1.6 --- Doxyfile.in 20 Jun 2005 23:59:11 -0000 1.5 +++ Doxyfile.in 21 Jun 2005 00:03:56 -0000 1.6 @@ -17,7 +17,7 @@ # The PROJECT_NAME tag is a single word (or a sequence of words surrounded # by quotes) that should identify the project. -PROJECT_NAME = "@PACKAGE_NAME@ (@PACKAGE_TARNAME@)" +PROJECT_NAME = "@PACKAGE_NAME@ (@PACKAGE_TARNAME@) API" # The PROJECT_NUMBER tag can be used to enter a project or revision number. # This could be handy for archiving the generated documentation or Index: Doxyfile-internals.in =================================================================== RCS file: /cvsroot/libexif/libexif/doc/Doxyfile-internals.in,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -d -r1.1 -r1.2 --- Doxyfile-internals.in 20 Jun 2005 23:59:11 -0000 1.1 +++ Doxyfile-internals.in 21 Jun 2005 00:03:56 -0000 1.2 @@ -17,7 +17,7 @@ # The PROJECT_NAME tag is a single word (or a sequence of words surrounded # by quotes) that should identify the project. -PROJECT_NAME = "@PACKAGE_NAME@ (@PACKAGE_TARNAME@)" +PROJECT_NAME = "@PACKAGE_NAME@ (@PACKAGE_TARNAME@) Internals" # The PROJECT_NUMBER tag can be used to enter a project or revision number. # This could be handy for archiving the generated documentation or |
From: Hans U. N. <hu...@us...> - 2005-06-21 00:00:27
|
Update of /cvsroot/libexif/libexif-website/static In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3017/static Modified Files: index.html Log Message: link to both API and code internals docs Index: index.html =================================================================== RCS file: /cvsroot/libexif/libexif-website/static/index.html,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -d -r1.9 -r1.10 --- index.html 19 Jun 2005 23:30:39 -0000 1.9 +++ index.html 21 Jun 2005 00:00:15 -0000 1.10 @@ -28,7 +28,8 @@ div.banners { <h2>About libexif</h2> <ul> <li><a href="https://sourceforge.net/projects/libexif">SF.net project page</a></li> -<li><a href="api/">libexif API documentation</a></li> +<li><a href="api/">libexif API documentation</a> (preliminary)</li> +<li><a href="internals/">libexif API and internals documentation</a> (preliminary)</li> <li>Download <a href="https://sourceforge.net/project/showfiles.php?group_id=12272">libexif source tarballs</a> releases or get the source code from CVS: <pre> |
From: Hans U. N. <hu...@us...> - 2005-06-20 23:59:52
|
Update of /cvsroot/libexif/m4m In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2517/m4m Modified Files: gp-documentation.m4 Log Message: build both API and code internals docs with doxygen Index: gp-documentation.m4 =================================================================== RCS file: /cvsroot/libexif/m4m/gp-documentation.m4,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -d -r1.3 -r1.4 --- gp-documentation.m4 2 May 2005 19:25:15 -0000 1.3 +++ gp-documentation.m4 20 Jun 2005 23:59:11 -0000 1.4 @@ -128,5 +128,6 @@ else fi AC_SUBST([HTML_APIDOC_DIR], ["${PACKAGE_TARNAME}-api.html"]) AC_SUBST([DOXYGEN_OUTPUT_DIR], [doxygen-output]) +AC_SUBST([HTML_APIDOC_INTERNALS_DIR], ["${PACKAGE_TARNAME}-internals.html"]) ])dnl |
From: Hans U. N. <hu...@us...> - 2005-06-20 23:59:50
|
Update of /cvsroot/libexif/libexif/doc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2517/doc Modified Files: Doxyfile.in Makefile.am Added Files: Doxyfile-internals.in Log Message: build both API and code internals docs with doxygen Index: Makefile.am =================================================================== RCS file: /cvsroot/libexif/libexif/doc/Makefile.am,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -d -r1.5 -r1.6 --- Makefile.am 19 Jun 2005 21:48:37 -0000 1.5 +++ Makefile.am 20 Jun 2005 23:59:11 -0000 1.6 @@ -5,12 +5,17 @@ if HAVE_DOXYGEN DOXYGEN_FILES = -DOXYGEN_STAMPS = $(DOXYGEN_OUTPUT_DIR).stamp -DOXYGEN_UPLOAD = $(DOXYGEN_OUTPUT_DIR).uploaded +DOXYGEN_STAMPS = $(HTML_APIDOC_DIR).stamp $(HTML_APIDOC_INTERNALS_DIR).stamp +DOXYGEN_UPLOAD = $(HTML_APIDOC_DIR).uploaded $(HTML_APIDOC_INTERNALS_DIR).uploaded # FIXME: Depending on the source files would be sufficient... -$(DOXYGEN_OUTPUT_DIR).stamp: Doxyfile $(top_builddir)/libexif/libexif.la - doxygen Doxyfile +$(HTML_APIDOC_DIR).stamp: Doxyfile $(top_builddir)/libexif/libexif.la + doxygen $< + echo > $@ + +# FIXME: Depending on the source files would be sufficient... +$(HTML_APIDOC_INTERNALS_DIR).stamp: Doxyfile-internals $(top_builddir)/libexif/libexif.la + doxygen $< echo > $@ $(top_builddir)/libexif/libexif.la: @@ -19,12 +24,24 @@ $(top_builddir)/libexif/libexif.la: $(HTML_APIDOC_DIR).tar.gz: $(DOXYGEN_OUTPUT_DIR).stamp (cd $(DOXYGEN_OUTPUT_DIR) && $(AMTAR) chof - $(HTML_APIDOC_DIR) | GZIP=--best gzip -c) > $@ -DOC_APIDOC_HTML = apidocs.html +$(HTML_APIDOC_INTERNALS_DIR).tar.gz: $(DOXYGEN_OUTPUT_DIR).stamp + (cd $(DOXYGEN_OUTPUT_DIR) && $(AMTAR) chof - $(HTML_APIDOC_INTERNALS_DIR) | GZIP=--best gzip -c) > $@ -install-apidocs: $(DOXYGEN_OUTPUT_DIR).stamp +DOC_APIDOC_HTML = api.html +DOC_APIDOC_INTERNALS_HTML = internals.html + +install-apidocs-internals: $(HTML_APIDOC_INTERNALS_DIR).stamp + $(INSTALL) -m 0755 -d $(DESTDIR)$(docdir)/$(DOC_APIDOC_INTERNALS_HTML) + $(INSTALL) -m 0644 $(DOXYGEN_OUTPUT_DIR)/$(HTML_APIDOC_INTERNALS_DIR)/* $(DESTDIR)$(docdir)/$(DOC_APIDOC_INTERNALS_HTML)/ + +install-apidocs: $(HTML_APIDOC_DIR).stamp $(INSTALL) -m 0755 -d $(DESTDIR)$(docdir)/$(DOC_APIDOC_HTML) $(INSTALL) -m 0644 $(DOXYGEN_OUTPUT_DIR)/$(HTML_APIDOC_DIR)/* $(DESTDIR)$(docdir)/$(DOC_APIDOC_HTML)/ +uninstall-apidocs-internals: + rm -f $(DESTDIR)$(docdir)/$(DOC_APIDOC_INTERNALS_HTML)/* + rmdir $(DESTDIR)$(docdir)/$(DOC_APIDOC_INTERNALS_HTML) + uninstall-apidocs: rm -f $(DESTDIR)$(docdir)/$(DOC_APIDOC_HTML)/* rmdir $(DESTDIR)$(docdir)/$(DOC_APIDOC_HTML) @@ -35,8 +52,9 @@ clean-apidocs: $(DOXYGEN_UPLOAD): $(DOXYGEN_STAMPS) find $(DOXYGEN_OUTPUT_DIR) \( -type d -exec chmod a+rx,go-w,g+s {} \; \) \ -or \( -type f -exec chmod a+r {} \; \) - rsync -avz --progress $(DOXYGEN_OUTPUT_DIR)/libexif-api.html/ sf:/home/users/h/hu/hun/libexif/htdocs/api/ - ssh "sf" "find /home/groups/l/li/libexif/htdocs/api \( -type d -exec chgrp libexif {} \; -exec chmod g+rwxs,a+rx {} \; \) -or \( -type f -exec chgrp libexif {} \; -exec chmod g+rw {} \; \( -name '*.html' -or -name '*.png' -or -name '*.php' -or -name '*.jpg' -or -name '*.css' -name '*.dot' -name '*.map' \) -exec chmod a+r {} \; \)" + rsync -avz --progress $(DOXYGEN_OUTPUT_DIR)/$(HTML_APIDOC_DIR)/ sf:/home/users/h/hu/hun/libexif/htdocs/api/ + rsync -avz --progress $(DOXYGEN_OUTPUT_DIR)/$(HTML_APIDOC_INTERNALS_DIR)/ sf:/home/users/h/hu/hun/libexif/htdocs/internals/ + ssh "sf" "find /home/groups/l/li/libexif/htdocs/internals /home/groups/l/li/libexif/htdocs/api \( -type d -exec chgrp libexif {} \; -exec chmod g+rwxs,a+rx {} \; \) -or \( -type f -exec chgrp libexif {} \; -exec chmod g+rw {} \; \( -name '*.html' -or -name '*.png' -or -name '*.php' -or -name '*.jpg' -or -name '*.css' -name '*.dot' -name '*.map' \) -exec chmod a+r {} \; \)" endif @@ -45,15 +63,15 @@ endif # Common part ######################################################################## -EXTRA_DIST = Doxyfile.in README.apidocs $(HTML_APIDOC_DIR).tar.gz +EXTRA_DIST = Doxyfile.in Doxyfile-internals.in README.apidocs $(HTML_APIDOC_DIR).tar.gz doc_DATA = $(DOXYGEN_FILES) README.apidocs all-local: $(DOXYGEN_STAMPS) -install-data-local: install-apidocs +install-data-local: install-apidocs install-apidocs-internals -uninstall-local: uninstall-apidocs +uninstall-local: uninstall-apidocs uninstall-apidocs-internals clean-local: clean-apidocs Index: Doxyfile.in =================================================================== RCS file: /cvsroot/libexif/libexif/doc/Doxyfile.in,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -d -r1.4 -r1.5 --- Doxyfile.in 20 Jun 2005 03:38:50 -0000 1.4 +++ Doxyfile.in 20 Jun 2005 23:59:11 -0000 1.5 @@ -219,23 +219,23 @@ SUBGROUPING = YES # Private class members and static file members will be hidden unless # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES -EXTRACT_ALL = YES +EXTRACT_ALL = NO # If the EXTRACT_PRIVATE tag is set to YES all private members of a class # will be included in the documentation. -EXTRACT_PRIVATE = YES +EXTRACT_PRIVATE = NO # If the EXTRACT_STATIC tag is set to YES all static members of a file # will be included in the documentation. -EXTRACT_STATIC = YES +EXTRACT_STATIC = NO # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) # defined locally in source files will be included in the documentation. # If set to NO only classes defined in header files are included. -EXTRACT_LOCAL_CLASSES = YES +EXTRACT_LOCAL_CLASSES = NO # This flag is only useful for Objective-C code. When set to YES local # methods, which are defined in the implementation section but not in @@ -278,7 +278,7 @@ HIDE_IN_BODY_DOCS = NO # to NO (the default) then the documentation will be excluded. # Set it to YES to include the internal documentation. -INTERNAL_DOCS = YES +INTERNAL_DOCS = NO # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate # file names in lower-case letters. If set to YES upper-case letters are also @@ -545,7 +545,7 @@ FILTER_SOURCE_FILES = NO # Note: To get rid of all source code in the generated output, make sure also # VERBATIM_HEADERS is set to NO. -SOURCE_BROWSER = YES +SOURCE_BROWSER = NO # Setting the INLINE_SOURCES tag to YES will include the body # of functions and classes directly in the documentation. --- NEW FILE: Doxyfile-internals.in --- # Doxyfile 1.4.2 # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project # # All text after a hash (#) is considered a comment and will be ignored # The format is: # TAG = value [value, ...] # For lists items can also be appended using: # TAG += value [value, ...] # Values that contain spaces should be placed between quotes (" ") #--------------------------------------------------------------------------- # Project related configuration options #--------------------------------------------------------------------------- # The PROJECT_NAME tag is a single word (or a sequence of words surrounded # by quotes) that should identify the project. [...1179 lines suppressed...] # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will # generate a legend page explaining the meaning of the various boxes and # arrows in the dot generated graphs. GENERATE_LEGEND = YES # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will # remove the intermediate dot files that are used to generate # the various graphs. DOT_CLEANUP = YES #--------------------------------------------------------------------------- # Configuration::additions related to the search engine #--------------------------------------------------------------------------- # The SEARCHENGINE tag specifies whether or not a search engine should be # used. If set to NO the values of all tags below this one will be ignored. SEARCHENGINE = NO |
From: Hans U. N. <hu...@us...> - 2005-06-20 23:59:27
|
Update of /cvsroot/libexif/libexif In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2517 Modified Files: configure.ac Log Message: build both API and code internals docs with doxygen Index: configure.ac =================================================================== RCS file: /cvsroot/libexif/libexif/configure.ac,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -d -r1.8 -r1.9 --- configure.ac 27 Apr 2005 05:47:19 -0000 1.8 +++ configure.ac 20 Jun 2005 23:59:07 -0000 1.9 @@ -146,6 +146,7 @@ AC_CONFIG_FILES([ m4m/Makefile doc/Makefile doc/Doxyfile + doc/Doxyfile-internals libexif/libexif.pc ]) AC_OUTPUT |
From: Hans U. N. <hu...@us...> - 2005-06-20 08:38:44
|
Update of /cvsroot/libexif/libexif/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15232 Modified Files: Makefile.am Log Message: notes about libexif tests Index: Makefile.am =================================================================== RCS file: /cvsroot/libexif/libexif/test/Makefile.am,v retrieving revision 1.16 retrieving revision 1.17 diff -u -p -d -r1.16 -r1.17 --- Makefile.am 20 Jun 2005 03:40:16 -0000 1.16 +++ Makefile.am 20 Jun 2005 08:38:18 -0000 1.17 @@ -1,6 +1,16 @@ SUBDIRS = nls -TESTS = test-mem test-mnote test-value +# Notes about tests: +# - Add "small" tests and stuff here. +# - Add "big" tests and stuff to explicitly test for (fixed) bugs +# to libexif-testsuite: +# * We don't want to force people to download dozens of test images +# just for one small library. +# * Proper testing is done with the "exif" program in libexif-testsuite. +# And this is just the lib - we don't have the program available +# here yet. + +TESTS = test-mem test-value check_PROGRAMS = test-mem test-mnote test-value |
From: Hubert F. <hfi...@us...> - 2005-06-20 03:40:36
|
Update of /cvsroot/libexif/libexif/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28612/test Modified Files: Makefile.am Log Message: * test/Makefile.am (check_PROGRAMS): added check for make check Index: Makefile.am =================================================================== RCS file: /cvsroot/libexif/libexif/test/Makefile.am,v retrieving revision 1.15 retrieving revision 1.16 diff -u -p -d -r1.15 -r1.16 --- Makefile.am 30 Mar 2005 07:55:03 -0000 1.15 +++ Makefile.am 20 Jun 2005 03:40:16 -0000 1.16 @@ -1,6 +1,8 @@ SUBDIRS = nls -noinst_PROGRAMS = test-mem test-mnote test-value +TESTS = test-mem test-mnote test-value + +check_PROGRAMS = test-mem test-mnote test-value test_mem_LDADD = $(top_builddir)/libexif/libexif.la $(LTLIBINTL) test_mnote_LDADD = $(top_builddir)/libexif/libexif.la $(LTLIBINTL) |
From: Hubert F. <hfi...@us...> - 2005-06-20 03:40:36
|
Update of /cvsroot/libexif/libexif In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28612 Modified Files: ChangeLog Log Message: * test/Makefile.am (check_PROGRAMS): added check for make check Index: ChangeLog =================================================================== RCS file: /cvsroot/libexif/libexif/ChangeLog,v retrieving revision 1.217 retrieving revision 1.218 diff -u -p -d -r1.217 -r1.218 --- ChangeLog 1 May 2005 17:39:21 -0000 1.217 +++ ChangeLog 20 Jun 2005 03:40:16 -0000 1.218 @@ -1,3 +1,7 @@ +2005-06-19 Hubert Figuiere <hfi...@te...> + + * test/Makefile.am (check_PROGRAMS): added check for make check + 2005-05-01 Lutz Mueller <lu...@us...> * libexif/exif-data.c (exif_data_fix): Don't create EXIF_IFD_1 if no |
From: Hubert F. <hfi...@us...> - 2005-06-20 03:39:00
|
Update of /cvsroot/libexif/libexif/doc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28075 Modified Files: Doxyfile.in Added Files: .cvsignore Log Message: cvsignore --- NEW FILE: .cvsignore --- Makefile Makefile.in .libs .deps *.o *.lo Index: Doxyfile.in =================================================================== RCS file: /cvsroot/libexif/libexif/doc/Doxyfile.in,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -d -r1.3 -r1.4 --- Doxyfile.in 19 Jun 2005 22:06:42 -0000 1.3 +++ Doxyfile.in 20 Jun 2005 03:38:50 -0000 1.4 @@ -219,17 +219,17 @@ SUBGROUPING = YES # Private class members and static file members will be hidden unless # the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES -EXTRACT_ALL = NO +EXTRACT_ALL = YES # If the EXTRACT_PRIVATE tag is set to YES all private members of a class # will be included in the documentation. -EXTRACT_PRIVATE = NO +EXTRACT_PRIVATE = YES # If the EXTRACT_STATIC tag is set to YES all static members of a file # will be included in the documentation. -EXTRACT_STATIC = NO +EXTRACT_STATIC = YES # If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) # defined locally in source files will be included in the documentation. @@ -278,7 +278,7 @@ HIDE_IN_BODY_DOCS = NO # to NO (the default) then the documentation will be excluded. # Set it to YES to include the internal documentation. -INTERNAL_DOCS = NO +INTERNAL_DOCS = YES # If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate # file names in lower-case letters. If set to YES upper-case letters are also @@ -545,7 +545,7 @@ FILTER_SOURCE_FILES = NO # Note: To get rid of all source code in the generated output, make sure also # VERBATIM_HEADERS is set to NO. -SOURCE_BROWSER = NO +SOURCE_BROWSER = YES # Setting the INLINE_SOURCES tag to YES will include the body # of functions and classes directly in the documentation. @@ -703,7 +703,7 @@ ENUM_VALUES_PER_LINE = 4 # Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are # probably better off using the HTML help feature. -GENERATE_TREEVIEW = NO +GENERATE_TREEVIEW = YES # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be # used to set the initial width (in pixels) of the frame in which the tree |
From: Hans U. N. <hu...@us...> - 2005-06-19 23:30:48
|
Update of /cvsroot/libexif/libexif-website/static In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7217/static Modified Files: index.html Log Message: nice little homepage Index: index.html =================================================================== RCS file: /cvsroot/libexif/libexif-website/static/index.html,v retrieving revision 1.8 retrieving revision 1.9 diff -u -p -d -r1.8 -r1.9 --- index.html 19 Jun 2005 23:14:14 -0000 1.8 +++ index.html 19 Jun 2005 23:30:39 -0000 1.9 @@ -58,11 +58,11 @@ cvs -z3 -d:pserver:ano...@cv...urcef <a href="http://sourceforge.net" title="Hosted by SourceForge.net"><img src="http://sourceforge.net/sflogo.php?group_id=12272&type=1" - width="88" height="31" border="0" alt="SourceForge.net Logo" /></a> + width="88" height="31" style="border:0;" alt="SourceForge.net Logo" /></a> <a href="http://validator.w3.org/check?uri=referer" title="Verify this page is valid XHTML 1.0"><img src="http://www.w3.org/Icons/valid-xhtml10" - alt="Valid XHTML 1.0!" height="31" width="88" border="0" /></a> + alt="Valid XHTML 1.0!" height="31" width="88" style="border:0;" /></a> <a href="http://jigsaw.w3.org/css-validator/check/referer" title="Verify this page is valid CSS"><img style="border:0;width:88px;height:31px" src="http://jigsaw.w3.org/css-validator/images/vcss" |
From: Hans U. N. <hu...@us...> - 2005-06-19 23:14:26
|
Update of /cvsroot/libexif/libexif-website/static In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31339/static Modified Files: index.html Log Message: nice little homepage Index: index.html =================================================================== RCS file: /cvsroot/libexif/libexif-website/static/index.html,v retrieving revision 1.7 retrieving revision 1.8 diff -u -p -d -r1.7 -r1.8 --- index.html 19 Jun 2005 22:56:49 -0000 1.7 +++ index.html 19 Jun 2005 23:14:14 -0000 1.8 @@ -5,6 +5,15 @@ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>The libexif C EXIF library</title> +<style type="text/css"> +div.banners { + border: solid 1px #000; + padding: 2px; + margin: 0; + background-color: #ddd; + height: 31px; +} +</style> </head> <body> @@ -16,41 +25,49 @@ <li>runs under POSIX systems (e.g. GNU/Linux, xBSD, MacOS X, etc.) and Win32. Win64 untested.</li> </ul> -<hr /> - <h2>About libexif</h2> <ul> <li><a href="https://sourceforge.net/projects/libexif">SF.net project page</a></li> -<li><a href="https://sourceforge.net/tracker/?group_id=12272&atid=112272">Bug Tracker</a> - - <a href="https://sourceforge.net/tracker/?func=add&group_id=12272&atid=112272">submit your bugs here</a></li> -<li><a href="https://sourceforge.net/mail/?group_id=12272">libexif mailing list</a></li> -<li><a href="irc://irc.freenode.net/#gphoto">IRC Channel</a> - #gphoto on irc.freenode.net (shared with the - <a href="http://gphoto.org/">gphoto project</a>)</li> -<li>Download <a href="https://sourceforge.net/project/showfiles.php?group_id=12272">release tarballs</a> or from CVS: +<li><a href="api/">libexif API documentation</a></li> +<li>Download <a href="https://sourceforge.net/project/showfiles.php?group_id=12272">libexif source tarballs</a> releases +or get the source code from CVS: <pre> cvs -d:pserver:ano...@cv...:/cvsroot/libexif login cvs -z3 -d:pserver:ano...@cv...:/cvsroot/libexif co -P libexif cvs -z3 -d:pserver:ano...@cv...:/cvsroot/libexif co -P exif </pre> </li> -<li><a href="api/">libexif API documentation</a></li> </ul> -<hr /> +<h2>Feedback on libexif</h2> + +<ul> +<li><a href="https://sourceforge.net/tracker/?group_id=12272&atid=112272">Bug Tracker</a> - + <a href="https://sourceforge.net/tracker/?func=add&group_id=12272&atid=112272">submit your bugs here</a></li> +<li><a href="https://sourceforge.net/mail/?group_id=12272">libexif mailing list</a></li> +<li><a href="irc://irc.freenode.net/#gphoto">IRC Channel</a> - #gphoto on irc.freenode.net (shared with the + <a href="http://gphoto.org/">gphoto project</a>)</li> +</ul> <h2>About EXIF</h2> <ul> <li><a href="http://www.exif.org/">exif.org</a> - the EXIF standard and more</li> </ul> -<hr /> - -<p><a href="http://sourceforge.net" title="Hosted by SourceForge.net"><img +<div class="banners"> +<a + href="http://sourceforge.net" title="Hosted by SourceForge.net"><img src="http://sourceforge.net/sflogo.php?group_id=12272&type=1" width="88" height="31" border="0" alt="SourceForge.net Logo" /></a> -<a href="http://validator.w3.org/check?uri=referer" title="Verify this page is valid XHTML 1.0"><img +<a + href="http://validator.w3.org/check?uri=referer" title="Verify this page is valid XHTML 1.0"><img src="http://www.w3.org/Icons/valid-xhtml10" - alt="Valid XHTML 1.0!" height="31" width="88" border="0" /></a></p> + alt="Valid XHTML 1.0!" height="31" width="88" border="0" /></a> +<a href="http://jigsaw.w3.org/css-validator/check/referer" title="Verify this page is valid CSS"><img + style="border:0;width:88px;height:31px" + src="http://jigsaw.w3.org/css-validator/images/vcss" + alt="Valid CSS!" /></a> +</div> </body> </html> |
From: Hans U. N. <hu...@us...> - 2005-06-19 22:57:01
|
Update of /cvsroot/libexif/libexif-website/static In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22921/static Modified Files: index.html Log Message: display SF.net logo Index: index.html =================================================================== RCS file: /cvsroot/libexif/libexif-website/static/index.html,v retrieving revision 1.6 retrieving revision 1.7 diff -u -p -d -r1.6 -r1.7 --- index.html 19 Jun 2005 22:55:59 -0000 1.6 +++ index.html 19 Jun 2005 22:56:49 -0000 1.7 @@ -47,7 +47,7 @@ cvs -z3 -d:pserver:ano...@cv...urcef <p><a href="http://sourceforge.net" title="Hosted by SourceForge.net"><img src="http://sourceforge.net/sflogo.php?group_id=12272&type=1" - width="210" height="62" border="0" alt="SourceForge.net Logo" /></a> + width="88" height="31" border="0" alt="SourceForge.net Logo" /></a> <a href="http://validator.w3.org/check?uri=referer" title="Verify this page is valid XHTML 1.0"><img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0!" height="31" width="88" border="0" /></a></p> |
From: Hans U. N. <hu...@us...> - 2005-06-19 22:56:09
|
Update of /cvsroot/libexif/libexif-website/static In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22418/static Modified Files: index.html Log Message: display SF.net logo Index: index.html =================================================================== RCS file: /cvsroot/libexif/libexif-website/static/index.html,v retrieving revision 1.5 retrieving revision 1.6 diff -u -p -d -r1.5 -r1.6 --- index.html 19 Jun 2005 22:53:31 -0000 1.5 +++ index.html 19 Jun 2005 22:55:59 -0000 1.6 @@ -46,11 +46,11 @@ cvs -z3 -d:pserver:ano...@cv...urcef <hr /> <p><a href="http://sourceforge.net" title="Hosted by SourceForge.net"><img - src="http://sourceforge.net/sflogo.php?group_id=12272&type=5" + src="http://sourceforge.net/sflogo.php?group_id=12272&type=1" width="210" height="62" border="0" alt="SourceForge.net Logo" /></a> <a href="http://validator.w3.org/check?uri=referer" title="Verify this page is valid XHTML 1.0"><img src="http://www.w3.org/Icons/valid-xhtml10" - alt="Valid XHTML 1.0!" height="31" width="88" /></a></p> + alt="Valid XHTML 1.0!" height="31" width="88" border="0" /></a></p> </body> </html> |
From: Hans U. N. <hu...@us...> - 2005-06-19 22:53:44
|
Update of /cvsroot/libexif/libexif-website/static In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21171/static Modified Files: index.html Log Message: display SF.net logo Index: index.html =================================================================== RCS file: /cvsroot/libexif/libexif-website/static/index.html,v retrieving revision 1.4 retrieving revision 1.5 diff -u -p -d -r1.4 -r1.5 --- index.html 19 Jun 2005 22:35:05 -0000 1.4 +++ index.html 19 Jun 2005 22:53:31 -0000 1.5 @@ -45,7 +45,10 @@ cvs -z3 -d:pserver:ano...@cv...urcef <hr /> -<p><a href="http://validator.w3.org/check?uri=referer" title="Verify this page is valid XHTML 1.0"><img +<p><a href="http://sourceforge.net" title="Hosted by SourceForge.net"><img + src="http://sourceforge.net/sflogo.php?group_id=12272&type=5" + width="210" height="62" border="0" alt="SourceForge.net Logo" /></a> +<a href="http://validator.w3.org/check?uri=referer" title="Verify this page is valid XHTML 1.0"><img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0!" height="31" width="88" /></a></p> |
From: Hans U. N. <hu...@us...> - 2005-06-19 22:35:13
|
Update of /cvsroot/libexif/libexif-website/static In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14049/static Modified Files: index.html Log Message: valid XHTML/1.0 Index: index.html =================================================================== RCS file: /cvsroot/libexif/libexif-website/static/index.html,v retrieving revision 1.3 retrieving revision 1.4 diff -u -p -d -r1.3 -r1.4 --- index.html 19 Jun 2005 22:34:12 -0000 1.3 +++ index.html 19 Jun 2005 22:35:05 -0000 1.4 @@ -45,7 +45,7 @@ cvs -z3 -d:pserver:ano...@cv...urcef <hr /> -<p><a href="http://validator.w3.org/check?uri=referer"><img +<p><a href="http://validator.w3.org/check?uri=referer" title="Verify this page is valid XHTML 1.0"><img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0!" height="31" width="88" /></a></p> |
From: Hans U. N. <hu...@us...> - 2005-06-19 22:34:21
|
Update of /cvsroot/libexif/libexif-website/static In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13858/static Modified Files: index.html Log Message: valid XHTML/1.0 Index: index.html =================================================================== RCS file: /cvsroot/libexif/libexif-website/static/index.html,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -d -r1.2 -r1.3 --- index.html 19 Jun 2005 22:28:39 -0000 1.2 +++ index.html 19 Jun 2005 22:34:12 -0000 1.3 @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="us-ascii"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" - "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>The libexif C EXIF library</title> @@ -45,6 +45,10 @@ cvs -z3 -d:pserver:ano...@cv...urcef <hr /> +<p><a href="http://validator.w3.org/check?uri=referer"><img + src="http://www.w3.org/Icons/valid-xhtml10" + alt="Valid XHTML 1.0!" height="31" width="88" /></a></p> + </body> </html> |
From: Hans U. N. <hu...@us...> - 2005-06-19 22:28:55
|
Update of /cvsroot/libexif/libexif-website/static In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9835/static Modified Files: index.html Log Message: line on bottom Index: index.html =================================================================== RCS file: /cvsroot/libexif/libexif-website/static/index.html,v retrieving revision 1.1 retrieving revision 1.2 diff -u -p -d -r1.1 -r1.2 --- index.html 19 Jun 2005 22:23:00 -0000 1.1 +++ index.html 19 Jun 2005 22:28:39 -0000 1.2 @@ -43,5 +43,8 @@ cvs -z3 -d:pserver:ano...@cv...urcef <li><a href="http://www.exif.org/">exif.org</a> - the EXIF standard and more</li> </ul> +<hr /> + </body> </html> + |
From: Hans U. N. <hu...@us...> - 2005-06-19 22:23:12
|
Update of /cvsroot/libexif/libexif-website/static In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6553/static Added Files: index.html Log Message: add libexif website to CVS --- NEW FILE: index.html --- <?xml version="1.0" encoding="us-ascii"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>The libexif C EXIF library</title> </head> <body> <h1>The libexif C EXIF library</h1> <ul> <li>is a library written in pure C.</li> <li>reads and writes EXIF metainformation from and to image files.</li> <li>is licensed under the GNU LESSER GENERAL PUBLIC LICENSE Version 2.1 (LGPL).</li> <li>runs under POSIX systems (e.g. GNU/Linux, xBSD, MacOS X, etc.) and Win32. Win64 untested.</li> </ul> <hr /> <h2>About libexif</h2> <ul> <li><a href="https://sourceforge.net/projects/libexif">SF.net project page</a></li> <li><a href="https://sourceforge.net/tracker/?group_id=12272&atid=112272">Bug Tracker</a> - <a href="https://sourceforge.net/tracker/?func=add&group_id=12272&atid=112272">submit your bugs here</a></li> <li><a href="https://sourceforge.net/mail/?group_id=12272">libexif mailing list</a></li> <li><a href="irc://irc.freenode.net/#gphoto">IRC Channel</a> - #gphoto on irc.freenode.net (shared with the <a href="http://gphoto.org/">gphoto project</a>)</li> <li>Download <a href="https://sourceforge.net/project/showfiles.php?group_id=12272">release tarballs</a> or from CVS: <pre> cvs -d:pserver:ano...@cv...:/cvsroot/libexif login cvs -z3 -d:pserver:ano...@cv...:/cvsroot/libexif co -P libexif cvs -z3 -d:pserver:ano...@cv...:/cvsroot/libexif co -P exif </pre> </li> <li><a href="api/">libexif API documentation</a></li> </ul> <hr /> <h2>About EXIF</h2> <ul> <li><a href="http://www.exif.org/">exif.org</a> - the EXIF standard and more</li> </ul> </body> </html> |
From: Hans U. N. <hu...@us...> - 2005-06-19 22:23:10
|
Update of /cvsroot/libexif/libexif-website In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6553 Added Files: Makefile Log Message: add libexif website to CVS --- NEW FILE: Makefile --- .PHONY: all all: @echo "Nothing to build." .PHONY: upload upload: upload-static.stamp upload-static.stamp: static $(wildcard static/*.html static/*.css static/*.png static/*.jpg) Makefile find static \( -type d -exec chmod a+rx,go-w,g+s {} \; \) \ -or \( -type f -exec chmod a+r {} \; \) rsync -avz --progress --exclude="CVS" static/* sf:/home/users/h/hu/hun/libexif/htdocs/ ssh "sf" "find /home/groups/l/li/libexif/htdocs \( -type d -exec chgrp libexif {} \; -exec chmod g+rwxs,a+rx {} \; \) -or \( -type f -exec chgrp libexif {} \; -exec chmod g+rw {} \; \( -name '*.html' -or -name '*.png' -or -name '*.php' -or -name '*.jpg' -or -name '*.css' -name '*.dot' -name '*.map' \) -exec chmod a+r {} \; \)" date > $@ |
From: Hans U. N. <hu...@us...> - 2005-06-19 22:06:51
|
Update of /cvsroot/libexif/libexif/doc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30612/doc Modified Files: Doxyfile.in Log Message: make doxygen recurse dirs Index: Doxyfile.in =================================================================== RCS file: /cvsroot/libexif/libexif/doc/Doxyfile.in,v retrieving revision 1.2 retrieving revision 1.3 diff -u -p -d -r1.2 -r1.3 --- Doxyfile.in 19 Jun 2005 21:46:52 -0000 1.2 +++ Doxyfile.in 19 Jun 2005 22:06:42 -0000 1.3 @@ -465,7 +465,7 @@ FILE_PATTERNS = *.h *.c # should be searched for input files as well. Possible values are YES and NO. # If left blank NO is used. -RECURSIVE = NO +RECURSIVE = YES # The EXCLUDE tag can be used to specify files and/or directories that should # excluded from the INPUT source files. This way you can easily exclude a |
From: Hans U. N. <hu...@us...> - 2005-06-19 21:58:20
|
Update of /cvsroot/libexif/libexif-website/static In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25962/static Log Message: Directory /cvsroot/libexif/libexif-website/static added to the repository |